CINXE.COM

Events – CERN70

<!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/events/" hreflang="en" /> <link rel="alternate" href="https://cern70.cern/fr/evenements/" hreflang="fr" /> <title>Events &#8211; CERN70</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 &raquo; Feed" href="https://cern70.cern/feed/" /> <link rel="alternate" type="application/rss+xml" title="CERN70 &raquo; 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-post-title-inline-css'> .wp-block-post-title{ box-sizing:border-box; word-break:break-word; } .wp-block-post-title :where(a){ display:inline-block; 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-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-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-spacer-inline-css'> .wp-block-spacer{ clear:both; } </style> <link rel='stylesheet' id='wp-block-image-css' href='https://cern70.cern/wp-includes/blocks/image/style.css?ver=6.7.2' media='all' /> <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> <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> <link rel='stylesheet' id='indico-blocks-events-style-css' href='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/build/events/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-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='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-post-title){font-weight: 400;margin-top: 1.25rem;margin-bottom: 1.25rem;} :root :where(.wp-block-post-title a:where(:not(.wp-element-button))){border-width: 0 !important;text-decoration: none;} :root :where(.wp-block-post-title a:where(:not(.wp-element-button)):hover){color: var(--wp--preset--color--primary);text-decoration: underline;} :root :where(.wp-block-post-title a:where(:not(.wp-element-button)):focus){color: var(--wp--preset--color--primary);text-decoration: underline dashed;} :root :where(.wp-block-post-title a:where(:not(.wp-element-button)):active){color: var(--wp--preset--color--primary);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='core-block-supports-inline-css'> /** * Core styles: block-supports */ .wp-elements-5a918c6b2d4e7615cf1848ef09cf148b a:where(:not(.wp-element-button)) { color: var(--wp--preset--color--white); } .wp-elements-f1e98d6c897e424c7d4e8232ded39f0a a:where(:not(.wp-element-button)) { color: var(--wp--preset--color--white); } .wp-container-core-group-is-layout-3 { justify-content: space-between; } .wp-container-core-group-is-layout-4 > .alignfull { margin-right: calc(var(--wp--preset--spacing--30) * -1); margin-left: calc(var(--wp--preset--spacing--30) * -1); } .wp-container-core-columns-is-layout-1 { flex-wrap: nowrap; } .wp-container-core-group-is-layout-5 > :where(:not(.alignleft):not(.alignright):not(.alignfull)) { max-width: 100%; margin-left: auto !important; margin-right: auto !important; } .wp-container-core-group-is-layout-5 > .alignwide { max-width: 100%; } .wp-container-core-group-is-layout-5 .alignfull { max-width: none; } .wp-container-core-group-is-layout-5 > .alignfull { margin-right: calc(12vw * -1); margin-left: calc(12vw * -1); } .wp-container-core-buttons-is-layout-1 { justify-content: center; } .wp-container-core-group-is-layout-6 > :where(:not(.alignleft):not(.alignright):not(.alignfull)) { max-width: 100%; margin-left: auto !important; margin-right: auto !important; } .wp-container-core-group-is-layout-6 > .alignwide { max-width: 100%; } .wp-container-core-group-is-layout-6 .alignfull { max-width: none; } .wp-container-core-group-is-layout-6 > .alignfull { margin-right: calc(15vw * -1); margin-left: calc(15vw * -1); } .wp-container-core-columns-is-layout-2 { flex-wrap: nowrap; } .wp-container-core-post-content-is-layout-1 > :where(:not(.alignleft):not(.alignright):not(.alignfull)) { max-width: 100%; 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-7 > :where(:not(.alignleft):not(.alignright):not(.alignfull)) { max-width: 100%; margin-left: auto !important; margin-right: auto !important; } .wp-container-core-group-is-layout-7 > .alignwide { max-width: 100%; } .wp-container-core-group-is-layout-7 .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-3 { flex-wrap: nowrap; } .wp-container-core-columns-is-layout-4 { flex-wrap: nowrap; } </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='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&#038;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' /> <!--n2css--><!--n2js--><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/events/" /> <link rel='shortlink' href='https://cern70.cern/?p=4446' /> <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%2Fevents%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%2Fevents%2F&#038;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="page-template-default page page-id-4446 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 alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-5a918c6b2d4e7615cf1848ef09cf148b has-global-padding is-layout-constrained wp-container-core-group-is-layout-4 wp-block-group-is-layout-constrained" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"> <div class="wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-3 wp-block-group-is-layout-flex"> <div class="wp-block-group is-layout-flex wp-block-group-is-layout-flex"><div class="is-default-size wp-block-site-logo"><a href="https://cern70.cern/" class="custom-logo-link" rel="home"><img width="1550" height="1473" src="https://cern70.cern/wp-content/uploads/2023/12/CERN70_logo_white-copy.png" class="custom-logo" alt="CERN70" decoding="async" fetchpriority="high" 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: 1550px) 100vw, 1550px" /></a></div> <h1 class="has-link-color wp-elements-f1e98d6c897e424c7d4e8232ded39f0a wp-block-site-title"><a href="https://cern70.cern" target="_self" rel="home">CERN70</a></h1></div> <div class="wp-block-group is-layout-flex wp-block-group-is-layout-flex"><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-current-menu-item mega-page_item mega-page-item-4446 mega-current_page_item 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/" aria-current="page" 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/evenements/" tabindex="0">Français</a></li></ul></div></div></div> </div> </div> </header> <main id="content" class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-7 wp-block-group-is-layout-constrained" style="margin-top:var(--wp--preset--spacing--50)"> <div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex"> <div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><h2 style="margin-bottom:var(--wp--preset--spacing--40);" class="has-text-align-center wp-block-post-title">Events</h2></div> </div> <div class="entry-content 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-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-5 wp-block-group-is-layout-constrained" style="padding-right:12vw;padding-left:12vw"> <p class="has-medium-font-size">Events celebrating CERN’s 70th anniversary will take place throughout the year all around the world, both in-person and online formats. The event calendar is being updated throughout the year and all necessary information to register or connect remotely will be included in the event pages below.</p> <div style="height:10px" aria-hidden="true" class="wp-block-spacer"></div> <figure class="wp-block-image aligncenter size-full is-resized"><img decoding="async" width="600" height="101" src="https://cern70.cern/wp-content/uploads/2025/04/events-EN-03-04-25.jpg" alt="" class="wp-image-6593" style="width:495px;height:auto" srcset="https://cern70.cern/wp-content/uploads/2025/04/events-EN-03-04-25.jpg 600w, https://cern70.cern/wp-content/uploads/2025/04/events-EN-03-04-25-300x51.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /></figure> </div> <figure class="wp-block-image aligncenter size-full is-style-default"><img decoding="async" width="1257" height="651" src="https://cern70.cern/wp-content/uploads/2025/04/map-EN-03-04-25.jpg" alt="" class="wp-image-6591" srcset="https://cern70.cern/wp-content/uploads/2025/04/map-EN-03-04-25.jpg 1257w, https://cern70.cern/wp-content/uploads/2025/04/map-EN-03-04-25-300x155.jpg 300w, https://cern70.cern/wp-content/uploads/2025/04/map-EN-03-04-25-1024x530.jpg 1024w, https://cern70.cern/wp-content/uploads/2025/04/map-EN-03-04-25-768x398.jpg 768w" sizes="(max-width: 1257px) 100vw, 1257px" /></figure> <div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-6 wp-block-group-is-layout-constrained" style="padding-right:15vw;padding-left:15vw"> <div class="wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-1 wp-block-buttons-is-layout-flex"> <div class="wp-block-button"><a class="wp-block-button__link has-text-align-center wp-element-button" href="https://cern70.cern/event-reports/">CERN event <br>reports</a></div> <div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://cern70.cern/member-states-event-reports/">CERN&#8217;s Member <br>States event reports</a></div> <div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://cern70.cern/associated-member-states-event-reports/">CERN&#8217;s Associated Member <br>States event reports</a></div> </div> </div> <div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div> <h1 class="wp-block-heading has-text-align-center">Event calendar</h1> <div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-2 wp-block-columns-is-layout-flex"> <div class="wp-block-column has-border-color has-white-border-color is-layout-flow wp-block-column-is-layout-flow" style="box-shadow:none"> <div style="height:10px" aria-hidden="true" class="wp-block-spacer"></div> <h2 class="wp-block-heading has-text-align-center">Upcoming events</h2> <div class='wp-block-indico-blocks wp-block-indico-blocks-events ' id=> <form name='submit_filters' class='search-filters'> <div class='indico-filter-input-wrapper'> <div class='indico-filter-input'> <label for='type-select'> Type </label> <select id='type-select' name='type' class='js-filter-event-type wp-block-search__input'><option selected value= > Any </option><option value=simple_event > Lecture </option><option value=meeting > Meeting </option><option value=conference > Conference </option> </select> </div> <div class='indico-filter-input'> <label for='location-select'> Location </label> <select id='location-select' name='location' class='js-filter-event-location wp-block-search__input'><option selected value= > Any </option><option value=CERN > CERN </option> </select> </div> <div class='indico-filter-input'> <label for='start-input'> Date From </label> <input id='start-input' type='date' name='start' value='' class='js-search-date-start wp-block-search__input' /> </div> <div class='indico-filter-input'> <label for='end-input'> Date To </label> <input id='end-input' type='date' name='end' value='' class='js-search-date-end wp-block-search__input' /> </div> </div> <button name='filter-submit-button' value='pressed' class='wp-element-button filter-submit-button'>Submit</button> </form> <div id='events-and-map'> <p class='indico-events-block-no-events-msg'>No events found.</p> <ul id='event-pages'> </ul> </div> </div></div> <div class="wp-block-column has-border-color has-white-border-color is-layout-flow wp-block-column-is-layout-flow"> <div style="height:10px" aria-hidden="true" class="wp-block-spacer"></div> <h2 class="wp-block-heading has-text-align-center">Past events</h2> <div class='wp-block-indico-blocks wp-block-indico-blocks-events ' id=> <form name='submit_filters' class='search-filters'> <div class='indico-filter-input-wrapper'> <div class='indico-filter-input'> <label for='type-select'> Type </label> <select id='type-select' name='type' class='js-filter-event-type wp-block-search__input'><option selected value= > Any </option><option value=simple_event > Lecture </option><option value=meeting > Meeting </option><option value=conference > Conference </option> </select> </div> <div class='indico-filter-input'> <label for='location-select'> Location </label> <select id='location-select' name='location' class='js-filter-event-location wp-block-search__input'><option selected value= > Any </option><option value=CERN > CERN </option> </select> </div> <div class='indico-filter-input'> <label for='start-input'> Date From </label> <input id='start-input' type='date' name='start' value='' class='js-search-date-start wp-block-search__input' /> </div> <div class='indico-filter-input'> <label for='end-input'> Date To </label> <input id='end-input' type='date' name='end' value='' class='js-search-date-end wp-block-search__input' /> </div> </div> <button name='filter-submit-button' value='pressed' class='wp-element-button filter-submit-button'>Submit</button> </form> <div id='events-and-map'> <ul class='indico-pagination'> <div class='dashicon-container dashicon-left'> <a id='prev-page' class='dashicon' href='#'> <span class='dashicons dashicons-arrow-left-alt2'></span> <span class='screen-reader-text'>Previous</span> </a> </div><li class='indico-pagination-item'><a href='?selected_page=1' class='indico-pagination-link active'> 1 </a></li><li class='indico-pagination-item'><a href='?selected_page=2' class='indico-pagination-link'> 2 </a></li><li class='indico-pagination-item'><a href='?selected_page=3' class='indico-pagination-link'> 3 </a></li><li class='indico-pagination-item'><a href='?selected_page=4' class='indico-pagination-link'> 4 </a></li><li class='indico-pagination-item'><a href='?selected_page=5' class='indico-pagination-link'> 5 </a></li><li class='indico-pagination-item'><a href='?selected_page=6' class='indico-pagination-link'> 6 </a></li><li class='indico-pagination-item'><a href='?selected_page=7' class='indico-pagination-link'> 7 </a></li><li class='indico-pagination-item'><a href='?selected_page=8' class='indico-pagination-link'> 8 </a></li><li class='indico-pagination-item'><a href='?selected_page=9' class='indico-pagination-link'> 9 </a></li><li class='indico-pagination-item'><a href='?selected_page=10' class='indico-pagination-link'> 10 </a></li><li class='indico-pagination-item'><a href='?selected_page=11' class='indico-pagination-link'> 11 </a></li><li class='indico-pagination-item'><a href='?selected_page=12' class='indico-pagination-link'> 12 </a></li><li class='indico-pagination-item'><a href='?selected_page=13' class='indico-pagination-link'> 13 </a></li><li class='indico-pagination-item'><a href='?selected_page=14' class='indico-pagination-link'> 14 </a></li><li class='indico-pagination-item'><a href='?selected_page=15' class='indico-pagination-link'> 15 </a></li><li class='indico-pagination-item'><a href='?selected_page=16' class='indico-pagination-link'> 16 </a></li><li class='indico-pagination-item'><a href='?selected_page=17' class='indico-pagination-link'> 17 </a></li><li class='indico-pagination-item'><a href='?selected_page=18' class='indico-pagination-link'> 18 </a></li><li class='indico-pagination-item'><a href='?selected_page=19' class='indico-pagination-link'> 19 </a></li><li class='indico-pagination-item'><a href='?selected_page=20' class='indico-pagination-link'> 20 </a></li><li class='indico-pagination-item'><a href='?selected_page=21' class='indico-pagination-link'> 21 </a></li><li class='indico-pagination-item'><a href='?selected_page=22' class='indico-pagination-link'> 22 </a></li><li class='indico-pagination-item'><a href='?selected_page=23' class='indico-pagination-link'> 23 </a></li><li class='indico-pagination-item'><a href='?selected_page=24' class='indico-pagination-link'> 24 </a></li><div class='dashicon-container dashicon-right'> <a id='next-page' class='dashicon' href='?selected_page=2'> <span class='dashicons dashicons-arrow-right-alt2'></span> <span class='screen-reader-text'>Next</span> </a> </div> </ul> <ul id='event-pages'> <li class='indico-events-page active'> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Friday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 26 Jan </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415297/' target='_blank'> BeInspired@ICHEP2024 </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-01-26T08:00:00+01:00'> 26 Jan, 2024, 08:00 <span class='indico-lighter indico-event-timezone'> (Europe/Prague) </span> </time> <time datetime='2024-07-24T18:00:00+02:00'> &#8211; 24 Jul, 2024, 18:00 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 30 Jan </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1360288/' target='_blank'> Unveiling the Universe: Art and Science Summit &#8211; 70 years of discoveries at CERN </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-01-30T15:00:00+01:00'> 30 Jan, 2024, 15:00 &#8211; 21:30 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> <a href='https://maps.cern.ch/mapsearch/mapsearch.htm?n=%5B&#039;81/R-003A&#039;%5D' target='_blank'> 81/R-003A </a> </span> <span class='indico-long-text indico-max-lines-2' > Sergio Marchionne Auditorium Campus du Portail de la science du CERN Esplanade des Particules 1 CH-1217 Meyrin </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 03 Feb </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1374816/' target='_blank'> Demain mais en mieux : les particules s&#8217;invitent au salon de l&#8217;imaginaire Yggdrasil à Lyon </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-02-03T11:30:00+01:00'> 03 Feb, 2024, 11:30 <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </time> <time datetime='2024-02-04T17:30:00+01:00'> &#8211; 04 Feb, 2024, 17:30 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Eurexpo BP 190 av Louis Blériot Chassieu, Auvergne-Rhone-Alpes, France </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 13 Feb </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1408226/' target='_blank'> Public lecture “Genesis:The beginning of everything” by Guido Tonelli </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-02-13T20:30:00+01:00'> 13 Feb, 2024, 20:30 &#8211; 22:50 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 05 Mar </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1389143/' target='_blank'> Shining a light on particle physics and accelerators </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-03-05T10:50:00+00:00'> 05 Mar, 2024, 10:50 &#8211; 15:30 </time> <span class='indico-lighter indico-event-timezone'> (Europe/London) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> <a href='https://www.google.com/maps/place/Cath%C3%A9drale+de+Liverpool/@53.4012001,-2.9761198,16z/data=!3m1!5s0x487b212062ed01c5:0x1114549ec5a5690a!4m6!3m5!1s0x487b21202d0ef749:0x5874b2bd23ac2d88!8m2!3d53.3974637!4d-2.9733025!16zL20vMDVkNXl5?entry=ttu' target='_blank'> Cathedral Gate </a> </span> <span class='indico-long-text indico-max-lines-2' > Liverpool Cathedral, Cathedral Gate, St James Rd, Liverpool L1 7AZ, United Kingdom </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 05 Mar </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1389144/' target='_blank'> Beyond boundaries: A dialogue on science and faith </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-03-05T19:30:00+00:00'> 05 Mar, 2024, 19:30 &#8211; 21:30 </time> <span class='indico-lighter indico-event-timezone'> (Europe/London) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> <a href='https://www.google.com/maps/place/Cath%C3%A9drale+de+Liverpool/@53.4012001,-2.9761198,16z/data=!3m1!5s0x487b212062ed01c5:0x1114549ec5a5690a!4m6!3m5!1s0x487b21202d0ef749:0x5874b2bd23ac2d88!8m2!3d53.3974637!4d-2.9733025!16zL20vMDVkNXl5?entry=ttu' target='_blank'> Cathedral Gate </a> </span> <span class='indico-long-text indico-max-lines-2' > Liverpool Cathedral, Cathedral Gate, St James Rd, Liverpool L1 7AZ, United Kingdom </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Thursday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 07 Mar </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1382946/' target='_blank'> From particle physics to medicine </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-03-07T19:20:00+01:00'> 07 Mar, 2024, 19:20 &#8211; 21:40 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Auditorium Sergio Marchionne </span> <span class='indico-long-text indico-max-lines-2' > Campus du Portail de la science du CERN Esplanade des Particules 1 CH-1217 Meyrin </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 13 Mar </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1375890/' target='_blank'> Aineen ja maailmankaikkeuden perusolemusta selvittämässä &#8211; CERN 70 vuotta </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-03-13T12:00:00+01:00'> 13 Mar, 2024, 12:00 &#8211; 14:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Yliopistokatu 4, Helsinki, Finland </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 20 Mar </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1408246/' target='_blank'> IPPOG Masterclass at NKUA </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-03-20T08:30:00+01:00'> 20 Mar, 2024, 08:30 &#8211; 17:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Thursday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 21 Mar </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1408249/' target='_blank'> IPPOG Masterclass </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-03-21T15:00:00+01:00'> 21 Mar, 2024, 15:00 &#8211; 17:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 27 Mar </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1408252/' target='_blank'> IPPOG masterclasses and Cosmic ray μNet day in Patras </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-03-27T09:00:00+01:00'> 27 Mar, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </time> <time datetime='2024-03-28T17:00:00+01:00'> &#8211; 28 Mar, 2024, 17:00 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 15 Apr </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1430096/' target='_blank'> CERN Exhibition </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-04-15T09:00:00+02:00'> 15 Apr, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (Europe/Warsaw) </span> </time> <time datetime='2024-04-25T18:00:00+02:00'> &#8211; 25 Apr, 2024, 18:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Silesian Intercollegiate Center for Interdisciplinary Education and Research ul. 75th Infantry Regiment 1A </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 16 Apr </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1408255/' target='_blank'> Exhibition devoted to CERN70 including LHC football </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-04-16T15:00:00+02:00'> 16 Apr, 2024, 15:00 <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </time> <time datetime='2024-07-15T17:00:00+02:00'> &#8211; 15 Jul, 2024, 17:00 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Thursday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 18 Apr </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1399202/' target='_blank'> The Virtuous Circle of Knowledge and Innovation </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-04-18T19:30:00+02:00'> 18 Apr, 2024, 19:30 &#8211; 21:30 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Auditorium Sergio Marchionne </span> <span class='indico-long-text indico-max-lines-2' > Campus du Portail de la science du CERN Esplanade des Particules 1 CH-1217 Meyrin </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 07 May </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1410268/' target='_blank'> Workshop on CERN @ 70 </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-05-07T09:00:00+05:00'> 07 May, 2024, 09:00 &#8211; 17:00 </time> <span class='indico-lighter indico-event-timezone'> (Asia/Karachi) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Thursday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 09 May </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1374795/' target='_blank'> Sofia Science Festival </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-05-09T09:00:00+02:00'> 09 May, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </time> <time datetime='2024-05-12T18:00:00+02:00'> &#8211; 12 May, 2024, 18:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Sofia, Bulgaria </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 11 May </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1430103/' target='_blank'> CERN Exhibition </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-05-11T09:00:00+02:00'> 11 May, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (Europe/Warsaw) </span> </time> <time datetime='2024-05-26T18:00:00+02:00'> &#8211; 26 May, 2024, 18:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Sports hall of the AGH University of Science and Technology St. Staszica ul. Piastowska 26a </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 13 May </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1414725/' target='_blank'> Celebrate CERN70 years &#8211; Science Exhibition and Lunch Seminar </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-05-13T10:00:00+02:00'> 13 May, 2024, 10:00 &#8211; 21:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Chalmers, Entrance from Kemigården 1, The PJ Room Hörsalsvägen 1, 412 58 Göteborg </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 15 May </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1414726/' target='_blank'> Celebrate CERN70 years &#8211; Science Exhibition and Lunch Seminar </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-05-15T10:00:00+02:00'> 15 May, 2024, 10:00 &#8211; 21:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Lund University, Astronomihuset, Lundmarksalen Sölvegatan 27, 223 62 Lund </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 15 May </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1417782/' target='_blank'> The Future Circular Collider and CERN&#8217;s 70th birthday </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-05-15T14:00:00+02:00'> 15 May, 2024, 14:00 &#8211; 18:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Budapest) </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Friday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 17 May </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415256/' target='_blank'> IFA Day </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-05-17T09:00:00+03:00'> 17 May, 2024, 09:00 &#8211; 14:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Bucharest) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> IFA Building </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Friday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 17 May </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1414728/' target='_blank'> Celebrate CERN70 years &#8211; Science Exhibition and Lunch Seminar </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-05-17T12:15:00+02:00'> 17 May, 2024, 12:15 &#8211; 19:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Malmö University – Orkanen Nordenskiöldsgatan 10, 211 19 Malmö </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Sunday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 19 May </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1412339/' target='_blank'> CERN: An extraordinary human endeavour </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-05-19T17:00:00+02:00'> 19 May, 2024, 17:00 &#8211; 19:05 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Auditorium Sergio Marchionne </span> <span class='indico-long-text indico-max-lines-2' > Campus du Portail de la science du CERN Esplanade des Particules 1 CH-1217 Meyrin </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 21 May </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415260/' target='_blank'> Science fair of technology </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-05-21T12:00:00+02:00'> 21 May, 2024, 12:00 <span class='indico-lighter indico-event-timezone'> (Europe/Belgrade) </span> </time> <time datetime='2024-05-24T14:00:00+02:00'> &#8211; 24 May, 2024, 14:00 </time> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Friday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 24 May </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415250/' target='_blank'> Lange Nacht des Forschung in Vienna </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-05-24T17:00:00+02:00'> 24 May, 2024, 17:00 &#8211; 23:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Vienna) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Friday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 24 May </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1428247/' target='_blank'> FOTCIENCIA20 &#8211; Donosti (San Sebastián) </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-05-24T19:00:00+02:00'> 24 May, 2024, 19:00 <span class='indico-lighter indico-event-timezone'> (Europe/Madrid) </span> </time> <time datetime='2024-06-23T21:00:00+02:00'> &#8211; 23 Jun, 2024, 21:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Kutxa Fundazioa Plaza, Tabakalera 4th floor </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 28 May </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1395415/' target='_blank'> CERN &#8211; Ukraine 2024: &#8220;Past &#8211; Present – Future&#8221; Conference, Kyiv Ukraine, May 28-29, 2024 </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-05-28T09:00:00+03:00'> 28 May, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (Europe/Kyiv) </span> </time> <time datetime='2024-05-29T23:27:00+03:00'> &#8211; 29 May, 2024, 23:27 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > National Academy of Science, Kyiv, Ukraine and CERN Zoom </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 01 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415284/' target='_blank'> CERN Exhibition with Interactive Tunnel </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-01T08:00:00+02:00'> 01 Jun, 2024, 08:00 <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </time> <time datetime='2024-06-02T18:00:00+02:00'> &#8211; 02 Jun, 2024, 18:00 </time> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 03 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415282/' target='_blank'> Public sessions </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-03T08:00:00+01:00'> 03 Jun, 2024, 08:00 <span class='indico-lighter indico-event-timezone'> (Europe/Lisbon) </span> </time> <time datetime='2024-06-06T18:00:00+01:00'> &#8211; 06 Jun, 2024, 18:00 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 05 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1377962/' target='_blank'> Launch of Latvia CERN/CMS Tier-2 computing site in Riga Technical University </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-05T09:20:00+03:00'> 05 Jun, 2024, 09:20 &#8211; 13:30 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Riga) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Āzenes 6, Riga, Latvia </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Thursday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 06 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415270/' target='_blank'> CERN Education Programmes and the CERN Science Gateway </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-06T14:00:00+02:00'> 06 Jun, 2024, 14:00 &#8211; 17:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Prague) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> <a href='https://mapy.cz/turisticka?vlastni-body&#038;l=0&#038;ut=Nov%C3%BD%20bod&#038;uc=9hEVGxYE7c&#038;ud=50%C2%B06%2758.543%22N%2C%2014%C2%B026%2757.349%22E&#038;x=14.4468889&#038;y=50.1126866&#038;z=16' target='_blank'> N1 </a> </span> <span class='indico-long-text indico-max-lines-2' > V Holešovičkách 2, Praha 8, GPS 50.1162619N, 14.4492636E </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Thursday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 06 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1419083/' target='_blank'> The case of the (still) mysterious Universe </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-06T19:30:00+02:00'> 06 Jun, 2024, 19:30 &#8211; 21:45 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Auditorium Sergio Marchionne </span> <span class='indico-long-text indico-max-lines-2' > Campus du Portail de la science du CERN Esplanade des Particules 1 CH-1217 Meyrin </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 08 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1430105/' target='_blank'> CERN Exhibition </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-08T09:00:00+02:00'> 08 Jun, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (Europe/Warsaw) </span> </time> <time datetime='2024-07-02T18:00:00+02:00'> &#8211; 02 Jul, 2024, 18:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Aula of the Physics Building of the Warsaw University of Technology ul. Koszykowa 75 </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 10 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1377974/' target='_blank'> Exhibition CERN in Images </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-10T09:30:00+02:00'> 10 Jun, 2024, 09:30 <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </time> <time datetime='2024-06-11T18:30:00+02:00'> &#8211; 11 Jun, 2024, 18:30 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Národné osvetové centrum Nám. SNP č. 12 812 34 Bratislava 1 </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 12 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1460894/' target='_blank'> « Étonnants Infinis : l’Univers, le boson de Higgs et le CERN » &#8211; conférence grand public </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-12T18:30:00+02:00'> 12 Jun, 2024, 18:30 &#8211; 20:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Paris) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Médiathèque Jean Vautrin </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Thursday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 13 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415266/' target='_blank'> Science Week: Meet the Universe 2024 </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-13T09:00:00+02:00'> 13 Jun, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </time> <time datetime='2024-06-19T19:00:00+02:00'> &#8211; 19 Jun, 2024, 19:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Museumsquartier, 1070 Wien </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 18 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415273/' target='_blank'> ATLAS week in Thessaloniki: Celebration of Greece@CERN and three decades of Greek ATLAS </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-18T18:00:00+03:00'> 18 Jun, 2024, 18:00 &#8211; 20:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Athens) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 19 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1377971/' target='_blank'> Exhibition CERN in Images </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-19T09:30:00+02:00'> 19 Jun, 2024, 09:30 <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </time> <time datetime='2024-06-21T20:00:00+02:00'> &#8211; 21 Jun, 2024, 20:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Kultur Park Kukučínova 2 040 01 Košice </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Friday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 21 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1428249/' target='_blank'> Instruments of Vision Exhibition </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-21T10:00:00+02:00'> 21 Jun, 2024, 10:00 <span class='indico-lighter indico-event-timezone'> (Europe/Madrid) </span> </time> <time datetime='2024-09-21T20:00:00+02:00'> &#8211; 21 Sep, 2024, 20:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Igrexa da Universidade Santiago Compostela </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 24 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415280/' target='_blank'> “CERN70 &#038; Pakistan” </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-24T08:00:00+05:00'> 24 Jun, 2024, 08:00 <span class='indico-lighter indico-event-timezone'> (Asia/Karachi) </span> </time> <time datetime='2024-06-25T18:00:00+05:00'> &#8211; 25 Jun, 2024, 18:00 </time> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 25 Jun </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1374804/' target='_blank'> HELLO SPACE 4.0 </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-06-25T09:00:00+02:00'> 25 Jun, 2024, 09:00 &#8211; 23:59 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Sofia, Bulgaria </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 01 Jul </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1405343/' target='_blank'> From cosmic rays to particle accelerators: 100 years of César Lattes, 90 years of University of São Paulo and 70 years of CERN </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-07-01T09:00:00-03:00'> 01 Jul, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (America/Sao Paulo) </span> </time> <time datetime='2024-07-03T18:00:00-03:00'> &#8211; 03 Jul, 2024, 18:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Auditório Abrahão de Moraes </span> <span class='indico-long-text indico-max-lines-2' > Instituto de Física &#8211; Universidade de São Paulo Rua do Matão, 1371 CEP 05508-090 Cidade Universitária, São Paulo &#8211; Brasil </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 02 Jul </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1408260/' target='_blank'> Erasmus teachers from the ESIA summer school visit the CERN exposition </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-07-02T18:00:00+02:00'> 02 Jul, 2024, 18:00 <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </time> <time datetime='2024-07-09T20:00:00+02:00'> &#8211; 09 Jul, 2024, 20:00 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 03 Jul </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415299/' target='_blank'> CERN70 Event in Warsaw </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-07-03T08:00:00+02:00'> 03 Jul, 2024, 08:00 &#8211; 18:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Warsaw) </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Thursday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 04 Jul </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1426610/' target='_blank'> Exploring farther: machines for new knowledge </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-07-04T19:30:00+02:00'> 04 Jul, 2024, 19:30 &#8211; 21:35 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Auditorium Sergio Marchionne </span> <span class='indico-long-text indico-max-lines-2' > Campus du Portail de la science du CERN Esplanade des Particules 1 CH-1217 Meyrin </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 10 Jul </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1412191/' target='_blank'> CERN Satellite Event at Demokritos </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-07-10T09:00:00+03:00'> 10 Jul, 2024, 09:00 &#8211; 17:45 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Athens) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 17 Jul </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415298/' target='_blank'> CERN 70 in Italy &#8211; Event in Rome Auditorium Parco della Musica </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-07-17T18:00:00+02:00'> 17 Jul, 2024, 18:00 &#8211; 20:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Rome) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> <a href='https://maps.app.goo.gl/rkGFKkUBaq6y5vTs5' target='_blank'> Auditorium Parco della Musica &#8211; Sala Petrassi </a> </span> <span class='indico-long-text indico-max-lines-2' > Viale Pietro de Coubertin, 30 00196 Rome Italy </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 20 Jul </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1430107/' target='_blank'> CERN Exhibition </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-07-20T09:00:00+02:00'> 20 Jul, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (Europe/Warsaw) </span> </time> <time datetime='2024-08-26T18:00:00+02:00'> &#8211; 26 Aug, 2024, 18:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Courtyard named after Daniel Gabriel Fahrenheit Main Building of the Gdańsk University of Technology ul. Gabriela Narutowicza 11/12 </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 10 Aug </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1437765/' target='_blank'> Physics for All &#8211; Física Para Todos </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-08-10T10:30:00-03:00'> 10 Aug, 2024, 10:30 &#8211; 12:00 </time> <span class='indico-lighter indico-event-timezone'> (America/Sao Paulo) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Instituto Principia </span> <span class='indico-long-text indico-max-lines-2' > R. Pamplona, 145 </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 19 Aug </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415302/' target='_blank'> CERN70 &#8211; School on LHC Physics, NCP Islamabad </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-08-19T08:00:00+05:00'> 19 Aug, 2024, 08:00 <span class='indico-lighter indico-event-timezone'> (Asia/Karachi) </span> </time> <time datetime='2024-08-23T18:00:00+05:00'> &#8211; 23 Aug, 2024, 18:00 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 21 Aug </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1448928/' target='_blank'> CERN70 @National Physical Laboratory </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-08-21T08:00:00+01:00'> 21 Aug, 2024, 08:00 &#8211; 20:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/London) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Thursday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 22 Aug </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1447792/' target='_blank'> CERN70: Nuclear Medicine and Theratronics </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-08-22T10:00:00+05:00'> 22 Aug, 2024, 10:00 &#8211; 12:00 </time> <span class='indico-lighter indico-event-timezone'> (Asia/Karachi) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Jinnah Auditorium </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Thursday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 22 Aug </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415304/' target='_blank'> School of Science and Technology </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-08-22T08:00:00+03:00'> 22 Aug, 2024, 08:00 <span class='indico-lighter indico-event-timezone'> (Europe/Bucharest) </span> </time> <time datetime='2024-09-05T19:20:00+03:00'> &#8211; 05 Sep, 2024, 19:20 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Sunday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 01 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1396449/' target='_blank'> Concert: Creazione/Schöpfung &#8211; Fragmente </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-01T18:00:00+02:00'> 01 Sep, 2024, 18:00 &#8211; 20:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Kaiser-Wilhelm-Gedächtniskirche Berlin </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 02 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1377884/' target='_blank'> CERN70 and Germany &#8211; Past-Present-Future </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-02T09:30:00+02:00'> 02 Sep, 2024, 09:30 <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </time> <time datetime='2024-09-04T19:30:00+02:00'> &#8211; 04 Sep, 2024, 19:30 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Futurium Alexanderufer 4 Berlin Germany </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 02 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1436404/' target='_blank'> CERN Stories </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-02T18:30:00+02:00'> 02 Sep, 2024, 18:30 &#8211; 22:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Forum </span> <span class='indico-long-text indico-max-lines-2' > Alexanderufer 2, 10117 Berlin </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 03 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1396452/' target='_blank'> Official ceremony CERN 70 in Germany / Offizieller Festakt </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-03T18:00:00+02:00'> 03 Sep, 2024, 18:00 &#8211; 22:30 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Alexanderufer 2, 10117 Berlin </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 07 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1430110/' target='_blank'> CERN Exhibition </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-07T09:00:00+02:00'> 07 Sep, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (Europe/Warsaw) </span> </time> <time datetime='2024-10-13T18:00:00+02:00'> &#8211; 13 Oct, 2024, 18:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Faculty of Physics, Adam Mickiewicz University ul. University of Poznań 2 </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 07 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1408264/' target='_blank'> CERN pavilion </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-07T15:00:00+02:00'> 07 Sep, 2024, 15:00 <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </time> <time datetime='2024-09-15T17:00:00+02:00'> &#8211; 15 Sep, 2024, 17:00 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Sunday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 08 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1419474/' target='_blank'> 45th CERN School of Computing (CSC2024) </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-08T09:00:00+02:00'> 08 Sep, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (Europe/Berlin) </span> </time> <time datetime='2024-09-21T17:00:00+02:00'> &#8211; 21 Sep, 2024, 17:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Notkestraße 85, 22607 Hamburg, Germany </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 09 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415383/' target='_blank'> Particle Prague for high school students in Prague labs </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-09T09:00:00+02:00'> 09 Sep, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (Europe/Prague) </span> </time> <time datetime='2024-09-13T12:00:00+02:00'> &#8211; 13 Sep, 2024, 12:00 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 11 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1418001/' target='_blank'> Swiss Physical Society annual meeting </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-11T19:00:00+02:00'> 11 Sep, 2024, 19:00 &#8211; 21:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> ETH central campus </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Thursday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 12 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1420030/' target='_blank'> 70th anniversary of CERN in Spain </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-12T09:00:00+02:00'> 12 Sep, 2024, 09:00 &#8211; 14:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Madrid) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Spanish Research Council (CSIC) Auditorium </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 14 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1437767/' target='_blank'> Physics for All &#8211; Física Para Todos </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-14T10:30:00-03:00'> 14 Sep, 2024, 10:30 &#8211; 12:00 </time> <span class='indico-lighter indico-event-timezone'> (America/Sao Paulo) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Instituto Principia </span> <span class='indico-long-text indico-max-lines-2' > R. Pamplona, 145 </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 14 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1434574/' target='_blank'> I 70 anni del CERN </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-14T19:00:00+02:00'> 14 Sep, 2024, 19:00 &#8211; 21:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Rome) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 16 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1396454/' target='_blank'> CERN70-Veranstaltungswoche in Deutschland </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-16T11:00:00+02:00'> 16 Sep, 2024, 11:00 <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </time> <time datetime='2024-09-22T13:00:00+02:00'> &#8211; 22 Sep, 2024, 13:00 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 16 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1458823/' target='_blank'> Sundsvall: CERN’s 70-year anniversary tour trio </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-16T12:00:00+02:00'> 16 Sep, 2024, 12:00 &#8211; 16:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 17 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1440605/' target='_blank'> CERN 70th Anniversary &#8211; Japanese Particle and Nuclear Physics Research in Collider Experiments at CERN </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-17T13:30:00+09:00'> 17 Sep, 2024, 13:30 &#8211; 16:50 </time> <span class='indico-lighter indico-event-timezone'> (Asia/Tokyo) </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 18 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1458822/' target='_blank'> UMEÅ: CERN’s 70-year anniversary tour trio </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-18T10:00:00+02:00'> 18 Sep, 2024, 10:00 &#8211; 16:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Friday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 20 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1458820/' target='_blank'> LULEÅ: CERN’s 70-year anniversary tour trio </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-20T10:00:00+02:00'> 20 Sep, 2024, 10:00 &#8211; 16:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Friday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 27 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1460842/' target='_blank'> Les défis de la physique vus par le CERN </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-27T09:00:00+02:00'> 27 Sep, 2024, 09:00 &#8211; 10:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Paris) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Bibliothèque Universitaire </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Friday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 27 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1417975/' target='_blank'> Researchers&#8217; night </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-27T10:00:00+03:00'> 27 Sep, 2024, 10:00 &#8211; 21:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Bucharest) </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 28 Sep </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1460838/' target='_blank'> Raconte-moi le CERN &#8211; 70 ans d&#8217;exploration de l&#8217;infiniment petit </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-09-28T09:30:00+02:00'> 28 Sep, 2024, 09:30 <span class='indico-lighter indico-event-timezone'> (Europe/Paris) </span> </time> <time datetime='2024-09-29T18:00:00+02:00'> &#8211; 29 Sep, 2024, 18:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Cité des Sciences et de l&#8217;Industrie </span> <span class='indico-long-text indico-max-lines-2' > Cite des sciences et de l&#8217;industrie 30 avenue Corentin Cariou, La Villette,Paris,Île-de-France,France </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 01 Oct </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415385/' target='_blank'> High school event &#8211; lectures + hands on exercises </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-10-01T08:00:00+02:00'> 01 Oct, 2024, 08:00 <span class='indico-lighter indico-event-timezone'> (Europe/Prague) </span> </time> <time datetime='2024-10-31T18:00:00+01:00'> &#8211; 31 Oct, 2024, 18:00 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 01 Oct </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415392/' target='_blank'> CERN70 Nikhef Roadshow (Delft, Eindhoven, Enschede, Zwolle) </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-10-01T08:00:00+02:00'> 01 Oct, 2024, 08:00 <span class='indico-lighter indico-event-timezone'> (Europe/Amsterdam) </span> </time> <time datetime='2024-10-13T17:00:00+02:00'> &#8211; 13 Oct, 2024, 17:00 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 01 Oct </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1373628/' target='_blank'> CERN&#8217;s 70th anniversary ceremony </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-10-01T15:00:00+02:00'> 01 Oct, 2024, 15:00 &#8211; 16:30 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 05 Oct </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415396/' target='_blank'> Celebration of CERN’s 70th anniversary @ Nikhef Open Days. </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-10-05T08:00:00+02:00'> 05 Oct, 2024, 08:00 &#8211; 17:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Amsterdam) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 05 Oct </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1437768/' target='_blank'> Physics for All &#8211; Física Para Todos </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-10-05T10:30:00-03:00'> 05 Oct, 2024, 10:30 &#8211; 12:00 </time> <span class='indico-lighter indico-event-timezone'> (America/Sao Paulo) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Instituto Principia </span> <span class='indico-long-text indico-max-lines-2' > R. Pamplona, 145 </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Sunday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 06 Oct </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1461918/' target='_blank'> CERN &#8211; 70 years of collaborative science </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-10-06T10:00:00+01:00'> 06 Oct, 2024, 10:00 &#8211; 17:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/London) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Dynamic Earth </span> <span class='indico-long-text indico-max-lines-2' > Holyrood Road Edinburgh EH8 8AS United Kingdom </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 15 Oct </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1417766/' target='_blank'> 70th Anniversary of CERN at the Chamber of Commerce and Industry of Slovenia </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-10-15T08:15:00+02:00'> 15 Oct, 2024, 08:15 &#8211; 16:30 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Ljubljana) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Chamber of Commerce and Industry of Slovenia (CCIS), Halls A and C </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Friday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 25 Oct </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1430113/' target='_blank'> CERN Exhibition </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-10-25T09:00:00+02:00'> 25 Oct, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (Europe/Warsaw) </span> </time> <time datetime='2024-11-08T18:00:00+01:00'> &#8211; 08 Nov, 2024, 18:00 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Aula Główna Politechniki Wrocławskiej Wyb. Wyspianskiego 27 </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Friday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 01 Nov </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1417770/' target='_blank'> Accelerating science exhibition </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-11-01T09:00:00+02:00'> 01 Nov, 2024, 09:00 <span class='indico-lighter indico-event-timezone'> (Europe/Sofia) </span> </time> <time datetime='2024-11-08T17:00:00+02:00'> &#8211; 08 Nov, 2024, 17:00 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 04 Nov </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1459334/' target='_blank'> CERN@70: Recent Advances in Particle Physics at ATLAS and the Philippines </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-11-04T07:30:00+08:00'> 04 Nov, 2024, 07:30 &#8211; 17:30 </time> <span class='indico-lighter indico-event-timezone'> (Asia/Manila) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> National Institute of Physics, University of the Philippines Diliman </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 05 Nov </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1466751/' target='_blank'> CERN 70th Anniversary @ Oman Science Festival 2024 </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-11-05T10:00:00+04:00'> 05 Nov, 2024, 10:00 <span class='indico-lighter indico-event-timezone'> (Asia/Muscat) </span> </time> <time datetime='2024-11-11T17:30:00+04:00'> &#8211; 11 Nov, 2024, 17:30 </time> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Oman Convention and Exhibition Centre, meeting room 14 </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Friday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 08 Nov </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1428252/' target='_blank'> CERN: 70 years of international collaboration unveiling the enigmas of the Universe </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-11-08T09:00:00+01:00'> 08 Nov, 2024, 09:00 &#8211; 18:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Madrid) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 09 Nov </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1431119/' target='_blank'> Colliding verses </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-11-09T09:00:00+01:00'> 09 Nov, 2024, 09:00 &#8211; 19:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Madrid) </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Friday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 15 Nov </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1417822/' target='_blank'> DUROCERN &#8211; Discover the Universe with Romania at CERN </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-11-15T11:00:00+02:00'> 15 Nov, 2024, 11:00 &#8211; 14:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Bucharest) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> IFA building </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 19 Nov </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1473320/' target='_blank'> Soirée grand public exceptionnelle &#8220;À la recherche des infinis&#8221; </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-11-19T18:30:00+01:00'> 19 Nov, 2024, 18:30 &#8211; 20:30 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Paris) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Espace Le Cube </span> <span class='indico-long-text indico-max-lines-2' > Faculté des arts, lettres, langues et sciences humaines d&#8217;Aix-Marseille 29 avenue Robert Schuman, 13100 Aix-en-Provence </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Saturday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 23 Nov </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1437769/' target='_blank'> Physics for All &#8211; Física Para Todos </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-11-23T10:30:00-03:00'> 23 Nov, 2024, 10:30 &#8211; 12:00 </time> <span class='indico-lighter indico-event-timezone'> (America/Sao Paulo) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Instituto Principia </span> <span class='indico-long-text indico-max-lines-2' > R. Pamplona, 145 </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 25 Nov </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1479793/' target='_blank'> CERN at 70 and the Greek contribution </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-11-25T10:00:00+02:00'> 25 Nov, 2024, 10:00 &#8211; 13:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Athens) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Main Amphitheater, Congress Center </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 27 Nov </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1512604/' target='_blank'> CERN 70th Anniversary Celebration </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-11-27T08:00:00+02:00'> 27 Nov, 2024, 08:00 &#8211; 20:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Vilnius) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> National Center for Physical and Technological Sciences </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 03 Dec </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1479531/' target='_blank'> Celebrating 70 Years of CERN (Bahrain) </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-12-03T19:00:00+03:00'> 03 Dec, 2024, 19:00 &#8211; 22:00 </time> <span class='indico-lighter indico-event-timezone'> (Asia/Bahrain) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span class='indico-long-text indico-max-lines-2' > Shaikh Ebrahim Bin Mohammed Al-Khalifa Center for Culture and Research (Bahrain) </span> </span> </p> </div> </li> </ul> <li><li class='indico-events-page '> <ul id='event-list'> <li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 03 Dec </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1485214/' target='_blank'> El centro Europeo para la Investigación Nuclear (CERN) y aportunidades para la UNAH </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-12-03T13:00:00-06:00'> 03 Dec, 2024, 13:00 &#8211; 14:00 </time> <span class='indico-lighter indico-event-timezone'> (America/Tegucigalpa) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> UNAH, Facultad de Ciencas </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Wednesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 04 Dec </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1415382/' target='_blank'> CERN Info Dan </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-12-04T17:00:00+01:00'> 04 Dec, 2024, 17:00 &#8211; 19:00 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Zurich) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> P1 </span> <span class='indico-long-text indico-max-lines-2' > Horvatovac 102a, 10000 Zagreb </span> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Monday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 09 Dec </span> /24 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1485209/' target='_blank'> Physics Without Frontiers &#8211; Guatemala-Honduras-Costa Rica: Reading and manipulating the LHCb open data </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2024-12-09T15:00:00-06:00'> 09 Dec, 2024, 15:00 <span class='indico-lighter indico-event-timezone'> (America/Guatemala) </span> </time> <time datetime='2024-12-19T01:00:00-06:00'> &#8211; 19 Dec, 2024, 01:00 </time> </span> </p> </div> </li><li class='indico-event-box' webcast=false> <div class='indico-overlay-wrapper'> </div> <div class='indico-event-info'> <span class='indico-uppercase indico-event-weekday indico-lighter'>Tuesday</span> <div class='indico-event-date'><span class='indico-uppercase indico-bold'> 11 Mar </span> /25 </div> <h3 class='indico-event-title indico-long-text indico-max-lines-2'> <a href='https://indico.cern.ch/event/1527471/' target='_blank'> CERN 70 Celebration @ Aristotle University of Thessaloniki (AUTh) </a> </h3> <p class='indico-event-time'> <span class='dashicons dashicons-clock indico-time-icon'> </span> <span class='indico-event-start-end-wrapper'> <time datetime='2025-03-11T18:00:00+02:00'> 11 Mar, 2025, 18:00 &#8211; 20:30 </time> <span class='indico-lighter indico-event-timezone'> (Europe/Athens) </span> </span> </p> <p class='indico-event-location'> <span class='indico-location-icon-wrapper'> <img src='https://cern70.cern/wp-content/plugins/indico-blocks-plugin/assets/images/location_icon_grey.png' alt='' class='indico-location-icon'> </span> <span class='indico-room-venue-address-wrapper'> <span> Celebration Hall </span> </span> </p> </div> </li> </ul> <li> </ul> <ul class='indico-pagination'> <div class='dashicon-container dashicon-left'> <a id='prev-page' class='dashicon' href='#'> <span class='dashicons dashicons-arrow-left-alt2'></span> <span class='screen-reader-text'>Previous</span> </a> </div><li class='indico-pagination-item'><a href='?selected_page=1' class='indico-pagination-link active'> 1 </a></li><li class='indico-pagination-item'><a href='?selected_page=2' class='indico-pagination-link'> 2 </a></li><li class='indico-pagination-item'><a href='?selected_page=3' class='indico-pagination-link'> 3 </a></li><li class='indico-pagination-item'><a href='?selected_page=4' class='indico-pagination-link'> 4 </a></li><li class='indico-pagination-item'><a href='?selected_page=5' class='indico-pagination-link'> 5 </a></li><li class='indico-pagination-item'><a href='?selected_page=6' class='indico-pagination-link'> 6 </a></li><li class='indico-pagination-item'><a href='?selected_page=7' class='indico-pagination-link'> 7 </a></li><li class='indico-pagination-item'><a href='?selected_page=8' class='indico-pagination-link'> 8 </a></li><li class='indico-pagination-item'><a href='?selected_page=9' class='indico-pagination-link'> 9 </a></li><li class='indico-pagination-item'><a href='?selected_page=10' class='indico-pagination-link'> 10 </a></li><li class='indico-pagination-item'><a href='?selected_page=11' class='indico-pagination-link'> 11 </a></li><li class='indico-pagination-item'><a href='?selected_page=12' class='indico-pagination-link'> 12 </a></li><li class='indico-pagination-item'><a href='?selected_page=13' class='indico-pagination-link'> 13 </a></li><li class='indico-pagination-item'><a href='?selected_page=14' class='indico-pagination-link'> 14 </a></li><li class='indico-pagination-item'><a href='?selected_page=15' class='indico-pagination-link'> 15 </a></li><li class='indico-pagination-item'><a href='?selected_page=16' class='indico-pagination-link'> 16 </a></li><li class='indico-pagination-item'><a href='?selected_page=17' class='indico-pagination-link'> 17 </a></li><li class='indico-pagination-item'><a href='?selected_page=18' class='indico-pagination-link'> 18 </a></li><li class='indico-pagination-item'><a href='?selected_page=19' class='indico-pagination-link'> 19 </a></li><li class='indico-pagination-item'><a href='?selected_page=20' class='indico-pagination-link'> 20 </a></li><li class='indico-pagination-item'><a href='?selected_page=21' class='indico-pagination-link'> 21 </a></li><li class='indico-pagination-item'><a href='?selected_page=22' class='indico-pagination-link'> 22 </a></li><li class='indico-pagination-item'><a href='?selected_page=23' class='indico-pagination-link'> 23 </a></li><li class='indico-pagination-item'><a href='?selected_page=24' class='indico-pagination-link'> 24 </a></li><div class='dashicon-container dashicon-right'> <a id='next-page' class='dashicon' href='?selected_page=2'> <span class='dashicons dashicons-arrow-right-alt2'></span> <span class='screen-reader-text'>Next</span> </a> </div> </ul> </div> </div></div> </div> </div></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-4 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">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 current-menu-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="https://cern70.cern/events/" aria-current="page"><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/evenements/" 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-3 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":"96b47c4b18"}; </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 88/331 objects using APC Page Caching using APC Served from: cern70.cern @ 2025-04-06 14:01:20 by W3 Total Cache -->

Pages: 1 2 3 4 5 6 7 8 9 10