{
  "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/u6rJWIrjTdKVqJJgvlJW/consent.js", "ssg:https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/N7likuYwsyiG0Aku3Csp/inEU.js", "ssg:https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/EDYDB7ihtf8Ou4i0ygB9/region.js", "ssg:https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/Soos9Q1A9zL94xYH62sT/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/CUUcuP1woK9faEWrL9ZQ/Cookies.js", "ssg:https://framerusercontent.com/modules/yiF7WSgQNzobIe2r2xEu/BlUzPPZUJQwfvkYVUl3E/weYDk3xT5.js", "ssg:https://framerusercontent.com/modules/jaZX4QdcMShqJwoYfoUc/b3i0d6yUuihE1WZAvOBz/PHjuR1qd4.js", "ssg:https://framerusercontent.com/modules/6G2Rr3naNZJIdoy5dHTj/24MjaKM8KAB19w1X0UyN/SNke0woIx.js", "ssg:https://framerusercontent.com/modules/pfU82ASkQXVXwjGBwInM/LWYEHs0tvmPOJk4fybDl/weTkVwjyC.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{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 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(()=>{yieldBeforeCb(()=>getStateFromLocalStorage(),{priority:\"user-blocking\"});},[]);// Anytime the dismissed value is updated, we need to persist it in local storage.\nuseEffect(()=>{if(state.dismissed){localStorage.setItem(dismissedLocalStorageKey,\"true\");}},[state.dismissed]);// Anytime consent is auto accepted, we need to persist it in local storage.\nuseEffect(()=>{if(state.autoAccepted){localStorage.setItem(autoAcceptedLocalStorageKey,\"true\");}},[state.autoAccepted]);// Sync data to dataLayer and localStorage.\nuseEffect(()=>{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\":{\"useConsent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModeName\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultConsent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModes\":{\"type\":\"tsType\",\"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/N7likuYwsyiG0Aku3Csp/inEU.js\";export function useRegion({content,useRegionFromProps}){const isInEUBasedOnLocation=isBrowser?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\":{\"RegionType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionContent\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "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);return shouldShow&&/*#__PURE__*/_jsxs(\"p\",{style:{lineHeight:1.5,margin:0,padding:0,fontSize:14,...style},children:[description,\" \",(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\":{\"BannerComponentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Banner\":{\"type\":\"variable\",\"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/u6rJWIrjTdKVqJJgvlJW/consent.js\";import{useRegion}from\"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/EDYDB7ihtf8Ou4i0ygB9/region.js\";import{Banner}from\"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/Soos9Q1A9zL94xYH62sT/Banner.js\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/N7likuYwsyiG0Aku3Csp/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 isInEU=isBrowser?inEU():false;const region=useRegion({content,useRegionFromProps:isPreview});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(()=>{// 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]);// Check if user should be prompted\nuseEffect(()=>{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]);useEffect(()=>{if(onConsentChange){yieldBeforeCb(()=>onConsentChange({isInEU,consent:consent.modes}));}},[consent.modes]);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)}),/*#__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\",hidden:props=>!props.link},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\",hidden:props=>!props.link}},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\",hidden:props=>!props.link},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\",hidden:props=>!props.link}},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\":{\"CookieBannerProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\"}},\"PolicyProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Cookies.map", "// Generated by Framer (04e0834)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"jEEySdZdN\",\"gshuXqZSR\"];const serializationHash=\"framer-nK9RF\";const variantClassNames={gshuXqZSR:\"framer-v-15le9v6\",jEEySdZdN:\"framer-v-1sifui5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"jEEySdZdN\",\"Variant 2\":\"gshuXqZSR\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"jEEySdZdN\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jEEySdZdN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1sifui5\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jEEySdZdN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({gshuXqZSR:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Text Bold\", \"TASA Orbiter Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"207px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227)))\"},children:\"Infinity\"})}),className:\"framer-845z61\",fonts:[\"CUSTOM;TASA Orbiter Text Bold\"],layoutDependency:layoutDependency,layoutId:\"UMNc1wGP5\",style:{\"--extracted-r6o4lv\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gshuXqZSR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Text Bold\", \"TASA Orbiter Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227)))\"},children:\"Infinity\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Text Bold\", \"TASA Orbiter Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"220px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227)))\"},children:\"Frame\"})}),className:\"framer-19mpkud\",fonts:[\"CUSTOM;TASA Orbiter Text Bold\"],layoutDependency:layoutDependency,layoutId:\"iTLoKJTFk\",style:{\"--extracted-r6o4lv\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gshuXqZSR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Text Bold\", \"TASA Orbiter Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"125px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227)))\"},children:\"Frame\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Text Bold\", \"TASA Orbiter Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"207px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227)))\"},children:\"Infinity\"})}),className:\"framer-142lxir\",fonts:[\"CUSTOM;TASA Orbiter Text Bold\"],layoutDependency:layoutDependency,layoutId:\"a0LYs8iFM\",style:{\"--extracted-r6o4lv\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gshuXqZSR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Text Bold\", \"TASA Orbiter Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227)))\"},children:\"Infinity\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Text Bold\", \"TASA Orbiter Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"220px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227)))\"},children:\"Frame\"})}),className:\"framer-1k8y4pa\",fonts:[\"CUSTOM;TASA Orbiter Text Bold\"],layoutDependency:layoutDependency,layoutId:\"wjDEEIxqp\",style:{\"--extracted-r6o4lv\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gshuXqZSR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Text Bold\", \"TASA Orbiter Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"125px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227)))\"},children:\"Frame\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nK9RF.framer-13xtw66, .framer-nK9RF .framer-13xtw66 { display: block; }\",\".framer-nK9RF.framer-1sifui5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-nK9RF .framer-845z61, .framer-nK9RF .framer-19mpkud, .framer-nK9RF .framer-142lxir, .framer-nK9RF .framer-1k8y4pa { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nK9RF.framer-1sifui5 { gap: 0px; } .framer-nK9RF.framer-1sifui5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-nK9RF.framer-1sifui5 > :first-child { margin-top: 0px; } .framer-nK9RF.framer-1sifui5 > :last-child { margin-bottom: 0px; } }\",\".framer-nK9RF.framer-v-15le9v6 .framer-845z61 { order: 0; }\",\".framer-nK9RF.framer-v-15le9v6 .framer-19mpkud { order: 1; }\",\".framer-nK9RF.framer-v-15le9v6 .framer-142lxir { order: 2; }\",\".framer-nK9RF.framer-v-15le9v6 .framer-1k8y4pa { order: 3; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 712\n * @framerIntrinsicWidth 586\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"gshuXqZSR\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerweYDk3xT5=withCSS(Component,css,\"framer-nK9RF\");export default FramerweYDk3xT5;FramerweYDk3xT5.displayName=\"Hero Ticker\";FramerweYDk3xT5.defaultProps={height:712,width:586};addPropertyControls(FramerweYDk3xT5,{variant:{options:[\"jEEySdZdN\",\"gshuXqZSR\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerweYDk3xT5,[{explicitInter:true,fonts:[{family:\"TASA Orbiter Text Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/P8EeK7e5JBt77DYWKesgoUzOyzc.otf\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerweYDk3xT5\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gshuXqZSR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"586\",\"framerIntrinsicHeight\":\"712\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./weYDk3xT5.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import HeroTicker from\"https://framerusercontent.com/modules/yiF7WSgQNzobIe2r2xEu/BlUzPPZUJQwfvkYVUl3E/weYDk3xT5.js\";const HeroTickerFonts=getFonts(HeroTicker);const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-ikYaA\";const variantClassNames={D2Tqd5k37:\"framer-v-a1xpjj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"D2Tqd5k37\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-a1xpjj\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"D2Tqd5k37\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, rgb(36, 60, 54))\",...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-117bnkl-container\",layoutDependency:layoutDependency,layoutId:\"KDq7F8_I4-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"KDq7F8_I4\",layoutId:\"KDq7F8_I4\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:712,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e6adqf-container\",layoutDependency:layoutDependency,layoutId:\"Sv5z4yIsD-container\",children:/*#__PURE__*/_jsx(HeroTicker,{height:\"100%\",id:\"Sv5z4yIsD\",layoutId:\"Sv5z4yIsD\",variant:\"jEEySdZdN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:712,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e6adqf-container\",layoutDependency:layoutDependency,layoutId:\"Sv5z4yIsD-container\",children:/*#__PURE__*/_jsx(HeroTicker,{height:\"100%\",id:\"Sv5z4yIsD\",layoutId:\"Sv5z4yIsD\",variant:\"jEEySdZdN\",width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bs4l4h-container\",layoutDependency:layoutDependency,layoutId:\"GgIPNpLn0-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"GgIPNpLn0\",layoutId:\"GgIPNpLn0\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:712,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e6adqf-container\",layoutDependency:layoutDependency,layoutId:\"Sv5z4yIsD-container\",children:/*#__PURE__*/_jsx(HeroTicker,{height:\"100%\",id:\"Sv5z4yIsD\",layoutId:\"Sv5z4yIsD\",variant:\"jEEySdZdN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:712,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e6adqf-container\",layoutDependency:layoutDependency,layoutId:\"Sv5z4yIsD-container\",children:/*#__PURE__*/_jsx(HeroTicker,{height:\"100%\",id:\"Sv5z4yIsD\",layoutId:\"Sv5z4yIsD\",variant:\"jEEySdZdN\",width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ikYaA.framer-xkwnz8, .framer-ikYaA .framer-xkwnz8 { display: block; }\",\".framer-ikYaA.framer-a1xpjj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ikYaA .framer-117bnkl-container, .framer-ikYaA .framer-bs4l4h-container { flex: none; height: 800px; position: relative; width: 595px; }\",\".framer-ikYaA .framer-1e6adqf-container { height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ikYaA.framer-a1xpjj { gap: 0px; } .framer-ikYaA.framer-a1xpjj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ikYaA.framer-a1xpjj > :first-child { margin-left: 0px; } .framer-ikYaA.framer-a1xpjj > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPHjuR1qd4=withCSS(Component,css,\"framer-ikYaA\");export default FramerPHjuR1qd4;FramerPHjuR1qd4.displayName=\"Main Hero\";FramerPHjuR1qd4.defaultProps={height:800,width:1200};addFonts(FramerPHjuR1qd4,[{explicitInter:true,fonts:[]},...HeroTickerFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPHjuR1qd4\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"800\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PHjuR1qd4.map", "// Generated by Framer (04e0834)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"vewiJjfOc\"];const serializationHash=\"framer-zL3pr\";const variantClassNames={vewiJjfOc:\"framer-v-rs0t89\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vewiJjfOc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rs0t89\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"vewiJjfOc\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-213e3b65-2f72-458c-b2f1-9c03134b2351, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Next\\xa0level\\xa0video\\xa0producties\"})}),className:\"framer-164qzsq\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"iduhbkMNS\",style:{\"--extracted-r6o4lv\":\"var(--token-213e3b65-2f72-458c-b2f1-9c03134b2351, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zL3pr.framer-1klsnke, .framer-zL3pr .framer-1klsnke { display: block; }\",\".framer-zL3pr.framer-rs0t89 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 16px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zL3pr .framer-164qzsq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zL3pr.framer-rs0t89 { gap: 0px; } .framer-zL3pr.framer-rs0t89 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zL3pr.framer-rs0t89 > :first-child { margin-left: 0px; } .framer-zL3pr.framer-rs0t89 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 174.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSNke0woIx=withCSS(Component,css,\"framer-zL3pr\");export default FramerSNke0woIx;FramerSNke0woIx.displayName=\"Ticker - Small\";FramerSNke0woIx.defaultProps={height:16,width:174.5};addFonts(FramerSNke0woIx,[{explicitInter:true,fonts:[{family:\"TASA Orbiter Deck SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/TwmQvYOoOpQ8HnPeFBoRgoo91rU.otf\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSNke0woIx\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"16\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"174.5\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SNke0woIx.map", "// Generated by Framer (06534cb)\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,useDynamicRefs,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/CUUcuP1woK9faEWrL9ZQ/Cookies.js\";import ButtonInline from\"#framer/local/canvasComponent/a4WkopxgK/a4WkopxgK.js\";import MainNav from\"#framer/local/canvasComponent/fiAGcNNXC/fiAGcNNXC.js\";import ButtonStartAProject from\"#framer/local/canvasComponent/kjLxUKrGd/kjLxUKrGd.js\";import MainHero from\"#framer/local/canvasComponent/PHjuR1qd4/PHjuR1qd4.js\";import FooterDark from\"#framer/local/canvasComponent/PY4qwyip1/PY4qwyip1.js\";import TickerSmall from\"#framer/local/canvasComponent/SNke0woIx/SNke0woIx.js\";import HeroHeader from\"#framer/local/canvasComponent/vlNPcqzGG/vlNPcqzGG.js\";import ProjectenHoofdPagina from\"#framer/local/collection/agftiogoT/agftiogoT.js\";import*as sharedStyle from\"#framer/local/css/Eqa4EoopJ/Eqa4EoopJ.js\";import metadataProvider from\"#framer/local/webPageMetadata/weTkVwjyC/weTkVwjyC.js\";const MainNavFonts=getFonts(MainNav);const TickerSmallFonts=getFonts(TickerSmall);const TickerFonts=getFonts(Ticker);const HeroHeaderFonts=getFonts(HeroHeader);const MotionHeaderWithFX=withFX(motion.header);const MainHeroFonts=getFonts(MainHero);const CookieBannerFonts=getFonts(CookieBanner);const VimeoFonts=getFonts(Vimeo);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const ButtonInlineFonts=getFonts(ButtonInline);const ButtonStartAProjectFonts=getFonts(ButtonStartAProject);const FooterDarkFonts=getFonts(FooterDark);const breakpoints={areBPVbbB:\"(min-width: 1636.6940718303763px) and (max-width: 1799px)\",CEOl9B3qC:\"(min-width: 1200px) and (max-width: 1635.6940718303763px)\",i7Fkz9Tv2:\"(min-width: 1800px)\",ioXy4P8D1:\"(min-width: 810px) and (max-width: 1199px)\",QPHWTLCE0:\"(min-width: 390px) and (max-width: 809px)\",vdHg41EcQ:\"(max-width: 389px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-WPglZ\";const variantClassNames={areBPVbbB:\"framer-v-16dad8v\",CEOl9B3qC:\"framer-v-7b7eoq\",i7Fkz9Tv2:\"framer-v-jo3hb7\",ioXy4P8D1:\"framer-v-19s6wsm\",QPHWTLCE0:\"framer-v-11tfjhw\",vdHg41EcQ:\"framer-v-3wltz3\"};const transition1={delay:0,duration:10,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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={\"dsektop gtaat\":\"i7Fkz9Tv2\",\"iphine max \":\"areBPVbbB\",\"Phone klein\":\"vdHg41EcQ\",Desktop:\"CEOl9B3qC\",Phone:\"QPHWTLCE0\",Tablet:\"ioXy4P8D1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"CEOl9B3qC\"};};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,PGuiWwKGaaVFbMFvMD,PGuiWwKGaRVQsFcgNS,lCPECI4IIRVQsFcgNS,VCRWBFJ8zRVQsFcgNS,RlWm3mUvkRVQsFcgNS,IExvfEWD4RVQsFcgNS,idRVQsFcgNS,idaVFbMFvMD,PGuiWwKGaIyI7RbOhX,PGuiWwKGayaqKS5pel,lCPECI4IIyaqKS5pel,FTOu9H_23yaqKS5pel,VCRWBFJ8zyaqKS5pel,RlWm3mUvkyaqKS5pel,IExvfEWD4yaqKS5pel,idyaqKS5pel,idIyI7RbOhX,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"g6VNMWH0L\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"vXfYpqdpF\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"WA486mIvm\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"QPHWTLCE0\",\"vdHg41EcQ\",\"areBPVbbB\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if([\"QPHWTLCE0\",\"areBPVbbB\"].includes(baseVariant))return true;return false;};const elementId3=useRouteElementId(\"RDxT2UKy2\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"p3u4YvDOD\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"mIPtibZ0q\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"yJENDGhsS\");const ref7=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"ioXy4P8D1\")return true;return false;};const elementId7=useRouteElementId(\"mYtSJfvg_\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"ppV6NAuNG\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"S3yUBZW0p\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"vxmLujw3o\");const ref11=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if([\"ioXy4P8D1\",\"QPHWTLCE0\",\"vdHg41EcQ\",\"areBPVbbB\"].includes(baseVariant))return false;return true;};const elementId11=useRouteElementId(\"ijZNa87vg\");const ref12=React.useRef(null);const elementId12=useRouteElementId(\"XjM5RekmX\");const ref13=React.useRef(null);const elementId13=useRouteElementId(\"wFiJsAcSi\");const ref14=React.useRef(null);const elementId14=useRouteElementId(\"FyoarS8D5\");const ref15=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"vdHg41EcQ\")return true;return false;};const elementId15=useRouteElementId(\"QYhdeseo8\");const ref16=React.useRef(null);const elementId16=useRouteElementId(\"sit5EpYIB\");const ref17=React.useRef(null);const elementId17=useRouteElementId(\"N7_44iwvh\");const ref18=React.useRef(null);const elementId18=useRouteElementId(\"a7066vbOs\");const ref19=React.useRef(null);const isDisplayed5=()=>{if(!isBrowser())return true;if([\"QPHWTLCE0\",\"areBPVbbB\"].includes(baseVariant))return false;return true;};const elementId19=useRouteElementId(\"fonskd8ld\");const ref20=React.useRef(null);const elementId20=useRouteElementId(\"vw4cT6OQf\");const dynamicRef=useDynamicRefs();const elementId21=useRouteElementId(\"Sg5XjgmXq\");const elementId22=useRouteElementId(\"PrK0YZEax\");const elementId23=useRouteElementId(\"d5ZDD5MRA\");const elementId24=useRouteElementId(\"kCr8ivpoy\");const ref21=React.useRef(null);const elementId25=useRouteElementId(\"YmUwACW7q\");const elementId26=useRouteElementId(\"CqstIYpJm\");const elementId27=useRouteElementId(\"IjvnEOmja\");const elementId28=useRouteElementId(\"CT6UvZv5X\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"CEOl9B3qC\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); } @media (min-width: 810px) and (max-width: 1199px) { html body { background: var(--token-997cd56e-ce28-4341-927b-f991f19aed3d, rgb(49, 113, 90)) } } @media (min-width: 390px) and (max-width: 809px) { html body { background: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, rgb(36, 60, 54)) } } @media (max-width: 389px) { html body { background: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, rgb(36, 60, 54)) } } @media (min-width: 1636.6940718303763px) and (max-width: 1799px) { html body { background: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, rgb(36, 60, 54)) } }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-7b7eoq\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{width:\"100vw\"},QPHWTLCE0:{width:\"100vw\"},vdHg41EcQ:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:111,width:componentViewport?.width||\"100vw\",y:889,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19yol6p-container\",\"data-framer-name\":\"Navbar Float\",layoutScroll:true,name:\"Navbar Float\",nodeId:\"V9jPtakDX\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{variant:\"WJwkOVSvW\"},QPHWTLCE0:{variant:\"WJwkOVSvW\"},vdHg41EcQ:{variant:\"WJwkOVSvW\"}},children:/*#__PURE__*/_jsx(MainNav,{height:\"100%\",id:\"V9jPtakDX\",layoutId:\"V9jPtakDX\",name:\"Navbar Float\",style:{width:\"100%\"},variant:\"zecjx165d\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v594x5\",\"data-framer-name\":\"Track\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ul2mqw\",\"data-framer-name\":\"Sticky Hero\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{__framer__styleTransformEffectEnabled:undefined,style:{}},QPHWTLCE0:{__framer__styleTransformEffectEnabled:undefined,style:{}},vdHg41EcQ:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionHeaderWithFX,{__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:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.45,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jxf0o1\",\"data-framer-name\":\"Hero\",id:elementId2,ref:ref3,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nm83h4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uu7899\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{background:{alt:\"Hier is een minimalistisch wit tekstlogo met 'INFINITY FRAME' in een modern, strak lettertype tegen een transparante achtergrond. Ik zal het voor je genereren. Een moment!\",fit:\"fit\",pixelHeight:1253,pixelWidth:3826,positionX:\"center\",positionY:\"center\",sizes:\"264px\",src:\"https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png\",srcSet:\"https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=512 512w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png 3826w\"}},ioXy4P8D1:{background:{alt:\"Hier is een minimalistisch wit tekstlogo met 'INFINITY FRAME' in een modern, strak lettertype tegen een transparante achtergrond. Ik zal het voor je genereren. Een moment!\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+0+0+231.5+0+0),pixelHeight:1253,pixelWidth:3826,sizes:\"453px\",src:\"https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png\",srcSet:\"https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=512 512w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png 3826w\"}},QPHWTLCE0:{background:{alt:\"Hier is een minimalistisch wit tekstlogo met 'INFINITY FRAME' in een modern, strak lettertype tegen een transparante achtergrond. Ik zal het voor je genereren. Een moment!\",fit:\"fit\",pixelHeight:1253,pixelWidth:3826,positionX:\"center\",positionY:\"center\",sizes:\"264px\",src:\"https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png\",srcSet:\"https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=512 512w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png 3826w\"}},vdHg41EcQ:{background:{alt:\"Hier is een minimalistisch wit tekstlogo met 'INFINITY FRAME' in een modern, strak lettertype tegen een transparante achtergrond. Ik zal het voor je genereren. Een moment!\",fit:\"fit\",pixelHeight:1253,pixelWidth:3826,positionX:\"center\",positionY:\"center\",sizes:\"264px\",src:\"https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png\",srcSet:\"https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=512 512w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png 3826w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Hier is een minimalistisch wit tekstlogo met 'INFINITY FRAME' in een modern, strak lettertype tegen een transparante achtergrond. Ik zal het voor je genereren. Een moment!\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+0+0+228.5+0+0),pixelHeight:1253,pixelWidth:3826,sizes:\"477px\",src:\"https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png\",srcSet:\"https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=512 512w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NCulnOGbuoZlkVJSvLZSNcHfLcI.png 3826w\"},className:\"framer-2xix7e\",id:\"2xix7e\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vcm3d0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Deck Medium\", \"TASA Orbiter Deck Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-213e3b65-2f72-458c-b2f1-9c03134b2351, rgb(255, 255, 255))\"},children:\"I - F\"})}),className:\"framer-2g0u8r\",fonts:[\"CUSTOM;TASA Orbiter Deck Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-di0us-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nCUfSPmTT\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"nCUfSPmTT\",layoutId:\"nCUfSPmTT\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,width:\"231px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hohmqs-container\",inComponentSlot:true,nodeId:\"MH4igd8Hp\",rendersWithMotion:true,scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(TickerSmall,{height:\"100%\",id:\"MH4igd8Hp\",layoutId:\"MH4igd8Hp\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,width:\"231px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hohmqs-container\",inComponentSlot:true,nodeId:\"MH4igd8Hp\",rendersWithMotion:true,scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(TickerSmall,{height:\"100%\",id:\"MH4igd8Hp\",layoutId:\"MH4igd8Hp\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Deck Medium\", \"TASA Orbiter Deck Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-213e3b65-2f72-458c-b2f1-9c03134b2351, rgb(255, 255, 255))\"},children:\"(2017)\"})}),className:\"framer-6ht2\",fonts:[\"CUSTOM;TASA Orbiter Deck Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{width:`calc(${componentViewport?.width||\"100vw\"} * 1.01)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+0+0},i7Fkz9Tv2:{width:`min(${componentViewport?.width||\"100vw\"}, 2500px)`},ioXy4P8D1:{y:(componentViewport?.y||0)+0+0+0+0+0+0+0+0},QPHWTLCE0:{width:`calc(${componentViewport?.width||\"100vw\"} * 1.01)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+0+0},vdHg41EcQ:{width:`calc(${componentViewport?.width||\"100vw\"} * 1.01)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+0+0+914,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3luvvi-container\",nodeId:\"x9IU9nAVO\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(HeroHeader,{height:\"100%\",id:\"x9IU9nAVO\",layoutId:\"x9IU9nAVO\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i7Fkz9Tv2:{height:800}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y3sj5-container hidden-11tfjhw hidden-3wltz3 hidden-16dad8v\",nodeId:\"cuxBGSorZ\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(MainHero,{height:\"100%\",id:\"cuxBGSorZ\",layoutId:\"cuxBGSorZ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Q1k2K7pTe\"},implicitPathVariables:undefined},{href:{webPageId:\"Q1k2K7pTe\"},implicitPathVariables:undefined},{href:{webPageId:\"Q1k2K7pTe\"},implicitPathVariables:undefined},{href:{webPageId:\"Q1k2K7pTe\"},implicitPathVariables:undefined},{href:{webPageId:\"Q1k2K7pTe\"},implicitPathVariables:undefined},{href:{webPageId:\"Q1k2K7pTe\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8eplwe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vOt_YMsAx\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"Wij gebruiken cookies om je ervaring te verbeteren, het websiteverkeer te analyseren en gepersonaliseerde inhoud aan te bieden\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[5],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",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\"}},i7Fkz9Tv2:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"Wij gebruiken cookies om je ervaring te verbeteren, het websiteverkeer te analyseren en gepersonaliseerde inhoud aan te bieden\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[3],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",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-PBDRFHKN\"},ioXy4P8D1:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"Wij gebruiken cookies om je ervaring te verbeteren, het websiteverkeer te analyseren en gepersonaliseerde inhoud aan te bieden\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[1],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",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-PBDRFHK\"},QPHWTLCE0:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"Wij gebruiken cookies om je ervaring te verbeteren, het websiteverkeer te analyseren en gepersonaliseerde inhoud aan te bieden\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[2],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",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\"}},vdHg41EcQ:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"Wij gebruiken cookies om je ervaring te verbeteren, het websiteverkeer te analyseren en gepersonaliseerde inhoud aan te bieden\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[4],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",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\"}}},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-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",colorTitle:\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",fill:\"var(--token-997cd56e-ce28-4341-927b-f991f19aed3d, rgb(49, 113, 90))\",fontBody:{},fontTitle:{fontFamily:'\"TASA Orbiter Display Bold\", \"TASA Orbiter Display Bold Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},link:\"rgb(153, 153, 153)\",shadow:{shadowBlur:19,shadowColor:\"rgba(0, 0, 0, 0.25)\",shadowX:7,shadowY:7}},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{fontFamily:'\"TASA Orbiter Display Regular\", \"TASA Orbiter Display Regular Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},hoverOpacity:.6,labels:{accept:\"Accepteer\",acceptAll:\"Accepteer \",confirm:\"Okay\",customize:\"Customize\",reject:\"Weiger\",rejectAll:\"Weiger \",save:\"Sla op\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"var(--token-88b100d8-2edc-478e-bc8f-56613202090b, rgb(0, 0, 0))\",fill:\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(117, 250, 157))\"},secondary:{color:\"var(--token-88b100d8-2edc-478e-bc8f-56613202090b, rgb(0, 0, 0))\",fill:\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\"},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"Wij gebruiken cookies om je ervaring te verbeteren, het websiteverkeer te analyseren en gepersonaliseerde inhoud aan te bieden\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[0],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",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:\"\",height:\"100%\",id:\"vOt_YMsAx\",layoutId:\"vOt_YMsAx\",options:{analytics:{description:\"Maakt het volgen van prestaties mogelijk.\",title:\"Analysetools\"},marketing:{description:\"Maakt personalisatie van advertenties en het volgen van advertentieprestaties mogelijk.\",title:\"Marketing\"},necessary:{description:\"Maakt beveiliging en basisfunctionaliteit mogelijk.\",optional:true,title:\"Noodzakelijk\"},preferences:{description:\"Maakt gepersonaliseerde inhoud en instellingen mogelijk.\",title:\"Voorkeuren\"},preview:true,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:12,width:0},fontBody:{fontFamily:'\"TASA Orbiter Display Regular\", \"TASA Orbiter Display Regular Placeholder\", sans-serif'},fontTitle:{fontFamily:'\"TASA Orbiter Display Medium\", \"TASA Orbiter Display Medium Placeholder\", sans-serif'},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:true,trigger:{color:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{},type:\"text\"},width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u3ztea hidden-7b7eoq hidden-19s6wsm hidden-jo3hb7 hidden-3wltz3\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sr8s4s-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"in2iCvGz4\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(37, 61, 55, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"in2iCvGz4\",isMixedBorderRadius:false,layoutId:\"in2iCvGz4\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/1011404728?share=copy\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6id1k7\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1024,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1024,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q6wbb\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE DON'T \"})}),className:\"framer-1b5xevp\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1200+12+0+0+10),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qIigYZMAvz7hpOBL6RhCUMvsy3I.svg\"}},QPHWTLCE0:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1200+12+0+0+10),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qIigYZMAvz7hpOBL6RhCUMvsy3I.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qIigYZMAvz7hpOBL6RhCUMvsy3I.svg\"},className:\"framer-x5tz28\",\"data-framer-name\":\"image\",id:elementId5,ref:ref6})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-text-transform\":\"uppercase\"},children:\"make\"})}),className:\"framer-1hbkttu\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:800,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1200,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7tss\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE\\xa0CREATE.\"})}),className:\"framer-9tja2h\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1200+12+0+150+10),pixelHeight:378,pixelWidth:377,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/h4HWkfqt2KpYOb1LTa5xen5V3Q4.svg\"}},QPHWTLCE0:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1200+12+0+150+10),pixelHeight:378,pixelWidth:377,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/h4HWkfqt2KpYOb1LTa5xen5V3Q4.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,pixelHeight:378,pixelWidth:377,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/h4HWkfqt2KpYOb1LTa5xen5V3Q4.svg\"},className:\"framer-1qp63zo\",\"data-framer-name\":\"image\",id:elementId6,ref:ref7})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8omywo\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pe3meem6y\"},implicitPathVariables:undefined},{href:{webPageId:\"pe3meem6y\"},implicitPathVariables:undefined},{href:{webPageId:\"pe3meem6y\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{y:(componentViewport?.y||0)+0+0+0+1200+318+25+0},QPHWTLCE0:{y:(componentViewport?.y||0)+0+0+0+1200+318+25+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i5k1w2-container\",nodeId:\"HoPbwsa8Z\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{pV65bEmEr:resolvedLinks1[2]},QPHWTLCE0:{pV65bEmEr:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonInline,{height:\"100%\",id:\"HoPbwsa8Z\",k7OKtVfWt:\"Meer over ons\",layoutId:\"HoPbwsa8Z\",pV65bEmEr:resolvedLinks1[0],variant:\"JsMniBhia\",width:\"100%\"})})})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ce4syy hidden-7b7eoq hidden-11tfjhw hidden-jo3hb7 hidden-3wltz3 hidden-16dad8v\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-199yc5g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"M6M36mSSU\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(37, 61, 55, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"M6M36mSSU\",isMixedBorderRadius:false,layoutId:\"M6M36mSSU\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/1011404728?share=copy\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yukn6r\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1024,y:0}},{ref:ref8,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1024,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ksiv6h\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"220px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE DON'T \"})}),className:\"framer-1rng4bx\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ioXy4P8D1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+6369.026315789473+12+0+0+0),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qIigYZMAvz7hpOBL6RhCUMvsy3I.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qIigYZMAvz7hpOBL6RhCUMvsy3I.svg\"},className:\"framer-gqk64b\",\"data-framer-name\":\"image\",id:elementId9,ref:ref10})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"220px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-text-transform\":\"uppercase\"},children:\"make\"})}),className:\"framer-aillau\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:800,y:0}},{ref:ref8,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1200,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hm2xj7\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"220px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE\\xa0CREATE.\"})}),className:\"framer-rx8y9g\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ioXy4P8D1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+6369.026315789473+12+0+230+0),pixelHeight:378,pixelWidth:377,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/h4HWkfqt2KpYOb1LTa5xen5V3Q4.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,pixelHeight:378,pixelWidth:377,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/h4HWkfqt2KpYOb1LTa5xen5V3Q4.svg\"},className:\"framer-1rarp50\",\"data-framer-name\":\"image\",id:elementId10,ref:ref11})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1icpnmz\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pe3meem6y\"},implicitPathVariables:undefined},{href:{webPageId:\"pe3meem6y\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ioXy4P8D1:{y:(componentViewport?.y||0)+0+0+0+6369.026315789473+462+18+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jwedsk-container\",nodeId:\"lAFWBmPMe\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ioXy4P8D1:{pV65bEmEr:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonInline,{height:\"100%\",id:\"lAFWBmPMe\",k7OKtVfWt:\"Meer over ons\",layoutId:\"lAFWBmPMe\",pV65bEmEr:resolvedLinks2[0],variant:\"JsMniBhia\",width:\"100%\"})})})})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4648hv hidden-19s6wsm hidden-11tfjhw hidden-3wltz3 hidden-16dad8v\",id:elementId11,ref:ref12,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f4o2h9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JOnNvfAPd\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(37, 61, 55, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"JOnNvfAPd\",isMixedBorderRadius:false,layoutId:\"JOnNvfAPd\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/1011404728?share=copy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-163ndlc\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pe3meem6y\"},implicitPathVariables:undefined},{href:{webPageId:\"pe3meem6y\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i7Fkz9Tv2:{y:(componentViewport?.y||0)+0+0+0+2518.3673469387754+1027+18+1.335949764521196}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"120px\",y:(componentViewport?.y||0)+0+0+0+2719.7278911564626+710+18+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13an8m8-container\",nodeId:\"uCwy2T2oA\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i7Fkz9Tv2:{pV65bEmEr:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ButtonInline,{height:\"100%\",id:\"uCwy2T2oA\",k7OKtVfWt:\"Meer over ons\",layoutId:\"uCwy2T2oA\",pV65bEmEr:resolvedLinks3[0],style:{height:\"100%\",width:\"100%\"},variant:\"JsMniBhia\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nu8wgs\",id:elementId12,ref:ref13,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1024,y:0}},{ref:ref12,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1024,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rbfdh7\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"320px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE DON'T \"})}),className:\"framer-rnqvoi\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i7Fkz9Tv2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2518.3673469387754+183+0+0+50),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qIigYZMAvz7hpOBL6RhCUMvsy3I.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2719.7278911564626+12+0+0+50),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qIigYZMAvz7hpOBL6RhCUMvsy3I.svg\"},className:\"framer-c04mg\",\"data-framer-name\":\"image\",id:elementId13,ref:ref14})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"320px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-text-transform\":\"uppercase\"},children:\"Make\"})}),className:\"framer-vyaevx\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:800,y:0}},{ref:ref12,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1200,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oijzlq\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"320px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE\\xa0CREATE.\"})}),className:\"framer-i0r81r\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i7Fkz9Tv2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2518.3673469387754+183+0+330+50),pixelHeight:378,pixelWidth:377,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/h4HWkfqt2KpYOb1LTa5xen5V3Q4.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2719.7278911564626+12+0+330+50),pixelHeight:378,pixelWidth:377,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/h4HWkfqt2KpYOb1LTa5xen5V3Q4.svg\"},className:\"framer-1kmq0eo\",\"data-framer-name\":\"image\",id:elementId14,ref:ref15})})]})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2ium hidden-7b7eoq hidden-19s6wsm hidden-11tfjhw hidden-jo3hb7 hidden-16dad8v\",id:elementId15,ref:ref16,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1njdcck-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vr4v9qTjd\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(37, 61, 55, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"vr4v9qTjd\",isMixedBorderRadius:false,layoutId:\"vr4v9qTjd\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/1011404728?share=copy\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wrjdg\",id:elementId16,ref:ref17,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1024,y:0}},{ref:ref16,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1024,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jm80s0\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE DON'T \"})}),className:\"framer-zlbk3k\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vdHg41EcQ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+12+0+0+10),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qIigYZMAvz7hpOBL6RhCUMvsy3I.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qIigYZMAvz7hpOBL6RhCUMvsy3I.svg\"},className:\"framer-rc3l3o\",\"data-framer-name\":\"image\",id:elementId17,ref:ref18})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-text-transform\":\"uppercase\"},children:\"make\"})}),className:\"framer-1sbjugg\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:800,y:0}},{ref:ref16,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1200,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gd990l\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-205f2376-f57f-472a-9992-6b25118b3c14, rgb(225, 224, 227))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE\\xa0CREATE.\"})}),className:\"framer-1rqxhyx\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vdHg41EcQ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+12+0+150+10),pixelHeight:378,pixelWidth:377,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/h4HWkfqt2KpYOb1LTa5xen5V3Q4.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:560,intrinsicWidth:560,pixelHeight:378,pixelWidth:377,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/h4HWkfqt2KpYOb1LTa5xen5V3Q4.svg\"},className:\"framer-1yuu8b6\",\"data-framer-name\":\"image\",id:elementId18,ref:ref19})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gjuoy6\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pe3meem6y\"},implicitPathVariables:undefined},{href:{webPageId:\"pe3meem6y\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vdHg41EcQ:{y:(componentViewport?.y||0)+0+0+0+1e3+318+25+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f6jcaf-container\",nodeId:\"S7F61VcaP\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vdHg41EcQ:{pV65bEmEr:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(ButtonInline,{height:\"100%\",id:\"S7F61VcaP\",k7OKtVfWt:\"Meer over ons\",layoutId:\"S7F61VcaP\",pV65bEmEr:resolvedLinks4[0],variant:\"JsMniBhia\",width:\"100%\"})})})})})})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rys2ni hidden-11tfjhw hidden-16dad8v\",\"data-border\":true,\"data-framer-name\":\"works wrapper\",id:elementId19,ref:ref20,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q9thhs\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"aVFbMFvMD\",data:ProjectenHoofdPagina,type:\"Collection\"},select:[{collection:\"aVFbMFvMD\",name:\"PGuiWwKGa\",type:\"Identifier\"},{collection:\"aVFbMFvMD\",name:\"id\",type:\"Identifier\"},{alias:\"RVQsFcgNS\",arguments:[{from:{alias:\"RVQsFcgNS\",data:ProjectenHoofdPagina,type:\"Collection\"},select:[{collection:\"RVQsFcgNS\",name:\"PGuiWwKGa\",type:\"Identifier\"},{collection:\"RVQsFcgNS\",name:\"lCPECI4II\",type:\"Identifier\"},{collection:\"RVQsFcgNS\",name:\"VCRWBFJ8z\",type:\"Identifier\"},{collection:\"RVQsFcgNS\",name:\"RlWm3mUvk\",type:\"Identifier\"},{collection:\"RVQsFcgNS\",name:\"IExvfEWD4\",type:\"Identifier\"},{collection:\"RVQsFcgNS\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]},children:(collection1,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idaVFbMFvMD,PGuiWwKGa:PGuiWwKGaaVFbMFvMD,RVQsFcgNS:collection},index1)=>{PGuiWwKGaaVFbMFvMD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`aVFbMFvMD-${idaVFbMFvMD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{PGuiWwKGa:PGuiWwKGaaVFbMFvMD},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vvAWr8NMw\"},motionChild:true,nodeId:\"y0ov_v44b\",openInNewTab:false,scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-gm1jsu framer-1h3mene\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ik9mr\",children:collection?.map(({id:idRVQsFcgNS,IExvfEWD4:IExvfEWD4RVQsFcgNS,lCPECI4II:lCPECI4IIRVQsFcgNS,PGuiWwKGa:PGuiWwKGaRVQsFcgNS,RlWm3mUvk:RlWm3mUvkRVQsFcgNS,VCRWBFJ8z:VCRWBFJ8zRVQsFcgNS},index)=>{PGuiWwKGaRVQsFcgNS??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RVQsFcgNS-${idRVQsFcgNS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{PGuiWwKGa:PGuiWwKGaRVQsFcgNS},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3yqyrr\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1c8srfl\",\"data-framer-name\":\"Hero\",id:`${PGuiWwKGaaVFbMFvMD}-${PGuiWwKGaRVQsFcgNS}-${elementId20}`,ref:dynamicRef(`${PGuiWwKGaaVFbMFvMD}-${PGuiWwKGaRVQsFcgNS}-${elementId20}`),children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d28rdv\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kcxmb2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(117, 250, 157))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE\\xa0DON\u2019T\\xa0MAKE,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(117, 250, 157))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE\\xa0CREATE.\"})]}),className:\"framer-avqsv1\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uu3t4n\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ioXy4P8D1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7398.026315789473+0+0+0+0+0+0+104+0+0+0+0+0+0+76),pixelHeight:560,pixelWidth:560,sizes:\"18px\",src:\"https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg\",srcSet:\"https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg 560w\"}},vdHg41EcQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2031.5151515151515+0+0+0+0+0+0+0+0+0+0+0+0+0+76),pixelHeight:560,pixelWidth:560,sizes:\"18px\",src:\"https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg\",srcSet:\"https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg 560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4e3+0+0+0+0+0+0+0+0+0+0+0+0+0+76),pixelHeight:560,pixelWidth:560,sizes:\"18px\",src:\"https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg\",srcSet:\"https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg 560w\"},className:\"framer-19yiz7v\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y8imzf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(117, 250, 157))\",\"--framer-text-transform\":\"uppercase\"},children:\"Projecten\"})}),className:\"framer-1w8s9n\",fonts:[\"Inter-SemiBold\"],text:lCPECI4IIRVQsFcgNS,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uwyp7o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vdHg41EcQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-213e3b65-2f72-458c-b2f1-9c03134b2351, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Projecten\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"94px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-213e3b65-2f72-458c-b2f1-9c03134b2351, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Projecten\"})}),className:\"framer-1lz9c4j\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],text:lCPECI4IIRVQsFcgNS,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uono95\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i7Fkz9Tv2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-4phc1y\",\"data-styles-preset\":\"Eqa4EoopJ\",children:\"Handgemaakt werk. Met liefde voor elk detail.\"})}),fonts:[\"Inter\"]},vdHg41EcQ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Handgemaakt werk. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Met liefde voor elk detail.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Handgemaakt werk. Met liefde voor elk detail.\"})}),className:\"framer-1pwryyd\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o3dk37\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-qop2z4\",id:`${PGuiWwKGaaVFbMFvMD}-${PGuiWwKGaRVQsFcgNS}-${elementId21}`,ref:dynamicRef(`${PGuiWwKGaaVFbMFvMD}-${PGuiWwKGaRVQsFcgNS}-${elementId21}`),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ioXy4P8D1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7398.026315789473+0+0+0+0+0+0+104+0+0+1200+0+0+280.8163265306125),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1480px) - 60px)`,...toResponsiveImage(VCRWBFJ8zRVQsFcgNS),...{positionX:\"center\",positionY:\"center\"}}},vdHg41EcQ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2031.5151515151515+0+0+0+0+0+0+0+0+0+499.4312796208531+0+0+65),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1480px) - 40px)`,...toResponsiveImage(VCRWBFJ8zRVQsFcgNS),...{positionX:\"center\",positionY:\"center\"}},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4e3+0+0+0+0+0+0+0+0+0+1200+0+0+180.68027210884378),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1480px) - 60px)`,...toResponsiveImage(VCRWBFJ8zRVQsFcgNS),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1j2sir0\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-1nqqaei\",id:`${PGuiWwKGaaVFbMFvMD}-${PGuiWwKGaRVQsFcgNS}-${elementId22}`,ref:dynamicRef(`${PGuiWwKGaaVFbMFvMD}-${PGuiWwKGaRVQsFcgNS}-${elementId22}`),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ioXy4P8D1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7398.026315789473+0+0+0+0+0+0+104+0+0+1200+0+1440+280.8163265306125),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1480px) - 60px)`,...toResponsiveImage(RlWm3mUvkRVQsFcgNS),...{positionX:\"center\",positionY:\"center\"}}},vdHg41EcQ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2031.5151515151515+0+0+0+0+0+0+0+0+0+499.4312796208531+0+730+65),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1480px) - 40px)`,...toResponsiveImage(RlWm3mUvkRVQsFcgNS),...{positionX:\"center\",positionY:\"center\"}},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4e3+0+0+0+0+0+0+0+0+0+1200+0+1240+180.68027210884378),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1480px) - 60px)`,...toResponsiveImage(RlWm3mUvkRVQsFcgNS),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-6g0rs3\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-1lodk1l\",id:`${PGuiWwKGaaVFbMFvMD}-${PGuiWwKGaRVQsFcgNS}-${elementId23}`,ref:dynamicRef(`${PGuiWwKGaaVFbMFvMD}-${PGuiWwKGaRVQsFcgNS}-${elementId23}`),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ioXy4P8D1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7398.026315789473+0+0+0+0+0+0+104+0+0+1200+0+2880+280.8163265306125),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1480px) - 60px)`,...toResponsiveImage(IExvfEWD4RVQsFcgNS),...{positionX:\"center\",positionY:\"center\"}}},vdHg41EcQ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2031.5151515151515+0+0+0+0+0+0+0+0+0+499.4312796208531+0+1460+65),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1480px) - 40px)`,...toResponsiveImage(IExvfEWD4RVQsFcgNS),...{positionX:\"center\",positionY:\"center\"}},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4e3+0+0+0+0+0+0+0+0+0+1200+0+2480+180.68027210884378),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1480px) - 60px)`,...toResponsiveImage(IExvfEWD4RVQsFcgNS),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-13mvpmt\",transformTemplate:transformTemplate1})})})]})]})})},idRVQsFcgNS);})})})})})},idaVFbMFvMD);})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vvAWr8NMw\"},implicitPathVariables:undefined},{href:{webPageId:\"vvAWr8NMw\"},implicitPathVariables:undefined},{href:{webPageId:\"vvAWr8NMw\"},implicitPathVariables:undefined},{href:{webPageId:\"vvAWr8NMw\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ioXy4P8D1:{y:(componentViewport?.y||0)+0+7398.026315789473+0+5488},vdHg41EcQ:{y:(componentViewport?.y||0)+0+2031.5151515151515+0+2729.4312796208533}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:(componentViewport?.y||0)+0+4e3+0+4680,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c7z1n0-container\",nodeId:\"KSORbDoii\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i7Fkz9Tv2:{eBwpRTt01:resolvedLinks5[2]},ioXy4P8D1:{eBwpRTt01:resolvedLinks5[1]},vdHg41EcQ:{eBwpRTt01:resolvedLinks5[3]}},children:/*#__PURE__*/_jsx(ButtonStartAProject,{AKctid7ZA:\"We hebben meer!\",eBwpRTt01:resolvedLinks5[0],height:\"100%\",id:\"KSORbDoii\",layoutId:\"KSORbDoii\",variant:\"BdWq7Fxy4\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aqf9cc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{y:(componentViewport?.y||0)+0+4694.931279620853+0+28.5},ioXy4P8D1:{y:(componentViewport?.y||0)+0+13206.026315789473+0+28.5},QPHWTLCE0:{y:(componentViewport?.y||0)+0+4694.931279620853+0+28.5},vdHg41EcQ:{y:(componentViewport?.y||0)+0+5080.946431136004+0+28.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:943,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+9e3+0+28.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11weacs-container\",nodeId:\"tdUr045hS\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{variant:\"Y10ZKe2Ul\"},ioXy4P8D1:{variant:\"rkrHz0ah_\"},QPHWTLCE0:{variant:\"Y10ZKe2Ul\"},vdHg41EcQ:{variant:\"Y10ZKe2Ul\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"tdUr045hS\",layoutId:\"tdUr045hS\",style:{width:\"100%\"},variant:\"QJB2HTk1R\",width:\"100%\"})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aldfim hidden-7b7eoq hidden-19s6wsm hidden-jo3hb7 hidden-3wltz3\",\"data-border\":true,\"data-framer-name\":\"works wrapper\",id:elementId24,ref:ref21,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k1ky1k\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"IyI7RbOhX\",data:ProjectenHoofdPagina,type:\"Collection\"},select:[{collection:\"IyI7RbOhX\",name:\"PGuiWwKGa\",type:\"Identifier\"},{collection:\"IyI7RbOhX\",name:\"id\",type:\"Identifier\"},{alias:\"yaqKS5pel\",arguments:[{from:{alias:\"yaqKS5pel\",data:ProjectenHoofdPagina,type:\"Collection\"},select:[{collection:\"yaqKS5pel\",name:\"PGuiWwKGa\",type:\"Identifier\"},{collection:\"yaqKS5pel\",name:\"lCPECI4II\",type:\"Identifier\"},{collection:\"yaqKS5pel\",name:\"FTOu9H_23\",type:\"Identifier\"},{collection:\"yaqKS5pel\",name:\"VCRWBFJ8z\",type:\"Identifier\"},{collection:\"yaqKS5pel\",name:\"RlWm3mUvk\",type:\"Identifier\"},{collection:\"yaqKS5pel\",name:\"IExvfEWD4\",type:\"Identifier\"},{collection:\"yaqKS5pel\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]},children:(collection3,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idIyI7RbOhX,PGuiWwKGa:PGuiWwKGaIyI7RbOhX,yaqKS5pel:collection2},index3)=>{PGuiWwKGaIyI7RbOhX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`IyI7RbOhX-${idIyI7RbOhX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{PGuiWwKGa:PGuiWwKGaIyI7RbOhX},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vvAWr8NMw\"},motionChild:true,nodeId:\"Nc5KacHbY\",openInNewTab:false,scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-nklt7j framer-1h3mene\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-cb88kg\",children:collection2?.map(({FTOu9H_23:FTOu9H_23yaqKS5pel,id:idyaqKS5pel,IExvfEWD4:IExvfEWD4yaqKS5pel,lCPECI4II:lCPECI4IIyaqKS5pel,PGuiWwKGa:PGuiWwKGayaqKS5pel,RlWm3mUvk:RlWm3mUvkyaqKS5pel,VCRWBFJ8z:VCRWBFJ8zyaqKS5pel},index2)=>{PGuiWwKGayaqKS5pel??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`yaqKS5pel-${idyaqKS5pel}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{PGuiWwKGa:PGuiWwKGayaqKS5pel},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g6htwb\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-s1cmv8\",\"data-framer-name\":\"Hero\",id:`${PGuiWwKGaIyI7RbOhX}-${PGuiWwKGayaqKS5pel}-${elementId25}`,ref:dynamicRef(`${PGuiWwKGaIyI7RbOhX}-${PGuiWwKGayaqKS5pel}-${elementId25}`),children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z26nh1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15yi46s\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(117, 250, 157))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE\\xa0DON\u2019T\\xa0MAKE,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(117, 250, 157))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE\\xa0CREATE.\"})]}),className:\"framer-1feezhw\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ts005l\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1645.5+0+0+0+0+0+0+0+0+0+0+0+0+0+76),pixelHeight:560,pixelWidth:560,sizes:\"18px\",src:\"https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg\",srcSet:\"https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg 560w\"}},QPHWTLCE0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:560,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1645.5+0+0+0+0+0+0+0+0+0+0+0+0+0+76),pixelHeight:560,pixelWidth:560,sizes:\"18px\",src:\"https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg\",srcSet:\"https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg 560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:560,intrinsicWidth:560,pixelHeight:560,pixelWidth:560,sizes:\"18px\",src:\"https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg\",srcSet:\"https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xA4ooHlKOZ8LZvWfUfvI4OvwIU.svg 560w\"},className:\"framer-ch8fu0\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eihipl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(117, 250, 157))\",\"--framer-text-transform\":\"uppercase\"},children:\"Projecten\"})}),className:\"framer-13ezfwn\",fonts:[\"Inter-SemiBold\"],text:lCPECI4IIyaqKS5pel,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5qhagv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJsYWNr\",\"--framer-font-family\":'\"TASA Orbiter Display Black\", \"TASA Orbiter Display Black Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-213e3b65-2f72-458c-b2f1-9c03134b2351, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Projecten\"})}),className:\"framer-ivye1a\",fonts:[\"CUSTOM;TASA Orbiter Display Black\"],text:lCPECI4IIyaqKS5pel,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9sgsm4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Deck Medium\", \"TASA Orbiter Deck Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.5)\",\"--framer-text-transform\":\"uppercase\"},children:\"2022\"})}),className:\"framer-7nj2ua\",fonts:[\"CUSTOM;TASA Orbiter Deck Medium\"],text:FTOu9H_23yaqKS5pel,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Handgemaakt werk. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Met liefde voor elk detail.\"})]}),className:\"framer-1ymlk90\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qkwya\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-1coxtv\",id:`${PGuiWwKGaIyI7RbOhX}-${PGuiWwKGayaqKS5pel}-${elementId26}`,ref:dynamicRef(`${PGuiWwKGaIyI7RbOhX}-${PGuiWwKGayaqKS5pel}-${elementId26}`),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1645.5+0+0+0+0+0+0+0+0+0+499.4312796208531+0+0+65),sizes:\"357px\",...toResponsiveImage(VCRWBFJ8zyaqKS5pel),...{positionX:\"center\",positionY:\"center\"}}},QPHWTLCE0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1645.5+0+0+0+0+0+0+0+0+0+499.4312796208531+0+0+65),sizes:\"357px\",...toResponsiveImage(VCRWBFJ8zyaqKS5pel),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"357px\",...toResponsiveImage(VCRWBFJ8zyaqKS5pel),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1hrpxps\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-a3672t\",id:`${PGuiWwKGaIyI7RbOhX}-${PGuiWwKGayaqKS5pel}-${elementId27}`,ref:dynamicRef(`${PGuiWwKGaIyI7RbOhX}-${PGuiWwKGayaqKS5pel}-${elementId27}`),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1645.5+0+0+0+0+0+0+0+0+0+499.4312796208531+0+730+65),sizes:\"357px\",...toResponsiveImage(RlWm3mUvkyaqKS5pel),...{positionX:\"center\",positionY:\"center\"}}},QPHWTLCE0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1645.5+0+0+0+0+0+0+0+0+0+499.4312796208531+0+730+65),sizes:\"357px\",...toResponsiveImage(RlWm3mUvkyaqKS5pel),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"357px\",...toResponsiveImage(RlWm3mUvkyaqKS5pel),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1edbnml\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-c6129m\",id:`${PGuiWwKGaIyI7RbOhX}-${PGuiWwKGayaqKS5pel}-${elementId28}`,ref:dynamicRef(`${PGuiWwKGaIyI7RbOhX}-${PGuiWwKGayaqKS5pel}-${elementId28}`),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1645.5+0+0+0+0+0+0+0+0+0+499.4312796208531+0+1460+65),sizes:\"357px\",...toResponsiveImage(IExvfEWD4yaqKS5pel),...{positionX:\"center\",positionY:\"center\"}}},QPHWTLCE0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1645.5+0+0+0+0+0+0+0+0+0+499.4312796208531+0+1460+65),sizes:\"357px\",...toResponsiveImage(IExvfEWD4yaqKS5pel),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"357px\",...toResponsiveImage(IExvfEWD4yaqKS5pel),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-wovxwb\"})})})]})]})})},idyaqKS5pel);})})})})})},idIyI7RbOhX);})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vvAWr8NMw\"},implicitPathVariables:undefined},{href:{webPageId:\"vvAWr8NMw\"},implicitPathVariables:undefined},{href:{webPageId:\"vvAWr8NMw\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{y:(componentViewport?.y||0)+0+1645.5+0+2729.4312796208533},QPHWTLCE0:{y:(componentViewport?.y||0)+0+1645.5+0+2729.4312796208533}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,children:/*#__PURE__*/_jsx(Container,{className:\"framer-no0ms4-container\",nodeId:\"qnvjQLB8N\",scopeId:\"weTkVwjyC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{areBPVbbB:{eBwpRTt01:resolvedLinks6[2]},QPHWTLCE0:{eBwpRTt01:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(ButtonStartAProject,{AKctid7ZA:\"We hebben meer!\",eBwpRTt01:resolvedLinks6[0],height:\"100%\",id:\"qnvjQLB8N\",layoutId:\"qnvjQLB8N\",variant:\"BdWq7Fxy4\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WPglZ.framer-1h3mene, .framer-WPglZ .framer-1h3mene { display: block; }\",\".framer-WPglZ.framer-7b7eoq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-WPglZ .framer-19yol6p-container { bottom: 0px; flex: none; height: auto; left: 0px; position: fixed; right: 0px; z-index: 10; }\",\".framer-WPglZ .framer-1v594x5 { align-content: center; align-items: center; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; min-height: 400vh; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-WPglZ .framer-ul2mqw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-WPglZ .framer-1jxf0o1 { align-content: center; align-items: center; background-color: var(--token-997cd56e-ce28-4341-927b-f991f19aed3d, #31715a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; max-width: 100%; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-WPglZ .framer-nm83h4 { align-content: center; align-items: center; background-color: #31715a; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100vh; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 135px 0px; position: relative; width: 100%; }\",\".framer-WPglZ .framer-uu7899 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 186px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-WPglZ .framer-2xix7e { flex: none; height: 157px; max-width: 785px; overflow: visible; position: relative; transform-style: preserve-3d; width: 477px; z-index: 1; }\",\".framer-WPglZ .framer-vcm3d0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 70%; }\",\".framer-WPglZ .framer-2g0u8r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 0.1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-WPglZ .framer-di0us-container { flex: 0.2 0 0px; height: 46px; position: relative; width: 1px; }\",\".framer-WPglZ .framer-hohmqs-container { height: 16px; position: relative; width: 231px; }\",\".framer-WPglZ .framer-6ht2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 0.2 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-WPglZ .framer-3luvvi-container { flex: none; height: 86px; position: relative; width: 100%; }\",\".framer-WPglZ .framer-y3sj5-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-WPglZ .framer-8eplwe-container, .framer-WPglZ .framer-1i5k1w2-container, .framer-WPglZ .framer-jwedsk-container, .framer-WPglZ .framer-1f6jcaf-container, .framer-WPglZ .framer-1c7z1n0-container, .framer-WPglZ .framer-no0ms4-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-WPglZ .framer-1u3ztea { align-content: center; align-items: center; aspect-ratio: 0.8888888888888888 / 1; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 71px; height: var(--framer-aspect-ratio-supported, 0px); justify-content: center; max-width: 100%; overflow: hidden; padding: 0px 198px 0px 198px; position: relative; width: 102%; z-index: 9; }\",\".framer-WPglZ .framer-1sr8s4s-container, .framer-WPglZ .framer-1njdcck-container { aspect-ratio: 1.7656477438136826 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 314px); left: -79px; position: absolute; right: -80px; top: 0px; z-index: -1; }\",\".framer-WPglZ .framer-6id1k7, .framer-WPglZ .framer-yukn6r { 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; left: -145px; overflow: hidden; padding: 0px; position: absolute; top: 12px; width: 268%; z-index: 1; }\",\".framer-WPglZ .framer-q6wbb, .framer-WPglZ .framer-7tss, .framer-WPglZ .framer-ksiv6h, .framer-WPglZ .framer-1hm2xj7, .framer-WPglZ .framer-rbfdh7, .framer-WPglZ .framer-1oijzlq, .framer-WPglZ .framer-1jm80s0, .framer-WPglZ .framer-1gd990l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-WPglZ .framer-1b5xevp, .framer-WPglZ .framer-1hbkttu, .framer-WPglZ .framer-9tja2h, .framer-WPglZ .framer-1rng4bx, .framer-WPglZ .framer-aillau, .framer-WPglZ .framer-rx8y9g, .framer-WPglZ .framer-rnqvoi, .framer-WPglZ .framer-vyaevx, .framer-WPglZ .framer-i0r81r, .framer-WPglZ .framer-zlbk3k, .framer-WPglZ .framer-1sbjugg, .framer-WPglZ .framer-1rqxhyx, .framer-WPglZ .framer-avqsv1, .framer-WPglZ .framer-1w8s9n, .framer-WPglZ .framer-1lz9c4j, .framer-WPglZ .framer-1pwryyd, .framer-WPglZ .framer-1feezhw, .framer-WPglZ .framer-13ezfwn, .framer-WPglZ .framer-ivye1a, .framer-WPglZ .framer-7nj2ua { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-WPglZ .framer-x5tz28, .framer-WPglZ .framer-1qp63zo, .framer-WPglZ .framer-rc3l3o, .framer-WPglZ .framer-1yuu8b6 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 120px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 120px; z-index: 5; }\",\".framer-WPglZ .framer-8omywo, .framer-WPglZ .framer-1gjuoy6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; left: -95px; max-width: 148%; overflow: hidden; padding: 25px 0px 18px 0px; position: absolute; right: -96px; top: 318px; z-index: 1; }\",\".framer-WPglZ .framer-1ce4syy { align-content: center; align-items: center; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 71px; height: 1029px; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px 198px 0px 198px; position: relative; width: 100%; z-index: 9; }\",\".framer-WPglZ .framer-199yc5g-container, .framer-WPglZ .framer-1f4o2h9-container { aspect-ratio: 1.7656477438136826 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 683px); left: -3px; position: absolute; right: -3px; top: 0px; z-index: -1; }\",\".framer-WPglZ .framer-gqk64b, .framer-WPglZ .framer-1rarp50, .framer-WPglZ .framer-c04mg, .framer-WPglZ .framer-1kmq0eo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 220px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 220px; z-index: 5; }\",\".framer-WPglZ .framer-1icpnmz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; left: -195px; max-width: 148%; overflow: hidden; padding: 18px 0px 18px 0px; position: absolute; right: -195px; top: 462px; z-index: 1; }\",\".framer-WPglZ .framer-4648hv { align-content: center; align-items: center; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 75px; height: 128.02721088435374vh; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px 198px 0px 198px; position: relative; width: 100%; z-index: 9; }\",\".framer-WPglZ .framer-163ndlc { align-content: center; align-items: center; aspect-ratio: 16.216216216216218 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 74px); justify-content: center; left: 0px; max-width: 100%; overflow: hidden; padding: 18px 0px 18px 0px; position: absolute; right: 0px; top: 710px; z-index: 1; }\",\".framer-WPglZ .framer-13an8m8-container { flex: none; height: 38px; position: relative; width: 120px; }\",\".framer-WPglZ .framer-1nu8wgs { 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; left: -145px; overflow: hidden; padding: 0px; position: absolute; right: -155px; top: 12px; z-index: 1; }\",\".framer-WPglZ .framer-1f2ium { align-content: center; align-items: center; aspect-ratio: 0.3848396501457726 / 1; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 71px; height: var(--framer-aspect-ratio-supported, 0px); justify-content: center; max-width: 100%; overflow: hidden; padding: 0px 198px 0px 198px; position: relative; width: 100%; z-index: 9; }\",\".framer-WPglZ .framer-wrjdg { 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; left: -145px; overflow: hidden; padding: 0px; position: absolute; top: 12px; width: 1062px; z-index: 1; }\",\".framer-WPglZ .framer-1rys2ni { --border-bottom-width: 0px; --border-color: #222222; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 240px 0px; position: relative; width: 100%; z-index: 9; }\",\".framer-WPglZ .framer-q9thhs { align-content: center; align-items: center; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 220px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-WPglZ .framer-gm1jsu { align-content: center; align-items: center; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 200px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-WPglZ .framer-3ik9mr, .framer-WPglZ .framer-cb88kg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 220px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-WPglZ .framer-3yqyrr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 200px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-WPglZ .framer-1c8srfl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; max-width: 100%; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 3; }\",\".framer-WPglZ .framer-d28rdv, .framer-WPglZ .framer-z26nh1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 170px; justify-content: flex-start; max-width: 1480px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-WPglZ .framer-1kcxmb2, .framer-WPglZ .framer-15yi46s { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; padding: 32px; position: relative; width: 1px; }\",\".framer-WPglZ .framer-uu3t4n, .framer-WPglZ .framer-ts005l { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 32px; position: relative; width: 1px; }\",\".framer-WPglZ .framer-19yiz7v, .framer-WPglZ .framer-ch8fu0 { flex: none; height: 18px; overflow: hidden; position: relative; width: 18px; }\",\".framer-WPglZ .framer-1y8imzf, .framer-WPglZ .framer-1eihipl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; padding: 32px; position: relative; width: 1px; }\",\".framer-WPglZ .framer-uwyp7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 87%; justify-content: center; overflow: visible; padding: 0px 0px 100px 0px; position: relative; width: 1200px; }\",\".framer-WPglZ .framer-uono95 { 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-WPglZ .framer-1o3dk37 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 240px; height: min-content; justify-content: center; max-width: 1480px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 8; }\",\".framer-WPglZ .framer-qop2z4, .framer-WPglZ .framer-1nqqaei, .framer-WPglZ .framer-1lodk1l { flex: none; height: 100vh; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-WPglZ .framer-1j2sir0, .framer-WPglZ .framer-6g0rs3, .framer-WPglZ .framer-13mvpmt { aspect-ratio: 1.78125 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 640px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; z-index: 1; }\",\".framer-WPglZ .framer-1aqf9cc { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-WPglZ .framer-11weacs-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-WPglZ .framer-aldfim { --border-bottom-width: 0px; --border-color: #222222; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 240px 0px; position: relative; width: 102%; z-index: 9; }\",\".framer-WPglZ .framer-k1ky1k { align-content: center; align-items: center; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 220px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 397px; }\",\".framer-WPglZ .framer-nklt7j { align-content: center; align-items: center; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: flex-start; padding: 0px 0px 80px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-WPglZ .framer-1g6htwb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: flex-start; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-WPglZ .framer-s1cmv8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 41.943127962085306vh; justify-content: space-between; max-width: 100%; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 3; }\",\".framer-WPglZ .framer-5qhagv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 32%; justify-content: center; overflow: visible; padding: 0px 0px 100px 0px; position: relative; width: 343px; }\",\".framer-WPglZ .framer-9sgsm4 { 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: 402px; }\",\".framer-WPglZ .framer-1ymlk90 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 60%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-WPglZ .framer-1qkwya { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1480px; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; z-index: 8; }\",\".framer-WPglZ .framer-1coxtv, .framer-WPglZ .framer-a3672t, .framer-WPglZ .framer-c6129m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 65px 0px 65px 0px; position: sticky; top: 100px; width: 100%; z-index: 1; }\",\".framer-WPglZ .framer-1hrpxps, .framer-WPglZ .framer-1edbnml, .framer-WPglZ .framer-wovxwb { aspect-ratio: 1.78125 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 112px); position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WPglZ.framer-7b7eoq, .framer-WPglZ .framer-ul2mqw, .framer-WPglZ .framer-nm83h4, .framer-WPglZ .framer-uu7899, .framer-WPglZ .framer-vcm3d0, .framer-WPglZ .framer-1u3ztea, .framer-WPglZ .framer-6id1k7, .framer-WPglZ .framer-q6wbb, .framer-WPglZ .framer-x5tz28, .framer-WPglZ .framer-7tss, .framer-WPglZ .framer-1qp63zo, .framer-WPglZ .framer-8omywo, .framer-WPglZ .framer-1ce4syy, .framer-WPglZ .framer-yukn6r, .framer-WPglZ .framer-ksiv6h, .framer-WPglZ .framer-gqk64b, .framer-WPglZ .framer-1hm2xj7, .framer-WPglZ .framer-1rarp50, .framer-WPglZ .framer-1icpnmz, .framer-WPglZ .framer-4648hv, .framer-WPglZ .framer-163ndlc, .framer-WPglZ .framer-1nu8wgs, .framer-WPglZ .framer-rbfdh7, .framer-WPglZ .framer-c04mg, .framer-WPglZ .framer-1oijzlq, .framer-WPglZ .framer-1kmq0eo, .framer-WPglZ .framer-1f2ium, .framer-WPglZ .framer-wrjdg, .framer-WPglZ .framer-1jm80s0, .framer-WPglZ .framer-rc3l3o, .framer-WPglZ .framer-1gd990l, .framer-WPglZ .framer-1yuu8b6, .framer-WPglZ .framer-1gjuoy6, .framer-WPglZ .framer-1rys2ni, .framer-WPglZ .framer-q9thhs, .framer-WPglZ .framer-gm1jsu, .framer-WPglZ .framer-3ik9mr, .framer-WPglZ .framer-3yqyrr, .framer-WPglZ .framer-d28rdv, .framer-WPglZ .framer-1kcxmb2, .framer-WPglZ .framer-uu3t4n, .framer-WPglZ .framer-1y8imzf, .framer-WPglZ .framer-uwyp7o, .framer-WPglZ .framer-uono95, .framer-WPglZ .framer-1o3dk37, .framer-WPglZ .framer-1aqf9cc, .framer-WPglZ .framer-aldfim, .framer-WPglZ .framer-k1ky1k, .framer-WPglZ .framer-nklt7j, .framer-WPglZ .framer-cb88kg, .framer-WPglZ .framer-1g6htwb, .framer-WPglZ .framer-z26nh1, .framer-WPglZ .framer-15yi46s, .framer-WPglZ .framer-ts005l, .framer-WPglZ .framer-1eihipl, .framer-WPglZ .framer-5qhagv, .framer-WPglZ .framer-9sgsm4, .framer-WPglZ .framer-1qkwya, .framer-WPglZ .framer-1coxtv, .framer-WPglZ .framer-a3672t, .framer-WPglZ .framer-c6129m { gap: 0px; } .framer-WPglZ.framer-7b7eoq > *, .framer-WPglZ .framer-ul2mqw > *, .framer-WPglZ .framer-163ndlc > *, .framer-WPglZ .framer-1rys2ni > *, .framer-WPglZ .framer-aldfim > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WPglZ.framer-7b7eoq > :first-child, .framer-WPglZ .framer-ul2mqw > :first-child, .framer-WPglZ .framer-nm83h4 > :first-child, .framer-WPglZ .framer-uu7899 > :first-child, .framer-WPglZ .framer-1u3ztea > :first-child, .framer-WPglZ .framer-6id1k7 > :first-child, .framer-WPglZ .framer-8omywo > :first-child, .framer-WPglZ .framer-1ce4syy > :first-child, .framer-WPglZ .framer-yukn6r > :first-child, .framer-WPglZ .framer-1icpnmz > :first-child, .framer-WPglZ .framer-4648hv > :first-child, .framer-WPglZ .framer-163ndlc > :first-child, .framer-WPglZ .framer-1nu8wgs > :first-child, .framer-WPglZ .framer-1f2ium > :first-child, .framer-WPglZ .framer-wrjdg > :first-child, .framer-WPglZ .framer-1gjuoy6 > :first-child, .framer-WPglZ .framer-1rys2ni > :first-child, .framer-WPglZ .framer-q9thhs > :first-child, .framer-WPglZ .framer-gm1jsu > :first-child, .framer-WPglZ .framer-3ik9mr > :first-child, .framer-WPglZ .framer-3yqyrr > :first-child, .framer-WPglZ .framer-uwyp7o > :first-child, .framer-WPglZ .framer-1o3dk37 > :first-child, .framer-WPglZ .framer-1aqf9cc > :first-child, .framer-WPglZ .framer-aldfim > :first-child, .framer-WPglZ .framer-k1ky1k > :first-child, .framer-WPglZ .framer-nklt7j > :first-child, .framer-WPglZ .framer-cb88kg > :first-child, .framer-WPglZ .framer-1g6htwb > :first-child, .framer-WPglZ .framer-5qhagv > :first-child, .framer-WPglZ .framer-1qkwya > :first-child { margin-top: 0px; } .framer-WPglZ.framer-7b7eoq > :last-child, .framer-WPglZ .framer-ul2mqw > :last-child, .framer-WPglZ .framer-nm83h4 > :last-child, .framer-WPglZ .framer-uu7899 > :last-child, .framer-WPglZ .framer-1u3ztea > :last-child, .framer-WPglZ .framer-6id1k7 > :last-child, .framer-WPglZ .framer-8omywo > :last-child, .framer-WPglZ .framer-1ce4syy > :last-child, .framer-WPglZ .framer-yukn6r > :last-child, .framer-WPglZ .framer-1icpnmz > :last-child, .framer-WPglZ .framer-4648hv > :last-child, .framer-WPglZ .framer-163ndlc > :last-child, .framer-WPglZ .framer-1nu8wgs > :last-child, .framer-WPglZ .framer-1f2ium > :last-child, .framer-WPglZ .framer-wrjdg > :last-child, .framer-WPglZ .framer-1gjuoy6 > :last-child, .framer-WPglZ .framer-1rys2ni > :last-child, .framer-WPglZ .framer-q9thhs > :last-child, .framer-WPglZ .framer-gm1jsu > :last-child, .framer-WPglZ .framer-3ik9mr > :last-child, .framer-WPglZ .framer-3yqyrr > :last-child, .framer-WPglZ .framer-uwyp7o > :last-child, .framer-WPglZ .framer-1o3dk37 > :last-child, .framer-WPglZ .framer-1aqf9cc > :last-child, .framer-WPglZ .framer-aldfim > :last-child, .framer-WPglZ .framer-k1ky1k > :last-child, .framer-WPglZ .framer-nklt7j > :last-child, .framer-WPglZ .framer-cb88kg > :last-child, .framer-WPglZ .framer-1g6htwb > :last-child, .framer-WPglZ .framer-5qhagv > :last-child, .framer-WPglZ .framer-1qkwya > :last-child { margin-bottom: 0px; } .framer-WPglZ .framer-nm83h4 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-WPglZ .framer-uu7899 > *, .framer-WPglZ .framer-6id1k7 > *, .framer-WPglZ .framer-yukn6r > *, .framer-WPglZ .framer-1nu8wgs > *, .framer-WPglZ .framer-wrjdg > *, .framer-WPglZ .framer-1aqf9cc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-WPglZ .framer-vcm3d0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-WPglZ .framer-vcm3d0 > :first-child, .framer-WPglZ .framer-q6wbb > :first-child, .framer-WPglZ .framer-x5tz28 > :first-child, .framer-WPglZ .framer-7tss > :first-child, .framer-WPglZ .framer-1qp63zo > :first-child, .framer-WPglZ .framer-ksiv6h > :first-child, .framer-WPglZ .framer-gqk64b > :first-child, .framer-WPglZ .framer-1hm2xj7 > :first-child, .framer-WPglZ .framer-1rarp50 > :first-child, .framer-WPglZ .framer-rbfdh7 > :first-child, .framer-WPglZ .framer-c04mg > :first-child, .framer-WPglZ .framer-1oijzlq > :first-child, .framer-WPglZ .framer-1kmq0eo > :first-child, .framer-WPglZ .framer-1jm80s0 > :first-child, .framer-WPglZ .framer-rc3l3o > :first-child, .framer-WPglZ .framer-1gd990l > :first-child, .framer-WPglZ .framer-1yuu8b6 > :first-child, .framer-WPglZ .framer-d28rdv > :first-child, .framer-WPglZ .framer-1kcxmb2 > :first-child, .framer-WPglZ .framer-uu3t4n > :first-child, .framer-WPglZ .framer-1y8imzf > :first-child, .framer-WPglZ .framer-uono95 > :first-child, .framer-WPglZ .framer-z26nh1 > :first-child, .framer-WPglZ .framer-15yi46s > :first-child, .framer-WPglZ .framer-ts005l > :first-child, .framer-WPglZ .framer-1eihipl > :first-child, .framer-WPglZ .framer-9sgsm4 > :first-child, .framer-WPglZ .framer-1coxtv > :first-child, .framer-WPglZ .framer-a3672t > :first-child, .framer-WPglZ .framer-c6129m > :first-child { margin-left: 0px; } .framer-WPglZ .framer-vcm3d0 > :last-child, .framer-WPglZ .framer-q6wbb > :last-child, .framer-WPglZ .framer-x5tz28 > :last-child, .framer-WPglZ .framer-7tss > :last-child, .framer-WPglZ .framer-1qp63zo > :last-child, .framer-WPglZ .framer-ksiv6h > :last-child, .framer-WPglZ .framer-gqk64b > :last-child, .framer-WPglZ .framer-1hm2xj7 > :last-child, .framer-WPglZ .framer-1rarp50 > :last-child, .framer-WPglZ .framer-rbfdh7 > :last-child, .framer-WPglZ .framer-c04mg > :last-child, .framer-WPglZ .framer-1oijzlq > :last-child, .framer-WPglZ .framer-1kmq0eo > :last-child, .framer-WPglZ .framer-1jm80s0 > :last-child, .framer-WPglZ .framer-rc3l3o > :last-child, .framer-WPglZ .framer-1gd990l > :last-child, .framer-WPglZ .framer-1yuu8b6 > :last-child, .framer-WPglZ .framer-d28rdv > :last-child, .framer-WPglZ .framer-1kcxmb2 > :last-child, .framer-WPglZ .framer-uu3t4n > :last-child, .framer-WPglZ .framer-1y8imzf > :last-child, .framer-WPglZ .framer-uono95 > :last-child, .framer-WPglZ .framer-z26nh1 > :last-child, .framer-WPglZ .framer-15yi46s > :last-child, .framer-WPglZ .framer-ts005l > :last-child, .framer-WPglZ .framer-1eihipl > :last-child, .framer-WPglZ .framer-9sgsm4 > :last-child, .framer-WPglZ .framer-1coxtv > :last-child, .framer-WPglZ .framer-a3672t > :last-child, .framer-WPglZ .framer-c6129m > :last-child { margin-right: 0px; } .framer-WPglZ .framer-1u3ztea > *, .framer-WPglZ .framer-1ce4syy > *, .framer-WPglZ .framer-1f2ium > * { margin: 0px; margin-bottom: calc(71px / 2); margin-top: calc(71px / 2); } .framer-WPglZ .framer-q6wbb > *, .framer-WPglZ .framer-7tss > *, .framer-WPglZ .framer-ksiv6h > *, .framer-WPglZ .framer-1hm2xj7 > *, .framer-WPglZ .framer-rbfdh7 > *, .framer-WPglZ .framer-1oijzlq > *, .framer-WPglZ .framer-1jm80s0 > *, .framer-WPglZ .framer-1gd990l > * { margin: 0px; margin-left: calc(45px / 2); margin-right: calc(45px / 2); } .framer-WPglZ .framer-x5tz28 > *, .framer-WPglZ .framer-1qp63zo > *, .framer-WPglZ .framer-gqk64b > *, .framer-WPglZ .framer-1rarp50 > *, .framer-WPglZ .framer-c04mg > *, .framer-WPglZ .framer-1kmq0eo > *, .framer-WPglZ .framer-rc3l3o > *, .framer-WPglZ .framer-1yuu8b6 > *, .framer-WPglZ .framer-d28rdv > *, .framer-WPglZ .framer-1kcxmb2 > *, .framer-WPglZ .framer-uu3t4n > *, .framer-WPglZ .framer-1y8imzf > *, .framer-WPglZ .framer-uono95 > *, .framer-WPglZ .framer-z26nh1 > *, .framer-WPglZ .framer-15yi46s > *, .framer-WPglZ .framer-ts005l > *, .framer-WPglZ .framer-1eihipl > *, .framer-WPglZ .framer-9sgsm4 > *, .framer-WPglZ .framer-1coxtv > *, .framer-WPglZ .framer-a3672t > *, .framer-WPglZ .framer-c6129m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WPglZ .framer-8omywo > *, .framer-WPglZ .framer-1icpnmz > *, .framer-WPglZ .framer-1gjuoy6 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-WPglZ .framer-4648hv > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-WPglZ .framer-q9thhs > *, .framer-WPglZ .framer-3ik9mr > *, .framer-WPglZ .framer-k1ky1k > *, .framer-WPglZ .framer-cb88kg > * { margin: 0px; margin-bottom: calc(220px / 2); margin-top: calc(220px / 2); } .framer-WPglZ .framer-gm1jsu > *, .framer-WPglZ .framer-3yqyrr > * { margin: 0px; margin-bottom: calc(200px / 2); margin-top: calc(200px / 2); } .framer-WPglZ .framer-uwyp7o > *, .framer-WPglZ .framer-5qhagv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-WPglZ .framer-1o3dk37 > * { margin: 0px; margin-bottom: calc(240px / 2); margin-top: calc(240px / 2); } .framer-WPglZ .framer-nklt7j > *, .framer-WPglZ .framer-1g6htwb > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-WPglZ .framer-1qkwya > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } }\",...sharedStyle.css,'.framer-WPglZ[data-border=\"true\"]::after, .framer-WPglZ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-WPglZ.framer-7b7eoq { aspect-ratio: 0.5192557334487234 / 1; background-color: var(--token-997cd56e-ce28-4341-927b-f991f19aed3d, #31715a); height: var(--framer-aspect-ratio-supported, 7330px); width: 810px; } .framer-WPglZ .framer-19yol6p-container, .framer-WPglZ .framer-ul2mqw, .framer-WPglZ .framer-3luvvi-container { order: 0; } .framer-WPglZ .framer-1v594x5 { height: 739.8026315789474vh; order: 1; } .framer-WPglZ .framer-nm83h4, .framer-WPglZ .framer-8eplwe-container { order: 1; } .framer-WPglZ .framer-uu7899 { height: 180px; } .framer-WPglZ .framer-2xix7e { height: 147px; width: 453px; } .framer-WPglZ .framer-1ce4syy, .framer-WPglZ .framer-1aqf9cc { order: 3; } .framer-WPglZ .framer-199yc5g-container { height: var(--framer-aspect-ratio-supported, 462px); } .framer-WPglZ .framer-1rys2ni { order: 2; } .framer-WPglZ .framer-3ik9mr { gap: 100px; padding: 104px 0px 104px 0px; } .framer-WPglZ .framer-uwyp7o { height: 59%; width: 740px; } .framer-WPglZ .framer-qop2z4, .framer-WPglZ .framer-1nqqaei, .framer-WPglZ .framer-1lodk1l { height: 120vh; } .framer-WPglZ .framer-1j2sir0, .framer-WPglZ .framer-6g0rs3, .framer-WPglZ .framer-13mvpmt { height: var(--framer-aspect-ratio-supported, 421px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WPglZ .framer-3ik9mr { gap: 0px; } .framer-WPglZ .framer-3ik9mr > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-WPglZ .framer-3ik9mr > :first-child { margin-top: 0px; } .framer-WPglZ .framer-3ik9mr > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 390px) and (max-width: 809px) { .framer-WPglZ.framer-7b7eoq { aspect-ratio: 0.5192557334487234 / 1; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); height: var(--framer-aspect-ratio-supported, 3678px); width: 390px; } .framer-WPglZ .framer-19yol6p-container { order: 0; right: unset; width: 100%; } .framer-WPglZ .framer-1v594x5 { gap: 0px; height: min-content; justify-content: center; min-height: 100vh; order: 1; width: 101%; } .framer-WPglZ .framer-nm83h4 { order: 1; } .framer-WPglZ .framer-uu7899 { height: 100px; } .framer-WPglZ .framer-2xix7e { height: 87px; width: 264px; } .framer-WPglZ .framer-vcm3d0 { flex-wrap: wrap; gap: 10px; padding: 0px 20px 0px 20px; width: 100%; } .framer-WPglZ .framer-2g0u8r, .framer-WPglZ .framer-6ht2 { flex: none; white-space: pre; width: auto; } .framer-WPglZ .framer-di0us-container { flex: 0.5 0 0px; } .framer-WPglZ .framer-3luvvi-container { order: 0; } .framer-WPglZ .framer-1u3ztea { height: var(--framer-aspect-ratio-supported, 443px); } .framer-WPglZ .framer-1sr8s4s-container { height: var(--framer-aspect-ratio-supported, 315px); } .framer-WPglZ .framer-1aqf9cc { order: 4; } .framer-WPglZ .framer-aldfim { order: 3; } .framer-WPglZ .framer-1hrpxps { height: var(--framer-aspect-ratio-supported, 200px); } .framer-WPglZ .framer-1edbnml, .framer-WPglZ .framer-wovxwb { height: var(--framer-aspect-ratio-supported, 201px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WPglZ .framer-1v594x5, .framer-WPglZ .framer-vcm3d0 { gap: 0px; } .framer-WPglZ .framer-1v594x5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WPglZ .framer-1v594x5 > :first-child { margin-top: 0px; } .framer-WPglZ .framer-1v594x5 > :last-child { margin-bottom: 0px; } .framer-WPglZ .framer-vcm3d0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WPglZ .framer-vcm3d0 > :first-child { margin-left: 0px; } .framer-WPglZ .framer-vcm3d0 > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 1800px) { .framer-WPglZ.framer-7b7eoq { width: 1800px; } .framer-WPglZ .framer-ul2mqw, .framer-WPglZ .framer-13an8m8-container, .framer-WPglZ .framer-rbfdh7 { order: 0; } .framer-WPglZ .framer-1jxf0o1 { max-width: 2500px; } .framer-WPglZ .framer-y3sj5-container { aspect-ratio: 2.25 / 1; height: var(--framer-aspect-ratio-supported, 800px); } .framer-WPglZ .framer-8eplwe-container, .framer-WPglZ .framer-1oijzlq { order: 1; } .framer-WPglZ .framer-4648hv { height: 148.16326530612244vh; min-width: 1800px; order: 4; width: min-content; } .framer-WPglZ .framer-1f4o2h9-container { aspect-ratio: 1.7664376840039253 / 1; height: var(--framer-aspect-ratio-supported, 1020px); left: 0px; right: 0px; } .framer-WPglZ .framer-163ndlc { left: 300px; right: 300px; top: 1027px; } .framer-WPglZ .framer-1nu8wgs { top: 183px; } .framer-WPglZ .framer-1j2sir0, .framer-WPglZ .framer-6g0rs3, .framer-WPglZ .framer-13mvpmt { height: var(--framer-aspect-ratio-supported, 797px); }}\",\"@media (max-width: 389px) { .framer-WPglZ.framer-7b7eoq { aspect-ratio: 0.5192557334487234 / 1; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); height: var(--framer-aspect-ratio-supported, 2848px); width: 320px; } .framer-WPglZ .framer-19yol6p-container { order: 0; right: unset; width: 100%; } .framer-WPglZ .framer-1v594x5 { gap: 0px; height: min-content; justify-content: center; min-height: 100vh; order: 1; width: 101%; } .framer-WPglZ .framer-ul2mqw { background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); order: 0; } .framer-WPglZ .framer-nm83h4 { order: 1; } .framer-WPglZ .framer-uu7899 { height: 100px; } .framer-WPglZ .framer-2xix7e { height: 87px; width: 264px; } .framer-WPglZ .framer-vcm3d0 { flex-wrap: wrap; gap: 10px; padding: 0px 20px 0px 20px; width: 100%; } .framer-WPglZ .framer-2g0u8r, .framer-WPglZ .framer-6ht2 { flex: none; white-space: pre; width: auto; } .framer-WPglZ .framer-di0us-container { flex: 0.5 0 0px; } .framer-WPglZ .framer-3luvvi-container { order: 0; } .framer-WPglZ .framer-8eplwe-container, .framer-WPglZ .framer-1rys2ni { order: 2; } .framer-WPglZ .framer-1f2ium { height: var(--framer-aspect-ratio-supported, 840px); order: 1; } .framer-WPglZ .framer-1njdcck-container { height: var(--framer-aspect-ratio-supported, 315px); } .framer-WPglZ .framer-gm1jsu, .framer-WPglZ .framer-3yqyrr { gap: 80px; padding: 0px 0px 80px 0px; } .framer-WPglZ .framer-1c8srfl { height: 41.943127962085306vh; } .framer-WPglZ .framer-uwyp7o { height: 32%; width: 343px; } .framer-WPglZ .framer-uono95 { width: 402px; } .framer-WPglZ .framer-1pwryyd { max-width: 60%; order: 0; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-WPglZ .framer-1o3dk37 { gap: 120px; padding: 0px 20px 0px 20px; } .framer-WPglZ .framer-qop2z4, .framer-WPglZ .framer-1nqqaei, .framer-WPglZ .framer-1lodk1l { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 65px 0px 65px 0px; top: 100px; } .framer-WPglZ .framer-1j2sir0, .framer-WPglZ .framer-6g0rs3, .framer-WPglZ .framer-13mvpmt { height: var(--framer-aspect-ratio-supported, 112px); left: unset; position: relative; top: unset; transform: unset; } .framer-WPglZ .framer-1aqf9cc { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WPglZ .framer-1v594x5, .framer-WPglZ .framer-vcm3d0, .framer-WPglZ .framer-gm1jsu, .framer-WPglZ .framer-3yqyrr, .framer-WPglZ .framer-1o3dk37, .framer-WPglZ .framer-qop2z4, .framer-WPglZ .framer-1nqqaei, .framer-WPglZ .framer-1lodk1l { gap: 0px; } .framer-WPglZ .framer-1v594x5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WPglZ .framer-1v594x5 > :first-child, .framer-WPglZ .framer-gm1jsu > :first-child, .framer-WPglZ .framer-3yqyrr > :first-child, .framer-WPglZ .framer-1o3dk37 > :first-child { margin-top: 0px; } .framer-WPglZ .framer-1v594x5 > :last-child, .framer-WPglZ .framer-gm1jsu > :last-child, .framer-WPglZ .framer-3yqyrr > :last-child, .framer-WPglZ .framer-1o3dk37 > :last-child { margin-bottom: 0px; } .framer-WPglZ .framer-vcm3d0 > *, .framer-WPglZ .framer-qop2z4 > *, .framer-WPglZ .framer-1nqqaei > *, .framer-WPglZ .framer-1lodk1l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WPglZ .framer-vcm3d0 > :first-child, .framer-WPglZ .framer-qop2z4 > :first-child, .framer-WPglZ .framer-1nqqaei > :first-child, .framer-WPglZ .framer-1lodk1l > :first-child { margin-left: 0px; } .framer-WPglZ .framer-vcm3d0 > :last-child, .framer-WPglZ .framer-qop2z4 > :last-child, .framer-WPglZ .framer-1nqqaei > :last-child, .framer-WPglZ .framer-1lodk1l > :last-child { margin-right: 0px; } .framer-WPglZ .framer-gm1jsu > *, .framer-WPglZ .framer-3yqyrr > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-WPglZ .framer-1o3dk37 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } }}\",\"@media (min-width: 1636.6940718303763px) and (max-width: 1799px) { .framer-WPglZ.framer-7b7eoq { aspect-ratio: 0.5192557334487234 / 1; background-color: var(--token-1fb9925c-68e1-43f4-a9d3-b357ecb83eb0, #243c36); height: var(--framer-aspect-ratio-supported, 3152px); width: 500px; } .framer-WPglZ .framer-19yol6p-container { order: 0; right: unset; width: 100%; } .framer-WPglZ .framer-1v594x5 { gap: 0px; height: min-content; justify-content: center; min-height: 100vh; order: 1; width: 101%; } .framer-WPglZ .framer-nm83h4 { order: 1; } .framer-WPglZ .framer-uu7899 { height: 100px; } .framer-WPglZ .framer-2xix7e { height: 87px; width: 264px; } .framer-WPglZ .framer-vcm3d0 { flex-wrap: wrap; gap: 10px; padding: 0px 20px 0px 20px; width: 100%; } .framer-WPglZ .framer-2g0u8r, .framer-WPglZ .framer-6ht2 { flex: none; white-space: pre; width: auto; } .framer-WPglZ .framer-di0us-container { flex: 0.5 0 0px; } .framer-WPglZ .framer-3luvvi-container { order: 0; } .framer-WPglZ .framer-1aqf9cc { order: 4; } .framer-WPglZ .framer-aldfim { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WPglZ .framer-1v594x5, .framer-WPglZ .framer-vcm3d0 { gap: 0px; } .framer-WPglZ .framer-1v594x5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WPglZ .framer-1v594x5 > :first-child { margin-top: 0px; } .framer-WPglZ .framer-1v594x5 > :last-child { margin-bottom: 0px; } .framer-WPglZ .framer-vcm3d0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WPglZ .framer-vcm3d0 > :first-child { margin-left: 0px; } .framer-WPglZ .framer-vcm3d0 > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7615\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ioXy4P8D1\":{\"layout\":[\"fixed\",\"fixed\"]},\"QPHWTLCE0\":{\"layout\":[\"fixed\",\"fixed\"]},\"i7Fkz9Tv2\":{\"layout\":[\"fixed\",\"auto\"]},\"vdHg41EcQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"areBPVbbB\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"g6VNMWH0L\":{\"pattern\":\":g6VNMWH0L\",\"name\":\"track\"},\"vXfYpqdpF\":{\"pattern\":\":vXfYpqdpF\",\"name\":\"\"},\"WA486mIvm\":{\"pattern\":\":WA486mIvm\",\"name\":\"hero\"},\"RDxT2UKy2\":{\"pattern\":\":RDxT2UKy2\",\"name\":\"second\"},\"p3u4YvDOD\":{\"pattern\":\":p3u4YvDOD\",\"name\":\"scroll-heading\"},\"mIPtibZ0q\":{\"pattern\":\":mIPtibZ0q\",\"name\":\"image\"},\"yJENDGhsS\":{\"pattern\":\":yJENDGhsS\",\"name\":\"image\"},\"mYtSJfvg_\":{\"pattern\":\":mYtSJfvg_\",\"name\":\"second\"},\"ppV6NAuNG\":{\"pattern\":\":ppV6NAuNG\",\"name\":\"scroll-heading\"},\"S3yUBZW0p\":{\"pattern\":\":S3yUBZW0p\",\"name\":\"image\"},\"vxmLujw3o\":{\"pattern\":\":vxmLujw3o\",\"name\":\"image\"},\"ijZNa87vg\":{\"pattern\":\":ijZNa87vg\",\"name\":\"second\"},\"XjM5RekmX\":{\"pattern\":\":XjM5RekmX\",\"name\":\"scroll-heading\"},\"wFiJsAcSi\":{\"pattern\":\":wFiJsAcSi\",\"name\":\"image\"},\"FyoarS8D5\":{\"pattern\":\":FyoarS8D5\",\"name\":\"image\"},\"QYhdeseo8\":{\"pattern\":\":QYhdeseo8\",\"name\":\"second\"},\"sit5EpYIB\":{\"pattern\":\":sit5EpYIB\",\"name\":\"scroll-heading\"},\"N7_44iwvh\":{\"pattern\":\":N7_44iwvh\",\"name\":\"image\"},\"a7066vbOs\":{\"pattern\":\":a7066vbOs\",\"name\":\"image\"},\"fonskd8ld\":{\"pattern\":\":fonskd8ld\",\"name\":\"track\"},\"vw4cT6OQf\":{\"pattern\":\":PGuiWwKGa-:PGuiWwKGa-:vw4cT6OQf\",\"name\":\"hero\",\"slugs\":{\"PGuiWwKGa\":{\"identifier\":\"local-module:collection/agftiogoT:default\",\"provider\":\"RVQsFcgNS\"}}},\"Sg5XjgmXq\":{\"pattern\":\":PGuiWwKGa-:PGuiWwKGa-:Sg5XjgmXq\",\"name\":\"work-section-1\",\"slugs\":{\"PGuiWwKGa\":{\"identifier\":\"local-module:collection/agftiogoT:default\",\"provider\":\"RVQsFcgNS\"}}},\"PrK0YZEax\":{\"pattern\":\":PGuiWwKGa-:PGuiWwKGa-:PrK0YZEax\",\"name\":\"work-section-1\",\"slugs\":{\"PGuiWwKGa\":{\"identifier\":\"local-module:collection/agftiogoT:default\",\"provider\":\"RVQsFcgNS\"}}},\"d5ZDD5MRA\":{\"pattern\":\":PGuiWwKGa-:PGuiWwKGa-:d5ZDD5MRA\",\"name\":\"work-section-1\",\"slugs\":{\"PGuiWwKGa\":{\"identifier\":\"local-module:collection/agftiogoT:default\",\"provider\":\"RVQsFcgNS\"}}},\"kCr8ivpoy\":{\"pattern\":\":kCr8ivpoy\",\"name\":\"track\"},\"YmUwACW7q\":{\"pattern\":\":PGuiWwKGa-:PGuiWwKGa-:YmUwACW7q\",\"name\":\"hero\",\"slugs\":{\"PGuiWwKGa\":{\"identifier\":\"local-module:collection/agftiogoT:default\",\"provider\":\"yaqKS5pel\"}}},\"CqstIYpJm\":{\"pattern\":\":PGuiWwKGa-:PGuiWwKGa-:CqstIYpJm\",\"name\":\"work-section-1\",\"slugs\":{\"PGuiWwKGa\":{\"identifier\":\"local-module:collection/agftiogoT:default\",\"provider\":\"yaqKS5pel\"}}},\"IjvnEOmja\":{\"pattern\":\":PGuiWwKGa-:PGuiWwKGa-:IjvnEOmja\",\"name\":\"work-section-1\",\"slugs\":{\"PGuiWwKGa\":{\"identifier\":\"local-module:collection/agftiogoT:default\",\"provider\":\"yaqKS5pel\"}}},\"CT6UvZv5X\":{\"pattern\":\":PGuiWwKGa-:PGuiWwKGa-:CT6UvZv5X\",\"name\":\"work-section-1\",\"slugs\":{\"PGuiWwKGa\":{\"identifier\":\"local-module:collection/agftiogoT:default\",\"provider\":\"yaqKS5pel\"}}}}\n * @framerResponsiveScreen\n */const FramerweTkVwjyC=withCSS(Component,css,\"framer-WPglZ\");export default FramerweTkVwjyC;FramerweTkVwjyC.displayName=\"Home\";FramerweTkVwjyC.defaultProps={height:7615,width:1200};addFonts(FramerweTkVwjyC,[{explicitInter:true,fonts:[{family:\"TASA Orbiter Deck Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/YM5rruH7jCNuhHeEAx1kpKY9o18.otf\"},{family:\"TASA Orbiter Display Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/SCZq6aHgY6wqBlIs4oTY99mCA.otf\"},{family:\"TASA Orbiter Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/0KgsZ6HF8ohe7AnRiAzmfsjnxHc.otf\"},{family:\"TASA Orbiter Display Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/hlT02RAr9mK7pRQA0NewYg8P4Cs.otf\"},{family:\"TASA Orbiter Display Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/Y34wEKNGMYESNiu1kMsaF9d2U.otf\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"TASA Orbiter Text Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/HAWg0Kphk4GdhJJxItkdLrChE.otf\"},{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\"}]},...MainNavFonts,...TickerSmallFonts,...TickerFonts,...HeroHeaderFonts,...MainHeroFonts,...CookieBannerFonts,...VimeoFonts,...ButtonInlineFonts,...ButtonStartAProjectFonts,...FooterDarkFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerweTkVwjyC\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"7615\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ioXy4P8D1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QPHWTLCE0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"i7Fkz9Tv2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vdHg41EcQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"areBPVbbB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerScrollSections\":\"{\\\"g6VNMWH0L\\\":{\\\"pattern\\\":\\\":g6VNMWH0L\\\",\\\"name\\\":\\\"track\\\"},\\\"vXfYpqdpF\\\":{\\\"pattern\\\":\\\":vXfYpqdpF\\\",\\\"name\\\":\\\"\\\"},\\\"WA486mIvm\\\":{\\\"pattern\\\":\\\":WA486mIvm\\\",\\\"name\\\":\\\"hero\\\"},\\\"RDxT2UKy2\\\":{\\\"pattern\\\":\\\":RDxT2UKy2\\\",\\\"name\\\":\\\"second\\\"},\\\"p3u4YvDOD\\\":{\\\"pattern\\\":\\\":p3u4YvDOD\\\",\\\"name\\\":\\\"scroll-heading\\\"},\\\"mIPtibZ0q\\\":{\\\"pattern\\\":\\\":mIPtibZ0q\\\",\\\"name\\\":\\\"image\\\"},\\\"yJENDGhsS\\\":{\\\"pattern\\\":\\\":yJENDGhsS\\\",\\\"name\\\":\\\"image\\\"},\\\"mYtSJfvg_\\\":{\\\"pattern\\\":\\\":mYtSJfvg_\\\",\\\"name\\\":\\\"second\\\"},\\\"ppV6NAuNG\\\":{\\\"pattern\\\":\\\":ppV6NAuNG\\\",\\\"name\\\":\\\"scroll-heading\\\"},\\\"S3yUBZW0p\\\":{\\\"pattern\\\":\\\":S3yUBZW0p\\\",\\\"name\\\":\\\"image\\\"},\\\"vxmLujw3o\\\":{\\\"pattern\\\":\\\":vxmLujw3o\\\",\\\"name\\\":\\\"image\\\"},\\\"ijZNa87vg\\\":{\\\"pattern\\\":\\\":ijZNa87vg\\\",\\\"name\\\":\\\"second\\\"},\\\"XjM5RekmX\\\":{\\\"pattern\\\":\\\":XjM5RekmX\\\",\\\"name\\\":\\\"scroll-heading\\\"},\\\"wFiJsAcSi\\\":{\\\"pattern\\\":\\\":wFiJsAcSi\\\",\\\"name\\\":\\\"image\\\"},\\\"FyoarS8D5\\\":{\\\"pattern\\\":\\\":FyoarS8D5\\\",\\\"name\\\":\\\"image\\\"},\\\"QYhdeseo8\\\":{\\\"pattern\\\":\\\":QYhdeseo8\\\",\\\"name\\\":\\\"second\\\"},\\\"sit5EpYIB\\\":{\\\"pattern\\\":\\\":sit5EpYIB\\\",\\\"name\\\":\\\"scroll-heading\\\"},\\\"N7_44iwvh\\\":{\\\"pattern\\\":\\\":N7_44iwvh\\\",\\\"name\\\":\\\"image\\\"},\\\"a7066vbOs\\\":{\\\"pattern\\\":\\\":a7066vbOs\\\",\\\"name\\\":\\\"image\\\"},\\\"fonskd8ld\\\":{\\\"pattern\\\":\\\":fonskd8ld\\\",\\\"name\\\":\\\"track\\\"},\\\"vw4cT6OQf\\\":{\\\"pattern\\\":\\\":PGuiWwKGa-:PGuiWwKGa-:vw4cT6OQf\\\",\\\"name\\\":\\\"hero\\\",\\\"slugs\\\":{\\\"PGuiWwKGa\\\":{\\\"identifier\\\":\\\"local-module:collection/agftiogoT:default\\\",\\\"provider\\\":\\\"RVQsFcgNS\\\"}}},\\\"Sg5XjgmXq\\\":{\\\"pattern\\\":\\\":PGuiWwKGa-:PGuiWwKGa-:Sg5XjgmXq\\\",\\\"name\\\":\\\"work-section-1\\\",\\\"slugs\\\":{\\\"PGuiWwKGa\\\":{\\\"identifier\\\":\\\"local-module:collection/agftiogoT:default\\\",\\\"provider\\\":\\\"RVQsFcgNS\\\"}}},\\\"PrK0YZEax\\\":{\\\"pattern\\\":\\\":PGuiWwKGa-:PGuiWwKGa-:PrK0YZEax\\\",\\\"name\\\":\\\"work-section-1\\\",\\\"slugs\\\":{\\\"PGuiWwKGa\\\":{\\\"identifier\\\":\\\"local-module:collection/agftiogoT:default\\\",\\\"provider\\\":\\\"RVQsFcgNS\\\"}}},\\\"d5ZDD5MRA\\\":{\\\"pattern\\\":\\\":PGuiWwKGa-:PGuiWwKGa-:d5ZDD5MRA\\\",\\\"name\\\":\\\"work-section-1\\\",\\\"slugs\\\":{\\\"PGuiWwKGa\\\":{\\\"identifier\\\":\\\"local-module:collection/agftiogoT:default\\\",\\\"provider\\\":\\\"RVQsFcgNS\\\"}}},\\\"kCr8ivpoy\\\":{\\\"pattern\\\":\\\":kCr8ivpoy\\\",\\\"name\\\":\\\"track\\\"},\\\"YmUwACW7q\\\":{\\\"pattern\\\":\\\":PGuiWwKGa-:PGuiWwKGa-:YmUwACW7q\\\",\\\"name\\\":\\\"hero\\\",\\\"slugs\\\":{\\\"PGuiWwKGa\\\":{\\\"identifier\\\":\\\"local-module:collection/agftiogoT:default\\\",\\\"provider\\\":\\\"yaqKS5pel\\\"}}},\\\"CqstIYpJm\\\":{\\\"pattern\\\":\\\":PGuiWwKGa-:PGuiWwKGa-:CqstIYpJm\\\",\\\"name\\\":\\\"work-section-1\\\",\\\"slugs\\\":{\\\"PGuiWwKGa\\\":{\\\"identifier\\\":\\\"local-module:collection/agftiogoT:default\\\",\\\"provider\\\":\\\"yaqKS5pel\\\"}}},\\\"IjvnEOmja\\\":{\\\"pattern\\\":\\\":PGuiWwKGa-:PGuiWwKGa-:IjvnEOmja\\\",\\\"name\\\":\\\"work-section-1\\\",\\\"slugs\\\":{\\\"PGuiWwKGa\\\":{\\\"identifier\\\":\\\"local-module:collection/agftiogoT:default\\\",\\\"provider\\\":\\\"yaqKS5pel\\\"}}},\\\"CT6UvZv5X\\\":{\\\"pattern\\\":\\\":PGuiWwKGa-:PGuiWwKGa-:CT6UvZv5X\\\",\\\"name\\\":\\\"work-section-1\\\",\\\"slugs\\\":{\\\"PGuiWwKGa\\\":{\\\"identifier\\\":\\\"local-module:collection/agftiogoT:default\\\",\\\"provider\\\":\\\"yaqKS5pel\\\"}}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\"}},\"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", "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", "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", "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", "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", "_", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerweYDk3xT5", "withCSS", "weYDk3xT5_default", "addPropertyControls", "ControlType", "addFonts", "HeroTickerFonts", "getFonts", "weYDk3xT5_default", "TickerFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "Ticker", "weYDk3xT5_default", "css", "FramerPHjuR1qd4", "withCSS", "PHjuR1qd4_default", "addFonts", "HeroTickerFonts", "TickerFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichText2", "css", "FramerSNke0woIx", "withCSS", "SNke0woIx_default", "addFonts", "MainNavFonts", "getFonts", "fiAGcNNXC_default", "TickerSmallFonts", "SNke0woIx_default", "TickerFonts", "Ticker", "HeroHeaderFonts", "vlNPcqzGG_default", "MotionHeaderWithFX", "withFX", "motion", "MainHeroFonts", "PHjuR1qd4_default", "CookieBannerFonts", "CookieBanner", "VimeoFonts", "Vimeo_default", "ImageWithFX", "Image2", "MotionDivWithFX", "ButtonInlineFonts", "a4WkopxgK_default", "ButtonStartAProjectFonts", "kjLxUKrGd_default", "FooterDarkFonts", "PY4qwyip1_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "toResponsiveImage", "value", "transformTemplate1", "_", "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", "PGuiWwKGaaVFbMFvMD", "PGuiWwKGaRVQsFcgNS", "lCPECI4IIRVQsFcgNS", "VCRWBFJ8zRVQsFcgNS", "RlWm3mUvkRVQsFcgNS", "IExvfEWD4RVQsFcgNS", "idRVQsFcgNS", "idaVFbMFvMD", "PGuiWwKGaIyI7RbOhX", "PGuiWwKGayaqKS5pel", "lCPECI4IIyaqKS5pel", "FTOu9H_23yaqKS5pel", "VCRWBFJ8zyaqKS5pel", "RlWm3mUvkyaqKS5pel", "IExvfEWD4yaqKS5pel", "idyaqKS5pel", "idIyI7RbOhX", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed", "router", "useRouter", "isDisplayed1", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "isDisplayed2", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "elementId10", "ref11", "isDisplayed3", "elementId11", "ref12", "elementId12", "ref13", "elementId13", "ref14", "elementId14", "ref15", "isDisplayed4", "elementId15", "ref16", "elementId16", "ref17", "elementId17", "ref18", "elementId18", "ref19", "isDisplayed5", "elementId19", "ref20", "elementId20", "dynamicRef", "useDynamicRefs", "elementId21", "elementId22", "elementId23", "elementId24", "ref21", "elementId25", "elementId26", "elementId27", "elementId28", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "getLoadingLazyAtYPosition", "RichText2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "ChildrenCanSuspend", "agftiogoT_default", "collection1", "paginationInfo", "loadMore", "l", "collection", "index1", "PathVariablesContext", "Link", "index", "resolvedLinks5", "collection3", "paginationInfo1", "loadMore1", "collection2", "index3", "index2", "resolvedLinks6", "css", "FramerweTkVwjyC", "withCSS", "weTkVwjyC_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
