{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js", "ssg:https://framerusercontent.com/modules/SJUtWKrLg3JLktz1wNuK/nvTO0FeW9OQkgoS26rVC/x1C4NroI4.js", "ssg:https://framerusercontent.com/modules/ryDWEhpwscLm5GOlHKh2/E6U5I1hen59wE9WmYT46/x1C4NroI4.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{startTransition,useCallback,useEffect,useRef,useState}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}const defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const mergedProps={...defaultProps,...props};const{outputType,timeFormat,showYear,showMonth,showWeekday,// showHours,\nshowMinutes,showSeconds,monthFormat,color,font,tabularFont}=mergedProps;const localCode=useLocaleCode();const getTextContent=useCallback(()=>formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,// showHours,\n    showMinutes,showSeconds},timeFormat,monthFormat,localCode),[localCode,monthFormat,outputType,showMinutes,showMonth,showSeconds,showWeekday,showYear,timeFormat]);const timeoutRef=useRef()// FIXME: With React 19, we can remove this and return a cleanup from the ref callback\n;const updateCountdown=useCallback(node=>{if(node===null){// React calls w/ `null` on unmount or if the ref function changes.\nclearTimeout(timeoutRef.current);return;}let prev;const tick=()=>{const date=new Date;const next=new Date().setSeconds(date.getSeconds()+1,0)-+date;timeoutRef.current=setTimeout(tick,next);const textContent=getTextContent();if(prev!==textContent){node.textContent=textContent;prev=textContent;}};tick();},[getTextContent]);const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;useEffect(()=>{startTransition(()=>setIsVisible(true));// Don\u2019t want real time on Canvas\nif(isCanvas)return;},[isCanvas]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},ref:isCanvas?undefined:updateCountdown,children:getTextContent()});}Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (47ebf4a)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={V2qdwYCVW:new LazyValue(()=>import(\"./x1C4NroI4-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js\";import Navigation from\"#framer/local/canvasComponent/hEjOHBcb7/hEjOHBcb7.js\";import NewFooter from\"#framer/local/canvasComponent/UjBhxbQp9/UjBhxbQp9.js\";import Clients from\"#framer/local/canvasComponent/WMYakl_JK/WMYakl_JK.js\";import Programs from\"#framer/local/collection/fz25mphHA/fz25mphHA.js\";import News from\"#framer/local/collection/lZSu4Zwy8/lZSu4Zwy8.js\";import*as sharedStyle2 from\"#framer/local/css/JX00CT5zf/JX00CT5zf.js\";import*as sharedStyle1 from\"#framer/local/css/lhwmegoFe/lhwmegoFe.js\";import*as sharedStyle from\"#framer/local/css/TbBXVG7X4/TbBXVG7X4.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/x1C4NroI4/x1C4NroI4.js\";import metadataProvider from\"#framer/local/webPageMetadata/x1C4NroI4/x1C4NroI4.js\";const NavigationFonts=getFonts(Navigation);const YouTubeFonts=getFonts(YouTube);const MotionDivWithFX=withFX(motion.div);const ClientsFonts=getFonts(Clients);const TimeDateFonts=getFonts(TimeDate);const NewFooterFonts=getFonts(NewFooter);const breakpoints={I9C4jjxtd:\"(max-width: 719px)\",OyIDvrDru:\"(min-width: 720px) and (max-width: 1279px)\",zRTlOXS20:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-5arLe\";const variantClassNames={I9C4jjxtd:\"framer-v-nmbwyx\",OyIDvrDru:\"framer-v-3dv9bd\",zRTlOXS20:\"framer-v-1fdantb\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={delay:0,duration:.45,ease:[0,.42,.28,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,y:-3};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={backgroundColor:\"rgba(255, 255, 255, 0.15)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition3={delay:0,duration:5,ease:[.03,.55,.67,.98],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:9,skewX:0,skewY:0,x:0,y:0};const transition4={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:9,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-11,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:7,y:0};const animation6={backgroundColor:\"rgb(33, 33, 33)\",boxShadow:\"0px 0px 0px 0px rgba(0,0,0,0.25)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:1};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"zRTlOXS20\",Phone:\"I9C4jjxtd\",Tablet:\"OyIDvrDru\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"zRTlOXS20\"};};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,dwgk1B8WihkRrzvP8d,waxTS47xHhkRrzvP8d,vzApNILN9hkRrzvP8d,C9DfdNk47hkRrzvP8d,d_YsN7LOwhkRrzvP8d,idhkRrzvP8d,UxkyV8fVZJ1QAl_i5x,vVX6KkJgwJ1QAl_i5x,wU6CGXI_KJ1QAl_i5x,WV1DTF2YKJ1QAl_i5x,idJ1QAl_i5x,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"MFnjpNiHV\");const ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const elementId1=useRouteElementId(\"STaFvNI1z\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"A4iSYcms2\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"zRTlOXS20\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(25, 25, 25); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1fdantb\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7uoiho-container\",layoutScroll:true,nodeId:\"mpw39ybBK\",scopeId:\"x1C4NroI4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9C4jjxtd:{variant:\"FK3Ur_240\"},OyIDvrDru:{variant:\"FK3Ur_240\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"mpw39ybBK\",KPLatyjyN:\"var(--token-695c63dc-9973-43bd-9196-b4d5e9ec3c28, rgb(25, 25, 25))\",layoutId:\"mpw39ybBK\",oeFOTH1vb:{borderBottomWidth:1,borderColor:\"rgba(0, 0, 0, 0.3)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},style:{width:\"100%\"},variant:\"mJL9Sa3G9\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1xqthz4\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cry43x\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9C4jjxtd:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlY2ltYWwgRXh0cmEgQmxhY2sgQmxhY2s=\",\"--framer-font-family\":'\"Decimal Extra Black Black\", \"Decimal Extra Black Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(234, 234, 234)\",\"--framer-text-transform\":\"uppercase\"},children:\"maitrisez l'ia\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlY2ltYWwgRXh0cmEgQmxhY2sgQmxhY2s=\",\"--framer-font-family\":'\"Decimal Extra Black Black\", \"Decimal Extra Black Black Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(234, 234, 234)\",\"--framer-text-transform\":\"uppercase\"},children:\"maitrisez l'ia\"})}),className:\"framer-1a2f0cl\",\"data-framer-name\":\"BECOME AI READY\",fonts:[\"CUSTOM;Decimal Extra Black Black\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-30429be7-3c24-4eeb-b31c-3efe6733d4b3, rgb(148, 148, 148))\"},children:\"Les bootcamps en ligne concrets pour appliquer l'IA et gagner en productivit\\xe9\"})}),className:\"framer-1vfy9id\",\"data-framer-name\":\"Title\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wvfkhb\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7uo37l\",\"data-framer-name\":\"Laurels\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zvhoa0\",\"data-framer-name\":\"Laurel-left\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:67,intrinsicWidth:30,svg:'<svg width=\"30\" height=\"67\" viewBox=\"0 0 30 67\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.4\">\\n<path d=\"M29.6819 65.7923C29.6819 65.7923 29.3809 61.7329 26.7088 56.8119C24.0363 51.8884 19.4678 49.5703 19.4678 49.5703C19.4678 49.5703 19.9763 54.0124 22.8224 59.2552C25.6685 64.4963 29.6819 65.7927 29.6819 65.7927V65.7923Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M26.6762 65.2119C26.6762 65.2119 23.5061 62.7458 18.1363 61.4506C12.7665 60.1543 8.05078 61.9727 8.05078 61.9727C8.05078 61.9727 11.6397 64.5402 17.3589 65.9205C23.0762 67.3001 26.6765 65.2119 26.6765 65.2119L26.6762 65.2119Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M22.1705 60.9544C22.1705 60.9544 20.1611 57.4589 15.6261 54.1886C11.0911 50.9184 5.94824 50.7695 5.94824 50.7695C5.94824 50.7695 8.31177 54.5208 13.1396 58.004C17.9684 61.4864 22.1706 60.9545 22.1706 60.9545L22.1705 60.9544Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M17.2658 53.7749C17.2658 53.7749 18.5439 50.1589 18.2096 44.8596C17.8763 39.5595 15.0202 35.75 15.0202 35.75C15.0202 35.75 13.7678 39.7787 14.123 45.4241C14.4792 51.0662 17.2657 53.7745 17.2657 53.7745L17.2658 53.7749Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M13.4589 50.1671C13.4589 50.1671 12.0668 46.9823 8.49603 43.7646C4.92414 40.5459 0.541016 39.9531 0.541016 39.9531C0.541016 39.9531 2.21075 43.3891 6.01427 46.816C9.8164 50.2425 13.4589 50.1671 13.4589 50.1671V50.1671Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M11.3559 43.2601C11.3559 43.2601 11.185 39.7753 8.99871 35.5006C6.81236 31.2259 2.94434 29.1406 2.94434 29.1406C2.94434 29.1406 3.28596 32.9574 5.61402 37.5099C7.94203 42.0635 11.356 43.2601 11.356 43.2601H11.3559Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M9.83168 32.7433C9.83168 32.7433 10.1245 29.2911 8.57136 24.7915C7.01721 20.2912 3.55 17.7227 3.55 17.7227C3.55 17.7227 3.37828 21.5254 5.03199 26.3165C6.68601 31.1102 9.83168 32.7434 9.83168 32.7434V32.7433Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M11.3309 25.8357C11.3309 25.8357 12.898 22.7729 13.1402 18.0389C13.3824 13.3045 11.1183 9.61328 11.1183 9.61328C11.1183 9.61328 9.53162 13.0436 9.27307 18.0854C9.0145 23.1274 11.3309 25.8357 11.3309 25.8357Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M15.1756 17.7224C15.1756 17.7224 17.228 14.9254 18.2383 10.242C19.2476 5.5582 17.602 1.5 17.602 1.5C17.602 1.5 15.4697 4.66157 14.3945 9.64973C13.3196 14.6375 15.1756 17.7223 15.1756 17.7223L15.1756 17.7224Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M11.4205 38.754C11.4205 38.754 14.0672 36.3977 16.0449 31.9506C18.0226 27.5034 17.1907 23.1328 17.1907 23.1328C17.1907 23.1328 14.3894 25.837 12.2834 30.5716C10.1763 35.3072 11.4204 38.7544 11.4204 38.7544L11.4205 38.754Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M14.3594 23.1299C14.3594 23.1299 17.669 22.04 21.219 18.7565C24.768 15.4729 25.7751 11.1133 25.7751 11.1133C25.7751 11.1133 22.1887 12.4588 18.4094 15.9559C14.6281 19.4525 14.3594 23.1299 14.3594 23.1299V23.1299Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M19.4711 13.5186C19.4711 13.5186 22.5772 11.9704 25.6251 8.21783C28.6736 4.46283 29.0811 0 29.0811 0C29.0811 0 25.7382 1.83821 22.4911 5.83727C19.2461 9.83491 19.4711 13.5187 19.4711 13.5187V13.5186Z\" fill=\"#D2D9DF\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-30429be7-3c24-4eeb-b31c-3efe6733d4b3, rgb(148, 148, 148))\"},children:\"Note moyenne de 9.3/10\"})}),className:\"framer-1iqger7\",\"data-framer-name\":\"Vot\\xe9es meilleures formations \\u2028concr\\xe8tes IA en 2024\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9y5qam\",\"data-framer-name\":\"laurel-right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:67,intrinsicWidth:30,svg:'<svg width=\"30\" height=\"67\" viewBox=\"0 0 30 67\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.4\">\\n<path d=\"M0.681641 65.7923C0.681641 65.7923 0.973813 61.7329 3.56663 56.8119C6.16075 51.8884 10.5953 49.5703 10.5953 49.5703C10.5953 49.5703 10.1018 54.0124 7.34103 59.2552C4.57731 64.4963 0.681729 65.7927 0.681729 65.7927L0.681641 65.7923Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M3.38608 65.2119C3.38608 65.2119 6.55515 62.7458 11.9259 61.4506C17.2958 60.1543 22.0115 61.9727 22.0115 61.9727C22.0115 61.9727 18.4226 64.5402 12.7042 65.9205C6.98592 67.3001 3.38574 65.2119 3.38574 65.2119L3.38608 65.2119Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M8.19158 60.9544C8.19158 60.9544 10.1646 57.4589 14.6144 54.1886C19.0662 50.9184 24.1134 50.7695 24.1134 50.7695C24.1134 50.7695 21.7951 54.5208 17.0556 58.004C12.3168 61.4864 8.19141 60.9545 8.19141 60.9545L8.19158 60.9544Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M12.8686 53.7749C12.8686 53.7749 11.4992 50.1589 11.8563 44.8596C12.2144 39.5595 15.2746 35.75 15.2746 35.75C15.2746 35.75 16.6164 39.7787 16.2348 45.4241C15.8546 51.0662 12.8686 53.7745 12.8686 53.7745V53.7749Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M16.6035 50.1671C16.6035 50.1671 17.9954 46.9823 21.5658 43.7646C25.1373 40.5459 29.5214 39.9531 29.5214 39.9531C29.5214 39.9531 27.8497 43.3891 24.0476 46.816C20.2442 50.2425 16.6035 50.1671 16.6035 50.1671V50.1671Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M18.7061 43.2601C18.7061 43.2601 18.8758 39.7753 21.0632 35.5006C23.2506 31.2258 27.1177 29.1406 27.1177 29.1406C27.1177 29.1406 26.7771 32.9574 24.449 37.5099C22.121 42.0635 18.7061 43.2601 18.7061 43.2601V43.2601Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M20.2322 32.7433C20.2322 32.7433 19.9243 29.2911 21.5516 24.7915C23.1789 20.2912 26.8127 17.7227 26.8127 17.7227C26.8127 17.7227 26.9937 21.5254 25.2589 26.3165C23.5272 31.1102 20.2321 32.7434 20.2321 32.7434L20.2322 32.7433Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M18.8732 25.8357C18.8732 25.8357 17.1859 22.7729 16.9237 18.0389C16.6639 13.3045 19.1007 9.61328 19.1007 9.61328C19.1007 9.61328 20.8101 13.0436 21.0885 18.0854C21.3662 23.1274 18.8732 25.8357 18.8732 25.8357Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M14.8863 17.7224C14.8863 17.7224 12.8338 14.9254 11.8248 10.242C10.8154 5.5582 12.4598 1.5 12.4598 1.5C12.4598 1.5 14.5913 4.66157 15.6675 9.64973C16.7445 14.6375 14.8863 17.7223 14.8863 17.7223V17.7224Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M18.6431 38.754C18.6431 38.754 15.9949 36.3977 14.0175 31.9506C12.0401 27.5034 12.8719 23.1328 12.8719 23.1328C12.8719 23.1328 15.6726 25.837 17.7793 30.5716C19.8853 35.3072 18.6431 38.7544 18.6431 38.7544L18.6431 38.754Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M15.7029 23.1299C15.7029 23.1299 12.3932 22.04 8.84427 18.7565C5.29289 15.4729 4.28711 11.1133 4.28711 11.1133C4.28711 11.1133 7.87254 12.4588 11.6538 15.9559C15.4334 19.4525 15.7029 23.1299 15.7029 23.1299Z\" fill=\"#D2D9DF\"/>\\n<path d=\"M10.8925 13.5186C10.8925 13.5186 7.69037 11.9704 4.54738 8.21783C1.40369 4.46283 0.982422 0 0.982422 0C0.982422 0 4.43168 1.83821 7.7792 5.83727C11.127 9.83491 10.8926 13.5187 10.8926 13.5187L10.8925 13.5186Z\" fill=\"#D2D9DF\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h213u2\",\"data-framer-name\":\"Programmes\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-o39ff9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"hkRrzvP8d\",data:Programs,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"hkRrzvP8d\",name:\"dwgk1B8Wi\",type:\"Identifier\"},{collection:\"hkRrzvP8d\",name:\"waxTS47xH\",type:\"Identifier\"},{collection:\"hkRrzvP8d\",name:\"vzApNILN9\",type:\"Identifier\"},{collection:\"hkRrzvP8d\",name:\"C9DfdNk47\",type:\"Identifier\"},{collection:\"hkRrzvP8d\",name:\"d_YsN7LOw\",type:\"Identifier\"},{collection:\"hkRrzvP8d\",name:\"id\",type:\"Identifier\"}],where:{collection:\"hkRrzvP8d\",name:\"QXNO05Tc3\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({C9DfdNk47:C9DfdNk47hkRrzvP8d,d_YsN7LOw:d_YsN7LOwhkRrzvP8d,dwgk1B8Wi:dwgk1B8WihkRrzvP8d,id:idhkRrzvP8d,vzApNILN9:vzApNILN9hkRrzvP8d,waxTS47xH:waxTS47xHhkRrzvP8d},index)=>{dwgk1B8WihkRrzvP8d??=\"\";vzApNILN9hkRrzvP8d??=\"#09F\";C9DfdNk47hkRrzvP8d??=\"\";d_YsN7LOwhkRrzvP8d??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`hkRrzvP8d-${idhkRrzvP8d}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{dwgk1B8Wi:dwgk1B8WihkRrzvP8d},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{dwgk1B8Wi:dwgk1B8WihkRrzvP8d},webPageId:\"MAo8beTSd\"},motionChild:true,nodeId:\"CI7GWkPo4\",openInNewTab:false,scopeId:\"x1C4NroI4\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-eob5l5 framer-9r3qgo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9C4jjxtd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+0+30+157.4+0+81+0+0+0+0+0),pixelHeight:674,pixelWidth:479,sizes:`max(${componentViewport?.width||\"100vw\"} * 0.95, 1px)`,...toResponsiveImage(waxTS47xHhkRrzvP8d)}},OyIDvrDru:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+0+30+170.12+0+81+0+0+0+0),pixelHeight:674,pixelWidth:479,sizes:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,...toResponsiveImage(waxTS47xHhkRrzvP8d)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+0+30+170.12+0+81+0+0+0+0),pixelHeight:674,pixelWidth:479,sizes:\"900px\",...toResponsiveImage(waxTS47xHhkRrzvP8d)},className:\"framer-whwxap\",\"data-framer-name\":\"Program card small\",whileHover:animation,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ly0cco\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ohlu3f\",\"data-framer-name\":\"Program badge\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-b7d207\",\"data-framer-name\":\"Program color\",style:{\"--1vpg0b1\":vzApNILN9hkRrzvP8d}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"IA pour Marketeurs\"})}),className:\"framer-ajhefn\",\"data-framer-name\":\"AI for Marketers\",fonts:[\"GF;Lato-regular\"],text:C9DfdNk47hkRrzvP8d,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19e19k4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e425q7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr3wh\",\"data-styles-preset\":\"TbBXVG7X4\",style:{\"--framer-text-color\":\"var(--token-55a2660b-40fa-428e-9833-b0b2e8ad0532, rgb(255, 255, 255))\"},children:\"Lancez vos campagnes plus vite\"})}),className:\"framer-8092no\",\"data-framer-name\":\"IA pour Marketers\",fonts:[\"Inter\"],text:d_YsN7LOwhkRrzvP8d,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gjy53b\",\"data-border\":true,\"data-framer-name\":\"Primary Button\",whileHover:animation1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\",\"--framer-text-transform\":\"inherit\"},children:\"D\\xe9couvrir\"})}),className:\"framer-15xjhag\",\"data-framer-name\":\"Button CTA\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})})})},idhkRrzvP8d);})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-it6v0j\",\"data-border\":true,\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wjr4kn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11po2sv-container\",isModuleExternal:true,nodeId:\"u9F2aQafI\",scopeId:\"x1C4NroI4\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,height:\"100%\",id:\"u9F2aQafI\",isMixedBorderRadius:false,isRed:true,layoutId:\"u9F2aQafI\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:10,topRightRadius:10,url:getLocalizedValue(\"v7\",activeLocale)??\"https://youtu.be/pu5qH9FImxs\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jlz4k1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o5kael\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f99hms\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:.7,className:\"framer-1st23nz\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h8jwo8\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(168, 168, 168)\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"rgb(222, 222, 222)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Bootcamp \"}),\": \"]}),\"Side School met l\u2019accent sur le travail et la pratique, plut\\xf4t que sur la th\\xe9orie\"]})}),className:\"framer-lig3m\",fonts:[\"GF;Lato-regular\",\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4e3u9t\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15xsgj1\",\"data-framer-name\":\"Logo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r6eurg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19jib8b\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:3,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xonyxv\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gruy74\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lm0196\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(168, 168, 168)\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"rgb(222, 222, 222)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"On the side \"}),\": \"]}),\"Nos formations \\xe0 l'IA s'adaptent aux agendas charg\\xe9s des professionnels\"]})}),className:\"framer-1m6fr8d\",fonts:[\"GF;Lato-regular\",\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6dn8dc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-svs0qc\",\"data-framer-name\":\"Logo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kd6qhr\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4d8hj5\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3id2cu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rmh5t0\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ulepqn\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15tm4vy\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l3w4lk\"})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vcdym9\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vij9px\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r60nmj\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(168, 168, 168)\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"rgb(222, 222, 222)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Side by side \"}),\": \"]}),\"Les participants int\\xe8grent une promotion de pairs du m\\xeame m\\xe9tier pour \\xe9changer\"]})}),className:\"framer-88e46m\",fonts:[\"GF;Lato-regular\",\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9C4jjxtd:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.95)`,y:(componentViewport?.y||0)+160+684.4+0+0+80+1097},OyIDvrDru:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.95)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"900px\",y:(componentViewport?.y||0)+160+761.12+0+0+80+723,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3kzpjq-container\",nodeId:\"wb8mCs22q\",scopeId:\"x1C4NroI4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9C4jjxtd:{variant:\"mKfV6SAxQ\"},OyIDvrDru:{variant:\"DFKnY_LtX\"}},children:/*#__PURE__*/_jsx(Clients,{height:\"100%\",id:\"wb8mCs22q\",layoutId:\"wb8mCs22q\",style:{width:\"100%\"},variant:\"gNCU95DKC\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k72n0i\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mpvrfy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1mp1u96\",\"data-styles-preset\":\"lhwmegoFe\",style:{\"--framer-text-color\":\"var(--token-55a2660b-40fa-428e-9833-b0b2e8ad0532, rgb(255, 255, 255))\"},children:\"R\\xe9sultats\"})}),className:\"framer-14cx2e0\",\"data-framer-name\":\"Page title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fENftjegk\"},motionChild:true,nodeId:\"qSNtf9XH8\",openInNewTab:false,scopeId:\"x1C4NroI4\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1dbqrlb framer-9r3qgo\",\"data-border\":true,\"data-framer-name\":\"Primary Button\",whileHover:animation6,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:\"D\\xe9couvrir nos clients\"})}),className:\"framer-ta62rz\",\"data-framer-name\":\"Button CTA\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-97y1ro\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-qypqaz\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fp73z9\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18t4ze3-container\",isModuleExternal:true,nodeId:\"HXSBLGOhm\",scopeId:\"x1C4NroI4\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"HXSBLGOhm\",isMixedBorderRadius:false,isRed:true,layoutId:\"HXSBLGOhm\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:getLocalizedValue(\"v13\",activeLocale)??\"https://youtu.be/-_o_MJ4CjaY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sootq0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Doubler sa productivit\\xe9 op\\xe9rationnelle\"})}),className:\"framer-12ihzpr\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-azdkfs\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uktxiy-container\",isModuleExternal:true,nodeId:\"fuyXdN23n\",scopeId:\"x1C4NroI4\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"fuyXdN23n\",isMixedBorderRadius:false,isRed:true,layoutId:\"fuyXdN23n\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:getLocalizedValue(\"v15\",activeLocale)??\"https://youtu.be/Q6zXiqqpr0E\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16uzxrv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Faire adopter les outils IA en interne\"})}),className:\"framer-plnq4\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-en07ll\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mdobeg\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jm51og\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr3wh\",\"data-styles-preset\":\"TbBXVG7X4\",style:{\"--framer-text-color\":\"var(--token-55a2660b-40fa-428e-9833-b0b2e8ad0532, rgb(255, 255, 255))\"},children:\"Impact direct sur r\\xe9sultats\"})}),className:\"framer-1vmqtqr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr3wh\",\"data-styles-preset\":\"TbBXVG7X4\",style:{\"--framer-text-color\":\"var(--token-30429be7-3c24-4eeb-b31c-3efe6733d4b3, rgb(148, 148, 148))\"},children:\"+30% sur la productivit\\xe9 des \\xe9quipes form\\xe9es par Side School.*\"})}),className:\"framer-laej39\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlY2ltYWwgRXh0cmEgQmxhY2sgQmxhY2s=\",\"--framer-font-family\":'\"Decimal Extra Black Black\", \"Decimal Extra Black Black Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"+30%\"})}),className:\"framer-14by1ae\",fonts:[\"CUSTOM;Decimal Extra Black Black\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dlwhfd\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5l44u4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr3wh\",\"data-styles-preset\":\"TbBXVG7X4\",style:{\"--framer-text-color\":\"var(--token-55a2660b-40fa-428e-9833-b0b2e8ad0532, rgb(255, 255, 255))\"},children:\"Mont\\xe9e en comp\\xe9tence rapide\"})}),className:\"framer-1qxcv9w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr3wh\",\"data-styles-preset\":\"TbBXVG7X4\",style:{\"--framer-text-color\":\"var(--token-30429be7-3c24-4eeb-b31c-3efe6733d4b3, rgb(148, 148, 148))\"},children:\"Upskilling 4x plus efficace que les formations traditionnelles.**\"})}),className:\"framer-1oh81n8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlY2ltYWwgRXh0cmEgQmxhY2sgQmxhY2s=\",\"--framer-font-family\":'\"Decimal Extra Black Black\", \"Decimal Extra Black Black Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4x\"})}),className:\"framer-1rxmfk\",fonts:[\"CUSTOM;Decimal Extra Black Black\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gs9b05\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qnjnhx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr3wh\",\"data-styles-preset\":\"TbBXVG7X4\",style:{\"--framer-text-color\":\"var(--token-55a2660b-40fa-428e-9833-b0b2e8ad0532, rgb(255, 255, 255))\"},children:\"Ultra motivant\"})}),className:\"framer-1ivw1zh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr3wh\",\"data-styles-preset\":\"TbBXVG7X4\",style:{\"--framer-text-color\":\"var(--token-30429be7-3c24-4eeb-b31c-3efe6733d4b3, rgb(148, 148, 148))\"},children:\"Note moyenne de 9.3/10 en recommendation participants.***\"})}),className:\"framer-1knsk9w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlY2ltYWwgRXh0cmEgQmxhY2sgQmxhY2s=\",\"--framer-font-family\":'\"Decimal Extra Black Black\", \"Decimal Extra Black Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"70px\"},children:\"9.3\"}),\"/10\"]})}),className:\"framer-1qzuoc4\",fonts:[\"CUSTOM;Decimal Extra Black Black\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uh31z4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-30429be7-3c24-4eeb-b31c-3efe6733d4b3, rgb(148, 148, 148))\"},children:\"* Source : Nous demandons \\xe0 nos participants d\u2019\\xe9valuer le nombre d\u2019heures gagn\\xe9es chaque semaine gr\\xe2ce \\xe0 l\u2019utilisation d\u2019outils IA et des techniques ma\\xeetris\\xe9es pendant le bootcamp. En moyenne, ils rapportent 6,8 heures \\xe9conomis\\xe9es par semaine de 35 heures, soit une augmentation de productivit\\xe9 moyenne de 30 %.\"})}),className:\"framer-1h3hi8f\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-30429be7-3c24-4eeb-b31c-3efe6733d4b3, rgb(148, 148, 148))\"},children:\"** Source : Nous avons mesur\\xe9 le temps n\\xe9cessaire pour ma\\xeetriser une comp\\xe9tence d'analyse de donn\\xe9e en divisant un groupe d\u2019apprenants en deux : un groupe apprenant la comp\\xe9tence avec Side School, l\u2019autre utilisant des alternatives (e-learning, formations pr\\xe9sentielles et apprentissage autonome). En nous basant sur les quiz finaux, nous avons constat\\xe9 que l\u2019approche \u201Clearning by doing\u201D de Side School \\xe9tait en moyenne 4,2 fois plus efficace que les formations pr\\xe9sentielles, 6 fois plus efficace que les formations en ligne (e-learning), et 11 fois plus efficace que l\u2019apprentissage autonome.\"})}),className:\"framer-mtujfi\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-30429be7-3c24-4eeb-b31c-3efe6733d4b3, rgb(148, 148, 148))\"},children:\"*** Source : Nous demandons \\xe0 nos participants d\u2019\\xe9valuer, sur 10, dans quelle mesure ils recommanderaient le bootcamp \\xe0 leurs pairs. En 2024, nous avons obtenu en moyenne une note de 9,3/10 sur l\u2019ensemble des bootcamps.\"})}),className:\"framer-107n6dd\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fadux7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-84qd9v\",\"data-border\":true,\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yzjfka\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-183stoy-container\",isModuleExternal:true,nodeId:\"fTuN5e6A4\",scopeId:\"x1C4NroI4\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"fTuN5e6A4\",isMixedBorderRadius:false,isRed:true,layoutId:\"fTuN5e6A4\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:getLocalizedValue(\"v27\",activeLocale)??\"https://youtu.be/h5sC03FoXyQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ugol8h\",\"data-border\":true,\"data-framer-name\":\"Desktop\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jpqeo2\",\"data-framer-name\":\"Stats\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l4x5yz\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Notre vision\"})}),className:\"framer-p9yi0o\",\"data-framer-name\":\"Stand out\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(148, 148, 148)\",\"--framer-text-transform\":\"uppercase\"},children:\"side school\"})}),className:\"framer-1vjtpa0\",\"data-framer-name\":\"CHALLENGE #3\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h7jt8e\",\"data-framer-name\":\"XP\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8azjh6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tCHKF5wJR\",scopeId:\"x1C4NroI4\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-30429be7-3c24-4eeb-b31c-3efe6733d4b3, rgb(148, 148, 148))\",font:{fontFamily:'\"Lato\", \"Lato Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0.07em\",lineHeight:\"1em\"},height:\"100%\",id:\"tCHKF5wJR\",layoutId:\"tCHKF5wJR\",monthFormat:\"long\",outputType:\"time\",showMinutes:true,showMonth:true,showSeconds:true,showWeekday:true,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b18npx\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q93cbi\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wwh8ob\",\"data-styles-preset\":\"JX00CT5zf\",style:{\"--framer-text-color\":\"var(--token-55a2660b-40fa-428e-9833-b0b2e8ad0532, rgb(255, 255, 255))\"},children:\"\\xc0 l\u2019\\xe8re de l\u2019IA, l\u2019obsolescence des comp\\xe9tences acc\\xe9l\\xe8re. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wwh8ob\",\"data-styles-preset\":\"JX00CT5zf\",children:\"D\u2019ici 2030, 40% des comp\\xe9tences professionnelles essentielles seront diff\\xe9rentes (Rapport du Forum Economique Mondial).\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wwh8ob\",\"data-styles-preset\":\"JX00CT5zf\",children:\"Mais les m\\xe9thodes traditionnelles pour monter en comp\\xe9tence ne suivent pas : les formations professionnelles ne sont pas flexibles, et l\u2019apprentissage e-learning est in\\xe9ficace. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wwh8ob\",\"data-styles-preset\":\"JX00CT5zf\",children:\"Il nous faut une meilleure m\\xe9thode pour apprendre \\xe0 adapter son m\\xe9tier aux nouvelles technologies. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wwh8ob\",\"data-styles-preset\":\"JX00CT5zf\",children:\"Side School m\\xe8ne cette nouvelle m\\xe9thode pour apprendre de mani\\xe8re plus efficace avec l\u2019IA.\"})]}),className:\"framer-dm920e\",\"data-framer-name\":\"Simple facts about the program. Short\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mykjll\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-h40jz6\",\"data-framer-name\":\"Vector 467 (Stroke)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:322,intrinsicWidth:259,svg:'<svg width=\"259\" height=\"322\" viewBox=\"-1 -1 259 322\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M256.757 0.800502C257.236 1.58682 256.986 2.61216 256.198 3.09066C206.077 33.5514 162.983 72.5863 123.231 115.701C122.539 116.452 121.549 117.765 120.273 119.459C119.865 120.001 119.427 120.581 118.96 121.195C117.084 123.662 114.823 126.544 112.378 129.15C109.95 131.738 107.249 134.155 104.471 135.603C101.672 137.061 98.5486 137.648 95.5761 136.088C94.4055 135.473 93.7302 135.456 93.3579 135.571C93.0232 135.675 92.505 136.022 91.9792 137.24C91.7571 137.755 91.3226 139.183 90.7647 141.194C90.2223 143.149 89.5992 145.519 89.0019 147.812C88.8394 148.436 88.6787 149.054 88.5221 149.657C88.105 151.262 87.7172 152.755 87.4026 153.934C87.1868 154.743 87.0008 155.422 86.8609 155.896C86.7928 156.126 86.7263 156.34 86.6669 156.503C86.6432 156.569 86.5932 156.704 86.521 156.84L86.5188 156.844C86.4967 156.886 86.3802 157.108 86.1578 157.312C86.0525 157.408 85.7031 157.709 85.1433 157.749C84.4308 157.8 83.928 157.41 83.6826 157.083C82.4692 155.466 80.6685 153.639 78.6526 152.232C76.6089 150.805 74.5309 149.937 72.7295 149.937C68.3939 149.937 65.5118 152.486 63.2333 156.281C61.5959 159.008 60.4256 162.092 59.3099 165.033C58.8285 166.301 58.3573 167.543 57.8631 168.718C57.0911 170.553 56.0151 171.791 54.4992 172.312C53.0998 172.792 51.6571 172.526 50.5347 172.268C50.4249 172.242 50.3162 172.217 50.2086 172.191C35.1902 209.757 22.6282 248.202 12.7251 287.527C12.0233 290.314 11.355 293.139 10.6834 295.978C9.47277 301.095 8.25171 306.256 6.80565 311.316C6.73359 311.569 6.62571 311.991 6.49278 312.511C6.10515 314.029 5.50451 316.38 4.95787 317.778C4.78117 318.23 4.53138 318.802 4.18874 319.219C4.04442 319.395 3.63527 319.86 2.9404 319.974C2.02362 320.125 1.39686 319.587 1.11727 319.207C0.868228 318.868 0.743776 318.488 0.671941 318.219C0.591512 317.918 0.531708 317.575 0.484933 317.203C0.391177 316.456 0.33339 315.456 0.310993 314.168C-0.263385 281.148 -0.247516 247.844 2.16445 214.831C3.26176 199.812 6.06913 184.489 12.1398 170.453C12.5516 169.501 13.0821 168.666 13.8117 168.113C14.616 167.502 15.5533 167.32 16.4724 167.538C17.3003 167.735 17.9937 168.226 18.5362 168.724C19.0949 169.237 19.613 169.867 20.0821 170.521C21.0197 171.826 21.889 173.403 22.5986 174.755C22.8471 175.228 23.0702 175.662 23.2699 176.05C23.6752 176.837 23.9843 177.438 24.2145 177.806C24.2707 177.896 24.3433 178.043 24.3451 178.046L24.4813 178.312C24.5948 178.533 24.7542 178.838 24.9489 179.195C25.341 179.914 25.866 180.826 26.4388 181.674C27.0312 182.551 27.596 183.241 28.0499 183.613C28.0664 183.627 28.0821 183.639 28.0971 183.651C30.0537 182.055 31.5173 180.083 33.131 177.909C33.4503 177.479 33.7755 177.041 34.1115 176.596C36.1929 173.842 38.6158 170.969 42.4651 169.081C44.5044 168.081 46.4809 168.068 48.1664 168.321C54.1051 153.595 60.4198 139.005 67.098 124.55C83.476 89.1011 102.913 56.4954 124.615 24.237C125.296 23.2256 125.893 22.3703 126.431 21.5989C126.974 20.8216 127.457 20.1296 127.906 19.4491C128.325 18.8138 128.644 18.2893 128.868 17.8515C129.031 17.5313 129.118 17.3041 129.163 17.1516C129.142 17.1434 129.12 17.1348 129.095 17.1259C128.443 16.8916 127.134 16.7342 124.761 16.7533C106.651 16.8993 89.4459 15.0007 71.6782 12.6836C69.8 12.4386 68.8601 12.6047 68.4112 12.817C68.1137 12.9577 67.9178 13.1626 67.7939 13.7579C67.6478 14.4602 67.6693 15.4338 67.7678 16.8248C67.7855 17.0747 67.8055 17.3358 67.8261 17.6066C67.914 18.7589 68.0153 20.0862 68.0153 21.4686V56.4197C68.0153 57.3401 67.2681 58.0863 66.3464 58.0863C65.4248 58.0863 64.6776 57.3401 64.6776 56.4197V21.4686C64.6776 20.2257 64.5887 19.0551 64.5017 17.9113C64.4801 17.6261 64.4585 17.3425 64.4385 17.06C64.3437 15.7219 64.2721 14.3005 64.5261 13.0797C64.8024 11.7518 65.5001 10.5055 66.9829 9.80431C68.3143 9.17474 70.0415 9.1085 72.1104 9.37831C89.8501 11.6918 106.866 13.5642 124.734 13.4201C127.097 13.401 128.953 13.532 130.226 13.9898C130.89 14.2287 131.573 14.6178 132.035 15.2915C132.522 16.0013 132.601 16.7872 132.5 17.4805C132.404 18.136 132.141 18.7781 131.841 19.365C131.535 19.9659 131.137 20.61 130.693 21.2828C130.267 21.9287 129.724 22.7093 129.134 23.5564C128.573 24.3622 127.97 25.2283 127.386 26.0959C105.75 58.2564 86.4111 90.7043 70.1286 125.947C63.5496 140.186 57.3251 154.558 51.4668 169.06C52.4628 169.278 53.0196 169.295 53.4136 169.159C53.7144 169.056 54.229 168.751 54.786 167.427C55.191 166.464 55.6117 165.356 56.0627 164.169C57.2181 161.127 58.5722 157.562 60.3708 154.566C62.937 150.293 66.7161 146.604 72.7295 146.604C75.5115 146.604 78.2662 147.895 80.5652 149.5C81.9224 150.448 83.186 151.55 84.2833 152.678C84.5741 151.581 84.9182 150.256 85.2879 148.833C85.4453 148.228 85.6073 147.604 85.7718 146.973C86.3691 144.68 86.9981 142.287 87.5482 140.304C88.0827 138.378 88.5809 136.693 88.9143 135.921C89.6412 134.237 90.7335 132.895 92.3674 132.388C93.9637 131.893 95.6149 132.342 97.1289 133.137C98.7692 133.998 100.667 133.825 102.927 132.647C105.208 131.459 107.604 129.364 109.943 126.871C112.265 124.396 114.441 121.627 116.302 119.179C116.716 118.635 117.119 118.1 117.507 117.584C118.819 115.843 119.961 114.327 120.776 113.443C160.656 70.1892 203.987 30.9191 254.463 0.243136C255.251 -0.235362 256.277 0.0141789 256.757 0.800502ZM46.8798 171.529C45.9035 171.456 44.9514 171.576 43.9361 172.073C40.8225 173.6 38.7902 175.938 36.7756 178.604C36.4779 178.998 36.1784 179.403 35.8741 179.814C34.1729 182.114 32.3197 184.619 29.7825 186.57C29.0911 187.102 28.285 187.214 27.5528 187.044C26.8987 186.892 26.3488 186.532 25.9311 186.189C25.0904 185.499 24.3068 184.478 23.6718 183.538C23.0172 182.568 22.4359 181.556 22.0176 180.789C21.8071 180.403 21.6352 180.074 21.5133 179.837C21.4602 179.734 21.4163 179.648 21.3841 179.585L21.371 179.559C21.3616 179.541 21.3542 179.526 21.3486 179.515C21.0453 179.02 20.6417 178.236 20.2065 177.391C20.0224 177.034 19.8327 176.665 19.6425 176.303C18.9421 174.969 18.1627 173.567 17.3698 172.463C16.9737 171.912 16.6061 171.48 16.2783 171.179C16.0388 170.959 15.8721 170.857 15.7791 170.812C15.6693 170.92 15.4578 171.188 15.2038 171.775C9.32963 185.357 6.57398 200.281 5.49326 215.073C3.18151 246.715 3.07892 278.656 3.58676 310.435C3.58991 310.424 3.59303 310.413 3.59614 310.402C5.02433 305.404 6.2104 300.388 7.40667 295.329C8.08213 292.473 8.76084 289.603 9.48823 286.714C19.3784 247.441 31.9096 209.045 46.8798 171.529Z\" fill=\"#959595\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mvtkx8\",\"data-framer-name\":\"Vector 466 (Stroke)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:159,intrinsicWidth:589,svg:'<svg width=\"589\" height=\"159\" viewBox=\"-1 -1 589 159\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M65.4411 1.9732C88.6335 -1.63232 114.624 -0.51248 137.073 7.12581C137.458 7.25694 137.926 7.40139 138.467 7.56897L138.58 7.60383C139.161 7.78359 139.81 7.9854 140.475 8.20933C141.79 8.65207 143.244 9.2064 144.444 9.90651C145.576 10.567 146.837 11.5587 147.185 13.0269C147.57 14.6498 146.714 16.1434 145.256 17.4336C139.63 22.4126 132.981 26.7025 126.642 30.7919C125.033 31.8303 123.443 32.8558 121.896 33.8764C121.655 34.0352 121.116 34.3215 120.441 34.6672C138.529 31.5579 159.189 33.1807 176.027 35.4418C191.732 37.5506 208.588 41.7286 219.44 55.0272C226.933 64.2101 229.768 74.8729 230.05 85.8093C266.528 86.3103 311.166 86.638 356.726 86.5301C449.744 86.3099 546.406 84.273 585.36 78.2225C586.136 78.1021 586.862 78.6326 586.983 79.4077C587.103 80.1827 586.572 80.9086 585.797 81.0291C546.579 87.1204 449.664 89.1503 356.733 89.3703C311.193 89.4781 266.561 89.151 230.068 88.65C229.996 94.1734 229.323 99.7397 228.319 105.195C226.51 115.024 223.621 126.321 218.399 135.872C213.167 145.44 205.522 153.381 194.182 156.213C184.963 158.516 174.196 155.437 166.321 151.2C156.915 146.14 148.382 139.156 140.256 131.8C137.037 128.885 133.901 125.93 130.798 123.007C126.009 118.496 121.302 114.061 116.497 109.969C114.738 108.47 112.954 106.985 111.147 105.515C101.026 112.947 89.5731 119.324 77.8536 123.331C74.1507 129.327 69.9748 135.06 65.2163 140.443C58.2444 148.329 49.6708 155.091 38.509 155.94C29.6199 156.616 22.4432 154.62 16.7854 150.25C11.1552 145.901 7.17526 139.313 4.43567 131.062C1.27035 121.529 -0.721947 109.129 0.245699 97.2924C0.715833 91.5416 1.89026 85.8724 4.00145 80.7179C4.00066 80.6531 3.99994 80.5883 3.9993 80.5234C3.86302 66.7155 4.90209 50.5321 11.0005 37.5454C20.5685 17.17 44.6518 5.20513 65.4411 1.9732ZM4.51364 88.3994C3.8024 91.3368 3.3343 94.3992 3.07888 97.5236C2.14647 108.929 4.07156 120.945 7.13369 130.167C9.76585 138.095 13.4907 144.115 18.5241 148.003C23.5299 151.87 29.9755 153.74 38.2934 153.108C48.3554 152.343 56.295 146.244 63.0858 138.562C66.9805 134.157 70.4784 129.508 73.6429 124.663C51.9021 130.98 29.4186 128.73 13.3727 109.165C8.05493 102.681 5.50358 95.9544 4.51364 88.3994ZM75.9705 120.967C53.8916 128.254 31.3901 126.653 15.5714 107.365C9.16911 99.5583 7.04947 91.3893 6.85302 81.2654C8.92473 76.407 11.879 72.1332 15.8972 68.8183C21.1147 64.5138 28.5958 63.7774 36.4584 64.9094C44.2792 66.0353 52.1727 68.9695 57.8839 71.6108C69.0873 76.792 80.01 83.0956 90.4364 90.1266C86.5186 100.877 81.8554 111.276 75.9705 120.967ZM80.1464 119.482C90.2228 115.644 100.04 110.072 108.857 103.67C103.69 99.55 98.3465 95.5667 92.8589 91.7793C89.3383 101.346 85.2111 110.668 80.1464 119.482ZM93.8565 89.0171C99.8278 93.1144 105.628 97.44 111.216 101.919C115.989 98.3011 120.434 94.454 124.429 90.5308C123.162 89.9009 121.938 89.213 120.764 88.463C118.923 87.2875 117.711 85.8063 117.137 84.066C116.568 82.3439 116.673 80.5187 117.182 78.7238C117.821 76.4684 119.138 74.1277 120.814 71.8361C118.879 70.2452 117.669 67.74 116.994 65.0157C116.187 61.7624 116.072 57.9385 116.543 54.2428C117.013 50.5488 118.08 46.8839 119.719 43.966C121.344 41.0736 123.655 38.7099 126.693 38.0595C130.672 37.2076 134.276 37.4842 137.38 38.9714C140.484 40.4582 142.938 43.0829 144.749 46.6546C145.383 47.905 145.864 49.1836 146.209 50.48C149.392 48.7278 153.811 46.4287 158.245 44.5492C161.952 42.978 165.774 41.6538 168.934 41.228C170.51 41.0157 172.04 41.0091 173.347 41.3911C174.706 41.7882 175.858 42.6223 176.466 44.0307C177.381 46.1475 176.822 48.3349 175.775 50.2243C174.725 52.1197 173.065 53.948 171.323 55.5548C167.828 58.7795 163.695 61.3891 162.441 62.1711C157.988 64.9473 150.924 69.1983 143.527 71.9504C143.098 72.1101 142.666 72.2654 142.232 72.4155C140.972 74.798 139.548 77.0645 138.079 79.1488C139.707 78.8421 141.382 78.6427 143.038 78.5097C146.061 78.2671 149.109 78.2409 151.78 78.218C152.228 78.2142 152.665 78.2104 153.09 78.2058C164.386 78.0817 175.918 78.6602 187.143 80.0354C187.229 80.0459 187.405 80.0601 187.654 80.0802C188.823 80.1743 191.593 80.3974 194.141 80.9757C195.692 81.328 197.327 81.8427 198.584 82.6306C199.55 83.2358 200.463 84.1241 200.773 85.3401C208.927 85.4916 217.781 85.6363 227.206 85.7696C226.919 75.3335 224.202 65.3584 217.237 56.8219C207.128 44.4335 191.271 40.3545 175.649 38.2567C155.802 35.5916 131.122 33.9007 111.732 39.5637C111.471 39.64 111.22 39.7048 111.005 39.739C110.907 39.7546 110.741 39.777 110.553 39.7659C110.461 39.7603 110.293 39.7432 110.1 39.6716C109.909 39.6004 109.576 39.4295 109.35 39.0444C109.108 38.6333 109.127 38.2185 109.196 37.9489C109.259 37.7044 109.371 37.5314 109.431 37.4465C109.554 37.2744 109.693 37.1536 109.761 37.0967C109.917 36.9652 110.108 36.8381 110.282 36.7292C110.988 36.286 112.285 35.6033 113.668 34.897C114.676 34.3825 115.768 33.836 116.774 33.3324C117.169 33.135 117.55 32.9443 117.908 32.7647C119.242 32.0947 120.133 31.6356 120.33 31.5059C121.933 30.449 123.56 29.399 125.193 28.3449C131.512 24.2666 137.924 20.1287 143.371 15.3074C144.523 14.2885 144.444 13.7881 144.419 13.6818C144.357 13.4209 144.02 12.9483 143.011 12.3592C142.069 11.8096 140.838 11.3288 139.567 10.9008C138.939 10.6893 138.32 10.4968 137.739 10.317L137.613 10.278C137.086 10.1151 136.582 9.95905 136.157 9.81442C114.223 2.35136 88.7081 1.23049 65.8782 4.77966C45.568 7.93711 22.5779 19.5775 13.5739 38.7518C8.52202 49.5099 7.06276 62.7337 6.85747 75.038C8.78111 71.8839 11.1676 69.0369 14.0873 66.6281C20.2285 61.5617 28.7117 60.9245 36.8639 62.0982C45.0579 63.2778 53.2293 66.3285 59.0779 69.0333C70.2163 74.1844 81.0659 80.4224 91.4235 87.3668C96.032 74.2396 99.6009 60.64 102.984 47.2097C103.176 46.4491 103.948 45.9878 104.709 46.1792C105.471 46.3706 105.932 47.1424 105.741 47.903C102.304 61.5477 98.6489 75.4984 93.8565 89.0171ZM227.226 88.6104C217.658 88.4751 208.675 88.3281 200.415 88.1742C199.988 89.0174 199.317 89.6983 198.587 90.2355C197.437 91.0818 195.983 91.6965 194.571 92.1534C192.174 92.9293 189.59 93.3408 188.229 93.5575C187.988 93.5959 187.786 93.6282 187.629 93.6553C177.986 95.3261 165.785 96.8817 153.772 96.6088C144.45 96.3971 135.135 95.083 127.196 91.7891C123.073 95.9075 118.459 99.953 113.489 103.759C115.126 105.097 116.744 106.447 118.342 107.808C123.18 111.929 128 116.468 132.843 121.03C135.938 123.944 139.042 126.867 142.165 129.695C150.24 137.006 158.57 143.805 167.668 148.699C175.244 152.776 185.249 155.517 193.492 153.458C203.81 150.881 210.907 143.65 215.904 134.51C220.91 125.354 223.734 114.407 225.524 104.681C226.512 99.3133 227.157 93.9144 227.226 88.6104ZM129.345 89.5896C136.587 92.3827 145.095 93.5707 153.836 93.7693C165.587 94.0362 177.585 92.513 187.143 90.8568C187.335 90.8237 187.567 90.7864 187.834 90.7437C189.224 90.5209 191.536 90.1503 193.695 89.4514C194.866 89.0723 195.904 88.6226 196.68 88.1032C175.182 87.6861 158.991 87.2251 150.694 86.8135C147.757 86.6678 141.996 86.3763 137.646 85.8315C136.076 85.6349 134.567 85.3926 133.43 85.0737C132.14 86.5794 130.776 88.0874 129.345 89.5896ZM133.651 80.3373C133.377 80.4379 133.108 80.5434 132.842 80.6542C132.449 80.8181 132.074 81.0085 131.765 81.2415C131.487 81.452 131.058 81.8499 130.935 82.4815C130.86 82.8691 130.921 83.21 131.042 83.4921C129.631 85.1289 128.13 86.7683 126.547 88.3994C125.061 87.7033 123.64 86.9288 122.294 86.0697C120.907 85.1839 120.173 84.1946 119.836 83.1762C119.494 82.1396 119.514 80.9177 119.917 79.4982C120.46 77.5824 121.655 75.4647 123.283 73.2758C127.771 75.2305 133.075 74.9319 138.303 73.6009C136.852 76.027 135.251 78.303 133.651 80.3373ZM144.002 68.7214C150.576 66.0831 156.803 62.3379 160.936 59.7614C162.172 58.9909 166.109 56.4991 169.395 53.4681C171.043 51.947 172.451 50.3589 173.288 48.8486C174.128 47.3323 174.275 46.1248 173.857 45.1567C173.647 44.6705 173.263 44.3256 172.549 44.1172C171.785 43.8938 170.705 43.8554 169.314 44.0428C166.541 44.4165 163.002 45.6182 159.355 47.1639C154.638 49.1635 149.918 51.6613 146.764 53.4204C147.248 57.6215 146.488 61.9276 145.059 66.0092C144.739 66.9219 144.385 67.827 144.002 68.7214ZM144.041 54.9752C144.208 58.2587 143.564 61.6762 142.375 65.0713C141.78 66.7715 141.053 68.4518 140.234 70.088C134.69 71.8696 129.382 72.4959 125.141 70.9589C125.443 70.6062 125.755 70.2529 126.074 69.8994C132.11 63.2177 140.479 57.1011 143.275 55.4277C143.456 55.3196 143.714 55.1664 144.041 54.9752ZM143.635 51.9267C143.333 50.5593 142.866 49.2257 142.214 47.9383C140.618 44.7919 138.57 42.691 136.151 41.5325C133.734 40.3743 130.796 40.0858 127.289 40.8366C125.385 41.2442 123.63 42.8066 122.198 45.3562C120.78 47.8803 119.799 51.1734 119.362 54.601C118.927 58.0271 119.048 61.4887 119.753 64.3326C120.353 66.7502 121.326 68.5475 122.569 69.5991C123.021 69.0588 123.487 68.5239 123.964 67.9963C130.213 61.0787 138.81 54.7893 141.815 52.991C142.162 52.7834 142.789 52.4126 143.635 51.9267ZM135.645 82.6608C136.316 82.783 137.108 82.9016 138 83.0133C142.225 83.5425 147.876 83.83 150.835 83.9768C159.191 84.3913 175.607 84.8568 197.42 85.2767C197.32 85.1992 197.205 85.1192 197.073 85.0366C196.224 84.504 194.96 84.0744 193.511 83.7454C191.231 83.2278 188.902 83.0354 187.609 82.9286C187.251 82.899 186.973 82.876 186.797 82.8545C175.707 81.4959 164.302 80.9231 153.121 81.0458C152.685 81.0506 152.24 81.0545 151.788 81.0584C149.112 81.0816 146.178 81.107 143.266 81.3408C140.555 81.5584 137.939 81.9522 135.645 82.6608ZM110.56 36.9338C110.554 36.9345 110.552 36.935 110.552 36.935C110.552 36.935 110.554 36.9348 110.557 36.9343C110.558 36.9341 110.559 36.934 110.56 36.9338Z\" fill=\"#959595\"/>\\n</svg>\\n',withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sl4pcw\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tb86ka\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1mp1u96\",\"data-styles-preset\":\"lhwmegoFe\",style:{\"--framer-text-color\":\"var(--token-55a2660b-40fa-428e-9833-b0b2e8ad0532, rgb(255, 255, 255))\"},children:\"News\"})}),className:\"framer-1w44sgv\",\"data-framer-name\":\"Page title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"N8vS7B5r_\"},motionChild:true,nodeId:\"LX2Coa3pN\",openInNewTab:false,scopeId:\"x1C4NroI4\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xbk9e4 framer-9r3qgo\",\"data-border\":true,\"data-framer-name\":\"Primary Button\",whileHover:animation6,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:\"Nous suivre\"})}),className:\"framer-4ofdfc\",\"data-framer-name\":\"Button CTA\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19nye20\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"J1QAl_i5x\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"J1QAl_i5x\",name:\"UxkyV8fVZ\",type:\"Identifier\"},{collection:\"J1QAl_i5x\",name:\"vVX6KkJgw\",type:\"Identifier\"},{collection:\"J1QAl_i5x\",name:\"wU6CGXI_K\",type:\"Identifier\"},{collection:\"J1QAl_i5x\",name:\"WV1DTF2YK\",type:\"Identifier\"},{collection:\"J1QAl_i5x\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"J1QAl_i5x\",name:\"UxkyV8fVZ\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"J1QAl_i5x\",name:\"UxkyV8fVZ\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idJ1QAl_i5x,UxkyV8fVZ:UxkyV8fVZJ1QAl_i5x,vVX6KkJgw:vVX6KkJgwJ1QAl_i5x,wU6CGXI_K:wU6CGXI_KJ1QAl_i5x,WV1DTF2YK:WV1DTF2YKJ1QAl_i5x},index1)=>{vVX6KkJgwJ1QAl_i5x??=\"\";wU6CGXI_KJ1QAl_i5x??=\"\";WV1DTF2YKJ1QAl_i5x??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`J1QAl_i5x-${idJ1QAl_i5x}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{WV1DTF2YK:WV1DTF2YKJ1QAl_i5x},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"N8vS7B5r_\"},motionChild:true,nodeId:\"ZSN8syotQ\",openInNewTab:false,scopeId:\"x1C4NroI4\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zadqsx framer-9r3qgo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9C4jjxtd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+3995.8+0+1805+120+76.4+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} * 0.95, 1px)`,...toResponsiveImage(UxkyV8fVZJ1QAl_i5x)}},OyIDvrDru:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+4022.52+0+1805+120+76.4+0+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(UxkyV8fVZJ1QAl_i5x)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+2895.52+0+1805+120+76.4+0+0),sizes:\"900px\",...toResponsiveImage(UxkyV8fVZJ1QAl_i5x)},className:\"framer-jt8w6u\",\"data-border\":true,\"data-framer-name\":\"Testimonial video\",whileHover:animation,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-516b9w\",\"data-framer-name\":\"Shadow\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12tw69i\",\"data-framer-name\":\"Testimonial title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr3wh\",\"data-styles-preset\":\"TbBXVG7X4\",style:{\"--framer-text-color\":\"var(--token-55a2660b-40fa-428e-9833-b0b2e8ad0532, rgb(255, 255, 255))\"},children:\"Nouvel instructeur : \"})}),className:\"framer-dgr5jx\",\"data-framer-name\":\"Hector Balas (ex-OpenAI)\",fonts:[\"Inter\"],text:vVX6KkJgwJ1QAl_i5x,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr3wh\",\"data-styles-preset\":\"TbBXVG7X4\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Sina Movaghar\"})}),className:\"framer-3a2q2f\",\"data-framer-name\":\"Nouvel instructeur Side School\",fonts:[\"Inter\"],text:wU6CGXI_KJ1QAl_i5x,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})})})},idJ1QAl_i5x);})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9C4jjxtd:{y:(componentViewport?.y||0)+160+6544.7},OyIDvrDru:{y:(componentViewport?.y||0)+160+6610.92}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:518,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+160+5483.92,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tahlmj-container\",nodeId:\"dNj2Lm_s1\",scopeId:\"x1C4NroI4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9C4jjxtd:{variant:\"NMZ6ZRe4p\"},OyIDvrDru:{variant:\"s_QDak0UH\"}},children:/*#__PURE__*/_jsx(NewFooter,{height:\"100%\",id:\"dNj2Lm_s1\",layoutId:\"dNj2Lm_s1\",style:{width:\"100%\"},variant:\"yDfEzvXsE\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5arLe.framer-9r3qgo, .framer-5arLe .framer-9r3qgo { display: block; }\",\".framer-5arLe.framer-1fdantb { align-content: center; align-items: center; background-color: #191919; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 160px 0px 0px 0px; position: relative; width: 1280px; }\",\".framer-5arLe .framer-7uoiho-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-5arLe .framer-1xqthz4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 30px 0px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-5arLe .framer-cry43x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-1a2f0cl { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; text-shadow: 0px 3px 4px #000000; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5arLe .framer-1vfy9id { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 421px; word-break: break-word; word-wrap: break-word; }\",\".framer-5arLe .framer-wvfkhb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 110px; width: 900px; }\",\".framer-5arLe .framer-7uo37l, .framer-5arLe .framer-1l4x5yz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5arLe .framer-zvhoa0, .framer-5arLe .framer-9y5qam { flex: none; height: 41px; position: relative; width: 18px; }\",\".framer-5arLe .framer-1iqger7, .framer-5arLe .framer-ajhefn, .framer-5arLe .framer-14cx2e0, .framer-5arLe .framer-p9yi0o, .framer-5arLe .framer-1vjtpa0, .framer-5arLe .framer-1w44sgv { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5arLe .framer-1h213u2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-o39ff9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 380px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-eob5l5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-5arLe .framer-whwxap { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 14px 20px 0px rgba(0, 0, 0, 0.3499999940395355); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 22px 20px 22px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5arLe .framer-1ly0cco { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-1ohlu3f { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 11px 6px 11px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-5arLe .framer-b7d207 { aspect-ratio: 1 / 1; background-color: var(--1vpg0b1); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 10px); position: relative; width: 10px; }\",\".framer-5arLe .framer-19e19k4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-1e425q7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-8092no, .framer-5arLe .framer-dgr5jx { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5arLe .framer-1gjy53b { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 30px 8px 32px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5arLe .framer-15xjhag, .framer-5arLe .framer-ta62rz, .framer-5arLe .framer-4ofdfc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5arLe .framer-it6v0j { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #222222; box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.2), 0px -0.5px 0px 0px rgba(91, 91, 91, 1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 70px 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-wjr4kn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 900px; }\",\".framer-5arLe .framer-11po2sv-container { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 450px); position: relative; width: 100%; }\",\".framer-5arLe .framer-jlz4k1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-1o5kael { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5arLe .framer-f99hms { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); overflow: visible; position: relative; width: 22px; }\",\".framer-5arLe .framer-1st23nz { aspect-ratio: 1 / 1; background-color: #f90200; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 7px; opacity: 0.7; overflow: hidden; position: absolute; top: 7px; width: 5px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5arLe .framer-h8jwo8 { aspect-ratio: 1 / 1; background-color: #f90200; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 6px); left: 45%; overflow: hidden; position: absolute; top: 45%; transform: translate(-50%, -50%); width: 6px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5arLe .framer-lig3m, .framer-5arLe .framer-1m6fr8d, .framer-5arLe .framer-88e46m, .framer-5arLe .framer-12ihzpr, .framer-5arLe .framer-plnq4, .framer-5arLe .framer-1vmqtqr, .framer-5arLe .framer-laej39, .framer-5arLe .framer-1qxcv9w, .framer-5arLe .framer-1oh81n8, .framer-5arLe .framer-1ivw1zh, .framer-5arLe .framer-1knsk9w, .framer-5arLe .framer-1h3hi8f, .framer-5arLe .framer-mtujfi, .framer-5arLe .framer-107n6dd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5arLe .framer-4e3u9t, .framer-5arLe .framer-6dn8dc { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5arLe .framer-15xsgj1 { flex: none; height: 22px; overflow: hidden; position: relative; width: 19px; }\",\".framer-5arLe .framer-r6eurg { background-color: #757575; bottom: 1px; flex: none; height: 13px; left: 0px; overflow: hidden; position: absolute; width: 3px; }\",\".framer-5arLe .framer-19jib8b { background-color: #757575; bottom: 1px; flex: none; height: 13px; left: 6px; overflow: hidden; position: absolute; width: 3px; }\",\".framer-5arLe .framer-1xonyxv { background-color: #757575; bottom: 11px; flex: none; height: 3px; left: 0px; overflow: hidden; position: absolute; width: 9px; }\",\".framer-5arLe .framer-1gruy74 { background-color: #757575; bottom: 7px; flex: none; height: 7px; left: 0px; overflow: hidden; position: absolute; width: 9px; }\",\".framer-5arLe .framer-lm0196 { aspect-ratio: 1 / 1; background-color: #757575; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; bottom: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 6px); left: 2px; overflow: hidden; position: absolute; width: 6px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5arLe .framer-svs0qc { flex: none; height: 22px; overflow: hidden; position: relative; width: 32px; }\",\".framer-5arLe .framer-kd6qhr, .framer-5arLe .framer-1rmh5t0 { background-color: #757575; bottom: 0px; flex: none; height: 13px; left: 0px; overflow: hidden; position: absolute; width: 3px; }\",\".framer-5arLe .framer-4d8hj5 { background-color: #757575; bottom: 0px; flex: none; height: 13px; left: 6px; overflow: hidden; position: absolute; width: 3px; }\",\".framer-5arLe .framer-3id2cu { bottom: 0px; flex: none; height: 21px; overflow: hidden; position: absolute; right: 0px; width: 9px; }\",\".framer-5arLe .framer-1ulepqn { background-color: #757575; bottom: 0px; flex: none; height: 13px; overflow: hidden; position: absolute; right: 0px; width: 3px; }\",\".framer-5arLe .framer-15tm4vy { background-color: #757575; flex: none; height: 7px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 8px; }\",\".framer-5arLe .framer-l3w4lk { aspect-ratio: 1 / 1; background-color: #757575; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 6px); left: 2px; overflow: hidden; position: absolute; top: 0px; width: 6px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5arLe .framer-vcdym9 { background-color: #757575; bottom: 10px; flex: none; height: 3px; left: 0px; overflow: hidden; position: absolute; width: 9px; }\",\".framer-5arLe .framer-vij9px { background-color: #757575; bottom: 6px; flex: none; height: 7px; left: 0px; overflow: hidden; position: absolute; width: 9px; }\",\".framer-5arLe .framer-1r60nmj { aspect-ratio: 1 / 1; background-color: #757575; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; bottom: 15px; flex: none; height: var(--framer-aspect-ratio-supported, 6px); left: 2px; overflow: hidden; position: absolute; width: 6px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5arLe .framer-3kzpjq-container, .framer-5arLe .framer-tahlmj-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5arLe .framer-k72n0i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 900px; }\",\".framer-5arLe .framer-1mpvrfy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-1dbqrlb, .framer-5arLe .framer-xbk9e4 { --border-bottom-width: 0.5px; --border-color: #121212; --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; background-color: #383838; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.25), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.4000000059604645), 0px 1px 2px 0px rgba(0,0,0,0.25), 0px 0.6021873017743928px 0.6021873017743928px -0.75px rgba(0, 0, 0, 0.11401), 0px 2.288533303243457px 2.288533303243457px -1.5px rgba(0, 0, 0, 0.11822), 0px 10px 10px -2.25px rgba(0, 0, 0, 0.1375); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 5px 12px 6px 12px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5arLe .framer-97y1ro { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-qypqaz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 60px; width: 100%; }\",\".framer-5arLe .framer-fp73z9, .framer-5arLe .framer-azdkfs { --border-bottom-width: 0.6px; --border-color: #4a4a4a; --border-left-width: 0.6px; --border-right-width: 0.6px; --border-style: solid; --border-top-width: 0.6px; align-content: center; align-items: center; background-color: #292929; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5arLe .framer-18t4ze3-container, .framer-5arLe .framer-1uktxiy-container { flex: none; height: 219px; position: relative; width: 100%; }\",\".framer-5arLe .framer-sootq0, .framer-5arLe .framer-16uzxrv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 26px; position: relative; width: 100%; }\",\".framer-5arLe .framer-en07ll { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 240px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-mdobeg, .framer-5arLe .framer-1dlwhfd, .framer-5arLe .framer-1gs9b05 { --border-bottom-width: 0.5px; --border-color: #4f4f4f; --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: flex-start; align-items: flex-start; background-color: #242424; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5arLe .framer-jm51og, .framer-5arLe .framer-5l44u4, .framer-5arLe .framer-1qnjnhx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-14by1ae, .framer-5arLe .framer-1rxmfk, .framer-5arLe .framer-1qzuoc4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5arLe .framer-uh31z4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-fadux7, .framer-5arLe .framer-1yzjfka { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-84qd9v { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #222222; box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.2), 0px -0.5px 0px 0px rgba(91, 91, 91, 1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-183stoy-container { aspect-ratio: 1.775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 721px); position: relative; width: 100%; }\",\".framer-5arLe .framer-1ugol8h { --border-bottom-width: 1px; --border-color: #191919; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #333333; box-shadow: 0px -0.5px 0px 0px #5b5b5b; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 80px; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-jpqeo2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 600px; }\",\".framer-5arLe .framer-h7jt8e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5arLe .framer-8azjh6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-5arLe .framer-b18npx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 600px; }\",\".framer-5arLe .framer-1q93cbi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-dm920e { --framer-paragraph-spacing: 7px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5arLe .framer-1mykjll { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-h40jz6 { flex: none; height: 83px; position: relative; width: 67px; }\",\".framer-5arLe .framer-mvtkx8 { flex: none; height: 42px; position: relative; width: 155px; }\",\".framer-5arLe .framer-sl4pcw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-5arLe .framer-tb86ka { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 900px; }\",\".framer-5arLe .framer-19nye20 { 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: 900px; }\",\".framer-5arLe .framer-zadqsx { align-content: center; align-items: center; aspect-ratio: 0.6768149882903981 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 428px); justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-5arLe .framer-jt8w6u { --border-bottom-width: 1px; --border-color: #2b2b2b; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3), 0px 5px 20px 0px rgba(0, 0, 0, 0.44999998807907104); flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5arLe .framer-516b9w { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%); bottom: 0px; flex: none; height: 138px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-5arLe .framer-12tw69i { align-content: flex-start; align-items: flex-start; bottom: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; left: 24px; overflow: visible; padding: 0px; position: absolute; right: 24px; }\",\".framer-5arLe .framer-3a2q2f { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.7; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5arLe.framer-1fdantb, .framer-5arLe .framer-1xqthz4, .framer-5arLe .framer-cry43x, .framer-5arLe .framer-wvfkhb, .framer-5arLe .framer-7uo37l, .framer-5arLe .framer-1h213u2, .framer-5arLe .framer-o39ff9, .framer-5arLe .framer-eob5l5, .framer-5arLe .framer-1ly0cco, .framer-5arLe .framer-1ohlu3f, .framer-5arLe .framer-19e19k4, .framer-5arLe .framer-1e425q7, .framer-5arLe .framer-1gjy53b, .framer-5arLe .framer-it6v0j, .framer-5arLe .framer-wjr4kn, .framer-5arLe .framer-jlz4k1, .framer-5arLe .framer-1o5kael, .framer-5arLe .framer-4e3u9t, .framer-5arLe .framer-6dn8dc, .framer-5arLe .framer-k72n0i, .framer-5arLe .framer-1dbqrlb, .framer-5arLe .framer-97y1ro, .framer-5arLe .framer-qypqaz, .framer-5arLe .framer-fp73z9, .framer-5arLe .framer-sootq0, .framer-5arLe .framer-azdkfs, .framer-5arLe .framer-16uzxrv, .framer-5arLe .framer-en07ll, .framer-5arLe .framer-jm51og, .framer-5arLe .framer-5l44u4, .framer-5arLe .framer-1qnjnhx, .framer-5arLe .framer-uh31z4, .framer-5arLe .framer-fadux7, .framer-5arLe .framer-84qd9v, .framer-5arLe .framer-1yzjfka, .framer-5arLe .framer-1ugol8h, .framer-5arLe .framer-1l4x5yz, .framer-5arLe .framer-h7jt8e, .framer-5arLe .framer-b18npx, .framer-5arLe .framer-1q93cbi, .framer-5arLe .framer-1mykjll, .framer-5arLe .framer-sl4pcw, .framer-5arLe .framer-xbk9e4, .framer-5arLe .framer-19nye20, .framer-5arLe .framer-zadqsx, .framer-5arLe .framer-12tw69i { gap: 0px; } .framer-5arLe.framer-1fdantb > *, .framer-5arLe .framer-b18npx > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-5arLe.framer-1fdantb > :first-child, .framer-5arLe .framer-1xqthz4 > :first-child, .framer-5arLe .framer-cry43x > :first-child, .framer-5arLe .framer-wvfkhb > :first-child, .framer-5arLe .framer-1h213u2 > :first-child, .framer-5arLe .framer-1ly0cco > :first-child, .framer-5arLe .framer-19e19k4 > :first-child, .framer-5arLe .framer-1e425q7 > :first-child, .framer-5arLe .framer-it6v0j > :first-child, .framer-5arLe .framer-wjr4kn > :first-child, .framer-5arLe .framer-1o5kael > :first-child, .framer-5arLe .framer-4e3u9t > :first-child, .framer-5arLe .framer-6dn8dc > :first-child, .framer-5arLe .framer-k72n0i > :first-child, .framer-5arLe .framer-97y1ro > :first-child, .framer-5arLe .framer-fp73z9 > :first-child, .framer-5arLe .framer-sootq0 > :first-child, .framer-5arLe .framer-azdkfs > :first-child, .framer-5arLe .framer-16uzxrv > :first-child, .framer-5arLe .framer-jm51og > :first-child, .framer-5arLe .framer-5l44u4 > :first-child, .framer-5arLe .framer-1qnjnhx > :first-child, .framer-5arLe .framer-uh31z4 > :first-child, .framer-5arLe .framer-fadux7 > :first-child, .framer-5arLe .framer-84qd9v > :first-child, .framer-5arLe .framer-1yzjfka > :first-child, .framer-5arLe .framer-b18npx > :first-child, .framer-5arLe .framer-1q93cbi > :first-child, .framer-5arLe .framer-sl4pcw > :first-child, .framer-5arLe .framer-12tw69i > :first-child { margin-top: 0px; } .framer-5arLe.framer-1fdantb > :last-child, .framer-5arLe .framer-1xqthz4 > :last-child, .framer-5arLe .framer-cry43x > :last-child, .framer-5arLe .framer-wvfkhb > :last-child, .framer-5arLe .framer-1h213u2 > :last-child, .framer-5arLe .framer-1ly0cco > :last-child, .framer-5arLe .framer-19e19k4 > :last-child, .framer-5arLe .framer-1e425q7 > :last-child, .framer-5arLe .framer-it6v0j > :last-child, .framer-5arLe .framer-wjr4kn > :last-child, .framer-5arLe .framer-1o5kael > :last-child, .framer-5arLe .framer-4e3u9t > :last-child, .framer-5arLe .framer-6dn8dc > :last-child, .framer-5arLe .framer-k72n0i > :last-child, .framer-5arLe .framer-97y1ro > :last-child, .framer-5arLe .framer-fp73z9 > :last-child, .framer-5arLe .framer-sootq0 > :last-child, .framer-5arLe .framer-azdkfs > :last-child, .framer-5arLe .framer-16uzxrv > :last-child, .framer-5arLe .framer-jm51og > :last-child, .framer-5arLe .framer-5l44u4 > :last-child, .framer-5arLe .framer-1qnjnhx > :last-child, .framer-5arLe .framer-uh31z4 > :last-child, .framer-5arLe .framer-fadux7 > :last-child, .framer-5arLe .framer-84qd9v > :last-child, .framer-5arLe .framer-1yzjfka > :last-child, .framer-5arLe .framer-b18npx > :last-child, .framer-5arLe .framer-1q93cbi > :last-child, .framer-5arLe .framer-sl4pcw > :last-child, .framer-5arLe .framer-12tw69i > :last-child { margin-bottom: 0px; } .framer-5arLe .framer-1xqthz4 > *, .framer-5arLe .framer-84qd9v > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-5arLe .framer-cry43x > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-5arLe .framer-wvfkhb > *, .framer-5arLe .framer-sl4pcw > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-5arLe .framer-7uo37l > *, .framer-5arLe .framer-1l4x5yz > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-5arLe .framer-7uo37l > :first-child, .framer-5arLe .framer-o39ff9 > :first-child, .framer-5arLe .framer-eob5l5 > :first-child, .framer-5arLe .framer-1ohlu3f > :first-child, .framer-5arLe .framer-1gjy53b > :first-child, .framer-5arLe .framer-jlz4k1 > :first-child, .framer-5arLe .framer-1dbqrlb > :first-child, .framer-5arLe .framer-qypqaz > :first-child, .framer-5arLe .framer-en07ll > :first-child, .framer-5arLe .framer-1ugol8h > :first-child, .framer-5arLe .framer-1l4x5yz > :first-child, .framer-5arLe .framer-h7jt8e > :first-child, .framer-5arLe .framer-1mykjll > :first-child, .framer-5arLe .framer-xbk9e4 > :first-child, .framer-5arLe .framer-19nye20 > :first-child, .framer-5arLe .framer-zadqsx > :first-child { margin-left: 0px; } .framer-5arLe .framer-7uo37l > :last-child, .framer-5arLe .framer-o39ff9 > :last-child, .framer-5arLe .framer-eob5l5 > :last-child, .framer-5arLe .framer-1ohlu3f > :last-child, .framer-5arLe .framer-1gjy53b > :last-child, .framer-5arLe .framer-jlz4k1 > :last-child, .framer-5arLe .framer-1dbqrlb > :last-child, .framer-5arLe .framer-qypqaz > :last-child, .framer-5arLe .framer-en07ll > :last-child, .framer-5arLe .framer-1ugol8h > :last-child, .framer-5arLe .framer-1l4x5yz > :last-child, .framer-5arLe .framer-h7jt8e > :last-child, .framer-5arLe .framer-1mykjll > :last-child, .framer-5arLe .framer-xbk9e4 > :last-child, .framer-5arLe .framer-19nye20 > :last-child, .framer-5arLe .framer-zadqsx > :last-child { margin-right: 0px; } .framer-5arLe .framer-1h213u2 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-5arLe .framer-o39ff9 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-5arLe .framer-eob5l5 > *, .framer-5arLe .framer-1mykjll > *, .framer-5arLe .framer-zadqsx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5arLe .framer-1ly0cco > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-5arLe .framer-1ohlu3f > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-5arLe .framer-19e19k4 > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-5arLe .framer-1e425q7 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-5arLe .framer-1gjy53b > *, .framer-5arLe .framer-1dbqrlb > *, .framer-5arLe .framer-xbk9e4 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-5arLe .framer-it6v0j > *, .framer-5arLe .framer-fp73z9 > *, .framer-5arLe .framer-azdkfs > *, .framer-5arLe .framer-fadux7 > *, .framer-5arLe .framer-1yzjfka > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5arLe .framer-wjr4kn > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-5arLe .framer-jlz4k1 > * { margin: 0px; margin-left: calc(44px / 2); margin-right: calc(44px / 2); } .framer-5arLe .framer-1o5kael > *, .framer-5arLe .framer-4e3u9t > *, .framer-5arLe .framer-6dn8dc > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-5arLe .framer-k72n0i > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-5arLe .framer-97y1ro > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-5arLe .framer-qypqaz > *, .framer-5arLe .framer-en07ll > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-5arLe .framer-sootq0 > *, .framer-5arLe .framer-16uzxrv > *, .framer-5arLe .framer-jm51og > *, .framer-5arLe .framer-5l44u4 > *, .framer-5arLe .framer-1qnjnhx > *, .framer-5arLe .framer-12tw69i > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-5arLe .framer-uh31z4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5arLe .framer-1ugol8h > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-5arLe .framer-h7jt8e > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-5arLe .framer-1q93cbi > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-5arLe .framer-19nye20 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-5arLe[data-border=\"true\"]::after, .framer-5arLe [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 719px) { .framer-5arLe.framer-1fdantb { width: 390px; } .framer-5arLe .framer-1xqthz4 { justify-content: center; padding: 30px 0px 0px 0px; } .framer-5arLe .framer-1vfy9id { width: 100%; } .framer-5arLe .framer-wvfkhb, .framer-5arLe .framer-wjr4kn, .framer-5arLe .framer-k72n0i, .framer-5arLe .framer-b18npx, .framer-5arLe .framer-tb86ka { width: 95%; } .framer-5arLe .framer-o39ff9, .framer-5arLe .framer-en07ll { flex-direction: column; height: min-content; } .framer-5arLe .framer-eob5l5 { flex: none; height: min-content; width: 100%; } .framer-5arLe .framer-whwxap { height: 316px; } .framer-5arLe .framer-11po2sv-container { height: var(--framer-aspect-ratio-supported, 100px); } .framer-5arLe .framer-jlz4k1 { flex-direction: column; gap: 34px; width: 95%; } .framer-5arLe .framer-1o5kael, .framer-5arLe .framer-4e3u9t, .framer-5arLe .framer-6dn8dc, .framer-5arLe .framer-fp73z9, .framer-5arLe .framer-azdkfs { flex: none; width: 100%; } .framer-5arLe .framer-qypqaz { flex-direction: column; } .framer-5arLe .framer-18t4ze3-container, .framer-5arLe .framer-1uktxiy-container { height: 200px; } .framer-5arLe .framer-mdobeg, .framer-5arLe .framer-1dlwhfd, .framer-5arLe .framer-1gs9b05 { flex: none; height: 212px; width: 100%; } .framer-5arLe .framer-183stoy-container { height: var(--framer-aspect-ratio-supported, 113px); } .framer-5arLe .framer-jpqeo2 { flex: 0.95 0 0px; width: 1px; } .framer-5arLe .framer-19nye20 { flex-direction: column; width: 95%; } .framer-5arLe .framer-zadqsx { aspect-ratio: unset; flex: none; height: 388px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5arLe .framer-o39ff9, .framer-5arLe .framer-jlz4k1, .framer-5arLe .framer-qypqaz, .framer-5arLe .framer-en07ll, .framer-5arLe .framer-19nye20 { gap: 0px; } .framer-5arLe .framer-o39ff9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-5arLe .framer-o39ff9 > :first-child, .framer-5arLe .framer-jlz4k1 > :first-child, .framer-5arLe .framer-qypqaz > :first-child, .framer-5arLe .framer-en07ll > :first-child, .framer-5arLe .framer-19nye20 > :first-child { margin-top: 0px; } .framer-5arLe .framer-o39ff9 > :last-child, .framer-5arLe .framer-jlz4k1 > :last-child, .framer-5arLe .framer-qypqaz > :last-child, .framer-5arLe .framer-en07ll > :last-child, .framer-5arLe .framer-19nye20 > :last-child { margin-bottom: 0px; } .framer-5arLe .framer-jlz4k1 > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-5arLe .framer-qypqaz > *, .framer-5arLe .framer-en07ll > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-5arLe .framer-19nye20 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\",\"@media (min-width: 720px) and (max-width: 1279px) { .framer-5arLe.framer-1fdantb { width: 720px; } .framer-5arLe .framer-wvfkhb, .framer-5arLe .framer-tb86ka, .framer-5arLe .framer-19nye20 { width: 100%; } .framer-5arLe .framer-wjr4kn, .framer-5arLe .framer-k72n0i { width: 95%; } .framer-5arLe .framer-11po2sv-container { height: var(--framer-aspect-ratio-supported, 342px); } .framer-5arLe .framer-qypqaz { flex-direction: column; } .framer-5arLe .framer-fp73z9, .framer-5arLe .framer-azdkfs { flex: none; width: 100%; } .framer-5arLe .framer-18t4ze3-container, .framer-5arLe .framer-1uktxiy-container { height: 320px; } .framer-5arLe .framer-en07ll { flex-direction: column; height: min-content; } .framer-5arLe .framer-mdobeg, .framer-5arLe .framer-1dlwhfd, .framer-5arLe .framer-1gs9b05 { flex: none; height: 240px; width: 100%; } .framer-5arLe .framer-183stoy-container { height: var(--framer-aspect-ratio-supported, 406px); } .framer-5arLe .framer-zadqsx { height: var(--framer-aspect-ratio-supported, 339px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5arLe .framer-qypqaz, .framer-5arLe .framer-en07ll { gap: 0px; } .framer-5arLe .framer-qypqaz > *, .framer-5arLe .framer-en07ll > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-5arLe .framer-qypqaz > :first-child, .framer-5arLe .framer-en07ll > :first-child { margin-top: 0px; } .framer-5arLe .framer-qypqaz > :last-child, .framer-5arLe .framer-en07ll > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5577.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"I9C4jjxtd\":{\"layout\":[\"fixed\",\"auto\"]},\"OyIDvrDru\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"MFnjpNiHV\":{\"pattern\":\":MFnjpNiHV\",\"name\":\"hero\"},\"STaFvNI1z\":{\"pattern\":\":STaFvNI1z\",\"name\":\"bootcamps\"},\"A4iSYcms2\":{\"pattern\":\":A4iSYcms2\",\"name\":\"gratuit\"}}\n * @framerResponsiveScreen\n */const Framerx1C4NroI4=withCSS(Component,css,\"framer-5arLe\");export default Framerx1C4NroI4;Framerx1C4NroI4.displayName=\"Cards First\";Framerx1C4NroI4.defaultProps={height:5577.5,width:1280};addFonts(Framerx1C4NroI4,[{explicitInter:true,fonts:[{family:\"Decimal Extra Black Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/tZHfOVJhouzyU14PG6WEfrlb07M.ttf\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxw6XweuBCY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVewqFGC_p9dw.woff2\",weight:\"700\"}]},...NavigationFonts,...YouTubeFonts,...ClientsFonts,...TimeDateFonts,...NewFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerx1C4NroI4\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"5577.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I9C4jjxtd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OyIDvrDru\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1280\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"MFnjpNiHV\\\":{\\\"pattern\\\":\\\":MFnjpNiHV\\\",\\\"name\\\":\\\"hero\\\"},\\\"STaFvNI1z\\\":{\\\"pattern\\\":\\\":STaFvNI1z\\\",\\\"name\\\":\\\"bootcamps\\\"},\\\"A4iSYcms2\\\":{\\\"pattern\\\":\\\":A4iSYcms2\\\",\\\"name\\\":\\\"gratuit\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStack", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "defaultProps", "Time", "props", "mergedProps", "color", "font", "tabularFont", "useLocaleCode", "getTextContent", "te", "timeoutRef", "pe", "updateCountdown", "node", "prev", "tick", "next", "textContent", "visible", "setIsVisible", "ye", "isCanvas", "RenderTarget", "ue", "Z", "p", "addPropertyControls", "ControlType", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationFonts", "getFonts", "hEjOHBcb7_default", "YouTubeFonts", "Youtube", "MotionDivWithFX", "withFX", "motion", "ClientsFonts", "WMYakl_JK_default", "TimeDateFonts", "Time", "NewFooterFonts", "UjBhxbQp9_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "animation", "transition2", "animation1", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition3", "animation2", "transition4", "animation3", "animation4", "animation5", "animation6", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "dwgk1B8WihkRrzvP8d", "waxTS47xHhkRrzvP8d", "vzApNILN9hkRrzvP8d", "C9DfdNk47hkRrzvP8d", "d_YsN7LOwhkRrzvP8d", "idhkRrzvP8d", "UxkyV8fVZJ1QAl_i5x", "vVX6KkJgwJ1QAl_i5x", "wU6CGXI_KJ1QAl_i5x", "WV1DTF2YKJ1QAl_i5x", "idJ1QAl_i5x", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "usePreloadLocalizedValues", "elementId1", "ref2", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "hEjOHBcb7_default", "getLocalizedValue", "x", "RichText2", "SVG", "ChildrenCanSuspend", "fz25mphHA_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "getLoadingLazyAtYPosition", "Image2", "Youtube", "MotionDivWithFX", "WMYakl_JK_default", "Time", "lZSu4Zwy8_default", "collection1", "paginationInfo1", "loadMore1", "index1", "UjBhxbQp9_default", "css", "Framerx1C4NroI4", "withCSS", "x1C4NroI4_default", "addFonts", "NavigationFonts", "YouTubeFonts", "ClientsFonts", "TimeDateFonts", "NewFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
