{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/2CcJhEanvh9oX5JHRkd8/send.js", "ssg:https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js", "ssg:https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/7Vzkp1ORK9zU9dYiZ1fu/consent.js", "ssg:https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/wTCMOQdBhrD1LTpkwItL/inEU.js", "ssg:https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/nrn5valPIfiaZFRgtVW3/region.js", "ssg:https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/6ViXEDlSyuNyc0Na4Rzv/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/IH6s9ASs8tTeXMp8PWOj/Cookies.js", "ssg:https://framerusercontent.com/modules/sOWqK2mBVjEMiwnBIHiL/iljggXIPgoi7IsFMwJMk/eRecHhGQR.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);script.crossOrigin=\"anonymous\"// allows for more detailed INP collection\n;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_DOMAIN\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_SCRIPT_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"initGTM\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"sendToGTM\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./send.map", "import{isBrowser}from\"framer-motion\";import{useLayoutEffect}from\"react\";export const DEFAULT_FONT_FAMILY=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;export function getFlexboxValues(position){const positionParts=position.split(\"-\");let justifyContent,alignItems;switch(positionParts[0]){case\"top\":alignItems=\"flex-start\";break;case\"bottom\":alignItems=\"flex-end\";break;case\"center\":alignItems=\"center\";break;default:alignItems=\"initial\";break;}switch(positionParts[1]){case\"left\":justifyContent=\"flex-start\";break;case\"right\":justifyContent=\"flex-end\";break;case\"center\":justifyContent=\"center\";break;default:justifyContent=\"initial\";break;}return{justifyContent,alignItems};}export function getMultipleShadows(...shadows){const output=[];shadows.forEach(shadow=>{return shadow&&output.push(shadow);});return output.join(\", \");}export function getShadow(shadow){if(shadow){return`${shadow.shadowX}px ${shadow.shadowY}px ${shadow.shadowBlur}px ${shadow.shadowColor}`;}else return null;}export function safeJSONParse(jsonString,onError){try{return JSON.parse(jsonString);}catch{if(onError)onError();}}export const getCookie=(name,cookies)=>{cookies=cookies?cookies:isBrowser?document.cookie:\"\";var _cookies_match;const[,,cookie]=(_cookies_match=cookies.match(`(^|;) ?${name}=([^;]*)(;|$)`))!==null&&_cookies_match!==void 0?_cookies_match:[null,null,null];return cookie;};/**\n * Yields to main thread before continuing execution, which might allow the browser to paint.\n * If `options.priority` is 'user-blocking', it will asynchronously resolve in older browsers.\n * @param {object} options - see https://github.com/WICG/scheduling-apis/blob/main/explainers/yield-and-continuation.md\n * @see interactionResponse for guaranteeing execution after a paint\n */export function yieldToMain(options){if(\"scheduler\"in window){if(\"yield\"in scheduler)return scheduler.yield(options);if(\"postTask\"in scheduler)return scheduler.postTask(()=>{},options);}if((options===null||options===void 0?void 0:options.priority)===\"user-blocking\"){// `setTimeout` could suffer from being delayed for longer: https://developer.chrome.com/blog/introducing-scheduler-yield-origin-trial#the_problem_with_current_yielding_strategies\n// so for browsers not supporting yield, we guarantee execution for high priority actions, but this does not create space for a paint opportunity as trade-off.\nreturn Promise.resolve();}return new Promise(resolve=>{setTimeout(resolve);});}/**\n * Helper function for `yieldToMain`, which yields before calling `fn`.\n * @see yieldToMain\n */export async function yieldBeforeCb(fn,options){await yieldToMain(options);return fn();}/**\n * Similar to `yieldToMain`, but also waits for the next animation frame before yielding (with a fallback of 100ms if the animation frame never fires).\n * Compared to `yieldToMain`, it guarantees improved INP, but might make processing a little slower. Use only if necessary.\n * @see yieldToMain\n */export function interactionResponse(options){return new Promise(resolve=>{setTimeout(resolve,200)// Fallback for the case where the animation frame never fires.\n;requestAnimationFrame(()=>{void yieldBeforeCb(resolve,options);});});}/**\n * Runs `fn` after the next paint. Similar to `useEffect`, but *guarantees* that the function is run after the next paint.\n * @important Does not support a cleanup fn.\n * @see https://thoughtspile.github.io/2021/11/15/unintentional-layout-effect/\n */export function useAfterPaintEffect(fn,deps,options){useLayoutEffect(()=>{const runAfterPaint=async()=>{await interactionResponse(options);fn();};void runAfterPaint();// eslint-disable-next-line react-hooks/exhaustive-deps -- deps are passed in\n},deps);}\nexport const __FramerMetadata__ = {\"exports\":{\"useAfterPaintEffect\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getCookie\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeJSONParse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFlexboxValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldBeforeCb\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getShadow\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getMultipleShadows\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FlexboxPosition\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldToMain\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"interactionResponse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_FONT_FAMILY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{useIsOnFramerCanvas}from\"framer\";import{isBrowser}from\"framer-motion\";import{useEffect,useReducer}from\"react\";import{initGTM,sendToGTM}from\"https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/2CcJhEanvh9oX5JHRkd8/send.js\";import{safeJSONParse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";function toGTMConsent(consent){return{functionality_storage:consent.necessary?\"granted\":\"denied\",security_storage:consent.necessary?\"granted\":\"denied\",ad_storage:consent.marketing?\"granted\":\"denied\",ad_user_data:consent.marketing?\"granted\":\"denied\",ad_personalization:consent.marketing?\"granted\":\"denied\",analytics_storage:consent.analytics?\"granted\":\"denied\",personalization_storage:consent.preferences?\"granted\":\"denied\"};}function reducer(state,action){switch(action.type){case\"autoAccept\":return{...state,sync:true,autoAccepted:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"acceptAll\":return{...state,sync:true,dismissed:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"rejectAll\":return{...state,sync:true,dismissed:true,modes:{analytics:false,marketing:false,necessary:false,preferences:false}};case\"acceptCurrent\":return{...state,dismissed:true,sync:true};case\"update\":return{...state,modes:{...state.modes,...action.modes},sync:action.sync};case\"toggle\":return{...state,modes:{...state.modes,[action.mode]:!state.modes[action.mode]}};case\"initFromLocalStorage\":return{...state,modes:action.modes,dismissed:action.dismissed,autoAccepted:action.autoAccepted,initializedFromLocalStorage:true,sync:true};case\"dismiss\":return{...state,dismissed:true};case\"synced\":return{...state,sync:false,hasSynced:true};default:return state;}}const initialState={dismissed:false,autoAccepted:false,modes:null,sync:false,initializedFromLocalStorage:false,hasSynced:false};export const defaultConsent={necessary:false,analytics:false,marketing:false,preferences:false};// Keep track of if GTM has been loaded as a script and default consent has been set,\n// to ensure the script does not keep appending between page switches.\nlet hasInitializedGTM=false;export function useConsent({gtmId,defaultConsent,gtmLoadedExternally=false}){const[state,dispatch]=useReducer(reducer,initialState);const isOnFramerCanvas=useIsOnFramerCanvas();const consentModeLocalStorageKey=\"framerCookiesConsentMode\";const dismissedLocalStorageKey=\"framerCookiesDismissed\";const autoAcceptedLocalStorageKey=\"framerCookiesAutoAccepted\";function getStateFromLocalStorage(){const consentFromLocalStorage=localStorage.getItem(consentModeLocalStorageKey);const dismissedFromLocalStorage=localStorage.getItem(dismissedLocalStorageKey);const autoAcceptedFromLocalStorage=localStorage.getItem(autoAcceptedLocalStorageKey);const isDismissed=dismissedFromLocalStorage!==null;const isAutoAccepted=autoAcceptedFromLocalStorage!==null;const hasConsentInLocalStorage=consentFromLocalStorage!==null;const consentInLocalStorageIsNotDefault=isDismissed||isAutoAccepted;const shouldLoadConsentFromLocalStorage=hasConsentInLocalStorage&&consentInLocalStorageIsNotDefault;dispatch({type:\"initFromLocalStorage\",dismissed:isDismissed,autoAccepted:isAutoAccepted,modes:shouldLoadConsentFromLocalStorage?safeJSONParse(consentFromLocalStorage,()=>localStorage.removeItem(consentModeLocalStorageKey)):defaultConsent});}function syncToGTM(){if(gtmId){if(!hasInitializedGTM&&!gtmLoadedExternally){// This is the first time we sync consent, so we save it as \"default\" and initialize tag manager.\n// This order is important, because we need to have set the default consent BEFORE we initialize GTM.\n// https://developers.google.com/tag-platform/devguides/consent?tab=tag-manager&sjid=11348191096952324675-EU#implementation_example\n// It might seem weird that we're \"sending\" before initializing, but \"sending\" here means building up\n// the \"dataLayer\" object that GTM picks up when it initializes.\nsendToGTM(\"consent\",\"default\",toGTMConsent(state.modes));initGTM({dataLayer:undefined,dataLayerName:\"dataLayer\",environment:undefined,nonce:undefined,injectScript:true,id:gtmId});hasInitializedGTM=true;}else{hasInitializedGTM=true;sendToGTM(\"consent\",\"update\",toGTMConsent(state.modes));// must be sent like this or else GTM doesn't act on it:\nwindow.dataLayer.push({event:\"cookie_consent_update\"});}}}useEffect(()=>{if(isOnFramerCanvas)return;yieldBeforeCb(()=>getStateFromLocalStorage(),{priority:\"user-blocking\"});},[]);// Anytime the dismissed value is updated, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.dismissed){localStorage.setItem(dismissedLocalStorageKey,\"true\");}},[state.dismissed]);// Anytime consent is auto accepted, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.autoAccepted){localStorage.setItem(autoAcceptedLocalStorageKey,\"true\");}},[state.autoAccepted]);// Sync data to dataLayer and localStorage.\nuseEffect(()=>{if(isOnFramerCanvas)return;const shouldSync=state.sync&&isBrowser&&state.modes!==null;if(!shouldSync){return;}yieldBeforeCb(()=>{syncToGTM();// Save locally\nlocalStorage.setItem(consentModeLocalStorageKey,JSON.stringify(state.modes));dispatch({type:\"synced\"});},{priority:\"user-blocking\"});},[state.sync]);function dismiss(){dispatch({type:\"dismiss\"});localStorage.setItem(dismissedLocalStorageKey,\"true\");}function autoAccept(){dispatch({type:\"autoAccept\"});}function acceptAll(){dispatch({type:\"acceptAll\"});}function rejectAll(){dispatch({type:\"rejectAll\"});}function acceptCurrent(){dispatch({type:\"acceptCurrent\"});}function toggleMode(mode){dispatch({type:\"toggle\",mode});}return{modes:state.modes,isInitialized:state.hasSynced,isDismissed:state.dismissed,isAutoAccepted:state.autoAccepted,dismiss,autoAccept,acceptAll,rejectAll,acceptCurrent,toggleMode};}\nexport const __FramerMetadata__ = {\"exports\":{\"useConsent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultConsent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModeName\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModes\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// 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=()=>{return Intl?.DateTimeFormat()?.resolvedOptions()?.timeZone?.startsWith(\"Europe\");};const isEULocale=()=>{const locale=navigator.language??navigator.languages?.[0];return countries.some(country=>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/wTCMOQdBhrD1LTpkwItL/inEU.js\";export function useRegion({content,useRegionFromProps,skipEUCheck}){const isInEUBasedOnLocation=isBrowser&&!skipEUCheck?inEU():false;const regionBasedOnLocation=isInEUBasedOnLocation?\"EU\":\"World\";const regionFromProps=content.isEU?\"EU\":\"World\";const regionContent={EU:{title:content.euTitle,description:content.euDescription,type:content.euType,defaults:content.euDefaults,policy:content.euPolicy,blocking:content.euBlocking,showReject:content.euType===\"advanced\"?content.euShowReject:true},World:{title:content.worldTitle,description:content.worldDescription,type:content.worldType,defaults:content.worldDefaults,policy:content.worldPolicy,blocking:content.worldBlocking,showReject:content.worldType===\"advanced\"?content.worldShowReject:true}};return regionContent[useRegionFromProps?regionFromProps:regionBasedOnLocation];}\nexport const __FramerMetadata__ = {\"exports\":{\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionType\":{\"type\":\"tsType\",\"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}){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?.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        }`],\"framer-lib-cookie-banner\");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?.link;if(!shouldShow)return null;if(!description){return /*#__PURE__*/_jsx(DescriptionParagraph,{policy:policy,style:style,linkColor:linkColor});}// @ivan: Support rendering the description in multiple paragraphs.\n// This is a site speed optimization: it allows to split a single\n// huge <p> into several smaller ones, which prevents the huge <p>\n// from becoming an LCP element.\nconst descriptionParagraphs=description?.split(\"\\n\\n\");return description.split(\"\\n\\n\").map((line,index)=>/*#__PURE__*/_jsx(DescriptionParagraph,{line:line,// Only render the policy in the last paragraph\n    policy:index===descriptionParagraphs.length-1?policy:null,style:{// Add a spacing between paragraphs\n    marginTop:index>0?4:0,...style},linkColor:linkColor},index));}function DescriptionParagraph({line,policy,style,linkColor}){return /*#__PURE__*/_jsxs(\"p\",{style:{lineHeight:1.5,margin:0,padding:0,fontSize:14,...style},children:[line,line&&policy?.link?\" \":null,policy?.link&&/*#__PURE__*/_jsxs(\"span\",{children:[policy?.prefix,\" \",/*#__PURE__*/_jsx(\"a\",{href:policy?.link,target:\"_blank\",style:{color:linkColor,textDecoration:\"none\"},children: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;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??.6},whileTap:{opacity: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/7Vzkp1ORK9zU9dYiZ1fu/consent.js\";import{useRegion}from\"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/nrn5valPIfiaZFRgtVW3/region.js\";import{Banner}from\"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/6ViXEDlSyuNyc0Na4Rzv/Banner.js\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/wTCMOQdBhrD1LTpkwItL/inEU.js\";import{DEFAULT_FONT_FAMILY,getFlexboxValues,interactionResponse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";// Keep track of open state between page reloads\nlet initiallyOpen=false;/**\n * COOKIE BANNER\n * By Floris Verloop\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n *\n */export default function CookieBanner({gtmId,preview,trigger,banner,button,content,options,style,gtmLoadedExternally,onShown,onConsentChange,onAccept,onDismiss,onReject,onSavePreferences}){const isOnFramerCanvas=useIsOnFramerCanvas();const isPreview=preview&&isOnFramerCanvas;const skipLogic=!preview&&isOnFramerCanvas;const isInEU=isBrowser?inEU():false;const region=useRegion({content,useRegionFromProps:isPreview,// skip EU check (expensive) if we are on the canvas and don't want a preview\nskipEUCheck:skipLogic});const consent=useConsent({gtmId,defaultConsent:region.defaults,gtmLoadedExternally});const[isOpen,setIsOpen]=useState(initiallyOpen);// On page switch, disable all transitions so the banner shows up as fast as possible.\nconst[instantlyShowOnMount,setInstantlyShowOnMount]=useState(initiallyOpen);useEffect(()=>{if(skipLogic)return;// Save open state between page switches\ninitiallyOpen=isOpen;// Disable instantly show on mount after first open\nif(isOpen){setInstantlyShowOnMount(false);}// Track shown event\nif(isOpen&&!isPreview&&onShown){yieldBeforeCb(()=>onShown({isInEU}),{priority:\"user-blocking\"});}},[isOpen,skipLogic]);// Check if user should be prompted\nuseEffect(()=>{if(skipLogic)return;const noConsentGiven=consent.isInitialized&&!consent.isDismissed;const shouldAutoAccept=region.type===\"simple\"&&!consent.isAutoAccepted;if(noConsentGiven){performance.mark(\"framer-cookie-open\");setIsOpen(true);/** Automatically accept all cookies for simple banner. */if(shouldAutoAccept){consent.autoAccept();// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}}if(consent.isDismissed){setIsOpen(false);}},[consent.isInitialized,consent.isDismissed,skipLogic]);useEffect(()=>{if(skipLogic)return;if(onConsentChange){yieldBeforeCb(()=>onConsentChange({isInEU,consent:consent.modes}));}},[consent.modes,skipLogic]);async function handleDismiss(){await interactionResponse();consent.dismiss();setIsOpen(false);// Fire callback\nif(onDismiss){yieldBeforeCb(()=>onDismiss({isInEU}));}}async function handleAcceptAll(){await interactionResponse();consent.acceptAll();setIsOpen(false);// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}async function handleRejectAll(){await interactionResponse();consent.rejectAll();setIsOpen(false);// Fire callback\nif(onReject){yieldBeforeCb(()=>onReject({isInEU}));}}async function handleAcceptCurrent(){await interactionResponse();consent.acceptCurrent();setIsOpen(false);// Fire callbacks\nyieldBeforeCb(()=>{if(onAccept){onAccept({isInEU});}});yieldBeforeCb(()=>{if(onSavePreferences){onSavePreferences({isInEU});}});}if(isPreview){return /*#__PURE__*/_jsx(\"div\",{style:{...style,width:banner.width},children:/*#__PURE__*/_jsx(Banner,{banner:banner,button:button,region:region,options:options,previewOptions:isPreview&&options.preview,consentModes:{...defaultConsent,necessary:true},animateOnMount:false})});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Trigger,{style:style,trigger:trigger,onClick:()=>setIsOpen(true)}),!skipLogic&&/*#__PURE__*/_jsx(Overlay,{banner:banner,button:button,region:region,options:options,consentModes:consent.modes,animateOnMount:!instantlyShowOnMount,onAcceptAll:handleAcceptAll,onAcceptCurrent:handleAcceptCurrent,onRejectAll:handleRejectAll,onDismiss:handleDismiss,onToggleConsent:consent.toggleMode,isOpen:isOpen})]});}const IconCookie=/*#__PURE__*/lazy(()=>import(\"https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/qKhU3oZiLDe4R0LcF3Tp/Icons.js\"));function Overlay(props){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?.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}\",\"framer-lib-cookie-trigger\");function Backdrop({color}){return /*#__PURE__*/_jsx(motion.div,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},style:{position:\"absolute\",top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",backgroundColor:color,pointerEvents:\"none\"}});}addPropertyControls(CookieBanner,{gtmId:{title:\"GTM ID\",type:ControlType.String,placeholder:\"GTM-AAAAAAA\",description:\"Your GTM container ID.\\n[Learn more](https://www.framer.com/learn/cookie-banner/)\"},preview:{type:ControlType.Boolean,defaultValue:true,description:\"Lets you preview the banner on the Canvas.\"},trigger:{type:ControlType.Object,buttonTitle:\"Icon, Text\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:[\"text\",\"icon\",\"none\"],optionTitles:[\"Text\",\"Icon\",\"None\"],defaultValue:\"text\",displaySegmentedControl:true},iconType:{title:\"Icon\",type:ControlType.Enum,options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,hidden:props=>props.type!==\"icon\"},text:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.type!==\"text\"},textFont:{// @ts-ignore - internal\ntype:ControlType.Font,title:\" \",controls:\"extended\",hidden:props=>props.type!==\"text\"},iconSize:{title:\"Size\",type:ControlType.Number,displayStepper:true,defaultValue:24,hidden:props=>props.type!==\"icon\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\",hidden:props=>props.type===\"none\"||props.type===\"icon\"&&props.iconType===\"custom\"},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.iconType===\"default\"}}},banner:{title:\"Banner\",type:ControlType.Object,buttonTitle:\"Font, Styles\",controls:{position:{type:ControlType.Enum,title:\"Position\",options:[\"top-left\",\"top-center\",\"top-right\",\"bottom-right\",\"bottom-center\",\"bottom-left\"],optionTitles:[\"Top Left\",\"Top Center\",\"Top Right\",\"Bottom Right\",\"Bottom Center\",\"Bottom Left\"],defaultValue:\"bottom-right\"},zIndex:{title:\"Z Index\",type:ControlType.Number,defaultValue:10,displayStepper:true,min:0,max:10},width:{title:\"Width\",type:ControlType.Number,defaultValue:360,min:200,max:1e3,displayStepper:true,step:5},containerWidth:{title:\"Wrapping\",type:ControlType.Number,defaultValue:0,min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:20,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},inset:{title:\"Inset\",type:ControlType.FusedNumber,toggleKey:\"insetPerSide\",toggleTitles:[\"Inset\",\"Inset per side\"],defaultValue:20,valueKeys:[\"insetTop\",\"insetRight\",\"insetBottom\",\"insetLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors, Shadow\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"extended\"},colorTitle:{title:\" \",type:ControlType.Color,defaultValue:\"#000\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"extended\"},colorBody:{title:\" \",type:ControlType.Color,defaultValue:\"#444\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#FFF\"},link:{title:\"Link\",type:ControlType.Color,optional:true,defaultValue:\"#999\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:14},width:{title:\"Width\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:1},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.05)\"}}},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100,defaultValue:4}}},backdrop:{title:\"Backdrop\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\",hidden:(_,props)=>!props.content.euBlocking&&!props.content.worldBlocking}}},animation:{icon:\"effect\",buttonTitle:\"Options\",type:ControlType.Object,controls:{x:{type:ControlType.Number,displayStepper:true,defaultValue:0},y:{type:ControlType.Number,displayStepper:true,defaultValue:10},scale:{type:ControlType.Number,min:0,step:.1,defaultValue:1},transition:{type:ControlType.Transition}}}}},button:{title:\"Buttons\",type:ControlType.Object,buttonTitle:\"Variants, Style\",controls:{primary:{title:\"Primary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},secondary:{title:\"Secondary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EEE\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#444\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},labels:{type:ControlType.Object,controls:{accept:{type:ControlType.String,defaultValue:\"Accept\"},reject:{type:ControlType.String,defaultValue:\"Reject\"},acceptAll:{type:ControlType.String,defaultValue:\"Accept all\"},rejectAll:{type:ControlType.String,defaultValue:\"Reject all\"},customize:{type:ControlType.String,defaultValue:\"Customize\"},save:{type:ControlType.String,defaultValue:\"Save Preferences\"},confirm:{type:ControlType.String,defaultValue:\"Okay\"}}},font:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},tapOpacity:{title:\"Tap Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.4},hoverOpacity:{title:\"Hover Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.6},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"row\",\"column\"],// @ts-ignore - internal\noptionIcons:[\"direction-horizontal\",\"direction-vertical\"],defaultValue:\"row\",displaySegmentedControl:true},fluid:{title:\"Fluid\",type:ControlType.Boolean,defaultValue:true}}},content:{title:\"Regions\",type:ControlType.Object,buttonTitle:\"World, EU\",controls:{isEU:{title:\" \",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"EU\",disabledTitle:\"World\"},euType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"medium\",hidden:props=>!props.isEU},euTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.euType===\"simple\"||!props.isEU},euDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",displayTextArea:true,hidden:props=>!props.isEU},euPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link,defaultValue:\"https://www.framer.com/legal/policy/\"},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},hidden:props=>!props.isEU},euDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>!props.isEU},euShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.euType!==\"advanced\"},euBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>!props.isEU},worldType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"simple\",hidden:props=>props.isEU},worldTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.worldType===\"simple\"||props.isEU},worldDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to personalize content, run ads, and analyze traffic.\",displayTextArea:true,hidden:props=>props.isEU},worldPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},hidden:props=>props.isEU},worldDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>props.isEU},worldShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.worldType!==\"advanced\"},worldBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>props.isEU}}},options:{type:ControlType.Object,buttonTitle:\"Content, Styles\",hidden:(_,props)=>props.content.euType!==\"advanced\"&&props.content.worldType!==\"advanced\",controls:{preview:{type:ControlType.Boolean,defaultValue:false,description:\"Open when previewing banner on the canvas.\",hidden:(_,props)=>!props.preview},necessary:{title:\"Necessary\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Necessary\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables security and basic functionality.\",displayTextArea:true},optional:{title:\"Optional\",type:ControlType.Boolean,defaultValue:true}}},preferences:{title:\"Preferences\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Preferences\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables personalized content and settings.\",displayTextArea:true,optional:true}}},analytics:{title:\"Analytics\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Analytics\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables tracking of performance.\",displayTextArea:true}}},marketing:{title:\"Marketing\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Marketing\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables ads personalization and tracking.\",displayTextArea:true}}},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"basic\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"basic\"},background:{title:\"Background\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},width:{title:\"Width\",type:ControlType.Number,displayStepper:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"}}},toggleColor:{title:\"On\",type:ControlType.Color,defaultValue:\"#000\"},toggleColorInactive:{title:\"Off\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0}}}}}});CookieBanner.displayName=\"Cookie Banner\";\nexport const __FramerMetadata__ = {\"exports\":{\"CookieBannerProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PolicyProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/IH6s9ASs8tTeXMp8PWOj/Cookies.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/s2ICQZPtbjzqrctSmFCt/fLUuD7jcBbAbPJRr6mZD/C04lM2fYV.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/hFehkGl4CWngcRRh4SrR/ZdqZHlmZ7bs3InkkTJJv/d7whCch5W.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/s4ZIpiHg6LB4PdWbQF8O/9M2V0RvXB2tCBnnrrcdY/hYL4nZgKq.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/kahaaPOOXVb4zYDlprGh/IFnSOYHrnkHUSqEb5oyu/qhD5wMuVe.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7SPilFnJBTCwEME0FcjX/MyMbbzcp8EWJ8FCMX1Tn/vQAYmQIS0.js\";import Card_CTA from\"https://framerusercontent.com/modules/g2Yba99Ms0DrdVQn4zwO/fpfFGt6uBbLup0iJiPsY/sU1Vu3EOY.js\";const Card_CTAFonts=getFonts(Card_CTA);const PhosphorFonts=getFonts(Phosphor);const CookieBannerFonts=getFonts(CookieBanner);const cycleOrder=[\"v9wJQr99P\",\"Jvq6GGG4X\",\"LyttyvOF8\",\"SXgRqk93Q\"];const serializationHash=\"framer-Li66z\";const variantClassNames={Jvq6GGG4X:\"framer-v-42jf4j\",LyttyvOF8:\"framer-v-dt33eu\",SXgRqk93Q:\"framer-v-1v6axh3\",v9wJQr99P:\"framer-v-1sexfz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop_Entreprises:\"v9wJQr99P\",Desktop_Particuliers:\"LyttyvOF8\",Phone_Entreprises:\"Jvq6GGG4X\",Phone_Particuliers:\"SXgRqk93Q\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"v9wJQr99P\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"v9wJQr99P\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"LyttyvOF8\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"LyttyvOF8\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1sexfz\",className,classNames),\"data-framer-name\":\"Desktop_Entreprises\",layoutDependency:layoutDependency,layoutId:\"v9wJQr99P\",ref:refBinding,style:{backgroundColor:\"var(--token-b5d8ef1f-3a21-4a89-b7a3-3570be73d478, rgb(35, 33, 28))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({Jvq6GGG4X:{\"data-framer-name\":\"Phone_Entreprises\"},LyttyvOF8:{\"data-framer-name\":\"Desktop_Particuliers\"},SXgRqk93Q:{\"data-framer-name\":\"Phone_Particuliers\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18sjkwq\",layoutDependency:layoutDependency,layoutId:\"LS9lLCLSw\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XZpCTTGcw\"},implicitPathVariables:undefined},{href:{webPageId:\"XZpCTTGcw\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"XZpCTTGcw\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+16+0+0,...addPropertyOverrides({Jvq6GGG4X:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+16+0+0+0},SXgRqk93Q:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+16+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uxuoqf-container\",layoutDependency:layoutDependency,layoutId:\"o4tPFcOFc-container\",nodeId:\"o4tPFcOFc\",rendersWithMotion:true,scopeId:\"eRecHhGQR\",children:/*#__PURE__*/_jsx(Card_CTA,{a1LiOBRQC:addImageAlt({src:\"https://framerusercontent.com/images/uS5TOufcHt3OceYy6bVlC6slENg.jpg\",srcSet:\"https://framerusercontent.com/images/uS5TOufcHt3OceYy6bVlC6slENg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uS5TOufcHt3OceYy6bVlC6slENg.jpg 696w\"},\"\"),height:\"100%\",id:\"o4tPFcOFc\",jm42649GO:\"Envie d\u2019atteindre l\u2019excellence ultime ? B\\xe9n\\xe9ficiez d\u2019un accompagnement de 3 mois par une \\xe9quipe d\u2019experts d\\xe9di\\xe9e.\",kpdEMwbTA:false,layoutId:\"o4tPFcOFc\",n8T6Cr2kN:\"1\\xe8re consultation offerte\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",wrXBlZgWi:resolvedLinks[0],XKbxBmtU5:\"Pour les particuliers\",YCEeXMUrW:true,...addPropertyOverrides({Jvq6GGG4X:{style:{width:\"100%\"},wrXBlZgWi:resolvedLinks[1]},LyttyvOF8:{a1LiOBRQC:addImageAlt({src:\"https://framerusercontent.com/images/dkvWHXbA4LB5YJZvFlyRzfSWops.jpg\",srcSet:\"https://framerusercontent.com/images/dkvWHXbA4LB5YJZvFlyRzfSWops.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dkvWHXbA4LB5YJZvFlyRzfSWops.jpg 696w\"},\"\"),jm42649GO:\"Envie de booster la productivit\\xe9 et le bien \\xeatre de vos \\xe9quipes ? \\nDonnez acc\\xe8s \\xe0 GoGain \\xe0 vos collaborateurs \\nvia notre appli ou des programmes sur-mesure\",n8T6Cr2kN:\"D\\xe9couvrir l\u2019offre entreprise\",wrXBlZgWi:resolvedLinks[2],XKbxBmtU5:\"Pour les entreprises\"},SXgRqk93Q:{a1LiOBRQC:addImageAlt({src:\"https://framerusercontent.com/images/dkvWHXbA4LB5YJZvFlyRzfSWops.jpg\",srcSet:\"https://framerusercontent.com/images/dkvWHXbA4LB5YJZvFlyRzfSWops.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dkvWHXbA4LB5YJZvFlyRzfSWops.jpg 696w\"},\"\"),jm42649GO:\"Envie de booster la productivit\\xe9 et le bien \\xeatre de vos \\xe9quipes ? \\nDonnez acc\\xe8s \\xe0 GoGain \\xe0 vos collaborateurs \\nvia notre appli ou des programmes sur-mesure\",n8T6Cr2kN:\"D\\xe9couvrir l\u2019offre entreprise\",style:{width:\"100%\"},wrXBlZgWi:resolvedLinks[3],XKbxBmtU5:\"Pour les entreprises\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+0+0),positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 48px) / 2, 1px)`,src:\"https://framerusercontent.com/images/z2xvplOJOvu5osicVIpxZSQFotM.jpg\",srcSet:\"https://framerusercontent.com/images/z2xvplOJOvu5osicVIpxZSQFotM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/z2xvplOJOvu5osicVIpxZSQFotM.jpg 696w\"},className:\"framer-88ojmk\",\"data-framer-name\":\"Card_CTA\",layoutDependency:layoutDependency,layoutId:\"wGk7GJqR1\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({Jvq6GGG4X:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+0+0+656),positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,src:\"https://framerusercontent.com/images/z2xvplOJOvu5osicVIpxZSQFotM.jpg\",srcSet:\"https://framerusercontent.com/images/z2xvplOJOvu5osicVIpxZSQFotM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/z2xvplOJOvu5osicVIpxZSQFotM.jpg 696w\"}},SXgRqk93Q:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+0+0+656),positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,src:\"https://framerusercontent.com/images/z2xvplOJOvu5osicVIpxZSQFotM.jpg\",srcSet:\"https://framerusercontent.com/images/z2xvplOJOvu5osicVIpxZSQFotM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/z2xvplOJOvu5osicVIpxZSQFotM.jpg 696w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-plb0lh\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Y_jNPOnvO\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oxqa4d\",\"data-framer-name\":\"Shadow\",layoutDependency:layoutDependency,layoutId:\"EW9i0Evae\",style:{backgroundColor:\"rgba(0, 0, 0, 0.6)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-18gkxqw\",\"data-styles-preset\":\"d7whCch5W\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-640fc262-068b-4c92-9dda-de7535207fff, rgb(255, 255, 255)))\"},children:\"Casa Padel\"})}),className:\"framer-14olp54\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wWIUNvk2T\",style:{\"--extracted-a0htzi\":\"var(--token-640fc262-068b-4c92-9dda-de7535207fff, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1sovuh0\",\"data-styles-preset\":\"vQAYmQIS0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-640fc262-068b-4c92-9dda-de7535207fff, rgb(255, 255, 255)))\"},children:\"Choisissez votre club et r\\xe9servez votre s\\xe9ance de sport.\"})}),className:\"framer-14dlx9z\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qAD7_8xYY\",style:{\"--extracted-r6o4lv\":\"var(--token-640fc262-068b-4c92-9dda-de7535207fff, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZFScbOf9V\"},motionChild:true,nodeId:\"ebS5dR0uV\",openInNewTab:false,scopeId:\"eRecHhGQR\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-k9zbj9 framer-1clt0h\",\"data-framer-name\":\"Button_Primary\",layoutDependency:layoutDependency,layoutId:\"ebS5dR0uV\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 1px 2px 0px rgba(16, 24, 40, 0.05)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y4loe\",\"data-styles-preset\":\"qhD5wMuVe\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66e77110-bbfc-4bf7-a7ef-2d22b1aca065, rgb(0, 0, 0)))\"},children:\"R\\xe9servez votre s\\xe9ance\"})}),className:\"framer-1gajjsk\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Cd5k1GgwY\",style:{\"--extracted-r6o4lv\":\"var(--token-66e77110-bbfc-4bf7-a7ef-2d22b1aca065, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m5521l-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"a9UZbI12T-container\",nodeId:\"a9UZbI12T\",rendersWithMotion:true,scopeId:\"eRecHhGQR\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-66e77110-bbfc-4bf7-a7ef-2d22b1aca065, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"a9UZbI12T\",layoutId:\"a9UZbI12T\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NsS46e2xq\"},motionChild:true,nodeId:\"W1aJK4q15\",openInNewTab:false,scopeId:\"eRecHhGQR\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-16z744d framer-1clt0h\",\"data-framer-name\":\"Button_Secondary\",layoutDependency:layoutDependency,layoutId:\"W1aJK4q15\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 1px 2px 0px rgba(16, 24, 40, 0.05)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y4loe\",\"data-styles-preset\":\"qhD5wMuVe\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66e77110-bbfc-4bf7-a7ef-2d22b1aca065, rgb(0, 0, 0)))\"},children:\"D\\xe9couvrez notre partenariat\"})}),className:\"framer-1va8zi1\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Lq2g1UHXt\",style:{\"--extracted-r6o4lv\":\"var(--token-66e77110-bbfc-4bf7-a7ef-2d22b1aca065, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Jvq6GGG4X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y4loe\",\"data-styles-preset\":\"qhD5wMuVe\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66e77110-bbfc-4bf7-a7ef-2d22b1aca065, rgb(0, 0, 0)))\"},children:\"D\\xe9couvrez notre partenariat\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-114y9q4-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mOKQP_qZR-container\",nodeId:\"mOKQP_qZR\",rendersWithMotion:true,scopeId:\"eRecHhGQR\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-66e77110-bbfc-4bf7-a7ef-2d22b1aca065, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"mOKQP_qZR\",layoutId:\"mOKQP_qZR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g8jzl7\",layoutDependency:layoutDependency,layoutId:\"zGssFz98m\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c1prl1\",layoutDependency:layoutDependency,layoutId:\"Ng32vhDxe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3vu8g1\",layoutDependency:layoutDependency,layoutId:\"hmA8qbMne\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"GTKL8vzUP\",scopeId:\"eRecHhGQR\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+704+0+0+.4317+0),positionX:\"center\",positionY:\"center\",sizes:\"105px\",src:\"https://framerusercontent.com/images/sUtxCvD6mI2d84Yq9IzGQ8vECk.png\",srcSet:\"https://framerusercontent.com/images/sUtxCvD6mI2d84Yq9IzGQ8vECk.png 419w\"},className:\"framer-4ey3ye framer-1clt0h\",\"data-framer-name\":\"logo GoGain\",layoutDependency:layoutDependency,layoutId:\"GTKL8vzUP\",...addPropertyOverrides({Jvq6GGG4X:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+1360+0+0+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"105px\",src:\"https://framerusercontent.com/images/sUtxCvD6mI2d84Yq9IzGQ8vECk.png\",srcSet:\"https://framerusercontent.com/images/sUtxCvD6mI2d84Yq9IzGQ8vECk.png 419w\"}},LyttyvOF8:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+704+0+0+0+92.5),positionX:\"center\",positionY:\"center\",sizes:\"105px\",src:\"https://framerusercontent.com/images/sUtxCvD6mI2d84Yq9IzGQ8vECk.png\",srcSet:\"https://framerusercontent.com/images/sUtxCvD6mI2d84Yq9IzGQ8vECk.png 419w\"}},SXgRqk93Q:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+1360+0+0+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"105px\",src:\"https://framerusercontent.com/images/sUtxCvD6mI2d84Yq9IzGQ8vECk.png\",srcSet:\"https://framerusercontent.com/images/sUtxCvD6mI2d84Yq9IzGQ8vECk.png 419w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mc72r8\",layoutDependency:layoutDependency,layoutId:\"Qa66fpO4X\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-47gqf4\",\"data-styles-preset\":\"hYL4nZgKq\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"tkosrJe00\",openInNewTab:false,scopeId:\"eRecHhGQR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mrzbrk\",\"data-styles-preset\":\"C04lM2fYV\",children:\"Entreprises\"})})})}),className:\"framer-d0qi64\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tkosrJe00\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-47gqf4\",\"data-styles-preset\":\"hYL4nZgKq\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XZpCTTGcw\"},motionChild:true,nodeId:\"wvycruPv7\",openInNewTab:false,scopeId:\"eRecHhGQR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mrzbrk\",\"data-styles-preset\":\"C04lM2fYV\",children:\"Particuliers\"})})})}),className:\"framer-10mtva\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wvycruPv7\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-47gqf4\",\"data-styles-preset\":\"hYL4nZgKq\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NsS46e2xq\"},motionChild:true,nodeId:\"xTjEiAFM9\",openInNewTab:false,scopeId:\"eRecHhGQR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mrzbrk\",\"data-styles-preset\":\"C04lM2fYV\",children:\"Casa Padel\"})})})}),className:\"framer-1qf7r27\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xTjEiAFM9\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-47gqf4\",\"data-styles-preset\":\"hYL4nZgKq\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xLAeID_Np\"},motionChild:true,nodeId:\"dRmO8uzsI\",openInNewTab:false,scopeId:\"eRecHhGQR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mrzbrk\",\"data-styles-preset\":\"C04lM2fYV\",children:\"Contact\"})})})}),className:\"framer-12qe6jz\",\"data-framer-name\":\"Contact\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dRmO8uzsI\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1eikap-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"A0s8B1emD-container\",nodeId:\"A0s8B1emD\",rendersWithMotion:true,scopeId:\"eRecHhGQR\",children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-center\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},fontTitle:{fontFamily:'\"Inter\", sans-serif',fontSize:\"24px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.6em\"},link:\"rgb(153, 153, 153)\",shadow:{shadowBlur:4,shadowColor:\"rgba(36, 21, 21, 0)\",shadowX:0,shadowY:2}},width:600,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{},hoverOpacity:.6,labels:{accept:\"OK pour moi\",acceptAll:\"OK pour moi\",confirm:\"OK\",customize:\"Je choisis\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Enregistrer\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\"},secondary:{color:\"rgb(68, 68, 68)\",fill:\"rgb(238, 238, 238)\"},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"\uD83C\uDFCB\uFE0F\u200D\u2642\uFE0F Chez GoGain, on reste dans la performance... m\\xeame pour les cookies ! \uD83C\uDF6A\\nCes cookies sont l\\xe0 pour optimiser votre exp\\xe9rience, comme un bon \\xe9chauffement avant une s\\xe9ance intense. En validant, vous nous aidez \\xe0 personnaliser votre parcours et \\xe0 atteindre vos objectifs plus efficacement, sans compromis sur votre vie priv\\xe9e. Pr\\xeat \\xe0 passer en mode performance ? \uD83C\uDFC3\u200D\u2640\uFE0F\uD83D\uDD25\",euPolicy:{label:\"Politique de Cookies\",link:\"https://www.gogainparis.com/cookies\",prefix:\"Lire la\"},euShowReject:false,euTitle:\"Les Cookies GoGain !\",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-MLHCW4JQ\",height:\"100%\",id:\"A0s8B1emD\",layoutId:\"A0s8B1emD\",options:{analytics:{description:\"Active le suivi des performances.\",title:\"Analytique\"},marketing:{description:\"Active la personnalisation des publicit\\xe9s et le suivi.\",title:\"Marketing\"},necessary:{description:\"Active la s\\xe9curit\\xe9 et les fonctionnalit\\xe9s de base.\",optional:true,title:\"N\\xe9cessaire\"},preferences:{description:\"Active le contenu personnalis\\xe9 et les param\\xe8tres.\",title:\"Pr\\xe9f\\xe9rences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:false,trigger:{color:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{},type:\"text\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jdo7x4\",layoutDependency:layoutDependency,layoutId:\"j7XZVU0Yx\",children:[/*#__PURE__*/_jsxs(Image,{className:\"framer-1vy1uso\",layoutDependency:layoutDependency,layoutId:\"CACKeIraj\",...addPropertyOverrides({LyttyvOF8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+704+0+0+92.0683+0+0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/VK3w1Iegpt13D5BtsOdGQw82hQ.png\"}}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-tnk9ed\",\"data-framer-name\":\"Untitled 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ocg8kHQBu\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 64\"><g transform=\"translate(0.5 0.165)\" id=\"ss11420985773_1\"><path d=\"M 0 2.072 C 0 0.928 0.928 0 2.072 0 L 60.855 0 C 61.999 0 62.927 0.928 62.927 2.072 L 62.927 60.855 C 62.927 61.999 61.999 62.927 60.855 62.927 L 2.072 62.927 C 0.928 62.927 0 61.999 0 60.855 Z\" fill=\"transparent\"></path><path d=\"M 62.927 0 L 0 0 L 0 62.927 L 62.927 62.927 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 21.032 3.814 L 19.068 3.814 L 19.068 5.778 L 21.032 5.778 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 3.814 L 20.977 3.814 L 20.977 5.778 L 22.941 5.778 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 26.754 3.814 L 24.79 3.814 L 24.79 5.778 L 26.754 5.778 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 3.814 L 30.51 3.814 L 30.51 5.778 L 32.474 5.778 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 34.381 3.814 L 32.417 3.814 L 32.417 5.778 L 34.381 5.778 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 3.814 L 34.323 3.814 L 34.323 5.778 L 36.287 5.778 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 3.814 L 36.23 3.814 L 36.23 5.778 L 38.194 5.778 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 3.814 L 38.137 3.814 L 38.137 5.778 L 40.101 5.778 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 5.721 L 19.068 5.721 L 19.068 7.685 L 21.032 7.685 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 5.721 L 20.977 5.721 L 20.977 7.685 L 22.941 7.685 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 5.721 L 22.883 5.721 L 22.883 7.685 L 24.847 7.685 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 5.721 L 30.51 5.721 L 30.51 7.685 L 32.474 7.685 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 5.721 L 34.323 5.721 L 34.323 7.685 L 36.287 7.685 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 5.721 L 36.23 5.721 L 36.23 7.685 L 38.194 7.685 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 7.628 L 19.068 7.628 L 19.068 9.592 L 21.032 9.592 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 26.754 7.628 L 24.79 7.628 L 24.79 9.592 L 26.754 9.592 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 28.66 7.628 L 26.696 7.628 L 26.696 9.592 L 28.66 9.592 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 30.568 7.628 L 28.604 7.628 L 28.604 9.592 L 30.568 9.592 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 7.628 L 30.51 7.628 L 30.51 9.592 L 32.474 9.592 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 7.628 L 38.137 7.628 L 38.137 9.592 L 40.101 9.592 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 9.534 L 22.883 9.534 L 22.883 11.499 L 24.847 11.499 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 30.568 9.534 L 28.604 9.534 L 28.604 11.499 L 30.568 11.499 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 34.381 9.534 L 32.417 9.534 L 32.417 11.499 L 34.381 11.499 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 9.534 L 34.323 9.534 L 34.323 11.499 L 36.287 11.499 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 9.534 L 36.23 9.534 L 36.23 11.499 L 38.194 11.499 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 9.534 L 40.044 9.534 L 40.044 11.499 L 42.008 11.499 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 11.441 L 20.977 11.441 L 20.977 13.406 L 22.941 13.406 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 11.441 L 22.883 11.441 L 22.883 13.406 L 24.847 13.406 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 26.754 11.441 L 24.79 11.441 L 24.79 13.406 L 26.754 13.406 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 11.441 L 30.51 11.441 L 30.51 13.406 L 32.474 13.406 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 11.441 L 36.23 11.441 L 36.23 13.406 L 38.194 13.406 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 11.441 L 38.137 11.441 L 38.137 13.406 L 40.101 13.406 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 11.441 L 40.044 11.441 L 40.044 13.406 L 42.008 13.406 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 13.348 L 19.068 13.348 L 19.068 15.312 L 21.032 15.312 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 13.348 L 20.977 13.348 L 20.977 15.312 L 22.941 15.312 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 13.348 L 22.883 13.348 L 22.883 15.312 L 24.847 15.312 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 30.568 13.348 L 28.604 13.348 L 28.604 15.312 L 30.568 15.312 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 13.348 L 30.51 13.348 L 30.51 15.312 L 32.474 15.312 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 13.348 L 34.323 13.348 L 34.323 15.312 L 36.287 15.312 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 13.348 L 36.23 13.348 L 36.23 15.312 L 38.194 15.312 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 15.255 L 19.068 15.255 L 19.068 17.219 L 21.032 17.219 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 15.255 L 22.883 15.255 L 22.883 17.219 L 24.847 17.219 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 28.66 15.255 L 26.696 15.255 L 26.696 17.219 L 28.66 17.219 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 15.255 L 30.51 15.255 L 30.51 17.219 L 32.474 17.219 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 15.255 L 34.323 15.255 L 34.323 17.219 L 36.287 17.219 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 15.255 L 38.137 15.255 L 38.137 17.219 L 40.101 17.219 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 15.255 L 41.95 15.255 L 41.95 17.219 L 43.914 17.219 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 17.162 L 19.068 17.162 L 19.068 19.126 L 21.032 19.126 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 17.162 L 20.977 17.162 L 20.977 19.126 L 22.941 19.126 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 30.568 17.162 L 28.604 17.162 L 28.604 19.126 L 30.568 19.126 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 17.162 L 34.323 17.162 L 34.323 19.126 L 36.287 19.126 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 17.162 L 36.23 17.162 L 36.23 19.126 L 38.194 19.126 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 17.162 L 38.137 17.162 L 38.137 19.126 L 40.101 19.126 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 17.162 L 40.044 17.162 L 40.044 19.126 L 42.008 19.126 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 9.591 19.069 L 7.627 19.069 L 7.627 21.033 L 9.591 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 11.5 19.069 L 9.536 19.069 L 9.536 21.033 L 11.5 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 13.405 19.069 L 11.441 19.069 L 11.441 21.033 L 13.405 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 17.218 19.069 L 15.254 19.069 L 15.254 21.033 L 17.218 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 19.069 L 19.068 19.069 L 19.068 21.033 L 21.032 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 19.069 L 20.977 19.069 L 20.977 21.033 L 22.941 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 26.754 19.069 L 24.79 19.069 L 24.79 21.033 L 26.754 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 28.66 19.069 L 26.696 19.069 L 26.696 21.033 L 28.66 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 19.069 L 34.323 19.069 L 34.323 21.033 L 36.287 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 19.069 L 41.95 19.069 L 41.95 21.033 L 43.914 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 45.822 19.069 L 43.858 19.069 L 43.858 21.033 L 45.822 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 19.069 L 45.764 19.069 L 45.764 21.033 L 47.728 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 49.636 19.069 L 47.672 19.069 L 47.672 21.033 L 49.636 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 55.355 19.069 L 53.391 19.069 L 53.391 21.033 L 55.355 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 57.264 19.069 L 55.3 19.069 L 55.3 21.033 L 57.264 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 59.169 19.069 L 57.205 19.069 L 57.205 21.033 L 59.169 21.033 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 5.778 20.976 L 3.813 20.976 L 3.813 22.94 L 5.778 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 9.591 20.976 L 7.627 20.976 L 7.627 22.94 L 9.591 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 15.313 20.976 L 13.349 20.976 L 13.349 22.94 L 15.313 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 19.127 20.976 L 17.163 20.976 L 17.163 22.94 L 19.127 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 20.976 L 19.068 20.976 L 19.068 22.94 L 21.032 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 20.976 L 30.51 20.976 L 30.51 22.94 L 32.474 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 34.381 20.976 L 32.417 20.976 L 32.417 22.94 L 34.381 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 20.976 L 34.323 20.976 L 34.323 22.94 L 36.287 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 20.976 L 38.137 20.976 L 38.137 22.94 L 40.101 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 20.976 L 40.044 20.976 L 40.044 22.94 L 42.008 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 20.976 L 41.95 20.976 L 41.95 22.94 L 43.914 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 45.822 20.976 L 43.858 20.976 L 43.858 22.94 L 45.822 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 20.976 L 45.764 20.976 L 45.764 22.94 L 47.728 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 49.636 20.976 L 47.672 20.976 L 47.672 22.94 L 49.636 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 51.542 20.976 L 49.578 20.976 L 49.578 22.94 L 51.542 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 53.45 20.976 L 51.486 20.976 L 51.486 22.94 L 53.45 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 59.169 20.976 L 57.205 20.976 L 57.205 22.94 L 59.169 22.94 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 5.778 22.883 L 3.813 22.883 L 3.813 24.847 L 5.778 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 7.686 22.883 L 5.722 22.883 L 5.722 24.847 L 7.686 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 11.5 22.883 L 9.536 22.883 L 9.536 24.847 L 11.5 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 15.313 22.883 L 13.349 22.883 L 13.349 24.847 L 15.313 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 17.218 22.883 L 15.254 22.883 L 15.254 24.847 L 17.218 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 19.127 22.883 L 17.163 22.883 L 17.163 24.847 L 19.127 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 22.883 L 20.977 22.883 L 20.977 24.847 L 22.941 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 22.883 L 22.883 22.883 L 22.883 24.847 L 24.847 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 28.66 22.883 L 26.696 22.883 L 26.696 24.847 L 28.66 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 34.381 22.883 L 32.417 22.883 L 32.417 24.847 L 34.381 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 22.883 L 34.323 22.883 L 34.323 24.847 L 36.287 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 22.883 L 36.23 22.883 L 36.23 24.847 L 38.194 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 22.883 L 38.137 22.883 L 38.137 24.847 L 40.101 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 22.883 L 41.95 22.883 L 41.95 24.847 L 43.914 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 45.822 22.883 L 43.858 22.883 L 43.858 24.847 L 45.822 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 22.883 L 45.764 22.883 L 45.764 24.847 L 47.728 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 51.542 22.883 L 49.578 22.883 L 49.578 24.847 L 51.542 24.847 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 11.5 24.79 L 9.536 24.79 L 9.536 26.754 L 11.5 26.754 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 13.405 24.79 L 11.441 24.79 L 11.441 26.754 L 13.405 26.754 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 24.79 L 20.977 24.79 L 20.977 26.754 L 22.941 26.754 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 24.79 L 22.883 24.79 L 22.883 26.754 L 24.847 26.754 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 30.568 24.79 L 28.604 24.79 L 28.604 26.754 L 30.568 26.754 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 24.79 L 34.323 24.79 L 34.323 26.754 L 36.287 26.754 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 24.79 L 36.23 24.79 L 36.23 26.754 L 38.194 26.754 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 24.79 L 38.137 24.79 L 38.137 26.754 L 40.101 26.754 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 24.79 L 40.044 24.79 L 40.044 26.754 L 42.008 26.754 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 45.822 24.79 L 43.858 24.79 L 43.858 26.754 L 45.822 26.754 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 24.79 L 45.764 24.79 L 45.764 26.754 L 47.728 26.754 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 53.45 24.79 L 51.486 24.79 L 51.486 26.754 L 53.45 26.754 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 57.264 24.79 L 55.3 24.79 L 55.3 26.754 L 57.264 26.754 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 7.686 26.696 L 5.722 26.696 L 5.722 28.66 L 7.686 28.66 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 11.5 26.696 L 9.536 26.696 L 9.536 28.66 L 11.5 28.66 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 13.405 26.696 L 11.441 26.696 L 11.441 28.66 L 13.405 28.66 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 15.313 26.696 L 13.349 26.696 L 13.349 28.66 L 15.313 28.66 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 17.218 26.696 L 15.254 26.696 L 15.254 28.66 L 17.218 28.66 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 26.696 L 30.51 26.696 L 30.51 28.66 L 32.474 28.66 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 26.696 L 38.137 26.696 L 38.137 28.66 L 40.101 28.66 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 26.696 L 41.95 26.696 L 41.95 28.66 L 43.914 28.66 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 45.822 26.696 L 43.858 26.696 L 43.858 28.66 L 45.822 28.66 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 49.636 26.696 L 47.672 26.696 L 47.672 28.66 L 49.636 28.66 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 55.355 26.696 L 53.391 26.696 L 53.391 28.66 L 55.355 28.66 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 57.264 26.696 L 55.3 26.696 L 55.3 28.66 L 57.264 28.66 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 59.169 26.696 L 57.205 26.696 L 57.205 28.66 L 59.169 28.66 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 5.778 28.603 L 3.813 28.603 L 3.813 30.567 L 5.778 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 7.686 28.603 L 5.722 28.603 L 5.722 30.567 L 7.686 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 9.591 28.603 L 7.627 28.603 L 7.627 30.567 L 9.591 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 11.5 28.603 L 9.536 28.603 L 9.536 30.567 L 11.5 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 15.313 28.603 L 13.349 28.603 L 13.349 30.567 L 15.313 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 19.127 28.603 L 17.163 28.603 L 17.163 30.567 L 19.127 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 28.603 L 20.977 28.603 L 20.977 30.567 L 22.941 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 28.603 L 22.883 28.603 L 22.883 30.567 L 24.847 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 28.603 L 30.51 28.603 L 30.51 30.567 L 32.474 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 34.381 28.603 L 32.417 28.603 L 32.417 30.567 L 34.381 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 28.603 L 38.137 28.603 L 38.137 30.567 L 40.101 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 28.603 L 40.044 28.603 L 40.044 30.567 L 42.008 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 28.603 L 41.95 28.603 L 41.95 30.567 L 43.914 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 45.822 28.603 L 43.858 28.603 L 43.858 30.567 L 45.822 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 28.603 L 45.764 28.603 L 45.764 30.567 L 47.728 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 51.542 28.603 L 49.578 28.603 L 49.578 30.567 L 51.542 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 53.45 28.603 L 51.486 28.603 L 51.486 30.567 L 53.45 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 57.264 28.603 L 55.3 28.603 L 55.3 30.567 L 57.264 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 59.169 28.603 L 57.205 28.603 L 57.205 30.567 L 59.169 30.567 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 7.686 30.51 L 5.722 30.51 L 5.722 32.474 L 7.686 32.474 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 17.218 30.51 L 15.254 30.51 L 15.254 32.474 L 17.218 32.474 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 19.127 30.51 L 17.163 30.51 L 17.163 32.474 L 19.127 32.474 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 30.51 L 20.977 30.51 L 20.977 32.474 L 22.941 32.474 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 26.754 30.51 L 24.79 30.51 L 24.79 32.474 L 26.754 32.474 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 28.66 30.51 L 26.696 30.51 L 26.696 32.474 L 28.66 32.474 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 30.51 L 34.323 30.51 L 34.323 32.474 L 36.287 32.474 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 30.51 L 36.23 30.51 L 36.23 32.474 L 38.194 32.474 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 30.51 L 38.137 30.51 L 38.137 32.474 L 40.101 32.474 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 30.51 L 41.95 30.51 L 41.95 32.474 L 43.914 32.474 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 45.822 30.51 L 43.858 30.51 L 43.858 32.474 L 45.822 32.474 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 49.636 30.51 L 47.672 30.51 L 47.672 32.474 L 49.636 32.474 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 7.686 32.417 L 5.722 32.417 L 5.722 34.381 L 7.686 34.381 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 9.591 32.417 L 7.627 32.417 L 7.627 34.381 L 9.591 34.381 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 13.405 32.417 L 11.441 32.417 L 11.441 34.381 L 13.405 34.381 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 32.417 L 19.068 32.417 L 19.068 34.381 L 21.032 34.381 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 30.568 32.417 L 28.604 32.417 L 28.604 34.381 L 30.568 34.381 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 34.381 32.417 L 32.417 32.417 L 32.417 34.381 L 34.381 34.381 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 32.417 L 34.323 32.417 L 34.323 34.381 L 36.287 34.381 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 32.417 L 38.137 32.417 L 38.137 34.381 L 40.101 34.381 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 45.822 32.417 L 43.858 32.417 L 43.858 34.381 L 45.822 34.381 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 32.417 L 45.764 32.417 L 45.764 34.381 L 47.728 34.381 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 51.542 32.417 L 49.578 32.417 L 49.578 34.381 L 51.542 34.381 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 53.45 32.417 L 51.486 32.417 L 51.486 34.381 L 53.45 34.381 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 59.169 32.417 L 57.205 32.417 L 57.205 34.381 L 59.169 34.381 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 11.5 34.324 L 9.536 34.324 L 9.536 36.288 L 11.5 36.288 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 13.405 34.324 L 11.441 34.324 L 11.441 36.288 L 13.405 36.288 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 15.313 34.324 L 13.349 34.324 L 13.349 36.288 L 15.313 36.288 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 17.218 34.324 L 15.254 34.324 L 15.254 36.288 L 17.218 36.288 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 34.324 L 19.068 34.324 L 19.068 36.288 L 21.032 36.288 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 34.324 L 20.977 34.324 L 20.977 36.288 L 22.941 36.288 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 34.324 L 22.883 34.324 L 22.883 36.288 L 24.847 36.288 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 34.324 L 34.323 34.324 L 34.323 36.288 L 36.287 36.288 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 53.45 34.324 L 51.486 34.324 L 51.486 36.288 L 53.45 36.288 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 55.355 34.324 L 53.391 34.324 L 53.391 36.288 L 55.355 36.288 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 59.169 34.324 L 57.205 34.324 L 57.205 36.288 L 59.169 36.288 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 5.778 36.231 L 3.813 36.231 L 3.813 38.195 L 5.778 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 7.686 36.231 L 5.722 36.231 L 5.722 38.195 L 7.686 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 9.591 36.231 L 7.627 36.231 L 7.627 38.195 L 9.591 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 11.5 36.231 L 9.536 36.231 L 9.536 38.195 L 11.5 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 13.405 36.231 L 11.441 36.231 L 11.441 38.195 L 13.405 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 15.313 36.231 L 13.349 36.231 L 13.349 38.195 L 15.313 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 36.231 L 22.883 36.231 L 22.883 38.195 L 24.847 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 36.231 L 30.51 36.231 L 30.51 38.195 L 32.474 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 36.231 L 36.23 36.231 L 36.23 38.195 L 38.194 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 36.231 L 38.137 36.231 L 38.137 38.195 L 40.101 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 36.231 L 41.95 36.231 L 41.95 38.195 L 43.914 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 45.822 36.231 L 43.858 36.231 L 43.858 38.195 L 45.822 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 36.231 L 45.764 36.231 L 45.764 38.195 L 47.728 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 49.636 36.231 L 47.672 36.231 L 47.672 38.195 L 49.636 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 51.542 36.231 L 49.578 36.231 L 49.578 38.195 L 51.542 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 53.45 36.231 L 51.486 36.231 L 51.486 38.195 L 53.45 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 57.264 36.231 L 55.3 36.231 L 55.3 38.195 L 57.264 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 59.169 36.231 L 57.205 36.231 L 57.205 38.195 L 59.169 38.195 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 5.778 38.137 L 3.813 38.137 L 3.813 40.102 L 5.778 40.102 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 9.591 38.137 L 7.627 38.137 L 7.627 40.102 L 9.591 40.102 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 13.405 38.137 L 11.441 38.137 L 11.441 40.102 L 13.405 40.102 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 15.313 38.137 L 13.349 38.137 L 13.349 40.102 L 15.313 40.102 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 17.218 38.137 L 15.254 38.137 L 15.254 40.102 L 17.218 40.102 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 38.137 L 22.883 38.137 L 22.883 40.102 L 24.847 40.102 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 38.137 L 34.323 38.137 L 34.323 40.102 L 36.287 40.102 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 38.137 L 36.23 38.137 L 36.23 40.102 L 38.194 40.102 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 38.137 L 45.764 38.137 L 45.764 40.102 L 47.728 40.102 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 49.636 38.137 L 47.672 38.137 L 47.672 40.102 L 49.636 40.102 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 53.45 38.137 L 51.486 38.137 L 51.486 40.102 L 53.45 40.102 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 5.778 40.044 L 3.813 40.044 L 3.813 42.009 L 5.778 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 11.5 40.044 L 9.536 40.044 L 9.536 42.009 L 11.5 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 13.405 40.044 L 11.441 40.044 L 11.441 42.009 L 13.405 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 15.313 40.044 L 13.349 40.044 L 13.349 42.009 L 15.313 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 40.044 L 19.068 40.044 L 19.068 42.009 L 21.032 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 40.044 L 20.977 40.044 L 20.977 42.009 L 22.941 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 26.754 40.044 L 24.79 40.044 L 24.79 42.009 L 26.754 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 28.66 40.044 L 26.696 40.044 L 26.696 42.009 L 28.66 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 40.044 L 34.323 40.044 L 34.323 42.009 L 36.287 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 40.044 L 36.23 40.044 L 36.23 42.009 L 38.194 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 40.044 L 38.137 40.044 L 38.137 42.009 L 40.101 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 40.044 L 40.044 40.044 L 40.044 42.009 L 42.008 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 40.044 L 45.764 40.044 L 45.764 42.009 L 47.728 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 49.636 40.044 L 47.672 40.044 L 47.672 42.009 L 49.636 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 53.45 40.044 L 51.486 40.044 L 51.486 42.009 L 53.45 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 59.169 40.044 L 57.205 40.044 L 57.205 42.009 L 59.169 42.009 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 5.778 41.951 L 3.813 41.951 L 3.813 43.915 L 5.778 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 11.5 41.951 L 9.536 41.951 L 9.536 43.915 L 11.5 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 13.405 41.951 L 11.441 41.951 L 11.441 43.915 L 13.405 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 15.313 41.951 L 13.349 41.951 L 13.349 43.915 L 15.313 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 17.218 41.951 L 15.254 41.951 L 15.254 43.915 L 17.218 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 19.127 41.951 L 17.163 41.951 L 17.163 43.915 L 19.127 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 41.951 L 22.883 41.951 L 22.883 43.915 L 24.847 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 26.754 41.951 L 24.79 41.951 L 24.79 43.915 L 26.754 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 28.66 41.951 L 26.696 41.951 L 26.696 43.915 L 28.66 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 30.568 41.951 L 28.604 41.951 L 28.604 43.915 L 30.568 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 34.381 41.951 L 32.417 41.951 L 32.417 43.915 L 34.381 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 41.951 L 36.23 41.951 L 36.23 43.915 L 38.194 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 41.951 L 41.95 41.951 L 41.95 43.915 L 43.914 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 45.822 41.951 L 43.858 41.951 L 43.858 43.915 L 45.822 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 41.951 L 45.764 41.951 L 45.764 43.915 L 47.728 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 49.636 41.951 L 47.672 41.951 L 47.672 43.915 L 49.636 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 51.542 41.951 L 49.578 41.951 L 49.578 43.915 L 51.542 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 53.45 41.951 L 51.486 41.951 L 51.486 43.915 L 53.45 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 55.355 41.951 L 53.391 41.951 L 53.391 43.915 L 55.355 43.915 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 43.858 L 19.068 43.858 L 19.068 45.822 L 21.032 45.822 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 26.754 43.858 L 24.79 43.858 L 24.79 45.822 L 26.754 45.822 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 30.568 43.858 L 28.604 43.858 L 28.604 45.822 L 30.568 45.822 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 43.858 L 38.137 43.858 L 38.137 45.822 L 40.101 45.822 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 43.858 L 40.044 43.858 L 40.044 45.822 L 42.008 45.822 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 43.858 L 41.95 43.858 L 41.95 45.822 L 43.914 45.822 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 51.542 43.858 L 49.578 43.858 L 49.578 45.822 L 51.542 45.822 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 53.45 43.858 L 51.486 43.858 L 51.486 45.822 L 53.45 45.822 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 57.264 43.858 L 55.3 43.858 L 55.3 45.822 L 57.264 45.822 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 59.169 43.858 L 57.205 43.858 L 57.205 45.822 L 59.169 45.822 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 45.765 L 20.977 45.765 L 20.977 47.729 L 22.941 47.729 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 45.765 L 22.883 45.765 L 22.883 47.729 L 24.847 47.729 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 28.66 45.765 L 26.696 45.765 L 26.696 47.729 L 28.66 47.729 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 45.765 L 30.51 45.765 L 30.51 47.729 L 32.474 47.729 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 34.381 45.765 L 32.417 45.765 L 32.417 47.729 L 34.381 47.729 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 45.765 L 36.23 45.765 L 36.23 47.729 L 38.194 47.729 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 45.765 L 40.044 45.765 L 40.044 47.729 L 42.008 47.729 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 45.765 L 41.95 45.765 L 41.95 47.729 L 43.914 47.729 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 45.765 L 45.764 45.765 L 45.764 47.729 L 47.728 47.729 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 51.542 45.765 L 49.578 45.765 L 49.578 47.729 L 51.542 47.729 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 47.672 L 22.883 47.672 L 22.883 49.636 L 24.847 49.636 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 26.754 47.672 L 24.79 47.672 L 24.79 49.636 L 26.754 49.636 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 47.672 L 34.323 47.672 L 34.323 49.636 L 36.287 49.636 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 47.672 L 36.23 47.672 L 36.23 49.636 L 38.194 49.636 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 47.672 L 38.137 47.672 L 38.137 49.636 L 40.101 49.636 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 47.672 L 40.044 47.672 L 40.044 49.636 L 42.008 49.636 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 47.672 L 41.95 47.672 L 41.95 49.636 L 43.914 49.636 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 51.542 47.672 L 49.578 47.672 L 49.578 49.636 L 51.542 49.636 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 53.45 47.672 L 51.486 47.672 L 51.486 49.636 L 53.45 49.636 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 59.169 47.672 L 57.205 47.672 L 57.205 49.636 L 59.169 49.636 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 49.579 L 19.068 49.579 L 19.068 51.543 L 21.032 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 28.66 49.579 L 26.696 49.579 L 26.696 51.543 L 28.66 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 30.568 49.579 L 28.604 49.579 L 28.604 51.543 L 30.568 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 49.579 L 30.51 49.579 L 30.51 51.543 L 32.474 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 49.579 L 34.323 49.579 L 34.323 51.543 L 36.287 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 49.579 L 38.137 49.579 L 38.137 51.543 L 40.101 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 49.579 L 41.95 49.579 L 41.95 51.543 L 43.914 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 45.822 49.579 L 43.858 49.579 L 43.858 51.543 L 45.822 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 49.579 L 45.764 49.579 L 45.764 51.543 L 47.728 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 49.636 49.579 L 47.672 49.579 L 47.672 51.543 L 49.636 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 51.542 49.579 L 49.578 49.579 L 49.578 51.543 L 51.542 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 53.45 49.579 L 51.486 49.579 L 51.486 51.543 L 53.45 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 55.355 49.579 L 53.391 49.579 L 53.391 51.543 L 55.355 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 57.264 49.579 L 55.3 49.579 L 55.3 51.543 L 57.264 51.543 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 51.486 L 19.068 51.486 L 19.068 53.45 L 21.032 53.45 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 28.66 51.486 L 26.696 51.486 L 26.696 53.45 L 28.66 53.45 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 51.486 L 30.51 51.486 L 30.51 53.45 L 32.474 53.45 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 34.381 51.486 L 32.417 51.486 L 32.417 53.45 L 34.381 53.45 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 51.486 L 38.137 51.486 L 38.137 53.45 L 40.101 53.45 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 51.486 L 40.044 51.486 L 40.044 53.45 L 42.008 53.45 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 51.486 L 41.95 51.486 L 41.95 53.45 L 43.914 53.45 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 45.822 51.486 L 43.858 51.486 L 43.858 53.45 L 45.822 53.45 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 49.636 51.486 L 47.672 51.486 L 47.672 53.45 L 49.636 53.45 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 21.032 53.393 L 19.068 53.393 L 19.068 55.357 L 21.032 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 53.393 L 20.977 53.393 L 20.977 55.357 L 22.941 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 53.393 L 22.883 53.393 L 22.883 55.357 L 24.847 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 26.754 53.393 L 24.79 53.393 L 24.79 55.357 L 26.754 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 28.66 53.393 L 26.696 53.393 L 26.696 55.357 L 28.66 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 30.568 53.393 L 28.604 53.393 L 28.604 55.357 L 30.568 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 53.393 L 34.323 53.393 L 34.323 55.357 L 36.287 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 53.393 L 38.137 53.393 L 38.137 55.357 L 40.101 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 53.393 L 40.044 53.393 L 40.044 55.357 L 42.008 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 43.914 53.393 L 41.95 53.393 L 41.95 55.357 L 43.914 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 45.822 53.393 L 43.858 53.393 L 43.858 55.357 L 45.822 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 53.393 L 45.764 53.393 L 45.764 55.357 L 47.728 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 49.636 53.393 L 47.672 53.393 L 47.672 55.357 L 49.636 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 51.542 53.393 L 49.578 53.393 L 49.578 55.357 L 51.542 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 53.45 53.393 L 51.486 53.393 L 51.486 55.357 L 53.45 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 55.355 53.393 L 53.391 53.393 L 53.391 55.357 L 55.355 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 57.264 53.393 L 55.3 53.393 L 55.3 55.357 L 57.264 55.357 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 55.299 L 22.883 55.299 L 22.883 57.263 L 24.847 57.263 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 55.299 L 30.51 55.299 L 30.51 57.263 L 32.474 57.263 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 36.287 55.299 L 34.323 55.299 L 34.323 57.263 L 36.287 57.263 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 38.194 55.299 L 36.23 55.299 L 36.23 57.263 L 38.194 57.263 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 55.299 L 38.137 55.299 L 38.137 57.263 L 40.101 57.263 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 55.299 L 40.044 55.299 L 40.044 57.263 L 42.008 57.263 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 47.728 55.299 L 45.764 55.299 L 45.764 57.263 L 47.728 57.263 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 51.542 55.299 L 49.578 55.299 L 49.578 57.263 L 51.542 57.263 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 57.264 55.299 L 55.3 55.299 L 55.3 57.263 L 57.264 57.263 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 22.941 57.206 L 20.977 57.206 L 20.977 59.17 L 22.941 59.17 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 24.847 57.206 L 22.883 57.206 L 22.883 59.17 L 24.847 59.17 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 30.568 57.206 L 28.604 57.206 L 28.604 59.17 L 30.568 59.17 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 32.474 57.206 L 30.51 57.206 L 30.51 59.17 L 32.474 59.17 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 40.101 57.206 L 38.137 57.206 L 38.137 59.17 L 40.101 59.17 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 42.008 57.206 L 40.044 57.206 L 40.044 59.17 L 42.008 59.17 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 51.542 57.206 L 49.578 57.206 L 49.578 59.17 L 51.542 59.17 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 55.355 57.206 L 53.391 57.206 L 53.391 59.17 L 55.355 59.17 Z\" fill=\"rgb(255,132,58)\"></path><path d=\"M 3.813 3.814 L 3.813 17.162 L 17.162 17.162 L 17.162 3.814 Z M 15.255 15.255 L 5.72 15.255 L 5.72 5.721 L 15.255 5.721 Z\" fill=\"rgb(255,215,175)\"></path><path d=\"M 45.763 3.814 L 45.763 17.162 L 59.111 17.162 L 59.111 3.814 Z M 57.204 15.255 L 47.67 15.255 L 47.67 5.721 L 57.204 5.721 Z\" fill=\"rgb(255,215,175)\"></path><path d=\"M 3.813 45.765 L 3.813 59.113 L 17.162 59.113 L 17.162 45.765 Z M 15.255 57.206 L 5.72 57.206 L 5.72 47.672 L 15.255 47.672 Z\" fill=\"rgb(255,215,175)\"></path><path d=\"M 13.348 7.627 L 7.627 7.627 L 7.627 13.348 L 13.348 13.348 Z\" fill=\"rgb(255,215,175)\"></path><path d=\"M 55.297 7.627 L 49.577 7.627 L 49.577 13.348 L 55.297 13.348 Z\" fill=\"rgb(255,215,175)\"></path><path d=\"M 13.348 49.578 L 7.627 49.578 L 7.627 55.299 L 13.348 55.299 Z\" fill=\"rgb(255,215,175)\"></path></g></svg>',svgContentId:11420985773,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-7qxop1\",\"data-framer-name\":\"QR Code\",fill:'var(--token-2835c50d-5338-48b7-a381-967ad0b5418d, rgb(253, 98, 5)) /* {\"name\":\"Primary\"} */',intrinsicHeight:200,intrinsicWidth:200,layoutDependency:layoutDependency,layoutId:\"iE4Fkqxix\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"200\" height=\"200\" viewBox=\"0 0 33 33\" shape-rendering=\"crispEdges\"><path stroke=\"#000\" d=\"M0 .5h7m1 0h1m1 0h1m1 0h2m1 0h1m5 0h3m2 0h7m-33 1h1m5 0h1m2 0h5m3 0h1m2 0h1m2 0h2m1 0h1m5 0h1m-33 1h1m1 0h3m1 0h1m1 0h3m5 0h1m2 0h2m1 0h1m3 0h1m1 0h3m1 0h1m-33 1h1m1 0h3m1 0h1m1 0h3m1 0h1m1 0h2m1 0h2m3 0h1m1 0h1m1 0h1m1 0h3m1 0h1m-33 1h1m1 0h3m1 0h1m1 0h1m2 0h2m1 0h2m3 0h1m2 0h1m1 0h1m1 0h1m1 0h3m1 0h1m-33 1h1m5 0h1m3 0h2m1 0h1m3 0h1m1 0h2m1 0h1m1 0h1m1 0h1m5 0h1m-33 1h7m1 0h1m1 0h1m1 0h1m1 0h1m1 0h1m1 0h1m1 0h1m1 0h1m1 0h1m1 0h7m-23 1h1m1 0h1m2 0h2m3 0h1m3 0h1m-25 1h4m2 0h1m1 0h1m1 0h4m2 0h1m4 0h3m1 0h1m2 0h3m1 0h1m-30 1h2m3 0h1m1 0h1m1 0h3m1 0h5m2 0h4m3 0h3m-32 1h2m1 0h1m1 0h2m1 0h5m4 0h1m2 0h3m2 0h1m3 0h3m-32 1h1m1 0h3m2 0h3m4 0h1m2 0h1m1 0h1m2 0h1m1 0h1m2 0h1m2 0h1m-32 1h1m1 0h2m1 0h6m1 0h1m1 0h3m1 0h2m2 0h1m2 0h1m2 0h2m-30 1h6m5 0h2m1 0h1m1 0h5m3 0h1m2 0h1m1 0h3m-30 1h1m1 0h3m1 0h1m1 0h2m1 0h1m1 0h5m1 0h1m4 0h3m1 0h1m-31 1h3m1 0h1m2 0h1m3 0h1m2 0h1m5 0h4m3 0h1m2 0h1m-28 1h1m2 0h2m1 0h1m2 0h1m1 0h1m2 0h1m3 0h3m1 0h2m1 0h5m-31 1h1m1 0h1m5 0h1m3 0h4m2 0h11m1 0h1m-31 1h1m1 0h1m1 0h1m1 0h1m1 0h1m2 0h5m2 0h1m1 0h1m2 0h1m1 0h3m1 0h1m-32 1h1m1 0h2m4 0h1m2 0h1m1 0h4m1 0h1m1 0h1m1 0h1m1 0h6m2 0h1m-32 1h2m1 0h4m2 0h1m2 0h2m1 0h2m3 0h1m1 0h1m1 0h1m4 0h1m-31 1h1m4 0h1m2 0h3m5 0h1m1 0h4m1 0h2m1 0h2m1 0h1m1 0h2m-31 1h1m1 0h3m2 0h1m4 0h1m2 0h2m1 0h6m1 0h2m1 0h3m-32 1h1m6 0h8m2 0h1m1 0h1m3 0h3m1 0h2m1 0h1m-32 1h1m2 0h1m1 0h5m1 0h1m3 0h2m5 0h7m3 0h1m-25 1h1m1 0h2m1 0h1m2 0h2m1 0h1m3 0h2m3 0h2m-30 1h7m3 0h1m1 0h1m1 0h2m3 0h2m1 0h3m1 0h1m1 0h2m-30 1h1m5 0h1m3 0h1m1 0h2m3 0h2m1 0h5m3 0h5m-33 1h1m1 0h3m1 0h1m3 0h2m5 0h1m1 0h10m1 0h1m-31 1h1m1 0h3m1 0h1m1 0h2m2 0h2m7 0h4m2 0h1m3 0h2m-33 1h1m1 0h3m1 0h1m1 0h1m1 0h3m4 0h2m2 0h1m1 0h1m2 0h1m3 0h1m-31 1h1m5 0h1m1 0h2m2 0h1m2 0h2m1 0h2m2 0h3m1 0h1m5 0h1m-33 1h7m1 0h1m1 0h4m3 0h2m2 0h1m1 0h1m2 0h1m1 0h3\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"T\\xe9l\\xe9charger l\u2019application\"})}),className:\"framer-1q6xsyd\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"Q0HhgB9ZU\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fyeg2x\",\"data-framer-name\":\"Actions\",layoutDependency:layoutDependency,layoutId:\"qzD2kSl6b\",children:[/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"Pp_kTp9on\",scopeId:\"eRecHhGQR\",...addPropertyOverrides({LyttyvOF8:{href:\"https://apps.apple.com/fr/app/gogain-fit/id6550922505?l=fr-fr\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(Image,{className:\"framer-c4kn83 framer-1clt0h\",\"data-border\":true,\"data-framer-name\":\"Mobile app store badge\",layoutDependency:layoutDependency,layoutId:\"Pp_kTp9on\",style:{\"--border-bottom-width\":\"0.6715856194496155px\",\"--border-color\":\"rgb(242, 244, 247)\",\"--border-left-width\":\"0.6715856194496155px\",\"--border-right-width\":\"0.6715856194496155px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.6715856194496155px\",borderBottomLeftRadius:4.7,borderBottomRightRadius:4.7,borderTopLeftRadius:4.7,borderTopRightRadius:4.7},...addPropertyOverrides({LyttyvOF8:{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+704+0+0+92.0683+0+117+0),pixelHeight:306,pixelWidth:612,sizes:\"90.6641px\",src:\"https://framerusercontent.com/images/68Ot46BXydbrXCFaJ3Or3CM0SQ.jpg\",srcSet:\"https://framerusercontent.com/images/68Ot46BXydbrXCFaJ3Or3CM0SQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/68Ot46BXydbrXCFaJ3Or3CM0SQ.jpg 612w\"}}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1usw4wx\",\"data-framer-name\":\"App Store\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:51,layoutDependency:layoutDependency,layoutId:\"I11345:16023;1303:2171\",svg:'<svg width=\"51\" height=\"11\" viewBox=\"0 0 51 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M31.6784 0.987117V2.52573H30.7139V3.53475H31.6784V6.96318C31.6784 8.13386 32.208 8.60214 33.5403 8.60214C33.7744 8.60214 33.9974 8.57426 34.1925 8.54082V7.54295C34.0253 7.55967 33.9194 7.57082 33.7354 7.57082C33.1389 7.57082 32.8769 7.29209 32.8769 6.65657V3.53475H34.1925V2.52573H32.8769V0.987117H31.6784Z\" fill=\"white\"/>\\n<path d=\"M37.5866 8.68576C39.3594 8.68576 40.4465 7.49835 40.4465 5.53049C40.4465 3.57377 39.3538 2.38079 37.5866 2.38079C35.8139 2.38079 34.7212 3.57377 34.7212 5.53049C34.7212 7.49835 35.8083 8.68576 37.5866 8.68576ZM37.5866 7.62099C36.5442 7.62099 35.9588 6.85726 35.9588 5.53049C35.9588 4.21486 36.5442 3.44555 37.5866 3.44555C38.6235 3.44555 39.2144 4.21486 39.2144 5.53049C39.2144 6.85169 38.6235 7.62099 37.5866 7.62099Z\" fill=\"white\"/>\\n<path d=\"M41.3765 8.56869H42.5751V4.98417C42.5751 4.13124 43.2162 3.55705 44.1249 3.55705C44.3367 3.55705 44.6935 3.59607 44.7938 3.62952V2.44768C44.6656 2.41424 44.437 2.39751 44.2586 2.39751C43.467 2.39751 42.7925 2.83234 42.6197 3.42883H42.5305V2.49786H41.3765V8.56869Z\" fill=\"white\"/>\\n<path d=\"M47.7698 3.40096C48.6562 3.40096 49.2359 4.01975 49.2638 4.97302H46.1977C46.2646 4.02532 46.8834 3.40096 47.7698 3.40096ZM49.2582 6.92973C49.0353 7.40358 48.5391 7.66559 47.8144 7.66559C46.8556 7.66559 46.2368 6.99105 46.1977 5.92629V5.85939H50.4847V5.44129C50.4847 3.53475 49.4645 2.38079 47.7754 2.38079C46.0639 2.38079 44.9769 3.61279 44.9769 5.55278C44.9769 7.49277 46.0416 8.68576 47.781 8.68576C49.169 8.68576 50.139 8.0168 50.4122 6.92973H49.2582Z\" fill=\"white\"/>\\n<path d=\"M23.8184 6.32683C23.9109 7.81755 25.1531 8.77092 27.0021 8.77092C28.9782 8.77092 30.2146 7.77133 30.2146 6.1766C30.2146 4.92277 29.5097 4.22941 27.7994 3.83073L26.8807 3.60539C25.7945 3.35116 25.3554 3.01026 25.3554 2.41512C25.3554 1.66398 26.0372 1.17285 27.0599 1.17285C28.0306 1.17285 28.7008 1.65243 28.8221 2.4209H30.0818C30.0066 1.01685 28.7701 0.0288086 27.0772 0.0288086C25.2571 0.0288086 24.0437 1.01685 24.0437 2.50179C24.0437 3.72673 24.7313 4.45475 26.2394 4.80721L27.3141 5.06722C28.4177 5.32723 28.903 5.70858 28.903 6.34416C28.903 7.08374 28.1403 7.6211 27.1003 7.6211C25.9852 7.6211 25.2109 7.11841 25.1011 6.32683H23.8184Z\" fill=\"white\"/>\\n<path d=\"M11.4026 2.39751C10.5775 2.39751 9.86396 2.81004 9.49603 3.5013H9.40684V2.49786H8.25288V10.5867H9.45144V7.64887H9.54621C9.86396 8.28996 10.5496 8.66903 11.4137 8.66903C12.9468 8.66903 13.9223 7.45933 13.9223 5.53049C13.9223 3.60164 12.9468 2.39751 11.4026 2.39751ZM11.0625 7.59312C10.0591 7.59312 9.42914 6.80151 9.42914 5.53606C9.42914 4.26503 10.0591 3.47343 11.0681 3.47343C12.0827 3.47343 12.6903 4.24831 12.6903 5.53049C12.6903 6.81824 12.0827 7.59312 11.0625 7.59312Z\" fill=\"white\"/>\\n<path d=\"M18.1163 2.39751C17.2912 2.39751 16.5777 2.81004 16.2097 3.5013H16.1205V2.49786H14.9666V10.5867H16.1651V7.64887H16.2599C16.5777 8.28996 17.2634 8.66903 18.1274 8.66903C19.6605 8.66903 20.636 7.45933 20.636 5.53049C20.636 3.60164 19.6605 2.39751 18.1163 2.39751ZM17.7762 7.59312C16.7728 7.59312 16.1428 6.80151 16.1428 5.53606C16.1428 4.26503 16.7728 3.47343 17.7818 3.47343C18.7964 3.47343 19.404 4.24831 19.404 5.53049C19.404 6.81824 18.7964 7.59312 17.7762 7.59312Z\" fill=\"white\"/>\\n<path d=\"M6.10246 8.56869H7.47762L4.46729 0.231039H3.07479L0.0644531 8.56869H1.39339L2.16187 6.35572H5.33977L6.10246 8.56869ZM3.70459 1.74487H3.80282L5.01042 5.26945H2.49121L3.70459 1.74487Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-58s4fm\",\"data-framer-name\":\"Download on the\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"I11345:16023;1303:2172\",svg:'<svg width=\"48\" height=\"6\" viewBox=\"0 0 48 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.869629 0.942286V4.96442H2.32183C3.52039 4.96442 4.21444 4.22578 4.21444 2.94081C4.21444 1.67536 3.51482 0.942286 2.32183 0.942286H0.869629ZM1.49399 1.5109H2.25215C3.08557 1.5109 3.57893 2.0405 3.57893 2.94917C3.57893 3.87178 3.09393 4.3958 2.25215 4.3958H1.49399V1.5109Z\" fill=\"white\"/>\\n<path d=\"M6.34007 5.02296C7.22644 5.02296 7.76997 4.42925 7.76997 3.44532C7.76997 2.46696 7.22366 1.87047 6.34007 1.87047C5.45369 1.87047 4.90737 2.46696 4.90737 3.44532C4.90737 4.42925 5.45091 5.02296 6.34007 5.02296ZM6.34007 4.49057C5.81883 4.49057 5.52616 4.10871 5.52616 3.44532C5.52616 2.78751 5.81883 2.40285 6.34007 2.40285C6.85851 2.40285 7.15397 2.78751 7.15397 3.44532C7.15397 4.10592 6.85851 4.49057 6.34007 4.49057Z\" fill=\"white\"/>\\n<path d=\"M12.3986 1.92901H11.7994L11.2586 4.24529H11.2112L10.5869 1.92901H10.0127L9.38831 4.24529H9.34371L8.80018 1.92901H8.19254L9.02874 4.96442H9.64474L10.2691 2.72897H10.3165L10.9436 4.96442H11.5652L12.3986 1.92901Z\" fill=\"white\"/>\\n<path d=\"M13.0888 4.96442H13.6881V3.18888C13.6881 2.71504 13.9696 2.41958 14.4128 2.41958C14.856 2.41958 15.0678 2.66208 15.0678 3.14986V4.96442H15.6671V2.99935C15.6671 2.27742 15.2936 1.87047 14.6162 1.87047C14.1591 1.87047 13.8581 2.07395 13.7104 2.41122H13.6658V1.92901H13.0888V4.96442Z\" fill=\"white\"/>\\n<path d=\"M16.6109 4.96442H17.2101V0.744385H16.6109V4.96442Z\" fill=\"white\"/>\\n<path d=\"M19.464 5.02296C20.3504 5.02296 20.8939 4.42925 20.8939 3.44532C20.8939 2.46696 20.3476 1.87047 19.464 1.87047C18.5776 1.87047 18.0313 2.46696 18.0313 3.44532C18.0313 4.42925 18.5748 5.02296 19.464 5.02296ZM19.464 4.49057C18.9428 4.49057 18.6501 4.10871 18.6501 3.44532C18.6501 2.78751 18.9428 2.40285 19.464 2.40285C19.9824 2.40285 20.2779 2.78751 20.2779 3.44532C20.2779 4.10592 19.9824 4.49057 19.464 4.49057Z\" fill=\"white\"/>\\n<path d=\"M22.6795 4.51008C22.3533 4.51008 22.1164 4.35121 22.1164 4.07805C22.1164 3.81046 22.306 3.66831 22.7241 3.64043L23.4655 3.59305V3.8467C23.4655 4.22299 23.131 4.51008 22.6795 4.51008ZM22.5262 5.01459C22.9248 5.01459 23.2564 4.84178 23.4376 4.53796H23.485V4.96442H24.062V2.89064C24.062 2.24955 23.6327 1.87047 22.8718 1.87047C22.1833 1.87047 21.6928 2.20495 21.6314 2.72619H22.2112C22.2781 2.51156 22.5094 2.38892 22.8439 2.38892C23.2537 2.38892 23.4655 2.57009 23.4655 2.89064V3.15265L22.6432 3.20003C21.9213 3.24463 21.5144 3.5596 21.5144 4.10592C21.5144 4.6606 21.9408 5.01459 22.5262 5.01459Z\" fill=\"white\"/>\\n<path d=\"M26.0956 5.01459C26.5137 5.01459 26.8677 4.81669 27.0489 4.485H27.0963V4.96442H27.6705V0.744385H27.0712V2.41122H27.0266C26.8622 2.07673 26.511 1.87883 26.0956 1.87883C25.3291 1.87883 24.8358 2.48647 24.8358 3.44532C24.8358 4.40695 25.3235 5.01459 26.0956 5.01459ZM26.2657 2.41679C26.7674 2.41679 27.0824 2.81538 27.0824 3.44811C27.0824 4.08362 26.7702 4.47664 26.2657 4.47664C25.7584 4.47664 25.4545 4.0892 25.4545 3.44532C25.4545 2.80702 25.7612 2.41679 26.2657 2.41679Z\" fill=\"white\"/>\\n<path d=\"M31.5566 5.02296C32.443 5.02296 32.9865 4.42925 32.9865 3.44532C32.9865 2.46696 32.4402 1.87047 31.5566 1.87047C30.6702 1.87047 30.1239 2.46696 30.1239 3.44532C30.1239 4.42925 30.6674 5.02296 31.5566 5.02296ZM31.5566 4.49057C31.0354 4.49057 30.7427 4.10871 30.7427 3.44532C30.7427 2.78751 31.0354 2.40285 31.5566 2.40285C32.075 2.40285 32.3705 2.78751 32.3705 3.44532C32.3705 4.10592 32.075 4.49057 31.5566 4.49057Z\" fill=\"white\"/>\\n<path d=\"M33.7798 4.96442H34.3791V3.18888C34.3791 2.71504 34.6606 2.41958 35.1038 2.41958C35.547 2.41958 35.7588 2.66208 35.7588 3.14986V4.96442H36.3581V2.99935C36.3581 2.27742 35.9846 1.87047 35.3072 1.87047C34.8501 1.87047 34.5491 2.07395 34.4014 2.41122H34.3568V1.92901H33.7798V4.96442Z\" fill=\"white\"/>\\n<path d=\"M39.1181 1.17364V1.94294H38.6359V2.44745H39.1181V4.16167C39.1181 4.74701 39.3829 4.98115 40.0491 4.98115C40.1661 4.98115 40.2776 4.96721 40.3752 4.95048V4.45155C40.2916 4.45991 40.2386 4.46549 40.1466 4.46549C39.8484 4.46549 39.7174 4.32612 39.7174 4.00836V2.44745H40.3752V1.94294H39.7174V1.17364H39.1181Z\" fill=\"white\"/>\\n<path d=\"M41.1796 4.96442H41.7789V3.19167C41.7789 2.73176 42.0521 2.42237 42.5426 2.42237C42.9663 2.42237 43.1921 2.66765 43.1921 3.15265V4.96442H43.7914V3.00492C43.7914 2.283 43.3928 1.87326 42.7461 1.87326C42.289 1.87326 41.9684 2.07673 41.8207 2.41679H41.7733V0.744385H41.1796V4.96442Z\" fill=\"white\"/>\\n<path d=\"M45.9532 2.38055C46.3964 2.38055 46.6863 2.68995 46.7002 3.16659H45.1672C45.2006 2.69274 45.51 2.38055 45.9532 2.38055ZM46.6974 4.14494C46.5859 4.38187 46.3379 4.51287 45.9755 4.51287C45.4961 4.51287 45.1867 4.1756 45.1672 3.64322V3.60977H47.3107V3.40072C47.3107 2.44745 46.8006 1.87047 45.956 1.87047C45.1003 1.87047 44.5568 2.48647 44.5568 3.45647C44.5568 4.42646 45.0891 5.02296 45.9588 5.02296C46.6528 5.02296 47.1378 4.68847 47.2744 4.14494H46.6974Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1cwizvc\",\"data-framer-name\":\"Apple logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:13,layoutDependency:layoutDependency,layoutId:\"I11345:16023;1303:2173\",svg:'<svg width=\"13\" height=\"16\" viewBox=\"0 0 13 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.5612 8.72569C10.5757 7.59675 11.182 6.52853 12.1438 5.93723C11.5371 5.07066 10.5208 4.52124 9.46342 4.48816C8.33567 4.36978 7.24236 5.16299 6.66768 5.16299C6.08188 5.16299 5.19706 4.49991 4.24426 4.51951C3.00233 4.55964 1.84454 5.26573 1.24031 6.35151C-0.0585321 8.60026 0.91029 11.9052 2.15448 13.7229C2.77697 14.613 3.50448 15.6072 4.45642 15.572C5.38795 15.5333 5.73586 14.978 6.8603 14.978C7.9743 14.978 8.30071 15.572 9.27196 15.5495C10.2715 15.5333 10.9013 14.6555 11.502 13.757C11.9492 13.1228 12.2934 12.4218 12.5217 11.6801C11.347 11.1833 10.5626 10.0011 10.5612 8.72569Z\" fill=\"white\"/>\\n<path d=\"M8.72665 3.29274C9.27166 2.63847 9.54017 1.79753 9.47515 0.948486C8.64249 1.03594 7.87335 1.43389 7.32098 2.06306C6.78084 2.67778 6.49974 3.50393 6.55288 4.32052C7.38584 4.32909 8.2047 3.94193 8.72665 3.29274Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"aOCHIK6Ir\",scopeId:\"eRecHhGQR\",...addPropertyOverrides({LyttyvOF8:{href:\"https://play.google.com/store/apps/details?id=com.zakisb97.GoGain&hl=fr\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-miythb framer-1clt0h\",\"data-border\":true,\"data-framer-name\":\"Mobile app store badge\",layoutDependency:layoutDependency,layoutId:\"aOCHIK6Ir\",style:{\"--border-bottom-width\":\"0.6715856194496155px\",\"--border-color\":\"rgb(242, 244, 247)\",\"--border-left-width\":\"0.6715856194496155px\",\"--border-right-width\":\"0.6715856194496155px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.6715856194496155px\",borderBottomLeftRadius:3.36,borderBottomRightRadius:3.36,borderTopLeftRadius:3.36,borderTopRightRadius:3.36},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-d6a9u8\",\"data-framer-name\":\"Google Play\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:58,layoutDependency:layoutDependency,layoutId:\"I11345:16024;1303:2164\",svg:'<svg width=\"58\" height=\"12\" viewBox=\"0 0 58 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.0949 3.69967C17.5153 3.69967 16.2279 4.90113 16.2279 6.55592C16.2279 8.20063 17.5153 9.41217 19.0949 9.41217C20.6751 9.41217 21.9625 8.20063 21.9625 6.55592C21.9619 4.90113 20.6744 3.69967 19.0949 3.69967ZM19.0949 8.28794C18.2292 8.28794 17.4831 7.57404 17.4831 6.55659C17.4831 5.52839 18.2299 4.82524 19.0949 4.82524C19.9605 4.82524 20.7067 5.52839 20.7067 6.55659C20.7067 7.57337 19.9605 8.28794 19.0949 8.28794ZM12.8397 3.69967C11.2601 3.69967 9.97272 4.90113 9.97272 6.55592C9.97272 8.20063 11.2601 9.41217 12.8397 9.41217C14.42 9.41217 15.7074 8.20063 15.7074 6.55592C15.7074 4.90113 14.42 3.69967 12.8397 3.69967ZM12.8397 8.28794C11.974 8.28794 11.2279 7.57404 11.2279 6.55659C11.2279 5.52839 11.9747 4.82524 12.8397 4.82524C13.7054 4.82524 14.4515 5.52839 14.4515 6.55659C14.4522 7.57337 13.7054 8.28794 12.8397 8.28794ZM5.39989 4.57676V5.7883H8.2998C8.21317 6.46996 7.98617 6.9676 7.63963 7.31347C7.21787 7.73522 6.55771 8.20063 5.39989 8.20063C3.61482 8.20063 2.21926 6.76143 2.21926 4.97635C2.21926 3.19128 3.61482 1.75207 5.39989 1.75207C6.36295 1.75207 7.0661 2.13084 7.58523 2.61774L8.44016 1.76281C7.71485 1.07041 6.75247 0.540528 5.39989 0.540528C2.95465 0.540528 0.898926 2.53111 0.898926 4.97635C0.898926 7.42159 2.95465 9.41217 5.39989 9.41217C6.71956 9.41217 7.71552 8.979 8.49389 8.16772C9.29442 7.36719 9.54358 6.24162 9.54358 5.33296C9.54358 5.05224 9.52209 4.79234 9.47843 4.57609H5.39989V4.57676ZM35.8281 5.51765C35.5904 4.87964 34.865 3.69967 33.3829 3.69967C31.9114 3.69967 30.6884 4.85748 30.6884 6.55592C30.6884 8.15698 31.9007 9.41217 33.5232 9.41217C34.8321 9.41217 35.5897 8.61164 35.904 8.14624L34.9302 7.49681C34.6058 7.97296 34.1619 8.2866 33.5232 8.2866C32.8852 8.2866 32.4305 7.99446 32.1384 7.42092L35.9577 5.84135L35.8281 5.51765ZM31.9329 6.46996C31.9007 5.36587 32.7878 4.80375 33.4265 4.80375C33.9241 4.80375 34.3459 5.05291 34.4869 5.40952L31.9329 6.46996ZM28.8282 9.23958H30.0827V0.844084H28.8282V9.23958ZM26.7718 4.33834H26.7288C26.4474 4.00255 25.9061 3.69967 25.2251 3.69967C23.7966 3.69967 22.4877 4.95486 22.4877 6.56734C22.4877 8.1684 23.7966 9.41284 25.2251 9.41284C25.9068 9.41284 26.4474 9.10996 26.7288 8.76409H26.7718V9.1751C26.7718 10.2678 26.1875 10.8521 25.2466 10.8521C24.4783 10.8521 24.0021 10.3007 23.8074 9.83527L22.7147 10.2899C23.0283 11.0468 23.8611 11.9776 25.2466 11.9776C26.718 11.9776 27.9625 11.112 27.9625 9.00183V3.87361H26.7724V4.33834H26.7718ZM25.3332 8.28794C24.4676 8.28794 23.7429 7.56263 23.7429 6.56734C23.7429 5.56063 24.4676 4.82524 25.3332 4.82524C26.1875 4.82524 26.8584 5.56063 26.8584 6.56734C26.8584 7.56263 26.1875 8.28794 25.3332 8.28794ZM41.7072 0.844084H38.7045V9.23958H39.957V6.05895H41.7065C43.0953 6.05895 44.4613 5.05358 44.4613 3.45185C44.4613 1.85012 43.096 0.844084 41.7072 0.844084ZM41.7394 4.89039H39.957V2.01264H41.7394C42.6763 2.01264 43.2081 2.78832 43.2081 3.45185C43.2081 4.10195 42.6763 4.89039 41.7394 4.89039ZM49.4841 3.68489C48.5768 3.68489 47.6373 4.08449 47.2484 4.97031L48.3605 5.43437C48.5983 4.97031 49.0415 4.81853 49.5056 4.81853C50.1537 4.81853 50.8125 5.20738 50.8233 5.89844V5.98507C50.5963 5.85546 50.11 5.66137 49.5163 5.66137C48.3176 5.66137 47.0966 6.32019 47.0966 7.55121C47.0966 8.67477 48.0798 9.39807 49.1812 9.39807C50.0234 9.39807 50.4881 9.01997 50.7796 8.57672H50.8226V9.2248H52.0328V6.00589C52.0335 4.51632 50.92 3.68489 49.4841 3.68489ZM49.3323 8.28593C48.9227 8.28593 48.3498 8.08042 48.3498 7.5727C48.3498 6.92462 49.063 6.67613 49.6789 6.67613C50.2289 6.67613 50.4888 6.79501 50.8233 6.95686C50.7259 7.73523 50.0563 8.28593 49.3323 8.28593ZM56.4397 3.86823L55.0032 7.50823H54.9602L53.4693 3.86823H52.1194L54.3551 8.95549L53.0805 11.7856H54.3874L57.8333 3.86823H56.4397ZM45.1531 9.23958H46.4056V0.844084H45.1531V9.23958Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2gezm3\",\"data-framer-name\":\"Get it on\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:29,layoutDependency:layoutDependency,layoutId:\"I11345:16024;1303:2165\",svg:'<svg width=\"29\" height=\"7\" viewBox=\"-1 -1 29 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.18126 2.97098C4.18126 3.53377 4.01471 3.98171 3.68093 4.31616C3.30215 4.71374 2.80787 4.91253 2.20075 4.91253C1.61916 4.91253 1.1242 4.71106 0.717893 4.3081C0.310913 3.90448 0.107422 3.40482 0.107422 2.80845C0.107422 2.21141 0.310913 1.71175 0.717893 1.3088C1.1242 0.90518 1.61916 0.703705 2.20075 0.703705C2.48954 0.703705 2.76556 0.760118 3.02748 0.872272C3.29007 0.985099 3.50027 1.13486 3.65742 1.32223L3.3035 1.67683C3.03688 1.35783 2.66952 1.19866 2.20008 1.19866C1.77564 1.19866 1.40895 1.34776 1.09935 1.64594C0.789751 1.94412 0.635288 2.33163 0.635288 2.80778C0.635288 3.28394 0.789751 3.67144 1.09935 3.96962C1.40895 4.26781 1.77564 4.4169 2.20008 4.4169C2.65004 4.4169 3.02546 4.26714 3.32566 3.96694C3.52042 3.77151 3.63325 3.49952 3.66347 3.15096H2.20008V2.66675H4.15238C4.17253 2.77219 4.18126 2.8736 4.18126 2.97098Z\" fill=\"white\"/>\\n<path d=\"M7.27733 1.28802H5.44256V2.56538H7.09735V3.04959H5.44256V4.32695H7.27733V4.82258H4.92477V0.793063H7.27733V1.28802Z\" fill=\"white\"/>\\n<path d=\"M9.46058 4.82258H8.94279V1.28802H7.81721V0.793063H10.5862V1.28802H9.46058V4.82258Z\" fill=\"white\"/>\\n<path d=\"M12.5895 4.82258V0.793063H13.1073V4.82258H12.5895Z\" fill=\"white\"/>\\n<path d=\"M15.4035 4.82258H14.8857V1.28802H13.7602V0.793063H16.5291V1.28802H15.4035V4.82258Z\" fill=\"white\"/>\\n<path d=\"M21.7707 4.30209C21.3744 4.70907 20.8822 4.91256 20.2932 4.91256C19.7042 4.91256 19.2119 4.70907 18.8164 4.30209C18.4201 3.89511 18.2227 3.39679 18.2227 2.80781C18.2227 2.21883 18.4201 1.72052 18.8164 1.31354C19.2119 0.906555 19.7042 0.702393 20.2932 0.702393C20.8788 0.702393 21.3704 0.907226 21.768 1.31622C22.1656 1.72522 22.3644 2.22219 22.3644 2.80781C22.3644 3.39679 22.1662 3.89511 21.7707 4.30209ZM19.1985 3.96428C19.4967 4.2665 19.8614 4.41693 20.2932 4.41693C20.725 4.41693 21.0904 4.26583 21.3879 3.96428C21.6861 3.66207 21.8358 3.27658 21.8358 2.80781C21.8358 2.33905 21.6861 1.95356 21.3879 1.65134C21.0904 1.34913 20.725 1.19869 20.2932 1.19869C19.8614 1.19869 19.4967 1.3498 19.1985 1.65134C18.901 1.95356 18.7512 2.33905 18.7512 2.80781C18.7512 3.27658 18.901 3.66207 19.1985 3.96428Z\" fill=\"white\"/>\\n<path d=\"M23.091 4.82258V0.793063H23.721L25.6793 3.92735H25.7015L25.6793 3.151V0.793063H26.1971V4.82258H25.6565L23.6075 1.53584H23.5853L23.6075 2.31219V4.82258H23.091Z\" fill=\"white\"/>\\n<path d=\"M4.18126 2.97098C4.18126 3.53377 4.01471 3.98171 3.68093 4.31616C3.30215 4.71374 2.80787 4.91253 2.20075 4.91253C1.61916 4.91253 1.1242 4.71106 0.717893 4.3081C0.310913 3.90448 0.107422 3.40482 0.107422 2.80845C0.107422 2.21141 0.310913 1.71175 0.717893 1.3088C1.1242 0.90518 1.61916 0.703705 2.20075 0.703705C2.48954 0.703705 2.76556 0.760118 3.02748 0.872272C3.29007 0.985099 3.50027 1.13486 3.65742 1.32223L3.3035 1.67683C3.03688 1.35783 2.66952 1.19866 2.20008 1.19866C1.77564 1.19866 1.40895 1.34776 1.09935 1.64594C0.789751 1.94412 0.635288 2.33163 0.635288 2.80778C0.635288 3.28394 0.789751 3.67144 1.09935 3.96962C1.40895 4.26781 1.77564 4.4169 2.20008 4.4169C2.65004 4.4169 3.02546 4.26714 3.32566 3.96694C3.52042 3.77151 3.63325 3.49952 3.66347 3.15096H2.20008V2.66675H4.15238C4.17253 2.77219 4.18126 2.8736 4.18126 2.97098Z\" stroke=\"white\" stroke-width=\"0.134317\" stroke-miterlimit=\"10\"/>\\n<path d=\"M7.27733 1.28802H5.44256V2.56538H7.09735V3.04959H5.44256V4.32695H7.27733V4.82258H4.92477V0.793063H7.27733V1.28802Z\" stroke=\"white\" stroke-width=\"0.134317\" stroke-miterlimit=\"10\"/>\\n<path d=\"M9.46058 4.82258H8.94279V1.28802H7.81721V0.793063H10.5862V1.28802H9.46058V4.82258Z\" stroke=\"white\" stroke-width=\"0.134317\" stroke-miterlimit=\"10\"/>\\n<path d=\"M12.5895 4.82258V0.793063H13.1073V4.82258H12.5895Z\" stroke=\"white\" stroke-width=\"0.134317\" stroke-miterlimit=\"10\"/>\\n<path d=\"M15.4035 4.82258H14.8857V1.28802H13.7602V0.793063H16.5291V1.28802H15.4035V4.82258Z\" stroke=\"white\" stroke-width=\"0.134317\" stroke-miterlimit=\"10\"/>\\n<path d=\"M21.7707 4.30209C21.3744 4.70907 20.8822 4.91256 20.2932 4.91256C19.7042 4.91256 19.2119 4.70907 18.8164 4.30209C18.4201 3.89511 18.2227 3.39679 18.2227 2.80781C18.2227 2.21883 18.4201 1.72052 18.8164 1.31354C19.2119 0.906555 19.7042 0.702393 20.2932 0.702393C20.8788 0.702393 21.3704 0.907226 21.768 1.31622C22.1656 1.72522 22.3644 2.22219 22.3644 2.80781C22.3644 3.39679 22.1662 3.89511 21.7707 4.30209ZM19.1985 3.96428C19.4967 4.2665 19.8614 4.41693 20.2932 4.41693C20.725 4.41693 21.0904 4.26583 21.3879 3.96428C21.6861 3.66207 21.8358 3.27658 21.8358 2.80781C21.8358 2.33905 21.6861 1.95356 21.3879 1.65134C21.0904 1.34913 20.725 1.19869 20.2932 1.19869C19.8614 1.19869 19.4967 1.3498 19.1985 1.65134C18.901 1.95356 18.7512 2.33905 18.7512 2.80781C18.7512 3.27658 18.901 3.66207 19.1985 3.96428Z\" stroke=\"white\" stroke-width=\"0.134317\" stroke-miterlimit=\"10\"/>\\n<path d=\"M23.091 4.82258V0.793063H23.721L25.6793 3.92735H25.7015L25.6793 3.151V0.793063H26.1971V4.82258H25.6565L23.6075 1.53584H23.5853L23.6075 2.31219V4.82258H23.091Z\" stroke=\"white\" stroke-width=\"0.134317\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-188g7nc\",\"data-framer-name\":\"Google Play logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I11345:16024;1303:2166\",svg:'<svg width=\"16\" height=\"19\" viewBox=\"0 0 16 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.156845 1.4421C0.0775153 1.62175 0.0336914 1.84188 0.0336914 2.09794V16.9507C0.0336914 17.2073 0.0775642 17.4275 0.156978 17.607L8.2388 9.52406L0.156845 1.4421ZM0.623726 18.0901C0.92329 18.2182 1.31407 18.1776 1.74019 17.9359L11.2479 12.5332L8.71368 9.99894L0.623726 18.0901ZM11.854 12.1895L14.8368 10.4948C15.775 9.96087 15.775 9.08848 14.8368 8.55524L11.8526 6.85956L9.18853 9.52402L11.854 12.1895ZM11.247 6.51543L1.74019 1.1134C1.31406 0.871245 0.92327 0.830837 0.623701 0.959193L8.71365 9.04914L11.247 6.51543Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1979518\",layoutDependency:layoutDependency,layoutId:\"ufSS9POJY\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dv5oup\",\"data-border\":true,\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ScIdlCqVy\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(96, 94, 88)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-47gqf4\",\"data-styles-preset\":\"hYL4nZgKq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f4117ce-c853-4622-8e43-1f78c808a6ca, rgb(163, 163, 163)))\"},children:\"\\xa92024 Gogain. All rights reserved.\"})}),className:\"framer-1cm1qca\",\"data-framer-name\":\"Footer text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"guqaBoAHL\",style:{\"--extracted-r6o4lv\":\"var(--token-1f4117ce-c853-4622-8e43-1f78c808a6ca, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Jvq6GGG4X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-47gqf4\",\"data-styles-preset\":\"hYL4nZgKq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f4117ce-c853-4622-8e43-1f78c808a6ca, rgb(163, 163, 163)))\"},children:\"\\xa92024 Gogain. All rights reserved.\"})})},SXgRqk93Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-47gqf4\",\"data-styles-preset\":\"hYL4nZgKq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f4117ce-c853-4622-8e43-1f78c808a6ca, rgb(163, 163, 163)))\"},children:\"\\xa92024 Gogain. All rights reserved.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zo6wln\",\"data-framer-name\":\"Footer links\",layoutDependency:layoutDependency,layoutId:\"RdeXqLTod\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-47gqf4\",\"data-styles-preset\":\"hYL4nZgKq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f4117ce-c853-4622-8e43-1f78c808a6ca, rgb(163, 163, 163)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"S52c7JiRG\"},motionChild:true,nodeId:\"J5mpVUnoa\",openInNewTab:false,scopeId:\"eRecHhGQR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mrzbrk\",\"data-styles-preset\":\"C04lM2fYV\",children:\"CGU\"})})})}),className:\"framer-1o3b0qb\",\"data-framer-name\":\"Footer link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J5mpVUnoa\",style:{\"--extracted-r6o4lv\":\"var(--token-1f4117ce-c853-4622-8e43-1f78c808a6ca, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-47gqf4\",\"data-styles-preset\":\"hYL4nZgKq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f4117ce-c853-4622-8e43-1f78c808a6ca, rgb(163, 163, 163)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OACbEmmB_\"},motionChild:true,nodeId:\"CbSi3vB_S\",openInNewTab:false,scopeId:\"eRecHhGQR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mrzbrk\",\"data-styles-preset\":\"C04lM2fYV\",children:\"Politique de confidentialit\\xe9\"})})})}),className:\"framer-1b8druh\",\"data-framer-name\":\"Footer link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CbSi3vB_S\",style:{\"--extracted-r6o4lv\":\"var(--token-1f4117ce-c853-4622-8e43-1f78c808a6ca, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-47gqf4\",\"data-styles-preset\":\"hYL4nZgKq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f4117ce-c853-4622-8e43-1f78c808a6ca, rgb(163, 163, 163)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RAenDqmHk\"},motionChild:true,nodeId:\"cq8tv5tw4\",openInNewTab:false,scopeId:\"eRecHhGQR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mrzbrk\",\"data-styles-preset\":\"C04lM2fYV\",children:\"Cookies\"})})})}),className:\"framer-1vwqfvu\",\"data-framer-name\":\"Footer link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cq8tv5tw4\",style:{\"--extracted-r6o4lv\":\"var(--token-1f4117ce-c853-4622-8e43-1f78c808a6ca, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-47gqf4\",\"data-styles-preset\":\"hYL4nZgKq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f4117ce-c853-4622-8e43-1f78c808a6ca, rgb(163, 163, 163)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oPd33YY1u\"},motionChild:true,nodeId:\"SkBlwkUa9\",openInNewTab:false,scopeId:\"eRecHhGQR\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mrzbrk\",\"data-styles-preset\":\"C04lM2fYV\",children:\"Mentions l\\xe9gales\"})})})}),className:\"framer-1p1vknr\",\"data-framer-name\":\"Footer link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SkBlwkUa9\",style:{\"--extracted-r6o4lv\":\"var(--token-1f4117ce-c853-4622-8e43-1f78c808a6ca, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oyy7o5\",\"data-framer-name\":\"Social icons\",layoutDependency:layoutDependency,layoutId:\"lGeaisfTA\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/gogain.paris/\",motionChild:true,nodeId:\"RJVcVJqTq\",scopeId:\"eRecHhGQR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-qm0zpi framer-1clt0h\",\"data-framer-name\":\"Social icon\",layoutDependency:layoutDependency,layoutId:\"RJVcVJqTq\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-s0dxfr\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"I11345:16036;1422:1094\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 2.16387C15.2063 2.16387 15.5859 2.17793 16.8469 2.23418C18.0188 2.28574 18.6516 2.48262 19.0734 2.64668C19.6313 2.8623 20.0344 3.1248 20.4516 3.54199C20.8734 3.96387 21.1313 4.3623 21.3469 4.92012C21.5109 5.34199 21.7078 5.97949 21.7594 7.14668C21.8156 8.4123 21.8297 8.79199 21.8297 11.9936C21.8297 15.1998 21.8156 15.5795 21.7594 16.8404C21.7078 18.0123 21.5109 18.6451 21.3469 19.067C21.1313 19.6248 20.8687 20.0279 20.4516 20.4451C20.0297 20.867 19.6313 21.1248 19.0734 21.3404C18.6516 21.5045 18.0141 21.7014 16.8469 21.7529C15.5813 21.8092 15.2016 21.8232 12 21.8232C8.79375 21.8232 8.41406 21.8092 7.15313 21.7529C5.98125 21.7014 5.34844 21.5045 4.92656 21.3404C4.36875 21.1248 3.96563 20.8623 3.54844 20.4451C3.12656 20.0232 2.86875 19.6248 2.65313 19.067C2.48906 18.6451 2.29219 18.0076 2.24063 16.8404C2.18438 15.5748 2.17031 15.1951 2.17031 11.9936C2.17031 8.7873 2.18438 8.40762 2.24063 7.14668C2.29219 5.9748 2.48906 5.34199 2.65313 4.92012C2.86875 4.3623 3.13125 3.95918 3.54844 3.54199C3.97031 3.12012 4.36875 2.8623 4.92656 2.64668C5.34844 2.48262 5.98594 2.28574 7.15313 2.23418C8.41406 2.17793 8.79375 2.16387 12 2.16387ZM12 0.00292969C8.74219 0.00292969 8.33438 0.0169922 7.05469 0.0732422C5.77969 0.129492 4.90313 0.335742 4.14375 0.631055C3.35156 0.94043 2.68125 1.34824 2.01563 2.01855C1.34531 2.68418 0.9375 3.35449 0.628125 4.14199C0.332812 4.90605 0.126563 5.77793 0.0703125 7.05293C0.0140625 8.3373 0 8.74512 0 12.0029C0 15.2607 0.0140625 15.6686 0.0703125 16.9482C0.126563 18.2232 0.332812 19.0998 0.628125 19.8592C0.9375 20.6514 1.34531 21.3217 2.01563 21.9873C2.68125 22.6529 3.35156 23.0654 4.13906 23.3701C4.90313 23.6654 5.775 23.8717 7.05 23.9279C8.32969 23.9842 8.7375 23.9982 11.9953 23.9982C15.2531 23.9982 15.6609 23.9842 16.9406 23.9279C18.2156 23.8717 19.0922 23.6654 19.8516 23.3701C20.6391 23.0654 21.3094 22.6529 21.975 21.9873C22.6406 21.3217 23.0531 20.6514 23.3578 19.8639C23.6531 19.0998 23.8594 18.2279 23.9156 16.9529C23.9719 15.6732 23.9859 15.2654 23.9859 12.0076C23.9859 8.74981 23.9719 8.34199 23.9156 7.0623C23.8594 5.7873 23.6531 4.91074 23.3578 4.15137C23.0625 3.35449 22.6547 2.68418 21.9844 2.01855C21.3188 1.35293 20.6484 0.94043 19.8609 0.635742C19.0969 0.34043 18.225 0.13418 16.95 0.0779297C15.6656 0.0169922 15.2578 0.00292969 12 0.00292969Z\" fill=\"#F1F1F0\"/>\\n<path d=\"M12 5.83887C8.59688 5.83887 5.83594 8.5998 5.83594 12.0029C5.83594 15.4061 8.59688 18.167 12 18.167C15.4031 18.167 18.1641 15.4061 18.1641 12.0029C18.1641 8.5998 15.4031 5.83887 12 5.83887ZM12 16.0014C9.79219 16.0014 8.00156 14.2107 8.00156 12.0029C8.00156 9.79512 9.79219 8.00449 12 8.00449C14.2078 8.00449 15.9984 9.79512 15.9984 12.0029C15.9984 14.2107 14.2078 16.0014 12 16.0014Z\" fill=\"#F1F1F0\"/>\\n<path d=\"M19.8469 5.59507C19.8469 6.39195 19.2 7.03413 18.4078 7.03413C17.6109 7.03413 16.9688 6.38726 16.9688 5.59507C16.9688 4.79819 17.6156 4.15601 18.4078 4.15601C19.2 4.15601 19.8469 4.80288 19.8469 5.59507Z\" fill=\"#F1F1F0\"/>\\n</svg>\\n',withExternalLayout:true})})})})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Li66z.framer-1clt0h, .framer-Li66z .framer-1clt0h { display: block; }\",\".framer-Li66z.framer-1sexfz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 16px 10px 16px; position: relative; width: 1184px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Li66z .framer-18sjkwq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Li66z .framer-uxuoqf-container { flex: 1 0 0px; height: 640px; position: relative; width: 1px; }\",\".framer-Li66z .framer-88ojmk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: 640px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Li66z .framer-plb0lh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Li66z .framer-1oxqa4d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 646%; justify-content: center; left: calc(50.189393939393966% - 115.24621212121211% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(160.60606060606062% - 646.4646464646464% / 2); width: 115%; z-index: 0; }\",\".framer-Li66z .framer-14olp54, .framer-Li66z .framer-14dlx9z { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Li66z .framer-k9zbj9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 10%; justify-content: flex-start; overflow: hidden; padding: 15px 32px 15px 32px; position: relative; text-decoration: none; width: 66%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Li66z .framer-1gajjsk, .framer-Li66z .framer-1va8zi1, .framer-Li66z .framer-d0qi64, .framer-Li66z .framer-10mtva, .framer-Li66z .framer-1qf7r27, .framer-Li66z .framer-12qe6jz, .framer-Li66z .framer-1q6xsyd, .framer-Li66z .framer-1o3b0qb, .framer-Li66z .framer-1b8druh, .framer-Li66z .framer-1vwqfvu, .framer-Li66z .framer-1p1vknr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Li66z .framer-1m5521l-container, .framer-Li66z .framer-114y9q4-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-Li66z .framer-16z744d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 10%; justify-content: flex-start; overflow: hidden; padding: 12px 32px 12px 32px; position: relative; text-decoration: none; width: 66%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Li66z .framer-1g8jzl7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 80px 48px 80px; position: relative; width: 100%; }\",\".framer-Li66z .framer-c1prl1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Li66z .framer-3vu8g1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Li66z .framer-4ey3ye { flex: none; height: 143px; position: relative; text-decoration: none; width: 105px; }\",\".framer-Li66z .framer-1mc72r8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Li66z .framer-1eikap-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Li66z .framer-jdo7x4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Li66z .framer-1vy1uso { flex: none; height: 64px; overflow: visible; position: relative; width: 64px; }\",\".framer-Li66z .framer-tnk9ed { flex: none; height: 64px; left: 0px; position: absolute; top: 0px; width: 64px; }\",\".framer-Li66z .framer-7qxop1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: -160px; position: absolute; top: -2401px; width: 200px; }\",\".framer-Li66z .framer-fyeg2x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Li66z .framer-c4kn83 { flex: none; height: 27px; overflow: visible; position: relative; width: 91px; }\",\".framer-Li66z .framer-1usw4wx { bottom: 5px; flex: none; left: 23px; position: absolute; top: 12px; width: 51px; }\",\".framer-Li66z .framer-58s4fm { bottom: 18px; flex: none; left: 23px; position: absolute; top: 5px; width: 48px; }\",\".framer-Li66z .framer-1cwizvc { bottom: 7px; flex: none; left: 6px; position: absolute; top: 5px; width: 13px; }\",\".framer-Li66z .framer-miythb { flex: none; height: 27px; overflow: hidden; position: relative; width: 91px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Li66z .framer-d6a9u8 { bottom: 4px; flex: none; left: 27px; position: absolute; top: 11px; width: 58px; }\",\".framer-Li66z .framer-2gezm3 { bottom: 19px; flex: none; left: 26px; position: absolute; top: 3px; width: 29px; }\",\".framer-Li66z .framer-188g7nc { flex: none; height: 19px; left: 6px; position: absolute; top: 4px; width: 16px; }\",\".framer-Li66z .framer-1979518 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Li66z .framer-1dv5oup { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Li66z .framer-1cm1qca { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Li66z .framer-zo6wln { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Li66z .framer-1oyy7o5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Li66z .framer-qm0zpi { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; text-decoration: none; width: 24px; }\",\".framer-Li66z .framer-s0dxfr { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Li66z.framer-1sexfz, .framer-Li66z .framer-18sjkwq, .framer-Li66z .framer-88ojmk, .framer-Li66z .framer-plb0lh, .framer-Li66z .framer-1oxqa4d, .framer-Li66z .framer-k9zbj9, .framer-Li66z .framer-16z744d, .framer-Li66z .framer-1g8jzl7, .framer-Li66z .framer-c1prl1, .framer-Li66z .framer-3vu8g1, .framer-Li66z .framer-1mc72r8, .framer-Li66z .framer-jdo7x4, .framer-Li66z .framer-fyeg2x, .framer-Li66z .framer-1979518, .framer-Li66z .framer-1dv5oup, .framer-Li66z .framer-zo6wln, .framer-Li66z .framer-1oyy7o5 { gap: 0px; } .framer-Li66z.framer-1sexfz > *, .framer-Li66z .framer-1g8jzl7 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-Li66z.framer-1sexfz > :first-child, .framer-Li66z .framer-88ojmk > :first-child, .framer-Li66z .framer-plb0lh > :first-child, .framer-Li66z .framer-1oxqa4d > :first-child, .framer-Li66z .framer-1g8jzl7 > :first-child, .framer-Li66z .framer-1mc72r8 > :first-child, .framer-Li66z .framer-jdo7x4 > :first-child, .framer-Li66z .framer-1979518 > :first-child { margin-top: 0px; } .framer-Li66z.framer-1sexfz > :last-child, .framer-Li66z .framer-88ojmk > :last-child, .framer-Li66z .framer-plb0lh > :last-child, .framer-Li66z .framer-1oxqa4d > :last-child, .framer-Li66z .framer-1g8jzl7 > :last-child, .framer-Li66z .framer-1mc72r8 > :last-child, .framer-Li66z .framer-jdo7x4 > :last-child, .framer-Li66z .framer-1979518 > :last-child { margin-bottom: 0px; } .framer-Li66z .framer-18sjkwq > *, .framer-Li66z .framer-zo6wln > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Li66z .framer-18sjkwq > :first-child, .framer-Li66z .framer-k9zbj9 > :first-child, .framer-Li66z .framer-16z744d > :first-child, .framer-Li66z .framer-c1prl1 > :first-child, .framer-Li66z .framer-3vu8g1 > :first-child, .framer-Li66z .framer-fyeg2x > :first-child, .framer-Li66z .framer-1dv5oup > :first-child, .framer-Li66z .framer-zo6wln > :first-child, .framer-Li66z .framer-1oyy7o5 > :first-child { margin-left: 0px; } .framer-Li66z .framer-18sjkwq > :last-child, .framer-Li66z .framer-k9zbj9 > :last-child, .framer-Li66z .framer-16z744d > :last-child, .framer-Li66z .framer-c1prl1 > :last-child, .framer-Li66z .framer-3vu8g1 > :last-child, .framer-Li66z .framer-fyeg2x > :last-child, .framer-Li66z .framer-1dv5oup > :last-child, .framer-Li66z .framer-zo6wln > :last-child, .framer-Li66z .framer-1oyy7o5 > :last-child { margin-right: 0px; } .framer-Li66z .framer-88ojmk > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-Li66z .framer-plb0lh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Li66z .framer-1oxqa4d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Li66z .framer-k9zbj9 > *, .framer-Li66z .framer-16z744d > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-Li66z .framer-c1prl1 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-Li66z .framer-3vu8g1 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-Li66z .framer-1mc72r8 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Li66z .framer-jdo7x4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Li66z .framer-fyeg2x > * { margin: 0px; margin-left: calc(10.745369911193848px / 2); margin-right: calc(10.745369911193848px / 2); } .framer-Li66z .framer-1979518 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Li66z .framer-1dv5oup > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-Li66z .framer-1oyy7o5 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-Li66z.framer-v-42jf4j.framer-1sexfz, .framer-Li66z.framer-v-1v6axh3.framer-1sexfz { width: 358px; }\",\".framer-Li66z.framer-v-42jf4j .framer-18sjkwq, .framer-Li66z.framer-v-42jf4j .framer-c1prl1, .framer-Li66z.framer-v-42jf4j .framer-1dv5oup, .framer-Li66z.framer-v-1v6axh3 .framer-18sjkwq, .framer-Li66z.framer-v-1v6axh3 .framer-c1prl1, .framer-Li66z.framer-v-1v6axh3 .framer-1dv5oup { flex-direction: column; }\",\".framer-Li66z.framer-v-42jf4j .framer-uxuoqf-container, .framer-Li66z.framer-v-1v6axh3 .framer-uxuoqf-container { flex: none; height: auto; width: 100%; }\",\".framer-Li66z.framer-v-42jf4j .framer-88ojmk, .framer-Li66z.framer-v-42jf4j .framer-3vu8g1, .framer-Li66z.framer-v-42jf4j .framer-1cm1qca, .framer-Li66z.framer-v-1v6axh3 .framer-88ojmk, .framer-Li66z.framer-v-1v6axh3 .framer-3vu8g1, .framer-Li66z.framer-v-1v6axh3 .framer-1cm1qca { flex: none; width: 100%; }\",\".framer-Li66z.framer-v-42jf4j .framer-1oxqa4d { height: 508%; left: calc(50.00000000000002% - 132.52032520325204% / 2); top: calc(137.30158730158732% - 507.9365079365079% / 2); width: 133%; }\",\".framer-Li66z.framer-v-42jf4j .framer-k9zbj9 { width: 116%; }\",\".framer-Li66z.framer-v-42jf4j .framer-16z744d { gap: 2px; height: 10%; padding: 10px; width: 117%; }\",\".framer-Li66z.framer-v-42jf4j .framer-1g8jzl7, .framer-Li66z.framer-v-1v6axh3 .framer-1g8jzl7 { padding: 0px 16px 48px 16px; }\",\".framer-Li66z.framer-v-42jf4j .framer-1oyy7o5, .framer-Li66z.framer-v-1v6axh3 .framer-1oyy7o5 { flex: none; justify-content: center; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Li66z.framer-v-42jf4j .framer-18sjkwq, .framer-Li66z.framer-v-42jf4j .framer-16z744d, .framer-Li66z.framer-v-42jf4j .framer-c1prl1, .framer-Li66z.framer-v-42jf4j .framer-1dv5oup { gap: 0px; } .framer-Li66z.framer-v-42jf4j .framer-18sjkwq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Li66z.framer-v-42jf4j .framer-18sjkwq > :first-child, .framer-Li66z.framer-v-42jf4j .framer-c1prl1 > :first-child, .framer-Li66z.framer-v-42jf4j .framer-1dv5oup > :first-child { margin-top: 0px; } .framer-Li66z.framer-v-42jf4j .framer-18sjkwq > :last-child, .framer-Li66z.framer-v-42jf4j .framer-c1prl1 > :last-child, .framer-Li66z.framer-v-42jf4j .framer-1dv5oup > :last-child { margin-bottom: 0px; } .framer-Li66z.framer-v-42jf4j .framer-16z744d > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-Li66z.framer-v-42jf4j .framer-16z744d > :first-child { margin-left: 0px; } .framer-Li66z.framer-v-42jf4j .framer-16z744d > :last-child { margin-right: 0px; } .framer-Li66z.framer-v-42jf4j .framer-c1prl1 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Li66z.framer-v-42jf4j .framer-1dv5oup > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-Li66z.framer-v-dt33eu .framer-plb0lh, .framer-Li66z.framer-v-dt33eu .framer-d0qi64, .framer-Li66z.framer-v-dt33eu .framer-1vy1uso { order: 0; }\",\".framer-Li66z.framer-v-dt33eu .framer-1oxqa4d { align-content: flex-start; align-items: flex-start; flex-direction: row; gap: 0px; height: 663%; left: calc(50.00000000000002% - 121.21212121212122% / 2); top: calc(141.41414141414143% - 662.6262626262626% / 2); width: 121%; }\",\".framer-Li66z.framer-v-dt33eu .framer-k9zbj9 { height: 8%; order: 1; width: 53%; }\",\".framer-Li66z.framer-v-dt33eu .framer-1gajjsk { white-space: pre-wrap; width: 214px; word-break: break-word; word-wrap: break-word; }\",\".framer-Li66z.framer-v-dt33eu .framer-16z744d { align-content: flex-start; align-items: flex-start; gap: 0px; height: 8%; order: 2; padding: 7px 32px 15px 15px; width: 53%; }\",\".framer-Li66z.framer-v-dt33eu .framer-1va8zi1 { height: 40px; order: 0; white-space: pre-wrap; width: 255px; word-break: break-word; word-wrap: break-word; }\",\".framer-Li66z.framer-v-dt33eu .framer-10mtva, .framer-Li66z.framer-v-dt33eu .framer-1q6xsyd { order: 1; }\",\".framer-Li66z.framer-v-dt33eu .framer-1qf7r27, .framer-Li66z.framer-v-dt33eu .framer-fyeg2x { order: 2; }\",\".framer-Li66z.framer-v-dt33eu .framer-12qe6jz { order: 3; }\",\".framer-Li66z.framer-v-dt33eu .framer-1eikap-container { order: 4; }\",\".framer-Li66z.framer-v-dt33eu .framer-c4kn83, .framer-Li66z.framer-v-dt33eu .framer-miythb { text-decoration: none; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Li66z.framer-v-dt33eu .framer-1oxqa4d, .framer-Li66z.framer-v-dt33eu .framer-16z744d { gap: 0px; } .framer-Li66z.framer-v-dt33eu .framer-1oxqa4d > *, .framer-Li66z.framer-v-dt33eu .framer-16z744d > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Li66z.framer-v-dt33eu .framer-1oxqa4d > :first-child, .framer-Li66z.framer-v-dt33eu .framer-16z744d > :first-child { margin-left: 0px; } .framer-Li66z.framer-v-dt33eu .framer-1oxqa4d > :last-child, .framer-Li66z.framer-v-dt33eu .framer-16z744d > :last-child { margin-right: 0px; } }\",\".framer-Li66z.framer-v-1v6axh3 .framer-1oxqa4d { height: 647%; left: calc(52.03252032520328% - 136.9918699186992% / 2); top: calc(160.31746031746036% - 646.8253968253969% / 2); width: 137%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Li66z.framer-v-1v6axh3 .framer-18sjkwq, .framer-Li66z.framer-v-1v6axh3 .framer-c1prl1, .framer-Li66z.framer-v-1v6axh3 .framer-1dv5oup { gap: 0px; } .framer-Li66z.framer-v-1v6axh3 .framer-18sjkwq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Li66z.framer-v-1v6axh3 .framer-18sjkwq > :first-child, .framer-Li66z.framer-v-1v6axh3 .framer-c1prl1 > :first-child, .framer-Li66z.framer-v-1v6axh3 .framer-1dv5oup > :first-child { margin-top: 0px; } .framer-Li66z.framer-v-1v6axh3 .framer-18sjkwq > :last-child, .framer-Li66z.framer-v-1v6axh3 .framer-c1prl1 > :last-child, .framer-Li66z.framer-v-1v6axh3 .framer-1dv5oup > :last-child { margin-bottom: 0px; } .framer-Li66z.framer-v-1v6axh3 .framer-c1prl1 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Li66z.framer-v-1v6axh3 .framer-1dv5oup > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-Li66z[data-border=\"true\"]::after, .framer-Li66z [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1042\n * @framerIntrinsicWidth 1184\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Jvq6GGG4X\":{\"layout\":[\"fixed\",\"auto\"]},\"LyttyvOF8\":{\"layout\":[\"fixed\",\"auto\"]},\"SXgRqk93Q\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereRecHhGQR=withCSS(Component,css,\"framer-Li66z\");export default FramereRecHhGQR;FramereRecHhGQR.displayName=\"Footer\";FramereRecHhGQR.defaultProps={height:1042,width:1184};addPropertyControls(FramereRecHhGQR,{variant:{options:[\"v9wJQr99P\",\"Jvq6GGG4X\",\"LyttyvOF8\",\"SXgRqk93Q\"],optionTitles:[\"Desktop_Entreprises\",\"Phone_Entreprises\",\"Desktop_Particuliers\",\"Phone_Particuliers\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramereRecHhGQR,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"}]},...Card_CTAFonts,...PhosphorFonts,...CookieBannerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereRecHhGQR\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1042\",\"framerIntrinsicWidth\":\"1184\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Jvq6GGG4X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LyttyvOF8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SXgRqk93Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eRecHhGQR.map"],
  "mappings": "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",
  "names": ["DEFAULT_DOMAIN", "DEFAULT_SCRIPT_NAME", "getDataLayerSnippet", "dataLayer", "dataLayerName", "getGTMScript", "id", "environment", "customDomain", "customScriptName", "params", "gtm_auth", "gtm_preview", "setupGTM", "dataLayerScript", "script", "initGTM", "nonce", "gtm", "sendToGTM", "isBrowser", "window", "DEFAULT_FONT_FAMILY", "getFlexboxValues", "position", "positionParts", "justifyContent", "alignItems", "getMultipleShadows", "shadows", "output", "shadow", "getShadow", "safeJSONParse", "jsonString", "onError", "yieldToMain", "options", "window", "resolve", "yieldBeforeCb", "fn", "interactionResponse", "toGTMConsent", "consent", "reducer", "state", "action", "initialState", "defaultConsent", "hasInitializedGTM", "useConsent", "gtmId", "gtmLoadedExternally", "dispatch", "le", "isOnFramerCanvas", "useIsOnFramerCanvas", "consentModeLocalStorageKey", "dismissedLocalStorageKey", "autoAcceptedLocalStorageKey", "getStateFromLocalStorage", "consentFromLocalStorage", "dismissedFromLocalStorage", "autoAcceptedFromLocalStorage", "isDismissed", "isAutoAccepted", "safeJSONParse", "syncToGTM", "sendToGTM", "initGTM", "window", "ue", "yieldBeforeCb", "isBrowser", "dismiss", "autoAccept", "acceptAll", "rejectAll", "acceptCurrent", "toggleMode", "mode", "countries", "isInEUTimezone", "isEULocale", "locale", "navigator", "country", "_inEU", "inEU", "useRegion", "content", "useRegionFromProps", "skipEUCheck", "regionBasedOnLocation", "isBrowser", "inEU", "regionFromProps", "SPACING", "Toggle", "K", "Banner", "withCSS", "banner", "button", "region", "options", "previewOptions", "consentModes", "onDismiss", "onAcceptAll", "onRejectAll", "onAcceptCurrent", "onToggleConsent", "animateOnMount", "maxHeightReduction", "linkColor", "paddingValue", "bannerShadow", "getShadow", "borderShadow", "bannerStyle", "getMultipleShadows", "p", "motion", "DEFAULT_FONT_FAMILY", "SimpleBanner", "AcceptRejectBanner", "OptionsBanner", "description", "policy", "padding", "u", "Description", "Button", "title", "onAccept", "onReject", "Headline", "Buttons", "showReject", "consent", "onOptionToggle", "showOptions", "setShowOptions", "ye", "optionTheme", "optionNames", "shouldShowOptions", "AnimatePresence", "option", "Option", "l", "titleColor", "descriptionColor", "showDescription", "enabled", "optional", "onClick", "theme", "L", "children", "style", "DescriptionParagraph", "descriptionParagraphs", "line", "index", "direction", "id", "primary", "settings", "initiallyOpen", "CookieBanner", "gtmId", "preview", "trigger", "banner", "button", "content", "options", "style", "gtmLoadedExternally", "onShown", "onConsentChange", "onAccept", "onDismiss", "onReject", "onSavePreferences", "isOnFramerCanvas", "useIsOnFramerCanvas", "isPreview", "skipLogic", "isInEU", "isBrowser", "inEU", "region", "useRegion", "consent", "useConsent", "isOpen", "setIsOpen", "ye", "instantlyShowOnMount", "setInstantlyShowOnMount", "ue", "yieldBeforeCb", "noConsentGiven", "shouldAutoAccept", "handleDismiss", "interactionResponse", "handleAcceptAll", "handleRejectAll", "handleAcceptCurrent", "p", "Banner", "defaultConsent", "u", "l", "Trigger", "Overlay", "IconCookie", "K", "props", "insetValue", "justifyContent", "alignItems", "getFlexboxValues", "shouldRenderPortal", "setShouldRenderPortal", "blocking", "Ga", "AnimatePresence", "motion", "Backdrop", "withCSS", "onClick", "L", "DEFAULT_FONT_FAMILY", "color", "addPropertyControls", "ControlType", "_", "Card_CTAFonts", "getFonts", "sU1Vu3EOY_default", "PhosphorFonts", "Icon", "CookieBannerFonts", "CookieBanner", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "RichText2", "Link", "SVG", "css", "FramereRecHhGQR", "withCSS", "eRecHhGQR_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
