CINXE.COM
CERN70 – Inspiring the Future
<!DOCTYPE html> <html lang="en-GB"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name='robots' content='max-image-preview:large' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <link rel="alternate" href="https://cern70.cern/" hreflang="en" /> <link rel="alternate" href="https://cern70.cern/fr/home/" hreflang="fr" /> <link rel="alternate" href="https://cern70.cern/de/" hreflang="de" /> <title>CERN70 – Inspiring the Future</title> <link rel='dns-prefetch' href='//malsup.github.io' /> <link rel='dns-prefetch' href='//unpkg.com' /> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel="alternate" type="application/rss+xml" title="CERN70 » Feed" href="https://cern70.cern/feed/" /> <link rel="alternate" type="application/rss+xml" title="CERN70 » Comments Feed" href="https://cern70.cern/comments/feed/" /> <script> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/cern70.cern\/wp-includes\/js\/wp-emoji.js?ver=6.7.2","twemoji":"https:\/\/cern70.cern\/wp-includes\/js\/twemoji.js?ver=6.7.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); </script> <style id='wp-block-site-logo-inline-css'> .wp-block-site-logo{ box-sizing:border-box; line-height:0; } .wp-block-site-logo a{ display:inline-block; line-height:0; } .wp-block-site-logo.is-default-size img{ height:auto; width:120px; } .wp-block-site-logo img{ height:auto; max-width:100%; } .wp-block-site-logo a,.wp-block-site-logo img{ border-radius:inherit; } .wp-block-site-logo.aligncenter{ margin-left:auto; margin-right:auto; text-align:center; } :root :where(.wp-block-site-logo.is-style-rounded){ border-radius:9999px; } </style> <style id='wp-block-site-title-inline-css'> .wp-block-site-title{ box-sizing:border-box; } .wp-block-site-title :where(a){ color:inherit; font-family:inherit; font-size:inherit; font-style:inherit; font-weight:inherit; letter-spacing:inherit; line-height:inherit; text-decoration:inherit; } </style> <style id='wp-block-group-inline-css'> .wp-block-group{ box-sizing:border-box; } :where(.wp-block-group.wp-block-group-is-layout-constrained){ position:relative; } </style> <style id='wp-block-columns-inline-css'> .wp-block-columns{ align-items:normal !important; box-sizing:border-box; display:flex; flex-wrap:wrap !important; } @media (min-width:782px){ .wp-block-columns{ flex-wrap:nowrap !important; } } .wp-block-columns.are-vertically-aligned-top{ align-items:flex-start; } .wp-block-columns.are-vertically-aligned-center{ align-items:center; } .wp-block-columns.are-vertically-aligned-bottom{ align-items:flex-end; } @media (max-width:781px){ .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{ flex-basis:100% !important; } } @media (min-width:782px){ .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{ flex-basis:0; flex-grow:1; } .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis]{ flex-grow:0; } } .wp-block-columns.is-not-stacked-on-mobile{ flex-wrap:nowrap !important; } .wp-block-columns.is-not-stacked-on-mobile>.wp-block-column{ flex-basis:0; flex-grow:1; } .wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis]{ flex-grow:0; } :where(.wp-block-columns){ margin-bottom:1.75em; } :where(.wp-block-columns.has-background){ padding:1.25em 2.375em; } .wp-block-column{ flex-grow:1; min-width:0; overflow-wrap:break-word; word-break:break-word; } .wp-block-column.is-vertically-aligned-top{ align-self:flex-start; } .wp-block-column.is-vertically-aligned-center{ align-self:center; } .wp-block-column.is-vertically-aligned-bottom{ align-self:flex-end; } .wp-block-column.is-vertically-aligned-stretch{ align-self:stretch; } .wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{ width:100%; } </style> <style id='wp-block-spacer-inline-css'> .wp-block-spacer{ clear:both; } </style> <style id='wp-block-heading-inline-css'> h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{ padding:1.25em 2.375em; } h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){ rotate:180deg; } </style> <style id='wp-block-embed-inline-css'> .wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type="core/embed"],.wp-block[data-align=right]>[data-type="core/embed"]{ max-width:360px; width:100%; } .wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper{ min-width:280px; } .wp-block-cover .wp-block-embed{ min-height:240px; min-width:320px; } .wp-block-embed{ overflow-wrap:break-word; } .wp-block-embed :where(figcaption){ margin-bottom:1em; margin-top:.5em; } .wp-block-embed iframe{ max-width:100%; } .wp-block-embed__wrapper{ position:relative; } .wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{ content:""; display:block; padding-top:50%; } .wp-embed-responsive .wp-has-aspect-ratio iframe{ bottom:0; height:100%; left:0; position:absolute; right:0; top:0; width:100%; } .wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{ padding-top:42.85%; } .wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{ padding-top:50%; } .wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{ padding-top:56.25%; } .wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{ padding-top:75%; } .wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{ padding-top:100%; } .wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{ padding-top:177.77%; } .wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{ padding-top:200%; } </style> <style id='wp-block-paragraph-inline-css'> .is-small-text{ font-size:.875em; } .is-regular-text{ font-size:1em; } .is-large-text{ font-size:2.25em; } .is-larger-text{ font-size:3em; } .has-drop-cap:not(:focus):first-letter{ float:left; font-size:8.4em; font-style:normal; font-weight:100; line-height:.68; margin:.05em .1em 0 0; text-transform:uppercase; } body.rtl .has-drop-cap:not(:focus):first-letter{ float:none; margin-left:.1em; } p.has-drop-cap.has-background{ overflow:hidden; } :root :where(p.has-background){ padding:1.25em 2.375em; } :where(p.has-text-color:not(.has-link-color)) a{ color:inherit; } p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{ rotate:180deg; } </style> <style id='wp-block-button-inline-css'> .wp-block-button__link{ box-sizing:border-box; cursor:pointer; display:inline-block; text-align:center; word-break:break-word; } .wp-block-button__link.aligncenter{ text-align:center; } .wp-block-button__link.alignright{ text-align:right; } :where(.wp-block-button__link){ border-radius:9999px; box-shadow:none; padding:calc(.667em + 2px) calc(1.333em + 2px); text-decoration:none; } .wp-block-button[style*=text-decoration] .wp-block-button__link{ text-decoration:inherit; } .wp-block-buttons>.wp-block-button.has-custom-width{ max-width:none; } .wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link{ width:100%; } .wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link{ font-size:inherit; } .wp-block-buttons>.wp-block-button.wp-block-button__width-25{ width:calc(25% - var(--wp--style--block-gap, .5em)*.75); } .wp-block-buttons>.wp-block-button.wp-block-button__width-50{ width:calc(50% - var(--wp--style--block-gap, .5em)*.5); } .wp-block-buttons>.wp-block-button.wp-block-button__width-75{ width:calc(75% - var(--wp--style--block-gap, .5em)*.25); } .wp-block-buttons>.wp-block-button.wp-block-button__width-100{ flex-basis:100%; width:100%; } .wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25{ width:25%; } .wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50{ width:50%; } .wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75{ width:75%; } .wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{ border-radius:0; } .wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{ border-radius:0 !important; } :root :where(.wp-block-button .wp-block-button__link.is-style-outline),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link){ border:2px solid; padding:.667em 1.333em; } :root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color)){ color:currentColor; } :root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background)){ background-color:initial; background-image:none; } </style> <style id='wp-block-buttons-inline-css'> .wp-block-buttons.is-vertical{ flex-direction:column; } .wp-block-buttons.is-vertical>.wp-block-button:last-child{ margin-bottom:0; } .wp-block-buttons>.wp-block-button{ display:inline-block; margin:0; } .wp-block-buttons.is-content-justification-left{ justify-content:flex-start; } .wp-block-buttons.is-content-justification-left.is-vertical{ align-items:flex-start; } .wp-block-buttons.is-content-justification-center{ justify-content:center; } .wp-block-buttons.is-content-justification-center.is-vertical{ align-items:center; } .wp-block-buttons.is-content-justification-right{ justify-content:flex-end; } .wp-block-buttons.is-content-justification-right.is-vertical{ align-items:flex-end; } .wp-block-buttons.is-content-justification-space-between{ justify-content:space-between; } .wp-block-buttons.aligncenter{ text-align:center; } .wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{ margin-left:auto; margin-right:auto; width:100%; } .wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{ text-decoration:inherit; } .wp-block-buttons.has-custom-font-size .wp-block-button__link{ font-size:inherit; } .wp-block-button.aligncenter{ text-align:center; } </style> <link rel='stylesheet' id='wp-block-cover-css' href='https://cern70.cern/wp-includes/blocks/cover/style.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='indico-blocks-events-slider-style-css' href='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/build/events-slider/style-index.css?ver=0.1.3' media='all' /> <style id='wp-block-post-content-inline-css'> .wp-block-post-content{ display:flow-root; } </style> <style id='wp-block-separator-inline-css'> @charset "UTF-8"; .wp-block-separator{ border:none; border-top:2px solid; } :root :where(.wp-block-separator.is-style-dots){ height:auto; line-height:1; text-align:center; } :root :where(.wp-block-separator.is-style-dots):before{ color:currentColor; content:"···"; font-family:serif; font-size:1.5em; letter-spacing:2em; padding-left:2em; } .wp-block-separator.is-style-dots{ background:none !important; border:none !important; } </style> <style id='wp-block-navigation-link-inline-css'> .wp-block-navigation .wp-block-navigation-item__label{ overflow-wrap:break-word; } .wp-block-navigation .wp-block-navigation-item__description{ display:none; } .link-ui-tools{ border-top:1px solid #f0f0f0; padding:8px; } .link-ui-block-inserter{ padding-top:8px; } .link-ui-block-inserter__back{ margin-left:8px; text-transform:uppercase; } </style> <link rel='stylesheet' id='wp-block-navigation-css' href='https://cern70.cern/wp-includes/blocks/navigation/style.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='wp-block-social-links-css' href='https://cern70.cern/wp-includes/blocks/social-links/style.css?ver=6.7.2' media='all' /> <style id='wp-block-library-inline-css'> :root{ --wp-admin-theme-color:#007cba; --wp-admin-theme-color--rgb:0, 124, 186; --wp-admin-theme-color-darker-10:#006ba1; --wp-admin-theme-color-darker-10--rgb:0, 107, 161; --wp-admin-theme-color-darker-20:#005a87; --wp-admin-theme-color-darker-20--rgb:0, 90, 135; --wp-admin-border-width-focus:2px; --wp-block-synced-color:#7a00df; --wp-block-synced-color--rgb:122, 0, 223; --wp-bound-block-color:var(--wp-block-synced-color); } @media (min-resolution:192dpi){ :root{ --wp-admin-border-width-focus:1.5px; } } .wp-element-button{ cursor:pointer; } :root{ --wp--preset--font-size--normal:16px; --wp--preset--font-size--huge:42px; } :root .has-very-light-gray-background-color{ background-color:#eee; } :root .has-very-dark-gray-background-color{ background-color:#313131; } :root .has-very-light-gray-color{ color:#eee; } :root .has-very-dark-gray-color{ color:#313131; } :root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{ background:linear-gradient(135deg, #00d084, #0693e3); } :root .has-purple-crush-gradient-background{ background:linear-gradient(135deg, #34e2e4, #4721fb 50%, #ab1dfe); } :root .has-hazy-dawn-gradient-background{ background:linear-gradient(135deg, #faaca8, #dad0ec); } :root .has-subdued-olive-gradient-background{ background:linear-gradient(135deg, #fafae1, #67a671); } :root .has-atomic-cream-gradient-background{ background:linear-gradient(135deg, #fdd79a, #004a59); } :root .has-nightshade-gradient-background{ background:linear-gradient(135deg, #330968, #31cdcf); } :root .has-midnight-gradient-background{ background:linear-gradient(135deg, #020381, #2874fc); } .has-regular-font-size{ font-size:1em; } .has-larger-font-size{ font-size:2.625em; } .has-normal-font-size{ font-size:var(--wp--preset--font-size--normal); } .has-huge-font-size{ font-size:var(--wp--preset--font-size--huge); } .has-text-align-center{ text-align:center; } .has-text-align-left{ text-align:left; } .has-text-align-right{ text-align:right; } #end-resizable-editor-section{ display:none; } .aligncenter{ clear:both; } .items-justified-left{ justify-content:flex-start; } .items-justified-center{ justify-content:center; } .items-justified-right{ justify-content:flex-end; } .items-justified-space-between{ justify-content:space-between; } .screen-reader-text{ border:0; clip:rect(1px, 1px, 1px, 1px); clip-path:inset(50%); height:1px; margin:-1px; overflow:hidden; padding:0; position:absolute; width:1px; word-wrap:normal !important; } .screen-reader-text:focus{ background-color:#ddd; clip:auto !important; clip-path:none; color:#444; display:block; font-size:1em; height:auto; left:5px; line-height:normal; padding:15px 23px 14px; text-decoration:none; top:5px; width:auto; z-index:100000; } html :where(.has-border-color){ border-style:solid; } html :where([style*=border-top-color]){ border-top-style:solid; } html :where([style*=border-right-color]){ border-right-style:solid; } html :where([style*=border-bottom-color]){ border-bottom-style:solid; } html :where([style*=border-left-color]){ border-left-style:solid; } html :where([style*=border-width]){ border-style:solid; } html :where([style*=border-top-width]){ border-top-style:solid; } html :where([style*=border-right-width]){ border-right-style:solid; } html :where([style*=border-bottom-width]){ border-bottom-style:solid; } html :where([style*=border-left-width]){ border-left-style:solid; } html :where(img[class*=wp-image-]){ height:auto; max-width:100%; } :where(figure){ margin:0 0 1em; } html :where(.is-position-sticky){ --wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height, 0px); } @media screen and (max-width:600px){ html :where(.is-position-sticky){ --wp-admin--admin-bar--position-offset:0px; } } </style> <style id='global-styles-inline-css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--base: #E5E7F2;--wp--preset--color--contrast: #47484B;--wp--preset--color--primary: #00469e;--wp--preset--color--secondary: #0B0033;--wp--preset--color--tertiary: #F9F9FB;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.156), 1rem);--wp--preset--font-size--medium: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.234), 1.187rem);--wp--preset--font-size--large: clamp(1.187rem, 1.187rem + ((1vw - 0.2rem) * 0.158), 1.3125rem);--wp--preset--font-size--x-large: clamp(1.562rem, 1.562rem + ((1vw - 0.2rem) * 0.548), 2rem);--wp--preset--font-size--xx-large: clamp(3.375rem, 3.375rem + ((1vw - 0.2rem) * 4.531), 7rem);--wp--preset--font-family--dm-sans: "DM Sans", sans-serif;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--inter: "Inter", sans-serif;--wp--preset--font-family--system-font: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--wp--preset--font-family--source-serif-pro: "Source Serif Pro", serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: clamp(1.5rem, 5vw, 2rem);--wp--preset--spacing--40: clamp(1.8rem, 1.8rem + ((1vw - 0.48rem) * 2.885), 3rem);--wp--preset--spacing--50: clamp(2.5rem, 8vw, 4.5rem);--wp--preset--spacing--60: clamp(3.75rem, 10vw, 7rem);--wp--preset--spacing--70: clamp(5rem, 5.25rem + ((1vw - 0.48rem) * 9.096), 8rem);--wp--preset--spacing--80: clamp(7rem, 14vw, 11rem);--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: 100%;--wp--style--global--wide-size: 100%; }:where(body) { margin: 0; }.wp-site-blocks { padding-top: var(--wp--style--root--padding-top); padding-bottom: var(--wp--style--root--padding-bottom); }.has-global-padding { padding-right: var(--wp--style--root--padding-right); padding-left: var(--wp--style--root--padding-left); }.has-global-padding > .alignfull { margin-right: calc(var(--wp--style--root--padding-right) * -1); margin-left: calc(var(--wp--style--root--padding-left) * -1); }.has-global-padding :where(:not(.alignfull.is-layout-flow) > .has-global-padding:not(.wp-block-block, .alignfull)) { padding-right: 0; padding-left: 0; }.has-global-padding :where(:not(.alignfull.is-layout-flow) > .has-global-padding:not(.wp-block-block, .alignfull)) > .alignfull { margin-left: 0; margin-right: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 1.5rem; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 1.5rem; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 1.5rem;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 1.5rem;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 1.5rem;}:root :where(.is-layout-grid){gap: 1.5rem;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{background-color: var(--wp--preset--color--base);border-color: var(--wp--preset--color--tertiary);border-width: max(1vw, 0.5rem);border-style: solid;color: var(--wp--preset--color--contrast);font-family: var(--wp--preset--font-family--dm-sans);font-size: var(--wp--preset--font-size--medium);line-height: 1.6;--wp--style--root--padding-top: var(--wp--preset--spacing--40);--wp--style--root--padding-right: 0;--wp--style--root--padding-bottom: var(--wp--preset--spacing--40);--wp--style--root--padding-left: 0;}a:where(:not(.wp-element-button)){border-color: var(--wp--preset--color--primary);border-width: 0 0 2px 0;border-style: solid;color: var(--wp--preset--color--secondary);text-decoration: none;}:root :where(a:where(:not(.wp-element-button)):hover){border-color: var(--wp--preset--color--contrast);color: var(--wp--preset--color--secondary);text-decoration: none;}:root :where(a:where(:not(.wp-element-button)):focus){border-style: dashed;text-decoration: none;}:root :where(a:where(:not(.wp-element-button)):active){border-width: 0;color: var(--wp--preset--color--secondary);text-decoration: none;}h1, h2, h3, h4, h5, h6{color: var(--wp--preset--color--secondary);font-family: var(--wp--preset--font-family--system-font);font-weight: 400;line-height: 1.4;}h1{font-family: var(--wp--preset--font-family--system-font);font-size: clamp(4.21rem, 1.43vw + 3.85rem, 5rem);font-weight: 300;letter-spacing: -0.01em;line-height: 1.2;}h2{color: var(--wp--preset--color--secondary);font-family: var(--wp--preset--font-family--system-font);font-size: clamp(3.16rem, 1.08vw + 2.89rem, 3.75rem);font-weight: 400;letter-spacing: -0.01em;line-height: 1.2;}h3{color: var(--wp--preset--color--secondary);font-size: clamp(2.37rem, 0.81vw + 2.17rem, 2.81rem);font-weight: 500;}h4{font-size: clamp(1.78rem, 0.61vw + 1.63rem, 2.11rem);font-weight: 600;}h5{font-size: clamp(1.33rem, 0.45vw + 1.22rem, 1.58rem);font-weight: 700;letter-spacing: 1px;text-transform: uppercase;}h6{font-size: clamp(1rem, 0.34vw + 0.91rem, 1.19rem);font-weight: 900;letter-spacing: 2px;text-transform: uppercase;}:root :where(.wp-element-button, .wp-block-button__link){background-color: transparent;border-radius: 10px;border-color: var(--wp--preset--color--primary);border-width: 2px 2px 6px 2px !important;border-style: solid;color: var(--wp--preset--color--primary);font-family: inherit;font-size: inherit;font-weight: 700;letter-spacing: 1px;line-height: inherit;padding-top: min(1rem, 3vw) !important;padding-right: min(2.75rem, 6vw) !important;padding-bottom: min(1rem, 3vw) !important;padding-left: min(2.75rem, 6vw) !important;text-decoration: none;text-transform: uppercase;}:root :where(.wp-element-button:visited, .wp-block-button__link:visited){color: var(--wp--preset--color--primary);}:root :where(.wp-element-button:hover, .wp-block-button__link:hover){background-color: var(--wp--preset--color--tertiary);border-color: var(--wp--preset--color--secondary);border-width: 2px 2px 4px 2px !important;color: var(--wp--preset--color--secondary);padding-bottom: min(calc(1rem + 2px), 3vw) !important;}:root :where(.wp-element-button:focus, .wp-block-button__link:focus){background-color: var(--wp--preset--color--tertiary);border-color: var(--wp--preset--color--secondary);border-width: 2px 2px 4px 2px !important;border-style: dashed dashed double;color: var(--wp--preset--color--secondary);padding-bottom: min(calc(1rem + 2px), 3vw) !important;}:root :where(.wp-element-button:active, .wp-block-button__link:active){background-color: var(--wp--preset--color--tertiary);border-color: var(--wp--preset--color--secondary);border-width: 2px 2px 4px 2px !important;color: var(--wp--preset--color--secondary);padding-bottom: min(calc(1rem + 2px), 3vw) !important;}cite{font-family: var(--wp--preset--font-family--source-serif-pro);}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-base-color{color: var(--wp--preset--color--base) !important;}.has-contrast-color{color: var(--wp--preset--color--contrast) !important;}.has-primary-color{color: var(--wp--preset--color--primary) !important;}.has-secondary-color{color: var(--wp--preset--color--secondary) !important;}.has-tertiary-color{color: var(--wp--preset--color--tertiary) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-base-background-color{background-color: var(--wp--preset--color--base) !important;}.has-contrast-background-color{background-color: var(--wp--preset--color--contrast) !important;}.has-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.has-secondary-background-color{background-color: var(--wp--preset--color--secondary) !important;}.has-tertiary-background-color{background-color: var(--wp--preset--color--tertiary) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-base-border-color{border-color: var(--wp--preset--color--base) !important;}.has-contrast-border-color{border-color: var(--wp--preset--color--contrast) !important;}.has-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.has-secondary-border-color{border-color: var(--wp--preset--color--secondary) !important;}.has-tertiary-border-color{border-color: var(--wp--preset--color--tertiary) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-xx-large-font-size{font-size: var(--wp--preset--font-size--xx-large) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-system-font-font-family{font-family: var(--wp--preset--font-family--system-font) !important;}.has-source-serif-pro-font-family{font-family: var(--wp--preset--font-family--source-serif-pro) !important;}/* Making full width Smart Slider sliders actually full width */ div.n2-section-smartslider div.n2-ss-slider[data-responsive='fullwidth'] .n2-ss-slide-limiter { max-width: none !important; } /* Removing underline from site logo */ div.wp-block-site-logo { a { border: none !important; } } /* Overriding all fonts with Arial */ body{ --wp--preset--font-family--dm-sans: Arial; --wp--preset--font-family--ibm-plex-mono: Arial; --wp--preset--font-family--inter: Arial; --wp--preset--font-family--system-font: Arial; --wp--preset--font-family--source-serif-pro: Arial; } /* Heading sizes */ h1 { font-size: 60px; } h2 { font-size: 37.2px; } h3 { font-size: 23px; } h4 { font-size: 17px } h5 { 14.2px; } /* Overriding button styling */ .wp-block-button, .wp-element-button { border-style: none; border-radius: 0px; /* background-color: #04b9e3; */ background-color: #174190; color: white; &:hover { background-color: black; color: white; } } .wp-block-indico-blocks-events-slider { div.slideshow-wrapper { ul.cycle-slideshow { div.cycle-carousel-wrap { white-space: normal !important; display: flex; } } /* Show white arrow inside circle on hover */ &:hover { border: 3px solid; } /* Show left arrow to the left of slideshow */ &.dashicon-left { order: -1; } span.dashicons { font-size: 30px; cursor: pointer; } } } /* Specific styling for carousel */ .indico-cycle-carousel { div.slideshow-wrapper { display: flex; align-items: center; } } /* Specific styling for swipable slider */ .indico-cycle-slider { div.slideshow-wrapper { flex-direction: column; .nav-arrows-wrapper { display: flex; justify-content: center; } } } .indico-cycle-slider { display: none; } .indico-cycle-carousel { display: flex; flex-direction: column; } /* Hide carousel, show swipable slider for smaller screens */ @media screen and (max-width: 1060px) { .indico-cycle-carousel { display: none; } .indico-cycle-slider { display: flex; flex-direction: column; } } /* Hide swipable slider, show carousel for bigger screens */ @media screen and (min-width: 1060px) { .indico-cycle-slider { display: none; } .indico-cycle-carousel { display: flex; flex-direction: column; } } } /* Accessible indico pagination colors */ .indico-pagination-link { color: #000 !important; } /* Removing scrolling in event boxes */ p.indico-event-location { overflow: hidden !important; } /* Removing min width for instagram post embeds */ iframe.instagram-media.instagram-media-rendered { min-width: 0px !important; } /* Custom CSS for the timeline section */ .ctl-wrapper .ctl-icon img { max-height: 100%; min-width: 80px; min-height: 80px; } .ctl-wrapper .ctl-icon { margin-left: 20px; } .ctl-wrapper .ctl-arrow { margin-left: 20px; } .ctl_glightbox_container .gslide-media .ginlined-content{ height: auto; overflow: auto !important; } /* Managing title + read more text */ .ctl-wrapper .ctl-title{ margin-left: 30px; margin-top: -2rem; } .ctl-wrapper .ctl-title a { color: black !important; font-weight: 400; font-size: 16px; } .ctl-wrapper .ctl-title p { color: var(--ctw-second-story-color) !important; font-weight: 400; font-size: 14px; } /* Styling the navigation arrows */ div.dashicon-container { flex: 0 0 auto; margin: 0 10px; width: 30px; height: 30px; border-radius: 50%; border: 3px solid transparent; :root :where(.wp-block-navigation){color: var(--wp--preset--color--contrast);font-size: var(--wp--preset--font-size--large);} :root :where(.wp-block-navigation a:where(:not(.wp-element-button))){border-bottom-color: transparent;border-bottom-width: 0.2ch;border-bottom-style: solid;color: var(--wp--preset--color--contrast);text-decoration: none;} :root :where(.wp-block-navigation a:where(:not(.wp-element-button)):hover){background-color: transparent;border-color: var(--wp--preset--color--primary);color: var(--wp--preset--color--secondary);text-decoration: none;} :root :where(.wp-block-navigation a:where(:not(.wp-element-button)):focus){text-decoration: none;} :root :where(.wp-block-navigation a:where(:not(.wp-element-button)):active){text-decoration: none;} :root :where(.wp-block-post-content a:where(:not(.wp-element-button))){color: var(--wp--preset--color--secondary);} :root :where(.wp-block-post-content a:where(:not(.wp-element-button)):hover){background-color: var(--wp--preset--color--tertiary);border-color: var(--wp--preset--color--contrast);text-decoration: none;} :root :where(.wp-block-site-title){font-family: var(--wp--preset--font-family--dm-sans);font-size: var(--wp--preset--font-size--large);font-weight: 700;letter-spacing: -0.01em;line-height: 1.4;text-transform: capitalize;} :root :where(.wp-block-site-title a:where(:not(.wp-element-button))){border-color: transparent;color: var(--wp--preset--color--primary);text-decoration: none;} :root :where(.wp-block-site-title a:where(:not(.wp-element-button)):hover){background-color: transparent;border-color: var(--wp--preset--color--primary);text-decoration: none;} :root :where(.wp-block-site-title a:where(:not(.wp-element-button)):focus){text-decoration: none;} :root :where(.wp-block-site-title a:where(:not(.wp-element-button)):active){background-color: transparent;border-color: var(--wp--preset--color--primary);color: var(--wp--preset--color--secondary);text-decoration: none;} :root :where(.wp-block-separator){border-color: var(--wp--preset--color--contrast);border-width: 6px 0 0 0;border-style: double;}:root :where(.wp-block-separator){}:root :where(.wp-block-separator:not(.is-style-wide):not(.is-style-dots):not(.alignwide):not(.alignfull)){width: 100px} </style> <style id='block-style-variation-styles-inline-css'> :root :where(.wp-block-button.is-style-outline--3 .wp-block-button__link){background: transparent none;border-color: currentColor;border-width: 2px;border-style: solid;color: currentColor;padding-top: 0.667em;padding-right: 1.33em;padding-bottom: 0.667em;padding-left: 1.33em;} </style> <style id='wp-emoji-styles-inline-css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <style id='core-block-supports-inline-css'> /** * Core styles: block-supports */ .wp-elements-2e4ecbe7475c1e388c74ff12ec613397 a:where(:not(.wp-element-button)) { color: var(--wp--preset--color--base); } .wp-elements-e24c80986e13ab3d929b38d6b46e3019 a:where(:not(.wp-element-button)) { color: var(--wp--preset--color--background); } .wp-container-core-group-is-layout-2 { flex-wrap: nowrap; justify-content: space-between; align-items: center; } .wp-container-core-columns-is-layout-1 { flex-wrap: nowrap; } .wp-container-core-column-is-layout-2 > * { margin-block-start: 0; margin-block-end: 0; } .wp-container-core-column-is-layout-2 > * + * { margin-block-start: 0; margin-block-end: 0; } .wp-container-core-columns-is-layout-2 { flex-wrap: nowrap; gap: 2em var(--wp--preset--spacing--50); } .wp-container-core-buttons-is-layout-2 { flex-wrap: nowrap; justify-content: center; } .wp-container-core-columns-is-layout-3 { flex-wrap: nowrap; } .wp-elements-b0187390d5ff368b149a7f38b90b2de5 a:where(:not(.wp-element-button)) { color: var(--wp--preset--color--white); } .wp-elements-b0187390d5ff368b149a7f38b90b2de5 a:where(:not(.wp-element-button)):hover { color: #174190; } .wp-elements-9fce7b897a3a176f460dd2e26d9b95ef a:where(:not(.wp-element-button)) { color: var(--wp--preset--color--white); } .wp-elements-9fce7b897a3a176f460dd2e26d9b95ef a:where(:not(.wp-element-button)):hover { color: #174190; } .wp-elements-08c538f8c7193f8bb2f85f32d25eaad7 a:where(:not(.wp-element-button)) { color: var(--wp--preset--color--white); } .wp-elements-08c538f8c7193f8bb2f85f32d25eaad7 a:where(:not(.wp-element-button)):hover { color: #174190; } .wp-elements-08474bb118bd429db38713343fa5d896 a:where(:not(.wp-element-button)) { color: var(--wp--preset--color--white); } .wp-elements-08474bb118bd429db38713343fa5d896 a:where(:not(.wp-element-button)):hover { color: #174190; } .wp-container-core-columns-is-layout-4 { flex-wrap: nowrap; } .wp-elements-4ad1780535c19bde9ce122136d619705 a:where(:not(.wp-element-button)) { color: var(--wp--preset--color--contrast); } .wp-elements-90b5aa513e1271fef6243951281b164f a:where(:not(.wp-element-button)) { color: var(--wp--preset--color--contrast); } .wp-container-core-columns-is-layout-5 { flex-wrap: nowrap; } .wp-container-core-columns-is-layout-6 { flex-wrap: nowrap; } .wp-container-core-columns-is-layout-7 { flex-wrap: nowrap; } .wp-container-core-buttons-is-layout-3 { justify-content: center; align-items: flex-end; } .wp-container-core-columns-is-layout-8 { flex-wrap: nowrap; gap: 2em var(--wp--preset--spacing--50); } .wp-container-core-post-content-is-layout-1 > :where(:not(.alignleft):not(.alignright):not(.alignfull)) { max-width: 90%; margin-left: auto !important; margin-right: auto !important; } .wp-container-core-post-content-is-layout-1 > .alignwide { max-width: 100%; } .wp-container-core-post-content-is-layout-1 .alignfull { max-width: none; } .wp-container-core-group-is-layout-4 > :where(:not(.alignleft):not(.alignright):not(.alignfull)) { max-width: 90%; margin-left: auto !important; margin-right: auto !important; } .wp-container-core-group-is-layout-4 > .alignwide { max-width: 100%; } .wp-container-core-group-is-layout-4 .alignfull { max-width: none; } .wp-container-core-navigation-is-layout-1 { flex-wrap: nowrap; gap: 8px; flex-direction: column; align-items: flex-start; } .wp-container-core-columns-is-layout-9 { flex-wrap: nowrap; } .wp-container-core-columns-is-layout-10 { flex-wrap: nowrap; } .wp-duotone-unset-1.wp-block-site-logo img, .wp-duotone-unset-1.wp-block-site-logo .components-placeholder__illustration, .wp-duotone-unset-1.wp-block-site-logo .components-placeholder::before { filter: unset; } </style> <style id='wp-block-template-skip-link-inline-css'> .skip-link.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; } .skip-link.screen-reader-text:focus { background-color: #eee; clip: auto !important; clip-path: none; color: #444; display: block; font-size: 1em; height: auto; left: 5px; line-height: normal; padding: 15px 23px 14px; text-decoration: none; top: 5px; width: auto; z-index: 100000; } </style> <link rel='stylesheet' id='fse-classic-menu-css' href='https://cern70.cern/wp-content/plugins/fse-classic/public/css/menu.css?ver=1.0' media='all' /> <link rel='stylesheet' id='leaflet-styles-css' href='https://unpkg.com/leaflet@1.9.4/dist/leaflet.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='markercluster-styles-css' href='https://unpkg.com/leaflet.markercluster@1.4.1/dist/MarkerCluster.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='markercluster-default-styles-css' href='https://unpkg.com/leaflet.markercluster@1.4.1/dist/MarkerCluster.Default.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='dashicons-css' href='https://cern70.cern/wp-includes/css/dashicons.css?ver=6.7.2' media='all' /> <link rel='stylesheet' id='ctl_common_style-css' href='https://cern70.cern/wp-content/plugins/cool-timeline-pro/includes/shortcodes/assets/css/ctl-common-styles.min.css?ver=4.6.1' media='all' /> <style id='ctl_common_style-inline-css'> div.ctl-wrapper{ a { border-style: none; } div.cool-timeline-wrapper.dark-skin { --ctw-cbx-title-color: #fff !important; } } .ctl-wrapper{--ctw-first-story-color:#174190;--ctw-second-story-color:#174190;--ctw-cbx-des-background:#ffffff;--ctw-cbx-des-color:#706f6f;--ctw-ybx-text-color:#ffffff;--ctw-cbx-title-color:#000000;--ctl-main-title-color:#000;--ctw-ybx-bg:rgba(10,0, 0.11);--ctw-lbel-big-color:#000000;--ctw-line-bg:#000000;--ctw-line-filling-color:#04b9e3;--ctw-cbx-title-font-family:Arial;--ctw-cbx-title-font-weight:normal;--ctw-cbx-title-font-size:20px;--ctw-cbx-desc-font-family:Arial;--ctw-cbx-desc-font-weight:normal;--ctw-cbx-desc-font-size:16px;--ctw-cbx-date-font-family:Arial;--ctw-cbx-date-font-weight:normal;--ctw-cbx-date-font-size:0px;--ctw-cbx-date-line-height:0px;--ctw-cbx-date-letter-spacing:0px;} </style> <link rel='stylesheet' id='megamenu-css' href='https://cern70.cern/wp-content/uploads/maxmegamenu/style_en_gb.css?ver=801d49' media='all' /> <link rel='stylesheet' id='wpmagazine-modules-google-fonts-css' href='https://fonts.googleapis.com/css?family=Roboto%3A400&subset=latin%2Clatin-ext' media='all' /> <link rel='stylesheet' id='wpmagazine-modules-frontend-css' href='https://cern70.cern/wp-content/plugins/wp-magazine-modules/includes/assets/css/build.css?ver=1.0.9' media='all' /> <style id='wpmagazine-modules-frontend-inline-css'> .cvmm-cats-wrapper .cvmm-cat-count.cvmm-cat-2{background:#ffffff} .cvmm-block-post-grid--layout-three .cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-masonry--layout-three .cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-grid--layout-two .cvmm-post-cats-wrap .cvmm-post-cat.cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-masonry--layout-two .cvmm-post-cats-wrap .cvmm-post-cat.cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-grid--layout-one .cvmm-post-cats-wrap .cvmm-post-cat.cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-masonry--layout-one .cvmm-post-cats-wrap .cvmm-post-cat.cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-grid--layout-five .cvmm-post-cats-wrap .cvmm-post-cat.cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-grid--layout-four .cvmm-post-cat.cvmm-cat-2:before{background:#ffffff} .cvmm-block-post-masonry--layout-four .cvmm-post-cat.cvmm-cat-2:before{background:#ffffff} .cvmm-block-post-list--layout-two .cvmm-post-cat.cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-list--layout-three .cvmm-post-cat.cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-list--layout-four .cvmm-post-cat.cvmm-cat-2 a{color:#ffffff} .cvmm-post-tiles-block-main-content-wrap .cvmm-post-cat.cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-slider--layout-two .cvmm-post-cat.cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-carousel--layout-one .cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-block--layout-one .cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-block--layout-two .cvmm-post-cat.cvmm-cat-2:before{background:#ffffff} .cvmm-block-post-block--layout-three .cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-block--layout-four .cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-block--layout-five .cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-filter--layout-one .cvmm-cat-2 a{background:#ffffff} .cvmm-block-post-filter--layout-four .cvmm-cat-2 a{background:#ffffff} .cvmm-cats-wrapper .cvmm-cat-2 a:hover{color:#1e73be} .cvmm-block-post-grid--layout-one .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-masonry--layout-one .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-grid--layout-two .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-masonry--layout-two .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-grid--layout-three .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-masonry--layout-two .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-grid--layout-four .cvmm-post-cat.cvmm-cat-2 a:hover{color:#ffffff} .cvmm-block-post-masonry--layout-two .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-list--layout-two .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-list--layout-three .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-list--layout-four .cvmm-post-cats-wrap .cvmm-post-cat.cvmm-cat-2 a:hover{color:#1e73be} .cvmm-post-tiles-block-main-content-wrap .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-slider--layout-two .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-carousel--layout-one .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-block--layout-one .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-block--layout-two .cvmm-post-cat.cvmm-cat-2 a:hover{color:#ffffff} .cvmm-block-post-block--layout-three .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-block--layout-four .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-filter--layout-one .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-block-post-filter--layout-four .cvmm-post-cat.cvmm-cat-2 a:hover{background:#1e73be} .cvmm-cats-wrapper .cvmm-cat-count.cvmm-cat-70{background:#ffffff} .cvmm-block-post-grid--layout-three .cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-masonry--layout-three .cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-grid--layout-two .cvmm-post-cats-wrap .cvmm-post-cat.cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-masonry--layout-two .cvmm-post-cats-wrap .cvmm-post-cat.cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-grid--layout-one .cvmm-post-cats-wrap .cvmm-post-cat.cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-masonry--layout-one .cvmm-post-cats-wrap .cvmm-post-cat.cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-grid--layout-five .cvmm-post-cats-wrap .cvmm-post-cat.cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-grid--layout-four .cvmm-post-cat.cvmm-cat-70:before{background:#ffffff} .cvmm-block-post-masonry--layout-four .cvmm-post-cat.cvmm-cat-70:before{background:#ffffff} .cvmm-block-post-list--layout-two .cvmm-post-cat.cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-list--layout-three .cvmm-post-cat.cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-list--layout-four .cvmm-post-cat.cvmm-cat-70 a{color:#ffffff} .cvmm-post-tiles-block-main-content-wrap .cvmm-post-cat.cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-slider--layout-two .cvmm-post-cat.cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-carousel--layout-one .cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-block--layout-one .cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-block--layout-two .cvmm-post-cat.cvmm-cat-70:before{background:#ffffff} .cvmm-block-post-block--layout-three .cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-block--layout-four .cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-block--layout-five .cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-filter--layout-one .cvmm-cat-70 a{background:#ffffff} .cvmm-block-post-filter--layout-four .cvmm-cat-70 a{background:#ffffff} .cvmm-cats-wrapper .cvmm-cat-70 a:hover{color:#1e73be} .cvmm-block-post-grid--layout-one .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-masonry--layout-one .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-grid--layout-two .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-masonry--layout-two .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-grid--layout-three .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-masonry--layout-two .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-grid--layout-four .cvmm-post-cat.cvmm-cat-70 a:hover{color:#ffffff} .cvmm-block-post-masonry--layout-two .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-list--layout-two .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-list--layout-three .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-list--layout-four .cvmm-post-cats-wrap .cvmm-post-cat.cvmm-cat-70 a:hover{color:#1e73be} .cvmm-post-tiles-block-main-content-wrap .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-slider--layout-two .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-carousel--layout-one .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-block--layout-one .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-block--layout-two .cvmm-post-cat.cvmm-cat-70 a:hover{color:#ffffff} .cvmm-block-post-block--layout-three .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-block--layout-four .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-filter--layout-one .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} .cvmm-block-post-filter--layout-four .cvmm-post-cat.cvmm-cat-70 a:hover{background:#1e73be} </style> <link rel='stylesheet' id='fontawesome-css' href='https://cern70.cern/wp-content/plugins/wp-magazine-modules/includes/assets/library/fontawesome/css/all.min.css?ver=5.12.1' media='all' /> <link rel='stylesheet' id='slick-slider-css' href='https://cern70.cern/wp-content/plugins/wp-magazine-modules/includes/assets/library/slick-slider/css/slick.css?ver=1.8.0' media='all' /> <link rel='stylesheet' id='slick-slider-theme-css' href='https://cern70.cern/wp-content/plugins/wp-magazine-modules/includes/assets/library/slick-slider/css/slick-theme.css?ver=1.8.0' media='all' /> <link rel='stylesheet' id='animate-css' href='https://cern70.cern/wp-content/plugins/animated-text-block/public/css/animate.min.css?ver=4.1.1' media='all' /> <link rel='stylesheet' id='chld_thm_cfg_separate-css' href='https://cern70.cern/wp-content/themes/twentytwentythree-cern70/ctc-style.css?ver=6.7.2' media='all' /> <link rel="stylesheet" type="text/css" href="https://cern70.cern/wp-content/plugins/smart-slider-3/Public/SmartSlider3/Application/Frontend/Assets/dist/smartslider.min.css?ver=fe0c9112" media="all"> <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?display=swap&family=Open+Sans%3A300%2C400" media="all"> <style data-related="n2-ss-4">div#n2-ss-4 .n2-ss-slider-1{display:grid;position:relative;}div#n2-ss-4 .n2-ss-slider-2{display:grid;position:relative;overflow:hidden;padding:0px 0px 0px 0px;border:0px solid RGBA(62,62,62,1);border-radius:0px;background-clip:padding-box;background-repeat:repeat;background-position:50% 50%;background-size:cover;background-attachment:scroll;z-index:1;}div#n2-ss-4:not(.n2-ss-loaded) .n2-ss-slider-2{background-image:none !important;}div#n2-ss-4 .n2-ss-slider-3{display:grid;grid-template-areas:'cover';position:relative;overflow:hidden;z-index:10;}div#n2-ss-4 .n2-ss-slider-3 > *{grid-area:cover;}div#n2-ss-4 .n2-ss-slide-backgrounds,div#n2-ss-4 .n2-ss-slider-3 > .n2-ss-divider{position:relative;}div#n2-ss-4 .n2-ss-slide-backgrounds{z-index:10;}div#n2-ss-4 .n2-ss-slide-backgrounds > *{overflow:hidden;}div#n2-ss-4 .n2-ss-slide-background{transform:translateX(-100000px);}div#n2-ss-4 .n2-ss-slider-4{place-self:center;position:relative;width:100%;height:100%;z-index:20;display:grid;grid-template-areas:'slide';}div#n2-ss-4 .n2-ss-slider-4 > *{grid-area:slide;}div#n2-ss-4.n2-ss-full-page--constrain-ratio .n2-ss-slider-4{height:auto;}div#n2-ss-4 .n2-ss-slide{display:grid;place-items:center;grid-auto-columns:100%;position:relative;z-index:20;-webkit-backface-visibility:hidden;transform:translateX(-100000px);}div#n2-ss-4 .n2-ss-slide{perspective:1500px;}div#n2-ss-4 .n2-ss-slide-active{z-index:21;}.n2-ss-background-animation{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3;}div#n2-ss-4 .nextend-thumbnail{flex:0 0 auto;overflow:hidden;}div#n2-ss-4 .nextend-thumbnail-default{position:relative;display:flex;flex-direction:column;z-index:10;}div#n2-ss-4 .nextend-thumbnail-inner{position:relative;flex-basis:0;flex-grow:1;scroll-behavior:smooth;scrollbar-width:none;}div#n2-ss-4 .nextend-thumbnail-inner::-webkit-scrollbar{width:0;height:0;background:transparent;}div#n2-ss-4 .nextend-thumbnail-button{position:absolute;display:grid;place-content:center;transition:all 0.4s;cursor:pointer;visibility:hidden;}div#n2-ss-4 .nextend-thumbnail-button *{visibility:visible;}div#n2-ss-4 .nextend-thumbnail-scroller{display:grid;}div#n2-ss-4 .n2-thumbnail-dot{position:relative;cursor:pointer;}div#n2-ss-4 .n2-thumbnail-dot img{object-fit:cover;max-width:none !important;}div#n2-ss-4 .n2-caption-before{order:-1;}div#n2-ss-4 .n2-caption-overlay{position:absolute;box-sizing:border-box;display:grid;place-content:center;}div#n2-ss-4 .n2-thumbnail-dot-type{position:absolute;left:50%;top:50%;transform:translate3d(-50%,-50%,0);}div#n2-ss-4 .nextend-thumbnail-vertical .nextend-thumbnail-scroller{min-height:100%;height:-moz-fit-content;height:-webkit-fit-content;height:fit-content;}div#n2-ss-4 .nextend-thumbnail-vertical .n2-align-content-start{align-content:flex-start;}div#n2-ss-4 .nextend-thumbnail-vertical .n2-align-content-center{align-content:center;}div#n2-ss-4 .nextend-thumbnail-vertical .n2-align-content-end{align-content:flex-end;}div#n2-ss-4 .nextend-thumbnail-vertical .n2-align-content-space-between{align-content:space-between;}div#n2-ss-4 .nextend-thumbnail-vertical .n2-align-content-space-around{align-content:space-around;}div#n2-ss-4 .nextend-thumbnail-vertical .nextend-thumbnail-inner{overflow-y:scroll;}div#n2-ss-4 .nextend-thumbnail-vertical .n2-thumbnail-dot{display:grid;grid-template-columns:auto 1fr;overflow:hidden;}div#n2-ss-4 .nextend-thumbnail-vertical .nextend-thumbnail-button{width:100%;}div#n2-ss-4 .nextend-thumbnail-vertical .nextend-thumbnail-previous{top:10px;}div#n2-ss-4 .nextend-thumbnail-vertical[data-has-previous="0"] .nextend-thumbnail-previous{transform:translateY(min(-100px,calc(-110%)));opacity:0;}div#n2-ss-4 .nextend-thumbnail-vertical .nextend-thumbnail-next{bottom:10px;}div#n2-ss-4 .nextend-thumbnail-vertical[data-has-next="0"] .nextend-thumbnail-next{transform:translateY(max(100px,calc(110%)));opacity:0;}div#n2-ss-4 .nextend-thumbnail-horizontal{flex-direction:row;}div#n2-ss-4 .nextend-thumbnail-horizontal .nextend-thumbnail-inner{overflow-x:scroll;}div#n2-ss-4 .nextend-thumbnail-horizontal .nextend-thumbnail-scroller{min-width:100%;width:-moz-fit-content;width:-webkit-fit-content;width:fit-content;grid-auto-flow:column;grid-auto-columns:min-content;}div#n2-ss-4 .nextend-thumbnail-horizontal .n2-align-content-start{justify-content:flex-start;}div#n2-ss-4 .nextend-thumbnail-horizontal .n2-align-content-center{justify-content:center;}div#n2-ss-4 .nextend-thumbnail-horizontal .n2-align-content-end{justify-content:flex-end;}div#n2-ss-4 .nextend-thumbnail-horizontal .n2-align-content-space-between{justify-content:space-between;}div#n2-ss-4 .nextend-thumbnail-horizontal .n2-align-content-space-around{justify-content:space-around;}div#n2-ss-4 .nextend-thumbnail-horizontal .n2-thumbnail-dot{display:grid;grid-template-rows:auto 1fr;overflow:hidden;}div#n2-ss-4 .nextend-thumbnail-horizontal .nextend-thumbnail-button{height:100%;}div#n2-ss-4 .nextend-thumbnail-horizontal .nextend-thumbnail-previous{left:10px;}div#n2-ss-4 .nextend-thumbnail-horizontal[data-has-previous="0"] .nextend-thumbnail-previous{transform:translateX(min(-100px,calc(-110%))) rotateZ(-90deg);opacity:0;}div#n2-ss-4 .nextend-thumbnail-horizontal .nextend-thumbnail-next{right:10px;}div#n2-ss-4 .nextend-thumbnail-horizontal[data-has-next="0"] .nextend-thumbnail-next{transform:translateX(max(100px,calc(110%))) rotateZ(-90deg);opacity:0;}div#n2-ss-4 .n-uc-bsnkEvXzlrvW-inner{--n2bgimage:URL("//cern70.cern/wp-content/uploads/2024/01/science_gateway_slider_image-scaled.webp");background-position:50% 50%,54% 76%;}div#n2-ss-4 .n-uc-1ee4e450768d6-inner{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-1ee4e450768d6-inner:HOVER{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-1902bd495048d-inner{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-1902bd495048d-inner:HOVER{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n2-font-193da5aac4cb4ec7e0a72f11155b9648-hover{font-family: 'Arial';color: #ffffff;font-size:600%;text-shadow: 2px 0px 8px RGBA(0,0,0,1);line-height: 1.2;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-style-a8c16f05c2ef3384a4270dfc737d784f-heading{background: RGBA(0,0,0,0);opacity:1;padding:0px 0px 0px 0px ;box-shadow: none;border: 0px solid RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-4 .n2-font-7f153db42896543a72b3a861a5140991-paragraph{font-family: 'Open Sans','Arial';color: #ffffff;font-size:181%;text-shadow: 20px 0px 15px RGBA(0,0,0,0.8);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-font-7f153db42896543a72b3a861a5140991-paragraph a, div#n2-ss-4 .n2-font-7f153db42896543a72b3a861a5140991-paragraph a:FOCUS{font-family: 'Open Sans','Arial';color: #1890d7;font-size:100%;text-shadow: 20px 0px 15px RGBA(0,0,0,0.8);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-font-7f153db42896543a72b3a861a5140991-paragraph a:HOVER, div#n2-ss-4 .n2-font-7f153db42896543a72b3a861a5140991-paragraph a:ACTIVE{font-family: 'Open Sans','Arial';color: #1890d7;font-size:100%;text-shadow: 20px 0px 15px RGBA(0,0,0,0.8);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-style-fd4bb355de8fc1ab3e34e9a837a89507-heading{background: RGBA(0,0,0,0.36);opacity:1;padding:0px 0px 0px 0px ;box-shadow: none;border: 0px solid RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-4 .n2-style-f20c151d99d31877cae787392751ca24-heading{background: RGBA(0,0,0,0);opacity:1;padding:0px 0px 0px 0px ;box-shadow: none;border: 0px solid RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-4 .n2-font-fa98a71fef988b0c297e5e33ceb1e8bf-paragraph{font-family: 'Arial';color: #ffffff;font-size:150%;text-shadow: 2px 0px 8px RGBA(0,0,0,1);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: inherit;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 300;}div#n2-ss-4 .n2-font-fa98a71fef988b0c297e5e33ceb1e8bf-paragraph a, div#n2-ss-4 .n2-font-fa98a71fef988b0c297e5e33ceb1e8bf-paragraph a:FOCUS{font-family: 'Arial';color: #1890d7;font-size:100%;text-shadow: 2px 0px 8px RGBA(0,0,0,1);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: inherit;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 300;}div#n2-ss-4 .n2-font-fa98a71fef988b0c297e5e33ceb1e8bf-paragraph a:HOVER, div#n2-ss-4 .n2-font-fa98a71fef988b0c297e5e33ceb1e8bf-paragraph a:ACTIVE{font-family: 'Arial';color: #1890d7;font-size:100%;text-shadow: 2px 0px 8px RGBA(0,0,0,1);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: inherit;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 300;}div#n2-ss-4 .n2-style-13b3dcb408cd92cc640e02e1d3e1db17-heading{background: RGBA(255,255,255,0);opacity:1;padding:0px 0px 0px 0px ;box-shadow: none;border: 0px solid RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-4 .n-uc-13407254901fc-inner{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-13407254901fc-inner:HOVER{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-15f5b7db16173-inner{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-15f5b7db16173-inner:HOVER{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n2-font-f4ca0d96bee6e1c99ca60b3ce9d53b0f-hover{font-family: 'Arial';color: #ffffff;font-size:450%;text-shadow: 2px 0px 8px RGBA(0,0,0,1);line-height: 1.2;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-font-9c743170291bc0e6ece2d3726f8972cf-paragraph{font-family: 'Arial';color: #ffffff;font-size:180%;text-shadow: 2px 0px 8px RGBA(0,0,0,1);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: inherit;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-font-9c743170291bc0e6ece2d3726f8972cf-paragraph a, div#n2-ss-4 .n2-font-9c743170291bc0e6ece2d3726f8972cf-paragraph a:FOCUS{font-family: 'Arial';color: #1890d7;font-size:100%;text-shadow: 2px 0px 8px RGBA(0,0,0,1);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: inherit;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-font-9c743170291bc0e6ece2d3726f8972cf-paragraph a:HOVER, div#n2-ss-4 .n2-font-9c743170291bc0e6ece2d3726f8972cf-paragraph a:ACTIVE{font-family: 'Arial';color: #1890d7;font-size:100%;text-shadow: 2px 0px 8px RGBA(0,0,0,1);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: inherit;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n-uc-1ef26e3d9379d-inner{--n2bgimage:URL("//cern70.cern/wp-content/uploads/2024/01/cms_slider_image.webp");background-position:50% 50%,50% 50%;}div#n2-ss-4 .n-uc-1fb79a03e4caf-inner{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-1fb79a03e4caf-inner:HOVER{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-1c3a390633ffe-inner{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-1c3a390633ffe-inner:HOVER{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n2-font-0b3f121b98e7f6e7922f2bb3a149f7ef-hover{font-family: 'Arial';color: #ffffff;font-size:450%;text-shadow: 20px 0px 15px RGBA(0,0,0,1);line-height: 1.2;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-style-70469fc10fe6237b678f32b29a4939de-heading{background: RGBA(0,0,0,0.36);opacity:1;padding:0px 0px 0px 0px ;box-shadow: none;border: 0px solid RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-4 .n2-font-f64a1a63cee359445a49e0772132f3b4-hover{font-family: 'Arial';color: #ffffff;font-size:500%;text-shadow: 2px 0px 5px RGBA(0,0,0,1);line-height: 1.2;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-style-cccba522bbe9e6a5d11143c6cda8e431-heading{background: RGBA(0,0,0,0.46);opacity:1;padding:0px 0px 0px 0px ;box-shadow: none;border: 0px solid RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-4 .n2-font-3d852e15c72093e5c4549f2973138979-paragraph{font-family: 'Arial';color: #ffffff;font-size:190%;text-shadow: 20px 0px 15px RGBA(0,0,0,0.84);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 300;}div#n2-ss-4 .n2-font-3d852e15c72093e5c4549f2973138979-paragraph a, div#n2-ss-4 .n2-font-3d852e15c72093e5c4549f2973138979-paragraph a:FOCUS{font-family: 'Arial';color: #1890d7;font-size:100%;text-shadow: 20px 0px 15px RGBA(0,0,0,0.84);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 300;}div#n2-ss-4 .n2-font-3d852e15c72093e5c4549f2973138979-paragraph a:HOVER, div#n2-ss-4 .n2-font-3d852e15c72093e5c4549f2973138979-paragraph a:ACTIVE{font-family: 'Arial';color: #1890d7;font-size:100%;text-shadow: 20px 0px 15px RGBA(0,0,0,0.84);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 300;}div#n2-ss-4 .n2-font-308ced337f118363787c95bfd45a4872-paragraph{font-family: 'Open Sans','Arial';color: #ffffff;font-size:180%;text-shadow: 20px 0px 15px RGBA(0,0,0,0.8);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-font-308ced337f118363787c95bfd45a4872-paragraph a, div#n2-ss-4 .n2-font-308ced337f118363787c95bfd45a4872-paragraph a:FOCUS{font-family: 'Open Sans','Arial';color: #1890d7;font-size:100%;text-shadow: 20px 0px 15px RGBA(0,0,0,0.8);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-font-308ced337f118363787c95bfd45a4872-paragraph a:HOVER, div#n2-ss-4 .n2-font-308ced337f118363787c95bfd45a4872-paragraph a:ACTIVE{font-family: 'Open Sans','Arial';color: #1890d7;font-size:100%;text-shadow: 20px 0px 15px RGBA(0,0,0,0.8);line-height: 1.4;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-style-b35834208f56f667ace2a5559dad8be2-heading{background: RGBA(0,0,0,0.5);opacity:1;padding:0px 0px 0px 0px ;box-shadow: none;border: 0px solid RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-4 .n-uc-19b53e3bc31cc-inner{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-19b53e3bc31cc-inner:HOVER{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-1bb09a75975c9-inner{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-1bb09a75975c9-inner:HOVER{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-12fa985207bc9-inner{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-12fa985207bc9-inner:HOVER{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-1fb932391231e-inner{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-1fb932391231e-inner:HOVER{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-1b750b69de594-inner{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-1b750b69de594-inner:HOVER{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-150970cd27909-inner{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-150970cd27909-inner:HOVER{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-141e42d226ec2-inner{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n-uc-141e42d226ec2-inner:HOVER{border-width:0px 0px 0px 0px ;border-style:solid;border-color:RGBA(255,255,255,1);}div#n2-ss-4 .n2-style-309d32ff254831c4cc207ee90ad66fe1-simple{background: RGBA(255,255,255,0);opacity:1;padding:20px 20px 20px 20px ;box-shadow: none;border: 0px solid RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-4 .n2-style-dfee073eb815792368a849d044baf4fe-dot{background: RGBA(0,0,0,0);opacity:0.7;padding:0px 0px 0px 0px ;box-shadow: none;border: 3px solid RGBA(53,124,189,0.72);border-radius:99px;margin:4px;transition:all 0.4s;}div#n2-ss-4 .n2-style-dfee073eb815792368a849d044baf4fe-dot.n2-active, div#n2-ss-4 .n2-style-dfee073eb815792368a849d044baf4fe-dot:HOVER, div#n2-ss-4 .n2-style-dfee073eb815792368a849d044baf4fe-dot:FOCUS{border: 3px solid RGBA(255,255,255,0.85);opacity:1;}div#n2-ss-4 .n-uc-tlwhapPCnZfk{padding:0px 0px 0px 0px}div#n2-ss-4 .n-uc-bsnkEvXzlrvW-inner{padding:150px 65px 30px 120px;text-align:center;--ssselfalign:center;;justify-content:flex-start}div#n2-ss-4 .n-uc-bsnkEvXzlrvW{align-self:center;}div#n2-ss-4 .n-uc-1ee4e450768d6-inner{padding:10px 0px 10px 10px;text-align:center;--ssselfalign:center;}div#n2-ss-4 .n-uc-1ee4e450768d6-inner > .n2-ss-layer-row-inner{width:calc(100% + 1px);margin:-0px;flex-wrap:nowrap;}div#n2-ss-4 .n-uc-1ee4e450768d6-inner > .n2-ss-layer-row-inner > .n2-ss-layer[data-sstype="col"]{margin:0px}div#n2-ss-4 .n-uc-1902bd495048d-inner{padding:10px 10px 10px 10px;text-align:left;--ssselfalign:var(--ss-fs);;justify-content:center}div#n2-ss-4 .n-uc-1902bd495048d{width:100%}div#n2-ss-4 .n-uc-1152e5b149055{--margin-top:-5px;max-width:650px}div#n2-ss-4 .n-uc-1d1f1d1fb0147{--margin-bottom:15px;max-width:450px}div#n2-ss-4 .n-uc-15f217f5d44f5{--margin-top:5px;--margin-bottom:15px;max-width:710px}div#n2-ss-4 .n-uc-13407254901fc-inner{padding:10px 0px 10px 10px;text-align:center;--ssselfalign:center;}div#n2-ss-4 .n-uc-13407254901fc-inner > .n2-ss-layer-row-inner{width:calc(100% + 1px);margin:-0px;flex-wrap:nowrap;}div#n2-ss-4 .n-uc-13407254901fc-inner > .n2-ss-layer-row-inner > .n2-ss-layer[data-sstype="col"]{margin:0px}div#n2-ss-4 .n-uc-15f5b7db16173-inner{padding:10px 10px 10px 10px;text-align:left;--ssselfalign:var(--ss-fs);;justify-content:center}div#n2-ss-4 .n-uc-15f5b7db16173{width:100%}div#n2-ss-4 .n-uc-16361f460114e{--margin-top:-5px;max-width:650px}div#n2-ss-4 .n-uc-170a2f4f2aae8{--margin-top:5px;--margin-bottom:15px;max-width:680px}div#n2-ss-4 .n-uc-3tutigx9y6Mj{padding:0px 0px 0px 0px}div#n2-ss-4 .n-uc-1ef26e3d9379d-inner{padding:150px 65px 30px 120px;text-align:left;--ssselfalign:var(--ss-fs);;justify-content:flex-start}div#n2-ss-4 .n-uc-1ef26e3d9379d{align-self:var(--ss-fs);}div#n2-ss-4 .n-uc-1fb79a03e4caf-inner{padding:10px 10px 10px 10px}div#n2-ss-4 .n-uc-1fb79a03e4caf-inner > .n2-ss-layer-row-inner{width:calc(100% + 21px);margin:-10px;flex-wrap:wrap;}div#n2-ss-4 .n-uc-1fb79a03e4caf-inner > .n2-ss-layer-row-inner > .n2-ss-layer[data-sstype="col"]{margin:10px}div#n2-ss-4 .n-uc-1c3a390633ffe-inner{padding:10px 10px 10px 10px;justify-content:center}div#n2-ss-4 .n-uc-1c3a390633ffe{width:auto}div#n2-ss-4 .n-uc-1a8cc4034e07f{--margin-top:-5px;max-width:1155px}div#n2-ss-4 .n-uc-1209a7ef17279{--margin-top:-5px;max-width:1155px}div#n2-ss-4 .n-uc-107ccdbaf73c6{--margin-bottom:15px;max-width:650px}div#n2-ss-4 .n-uc-1c9ab8cfdeb87{--margin-top:-5px;max-width:1155px}div#n2-ss-4 .n-uc-18ce0abebb3a9{--margin-bottom:15px;max-width:650px}div#n2-ss-4 .n-uc-14c5cf701510d{--margin-bottom:15px;max-width:450px}div#n2-ss-4 .n-uc-19b53e3bc31cc-inner{padding:0px 0px 0px 0px;text-align:left;--ssselfalign:var(--ss-fs);}div#n2-ss-4 .n-uc-19b53e3bc31cc-inner > .n2-ss-layer-row-inner{width:calc(100% + 1px);margin:-0px;flex-wrap:nowrap;}div#n2-ss-4 .n-uc-19b53e3bc31cc-inner > .n2-ss-layer-row-inner > .n2-ss-layer[data-sstype="col"]{margin:0px}div#n2-ss-4 .n-uc-19b53e3bc31cc{max-width:470px}div#n2-ss-4 .n-uc-1bb09a75975c9-inner{padding:10px 10px 10px 10px;justify-content:center}div#n2-ss-4 .n-uc-1bb09a75975c9{max-width: 120px;width:16.6%}div#n2-ss-4 .n-uc-12fa985207bc9-inner{padding:10px 10px 10px 10px;justify-content:center}div#n2-ss-4 .n-uc-12fa985207bc9{width:16.6%}div#n2-ss-4 .n-uc-11cab3031f850{max-width:45px}div#n2-ss-4 .n-uc-1fb932391231e-inner{padding:10px 10px 10px 10px;justify-content:center}div#n2-ss-4 .n-uc-1fb932391231e{width:16.6%}div#n2-ss-4 .n-uc-1b750b69de594-inner{padding:10px 10px 10px 10px;justify-content:center}div#n2-ss-4 .n-uc-1b750b69de594{width:16.6%}div#n2-ss-4 .n-uc-150970cd27909-inner{padding:10px 10px 10px 10px;justify-content:center}div#n2-ss-4 .n-uc-150970cd27909{width:16.6%}div#n2-ss-4 .n-uc-141e42d226ec2-inner{padding:10px 10px 10px 10px;justify-content:center}div#n2-ss-4 .n-uc-141e42d226ec2{width:16.6%}div#n2-ss-4 .n-uc-16d7e7f59bc34{max-width:45px}div#n2-ss-4 .n2-thumbnail-dot img{width:50px;height:50px}@media (min-width: 1200px){div#n2-ss-4 .n-uc-1d1f1d1fb0147{display:none}div#n2-ss-4 .n-uc-13407254901fc{display:none}div#n2-ss-4 .n-uc-1209a7ef17279{display:none}div#n2-ss-4 .n-uc-1c9ab8cfdeb87{display:none}div#n2-ss-4 .n-uc-18ce0abebb3a9{display:none}div#n2-ss-4 .n-uc-14c5cf701510d{display:none}div#n2-ss-4 [data-hide-desktopportrait="1"]{display: none !important;}}@media (orientation: landscape) and (max-width: 1199px) and (min-width: 901px),(orientation: portrait) and (max-width: 1199px) and (min-width: 701px){div#n2-ss-4 .n-uc-bsnkEvXzlrvW-inner{padding:95px 65px 30px 120px}div#n2-ss-4 .n-uc-1ee4e450768d6-inner > .n2-ss-layer-row-inner{flex-wrap:nowrap;}div#n2-ss-4 .n-uc-1902bd495048d-inner{padding:0px 10px 10px 10px}div#n2-ss-4 .n-uc-1902bd495048d{width:100%}div#n2-ss-4 .n-uc-1152e5b149055{--ssfont-scale:0.8}div#n2-ss-4 .n-uc-1d1f1d1fb0147{max-width:365px;display:none;--ssfont-scale:0.8}div#n2-ss-4 .n-uc-16a3243307a32{max-width:445px;--ssfont-scale:0.8}div#n2-ss-4 .n-uc-15f217f5d44f5{max-width:none;--ssfont-scale:0.8}div#n2-ss-4 .n-uc-13407254901fc-inner > .n2-ss-layer-row-inner{flex-wrap:nowrap;}div#n2-ss-4 .n-uc-13407254901fc{display:none}div#n2-ss-4 .n-uc-15f5b7db16173{width:100%}div#n2-ss-4 .n-uc-16361f460114e{--ssfont-scale:0.8}div#n2-ss-4 .n-uc-170a2f4f2aae8{max-width:none;--ssfont-scale:0.8}div#n2-ss-4 .n-uc-1ef26e3d9379d-inner{padding:95px 120px 30px 120px}div#n2-ss-4 .n-uc-1fb79a03e4caf-inner{padding:5px 10px 10px 10px;text-align:center;--ssselfalign:center;}div#n2-ss-4 .n-uc-1fb79a03e4caf-inner > .n2-ss-layer-row-inner{flex-wrap:wrap;}div#n2-ss-4 .n-uc-1c3a390633ffe-inner{padding:0px 10px 10px 10px}div#n2-ss-4 .n-uc-1c3a390633ffe{width:auto}div#n2-ss-4 .n-uc-1a8cc4034e07f{max-width:395px;display:none;--ssfont-scale:0.8}div#n2-ss-4 .n-uc-1209a7ef17279{display:none;--ssfont-scale:0.8}div#n2-ss-4 .n-uc-107ccdbaf73c6{max-width:350px;display:none;--ssfont-scale:0.8}div#n2-ss-4 .n-uc-1c9ab8cfdeb87{max-width:340px;--ssfont-scale:0.8}div#n2-ss-4 .n-uc-18ce0abebb3a9{max-width:340px;--ssfont-scale:0.8}div#n2-ss-4 .n-uc-14c5cf701510d{max-width:365px;display:none;--ssfont-scale:0.8}div#n2-ss-4 .n-uc-19b53e3bc31cc-inner > .n2-ss-layer-row-inner{flex-wrap:nowrap;}div#n2-ss-4 .n-uc-1bb09a75975c9{width:16.6%}div#n2-ss-4 .n-uc-12fa985207bc9{width:16.6%}div#n2-ss-4 .n-uc-1fb932391231e{width:16.6%}div#n2-ss-4 .n-uc-1b750b69de594{width:16.6%}div#n2-ss-4 .n-uc-150970cd27909{width:16.6%}div#n2-ss-4 .n-uc-141e42d226ec2{width:16.6%}div#n2-ss-4 [data-hide-tabletportrait="1"]{display: none !important;}}@media (orientation: landscape) and (max-width: 900px),(orientation: portrait) and (max-width: 700px){div#n2-ss-4 .n-uc-bsnkEvXzlrvW-inner{padding:20px 15px 0px 15px}div#n2-ss-4 .n-uc-1ee4e450768d6-inner{padding:10px 0px 0px 10px;text-align:inherit;--ssselfalign:inherit;}div#n2-ss-4 .n-uc-1ee4e450768d6-inner > .n2-ss-layer-row-inner{width:calc(100% + 1px);margin:-0px;flex-wrap:wrap;}div#n2-ss-4 .n-uc-1ee4e450768d6-inner > .n2-ss-layer-row-inner > .n2-ss-layer[data-sstype="col"]{margin:0px}div#n2-ss-4 .n-uc-1ee4e450768d6{display:none}div#n2-ss-4 .n-uc-1902bd495048d{width:calc(100% - 0px)}div#n2-ss-4 .n-uc-1152e5b149055{--margin-top:0px;--margin-bottom:10px;--ssfont-scale:0.6}div#n2-ss-4 .n-uc-1d1f1d1fb0147{--margin-top:-10px;--margin-bottom:0px;max-width:270px;--ssfont-scale:0.6}div#n2-ss-4 .n-uc-16a3243307a32{--margin-bottom:10px;--ssfont-scale:0.6}div#n2-ss-4 .n-uc-15f217f5d44f5{--margin-top:0px;--margin-bottom:15px;--margin-left:-5px;max-width:none;--ssfont-scale:0.6}div#n2-ss-4 .n-uc-13407254901fc-inner{padding:10px 0px 0px 0px;text-align:inherit;--ssselfalign:inherit;}div#n2-ss-4 .n-uc-13407254901fc-inner > .n2-ss-layer-row-inner{width:calc(100% + 1px);margin:-0px;flex-wrap:wrap;}div#n2-ss-4 .n-uc-13407254901fc-inner > .n2-ss-layer-row-inner > .n2-ss-layer[data-sstype="col"]{margin:0px}div#n2-ss-4 .n-uc-15f5b7db16173-inner{padding:10px 0px 10px 10px}div#n2-ss-4 .n-uc-15f5b7db16173{width:calc(100% - 0px)}div#n2-ss-4 .n-uc-16361f460114e{--margin-top:0px;max-width:none;--ssfont-scale:0.6}div#n2-ss-4 .n-uc-170a2f4f2aae8{--margin-top:0px;--margin-bottom:15px;max-width:240px;--ssfont-scale:0.6}div#n2-ss-4 .n-uc-1ef26e3d9379d-inner{padding:20px 15px 115px 15px}div#n2-ss-4 .n-uc-1fb79a03e4caf-inner{padding:10px 10px 10px 0px;text-align:center;--ssselfalign:center;}div#n2-ss-4 .n-uc-1fb79a03e4caf-inner > .n2-ss-layer-row-inner{flex-wrap:wrap;}div#n2-ss-4 .n-uc-1fb79a03e4caf{align-self:var(--ss-fs);}div#n2-ss-4 .n-uc-1c3a390633ffe{max-width: 285px;width:auto}div#n2-ss-4 .n-uc-1a8cc4034e07f{--margin-top:0px;--margin-bottom:10px;max-width:225px;display:none;--ssfont-scale:0.6}div#n2-ss-4 .n-uc-1209a7ef17279{--margin-top:0px;--margin-bottom:10px;max-width:none;--ssfont-scale:0.6}div#n2-ss-4 .n-uc-107ccdbaf73c6{--margin-right:615px;--margin-bottom:15px;--margin-left:-5px;display:none;--ssfont-scale:0.6}div#n2-ss-4 .n-uc-1c9ab8cfdeb87{--margin-top:0px;--margin-bottom:10px;max-width:225px;display:none;--ssfont-scale:0.6}div#n2-ss-4 .n-uc-18ce0abebb3a9{--margin-right:615px;--margin-bottom:15px;--margin-left:-5px;display:none;--ssfont-scale:0.6}div#n2-ss-4 .n-uc-14c5cf701510d{--margin-top:-10px;--margin-bottom:0px;max-width:260px;--ssfont-scale:0.6}div#n2-ss-4 .n-uc-19b53e3bc31cc-inner{text-align:center;--ssselfalign:center;}div#n2-ss-4 .n-uc-19b53e3bc31cc-inner > .n2-ss-layer-row-inner{flex-wrap:wrap;}div#n2-ss-4 .n-uc-19b53e3bc31cc{align-self:var(--ss-fs);}div#n2-ss-4 .n-uc-1bb09a75975c9-inner{padding:10px 35px 10px 0px}div#n2-ss-4 .n-uc-1bb09a75975c9{max-width: 75px;width:calc(33% - 0px)}div#n2-ss-4 .n-uc-12bfe9f0ee17f{max-width:45px}div#n2-ss-4 .n-uc-12fa985207bc9-inner{padding:10px 10px 10px 10px}div#n2-ss-4 .n-uc-12fa985207bc9{width:calc(33% - 0px)}div#n2-ss-4 .n-uc-1fb932391231e{width:calc(33% - 0px)}div#n2-ss-4 .n-uc-1023123ca1287{max-width:45px}div#n2-ss-4 .n-uc-1b750b69de594-inner{padding:10px 35px 10px 0px}div#n2-ss-4 .n-uc-1b750b69de594{max-width: 75px;width:calc(33% - 0px)}div#n2-ss-4 .n-uc-18efb227735db{max-width:40px}div#n2-ss-4 .n-uc-150970cd27909{width:calc(33% - 0px)}div#n2-ss-4 .n-uc-1804428bc50d2{max-width:45px}div#n2-ss-4 .n-uc-141e42d226ec2{width:calc(33% - 0px)}div#n2-ss-4 [data-hide-mobileportrait="1"]{display: none !important;}}</style> <script>(function(){this._N2=this._N2||{_r:[],_d:[],r:function(){this._r.push(arguments)},d:function(){this._d.push(arguments)}}}).call(window);</script><script src="https://cern70.cern/wp-content/plugins/smart-slider-3/Public/SmartSlider3/Application/Frontend/Assets/dist/n2.min.js?ver=fe0c9112" defer async></script> <script src="https://cern70.cern/wp-content/plugins/smart-slider-3/Public/SmartSlider3/Application/Frontend/Assets/dist/smartslider-frontend.min.js?ver=fe0c9112" defer async></script> <script src="https://cern70.cern/wp-content/plugins/smart-slider-3/Public/SmartSlider3/Slider/SliderType/Simple/Assets/dist/ss-simple.min.js?ver=fe0c9112" defer async></script> <script src="https://cern70.cern/wp-content/plugins/smart-slider-3/Public/SmartSlider3/Widget/Thumbnail/Basic/Assets/dist/w-thumbnail-horizontal.min.js?ver=fe0c9112" defer async></script> <script>_N2.r('documentReady',function(){_N2.r(["documentReady","smartslider-frontend","SmartSliderWidgetThumbnailDefaultHorizontal","ss-simple"],function(){new _N2.SmartSliderSimple('n2-ss-4',{"admin":false,"background.video.mobile":1,"loadingTime":2000,"alias":{"id":0,"smoothScroll":0,"slideSwitch":0,"scroll":1},"align":"normal","isDelayed":0,"responsive":{"mediaQueries":{"all":false,"desktopportrait":["(min-width: 1200px)"],"tabletportrait":["(orientation: landscape) and (max-width: 1199px) and (min-width: 901px)","(orientation: portrait) and (max-width: 1199px) and (min-width: 701px)"],"mobileportrait":["(orientation: landscape) and (max-width: 900px)","(orientation: portrait) and (max-width: 700px)"]},"base":{"slideOuterWidth":1920,"slideOuterHeight":800,"sliderWidth":1920,"sliderHeight":800,"slideWidth":1920,"slideHeight":800},"hideOn":{"desktopLandscape":false,"desktopPortrait":false,"tabletLandscape":false,"tabletPortrait":false,"mobileLandscape":false,"mobilePortrait":false},"onResizeEnabled":true,"type":"fullwidth","sliderHeightBasedOn":"real","focusUser":1,"focusEdge":"auto","breakpoints":[{"device":"tabletPortrait","type":"max-screen-width","portraitWidth":1199,"landscapeWidth":1199},{"device":"mobilePortrait","type":"max-screen-width","portraitWidth":700,"landscapeWidth":900}],"enabledDevices":{"desktopLandscape":0,"desktopPortrait":1,"tabletLandscape":0,"tabletPortrait":1,"mobileLandscape":0,"mobilePortrait":1},"sizes":{"desktopPortrait":{"width":1920,"height":800,"max":3000,"min":1200},"tabletPortrait":{"width":701,"height":292,"customHeight":false,"max":1199,"min":701},"mobilePortrait":{"width":320,"height":133,"customHeight":false,"max":900,"min":320}},"overflowHiddenPage":0,"focus":{"offsetTop":"#wpadminbar","offsetBottom":""}},"controls":{"mousewheel":0,"touch":"horizontal","keyboard":1,"blockCarouselInteraction":1},"playWhenVisible":1,"playWhenVisibleAt":0.5,"lazyLoad":0,"lazyLoadNeighbor":0,"blockrightclick":0,"maintainSession":0,"autoplay":{"enabled":1,"start":1,"duration":8000,"autoplayLoop":1,"allowReStart":0,"pause":{"click":0,"mouse":"0","mediaStarted":0},"resume":{"click":0,"mouse":"0","mediaEnded":0,"slidechanged":0},"interval":1,"intervalModifier":"loop","intervalSlide":"current"},"perspective":1500,"layerMode":{"playOnce":0,"playFirstLayer":1,"mode":"skippable","inAnimation":"mainInEnd"},"bgAnimations":0,"mainanimation":{"type":"fade","duration":800,"delay":0,"ease":"easeOutQuad","shiftedBackgroundAnimation":0},"carousel":1,"initCallbacks":function(){new _N2.SmartSliderWidgetThumbnailDefaultHorizontal(this,{"action":"click","minimumThumbnailCount":1})}})})});</script><script src="https://cern70.cern/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script> <script src="https://cern70.cern/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script> <script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js?ver=6.7.2" id="leaflet-script-js"></script> <script src="https://unpkg.com/leaflet.markercluster@1.4.1/dist/leaflet.markercluster.js?ver=6.7.2" id="leaflet-markercluster-script-js"></script> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://cern70.cern/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.2" /> <link rel="canonical" href="https://cern70.cern/" /> <link rel='shortlink' href='https://cern70.cern/' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://cern70.cern/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcern70.cern%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://cern70.cern/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcern70.cern%2F&format=xml" /> <style class='wp-fonts-local'> @font-face{font-family:"DM Sans";font-style:normal;font-weight:400;font-display:fallback;src:url('https://cern70.cern/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular.woff2') format('woff2');font-stretch:normal;} @font-face{font-family:"DM Sans";font-style:italic;font-weight:400;font-display:fallback;src:url('https://cern70.cern/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular-Italic.woff2') format('woff2');font-stretch:normal;} @font-face{font-family:"DM Sans";font-style:normal;font-weight:700;font-display:fallback;src:url('https://cern70.cern/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold.woff2') format('woff2');font-stretch:normal;} @font-face{font-family:"DM Sans";font-style:italic;font-weight:700;font-display:fallback;src:url('https://cern70.cern/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold-Italic.woff2') format('woff2');font-stretch:normal;} @font-face{font-family:"IBM Plex Mono";font-style:normal;font-weight:300;font-display:block;src:url('https://cern70.cern/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Light.woff2') format('woff2');font-stretch:normal;} @font-face{font-family:"IBM Plex Mono";font-style:normal;font-weight:400;font-display:block;src:url('https://cern70.cern/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2') format('woff2');font-stretch:normal;} @font-face{font-family:"IBM Plex Mono";font-style:italic;font-weight:400;font-display:block;src:url('https://cern70.cern/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2') format('woff2');font-stretch:normal;} @font-face{font-family:"IBM Plex Mono";font-style:normal;font-weight:700;font-display:block;src:url('https://cern70.cern/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2') format('woff2');font-stretch:normal;} @font-face{font-family:Inter;font-style:normal;font-weight:200 900;font-display:fallback;src:url('https://cern70.cern/wp-content/themes/twentytwentythree/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf') format('truetype');font-stretch:normal;} @font-face{font-family:"Source Serif Pro";font-style:normal;font-weight:200 900;font-display:fallback;src:url('https://cern70.cern/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2') format('woff2');font-stretch:normal;} @font-face{font-family:"Source Serif Pro";font-style:italic;font-weight:200 900;font-display:fallback;src:url('https://cern70.cern/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2') format('woff2');font-stretch:normal;} </style> <link rel="icon" href="https://cern70.cern/wp-content/uploads/2023/12/CERN70_logo_white-copy-150x150.png" sizes="32x32" /> <link rel="icon" href="https://cern70.cern/wp-content/uploads/2023/12/CERN70_logo_white-copy.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://cern70.cern/wp-content/uploads/2023/12/CERN70_logo_white-copy.png" /> <meta name="msapplication-TileImage" content="https://cern70.cern/wp-content/uploads/2023/12/CERN70_logo_white-copy.png" /> <style type="text/css">/** Mega Menu CSS: fs **/</style> </head> <body class="home page-template page-template-wp-custom-template-homepage-slider page page-id-102 wp-custom-logo wp-embed-responsive mega-menu-max-mega-menu-1"> <div class="wp-site-blocks"><header class="wp-block-template-part"> <div class="wp-block-group alignwide has-base-color has-black-background-color has-text-color has-background has-link-color wp-elements-2e4ecbe7475c1e388c74ff12ec613397 is-content-justification-space-between is-nowrap is-layout-flex wp-container-core-group-is-layout-2 wp-block-group-is-layout-flex" style="margin-top:0;margin-bottom:0;padding-right:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"> <div class="wp-block-group is-layout-flex wp-block-group-is-layout-flex"><div class="is-style-default wp-block-site-logo wp-duotone-unset-1"><a href="https://cern70.cern/" class="custom-logo-link" rel="home" aria-current="page"><img width="136" height="129" src="https://cern70.cern/wp-content/uploads/2023/12/CERN70_logo_white-copy.png" class="custom-logo" alt="CERN70" decoding="async" srcset="https://cern70.cern/wp-content/uploads/2023/12/CERN70_logo_white-copy.png 1550w, https://cern70.cern/wp-content/uploads/2023/12/CERN70_logo_white-copy-300x285.png 300w, https://cern70.cern/wp-content/uploads/2023/12/CERN70_logo_white-copy-1024x973.png 1024w, https://cern70.cern/wp-content/uploads/2023/12/CERN70_logo_white-copy-768x730.png 768w, https://cern70.cern/wp-content/uploads/2023/12/CERN70_logo_white-copy-1536x1460.png 1536w" sizes="(max-width: 136px) 100vw, 136px" /></a></div> <h1 class="has-link-color wp-elements-e24c80986e13ab3d929b38d6b46e3019 wp-block-site-title has-text-color has-white-color has-medium-font-size"><a href="https://cern70.cern" target="_self" rel="home" aria-current="page">CERN70</a></h1></div> <div class="widget widget_maxmegamenu"><div id="mega-menu-wrap-max_mega_menu_1" class="mega-menu-wrap"><div class="mega-menu-toggle"><div class="mega-toggle-blocks-left"></div><div class="mega-toggle-blocks-center"></div><div class="mega-toggle-blocks-right"><div class='mega-toggle-block mega-menu-toggle-animated-block mega-toggle-block-0' id='mega-toggle-block-0'><button aria-label="Toggle Menu" class="mega-toggle-animated mega-toggle-animated-slider" type="button" aria-expanded="false"> <span class="mega-toggle-animated-box"> <span class="mega-toggle-animated-inner"></span> </span> </button></div></div></div><ul id="mega-menu-max_mega_menu_1" class="mega-menu max-mega-menu mega-menu-horizontal mega-no-js" data-event="hover_intent" data-effect="fade_up" data-effect-speed="200" data-effect-mobile="disabled" data-effect-speed-mobile="0" data-mobile-force-width="false" data-second-click="go" data-document-click="collapse" data-vertical-behaviour="standard" data-breakpoint="768" data-unbind="true" data-mobile-state="collapse_all" data-mobile-direction="vertical" data-hover-intent-timeout="300" data-hover-intent-interval="100"><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-align-bottom-left mega-menu-flyout mega-menu-item-5420' id='mega-menu-item-5420'><a class="mega-menu-link" href="https://cern70.cern/news/" tabindex="0">News</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-5418' id='mega-menu-item-5418'><a class="mega-menu-link" href="https://cern70.cern/events/" tabindex="0">Events</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-5419' id='mega-menu-item-5419'><a class="mega-menu-link" href="https://cern70.cern/multimedia/" tabindex="0">Multimedia</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-align-bottom-left mega-menu-flyout mega-menu-item-5421' id='mega-menu-item-5421'><a class="mega-menu-link" href="https://home.cern/science/cern/cern70-media-kit" tabindex="0">Press</a></li><li class='mega-lang-item mega-lang-item-42 mega-lang-item-fr mega-lang-item-first mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-align-bottom-left mega-menu-flyout mega-menu-item-5422-fr lang-item lang-item-42 lang-item-fr lang-item-first' id='mega-menu-item-5422-fr'><a class="mega-menu-link" href="https://cern70.cern/fr/home/" tabindex="0">Français</a></li></ul></div></div></div> <div class="entry-content alignfull wp-block-post-content has-global-padding is-layout-constrained wp-container-core-post-content-is-layout-1 wp-block-post-content-is-layout-constrained"> <div class="wp-block-columns alignfull is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex"> <div class="wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow"><div class="n2-section-smartslider fitvidsignore n2_clear" data-ssid="4"><div id="n2-ss-4-align" class="n2-ss-align"><div class="n2-padding"><div id="n2-ss-4" data-creator="Smart Slider 3" data-responsive="fullwidth" class="n2-ss-slider n2-ow n2-has-hover n2notransition "> <div class="n2-ss-slider-wrapper-inside"> <div class="n2-ss-slider-1 n2_ss__touch_element n2-ow"> <div class="n2-ss-slider-2 n2-ow"> <div class="n2-ss-slider-3 n2-ow"> <div class="n2-ss-slide-backgrounds n2-ow-all"><div class="n2-ss-slide-background" data-public-id="1" data-mode="center"><div data-color="RGBA(255,255,255,0)" style="background-color: RGBA(255,255,255,0);" class="n2-ss-slide-background-color"></div></div><div class="n2-ss-slide-background" data-public-id="2" data-mode="stretch"><div data-color="RGBA(255,255,255,0)" style="background-color: RGBA(255,255,255,0);" class="n2-ss-slide-background-color"></div></div></div> <div class="n2-ss-slider-4 n2-ow"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 800" data-related-device="desktopPortrait" class="n2-ow n2-ss-preserve-size n2-ss-preserve-size--slider n2-ss-slide-limiter"></svg><div data-first="1" data-slide-duration="0" data-id="9" data-slide-public-id="1" data-title="Home CERN70" class="n2-ss-slide n2-ow n2-ss-slide-9"><div role="note" class="n2-ss-slide--focus" tabindex="-1">Home CERN70</div><div class="n2-ss-layers-container n2-ss-slide-limiter n2-ow"><div class="n2-ss-layer n2-ow n-uc-tlwhapPCnZfk" data-sstype="slide" data-pm="default"><div class="n2-ss-layer n2-ow n-uc-bsnkEvXzlrvW" data-pm="default" data-sstype="content" data-hasbackground="1"><div class="n2-ss-section-main-content n2-ss-layer-with-background n2-ss-layer-content n2-ow n-uc-bsnkEvXzlrvW-inner"><div class="n2-ss-layer n2-ow n2-ss-layer--block n2-ss-has-self-align n-uc-1ee4e450768d6" data-pm="normal" data-hidemobileportrait="1" data-sstype="row"><div class="n2-ss-layer-row n2-ss-layer-with-background n-uc-1ee4e450768d6-inner"><div class="n2-ss-layer-row-inner "><div class="n2-ss-layer n2-ow n-uc-1902bd495048d" data-pm="default" data-sstype="col"><div class="n2-ss-layer-col n2-ss-layer-with-background n2-ss-layer-content n-uc-1902bd495048d-inner"><div class="n2-ss-layer n2-ow n-uc-1152e5b149055 n2-ss-layer--auto" data-pm="normal" data-sstype="layer"><h1 id="n2-ss-4item1" class="n2-font-193da5aac4cb4ec7e0a72f11155b9648-hover n2-style-a8c16f05c2ef3384a4270dfc737d784f-heading n2-ss-item-content n2-ss-text n2-ow" style="display:inline-block;">CERN at 70<br></h1></div><div class="n2-ss-layer n2-ow n-uc-1d1f1d1fb0147" data-pm="normal" data-hidedesktopportrait="1" data-hidetabletportrait="1" data-sstype="layer"><div class="n2-ss-item-content n2-ss-text n2-ow-all"><div class=""><p class="n2-font-7f153db42896543a72b3a861a5140991-paragraph n2-style-fd4bb355de8fc1ab3e34e9a837a89507-heading ">This year holds special significance for CERN as the Organization celebrates its 70th anniversary on 29 September 2024.</p> </div></div></div><div class="n2-ss-layer n2-ow n-uc-16a3243307a32 n2-ss-layer--auto" data-pm="normal" data-sstype="layer"><h1 id="n2-ss-4item3" class="n2-font-193da5aac4cb4ec7e0a72f11155b9648-hover n2-style-f20c151d99d31877cae787392751ca24-heading n2-ss-item-content n2-ss-text n2-ow" style="display:inline-block;">Inspiring the Future</h1></div><div class="n2-ss-layer n2-ow n-uc-15f217f5d44f5" data-pm="normal" data-sstype="layer"><div class="n2-ss-item-content n2-ss-text n2-ow-all"><div class=""><p class="n2-font-fa98a71fef988b0c297e5e33ceb1e8bf-paragraph n2-style-13b3dcb408cd92cc640e02e1d3e1db17-heading ">This year holds special significance for CERN as the Organization celebrates its 70th anniversary on 29 September 2024</p> </div></div></div></div></div></div></div></div><div class="n2-ss-layer n2-ow n2-ss-layer--block n2-ss-has-self-align n-uc-13407254901fc" data-pm="normal" data-hidedesktopportrait="1" data-hidetabletportrait="1" data-sstype="row"><div class="n2-ss-layer-row n2-ss-layer-with-background n-uc-13407254901fc-inner"><div class="n2-ss-layer-row-inner "><div class="n2-ss-layer n2-ow n-uc-15f5b7db16173" data-pm="default" data-sstype="col"><div class="n2-ss-layer-col n2-ss-layer-with-background n2-ss-layer-content n-uc-15f5b7db16173-inner"><div class="n2-ss-layer n2-ow n-uc-16361f460114e n2-ss-layer--auto" data-pm="normal" data-sstype="layer"><h1 id="n2-ss-4item5" class="n2-font-f4ca0d96bee6e1c99ca60b3ce9d53b0f-hover n2-style-a8c16f05c2ef3384a4270dfc737d784f-heading n2-ss-item-content n2-ss-text n2-ow" style="display:inline-block;">CERN at 70<br>Inspiring the Future<br></h1></div><div class="n2-ss-layer n2-ow n-uc-170a2f4f2aae8" data-pm="normal" data-sstype="layer"><div class="n2-ss-item-content n2-ss-text n2-ow-all"><div class=""><p class="n2-font-9c743170291bc0e6ece2d3726f8972cf-paragraph n2-style-13b3dcb408cd92cc640e02e1d3e1db17-heading ">This year holds special significance for CERN as the Organization celebrates its 70th anniversary on 29 September 2024</p> </div></div></div></div></div></div></div></div></div></div></div></div></div><div data-slide-duration="0" data-id="10" data-slide-public-id="2" data-title="Social media" class="n2-ss-slide n2-ow n2-ss-slide-10"><div role="note" class="n2-ss-slide--focus" tabindex="-1">Social media</div><div class="n2-ss-layers-container n2-ss-slide-limiter n2-ow"><div class="n2-ss-layer n2-ow n-uc-3tutigx9y6Mj" data-sstype="slide" data-pm="default"><div class="n2-ss-layer n2-ow n-uc-1ef26e3d9379d" data-pm="default" data-sstype="content" data-hasbackground="1"><div class="n2-ss-section-main-content n2-ss-layer-with-background n2-ss-layer-content n2-ow n-uc-1ef26e3d9379d-inner"><div class="n2-ss-layer n2-ow n2-ss-layer--auto n2-ss-has-self-align n-uc-1fb79a03e4caf" data-pm="normal" data-sstype="row"><div class="n2-ss-layer-row n2-ss-layer-with-background n-uc-1fb79a03e4caf-inner"><div class="n2-ss-layer-row-inner "><div class="n2-ss-layer n2-ow n-uc-1c3a390633ffe" data-pm="default" data-sstype="col"><div class="n2-ss-layer-col n2-ss-layer-with-background n2-ss-layer-content n-uc-1c3a390633ffe-inner"><div class="n2-ss-layer n2-ow n-uc-1a8cc4034e07f n2-ss-layer--auto" data-pm="normal" data-hidetabletportrait="1" data-hidemobileportrait="1" data-sstype="layer"><h1 id="n2-ss-4item7" class="n2-font-193da5aac4cb4ec7e0a72f11155b9648-hover n2-style-f20c151d99d31877cae787392751ca24-heading n2-ss-item-content n2-ss-text n2-ow" style="display:inline-block;">Connect with us</h1></div><div class="n2-ss-layer n2-ow n-uc-1209a7ef17279 n2-ss-layer--auto" data-pm="normal" data-hidedesktopportrait="1" data-hidetabletportrait="1" data-sstype="layer"><h1 id="n2-ss-4item8" class="n2-font-0b3f121b98e7f6e7922f2bb3a149f7ef-hover n2-style-70469fc10fe6237b678f32b29a4939de-heading n2-ss-item-content n2-ss-text n2-ow" style="display:inline-block;">Connect with us</h1></div><div class="n2-ss-layer n2-ow n-uc-107ccdbaf73c6" data-pm="normal" data-hidetabletportrait="1" data-hidemobileportrait="1" data-sstype="layer"><div class="n2-ss-item-content n2-ss-text n2-ow-all"><div class=""><p class="n2-font-fa98a71fef988b0c297e5e33ceb1e8bf-paragraph n2-style-f20c151d99d31877cae787392751ca24-heading ">Follow us on social media for the latest updates </p> </div></div></div><div class="n2-ss-layer n2-ow n-uc-1c9ab8cfdeb87" data-pm="normal" data-hidedesktopportrait="1" data-hidemobileportrait="1" data-sstype="layer"><h1 id="n2-ss-4item10" class="n2-font-f64a1a63cee359445a49e0772132f3b4-hover n2-style-cccba522bbe9e6a5d11143c6cda8e431-heading n2-ss-item-content n2-ss-text n2-ow" style="display:block;">Connect with us</h1></div><div class="n2-ss-layer n2-ow n-uc-18ce0abebb3a9" data-pm="normal" data-hidedesktopportrait="1" data-hidemobileportrait="1" data-sstype="layer"><div class="n2-ss-item-content n2-ss-text n2-ow-all"><div class=""><p class="n2-font-3d852e15c72093e5c4549f2973138979-paragraph n2-style-cccba522bbe9e6a5d11143c6cda8e431-heading ">Follow us on social media for the latest updates </p> </div></div></div><div class="n2-ss-layer n2-ow n-uc-14c5cf701510d" data-pm="normal" data-hidedesktopportrait="1" data-hidetabletportrait="1" data-sstype="layer"><div class="n2-ss-item-content n2-ss-text n2-ow-all"><div class=""><p class="n2-font-308ced337f118363787c95bfd45a4872-paragraph n2-style-b35834208f56f667ace2a5559dad8be2-heading ">Follow us on social media for the latest updates </p> </div></div></div><div class="n2-ss-layer n2-ow n2-ss-layer--block n2-ss-has-self-align n-uc-19b53e3bc31cc" data-pm="normal" data-sstype="row"><div class="n2-ss-layer-row n2-ss-layer-with-background n-uc-19b53e3bc31cc-inner"><div class="n2-ss-layer-row-inner "><div class="n2-ss-layer n2-ow n-uc-1bb09a75975c9" data-pm="default" data-sstype="col"><div class="n2-ss-layer-col n2-ss-layer-with-background n2-ss-layer-content n-uc-1bb09a75975c9-inner"><div class="n2-ss-layer n2-ow n-uc-12bfe9f0ee17f" data-pm="normal" data-sstype="layer"><div class=" n2-ss-item-image-content n2-ss-item-content n2-ow-all"><a target="_blank" href="https://www.facebook.com/cern/"><img decoding="async" id="n2-ss-4item13" alt="CERN on Facebook" class="skip-lazy" style="width:40px;height:auto" loading="lazy" width="444" height="444" data-skip-lazy="1" src="//cern70.cern/wp-content/uploads/2024/01/logo_facebook-e1705486087244.png" /></a></div></div></div></div><div class="n2-ss-layer n2-ow n-uc-12fa985207bc9" data-pm="default" data-sstype="col"><div class="n2-ss-layer-col n2-ss-layer-with-background n2-ss-layer-content n-uc-12fa985207bc9-inner"><div class="n2-ss-layer n2-ow n-uc-11cab3031f850" data-pm="normal" data-sstype="layer"><div class=" n2-ss-item-image-content n2-ss-item-content n2-ow-all"><a target="_blank" href="https://www.instagram.com/cern/"><img decoding="async" id="n2-ss-4item14" alt="CERN on Instagram" class="skip-lazy" style="width:40px;height:auto" loading="lazy" width="915" height="899" data-skip-lazy="1" src="//cern70.cern/wp-content/uploads/2024/01/logo_instagram-1-e1705486287863.png" /></a></div></div></div></div><div class="n2-ss-layer n2-ow n-uc-1fb932391231e" data-pm="default" data-href="https://www.tiktok.com/@cern_ontiktok" tabindex="0" role="button" data-n2click="url" data-force-pointer="" data-sstype="col"><div class="n2-ss-layer-col n2-ss-layer-with-background n2-ss-layer-content n-uc-1fb932391231e-inner"><div class="n2-ss-layer n2-ow n-uc-1023123ca1287" data-pm="normal" data-sstype="layer"><div class=" n2-ss-item-image-content n2-ss-item-content n2-ow-all"><a target="_blank" href="https://twitter.com/CERN"><img decoding="async" id="n2-ss-4item15" alt="CERN on X (formerly Twitter)" class="skip-lazy" style="width:40px;height:auto" loading="lazy" width="684" height="674" data-skip-lazy="1" src="//cern70.cern/wp-content/uploads/2024/01/X_logo-e1704879870433.png" /></a></div></div></div></div><div class="n2-ss-layer n2-ow n-uc-1b750b69de594" data-pm="default" data-sstype="col"><div class="n2-ss-layer-col n2-ss-layer-with-background n2-ss-layer-content n-uc-1b750b69de594-inner"><div class="n2-ss-layer n2-ow n-uc-18efb227735db" data-pm="normal" data-sstype="layer"><div class=" n2-ss-item-image-content n2-ss-item-content n2-ow-all"><a target="_blank" href="https://www.linkedin.com/company/cern"><img decoding="async" id="n2-ss-4item16" alt="CERN on LinkedIn" class="skip-lazy" style="width:40px;height:auto" loading="lazy" width="912" height="899" data-skip-lazy="1" src="//cern70.cern/wp-content/uploads/2024/01/Home-CERN-Headers1-e1704880634482.png" /></a></div></div></div></div><div class="n2-ss-layer n2-ow n-uc-150970cd27909" data-pm="default" data-sstype="col"><div class="n2-ss-layer-col n2-ss-layer-with-background n2-ss-layer-content n-uc-150970cd27909-inner"><div class="n2-ss-layer n2-ow n-uc-1804428bc50d2" data-pm="normal" data-sstype="layer"><div class=" n2-ss-item-image-content n2-ss-item-content n2-ow-all"><a target="_blank" href="https://www.tiktok.com/@cern_ontiktok"><img decoding="async" id="n2-ss-4item17" alt="CERN on TikTok" class="skip-lazy" style="width:40px;height:auto" loading="lazy" width="912" height="899" data-skip-lazy="1" src="//cern70.cern/wp-content/uploads/2024/01/Home-CERN-Headers2-e1704977221581.png" /></a></div></div></div></div><div class="n2-ss-layer n2-ow n-uc-141e42d226ec2" data-pm="default" data-sstype="col"><div class="n2-ss-layer-col n2-ss-layer-with-background n2-ss-layer-content n-uc-141e42d226ec2-inner"><div class="n2-ss-layer n2-ow n-uc-16d7e7f59bc34" data-pm="normal" data-sstype="layer"><div class=" n2-ss-item-image-content n2-ss-item-content n2-ow-all"><a target="_blank" href="https://www.youtube.com/user/cerntv"><img decoding="async" id="n2-ss-4item18" alt="CERN on YouTube" class="skip-lazy" style="width:40px;height:auto" loading="lazy" width="915" height="899" data-skip-lazy="1" src="//cern70.cern/wp-content/uploads/2024/01/logo_youtube-e1705485752291.png" /></a></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div> </div> </div> </div> </div> <div class="n2-ss-slider-controls n2-ss-slider-controls-absolute-right-bottom"><div style="--widget-offset:20px;width:100%;" data-width-percent="100" class="n2-ss-widget nextend-thumbnail nextend-thumbnail-default nextend-thumbnail-horizontal n2-ow-all" data-has-next="0" data-has-previous="0"><div class="nextend-thumbnail-inner n2-style-309d32ff254831c4cc207ee90ad66fe1-simple "><div class="nextend-thumbnail-scroller n2-align-content-end" style="grid-template-rows:repeat(1, 1fr)"><div class="n2-thumbnail-dot n2-style-dfee073eb815792368a849d044baf4fe-dot " data-slide-public-id="1" role="button" aria-label="Home CERN70" tabindex="0"><picture class="skip-lazy" data-skip-lazy="1"><img decoding="async" alt="Home CERN70" src="https://cern70.cern/wp-content/uploads/slider/cache/168b52bab3c1177bce97bb0f7ac722ad/science_gateway_slider_image-scaled.webp" width="128" height="60" loading="lazy" class="skip-lazy" data-skip-lazy="1" /></picture></div><div class="n2-thumbnail-dot n2-style-dfee073eb815792368a849d044baf4fe-dot " data-slide-public-id="2" role="button" aria-label="Social media" tabindex="0"><picture class="skip-lazy" data-skip-lazy="1"><img decoding="async" alt="Social media" src="https://cern70.cern/wp-content/uploads/slider/cache/b1e8a70bba6e08fed47662192d7785d6/cms_slider_image.webp" width="100" height="67" loading="lazy" class="skip-lazy" data-skip-lazy="1" /></picture></div></div></div><div class="nextend-thumbnail-button nextend-thumbnail-previous"><img decoding="async" width="26" height="26" style="width:26px;transform:rotateZ(-90deg);" loading="lazy" class="skip-lazy" data-skip-lazy="1" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxjaXJjbGUgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIG9wYWNpdHk9Ii41IiBmaWxsPSIjMDAwIiBjeD0iMTMiIGN5PSIxMyIgcj0iMTIiLz4KICAgICAgICA8cGF0aCBkPSJNMTMuNDM1IDkuMTc4Yy0uMTI2LS4xMjEtLjI3LS4xODItLjQzNi0uMTgyLS4xNjQgMC0uMzA2LjA2MS0uNDI4LjE4MmwtNC4zOCA0LjE3NWMtLjEyNi4xMjEtLjE4OC4yNjItLjE4OC40MjQgMCAuMTYxLjA2Mi4zMDIuMTg4LjQyM2wuNjUuNjIyYy4xMjYuMTIxLjI3My4xODIuNDQxLjE4Mi4xNyAwIC4zMTQtLjA2MS40MzYtLjE4MmwzLjMxNC0zLjE2MSAzLjI0OSAzLjE2MWMuMTI2LjEyMS4yNjkuMTgyLjQzMi4xODIuMTY0IDAgLjMwNy0uMDYxLjQzMy0uMTgybC42NjItLjYyMmMuMTI2LS4xMjEuMTg5LS4yNjIuMTg5LS40MjMgMC0uMTYyLS4wNjMtLjMwMy0uMTg5LS40MjRsLTQuMzczLTQuMTc1eiIKICAgICAgICAgICAgICBmaWxsPSIjZmZmIi8+CiAgICA8L2c+Cjwvc3ZnPg==" alt="previous arrow"></div><div class="nextend-thumbnail-button nextend-thumbnail-next"><img decoding="async" width="26" height="26" style="width:26px;transform:rotateZ(-90deg);" loading="lazy" class="skip-lazy" data-skip-lazy="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiI+CiAgICA8ZyBmaWxsPSJub25lIj4KICAgICAgICA8Y2lyY2xlIGN4PSIxMyIgY3k9IjEzIiByPSIxMiIgZmlsbD0iIzAwMCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIG9wYWNpdHk9Ii41Ii8+CiAgICAgICAgPHBhdGggZmlsbD0iI2ZmZiIKICAgICAgICAgICAgICBkPSJNMTIuNTY1IDE2LjgyMmMuMTI2LjEyLjI3LjE4Mi40MzYuMTgyLjE2OCAwIC4zMS0uMDYuNDMtLjE4Mmw0LjM4LTQuMTc1Yy4xMjgtLjEyLjE5LS4yNjIuMTktLjQyNCAwLS4xNi0uMDYyLS4zMDItLjE5LS40MjNsLS42NS0uNjIyYy0uMTI1LS4xMi0uMjcyLS4xODItLjQ0LS4xODItLjE3IDAtLjMxNC4wNi0uNDM2LjE4MmwtMy4zMTQgMy4xNi0zLjI1LTMuMTZjLS4xMjYtLjEyLS4yNy0uMTgyLS40My0uMTgyLS4xNjYgMC0uMzEuMDYtLjQzNS4xODJsLS42NjIuNjIyYy0uMTI2LjEyLS4xOS4yNjItLjE5LjQyMyAwIC4xNjIuMDY0LjMwMy4xOS40MjRsNC4zNzMgNC4xNzV6Ii8+CiAgICA8L2c+Cjwvc3ZnPg==" alt="next arrow"></div></div></div></div></div><ss3-loader></ss3-loader></div></div><div class="n2_clear"></div></div></div> </div> <div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div> <div class="wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow" style="padding-top:0vw;padding-right:8vw;padding-bottom:0vw;padding-left:8vw"> <h1 class="wp-block-heading has-text-align-center"><strong>Happy birthday!</strong></h1> <div class="wp-block-columns has-base-background-color has-background is-layout-flex wp-container-core-columns-is-layout-2 wp-block-columns-is-layout-flex" style="border-style:none;border-width:0vw;padding-top:var(--wp--preset--spacing--30);padding-right:6vw;padding-bottom:var(--wp--preset--spacing--30);padding-left:6vw"> <div class="wp-block-column is-layout-flow wp-container-core-column-is-layout-2 wp-block-column-is-layout-flow" style="padding-right:0;flex-basis:63%"> <figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper"> <iframe title="Happy 70th birthday CERN" width="500" height="281" src="https://www.youtube.com/embed/dAS8XnE5qp0?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> </div></figure> </div> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:37%"> <p class="has-medium-font-size">CERN’s 70-year history is rich in ground-breaking achievements both in physics and technology. During the celebrations, we will release multiple videos that will take you on this journey with us.</p> <div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"> <div class="wp-block-button has-custom-font-size is-style-outline has-small-font-size is-style-outline--3" style="letter-spacing:6px;text-transform:lowercase"><a class="wp-block-button__link wp-element-button" href="https://cern70.cern/anniversary-videos/" style="border-style:none;border-width:0px;border-radius:0px;padding-top:0;padding-bottom:0">Watch more</a></div> </div> </div> </div> <div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div> <h1 class="wp-block-heading has-text-align-left" style="padding-right:6vw;padding-left:6vw">About CERN</h1> <div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-3 wp-block-columns-is-layout-flex" style="padding-right:6vw;padding-left:6vw"> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="padding-right:0;padding-left:0;flex-basis:80%"> <p class="has-medium-font-size">CERN was established after the Second World War by a handful of Europe’s leading scientists and diplomats with a mission to bring excellence in scientific research back to Europe and foster peaceful collaboration among nations. Today, CERN has 24 Member States, 10 Associate Member States, and a vibrant community of 17 thousand people, representing more than 110 nationalities. With many mysteries of the fundamental nature of the Universe still to be unravelled, CERN is preparing to continue this inspiring journey of exploration.</p> </div> <div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="padding-right:3vw;padding-left:1vw;flex-basis:20%"> <div class="wp-block-buttons is-content-justification-center is-nowrap is-layout-flex wp-container-core-buttons-is-layout-2 wp-block-buttons-is-layout-flex"> <div class="wp-block-button has-custom-width wp-block-button__width-100 is-style-fill"><a class="wp-block-button__link wp-element-button" href="https://cern70.cern/history/"><mark style="background-color:rgba(0, 0, 0, 0);color:#ffffff" class="has-inline-color">TimeLINE</mark></a></div> </div> </div> </div> <div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div> <div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-4 wp-block-columns-is-layout-flex" style="padding-right:6vw;padding-left:6vw"> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"> <div class="wp-block-cover"><span aria-hidden="true" class="wp-block-cover__background has-background-dim"></span><img decoding="async" class="wp-block-cover__image-background wp-image-909" alt="" src="https://cern-70-wordpress.web.cern.ch/wp-content/uploads/2023/12/201902-053_041-scaled-e1702547855402.jpg" data-object-fit="cover"/><div class="wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow"> <p class="has-text-align-center has-link-color has-large-font-size wp-elements-b0187390d5ff368b149a7f38b90b2de5"><strong><a href="https://cern-70-wordpress.web.cern.ch/pushing-back-the-frontiers-of-knowledge/" data-type="page" data-id="1094">Pushing back the frontiers of knowledge</a></strong></p> </div></div> </div> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"> <div class="wp-block-cover" style="margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30)"><span aria-hidden="true" class="wp-block-cover__background has-background-dim"></span><img decoding="async" class="wp-block-cover__image-background wp-image-910" alt="" src="https://cern-70-wordpress.web.cern.ch/wp-content/uploads/2023/12/CERN-EX-1212264-01-e1702547711628.jpg" data-object-fit="cover"/><div class="wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow"> <p class="has-text-align-center has-link-color has-large-font-size wp-elements-9fce7b897a3a176f460dd2e26d9b95ef"><strong><a href="https://cern-70-wordpress.web.cern.ch/advancing-science-and-technology/">Advancing science and technology</a></strong></p> </div></div> </div> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"> <div class="wp-block-cover"><span aria-hidden="true" class="wp-block-cover__background has-background-dim"></span><img decoding="async" class="wp-block-cover__image-background wp-image-911" alt="" src="https://cern-70-wordpress.web.cern.ch/wp-content/uploads/2023/12/icon1440-2002-08-008_X_CERN_00678_0001-e1702549131697.jpg" data-object-fit="cover"/><div class="wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow"> <p class="has-text-align-center has-link-color has-large-font-size wp-elements-08c538f8c7193f8bb2f85f32d25eaad7"><strong><a href="https://cern70.cern/science-without-borders/" data-type="page" data-id="1637">Science without borders</a></strong></p> </div></div> </div> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"> <div class="wp-block-cover" style="margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30);padding-top:0;padding-bottom:0"><span aria-hidden="true" class="wp-block-cover__background has-background-dim"></span><img decoding="async" class="wp-block-cover__image-background wp-image-912" alt="" src="https://cern-70-wordpress.web.cern.ch/wp-content/uploads/2023/12/202009-142_02-e1702549299915-1024x1000.jpg" data-object-fit="cover"/><div class="wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow"> <p class="has-text-align-center has-link-color has-large-font-size wp-elements-08474bb118bd429db38713343fa5d896"><a href="https://cern-70-wordpress.web.cern.ch/science-for-all/" data-type="link" data-id="https://cern-70-wordpress.web.cern.ch/science-for-all/"><strong>Science for all</strong></a></p> </div></div> </div> </div> <div class="wp-block-columns has-tertiary-background-color has-background is-layout-flex wp-container-core-columns-is-layout-7 wp-block-columns-is-layout-flex" style="padding-top:4vw;padding-right:6vw;padding-bottom:4vw;padding-left:6vw"> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"> <div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-5 wp-block-columns-is-layout-flex"> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="padding-right:2vw"> <h1 class="wp-block-heading" style="padding-right:0vw;padding-left:0vw">Upcoming events</h1> <p class="has-link-color has-medium-font-size wp-elements-4ad1780535c19bde9ce122136d619705" style="padding-right:0vw;padding-left:0vw">We have put together a rich and beautiful <a href="https://cern-70-wordpress.web.cern.ch/events/">programme</a> to honour CERN’s contributions to scientific knowledge, technological innovation, and international collaboration over the past 70 years, culminating with an official ceremony on 1 October. </p> <p class="has-link-color has-medium-font-size wp-elements-90b5aa513e1271fef6243951281b164f" style="padding-right:0vw;padding-left:0vw">From conversations with distinguished scientists to exhibitions showcasing CERN science and its people, to many public engagement initiatives at CERN, in Member States and Associate Member States, and beyond, there is something for everyone in this exciting programme. </p> </div> </div> <div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-6 wp-block-columns-is-layout-flex"> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div class='wp-block-indico-blocks wp-block-indico-blocks-events-slider wp-block-1a4996d4-f1fd-42b5-977d-2afe9b54e02e ' id='' block-id='1a4996d4-f1fd-42b5-977d-2afe9b54e02e'> <p class='indico-events-block-no-events-msg'>No events found.</p> <div class='indico-cycle-carousel'> <div class='slideshow-wrapper'> <ul class='cycle-slideshow' data-cycle-fx=carousel data-cycle-carousel-visible=3 data-cycle-swipe=true data-cycle-speed=300 data-cycle-timeout=0 data-cycle-slides='li' data-allow-wrap=false data-cycle-pager='#cycle-pager-carousel-1a4996d4-f1fd-42b5-977d-2afe9b54e02e' data-cycle-prev='#prev-carousel-1a4996d4-f1fd-42b5-977d-2afe9b54e02e' data-cycle-next='#next-carousel-1a4996d4-f1fd-42b5-977d-2afe9b54e02e' > </ul> <div class='dashicon-container dashicon-left'> <span id='prev-carousel-1a4996d4-f1fd-42b5-977d-2afe9b54e02e' class='dashicon'> <span class='dashicons dashicons-arrow-left-alt2'></span> <span class='screen-reader-text'>Previous</span> </span> </div> <div class='dashicon-container dashicon-right'> <span id='next-carousel-1a4996d4-f1fd-42b5-977d-2afe9b54e02e' class='dashicon'> <span class='dashicons dashicons-arrow-right-alt2'></span> <span class='screen-reader-text'>Next</span> </span> </div> </div> <div class='cycle-pager' id='cycle-pager-carousel-1a4996d4-f1fd-42b5-977d-2afe9b54e02e'></div> </div> <div class='indico-cycle-slider'> <div class='slideshow-wrapper'> <ul class='cycle-slideshow' data-cycle-fx=scrollHorz data-cycle-carousel-visible=3 data-cycle-swipe=true data-cycle-speed=300 data-cycle-timeout=0 data-cycle-slides='li' data-allow-wrap=false data-cycle-pager='#cycle-pager-slider-1a4996d4-f1fd-42b5-977d-2afe9b54e02e' data-cycle-prev='#prev-slider-1a4996d4-f1fd-42b5-977d-2afe9b54e02e' data-cycle-next='#next-slider-1a4996d4-f1fd-42b5-977d-2afe9b54e02e' > </ul> <div class='nav-arrows-wrapper'> <div class='dashicon-container dashicon-left'> <span id='prev-slider-1a4996d4-f1fd-42b5-977d-2afe9b54e02e' class='dashicon'> <span class='dashicons dashicons-arrow-left-alt2'></span> <span class='screen-reader-text'>Previous</span> </span> </div> <div class='dashicon-container dashicon-right'> <span id='next-slider-1a4996d4-f1fd-42b5-977d-2afe9b54e02e' class='dashicon'> <span class='dashicons dashicons-arrow-right-alt2'></span> <span class='screen-reader-text'>Next</span> </span> </div> </div> </div> <div class='cycle-pager' id='cycle-pager-slider-1a4996d4-f1fd-42b5-977d-2afe9b54e02e'></div> </div> </div></div> </div> </div> </div> <div class="wp-block-columns has-tertiary-background-color has-background is-layout-flex wp-container-core-columns-is-layout-8 wp-block-columns-is-layout-flex" style="border-style:none;border-width:0vw;padding-top:var(--wp--preset--spacing--30);padding-right:6vw;padding-bottom:var(--wp--preset--spacing--30);padding-left:6vw"> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"> <div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div> <h1 class="wp-block-heading">News</h1> <div id="wpmagazine-modules-post-tiles-block-1e5ff006-9f97-4980-b8fe-588d422fe7d9" class="wpmagazine-modules-post-tiles-block alignwide block-1e5ff006-9f97-4980-b8fe-588d422fe7d9 cvmm-block cvmm-block-post-tiles--layout-three cvmm-block-image-hover--zoomin "> <div class="cvmm-post-tiles-block-main-content-wrap"> <div class="cvmm-post-tiles-slider-post-wrapper cvmm-post-tiles-partial-width" data-dots=0 data-loop=0 data-control=0 data-auto=0 data-type=0 data-speed=2500 data-item=1> <article post-id="post-6537" class="cvmm-post post-format--standard" itemscope itemtype="http://schema.org/articleBody"> <div class="cvmm-post-thumb"> <a href="https://cern70.cern/from-physics-to-medicine/" target="_self" style="background: url( https://cern70.cern/wp-content/uploads/2024/11/CCSupp_1_Detectors_PET-2-e1731593464134.jpg ); background-position: center center; background-size: cover"></a> </div> <div class="cvmm-post-content-all-wrapper"> <h2 class="cvmm-post-title"> <a href="https://cern70.cern/from-physics-to-medicine/" target="_self"> From physics to medicine </a> </h2> <div class="cvmm-post-meta cvmm-meta-icon-hide"> </div> <div class="cvmm-post-content" itemprop="description">Karen Panman (left), Marilena Streit-Bianchi (centre) and Roger Paris (right) of the Radiobiology group at CERN study the effect of radiation on living cells in 1980, using an apparatus for…</div> </div> <!-- cvmm-post-content-all-wrapper --> </article> </div><!-- .cvmm-slider-post-wrapper --> <div class="cvmm-featured-post-left-wrapper"> <article post-id="post-6567" class="cvmm-post post-format--standard" itemscope itemtype="http://schema.org/articleBody"> <div class="cvmm-post-thumb"> <a href="https://cern70.cern/preparing-for-the-future/" target="_self" style="background: url( https://cern70.cern/wp-content/uploads/2024/12/202302-032-2.jpeg ); background-position: center center; background-size: cover"></a> </div> <div class="cvmm-post-content-all-wrapper"> <h2 class="cvmm-post-title"> <a href="https://cern70.cern/preparing-for-the-future/" target="_self"> Preparing for the future </a> </h2> <div class="cvmm-post-meta cvmm-meta-icon-hide"> </div> </div> <!-- cvmm-post-content-all-wrapper --> </article> <article post-id="post-6553" class="cvmm-post post-format--standard" itemscope itemtype="http://schema.org/articleBody"> <div class="cvmm-post-thumb"> <a href="https://cern70.cern/continuing-cerns-legacy-of-open-science/" target="_self" style="background: url( https://cern70.cern/wp-content/uploads/2024/12/1008294_02_3.jpg ); background-position: center center; background-size: cover"></a> </div> <div class="cvmm-post-content-all-wrapper"> <h2 class="cvmm-post-title"> <a href="https://cern70.cern/continuing-cerns-legacy-of-open-science/" target="_self"> Continuing CERN’s legacy of open science </a> </h2> <div class="cvmm-post-meta cvmm-meta-icon-hide"> </div> </div> <!-- cvmm-post-content-all-wrapper --> </article> </div><!-- .cvmm-featured-post-left/right-wrapper --><div class="cvmm-featured-post-right-wrapper"> <article post-id="post-5933" class="cvmm-post post-format--standard" itemscope itemtype="http://schema.org/articleBody"> <div class="cvmm-post-thumb"> <a href="https://cern70.cern/switching-on-the-large-hadron-collider/" target="_self" style="background: url( https://cern70.cern/wp-content/uploads/2024/10/0504028_06-A4-at-144-dpi-crop.jpg ); background-position: center center; background-size: cover"></a> </div> <div class="cvmm-post-content-all-wrapper"> <h2 class="cvmm-post-title"> <a href="https://cern70.cern/switching-on-the-large-hadron-collider/" target="_self"> Switching on the Large Hadron Collider </a> </h2> <div class="cvmm-post-meta cvmm-meta-icon-hide"> </div> </div> <!-- cvmm-post-content-all-wrapper --> </article> <article post-id="post-5501" class="cvmm-post post-format--standard" itemscope itemtype="http://schema.org/articleBody"> <div class="cvmm-post-thumb"> <a href="https://cern70.cern/superconductors-accelerate-progress/" target="_self" style="background: url( https://cern70.cern/wp-content/uploads/2024/09/Peter-Ginter-72-1440-1.jpg ); background-position: center center; background-size: cover"></a> </div> <div class="cvmm-post-content-all-wrapper"> <h2 class="cvmm-post-title"> <a href="https://cern70.cern/superconductors-accelerate-progress/" target="_self"> Superconductors accelerate progress </a> </h2> <div class="cvmm-post-meta cvmm-meta-icon-hide"> </div> </div> <!-- cvmm-post-content-all-wrapper --> </article> </div><!-- .cvmm-featured-post-left/right-wrapper --></div><!-- .cvmm-slider-block-main-content-wrap --> </div><!-- #wpmagazine-modules-banner-block --> <div class="wp-block-buttons alignwide is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3 wp-block-buttons-is-layout-flex"> <div class="wp-block-button"><a class="wp-block-button__link has-white-color has-text-color has-link-color wp-element-button" href="https://cern70.cern/news/">View all news</a></div> </div> </div> </div> <div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div> </div> </div></header> <main id="content" class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-4 wp-block-group-is-layout-constrained" style="margin-top:var(--wp--preset--spacing--50)"></main> <footer class="wp-block-template-part"> <hr class="wp-block-separator has-alpha-channel-opacity is-style-wide"/> <div class="wp-block-columns are-vertically-aligned-top is-layout-flex wp-container-core-columns-is-layout-10 wp-block-columns-is-layout-flex" style="padding-top:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30)"> <div class="wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow" style="padding-right:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><h1 class="wp-block-site-title has-medium-font-size"><a href="https://cern70.cern" target="_self" rel="home" aria-current="page">CERN70</a></h1> <p>Esplanade des Particules 1<br>P.O. Box<br>1211 Geneva 23<br>Switzerland</p> </div> <div class="wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow" style="padding-right:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"> <p class="has-text-align-left">Pages</p> <nav class="has-small-font-size items-justified-left is-vertical no-wrap wp-block-navigation is-content-justification-left is-nowrap is-layout-flex wp-container-core-navigation-is-layout-1 wp-block-navigation-is-layout-flex" aria-label="Navigation 2"><ul class="wp-block-navigation__container has-small-font-size items-justified-left is-vertical no-wrap wp-block-navigation has-small-font-size"><li class="has-small-font-size wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="https://cern70.cern/events/"><span class="wp-block-navigation-item__label">Events</span></a></li><li class="has-small-font-size wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="https://cern-70-wordpress.web.cern.ch/multimedia/"><span class="wp-block-navigation-item__label">Multimedia</span></a></li><li class="has-small-font-size wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="https://cern-70-wordpress.web.cern.ch/news/"><span class="wp-block-navigation-item__label">News</span></a></li><li class="has-small-font-size wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="https://home.cern/science/cern/cern70-media-kit" target="_blank" ><span class="wp-block-navigation-item__label">Press</span></a></li><ul class="wp-block-navigation__container"><li class="lang-item lang-item-42 lang-item-fr has-small-font-size wp-block-navigation-item wp-block-navigation-link wp-block-polylang-navigation-language-switcher"><a class="wp-block-navigation-item__content" href="https://cern70.cern/fr/home/" hreflang="fr-FR" lang="fr-FR"><span class="wp-block-navigation-item__label">Français</span></a></li></ul></ul></nav></div> <div class="wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow" style="padding-right:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"> <p>Socials</p> <ul class="wp-block-social-links has-icon-color has-icon-background-color is-layout-flex wp-block-social-links-is-layout-flex"><li style="color: #ffffff; background-color: #B50B3E; " class="wp-social-link wp-social-link-facebook has-primary-background-color wp-block-social-link"><a href="https://www.facebook.com/cern" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg><span class="wp-block-social-link-label screen-reader-text">CERN facebook</span></a></li> <li style="color: #ffffff; background-color: #B50B3E; " class="wp-social-link wp-social-link-instagram has-primary-background-color wp-block-social-link"><a href="https://www.instagram.com/cern" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Instagram</span></a></li> <li style="color: #ffffff; background-color: #B50B3E; " class="wp-social-link wp-social-link-x has-primary-background-color wp-block-social-link"><a href="https://twitter.com/CERN" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M13.982 10.622 20.54 3h-1.554l-5.693 6.618L8.745 3H3.5l6.876 10.007L3.5 21h1.554l6.012-6.989L15.868 21h5.245l-7.131-10.378Zm-2.128 2.474-.697-.997-5.543-7.93H8l4.474 6.4.697.996 5.815 8.318h-2.387l-4.745-6.787Z" /></svg><span class="wp-block-social-link-label screen-reader-text">X</span></a></li> <li style="color: #ffffff; background-color: #B50B3E; " class="wp-social-link wp-social-link-linkedin has-primary-background-color wp-block-social-link"><a href="https://www.linkedin.com/company/cern" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z"></path></svg><span class="wp-block-social-link-label screen-reader-text">LinkedIn</span></a></li> <li style="color: #ffffff; background-color: #B50B3E; " class="wp-social-link wp-social-link-tiktok has-primary-background-color wp-block-social-link"><a href="https://www.tiktok.com/@cern_ontiktok" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M16.708 0.027c1.745-0.027 3.48-0.011 5.213-0.027 0.105 2.041 0.839 4.12 2.333 5.563 1.491 1.479 3.6 2.156 5.652 2.385v5.369c-1.923-0.063-3.855-0.463-5.6-1.291-0.76-0.344-1.468-0.787-2.161-1.24-0.009 3.896 0.016 7.787-0.025 11.667-0.104 1.864-0.719 3.719-1.803 5.255-1.744 2.557-4.771 4.224-7.88 4.276-1.907 0.109-3.812-0.411-5.437-1.369-2.693-1.588-4.588-4.495-4.864-7.615-0.032-0.667-0.043-1.333-0.016-1.984 0.24-2.537 1.495-4.964 3.443-6.615 2.208-1.923 5.301-2.839 8.197-2.297 0.027 1.975-0.052 3.948-0.052 5.923-1.323-0.428-2.869-0.308-4.025 0.495-0.844 0.547-1.485 1.385-1.819 2.333-0.276 0.676-0.197 1.427-0.181 2.145 0.317 2.188 2.421 4.027 4.667 3.828 1.489-0.016 2.916-0.88 3.692-2.145 0.251-0.443 0.532-0.896 0.547-1.417 0.131-2.385 0.079-4.76 0.095-7.145 0.011-5.375-0.016-10.735 0.025-16.093z" /></svg><span class="wp-block-social-link-label screen-reader-text">TikTok</span></a></li> <li style="color: #ffffff; background-color: #B50B3E; " class="wp-social-link wp-social-link-youtube has-primary-background-color wp-block-social-link"><a href="https://www.youtube.com/user/cerntv" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"></path></svg><span class="wp-block-social-link-label screen-reader-text">YouTube</span></a></li></ul> <div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9 wp-block-columns-is-layout-flex"> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"> <p class="has-small-font-size"><a href="https://visit.cern/" target="_blank" rel="noreferrer noopener"><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-contrast-color">Plan your CERN visit</mark></a></p> <p class="has-small-font-size"><a href="https://home.cern/" target="_blank" rel="noreferrer noopener"><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-contrast-color">Learn more about CERN</mark></a></p> <p class="has-contrast-color has-text-color has-small-font-size"><a href="https://educational-resources.web.cern.ch/" target="_blank" rel="noreferrer noopener">Discover our educational resources</a></p> <p></p> </div> </div> </div> </div> </footer></div> <!-- Matomo --> <script> var _paq = window._paq = window._paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() { var u="https://webanalytics.web.cern.ch/"; _paq.push(['setTrackerUrl', u+'matomo.php']); _paq.push(['setSiteId', '662']); var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); })(); </script> <!-- End Matomo Code --> <noscript><p><img referrerpolicy="no-referrer-when-downgrade" src="https://webanalytics.web.cern.ch/matomo.php?idsite=662&rec=1" style="border:0;" alt="" /></p></noscript> <script id="wp-block-template-skip-link-js-after"> ( function() { var skipLinkTarget = document.querySelector( 'main' ), sibling, skipLinkTargetID, skipLink; // Early exit if a skip-link target can't be located. if ( ! skipLinkTarget ) { return; } /* * Get the site wrapper. * The skip-link will be injected in the beginning of it. */ sibling = document.querySelector( '.wp-site-blocks' ); // Early exit if the root element was not found. if ( ! sibling ) { return; } // Get the skip-link target's ID, and generate one if it doesn't exist. skipLinkTargetID = skipLinkTarget.id; if ( ! skipLinkTargetID ) { skipLinkTargetID = 'wp--skip-link--target'; skipLinkTarget.id = skipLinkTargetID; } // Create the skip link. skipLink = document.createElement( 'a' ); skipLink.classList.add( 'skip-link', 'screen-reader-text' ); skipLink.href = '#' + skipLinkTargetID; skipLink.innerHTML = 'Skip to content'; // Inject the skip link. sibling.parentElement.insertBefore( skipLink, sibling ); }() ); </script> <script src="https://malsup.github.io/min/jquery.cycle2.min.js?ver=6.7.2" id="cycle2-slider-js-js"></script> <script src="https://malsup.github.io/min/jquery.cycle2.carousel.min.js?ver=6.7.2" id="cycle2-carousel-js-js"></script> <script src="https://malsup.github.io/min/jquery.cycle2.center.min.js?ver=6.7.2" id="cycle2-center-js-js"></script> <script src="https://malsup.github.io/min/jquery.cycle2.swipe.min.js?ver=6.7.2" id="cycle2-swipe-js-js"></script> <script src="https://cern70.cern/wp-content/plugins/indico-blocks-plugin//assets/js/map-functions.js?ver=1.0.0" id="map-functions-js"></script> <script src="https://cern70.cern/wp-content/plugins/indico-blocks-plugin//assets/js/map-render.js?ver=1.0.0" id="map-render-js"></script> <script id="wpmagazine-modules-public-script-js-extra"> var wpmagazineModulesObject = {"ajax_url":"https:\/\/cern70.cern\/wp-admin\/admin-ajax.php","_wpnonce":"b02800a994"}; </script> <script src="https://cern70.cern/wp-content/plugins/wp-magazine-modules/includes/assets/js/frontend.js?ver=1.0.9" id="wpmagazine-modules-public-script-js"></script> <script src="https://cern70.cern/wp-content/plugins/wp-magazine-modules/includes/assets/library/slick-slider/js/slick.min.js?ver=1.8.0" id="slick-slider-js"></script> <script src="https://cern70.cern/wp-content/plugins/wp-magazine-modules/includes/assets/library/jQuery.Marquee/jquery.marquee.min.js?ver=1.0.0" id="jquery-marquee-js"></script> <script src="https://cern70.cern/wp-includes/js/imagesloaded.min.js?ver=5.0.0" id="imagesloaded-js"></script> <script src="https://cern70.cern/wp-includes/js/masonry.min.js?ver=4.2.2" id="masonry-js"></script> <script src="https://cern70.cern/wp-content/plugins/wp-magazine-modules/includes/assets/library/wowjs/wow.min.js?ver=1.1.3" id="wow-js"></script> <script src="https://cern70.cern/wp-includes/js/hoverIntent.js?ver=1.10.2" id="hoverIntent-js"></script> <script src="https://cern70.cern/wp-content/plugins/megamenu/js/maxmegamenu.js?ver=3.4.1" id="megamenu-js"></script> <script> (function() { var expirationDate = new Date(); expirationDate.setTime( expirationDate.getTime() + 31536000 * 1000 ); document.cookie = "pll_language=en; expires=" + expirationDate.toUTCString() + "; path=/; secure; SameSite=Lax"; }()); </script> </body> </html> <!-- Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/ Object Caching 14/626 objects using APC Page Caching using APC Served from: cern70.cern @ 2025-04-05 20:53:17 by W3 Total Cache -->