CINXE.COM

Calendar of Online Events - eage.org

<!doctype html> <html lang="en-US" prefix="og: https://ogp.me/ns#"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <!-- Search Engine Optimization by Rank Math - https://rankmath.com/ --> <title>Calendar of Online Events - eage.org</title> <meta name="robots" content="index, follow, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/> <link rel="canonical" href="https://eage.org/events/calendar-of-online-events/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Calendar of Online Events - eage.org" /> <meta property="og:url" content="https://eage.org/events/calendar-of-online-events/" /> <meta property="og:site_name" content="eage.org" /> <meta property="og:updated_time" content="2023-04-18T09:00:10+00:00" /> <meta property="og:image" content="https://eage.org/wp-content/uploads/2021/02/Online_Events.jpg" /> <meta property="og:image:secure_url" content="https://eage.org/wp-content/uploads/2021/02/Online_Events.jpg" /> <meta property="og:image:width" content="800" /> <meta property="og:image:height" content="472" /> <meta property="og:image:alt" content="Calendar of Online Events" /> <meta property="og:image:type" content="image/jpeg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Calendar of Online Events - eage.org" /> <meta name="twitter:image" content="https://eage.org/wp-content/uploads/2021/02/Online_Events.jpg" /> <!-- /Rank Math WordPress SEO plugin --> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel='dns-prefetch' href='//stats.wp.com' /> <link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /> <link rel="alternate" type="application/rss+xml" title="eage.org &raquo; Feed" href="https://eage.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="eage.org &raquo; Comments Feed" href="https://eage.org/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="eage.org &raquo; Calendar of Online Events Comments Feed" href="https://eage.org/events/calendar-of-online-events/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ 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:\/\/eage.org\/wp-includes\/js\/wp-emoji.js?ver=6.7.1","twemoji":"https:\/\/eage.org\/wp-includes\/js\/twemoji.js?ver=6.7.1"}}; /** * @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-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> <link rel='stylesheet' id='all-css-4' href='https://eage.org/_static/??-eJzTLy/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5oM02OfaGpobGxkZmBkYGQMAhH8tYw==' type='text/css' media='all' /> <style id='jetpack-sharing-buttons-style-inline-css'> .jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em} </style> <style id='rank-math-toc-block-style-inline-css'> .wp-block-rank-math-toc-block nav ol{counter-reset:item}.wp-block-rank-math-toc-block nav ol li{display:block}.wp-block-rank-math-toc-block nav ol li:before{content:counters(item, ".") ". ";counter-increment:item} </style> <style id='filebird-block-filebird-gallery-style-inline-css'> ul.filebird-block-filebird-gallery{margin:auto!important;padding:0!important;width:100%}ul.filebird-block-filebird-gallery.layout-grid{display:grid;grid-gap:20px;align-items:stretch;grid-template-columns:repeat(var(--columns),1fr);justify-items:stretch}ul.filebird-block-filebird-gallery.layout-grid li img{border:1px solid #ccc;box-shadow:2px 2px 6px 0 rgba(0,0,0,.3);height:100%;max-width:100%;-o-object-fit:cover;object-fit:cover;width:100%}ul.filebird-block-filebird-gallery.layout-masonry{-moz-column-count:var(--columns);-moz-column-gap:var(--space);column-gap:var(--space);-moz-column-width:var(--min-width);columns:var(--min-width) var(--columns);display:block;overflow:auto}ul.filebird-block-filebird-gallery.layout-masonry li{margin-bottom:var(--space)}ul.filebird-block-filebird-gallery li{list-style:none}ul.filebird-block-filebird-gallery li figure{height:100%;margin:0;padding:0;position:relative;width:100%}ul.filebird-block-filebird-gallery li figure figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);bottom:0;box-sizing:border-box;color:#fff;font-size:.8em;margin:0;max-height:100%;overflow:auto;padding:3em .77em .7em;position:absolute;text-align:center;width:100%;z-index:2}ul.filebird-block-filebird-gallery li figure figcaption a{color:inherit} </style> <style id='classic-theme-styles-inline-css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </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--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: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--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);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}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;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.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-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-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-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;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='all-css-14' href='https://eage.org/_static/??-eJylkt1OwzAMhV+I1DAEaBeIR0Fe4rWG/Cl2GHt70hYkkCir6E2UHNufjh3DKRubolJUyL72HAUw9qcMKEIqcGzB+TR4IkmBwMpPoQscuyZewSWYY9FZ6Q41Ok/di1yo5Gh9dQT03oLCqQUkl2ebfA1j0gweLWHkgLrGzXrmN3mZmc18NWILZ6UExzLluNnXiAPRc2t3G6MKFZMxkv8/yG+onUx8jXkbxQ5YdCPjINhZLKmNZWtTY0eF0RtHwv0f+7Pun9g4VMxsX6kss5wzQljsYDSZQLFCrgfPdiLxWyrnz/ivK60DBRIYyPtkyLdH1FQW9mwheZLH5KfwePOw299d397vdx8gPo3X' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-frontend.css?ver=1731931279' media='all' /> <link rel='stylesheet' id='all-css-16' href='https://eage.org/wp-content/plugins/elementor/assets/css/widget-image.min.css?m=1730132665g' type='text/css' media='all' /> <link rel='stylesheet' id='widget-nav-menu-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-pro-widget-nav-menu.min.css?ver=1731931322' media='all' /> <link rel='stylesheet' id='all-css-18' href='https://eage.org/_static/??-eJylkdEOwjAIRX9IrHNxPhm/pW44SdrSFEz1761mLnuaTh/hXk64YHKEloNiUBPdtacgBh36UnMyVgRVjKOTsYG8VeKii94dFhuMPegT53UrsjJzPIiJ38xiNpm6HhX0UnQYXLL2FD6jpqudiwlsRmGPL+6zMdR/koQddd8zJqEk2hbTsjDTm+BNATsq6vKDzP8qcvwtEbdkHVCZGZ909IdqX2+qets0uwfqOt+z' type='text/css' media='all' /> <link rel='stylesheet' id='e-apple-webkit-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-apple-webkit.min.css?ver=1731931271' media='all' /> <link rel='stylesheet' id='all-css-20' href='https://eage.org/wp-content/plugins/elementor/assets/css/widget-divider.min.css?m=1730132665g' type='text/css' media='all' /> <link rel='stylesheet' id='widget-icon-box-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-widget-icon-box.min.css?ver=1731931288' media='all' /> <link rel='stylesheet' id='all-css-22' href='https://eage.org/_static/??-eJytkc0KwkAMhF/IbazF6kW8eBF8ibWb1sD+0UQX395tPfQiwkKPM5n5IAmkqLrgBb1AtM+BPANadFmHUcUxgGZGYeiYIZEZUFQMLFw58lU2N/CP8KP9QG3ID2V9S3fQnpwWCnnO8rbI0GuD15Uol5BWIt2wlzISUjdRpiMtt5+9Mg4nijjC6zijvqrsRzlkaNpJ25xQC+LsTvWh2dbNrm33H6RZ1sg=' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-3378-css' href='https://eage.org/wp-content/uploads/elementor/css/post-3378.css?ver=1731931340' media='all' /> <link rel='stylesheet' id='all-css-24' href='https://eage.org/wp-content/plugins/powerpack-elements/assets/css/frontend.css?m=1712303166g' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-pro-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-pro-frontend.css?ver=1731931340' media='all' /> <link rel='stylesheet' id='elementor-post-9229-css' href='https://eage.org/wp-content/uploads/elementor/css/post-9229.css?ver=1731931589' media='all' /> <link rel='stylesheet' id='elementor-post-147-css' href='https://eage.org/wp-content/uploads/elementor/css/post-147.css?ver=1731931342' media='all' /> <link rel='stylesheet' id='elementor-post-174-css' href='https://eage.org/wp-content/uploads/elementor/css/post-174.css?ver=1731931346' media='all' /> <link rel='stylesheet' id='elementor-post-3354-css' href='https://eage.org/wp-content/uploads/elementor/css/post-3354.css?ver=1731931350' media='all' /> <link rel='stylesheet' id='all-css-34' href='https://eage.org/wp-content/themes/hello-elementor/elementorRights.css?m=1712303167g' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-15640-css' href='https://eage.org/wp-content/uploads/elementor/css/post-15640.css?ver=1731931349' media='all' /> <link rel='stylesheet' id='elementor-post-14898-css' href='https://eage.org/wp-content/uploads/elementor/css/post-14898.css?ver=1731931353' media='all' /> <link rel='stylesheet' id='elementor-post-4198-css' href='https://eage.org/wp-content/uploads/elementor/css/post-4198.css?ver=1731931356' media='all' /> <link rel='stylesheet' id='elementor-post-1653-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1653.css?ver=1731931356' media='all' /> <link rel='stylesheet' id='elementor-post-1650-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1650.css?ver=1731931358' media='all' /> <link rel='stylesheet' id='elementor-post-1647-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1647.css?ver=1731931361' media='all' /> <link rel='stylesheet' id='elementor-post-1644-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1644.css?ver=1731931364' media='all' /> <link rel='stylesheet' id='elementor-post-1641-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1641.css?ver=1731931367' media='all' /> <link rel='stylesheet' id='elementor-post-1588-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1588.css?ver=1731931371' media='all' /> <link rel='stylesheet' id='elementor-post-1566-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1566.css?ver=1731931371' media='all' /> <link rel='stylesheet' id='elementor-post-1137-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1137.css?ver=1731931374' media='all' /> <link rel='stylesheet' id='all-css-56' href='https://eage.org/_static/??-eJylj7sOwjAMRX+IEEpFmRDfkodbIrlxFNtU/D0BlYEBBhi8HPke+9qlmEBZIIstqFPKbMV5hFKB2YY2XhNGG2F0irJtZGO/h2aKivAWduKeC7z1KkKZ//YEQp3zmFCgLilOID86Gy7toXQF81J/0IxU2xnjPKkYvlCVQBHM2sgW9ZjCan4gw3Jbfef51B37Xdfvh+FwB8Ojjik=' type='text/css' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=auto&#038;ver=6.7.1' media='all' /> <link rel='stylesheet' id='all-css-58' href='https://eage.org/_static/??-eJydjF0KgCAQBi9UfZlgT9FZtDYR/GPX6PrZFXqbgWHw1PEouVFuqPH2IQsoUupeGFaEmiAGh6tHo31ISiIcImDyd7Q8dR7w++LY5lO+yZ42tapFz1oZ8wItFTfm' type='text/css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" id="jquery-core-js-extra"> /* <![CDATA[ */ var pp = {"ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php"}; /* ]]> */ </script> <script type="text/javascript" id="thickbox-js-extra"> /* <![CDATA[ */ var thickboxL10n = {"next":"Next >","prev":"< Prev","image":"Image","of":"of","close":"Close","noiframes":"This feature requires inline frames. You have iframes disabled or your browser does not support them.","loadingAnimation":"https:\/\/eage.org\/wp-includes\/js\/thickbox\/loadingAnimation.gif"}; /* ]]> */ </script> <script type="text/javascript" id="ap_plugin_js_script-js-extra"> /* <![CDATA[ */ var bsa_object = {"ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJydkU1uAyEMRi9UQjqRmlXVs7jYnfEUDLUhP7cvmSZRFkkXkZAw6D37Q/h9cSwhNiTzc18/jfR43lazvfj/AJd4VKh0AUOWSlJ9iW1kMZ9IWrddyVZPcoJ+SCyPeJBxXzyYUTWPtDs5gDvSysYy3stTJw7fn/lwLe5BTZDUQlZa3Uy/JWzKWkPG61MAO7lkJmRwrcQM+DB3cX+ls6BcKmX/pQuDS/Pl8kk5TKDPuudvNE4lHjuRY+ydPtL763YzDOu39bCZfwEEWsDX" ></script> <!-- Google tag (gtag.js) snippet added by Site Kit --> <!-- Google Analytics snippet added by Site Kit --> <script type="text/javascript" src="https://www.googletagmanager.com/gtag/js?id=GT-PHPCHVB" id="google_gtagjs-js" async></script> <script type="text/javascript" id="google_gtagjs-js-after"> /* <![CDATA[ */ window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);} gtag("set","linker",{"domains":["eage.org"]}); gtag("js", new Date()); gtag("set", "developer_id.dZTNiMT", true); gtag("config", "GT-PHPCHVB"); /* ]]> */ </script> <!-- End Google tag (gtag.js) snippet added by Site Kit --> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://eage.org/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.1" /> <link rel='shortlink' href='https://eage.org/?p=9229' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://eage.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Feage.org%2Fevents%2Fcalendar-of-online-events%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://eage.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Feage.org%2Fevents%2Fcalendar-of-online-events%2F&#038;format=xml" /> <style> /* Custom BSA_PRO Styles */ /* fonts */ /* form */ .bsaProOrderingForm { } .bsaProInput input, .bsaProInput input[type='file'], .bsaProSelectSpace select, .bsaProInputsRight .bsaInputInner, .bsaProInputsRight .bsaInputInner label { } .bsaProPrice { } .bsaProDiscount { } .bsaProOrderingForm .bsaProSubmit, .bsaProOrderingForm .bsaProSubmit:hover, .bsaProOrderingForm .bsaProSubmit:active { } /* alerts */ .bsaProAlert, .bsaProAlert > a, .bsaProAlert > a:hover, .bsaProAlert > a:focus { } .bsaProAlertSuccess { } .bsaProAlertFailed { } /* stats */ .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-bar, .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-line, .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-point, .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-slice.ct-donut { stroke: #673AB7 !important; } .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-bar, .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-line, .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-point, .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-slice.ct-donut { stroke: #FBCD39 !important; } /* Custom CSS */ </style><meta name="generator" content="Site Kit by Google 1.138.0" /> <style>img#wpstats{display:none}</style> <script> (function(h,o,t,j,a,r){ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)}; h._hjSettings={hjid:3431110,hjsv:5}; a=o.getElementsByTagName('head')[0]; r=o.createElement('script');r.async=1; r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv; a.appendChild(r); })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv='); </script> <!-- Google AdSense meta tags added by Site Kit --> <meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"> <meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"> <!-- End Google AdSense meta tags added by Site Kit --> <meta name="generator" content="Elementor 3.24.7; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"> <script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="c57ea602-a439-4584-a2dd-45c9e1c9a468" data-blockingmode="auto" type="text/javascript"></script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; let adSlot; // Declare adSlot at a scope accessible by the resize handler and manual refresh googletag.cmd.push(function() { var mapping1 = googletag.sizeMapping() //.addSize([1600, 0], [[1140, 140]]) .addSize([1380, 0], [[1000, 123]]) .addSize([1150, 0], [[728, 90]]) .addSize([1100, 0], [[500, 62]]) .build(); adSlot = googletag.defineSlot('/20287594127/WP_EAGE_leaderboard', [[500, 62], [1140, 140], [728, 90], [1000, 123], 'fluid'], 'div-gpt-ad-1724414516259-0') .defineSizeMapping(mapping1) .addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); let resizeTimer; window.addEventListener('resize', () => { console.log("Resize event triggered."); clearTimeout(resizeTimer); resizeTimer = setTimeout(() => { googletag.cmd.push(function() { console.log("Refreshing adSlot via resize."); googletag.pubads().refresh([adSlot]); }); }, 500); // Refresh the ad 500 ms after resizing stops }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_skyscraper', [[310, 360], 'fluid'], 'div-gpt-ad-1721216353239-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_leaderboard_Mobile', ['fluid', [320, 180]], 'div-gpt-ad-1721216301701-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_skyscraper-homepage', ['fluid', [152, 435]], 'div-gpt-ad-1721216397689-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_skyscraper_Mobile-homepage', ['fluid', [310, 360]], 'div-gpt-ad-1721216479067-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; let adSlot; // Declare adSlot at a scope accessible by the resize handler and manual refresh googletag.cmd.push(function() { var mapping2 = googletag.sizeMapping() //.addSize([1600, 0], [[1140, 140]]) .addSize([1380, 0], [[1000, 123]]) .addSize([1150, 0], [[728, 90]]) .addSize([1100, 0], [[500, 62]]) .build(); adSlot = googletag.defineSlot('/20287594127/WP_EAGE_CR_leaderboard', [[1000, 123], [1140, 140], [500, 62], 'fluid', [728, 90]], 'div-gpt-ad-1724424183457-0') .defineSizeMapping(mapping2) .addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); let resizeTimer; window.addEventListener('resize', () => { console.log("Resize event triggered."); clearTimeout(resizeTimer); resizeTimer = setTimeout(() => { googletag.cmd.push(function() { console.log("Refreshing adSlot via resize."); googletag.pubads().refresh([adSlot]); }); }, 500); // Refresh the ad 500 ms after resizing stops }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_CR_skyscraper', [[310, 360], 'fluid'], 'div-gpt-ad-1721216112322-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_CR_leaderboard_Mobile', [[320, 180], 'fluid'], 'div-gpt-ad-1721216053156-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <meta http-equiv="Content-type" content="text/html; charset=UTF-8"> <script src="https://www.google.com/recaptcha/api.js"></script> <script> function timestamp() { var response = document.getElementById("g-recaptcha-response"); if (response == null || response.value.trim() == "") {var elems = JSON.parse(document.getElementsByName("captcha_settings")[0].value);elems["ts"] = JSON.stringify(new Date().getTime());document.getElementsByName("captcha_settings")[0].value = JSON.stringify(elems); } } setInterval(timestamp, 500); </script> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <!-- Google AdSense snippet added by Site Kit --> <script type="text/javascript" async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9577946690838398&amp;host=ca-host-pub-2644536267352236" crossorigin="anonymous"></script> <!-- End Google AdSense snippet added by Site Kit --> <meta name="generator" content="Powered by Slider Revolution 6.6.18 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <!-- Ads on this site are served by Adning v1.6.2 - adning.com --> <style></style><!-- / Adning. --> <!-- CJT Global Block (288) - Google tag manager - START --> <!-- Google tag (gtag.js) --> <script type="text/plain" data-cookieconsent="statistics" src="https://www.googletagmanager.com/gtag/js?id=G-7TGFG8T62W"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-7TGFG8T62W'); </script> <!-- CJT Global Block (288) - Google tag manager - END --> <!-- CJT Global Block (1) - FAQ widget - START --> <script> window.fwSettings={ 'widget_id':25000000070 }; !function(){if("function"!=typeof window.FreshworksWidget){var n=function(){n.q.push(arguments)};n.q=[],window.FreshworksWidget=n}}() </script> <script type='text/javascript' src='https://widget.freshworks.com/widgets/25000000070.js' async defer></script> <!-- CJT Global Block (1) - FAQ widget - END --> <link rel="icon" href="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=32" sizes="32x32" /> <link rel="icon" href="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=192" sizes="192x192" /> <link rel="apple-touch-icon" href="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=180" /> <meta name="msapplication-TileImage" content="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=270" /> <script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> </head> <body class="events-template-default single single-events postid-9229 single-format-standard viewable-enabled hello-elementor elementor-default elementor-template-full-width elementor-kit-3378 elementor-page elementor-page-9229 elementor-page-3354"> <a class="skip-link screen-reader-text" href="#content"> Skip to content</a> <div data-elementor-type="header" data-elementor-id="147" class="elementor elementor-147 elementor-location-header" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-a64099a elementor-hidden-phone header_container elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a64099a" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e09b592" data-id="e09b592" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c7dbf89 elementor-absolute elementor-widget elementor-widget-image" data-id="c7dbf89" data-element_type="widget" data-settings="{&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://eage.org/"> <img width="360" height="280" src="https://eage.org/wp-content/uploads/2020/03/eagelogo.png" class="attachment-full size-full wp-image-2743" alt="Logo EAGE" srcset="https://eage.org/wp-content/uploads/2020/03/eagelogo.png 360w, https://eage.org/wp-content/uploads/2020/03/eagelogo.png?resize=768,597 768w" sizes="(max-width: 360px) 100vw, 360px" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6ebdae5" data-id="6ebdae5" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-ae96cbf elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ae96cbf" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e4ad795" data-id="e4ad795" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f03e66e elementor-widget__width-auto elementor-nav-menu--dropdown-mobile elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="f03e66e" data-element_type="widget" data-settings="{&quot;layout&quot;:&quot;horizontal&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none"> <ul id="menu-1-f03e66e" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item">Learning Geoscience</a></li> </ul> </nav> <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false"> <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> <span class="elementor-screen-only">Menu</span> </div> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-f03e66e" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item" tabindex="-1">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item" tabindex="-1">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item" tabindex="-1">Learning Geoscience</a></li> </ul> </nav> </div> </div> <div class="elementor-element elementor-element-e578b89 elementor-align-right elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="e578b89" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-grow" href="https://eage.eventsair.com/eage-membership-module/sso" target="_blank"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">My EAGE</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-407aca5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="407aca5" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <nav class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e03fa9e" data-id="e03fa9e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0d0b11d elementor-widget__width-auto elementor-view-default elementor-widget elementor-widget-icon" data-id="0d0b11d" data-element_type="widget" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <a class="elementor-icon" href="https://eage.org/"> <i aria-hidden="true" class="fas fa-home"></i> </a> </div> </div> </div> <div class="elementor-element elementor-element-bcaf978 elementor-hidden-phone elementor-widget__width-auto elementor-widget elementor-widget-wp-widget-nav_menu" data-id="bcaf978" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-eage-main-menu-desktop-container"><ul id="menu-eage-main-menu-desktop" class="menu"><li id="menu-item-1298" class="pop_abouteage menu-item menu-item-type-custom menu-item-object-custom menu-item-1298"><a href="#">About EAGE</a></li> <li id="menu-item-1300" class="pop_events menu-item menu-item-type-custom menu-item-object-custom menu-item-1300"><a href="#">Events</a></li> <li id="menu-item-1301" class="pop_membership menu-item menu-item-type-custom menu-item-object-custom menu-item-1301"><a href="#">Membership</a></li> <li id="menu-item-1302" class="pop_communities menu-item menu-item-type-custom menu-item-object-custom menu-item-1302"><a href="#">Communities</a></li> <li id="menu-item-1303" class="pop_students menu-item menu-item-type-custom menu-item-object-custom menu-item-1303"><a href="#">Students</a></li> <li id="menu-item-1304" class="pop_education menu-item menu-item-type-custom menu-item-object-custom menu-item-1304"><a href="#">Education</a></li> <li id="menu-item-1305" class="pop_media2 menu-item menu-item-type-custom menu-item-object-custom menu-item-1305"><a href="#">Media</a></li> </ul></div> </div> </div> </div> </nav> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-1182b96" data-id="1182b96" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d444e1c menu-search elementor-widget elementor-widget-shortcode" data-id="d444e1c" data-element_type="widget" data-widget_type="shortcode.default"> <div class="elementor-widget-container"> <div class="elementor-shortcode"><form class="is-search-form is-form-style is-form-style-3 is-form-id-6048 " action="https://eage.org/" method="get" role="search" ><label for="is-search-input-6048"><span class="is-screen-reader-text">Search for:</span><input type="search" id="is-search-input-6048" name="s" value="" class="is-search-input" placeholder="Search here..." autocomplete=off /></label><button type="submit" class="is-search-submit"><span class="is-screen-reader-text">Search Button</span><span class="is-search-icon"><svg focusable="false" aria-label="Search" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24px"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg></span></button><input type="hidden" name="id" value="6048" /></form></div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-99d6739 elementor-hidden-phone header_container elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="99d6739" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-d041004" data-id="d041004" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-60d1405 elementor-absolute elementor-widget elementor-widget-image" data-id="60d1405" data-element_type="widget" data-settings="{&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://www.eage.org/"> <img width="360" height="280" src="https://eage.org/wp-content/uploads/2020/03/eagelogo.png" class="attachment-full size-full wp-image-2743" alt="Logo EAGE" srcset="https://eage.org/wp-content/uploads/2020/03/eagelogo.png 360w, https://eage.org/wp-content/uploads/2020/03/eagelogo.png?resize=768,597 768w" sizes="(max-width: 360px) 100vw, 360px" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e77b52a" data-id="e77b52a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-d9d1a2b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d9d1a2b" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-0f7c7e6" data-id="0f7c7e6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e111f86 elementor-widget__width-auto elementor-nav-menu--dropdown-mobile elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="e111f86" data-element_type="widget" data-settings="{&quot;layout&quot;:&quot;horizontal&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none"> <ul id="menu-1-e111f86" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item">Learning Geoscience</a></li> </ul> </nav> <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false"> <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> <span class="elementor-screen-only">Menu</span> </div> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-e111f86" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item" tabindex="-1">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item" tabindex="-1">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item" tabindex="-1">Learning Geoscience</a></li> </ul> </nav> </div> </div> <div class="elementor-element elementor-element-dfd2106 elementor-align-right elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="dfd2106" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-grow" href="https://eage.eventsair.com/eage-membership-module/sso" target="_blank"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">My EAGE</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-96e68d5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="96e68d5" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-3ac397d" data-id="3ac397d" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <nav class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-75f8507" data-id="75f8507" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3316de1 elementor-search-form--skin-classic elementor-search-form--button-type-icon elementor-search-form--icon-search elementor-widget elementor-widget-search-form" data-id="3316de1" data-element_type="widget" data-settings="{&quot;skin&quot;:&quot;classic&quot;}" data-widget_type="search-form.default"> <div class="elementor-widget-container"> <search role="search"> <form class="elementor-search-form" action="https://eage.org" method="get"> <div class="elementor-search-form__container"> <label class="elementor-screen-only" for="elementor-search-form-3316de1">Search</label> <input id="elementor-search-form-3316de1" placeholder="Search..." class="elementor-search-form__input" type="search" name="s" value=""> <button class="elementor-search-form__submit" type="submit" aria-label="Search"> <i aria-hidden="true" class="fas fa-search"></i> <span class="elementor-screen-only">Search</span> </button> </div> </form> </search> </div> </div> </div> </nav> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8759959" data-id="8759959" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-da90082 tablet_overlay_menu elementor-widget elementor-widget-image" data-id="da90082" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/Mobile_MenuIcon_open.svg?w=150&#038;h=150&#038;crop=1" title="Mobile_MenuIcon_open" alt="" loading="lazy" /> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-319dd42 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="319dd42" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-bd6b030" data-id="bd6b030" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b4fba76 elementor-widget elementor-widget-spacer" data-id="b4fba76" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4574d12 elementor-section-full_width mobile_menu_container elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="4574d12" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1d1e04a" data-id="1d1e04a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-d014211 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="d014211" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-d804c22" data-id="d804c22" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a8f0ca8 elementor-widget elementor-widget-image" data-id="a8f0ca8" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="http://www.eage.org"> <img src="https://eage.org/wp-content/uploads/2020/05/EAGE_logo_header.svg?w=800" title="EAGE_logo" alt="" loading="lazy" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-fceaa7e" data-id="fceaa7e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-23ab4b2 pop_mobile elementor-widget elementor-widget-image" data-id="23ab4b2" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/Mobile_MenuIcon_open.svg?w=150&#038;h=150&#038;crop=1" title="Mobile_MenuIcon_open" alt="" loading="lazy" /> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-00edc04 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="00edc04" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-f6683e1" data-id="f6683e1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-13410e6 mobile_top_menu elementor-widget elementor-widget-text-editor" data-id="13410e6" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center;"><a href="https://www.firstbreak.org/">First Break</a>           <a href="https://www.earthdoc.org/">EarthDoc</a>           <a href="https://learninggeoscience.org/">Learning Geoscience</a></p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="single" data-elementor-id="3354" class="elementor elementor-3354 elementor-location-single post-9229 events type-events status-publish format-standard has-post-thumbnail hentry" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-a551b7b elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="a551b7b" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-011032f" data-id="011032f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-dcde18f elementor-widget elementor-widget-template" data-id="dcde18f" data-element_type="widget" data-widget_type="template.default"> <div class="elementor-widget-container"> <div class="elementor-template"> <style id="elementor-post-dynamic-3293">.elementor-3293 .elementor-element.elementor-element-c608feb:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-c608feb > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2021/02/Online_Events.jpg");}.elementor-3293 .elementor-element.elementor-element-57216984:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-57216984 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2021/02/Online_Events.jpg");}@media(max-width:767px){.elementor-3293 .elementor-element.elementor-element-7845140:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-7845140 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2021/02/Online_Events.jpg");}.elementor-3293 .elementor-element.elementor-element-75cdfcea:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-75cdfcea > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2021/02/Online_Events.jpg");}}</style> <div data-elementor-type="single" data-elementor-id="3293" class="elementor elementor-3293 elementor-location-single post-9229 events type-events status-publish format-standard has-post-thumbnail hentry" data-elementor-post-type="elementor_library"> <div class="elementor-element elementor-element-c608feb elementor-hidden-mobile e-flex e-con-boxed e-con e-parent" data-id="c608feb" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-49e5527 e-flex e-con-boxed e-con e-child" data-id="49e5527" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-3c2d0b6 e-con-full e-flex e-con e-child" data-id="3c2d0b6" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-element elementor-element-3423288 elementor-widget elementor-widget-heading" data-id="3423288" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Events</h1> </div> </div> <div class="elementor-element elementor-element-26e1525 elementor-widget elementor-widget-heading" data-id="26e1525" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Calendar of Online Events</h2> </div> </div> <div class="elementor-element elementor-element-5f010a9 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="5f010a9" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> <div class="elementor-element elementor-element-ba8a818 e-con-full e-flex e-con e-child" data-id="ba8a818" data-element_type="container"> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-f120ebb e-con-full elementor-hidden-mobile e-flex e-con e-parent" data-id="f120ebb" data-element_type="container" data-settings="{&quot;position&quot;:&quot;absolute&quot;}"> <div class="elementor-element elementor-element-4d17865 e-con-full e-flex e-con e-child" data-id="4d17865" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> </div> <div class="elementor-element elementor-element-e917d2a e-con-full e-flex e-con e-child" data-id="e917d2a" data-element_type="container"> </div> </div> <div class="elementor-element elementor-element-7845140 e-con-full elementor-hidden-desktop elementor-hidden-tablet section-page-title-mobile e-flex e-con e-parent" data-id="7845140" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-element elementor-element-2041f66 e-con-full e-flex e-con e-child" data-id="2041f66" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-element elementor-element-644af27 elementor-widget elementor-widget-heading" data-id="644af27" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Events</h1> </div> </div> <div class="elementor-element elementor-element-227dc0c elementor-widget elementor-widget-heading" data-id="227dc0c" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Calendar of Online Events</h2> </div> </div> <div class="elementor-element elementor-element-1b0c1ab elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="1b0c1ab" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> <section class="elementor-section elementor-top-section elementor-element elementor-element-57216984 elementor-hidden-mobile elementor-section-full_width section-page-title-desktop elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="57216984" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-223d1cd9" data-id="223d1cd9" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-1031b76b PageTitle_InnerSection_1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1031b76b" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5aedab8c" data-id="5aedab8c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2793141d elementor-widget elementor-widget-heading" data-id="2793141d" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Events</h1> </div> </div> <div class="elementor-element elementor-element-1d1391d6 elementor-widget elementor-widget-heading" data-id="1d1391d6" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Calendar of Online Events</h2> </div> </div> <div class="elementor-element elementor-element-610c0e4a elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="610c0e4a" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-72cbc049 elementor-hidden-phone" data-id="72cbc049" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-41a10f8a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="41a10f8a" data-element_type="section"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-66 elementor-inner-column elementor-element elementor-element-efc45f4" data-id="efc45f4" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-51662483 elementor-widget elementor-widget-spacer" data-id="51662483" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-7148767b elementor-hidden-phone" data-id="7148767b" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-f86f455 elementor-hidden-mobile elementor-section-full_width section-page-title-desktop elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="f86f455" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1c76ff6" data-id="1c76ff6" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-ba3c70b PageTitle_InnerSection_1 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="ba3c70b" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5e406bf" data-id="5e406bf" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <div class="elementor-element elementor-element-7a5ad6e elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="7a5ad6e" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-582d055 elementor-hidden-phone" data-id="582d055" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-75cdfcea elementor-section-full_width elementor-hidden-desktop elementor-hidden-tablet section-page-title-mobile elementor-hidden-mobile elementor-section-height-default elementor-section-height-default" data-id="75cdfcea" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-755066d6" data-id="755066d6" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <div class="elementor-element elementor-element-1c6edbed elementor-widget elementor-widget-heading" data-id="1c6edbed" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Events</h1> </div> </div> <div class="elementor-element elementor-element-20a84402 elementor-widget elementor-widget-heading" data-id="20a84402" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Calendar of Online Events</h2> </div> </div> <div class="elementor-element elementor-element-5a801f02 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="5a801f02" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-427098cb elementor-section-full_width elementor-section-height-min-height section-interesting-topic elementor-hidden-phone elementor-section-height-default elementor-section-items-middle" data-id="427098cb" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-35b8ffa8" data-id="35b8ffa8" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-dfe3e7f elementor-widget elementor-widget-text-editor" data-id="dfe3e7f" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <div id="topics-toolcontainer" class="hide-2"><ul id="topics-toolmenu" class="menu"><li id="menu-item-2821" class="topics_menu menu-item menu-item-type-custom menu-item-object-custom menu-item-2821"><a href="#">These topics might be interesting too.</a></li> <li id="menu-item-9238" class="topics_menu_sub menu-item menu-item-type-post_type menu-item-object-events menu-item-9238"><a href="https://eage.org/events/calendar-of-events/">Calendar of Events</a></li> <li id="menu-item-9236" class="topics_menu_sub menu-item menu-item-type-post_type menu-item-object-events current-menu-item menu-item-9236"><a href="https://eage.org/events/calendar-of-online-events/" aria-current="page">Calendar of Online Events</a></li> <li id="menu-item-9237" class="topics_menu_sub menu-item menu-item-type-post_type menu-item-object-events menu-item-9237"><a href="https://eage.org/events/calendar-of-past-events/">Calendar of Past Events</a></li> <li id="menu-item-2822" class="topics_last menu-item menu-item-type-custom menu-item-object-custom menu-item-2822"><a href="#">.</a></li> </ul></div> </div> </div> </div> </div> </div> </section> <div class="elementor-element elementor-element-6624c63 e-flex e-con-boxed e-con e-parent" data-id="6624c63" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-f0eec4c e-con-full e-flex e-con e-child" data-id="f0eec4c" data-element_type="container"> <div class="elementor-element elementor-element-1662570 elementor-hidden-mobile elementor-widget elementor-widget-html" data-id="1662570" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <!-- /20287594127/WP_EAGE_leaderboard --> <div id='div-gpt-ad-1724414516259-0' style='min-width: 500px; min-height: 62px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1724414516259-0'); }); </script> </div> </div> </div> <div class="elementor-element elementor-element-47a0954 elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-html" data-id="47a0954" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <!-- /20287594127/WP_EAGE_leaderboard_Mobile --> <div id='div-gpt-ad-1721216301701-0' style='min-width: 320px; min-height: 180px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1721216301701-0'); }); </script> </div> </div> </div> <div class="elementor-element elementor-element-99427f9 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="99427f9" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> <div class="elementor-element elementor-element-19cf4b8 elementor-widget elementor-widget-theme-post-content" data-id="19cf4b8" data-element_type="widget" data-widget_type="theme-post-content.default"> <div class="elementor-widget-container"> <div data-elementor-type="wp-post" data-elementor-id="9229" class="elementor elementor-9229" data-elementor-post-type="events"> <section class="elementor-section elementor-top-section elementor-element elementor-element-ae588dd elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ae588dd" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c89272f" data-id="c89272f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3197d0a elementor-widget elementor-widget-html" data-id="3197d0a" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <div id="footable_parent_9207" class=" footable_parent ninja_table_wrapper loading_ninja_table wp_table_data_press_parent semantic_ui colored_table"> <table data-ninja_table_instance="ninja_table_instance_0" data-footable_id="9207" data-filter-delay="1000" aria-label="Calendar of Online Events - Google Spreadsheet Connected" id="footable_9207" data-unique_identifier="ninja_table_unique_id_795594100_9207" class=" foo-table ninja_footable foo_table_9207 ninja_table_unique_id_795594100_9207 ui table nt_type_legacy_table selectable striped vertical_centered ninja_custom_color inverted footable-paging-right ninja_table_pro ninja_table_afd_columns ninja_table_afcs_columns_3 ninja_table_afcl_new_line ninja_table_has_custom_filter"> <colgroup> <col class="ninja_column_0 hidden"> <col class="ninja_column_1 hidden"> <col class="ninja_column_2 "> <col class="ninja_column_3 "> <col class="ninja_column_4 "> <col class="ninja_column_5 hidden"> <col class="ninja_column_6 "> <col class="ninja_column_7 "> <col class="ninja_column_8 "> <col class="ninja_column_9 hidden"> <col class="ninja_column_10 hidden"> <col class="ninja_column_11 hidden"> <col class="ninja_column_12 hidden"> <col class="ninja_column_13 hidden"> <col class="ninja_column_14 hidden"> <col class="ninja_column_15 hidden"> <col class="ninja_column_16 hidden"> </colgroup> <thead> <tr class="footable-header"> <th scope="col" class="ninja_column_0 ninja_clmn_nm_year hidden">Year</th><th scope="col" class="ninja_column_1 ninja_clmn_nm_month hidden">Month</th><th scope="col" class="ninja_column_2 ninja_clmn_nm_dates width-20 ">Dates</th><th scope="col" class="ninja_column_3 ninja_clmn_nm_event width-40 ">Event</th><th scope="col" class="ninja_column_4 ninja_clmn_nm_location ">Location</th><th scope="col" class="ninja_column_5 ninja_clmn_nm_eventtype hidden">Event Type</th><th scope="col" class="ninja_column_6 ninja_clmn_nm_organizer width-15 ">Organizer</th><th scope="col" class="ninja_column_7 ninja_clmn_nm_callforabstracts width-10 ">Call for Abstracts</th><th scope="col" class="ninja_column_8 ninja_clmn_nm_registration width-5 ">Registration</th><th scope="col" class="ninja_column_9 ninja_clmn_nm_topicarea hidden">Topic Area</th><th scope="col" class="ninja_column_10 ninja_clmn_nm_country hidden">Country</th><th scope="col" class="ninja_column_11 ninja_clmn_nm_region hidden">Region</th><th scope="col" class="ninja_column_12 ninja_clmn_nm_onlyeageevents hidden">EAGE Events</th><th scope="col" class="ninja_column_13 ninja_clmn_nm_onlyeducationevents hidden">Education Events</th><th scope="col" class="ninja_column_14 ninja_clmn_nm_onlystudentevents hidden">Student Events</th><th scope="col" class="ninja_column_15 ninja_clmn_nm_onlyonlineevents hidden">Online Events</th><th scope="col" class="ninja_column_16 ninja_clmn_nm_jointevent hidden">Joint Event</th></tr> </thead> <tbody> <tr data-row_id="0" class="ninja_table_row_0 nt_row_id_0"> <td>2024</td><td>November</td><td><span style="display:none">00000</span><span style="white-space: nowrap;">11 Nov &mdash;</span> <span style="white-space: nowrap;">11 Dec</span> 2024</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=747" target="_blank" rel="noopener">Reservoir Engineering of Geothermal Energy Production</a></b><br/><small><i>An EAGE Extensive Online Course by Dr Denis Voskov</i></small></td><td>Online</td><td>Short Course</td><td>EAGE</td><td></td><td><div style="text-align:center"><a href="https://learninggeoscience.org/enrol/index.php?id=149" class="btn btn-open" target="_blank" rel="noopener">Register Now</a></div></td><td>engineering energy transition energy transition</td><td></td><td>Online</td><td>eage-true</td><td>education-true</td><td></td><td>online-true</td><td></td> </tr> <tr data-row_id="1" class="ninja_table_row_1 nt_row_id_1"> <td>2024</td><td>November</td><td><span style="display:none">00001</span><span style="white-space: nowrap;">25 Nov</span> 2024</td><td><b><a href="https://www.linkedin.com/posts/eagekuwaitlocalchapter_join-us-this-month-for-an-insightful-session-activity-7262888304348393473-YBBL?utm_source=share&amp;utm_medium=member_desktop" target="_blank" rel="noopener">EAGE Local Chapter Kuwait - Technical Talk November 2024</a></b><br/><small><i>Subsurface Risks Monitoring for the Management of a CCS Site, with Francois Bouchet</i></small></td><td>Online</td><td>Webinar</td><td>EAGE Community</td><td></td><td><div style="text-align:center"><a href="https://www.linkedin.com/posts/eagekuwaitlocalchapter_join-us-this-month-for-an-insightful-session-activity-7262888304348393473-YBBL?utm_source=share&amp;utm_medium=member_desktop" class="btn btn-closingsoon" target="_blank" rel="noopener">Closing Soon</a></div></td><td></td><td></td><td>Online</td><td>eage-true</td><td></td><td></td><td>online-true</td><td></td> </tr> <tr data-row_id="2" class="ninja_table_row_2 nt_row_id_2"> <td>2024</td><td>November</td><td><span style="display:none">00002</span><span style="white-space: nowrap;">25&ndash;27 Nov</span> 2024</td><td><b><a href="https://eage.eventsair.com/eagesbgf-first-eage-conference-on-the-roadmap-towards-low-carbon-emission-in-brazil" target="_blank" rel="noopener">EAGE/SBGF First EAGE Conference on The Roadmap to Low Carbon Emission in Brazil</a></b></td><td>Rio de Janeiro, Brazil</td><td>Conference</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/eagesbgf-first-eage-conference-on-the-roadmap-towards-low-carbon-emission-in-brazil/cfa2" class="btn btn-closed" target="_blank" rel="noopener">Closed</a></div></td><td><div style="text-align:center"><a href="https://eage.eventsair.com/eagesbgf-first-eage-conference-on-the-roadmap-towards-low-carbon-emission-in-brazil/registration" class="btn btn-closingsoon" target="_blank" rel="noopener">Closing Soon</a></div></td><td>energy transition energy transition</td><td>Brazil</td><td>Latin America</td><td>eage-true</td><td></td><td></td><td></td><td>joint-true</td> </tr> <tr data-row_id="3" class="ninja_table_row_3 nt_row_id_3"> <td>2024</td><td>November</td><td><span style="display:none">00003</span><span style="white-space: nowrap;">26 Nov</span> 2024</td><td><b><a href="https://www.eagestavanger.com/event-details-registration/panel-discussion-hosted-by-eage-lc-stavanger?utm_campaign=4bfebc29-016f-4213-96bf-c1cba661468a&amp;utm_source=so&amp;utm_medium=mail&amp;cid=9c2749f3-342f-4c32-a627-6ddd3a005471" target="_blank" rel="noopener">EAGE Local Chapter Stavanger - Christmas Tech Talk</a></b><br/><small><i>Infrastructure-led Exploration: Key Challenges and Opportunities</i></small></td><td>Stavanger, Norway</td><td>Meeting</td><td>EAGE Community</td><td></td><td><div style="text-align:center"><a href="https://www.eagestavanger.com/event-details-registration/panel-discussion-hosted-by-eage-lc-stavanger?utm_campaign=4bfebc29-016f-4213-96bf-c1cba661468a&amp;utm_source=so&amp;utm_medium=mail&amp;cid=9c2749f3-342f-4c32-a627-6ddd3a005471" class="btn btn-closingsoon" target="_blank" rel="noopener">Closing Soon</a></div></td><td></td><td>Norway</td><td>Europe</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="4" class="ninja_table_row_4 nt_row_id_4"> <td>2024</td><td>November</td><td><span style="display:none">00004</span><span style="white-space: nowrap;">28 Nov</span> 2024</td><td><b><a href="https://www.eventbrite.co.uk/e/1055310144049?aff=oddtdtcreator" target="_blank" rel="noopener">EAGE Local Chapter London - Technical Talk November 2024</a></b><br/><small><i>Leveraging abstraction and automation for topography handling in Land Seismic simulation</i></small></td><td>London, United Kingdom</td><td>Meeting</td><td>EAGE Community</td><td></td><td><div style="text-align:center"><a href="https://www.eventbrite.co.uk/e/1055310144049?aff=oddtdtcreator" class="btn btn-closingsoon" target="_blank" rel="noopener">Closing Soon</a></div></td><td></td><td>United Kingdom</td><td>Europe</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="5" class="ninja_table_row_5 nt_row_id_5"> <td>2024</td><td>December</td><td><span style="display:none">00005</span><span style="white-space: nowrap;">3&ndash;5 Dec</span> 2024</td><td><b><a href="https://eagenewenergies.org/" target="_blank" rel="noopener">First EAGE Symposium and Exhibition on Geosciences for New Energies in America</a></b></td><td>Mexico City, Mexico</td><td>Conference & Exhibition</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eagenewenergies.org/" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td><div style="text-align:center"><a href="" class="btn btn-openingsoon">Opening Soon</a></div></td><td></td><td>Mexico</td><td>Latin America</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="6" class="ninja_table_row_6 nt_row_id_6"> <td>2024</td><td>December</td><td><span style="display:none">00006</span><span style="white-space: nowrap;">3&ndash;5 Dec</span> 2024</td><td><b><a href="https://eagenewenergies.org/" target="_blank" rel="noopener">EAGE Workshop on Near Surface Geoscience & Mineral Exploration</a></b></td><td>Mexico City, Mexico</td><td>Conference & Exhibition</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eagenewenergies.org/" class="btn btn-closed" target="_blank" rel="noopener">Closed</a></div></td><td></td><td></td><td>Mexico</td><td>Latin America</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="7" class="ninja_table_row_7 nt_row_id_7"> <td>2024</td><td>December</td><td><span style="display:none">00007</span><span style="white-space: nowrap;">3&ndash;5 Dec</span> 2024</td><td><b><a href="https://eage.eventsair.com/first-eage-symposium-on-geosciences-for-new-energies-in-america/workshop-2-geothermal" target="_blank" rel="noopener">EAGE Workshop on Geothermal Energy in Latin America</a></b></td><td>Mexico City, Mexico</td><td>Workshop</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/third-eage-workshop-on-geothermal-energy-in-latin-america/cfa2" class="btn btn-closed" target="_blank" rel="noopener">Closed</a></div></td><td><div style="text-align:center"><a href="https://eage.eventsair.com/eage-workshop-on-near-surface-geoscience-mineral-exploration/registration-sso" class="btn btn-closingsoon" target="_blank" rel="noopener">Closing Soon</a></div></td><td>eage workshop on geothermal energy in latin america energy transition acoculco america andes anomaly argentina baja berlin buenos aires california carbon case study characteristic colombia condition costa rica data diesel dominican republic drilling ecuador egs eia el salvador emission environmental exploration favorability feasibility felipe gas gender geochemical geochemistry geological geology geophysical geothermal geothermal energy geothermal exploration geothermal field geothermal projects geothermal reservoir geothermal reservoir characterization geothermal system groundwater high temperature honduras humeros inhabitant kwh las latin america llanos los management mexican mexico model modelling monitoring municipality nicaragua northwest territories operation pailas potential production region reservoir resistivity risk shallow shallow resistivity soil gas south america survey sustainable systematics temperature unfc virginia volcanic wcsb well workflow</td><td>Mexico</td><td>Latin America</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="8" class="ninja_table_row_8 nt_row_id_8"> <td>2024</td><td>December</td><td><span style="display:none">00008</span><span style="white-space: nowrap;">3&ndash;5 Dec</span> 2024</td><td><b><a href="https://eagenewenergies.org/#" target="_blank" rel="noopener">EAGE Workshop on Water Footprint</a></b></td><td>Mexico City, Mexico</td><td>Workshop</td><td>EAGE</td><td></td><td><div style="text-align:center"><a href="https://eage.eventsair.com/eage-workshop-on-near-surface-geoscience-mineral-exploration/registration-sso" class="btn btn-closingsoon" target="_blank" rel="noopener">Closing Soon</a></div></td><td>eage workshop on water footprint latin america agricultural boyaca caribbean climate change colombia dummy eageworkshoponwaterfootprintlatinamerica 10 dummy eageworkshoponwaterfootprintlatinamerica 102 dummy eageworkshoponwaterfootprintlatinamerica 103 dummy eageworkshoponwaterfootprintlatinamerica 104 dummy eageworkshoponwaterfootprintlatinamerica 105 dummy eageworkshoponwaterfootprintlatinamerica 106 dummy eageworkshoponwaterfootprintlatinamerica 107 dummy eageworkshoponwaterfootprintlatinamerica 111 dummy eageworkshoponwaterfootprintlatinamerica 112 dummy eageworkshoponwaterfootprintlatinamerica 113 dummy eageworkshoponwaterfootprintlatinamerica 114 dummy eageworkshoponwaterfootprintlatinamerica 115 dummy eageworkshoponwaterfootprintlatinamerica 116 dummy eageworkshoponwaterfootprintlatinamerica 117 dummy eageworkshoponwaterfootprintlatinamerica 118 dummy eageworkshoponwaterfootprintlatinamerica 119 dummy eageworkshoponwaterfootprintlatinamerica 12 dummy eageworkshoponwaterfootprintlatinamerica 120 dummy eageworkshoponwaterfootprintlatinamerica 121 dummy eageworkshoponwaterfootprintlatinamerica 128 dummy eageworkshoponwaterfootprintlatinamerica 129 dummy eageworkshoponwaterfootprintlatinamerica 13 dummy eageworkshoponwaterfootprintlatinamerica 130 dummy eageworkshoponwaterfootprintlatinamerica 131 dummy eageworkshoponwaterfootprintlatinamerica 132 dummy eageworkshoponwaterfootprintlatinamerica 133 dummy eageworkshoponwaterfootprintlatinamerica 134 dummy eageworkshoponwaterfootprintlatinamerica 135 dummy eageworkshoponwaterfootprintlatinamerica 136 dummy eageworkshoponwaterfootprintlatinamerica 137 dummy eageworkshoponwaterfootprintlatinamerica 138 dummy eageworkshoponwaterfootprintlatinamerica 139 energetic gradient integrated management morphometric neutrality potential regulation river basin saline sustainability water water resource watershed</td><td>Mexico</td><td>Latin America</td><td>eage-true</td><td></td><td>student-true</td><td></td><td></td> </tr> <tr data-row_id="9" class="ninja_table_row_9 nt_row_id_9"> <td>2024</td><td>December</td><td><span style="display:none">00009</span><span style="white-space: nowrap;">3&ndash;5 Dec</span> 2024</td><td><b><a href="https://seg.org/calendar_events/seg-eage-workshop-on-geophysical-aspects-of-smart-cities/" target="_blank" rel="noopener">3rd SEG/EAGE Workshop on Geophysical Aspects of Smart Cities</a></b></td><td>Seoul, South Korea</td><td>Workshop</td><td>EAGE</td><td><div style="text-align:center"><a href="https://seg.org/calendar_events/seg-eage-workshop-on-geophysical-aspects-of-smart-cities/" class="btn btn-closed" target="_blank" rel="noopener">Closed</a></div></td><td></td><td>eage seg workshop on geophysical aspects of smart cities acquisition active and passive agricultural ambient noise array autocorrelation bore cable california capacitively cavity ccr condition das data deformation dense detection dispersion curve earthquake engineering environment epicentral fault fiber fiber optic geophone geophysical geophysical mapping geophysical method hazard hong kong imfs induced infrastructure korea land los angeles mapping microgravity microtremor monitoring near surface noise observability obstruction passive passive seismic method passive seismic methods pennsylvania potential railway rayleigh rayleigh wave receiver reclaimed reclamation resistivity s wave velocity seismic seismology sensor singapore soil spac storm structural subsurface surface wave tbm traffic tunnel underground urban urban area velocity vmd yangsan</td><td>South Korea</td><td>Asia Pacific</td><td>eage-true</td><td></td><td></td><td></td><td>joint-true</td> </tr> <tr data-row_id="10" class="ninja_table_row_10 nt_row_id_10"> <td>2024</td><td>December</td><td><span style="display:none">00010</span><span style="white-space: nowrap;">4 Dec</span> 2024</td><td><b><a href="https://eage.eventsair.com/eage-student-webinar-on-remote-sensing-with-radars-from-space" target="_blank" rel="noopener">EAGE Student Webinar on Remote Sensing with Radars from Space by Prof. Fabio Rocca</a></b></td><td>Online</td><td>Student Lecture Tour (SLT)</td><td>EAGE</td><td></td><td><div style="text-align:center"><a href="https://eage.eventsair.com/eage-student-webinar-on-remote-sensing-with-radars-from-space" class="btn btn-closingsoon" target="_blank" rel="noopener">Closing Soon</a></div></td><td>eage student lecture tour slt</td><td></td><td>Online</td><td>eage-true</td><td>education-true</td><td>student-true</td><td>online-true</td><td></td> </tr> <tr data-row_id="11" class="ninja_table_row_11 nt_row_id_11"> <td>2024</td><td>December</td><td><span style="display:none">00011</span><span style="white-space: nowrap;">9 Dec</span> 2024</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=667" target="_blank" rel="noopener">DLP Webinar on Exploiting the richness of multi-component data: a time-dependent polarization-based FWI approach by Dr Serge Sambolian</a></b></td><td>Online</td><td>Webinar</td><td>EAGE</td><td></td><td><div style="text-align:center"><a href="https://eage.eventsair.com/24web-01-sambolian/registration" class="btn btn-open" target="_blank" rel="noopener">Register Now</a></div></td><td>dlp distinguished lecturer programme eage trainingand development</td><td></td><td>Online</td><td>eage-true</td><td>education-true</td><td>student-true</td><td>online-true</td><td></td> </tr> <tr data-row_id="12" class="ninja_table_row_12 nt_row_id_12"> <td>2024</td><td>December</td><td><span style="display:none">00012</span><span style="white-space: nowrap;">11 Dec</span> 2024</td><td><b><a href="https://ceecsg.org/1st-ceec-london-roadshow/" target="_blank" rel="noopener">1st CEEC London Roadshow</a></b></td><td>London, United Kingdom</td><td>Meeting</td><td>Non-EAGE Event</td><td></td><td></td><td></td><td>United Kingdom</td><td>Europe</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="13" class="ninja_table_row_13 nt_row_id_13"> <td>2025</td><td>February</td><td><span style="display:none">00013</span><span style="white-space: nowrap;">3&ndash;4 Feb</span> 2025</td><td><b><a href="https://eage.eventsair.com/eage-workshop-on-carbon-capture-in-basalts/" target="_blank" rel="noopener">EAGE Workshop on Carbon Capture and Storage (CCS) in Basalts</a></b></td><td>Gandhinagar, India</td><td>Workshop</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/eage-workshop-on-carbon-capture-in-basalts/abstract-submission-and-instructions" class="btn btn-closed" target="_blank" rel="noopener">Closed</a></div></td><td></td><td>energy transition energy transition</td><td>India</td><td>Asia Pacific</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="14" class="ninja_table_row_14 nt_row_id_14"> <td>2025</td><td>February</td><td><span style="display:none">00014</span><span style="white-space: nowrap;">11 Feb</span> 2025</td><td><b><a href="https://eage.eventsair.com/second-eage-libyan-carbonates-lightning-session-unlocking-reservoir-potential-and-defying-challenges/" target="_blank" rel="noopener">Second EAGE Libyan Carbonates Lightning Session: Unlocking Reservoir Potential and Defying Challenges</a></b></td><td></td><td>Meeting</td><td>EAGE</td><td></td><td></td><td></td><td></td><td></td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="15" class="ninja_table_row_15 nt_row_id_15"> <td>2025</td><td>February</td><td><span style="display:none">00015</span><span style="white-space: nowrap;">18&ndash;20 Feb</span> 2025</td><td><b><a href="https://www.iptcnet.org/?utm_source=iptcnet&amp;utm_medium=email&amp;utm_campaign=25IPTC&amp;utm_content=cfp-html-eage" target="_blank" rel="noopener">International Petroleum Technology Conference (IPTC) 2025</a></b></td><td>Kuala Lumpur, Malaysia</td><td>Conference & Exhibition</td><td>EAGE</td><td></td><td></td><td></td><td>Malaysia</td><td>Asia Pacific</td><td>eage-true</td><td></td><td></td><td></td><td>joint-true</td> </tr> <tr data-row_id="16" class="ninja_table_row_16 nt_row_id_16"> <td>2025</td><td>February</td><td><span style="display:none">00016</span><span style="white-space: nowrap;">20&ndash;21 Feb</span> 2025</td><td><b><a href="https://www.geotherm-offenburg.de/en" target="_blank" rel="noopener">GeoTHERM Expo & Congress 2025</a></b></td><td>Offenburg, Germany</td><td>Conference & Exhibition</td><td>Non-EAGE Event</td><td></td><td></td><td></td><td>Germany</td><td>Europe</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="17" class="ninja_table_row_17 nt_row_id_17"> <td>2025</td><td>February</td><td><span style="display:none">00017</span><span style="white-space: nowrap;">27&ndash;28 Feb</span> 2025</td><td><b><a href="https://eage.eventsair.com/jurassic-triassic-plays-2025" target="_blank" rel="noopener">First EAGE Workshop on the Triassic and Jurassic Plays in Northwest Europe</a></b></td><td>Sunbury, United Kingdom</td><td>Workshop</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/jurassic-triassic-plays-2025/submissions" class="btn btn-closed" target="_blank" rel="noopener">Closed</a></div></td><td><div style="text-align:center"><a href="https://eage.eventsair.com/jurassic-triassic-plays-2025" class="btn btn-open" target="_blank" rel="noopener">Register Now</a></div></td><td>geology geology</td><td>United Kingdom</td><td>Europe</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="18" class="ninja_table_row_18 nt_row_id_18"> <td>2025</td><td>March</td><td><span style="display:none">00018</span><span style="white-space: nowrap;">24&ndash;26 Mar</span> 2025</td><td><b><a href="https://eagedigital.org/" target="_blank" rel="noopener">Fifth EAGE Digitalization Conference & Exhibition</a></b></td><td>Edinburgh, Scotland, United Kingdom</td><td>Conference & Exhibition</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eagedigital.org/abstract-submission-instructions/" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td><div style="text-align:center"><a href="https://eagedigital.org/registration/" class="btn btn-open" target="_blank" rel="noopener">Register Now</a></div></td><td>data science machine learning eage digitalization conference and exhibition data science machine learning accelerating accuracy agile algorithm analytic artificial intelligence case study convolutional neural network core data data driven data management dataset deep learning detection digital digital transformation digitalization domain drilling e and p exploration extraction fault geological geoscience indonesia innovation interpretation lever leverage log machine learning model modelling multiple neural network north sea operation optimization osdu parameter petrophysicist platform potential predict prediction processing production real time reservoir segmentation seismic seismic data showroom subsurface suriname totalenergies uncertainty unstructured data vds well well log workflow</td><td>United Kingdom</td><td>Europe</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="19" class="ninja_table_row_19 nt_row_id_19"> <td>2025</td><td>April</td><td><span style="display:none">00019</span><span style="white-space: nowrap;">2&ndash;4 Apr</span> 2025</td><td><b><a href="https://eage.eventsair.com/23rd-european-ior-symposium" target="_blank" rel="noopener">IOR+ 2025 - 23rd European Symposium on IOR</a></b><br/><small><i>IOR+2025 - 23rd European Symposium on IOR</i></small></td><td>Edinburgh, Scotland, United Kingdom</td><td>Conference</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/23rd-european-ior-symposium/submissions" class="btn btn-closed" target="_blank" rel="noopener">Closed</a></div></td><td><div style="text-align:center"><a href="https://eage.eventsair.com/23rd-european-ior-symposium/registration-sso" class="btn btn-open" target="_blank" rel="noopener">Register Now</a></div></td><td>engineering ior eor eage ior improved oil recovery conference engineering ior eor adsorption aqueous asp brine capillary carbonate chemical chemical eor co2 condition core crude oil daqing data displacement effluent eor experimental flooding foam formation high salinity hpam implementation injected injecting injection injectivity interfacial tension ionic ior layer low salinity miscible mobility model modelling molecular oil production oil recovery ooip parameter permeability phase polyacrylamide polymer polymer flood polymer flooding polymer injection pore porous media potential ppm production recovery recovery factor relative permeability reservoir reservoir conditions residual oil saturation rock salinity scale simulation slug spontaneous imbibition stability surfactant surfactant polymer temperature viscosity viscous water water cut water wet waterflood well wettability</td><td>United Kingdom</td><td>Europe</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="20" class="ninja_table_row_20 nt_row_id_20"> <td>2025</td><td>April</td><td><span style="display:none">00020</span><span style="white-space: nowrap;">14&ndash;16 Apr</span> 2025</td><td><b><a href="https://eage.eventsair.com/the-fifth-eage-well-injectivity-productivity-in-carbonates-wipic/" target="_blank" rel="noopener">Innovative Technology for Reservoir Optimization: Fifth EAGE Well Injectivity & Productivity in Carbonates (WIPIC)</a></b></td><td>Doha, Qatar</td><td>Meeting</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/the-fifth-eage-well-injectivity-productivity-in-carbonates-wipic/abstract-submission-instructions" class="btn btn-closed" target="_blank" rel="noopener">Closed</a></div></td><td></td><td>eage well injectivity and productivity workshop aavatsmark abushaikha accuracy acetate brine burgan carbon carbonate carbonate reservoir co2 conformance core crosslinkers dan danish discretization discretized domain drilling dynamic enhanced oil recovery eor experimental fluid injection forecasting formation formation damage full tensor gorm halfdan history matching hjeij hybrid improved oil recovery injection injectivity injector interpretation khait linearization low salinity waterflooding lsw matrix mature middle east mimetic model modelling molecular modelling nonlinear numerical obl oil recovery oil saturation oil wet operation permeability phase potential preconditioner preconditioning production qasr qatar reinforce reservoir reservoir management reservoir simulation reservoir simulator rock simulation simulator strengthening subsurface thermodynamic uncertainty water water injection well wettability</td><td>Qatar</td><td>Middle East</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="21" class="ninja_table_row_21 nt_row_id_21"> <td>2025</td><td>April</td><td><span style="display:none">00021</span><span style="white-space: nowrap;">29&ndash;30 Apr</span> 2025</td><td><b><a href="https://eage.eventsair.com/eage-workshop-on-advanced-seismic-solutions-for-complex-reservoir-challenges/" target="_blank" rel="noopener">EAGE Workshop on Advanced Seismic Solutions for Complex Reservoir Challenges</a></b></td><td>Kuala Lumpur, Malaysia</td><td>Workshop</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/eage-workshop-on-advanced-seismic-solutions-for-complex-reservoir-challenges/abstract-submission-instruction" class="btn btn-closingsoon" target="_blank" rel="noopener">Closing Soon</a></div></td><td></td><td></td><td>Malaysia</td><td>Asia Pacific</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="22" class="ninja_table_row_22 nt_row_id_22"> <td>2025</td><td>April</td><td><span style="display:none">00022</span><span style="white-space: nowrap;">30 Apr &mdash;</span> <span style="white-space: nowrap;">1 May</span> 2025</td><td><b><a href="https://eage.eventsair.com/third-eagesut-workshop-on-integrated-site-characterisation-for-offshore-renewable-energy/" target="_blank" rel="noopener">Third EAGE/SUT Workshop on Integrated Site Characterisation for Offshore Wind</a></b></td><td>Newcastle, United Kingdom</td><td>Workshop</td><td>EAGE</td><td></td><td></td><td></td><td>United Kingdom</td><td>Europe</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="23" class="ninja_table_row_23 nt_row_id_23"> <td>2025</td><td>May</td><td><span style="display:none">00023</span><span style="white-space: nowrap;">5&ndash;7 May</span> 2025</td><td><b><a href="https://eage.eventsair.com/first-eage-atlantic-geoscience-resource-exploration-and-development-symposium" target="_blank" rel="noopener">First EAGE Atlantic Geoscience Resource Exploration and Development Symposium</a></b><br/><small><i>Atlantic Conjugate Margins and Their Global Significance In Our Energy Future</i></small></td><td>Marrakech, Morocco</td><td>Conference</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/first-eage-atlantic-geoscience-resource-exploration-and-development-symposium/abstract-submission-guidelines-2" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td></td><td>eage north african petroleum and geosciences conference and exhibition</td><td>Morocco</td><td>Africa</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="24" class="ninja_table_row_24 nt_row_id_24"> <td>2025</td><td>May</td><td><span style="display:none">00024</span><span style="white-space: nowrap;">8&ndash;9 May</span> 2025</td><td><b><a href="https://eage.eventsair.com/first-eage-workshop-land-seismic-acquisition" target="_blank" rel="noopener">First EAGE Workshop Land Seismic Acquisition</a></b></td><td>Calgary, Alberta, Canada</td><td>Workshop</td><td>EAGE</td><td></td><td></td><td></td><td>Canada</td><td>North America</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="25" class="ninja_table_row_25 nt_row_id_25"> <td>2025</td><td>May</td><td><span style="display:none">00025</span><span style="white-space: nowrap;">13&ndash;15 May</span> 2025</td><td><b><a href="https://eage.eventsair.com/7th-asia-pacific-meeting-on-near-surface-geoscience-and-engineering/" target="_blank" rel="noopener">7th Asia Pacific Meeting on Near Surface Geoscience and Engineering</a></b></td><td>Xi'an, China</td><td>Conference</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/7th-asia-pacific-meeting-on-near-surface-geoscience-and-engineering/abstract-submission-instructions" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td></td><td></td><td>China</td><td>Asia Pacific</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="26" class="ninja_table_row_26 nt_row_id_26"> <td>2025</td><td>May</td><td><span style="display:none">00026</span><span style="white-space: nowrap;">21&ndash;22 May</span> 2025</td><td><b><a href="https://eage.eventsair.com/first-eagesbgf-workshop-on-marine-seismic-acquisition" target="_blank" rel="noopener">First EAGE/SBGf Workshop on Marine Seismic Acquisition</a></b></td><td>Rio de Janeiro, Brazil</td><td>Workshop</td><td>EAGE</td><td></td><td></td><td></td><td>Brazil</td><td>Latin America</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="27" class="ninja_table_row_27 nt_row_id_27"> <td>2025</td><td>June</td><td><span style="display:none">00027</span><span style="white-space: nowrap;">2&ndash;5 Jun</span> 2025</td><td><b><a href="https://eageannual.org/" target="_blank" rel="noopener">86th EAGE Annual Conference & Exhibition</a></b><br/><small><i>Navigating Change: Geosciences Shaping a Sustainable Transition</i></small></td><td>Toulouse, France</td><td>Conference & Exhibition</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eageannual.org/technical-programme/" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td></td><td>multidisciplinary eage annual conference and exhibition multidisciplinary accuracy acquisition algorithm amplitude artifact basin bohai bay canada case study chalk china co2 condition conventional convolutional neural network cycle skipping das data dataset deblending decomposition deconvolution density dispersion distribution domain elastic exploration fault formation fracture frequency dependent frequency domain full waveform inversion fwi geological geophone hessian high resolution imaging condition india induced seismicity injection internal multiple interpretation inversion inversion method iran layer least squares reverse time migration lsrtm marchenko model modelling monitoring multiple noise north sea numerical examples numerical simulation offset offshore oil recovery oman p wave parameter phase plane wave polymer porosity porous media potential prediction processing production receiver reflection reservoir resolution reverse time migration rock s wave velocity scale seismic seismic data solver subsurface surfactant survey tarim basin traveltime uncertainty velocity velocity model viscoacoustic vsp vti water wave equation wave propagation wavefield well western china wettability workflow zero offset zoeppritz equation</td><td>France</td><td>Europe</td><td>eage-true</td><td>education-true</td><td>student-true</td><td></td><td></td> </tr> <tr data-row_id="28" class="ninja_table_row_28 nt_row_id_28"> <td>2025</td><td>June</td><td><span style="display:none">00028</span><span style="white-space: nowrap;">30 Jun &mdash;</span> <span style="white-space: nowrap;">2 Jul</span> 2025</td><td><b><a href="https://eage.eventsair.com/4th-eage-conference-on-carbon-capture-and-storage/" target="_blank" rel="noopener">4th Carbon Capture and Storage Conference Asia Pacific</a></b></td><td>Kuala Lumpur, Malaysia</td><td>Conference</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/4th-eage-conference-on-carbon-capture-and-storage/abstract-submission-and-instructions" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td></td><td></td><td>Malaysia</td><td>Asia Pacific</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="29" class="ninja_table_row_29 nt_row_id_29"> <td>2025</td><td>July</td><td><span style="display:none">00029</span><span style="white-space: nowrap;">3&ndash;4 Jul</span> 2025</td><td><b>5th EAGE Workshop on Fiber Optic Sensing for Energy Applications</b></td><td>Kuala Lumpur, Malaysia</td><td>Workshop</td><td>EAGE</td><td></td><td></td><td></td><td>Malaysia</td><td>Asia Pacific</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="30" class="ninja_table_row_30 nt_row_id_30"> <td>2025</td><td>August</td><td><span style="display:none">00030</span><span style="white-space: nowrap;">26&ndash;27 Aug</span> 2025</td><td><b>EAGE Workshop on Machine Learning for Geoscience</b></td><td></td><td>Workshop</td><td>EAGE</td><td></td><td></td><td></td><td></td><td></td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="31" class="ninja_table_row_31 nt_row_id_31"> <td>2025</td><td>September</td><td><span style="display:none">00031</span><span style="white-space: nowrap;">1&ndash;4 Sep</span> 2025</td><td><b><a href="https://wccus.org/" target="_blank" rel="noopener">World CCUS Conference 2025</a></b></td><td>Bergen, Norway</td><td>Conference</td><td>Non-EAGE Event</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/wccus/submissions" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td></td><td>energy transition world ccus conference energy transition</td><td>Norway</td><td>Europe</td><td></td><td>education-true</td><td>student-true</td><td></td><td></td> </tr> <tr data-row_id="32" class="ninja_table_row_32 nt_row_id_32"> <td>2025</td><td>September</td><td><span style="display:none">00032</span><span style="white-space: nowrap;">7&ndash;11 Sep</span> 2025</td><td><b>Near Surface Geoscience Conference & Exhibition 2025</b></td><td>Naples, Italy</td><td>Conference & Exhibition</td><td>EAGE</td><td></td><td></td><td>near surface eage near surface conference and exhibition near surface aem airborne algorithm aquifer archaeological array bedrock borehole case study characterization combination condition dam data deposit detection electrical electrical resistivity electrical resistivity tomography electrical resistivity tomography ert electrode electromagnetic embankment environment exploration geoelectrical geological geophysical geophysical investigation geophysical method geophysical survey geophysics geotechnical gpr greece groundwater high resolution hydrogeological induced polarization interpretation inversion investigation italy landfill landslide layer magnetic mapping masw mineral exploration model modelling monitoring near surface noise parameter potential processing reflection resistivity rock sediment seismic seismic data shallow soil sounding south africa spain subsurface surface wave survey swede time domain tunnel water well</td><td>Italy</td><td>Europe</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="33" class="ninja_table_row_33 nt_row_id_33"> <td>2025</td><td>September</td><td><span style="display:none">00033</span><span style="white-space: nowrap;">7&ndash;12 Sep</span> 2025</td><td><b><a href="https://imogconference.org/" target="_blank" rel="noopener">IMOG 2025</a></b><br/><small><i>32nd International Meeting on Organic Geochemistry</i></small></td><td>Porto, Portugal</td><td>Conference</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/imog-2025/submission-fee/Site/Register" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td></td><td>eaog imog international meeting on organic geochemistry reservoir characterization geochemistry</td><td>Portugal</td><td>Europe</td><td>eage-true</td><td></td><td></td><td></td><td>joint-true</td> </tr> <tr data-row_id="34" class="ninja_table_row_34 nt_row_id_34"> <td>2025</td><td>September</td><td><span style="display:none">00034</span><span style="white-space: nowrap;">9&ndash;11 Sep</span> 2025</td><td><b><a href="https://eage.eventsair.com/second-eage-conference-and-exhibition-on-guyana-suriname-basin" target="_blank" rel="noopener">Second EAGE Conference and Exhibition on Guyana-Suriname Basin</a></b></td><td>Georgetown, Guyana</td><td>Conference & Exhibition</td><td>EAGE</td><td></td><td></td><td></td><td>Guyana</td><td>Latin America</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="35" class="ninja_table_row_35 nt_row_id_35"> <td>2025</td><td>September</td><td><span style="display:none">00035</span><span style="white-space: nowrap;">14&ndash;18 Sep</span> 2025</td><td><b><a href="https://eage.eventsair.com/seventh-international-conference-on-fault-and-top-seals" target="_blank" rel="noopener">Seventh International Conference on Fault and Top Seals</a></b></td><td>Bucharest, Romania</td><td>Conference</td><td>EAGE</td><td></td><td></td><td>geology eage fault and top seals conference geology algorithm basin bretan burial depth capacity capillary caprock carbonate cataclasis cataclastic cementation clay compartmentalization condition core data deformation displacement distribution exploration fault fault reactivation fault seal fault seal analysis fault sealing fault zone faulted faulting fisher fluid flow formation fracture fsa geological geometry gouge hydrocarbon injection knipe leakage mechanical membrane microstructural model modelling normal fault outcrop parameter permeability porosity potential reservoir risk rock sandstone scale seal sealing seismic sgr shale smear stress structural subsurface top seal uncertainty water well workflow</td><td>Romania</td><td>Europe</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="36" class="ninja_table_row_36 nt_row_id_36"> <td>2025</td><td>September</td><td><span style="display:none">00036</span><span style="white-space: nowrap;">16&ndash;18 Sep</span> 2025</td><td><b><a href="https://www.meos-geo.com/en/home.html" target="_blank" rel="noopener">MEOS GEO</a></b></td><td>Bahrain, Bahrain</td><td>Conference & Exhibition</td><td>EAGE</td><td></td><td></td><td></td><td>Bahrain</td><td>Middle East</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="37" class="ninja_table_row_37 nt_row_id_37"> <td>2025</td><td>September</td><td><span style="display:none">00037</span><span style="white-space: nowrap;">22&ndash;24 Sep</span> 2025</td><td><b><a href="https://eage.eventsair.com/sixth-eage-borehole-geology-workshop" target="_blank" rel="noopener">Sixth EAGE Borehole Geology Workshop</a></b></td><td>Stavanger, Norway</td><td>Workshop</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/sixth-eage-borehole-geology-workshop/abstract-submission-guidelines" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td></td><td>geology eage borehole geology workshop geology bedding bhi borehole borehole geology borehole image borehole image logs carbonate case study characterization clast condition conductive conglomerate conventional core correlation data distribution drilling environment facies fault formation fracture geological geosteering grain size grain size distributions hfu hfus high resolution hmax hmin identification image logs imager imagers integrated integration interpretation kirsch log lwd microfacies analysis model modelling mud logging operation permeability porosity prediction processing production real time reservoir reservoir architecture reservoir characterization reservoir geochemistry resistivity rock rpd saltation saudi arabia scale secondary porosity shaybah stress structural subsurface unconventional reservoir uncored wbi well wellbore wellbore stability wireline workflow zone3</td><td>Norway</td><td>Europe</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="38" class="ninja_table_row_38 nt_row_id_38"> <td>2025</td><td>September</td><td><span style="display:none">00038</span><span style="white-space: nowrap;">23&ndash;24 Sep</span> 2025</td><td><b>EAGE Workshop on Optimizing Upstream Excellence for Oil and Gas Success</b></td><td>Kuala Lumpur, Malaysia</td><td>Workshop</td><td>EAGE</td><td></td><td></td><td>engineering engineering</td><td>Malaysia</td><td>Asia Pacific</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="39" class="ninja_table_row_39 nt_row_id_39"> <td>2025</td><td>September</td><td><span style="display:none">00039</span><span style="white-space: nowrap;">29 Sep &mdash;</span> <span style="white-space: nowrap;">1 Oct</span> 2025</td><td><b><a href="https://eage.eventsair.com/eight-eage-borehole-geophysics-workshop" target="_blank" rel="noopener">Eighth EAGE Borehole Geophysics Workshop</a></b></td><td>Al Khobar, Saudi Arabia</td><td>Workshop</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/eight-eage-borehole-geophysics-workshop/abstract-submission-guidelines" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td></td><td>geophysics eage borehole geophysics workshop geophysics 3dvsp abu dhabi acquisition amplitude anisotropy array azimuthal anisotropy borehole cable case study checkshot conventional culzean das das data das datasets das vsp das vsp data data dataset downhole drilling fiber fiber optic cable formation gauge geometry geophone inversion layer leaney migration model modelling monitoring multiple noise offset p wave parameter processing receiver reflection reservoir rig salt seismic seismic data sensor shot sonic subsurface surface seismic surface seismic data survey velocity velocity model vsp vsp data vsp dataset vsp datasets walkabove walkaway vsp walkaway vsp data wavefield well workflow wvsp yadari zero offset vsp zvsp</td><td>Saudi Arabia</td><td>Middle East</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="40" class="ninja_table_row_40 nt_row_id_40"> <td>2025</td><td>September</td><td><span style="display:none">00040</span><span style="white-space: nowrap;">29 Sep &mdash;</span> <span style="white-space: nowrap;">1 Oct</span> 2025</td><td><b><a href="https://medinace.aapg.org/2025/save-the-date" target="_blank" rel="noopener">Second EAGE/AAPG Mediterranean and North African Conference (MEDiNA)</a></b></td><td>Tunis, Tunisia</td><td>Conference & Exhibition</td><td>EAGE</td><td></td><td></td><td></td><td>Tunisia</td><td>Africa</td><td>eage-true</td><td></td><td></td><td></td><td>joint-true</td> </tr> <tr data-row_id="41" class="ninja_table_row_41 nt_row_id_41"> <td>2025</td><td>October</td><td><span style="display:none">00041</span><span style="white-space: nowrap;">6&ndash;8 Oct</span> 2025</td><td><b><a href="https://eage.eventsair.com/ninth-eage-high-performance-computing-workshop" target="_blank" rel="noopener">Ninth EAGE High Performance Computing Workshop</a></b></td><td>Barcelona, Spain</td><td>Workshop</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/ninth-eage-high-performance-computing-workshop/abstract-submission-instructions" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td></td><td>data science data science</td><td>Spain</td><td>Europe</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="42" class="ninja_table_row_42 nt_row_id_42"> <td>2025</td><td>October</td><td><span style="display:none">00042</span><span style="white-space: nowrap;">6&ndash;8 Oct</span> 2025</td><td><b>Second EAGE Data Processing Workshop</b></td><td>Barcelona, Spain</td><td>Workshop</td><td>EAGE</td><td></td><td></td><td></td><td>Spain</td><td>Europe</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="43" class="ninja_table_row_43 nt_row_id_43"> <td>2025</td><td>October</td><td><span style="display:none">00043</span><span style="white-space: nowrap;">21&ndash;22 Oct</span> 2025</td><td><b><a href="https://eage.eventsair.com/first-eage-workshop-on-geophysical-techniques-for-monitoring-co2-storage" target="_blank" rel="noopener">First EAGE Workshop on Geophysical Techniques for Monitoring CO2 Storage</a></b></td><td>Toronto, Canada</td><td>Workshop</td><td>EAGE</td><td></td><td></td><td>geophysics eage co2 workshop geophysics alberta amman amsterdam aquifer bcs caprock ccs characterization co2 co2 eor co2 injection co2 storage conformance cse data distribution eccsels esfri experimental fault formation injected injection integrity inversion layer lds leakage lightsource linguistic migration model modelling monitoring north sea norway norwegian operation parameter permeability phase piezo plume porosity potential prediction reservoir retro risk risk based verification monitoring rock sandstone saturation scale seismic seismic data shortlist simulation sleipner snohvit sognefjord storage storage capacity storage site subsurface survey synthetic time lapse trondheim uncertainty utsira vle water well workflow</td><td>Canada</td><td>North America</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="44" class="ninja_table_row_44 nt_row_id_44"> <td>2025</td><td>October</td><td><span style="display:none">00044</span><span style="white-space: nowrap;">21&ndash;23 Oct</span> 2025</td><td><b>EAGE/AAPG/SEG CCUS Workshop</b></td><td>Al Khobar, Saudi Arabia</td><td>Workshop</td><td>EAGE</td><td></td><td></td><td></td><td>Saudi Arabia</td><td>Middle East</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="45" class="ninja_table_row_45 nt_row_id_45"> <td>2025</td><td>November</td><td><span style="display:none">00045</span><span style="white-space: nowrap;">2&ndash;5 Nov</span> 2025</td><td><b><a href="https://eage.eventsair.com/eageaapg-workshop-on-tectonostratigraphy-of-the-arabian-plate-structural-evolution-of-the-arabian-basins" target="_blank" rel="noopener">EAGE/AAPG Workshop on Tectonostratigraphy of the Arabian Plate: Structural Evolution of the Arabian Basins</a></b></td><td>Riyadh, Saudi Arabia</td><td>Workshop</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/eageaapg-workshop-on-tectonostratigraphy-of-the-arabian-plate-structural-evolution-of-the-arabian-basins/abstract-submission-guidelines" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td></td><td>geology eage arabian plate geology workshop geology abu dhabi arab arabia architecture bahrain basin carbonate connectivity coral core correlation data depositional depositional system dhruma diagenetic distribution dolomite early cretaceous estuary eustatic evaporite exploration facies formation geological hanifa heterogeneity intrashelf iran iraq isotope jilh jurassic kuwait levant makhul middle east model multi scale oman organic matter outcrop outcrop analogue palaeogeography petroleum system platform potential qatar regional framework reservoir reservoir quality riyadh saudi arabia scale sea level change sequence sequence stratigraphic framework sequence stratigraphy shelf source rock stratigraphic stratigraphy stromatoporoid strontium structural subsurface synopsis syria tectonic tethys triassic uae unconventional united arab emirates upper jurassic valanginian wadi well yemen zagros</td><td>Saudi Arabia</td><td>Middle East</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="46" class="ninja_table_row_46 nt_row_id_46"> <td>2025</td><td>November</td><td><span style="display:none">00046</span><span style="white-space: nowrap;">3&ndash;5 Nov</span> 2025</td><td><b>EAGE/AAPG Workshop on Tectonostratigraphy of the Arabian Plate: Structural Evolution of the Arabian Basins</b></td><td>Riyadh, Saudi Arabia</td><td>Workshop</td><td>EAGE</td><td></td><td></td><td></td><td>Saudi Arabia</td><td>Middle East</td><td>eage-true</td><td></td><td></td><td></td><td>joint-true</td> </tr> <tr data-row_id="47" class="ninja_table_row_47 nt_row_id_47"> <td>2025</td><td>November</td><td><span style="display:none">00047</span><span style="white-space: nowrap;">3&ndash;7 Nov</span> 2025</td><td><b><a href="https://eageget.org" target="_blank" rel="noopener">Sixth EAGE Global Energy Transition Conference & Exhibition (GET 2025)</a></b></td><td>Rotterdam, Netherlands</td><td>Conference & Exhibition</td><td>EAGE</td><td></td><td></td><td>energy transition energy transition</td><td>Netherlands</td><td>Europe</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="48" class="ninja_table_row_48 nt_row_id_48"> <td>2025</td><td>November</td><td><span style="display:none">00048</span><span style="white-space: nowrap;">5&ndash;7 Nov</span> 2025</td><td><b><a href="https://www.5th-ipgc.com/" target="_blank" rel="noopener">5th International Professional Geology Conference (IPGC) 2025</a></b></td><td>Zaragoza, Spain</td><td>Conference</td><td>Non-EAGE Event</td><td></td><td><div style="text-align:center"><a href="https://www.5th-ipgc.com/" class="btn btn-open" target="_blank" rel="noopener">Register Now</a></div></td><td></td><td>Spain</td><td>Europe</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="49" class="ninja_table_row_49 nt_row_id_49"> <td>2025</td><td>November</td><td><span style="display:none">00049</span><span style="white-space: nowrap;">10&ndash;12 Nov</span> 2025</td><td><b><a href="https://eage.eventsair.com/seventh-eage-rock-physics-workshop" target="_blank" rel="noopener">Seventh EAGE Rock Physics Workshop</a></b></td><td>Cape Town, South Africa</td><td>Workshop</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/seventh-eage-rock-physics-workshop/abstract-submission-guidelines" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td></td><td>reservoir characterization eage workshop on rock physics europe reservoir characterization abu dhabi alberta attribute avo avo feasibility basin canada carbonate case study clay clay content data digital rock physics distribution dolostones elastic elastic moduli elastic properties experimental rock physics formation geological hydrocarbon impedance integration interpreatation interpretation kachanov klinkenberg lehocki lithic log london machine learning mannville meniscus micropores mineralogy model modelling moduli north sea oklahoma parameter petro elastic petrophysic petrophysical pore porosity predict prediction production quantitative seismic interpretation qusaiba reservoir reservoir rock rock rock physics rock physics model rock physics modelling rock property sand sandstone scale seismic seismic data shale uncertainty unconventional velocity velocity dispersion vernik water saturation well wireline workflow</td><td>South Africa</td><td>Africa</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="50" class="ninja_table_row_50 nt_row_id_50"> <td>2025</td><td>November</td><td><span style="display:none">00050</span><span style="white-space: nowrap;">12&ndash;14 Nov</span> 2025</td><td><b><a href="https://eagenewenergies.org/#" target="_blank" rel="noopener">Third EAGE Workshop on Geothermal Energy</a></b></td><td>Guanacaste, Costa Rica</td><td>Workshop</td><td>EAGE</td><td></td><td></td><td>energy transition energy transition</td><td>Costa Rica</td><td>Latin America</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="51" class="ninja_table_row_51 nt_row_id_51"> <td>2025</td><td>November</td><td><span style="display:none">00051</span><span style="white-space: nowrap;">17&ndash;18 Nov</span> 2025</td><td><b>First EAGE Workshop on Surface Logging</b></td><td></td><td>Workshop</td><td>EAGE</td><td></td><td></td><td></td><td></td><td></td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="52" class="ninja_table_row_52 nt_row_id_52"> <td>2025</td><td>November</td><td><span style="display:none">00052</span><span style="white-space: nowrap;">24&ndash;26 Nov</span> 2025</td><td><b><a href="https://eage.eventsair.com/third-eage-seabed-seismic-today-workshop" target="_blank" rel="noopener">Third EAGE Seabed Seismic Today Workshop</a></b><br/><small><i>SEABED SEISMIC: EVOLUTION THROUGH INNOVATION</i></small></td><td>Manama, Bahrain</td><td>Workshop</td><td>EAGE</td><td><div style="text-align:center"><a href="https://eage.eventsair.com/third-eage-seabed-seismic-today-workshop/abstract-submission-guidelines" class="btn btn-open" target="_blank" rel="noopener">Call for Abstracts</a></div></td><td></td><td>geophysics eage workshop on seabed seismic middle east geophysics abu dhabi accuracy acquisition acquisition technology annihilation array autonomous cabled case study compressive sensing conventional data decimation deconvolution deep water dense density dither domain down deconvolution edvard elastic wavefield eldfisk enablers environment full wavefield fwi geometry grieg gulf of mexico hybrid interpretation inversion liverpool low frequency marine mdd migration model monitoring mtta multi component seismic multicomponent seismic multiple nodal noise north sea norwegian obc dataset obn obn data obn survey obs ocean bottom node offset offshore operation processing processing imaging receiver reflectivity rov seabed seabed seismic seabed seismic data seismic sensor shallow water shot simultaneous source acquisition sparse streamer survey time lapse velocity velocity model velocity model building wavefield well workflow wri</td><td>Bahrain</td><td>Middle East</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="53" class="ninja_table_row_53 nt_row_id_53"> <td>2025</td><td>December</td><td><span style="display:none">00053</span><span style="white-space: nowrap;">1&ndash;3 Dec</span> 2025</td><td><b><a href="https://eage.eventsair.com/east-med-2025/" target="_blank" rel="noopener">Fifth EAGE Eastern Mediterranean Workshop</a></b></td><td>Cairo, Egypt</td><td>Workshop</td><td>EAGE</td><td></td><td></td><td>exploration hot spots eage eastern mediterranean workshop exploration hot spots aphrodite basin carbonate case study clastic cretaceous crete cyprus data deep water deposit dhis distribution drilling eastern mediterranean egypt epirus eratosthenes evaporite exploration formation gavrovo geological geometry gravity greece hellenic hellenides herodotus hydrocarbon interpretation ionian israel katakolo kyparissiakos layer lebanon levant leviathan libya mediterranean mesozoic messinian miocene model modelling nile offshore onshore pantokrator parameter patraikos peloponnese petroleum system phase platform posidonia potential prinos region reservoir risk salt sand sediment seismic seismic data sequence shale source rock structural subsurface tamar tethyan triassic water well zakynthos zohr</td><td>Egypt</td><td>Africa</td><td>eage-true</td><td></td><td></td><td></td><td></td> </tr> </tbody><!--ninja_tobody_rendering_done--> <!--ninja_cached_data--> </table> <style type="text/css" id='ninja_table_custom_css_9207'> #footable_9207 { font-family: ; font-size: px; } #footable_9207 tbody tr td span.fooicon-plus:before { background-color: !important; } #footable_9207 tbody tr td span.fooicon-minus:before { background-color: !important; } #footable_9207 tbody tr:hover td span.fooicon-plus:before { background-color: !important; } #footable_9207 tbody tr:hover td span.fooicon-minus:before { background-color: !important; } #footable_9207 thead tr.footable-header th span::before { background-color: rgba(255, 255, 255, 1) !important; } #footable_9207, #footable_9207 table { background-color: !important; color: !important; border-color: !important; } #footable_9207 thead tr.footable-filtering th { background-color: rgba(247, 247, 247, 1) !important; color: rgba(102, 102, 102, 1) !important; } #footable_9207:not(.hide_all_borders) thead tr.footable-filtering th { border : 1px solid transparent !important; } #footable_9207 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) { background-color: rgba(102, 102, 102, 1) !important; color: rgba(247, 247, 247, 1) !important; } #footable_9207 tr.footable-header, #footable_9207 tr.footable-header th, .colored_table #footable_9207 table.ninja_table_pro.inverted.table.footable-details tbody tr th { background-color: rgba(0, 155, 124, 1) !important; color: rgba(255, 255, 255, 1) !important; } #footable_9207 tbody tr:hover { background-color: !important; color: !important; } #footable_9207 tbody tr:hover td { border-color: !important; } #footable_9207 tbody tr:nth-child(even) { background-color: rgba(255, 255, 255, 1) !important; color: rgba(102, 102, 102, 1) !important; } #footable_9207 tbody tr:nth-child(odd) { background-color: rgba(247, 247, 247, 1) !important; color: rgba(102, 102, 102, 1) !important; } #footable_9207 tbody tr:nth-child(even):hover { background-color: !important; } #footable_9207 tbody tr:nth-child(odd):hover { background-color: !important; } #footable_9207 tbody tr:nth-child(even) td span.fooicon-plus:before { background-color: rgba(102, 102, 102, 1) !important; } #footable_9207 tbody tr:nth-child(even) td span.fooicon-minus:before { background-color: rgba(102, 102, 102, 1) !important; } #footable_9207 tbody tr:nth-child(odd) td span.fooicon-plus:before { background-color: rgba(102, 102, 102, 1) !important; } #footable_9207 tbody tr:nth-child(odd) td span.fooicon-minus:before { background-color: rgba(102, 102, 102, 1) !important; } #footable_9207 tbody tr:nth-child(even) tr:hover td span.fooicon-plus:before { background-color: rgba(102, 102, 102, 1) !important; } #footable_9207 tbody tr:nth-child(even) tr:hover td span.fooicon-minus:before { background-color: rgba(102, 102, 102, 1) !important; } #footable_9207 tbody tr:nth-child(odd) tr:hover td span.fooicon-plus:before { background-color: rgba(102, 102, 102, 1) !important; } #footable_9207 tbody tr:nth-child(odd) tr:hover td span.fooicon-minus:before { background-color: rgba(102, 102, 102, 1) !important; } #footable_9207 tfoot .footable-paging { background-color: rgba(102, 102, 102, 1) !important; } #footable_9207 tfoot .footable-paging .footable-page.active a { background-color: rgba(0, 155, 124, 1) !important; } #footable_9207:not(.hide_all_borders) tfoot tr.footable-paging td { border-color: !important; } #footable_9207.ninja_stacked_table > tbody, #footable_9207.ninja_stacked_table { background: transparent !important; } #footable_9207.ninja_stacked_table .footable-details tbody { background-color: !important; color: !important; border-color: !important; } #footable_9207 .footable-details thead tr.footable-filtering th { background-color: rgba(247, 247, 247, 1) !important; color: rgba(102, 102, 102, 1) !important; } #footable_9207 .footable-details:not(.hide_all_borders) thead tr.footable-filtering th { border : 1px solid transparent !important; } #footable_9207 .footable-details .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) { background-color: rgba(102, 102, 102, 1) !important; color: rgba(247, 247, 247, 1) !important; } #footable_9207 .footable-details tr.footable-header, #footable_9207 .footable-details tr.footable-header th { background-color: rgba(0, 155, 124, 1) !important; color: rgba(255, 255, 255, 1) !important; } /* ------------------------- */ /* CALENDAR OF ONLINE EVENTS */ /* ------------------------- */ /* column text underlying fix */ .form-group.footable-filtering-search { width: 100%!important; background:#D0D1D3; border-radius: 10px; } .form-group.footable-filtering-search .input-group { width: 50%!important; padding-top: 10px!important; padding-bottom: 10px!important; } .form-group.ninja-custom-filter.form-group-ninja_filter_0.ninja_custom_select_checkbox { width: 58%!important; } /* space between radio/checkbox smaller */ .ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label, .ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label { margin:0; } @media all and (max-width: 750px) { .form-group.ninja-custom-filter.form-group-ninja_filter_0.ninja_custom_select_checkbox { width: 100%!important; } } .hiddenRow { padding: 0 !important; } th { width:100%; background-color:green; } /* body { font-size: 0.7em; } */ /* body { font-size: 1.6em; } */ #footable_parent_9207 label { font-weight: 400; margin: 0 0 .5rem; } table#footable_9207 a:link, table#footable_9207 a:visited, table#footable_9207 a:hover, table#footable_9207 a:active { color: #0C738D; } table#footable_9207 a:hover { text-decoration: underline; } /* STANDARD COLOR */ .btn-eage, .btn-eage:visited, .btn-open, .btn-open:visited, .btn-late, .btn-late:visited, .btn-closingsoon, .btn-closingsoon:visited { color: #fff!important; background-color: #00737b!important; border-color: #00737b!important; text-decoration: none!important; } .btn-eage:hover, .btn-eage:focus, .btn-eage:active, .btn-open:hover, .btn-open:focus, .btn-open:active, .btn-late:hover, .btn-late:focus, .btn-late:active, .btn-closingsoon:hover, .btn-closingsoon:focus, .btn-closingsoon:active { color: #fff!important; background-color: #005b62!important; border-color: #005b62!important; /*set the color you want here*/ text-decoration: none!important; } /* INACTIVE COLOR */ .btn-openingsoon, .btn-openingsoon:visited, .btn-notopen, .btn-notopen:visited { color: #fff!important; background-color: #8c8c8c!important; border-color: #8c8c8c!important; cursor:default; text-decoration: none!important; } .btn-openingsoon:hover, .btn-openingsoon:focus, .btn-openingsoon:active, .btn-notopen:hover, .btn-notopen:focus, .btn-notopen:active { color: #fff!important; background-color: #8c8c8c!important; border-color: #8c8c8c!important; /*set the color you want here*/ cursor:default; text-decoration: none!important; } /* SPECIFIC COLOR */ .btn-closed, .btn-closed:visited { color: #fff!important; background-color: #f4898b!important; border-color: #f4898b!important; text-decoration: none!important; } .btn-closed:hover, .btn-closed:focus, .btn-closed:active { color: #fff!important; background-color: #f4898b!important; border-color: #f4898b!important; /*set the color you want here*/ text-decoration: none!important; } #footable_9207 tbody tr:nth-child(odd) { background-color:rgba(247, 247, 247, 1)!important; color: rgba(102, 102, 102, 1)!important; } #footable_9207 tbody tr:nth-child(even) { background-color: rgba(255, 255, 255, 1)!important; color: rgba(102, 102, 102, 1)!important; } /* .footable-first-visible { text-align: right!important; } */ .width-5 { width:5%; } .width-10 { width:10%; } .width-15 { width:15%; } .width-20 { width:20%; } .width-25 { width:25%; } .width-30 { width:30%; } .width-35 { width:35%; } .width-40 { width:40%; } .width-45 { width:45%; } .width-50 { width:50%; } .width-55 { width:55%; } .width-60 { width:60%; } .width-65 { width:65%; } .width-70 { width:70%; } .width-75 { width:75%; } .width-80 { width:80%; } .width-85 { width:85%; } .width-90 { width:90%; } .width-95 { width:95%; } .width-100 { width:100%; } .ninja_custom_radio, .ninja_custom_select_checkbox { display: grid !important; grid-template-columns: 33% 33% 33%!important; } .ninja_custom_select_checkbox { width:50%!important; } .ninja_custom_select { width:20%!important; } .footable-filtering-search { width:20%!important; } #footable_9207 > thead > tr.footable-filtering > th > form > div.form-group.footable-filtering-search > div { padding-top:38px; } /* ------------- */ /* MEDIA QUERIES */ /* ------------- */ @media all and (max-width: 1650px) { /*.ninja_custom_select_checkbox { background:orange;}*/ .ninja_custom_radio, .ninja_custom_select_checkbox { grid-template-columns: 60% 60%!important; } /*.form-inline>.form-group { width:100%!important; }*/ .ninja_custom_select { float: left!important; } .footable-filtering-search { width: 30%!important;} } @media all and (max-width: 960px) { /* .ninja_custom_select_checkbox { background:red; } */ .ninja_custom_radio, .ninja_custom_select_checkbox { grid-template-columns: 50% 50%!important; } .form-inline>.form-group { width:75%!important; } .ninja_custom_select { float: left!important; } .footable-filtering-search { width: 30%!important;} } @media all and (max-width: 790px) { /* .ninja_custom_select_checkbox { background:green; } */ .ninja_custom_radio, .ninja_custom_select_checkbox { grid-template-columns: 50% 50%!important; } .form-inline>.form-group { /*width:70%!important;*/ width:100%!important; } .ninja_custom_select { float: left!important; } .footable-filtering-search {} .table.COE_TABLE td table tbody tr th { width:10%!important; } /* .footable-details.table > tbody > tr > td, .footable-details.table > tbody > tr > th, .footable-details.table > tfoot > tr > td, .footable-details.table > tfoot > tr > th, .footable-details.table > thead > tr > td, .footable-details.table > thead > tr > th, .footable.table > tbody > tr > td, .footable.table > tbody > tr > th, .footable.table > tfoot > tr > td, .footable.table > tfoot > tr > th, .footable.table > thead > tr > td, .footable.table > thead > tr > th { border:none!important; }*/ #footable_9207 .footable-details { border: 1px solid rgba(34,36,38,.15) !important;; } table td, table th { border:none!important; } } @media all and (max-width: 750px) { .ninja_custom_radio, .ninja_custom_select_checkbox { grid-template-columns: 55% 55%!important; } .form-inline>.form-group { /*width:55%!important;*/ } .ninja_custom_select { float: left!important; } .footable-filtering-search {} } /* @media all and (max-width: 645px) {} @media all and (max-width: 462px) { .ninja_custom_select_checkbox { background:purple; } }*/ /* ----------- */ /* END QUERIES */ /* ----------- */ </style> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> <div class="elementor-element elementor-element-718a51e e-con-full e-flex e-con e-child" data-id="718a51e" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-element elementor-element-d0fe1b7 e-con-full e-flex e-con e-child" data-id="d0fe1b7" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-element elementor-element-3625c0f elementor-position-left elementor-widget__width-inherit iconbox-iconleft elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="3625c0f" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <i aria-hidden="true" class="fas fa-share-alt"></i> </span> </div> <div class="elementor-icon-box-content"> <div class="elementor-icon-box-title"> <span > Stay connected sandbox </span> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-9838783 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="9838783" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-ce9306a" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-5d63df5" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-03f4c7d" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-x-twitter elementor-repeater-item-2284b44" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">X-twitter</span> <i class="fab fa-x-twitter"></i> </a> </span> </div> </div> </div> </div> <div class="elementor-element elementor-element-3b1ab32 e-con-full e-flex e-con e-child" data-id="3b1ab32" data-element_type="container"> <div class="elementor-element elementor-element-b142e42 elementor-widget elementor-widget-html" data-id="b142e42" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <!-- /20287594127/WP_EAGE_skyscraper --> <div id='div-gpt-ad-1721216353239-0' style='min-width: 310px; min-height: 360px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1721216353239-0'); }); </script> </div> </div> </div> </div> <div class="elementor-element elementor-element-2cf92f4 e-con-full e-flex e-con e-child" data-id="2cf92f4" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-element elementor-element-a96c8c6 elementor-position-left elementor-widget__width-inherit iconbox-iconleft elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="a96c8c6" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <i aria-hidden="true" class="fas fa-newspaper"></i> </span> </div> <div class="elementor-icon-box-content"> <div class="elementor-icon-box-title"> <span > Related news </span> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-e0c35d4 elementor-grid-1 elementor-posts--thumbnail-left related_news_widget elementor-grid-tablet-1 elementor-grid-mobile-1 elementor-widget elementor-widget-posts" data-id="e0c35d4" data-element_type="widget" data-settings="{&quot;classic_columns&quot;:&quot;1&quot;,&quot;classic_row_gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;classic_columns_tablet&quot;:&quot;1&quot;,&quot;classic_columns_mobile&quot;:&quot;1&quot;,&quot;classic_row_gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;classic_row_gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}" data-widget_type="posts.classic"> <div class="elementor-widget-container"> <div class="elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid"> <article class="elementor-post elementor-grid-item post-14128 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-events_news news_categories-highlight_news"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/get-your-abstracts-in-for-madrid-2022/" tabindex="-1" > <div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/11/Madrid.jpg?w=150&#038;h=150&#038;crop=1" title="Madrid" alt="" loading="lazy" /></div> </a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/get-your-abstracts-in-for-madrid-2022/" > Get your abstracts in for Madrid 2022 </a> </h3> <a class="elementor-post__read-more" href="https://eage.org/eage_news/get-your-abstracts-in-for-madrid-2022/" aria-label="Read more about Get your abstracts in for Madrid 2022" tabindex="-1" > Read More » </a> </div> </article> <article class="elementor-post elementor-grid-item post-5794 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry tag-homehighlight news_categories-events_news news_categories-homehighlight"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/optimising-project-turnaround/" tabindex="-1" > <div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/10/pgs02299.jpg?w=150&#038;h=150&#038;crop=1" title="pgs02299" alt="" loading="lazy" /></div> </a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/optimising-project-turnaround/" > New workshop to focus on optimising subsurface data delivery </a> </h3> <a class="elementor-post__read-more" href="https://eage.org/eage_news/optimising-project-turnaround/" aria-label="Read more about New workshop to focus on optimising subsurface data delivery" tabindex="-1" > Read More » </a> </div> </article> </div> </div> </div> <div class="elementor-element elementor-element-cb8a0e0 elementor-position-right elementor-widget__width-inherit iconbox-iconright elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="cb8a0e0" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <a href="https://eage.org/eage_news/eage-news-archive/" class="elementor-icon elementor-animation-" tabindex="-1"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 25 25" style="enable-background:new 0 0 25 25;" xml:space="preserve"><style type="text/css"> .st0{fill:#009B7B;} .st1{fill:#FFFFFF;}</style><g id="Layer_3"></g><g id="Layer_4"> <g> <g id="Path_1173"> <path class="st0" d="M12.5,24.01c6.36,0,11.51-5.15,11.51-11.51S18.86,0.99,12.5,0.99S0.99,6.14,0.99,12.5c0,0,0,0,0,0 C0.99,18.86,6.14,24.01,12.5,24.01"></path> <path class="st1" d="M12.5,24.39c-6.55,0-11.89-5.33-11.89-11.89c0-6.56,5.33-11.89,11.89-11.89c6.56,0,11.89,5.33,11.89,11.89 S19.06,24.39,12.5,24.39z M12.5,1.36c-6.14,0-11.14,5-11.14,11.14c0,6.14,5,11.14,11.14,11.14c6.14,0,11.14-5,11.14-11.14 C23.64,6.36,18.64,1.36,12.5,1.36z"></path> </g> <path id="Path_1175" class="st1" d="M10.61,18.46c-0.57,0.01-1.05-0.44-1.07-1.01c-0.01-0.31,0.12-0.6,0.35-0.81l4.23-4.1 L9.9,8.45c-0.43-0.41-0.44-1.1-0.03-1.53c0.41-0.43,1.1-0.44,1.53-0.03l5.79,5.66L11.4,18.2c-0.19,0.2-0.44,0.31-0.72,0.33"></path> </g></g></svg> </a> </div> <div class="elementor-icon-box-content"> <div class="elementor-icon-box-title"> <a href="https://eage.org/eage_news/eage-news-archive/" > Read more news </a> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div data-elementor-type="footer" data-elementor-id="174" class="elementor elementor-174 elementor-location-footer" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-8de936b footer_green_line elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="8de936b" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-fa94818" data-id="fa94818" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-81dfce2 elementor-widget__width-auto elementor-fixed elementor-hidden-phone elementor-view-default elementor-widget elementor-widget-icon" data-id="81dfce2" data-element_type="widget" id="backupthepage" data-settings="{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_opacity_effect&quot;:&quot;yes&quot;,&quot;motion_fx_opacity_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:&quot;21&quot;,&quot;end&quot;:&quot;42&quot;}},&quot;motion_fx_range&quot;:&quot;viewport&quot;,&quot;_position&quot;:&quot;fixed&quot;,&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;],&quot;_animation&quot;:&quot;none&quot;,&quot;motion_fx_opacity_direction&quot;:&quot;out-in&quot;,&quot;motion_fx_opacity_level&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]}}" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <a class="elementor-icon" href="#"> <i aria-hidden="true" class="far fa-arrow-alt-circle-up"></i> </a> </div> </div> </div> </div> </div> </div> </section> <footer class="elementor-section elementor-top-section elementor-element elementor-element-8bc4f38 elementor-section-height-min-height elementor-section-content-middle elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="8bc4f38" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-65982f09" data-id="65982f09" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f251e86 elementor-widget elementor-widget-image" data-id="f251e86" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/03/EAGE_logo_diap_bijschrift.svg?w=768" title="EAGE_logo_diap_bijschrift" alt="" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-66e431cc" data-id="66e431cc" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ca43308 elementor-widget elementor-widget-text-editor" data-id="ca43308" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <span class="footer_item"> <a href="https://eage.org/corporate-calendar/">Corporate Calendar</a></span><span class="footer_item"><a href="https://support.eage.org" target="_blank" rel="noopener">Support</a> </span> <span class="footer_item"><a href="https://eage.org/about_eage/eage-privacy-and-cookie-statement/">Privacy &amp; Cookie Statement</a></span> <span class="footer_item"><a href="https://eage.org/membership/membership-terms-and-conditions/">Membership Terms and Conditions </a></span><span class="footer_item"><a href="https://eage.org/about_eage/3957-2/">Health and safety policy</a></span> </div> </div> <div class="elementor-element elementor-element-551c95e9 e-grid-align-right e-grid-align-mobile-center elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="551c95e9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-animation-pop elementor-repeater-item-993ef04" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook-f</span> <i class="fab fa-facebook-f"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-animation-pop elementor-repeater-item-a1c64d4" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-animation-pop elementor-repeater-item-20757a3" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon- elementor-animation-pop elementor-repeater-item-a229ff5" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only"></span> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 1200 1227" style="enable-background:new 0 0 1200 1227;" xml:space="preserve"><path d="M714.16302,519.284L1160.89001,0h-105.85999L667.13702,450.88699L357.328,0H0l468.492,681.82098L0,1226.37h105.866 l409.62503-476.15198L842.672,1226.37H1200L714.13702,519.284H714.16302z M569.16498,687.828l-47.46796-67.89398L144.011,79.6944 h162.60399l304.797,435.9906L658.88,583.57898l396.19995,566.72107H892.47601L569.16498,687.854V687.828z"></path></svg> </a> </span> </div> </div> </div> </div> </div> </div> </footer> <footer class="elementor-section elementor-top-section elementor-element elementor-element-422826b elementor-section-height-min-height elementor-section-content-middle elementor-hidden-desktop elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="422826b" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-27a96d1" data-id="27a96d1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-34f85cc elementor-widget elementor-widget-text-editor" data-id="34f85cc" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <span class="footer_item"> &lt;!&#8211; <a href="https://eage.org/blog/membership/membership-terms-and-conditions/">Membership Terms and Conditions</a></span> <span class="footer_item"><a href="https://eage.org/about_eage/3957-2/">Health and safety policy</a> &#8211;&gt; </span> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-0784a8e" data-id="0784a8e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-576ff26 elementor-widget elementor-widget-image" data-id="576ff26" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/03/EAGE_logo_diap_bijschrift.svg?w=768" title="EAGE_logo_diap_bijschrift" alt="" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-965482f" data-id="965482f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7e03b63 e-grid-align-right e-grid-align-mobile-center elementor-grid-mobile-3 elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="7e03b63" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-animation-pop elementor-repeater-item-993ef04" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook-f</span> <i class="fab fa-facebook-f"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-animation-pop elementor-repeater-item-a1c64d4" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-animation-pop elementor-repeater-item-20757a3" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-animation-pop elementor-repeater-item-a229ff5" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </footer> </div> <script> window.RS_MODULES = window.RS_MODULES || {}; window.RS_MODULES.modules = window.RS_MODULES.modules || {}; window.RS_MODULES.waiting = window.RS_MODULES.waiting || []; window.RS_MODULES.defered = true; window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type = 'compiled'; </script> <div data-elementor-type="popup" data-elementor-id="15640" class="elementor elementor-15640 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeIn&quot;,&quot;classes&quot;:&quot;award-popup&quot;,&quot;open_selector&quot;:&quot;popup-arie-2021&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-2c210806 award-popup_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2c210806" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6246df59 award-popup_maincolumn " data-id="6246df59" data-element_type="column" data-settings="{&quot;animation&quot;:&quot;none&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-760f3ac0 elementor-section-content-middle animated-slow award-popup_inner_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="760f3ac0" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;none&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-123d3b58 award-popup_first_col" data-id="123d3b58" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3922dfe8 award-popup_year_title elementor-widget elementor-widget-heading" data-id="3922dfe8" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">2021</h3> </div> </div> <div class="elementor-element elementor-element-79e7a1f0 award-popup_bioname elementor-widget elementor-widget-heading" data-id="79e7a1f0" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Siddharth Misra</h2> </div> </div> <div class="elementor-element elementor-element-48cad6ca award-popup_spinning_coin elementor-widget elementor-widget-image" data-id="48cad6ca" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2021/01/Award-Spinning-coin-.gif?w=150" title="Award-Spinning-coin-" alt="" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3d27bea2 award-popup_second_col" data-id="3d27bea2" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-322bc7bc elementor-widget elementor-widget-text-editor" data-id="322bc7bc" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>Prof Dr Siddharth Misra’s research focuses on improving subsurface characterization and prospect evaluation for the exploration of hydrocarbons, minerals and water resources.</p><p>His major contribution is in the theory of electromagnetic responses of geological formations to various charge polarization phenomena. The theory has enabled him to introduce a multi-frequency electromagnetic log-inversion technique to remove dielectric effects for improved estimation of hydrocarbon pore volume.</p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="14898" class="elementor elementor-14898 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.5,&quot;sizes&quot;:[]},&quot;open_selector&quot;:&quot;.pop_media2&quot;,&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-fdd7028 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="fdd7028" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-8c48882" data-id="8c48882" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-b5b1fab" data-id="b5b1fab" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5dc7b23 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="5dc7b23" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-media-container"><ul id="menu-menu-media" class="menu"><li id="menu-item-2595" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2595"><a href="#">First Break</a> <ul class="sub-menu"> <li id="menu-item-2602" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2602"><a href="https://eage.org/media/about-firstbreak/">About First Break</a></li> </ul> </li> <li id="menu-item-2596" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2596"><a href="#">Earthdoc</a> <ul class="sub-menu"> <li id="menu-item-2605" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2605"><a href="https://eage.org/media/earthdoc/">EarthDoc</a></li> </ul> </li> <li id="menu-item-2597" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2597"><a href="#">Journals</a> <ul class="sub-menu"> <li id="menu-item-5534" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5534"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics">Near Surface Geophysics</a></li> <li id="menu-item-5535" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5535"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience">Petroleum Geoscience</a></li> <li id="menu-item-5536" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5536"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting">Geophysical Prospecting</a></li> <li id="menu-item-5537" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5537"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research">Basin Research</a></li> <li id="menu-item-17866" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17866"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy">Geoenergy</a></li> </ul> </li> <li id="menu-item-2598" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2598"><a href="#">Books</a> <ul class="sub-menu"> <li id="menu-item-2610" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2610"><a href="https://eage.org/media/online-bookshop/">Online Bookshop</a></li> <li id="menu-item-5527" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5527"><a href="https://eage.org/media/publishing-with-eage/">Publishing with EAGE</a></li> </ul> </li> <li id="menu-item-2599" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2599"><a href="#">Newsletters</a> <ul class="sub-menu"> <li id="menu-item-4051" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-4051"><a href="https://eage.org/media/newsletters_stay-connected/">Stay Connected</a></li> <li id="menu-item-5528" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5528"><a href="https://eage.org/media/digital-newsletters/">Digital Newsletters</a></li> <li id="menu-item-9740" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9740"><a href="https://eage.org/media/nsg-newsletters/">NSG Newsletters</a></li> </ul> </li> <li id="menu-item-2601" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2601"><a href="#">Media Partners</a> <ul class="sub-menu"> <li id="menu-item-2608" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2608"><a href="https://eage.org/media/media-partners/">Media Partners</a></li> <li id="menu-item-9659" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9659"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-b95cc03" data-id="b95cc03" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-82fac38 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="82fac38" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="4198" class="elementor elementor-4198 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInLeft&quot;,&quot;exit_animation&quot;:&quot;fadeInLeft&quot;,&quot;open_selector&quot;:&quot;.tablet_overlay_menu&quot;,&quot;classes&quot;:&quot;tablet_overlay&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-6d75e2e4 elementor-section-height-full elementor-section-items-top elementor-section-full_width tablet_overlay_popup elementor-section-height-default" data-id="6d75e2e4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c590aba" data-id="c590aba" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6b5d2638 elementor-nav-menu--dropdown-none elementor-nav-menu__align-start elementor-widget elementor-widget-nav-menu" data-id="6b5d2638" data-element_type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none"> <ul id="menu-1-6b5d2638" class="elementor-nav-menu sm-vertical"><li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1349"><a href="#" class="elementor-item elementor-item-anchor">About EAGE</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1328"><a href="#" class="elementor-sub-item elementor-item-anchor">General</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3501"><a href="https://eage.org/about_eage/mission-and-objectives/" class="elementor-sub-item">Mission and Objectives</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-9309"><a href="https://eage.org/about_eage/eage-history/" class="elementor-sub-item">History</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3498"><a href="https://eage.org/about_eage/agmm/" class="elementor-sub-item">AGMM</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3499"><a href="https://eage.org/about_eage/circles/" class="elementor-sub-item">Circles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25434"><a href="https://eage.org/about_eage/code-of-conduct/" class="elementor-sub-item">Code of Conduct</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1329"><a href="#" class="elementor-sub-item elementor-item-anchor">Organization</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-20411"><a href="https://eage.org/about_eage/ballot/" class="elementor-sub-item">Ballot</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3502"><a href="https://eage.org/about_eage/board-and-bod/" class="elementor-sub-item">Board and BoD</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3504"><a href="https://eage.org/about_eage/committees/" class="elementor-sub-item">Committees</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3505"><a href="https://eage.org/about_eage/constitution/" class="elementor-sub-item">Constitution</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3503"><a href="https://eage.org/about_eage/by-laws/" class="elementor-sub-item">By-Laws</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1330"><a href="#" class="elementor-sub-item elementor-item-anchor">Funds</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3508"><a href="https://eage.org/about_eage/student-fund/" class="elementor-sub-item">Student Fund</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3506"><a href="https://eage.org/about_eage/green-fund/" class="elementor-sub-item">Green Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1331"><a href="#" class="elementor-sub-item elementor-item-anchor">Cooperations</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3509"><a href="https://eage.org/about_eage/associated-societies/" class="elementor-sub-item">Associated Societies</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3511"><a href="https://eage.org/about_eage/joint-events/" class="elementor-sub-item">Joint Events</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1332"><a href="#" class="elementor-sub-item elementor-item-anchor">Global Offices</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8453"><a href="/about_eage/global-offices" class="elementor-sub-item">Europe Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8455"><a href="/about_eage/global-offices#middle-east_africa_office" class="elementor-sub-item elementor-item-anchor">Middle East / Africa Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8458"><a href="/about_eage/global-offices#asia-pacific_office" class="elementor-sub-item elementor-item-anchor">Asia Pacific Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8459"><a href="/about_eage/global-offices#latin-americas_office" class="elementor-sub-item elementor-item-anchor">Latin America Office</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1333"><a href="#" class="elementor-sub-item elementor-item-anchor">Careers</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3515"><a href="https://eage.org/about_eage/careers/" class="elementor-sub-item">Work with EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3513"><a href="https://eage.org/about_eage/careers-in-the-industry/" class="elementor-sub-item">Careers in the Industry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3514"><a href="https://eage.org/about_eage/volunteer/" class="elementor-sub-item">Volunteering Opportunities</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8492"><a href="#" class="elementor-sub-item elementor-item-anchor">Awards</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8494"><a href="https://eage.org/about_eage/nominations/" class="elementor-sub-item">Nominations</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8495"><a href="https://eage.org/about_eage/overview-awards/" class="elementor-sub-item">Overview Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8493"><a href="https://eage.org/about_eage/award-winners/" class="elementor-sub-item">Award Winners</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor menu-item-has-children menu-item-1350"><a href="#" class="elementor-item elementor-item-anchor">Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3518"><a href="#" class="elementor-sub-item elementor-item-anchor">About Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3516"><a href="https://eage.org/events/conferences/" class="elementor-sub-item">Conferences</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3517"><a href="https://eage.org/events/workshops/" class="elementor-sub-item">Workshops</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-20412"><a href="https://eage.org/events/eage-event-terms-conditions/" class="elementor-sub-item">EAGE Event Terms &amp; Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3519"><a href="#" class="elementor-sub-item elementor-item-anchor">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20413"><a href="https://eagedigital.org/" class="elementor-sub-item">EAGE Digital 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16612"><a target="_blank" href="https://eageannual.org/" class="elementor-sub-item">EAGE Annual 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8497"><a target="_blank" href="https://eagensg.org/" class="elementor-sub-item">EAGE Near Surface Geoscience 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21878"><a href="https://eageget.org/" class="elementor-sub-item">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-3520"><a href="#" class="elementor-sub-item elementor-item-anchor">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9429"><a href="https://eage.org/events/calendar-of-events/" class="elementor-sub-item">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events current-menu-item menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" aria-current="page" class="elementor-sub-item elementor-item-active">Calendar of Online Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9428"><a href="https://eage.org/events/calendar-of-past-events/" class="elementor-sub-item">Calendar of Past Events</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1351"><a href="#" class="elementor-item elementor-item-anchor">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3522"><a href="#" class="elementor-sub-item elementor-item-anchor">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12860"><a href="https://eage.org/membership/welcome/" class="elementor-sub-item">Welcome to EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3525"><a href="https://eage.org/membership/benefits/" class="elementor-sub-item">Benefits</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9123"><a href="https://eage.org/membership/membershiptypes/" class="elementor-sub-item">Types of Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3527"><a href="https://eage.org/membership/recognition-programme/" class="elementor-sub-item">Recognition Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-8498"><a href="https://eage.org/membership/membership-terms-and-conditions/" class="elementor-sub-item">Membership Terms and Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3523"><a href="#" class="elementor-sub-item elementor-item-anchor">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3526"><a href="https://eage.org/membership/hardship-programme/" class="elementor-sub-item">Hardship Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3528"><a href="https://eage.org/membership/travel-grant/" class="elementor-sub-item">Individual Support – PACE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3524"><a href="#" class="elementor-sub-item elementor-item-anchor">Join or Renew</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8499"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item">Join EAGE</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8500"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item">Renew your Membership</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1352"><a href="#" class="elementor-item elementor-item-anchor">Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3529"><a href="#" class="elementor-sub-item elementor-item-anchor">Local Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3539"><a href="https://eage.org/communities/eage-local-chapters/" class="elementor-sub-item">EAGE Local Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3544"><a href="https://eage.org/communities/find-your-local-chapter/" class="elementor-sub-item">Find your Local Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3546"><a href="https://eage.org/communities/local-chapter-prizes/" class="elementor-sub-item">Local Chapter Prizes</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3530"><a href="#" class="elementor-sub-item elementor-item-anchor">Special Interest Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3540"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/" class="elementor-sub-item">Women in Geoscience &amp; Engineering</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3541"><a href="https://eage.org/communities/young-professionals/" class="elementor-sub-item">Young Professionals</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3532"><a href="#" class="elementor-sub-item elementor-item-anchor">Technical Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3536"><a href="https://eage.org/communities/artificial-intelligence-community/" class="elementor-sub-item">Artificial Intelligence</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8502"><a href="https://eage.org/communities/basinpetroleumsystems/" class="elementor-sub-item">Basin &amp; Petroleum Systems Analysis</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3537"><a href="https://eage.org/communities/decabonization-and-energy-transition/" class="elementor-sub-item">Decarbonization and Energy Transition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9548"><a href="https://eage.org/communities/geochemistry/" class="elementor-sub-item">Geochemistry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20409"><a href="https://eage.org/communities/geohazards/" class="elementor-sub-item">Geohazards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8503"><a href="https://eage.org/communities/hydrogeophysics/" class="elementor-sub-item">Hydrogeophysics</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8504"><a href="https://eage.org/communities/critical-minerals/" class="elementor-sub-item">Critical Minerals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10328"><a href="https://eage.org/communities/seismic-acquisition/" class="elementor-sub-item">Seismic Acquisition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10329"><a href="https://eage.org/communities/seismic-interpretation/" class="elementor-sub-item">Seismic Interpretation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20410"><a href="https://eage.org/communities/uav/" class="elementor-sub-item">Uncrewed Aerial Vehicles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23793"><a href="https://eage.org/communities/ccs/" class="elementor-sub-item">CCS</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23790"><a href="https://eage.org/communities/geothermal-energy/" class="elementor-sub-item">Geothermal Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23791"><a href="https://eage.org/communities/wind-energy/" class="elementor-sub-item">Wind Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23792"><a href="https://eage.org/communities/hydrogen-and-energy-storage/" class="elementor-sub-item">Hydrogen and Energy Storage</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25655"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/" class="elementor-sub-item">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3534"><a href="#" class="elementor-sub-item elementor-item-anchor">EU Affairs</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3538"><a href="https://eage.org/communities/eu-affairs/" class="elementor-sub-item">About EU Affairs</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3535"><a href="#" class="elementor-sub-item elementor-item-anchor">Community Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3550"><a href="https://events.eage.org/" class="elementor-sub-item">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8505"><a href="https://eage.org/communities/mentoring-programme/" class="elementor-sub-item">Mentoring Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8506"><a href="https://eage.org/communities/pace-event-support/" class="elementor-sub-item">PACE Event Support</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19319"><a href="https://eage.org/communities/resources/" class="elementor-sub-item">Resources</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1353"><a href="#" class="elementor-item elementor-item-anchor">Students</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3551"><a href="#" class="elementor-sub-item elementor-item-anchor">Student Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3563"><a href="https://eage.org/students/about-student-chapter/" class="elementor-sub-item">About Student Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3564"><a href="https://eage.org/students/establish-your-student-chapter/" class="elementor-sub-item">Establish a Student Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8508"><a href="https://eage.org/students/your-student-chapter/" class="elementor-sub-item">Your Student Chapter</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3552"><a href="#" class="elementor-sub-item elementor-item-anchor">Online Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3573"><a href="https://eage.org/students/webinars/" class="elementor-sub-item">Student Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8509"><a href="https://eage.org/students/e-summits/" class="elementor-sub-item">Student E-Summits</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3553"><a href="#" class="elementor-sub-item elementor-item-anchor">GEO Quiz</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3560"><a href="https://eage.org/students/about-geo-quiz/" class="elementor-sub-item">About the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3566"><a href="https://eage.org/students/join-the-geoquiz/" class="elementor-sub-item">Join the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3565"><a href="https://eage.org/students/geo-quiz/" class="elementor-sub-item">Geo Quiz Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3554"><a href="#" class="elementor-sub-item elementor-item-anchor">Laurie Dake Challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3561"><a href="https://eage.org/students/about-laurie-dake-challenge/" class="elementor-sub-item">About the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3567"><a href="https://eage.org/students/join-the-laurie-dake-challenge/" class="elementor-sub-item">Join the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8507"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/" class="elementor-sub-item">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3555"><a href="#" class="elementor-sub-item elementor-item-anchor">Minus CO2 challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3562"><a href="https://eage.org/students/about-minus-co2-challenge/" class="elementor-sub-item">About Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3568"><a href="https://eage.org/students/minus-co2-challenge/" class="elementor-sub-item">Join the Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3569"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/" class="elementor-sub-item">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3556"><a href="#" class="elementor-sub-item elementor-item-anchor">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3570"><a href="https://eage.org/students/scholarship-support/" class="elementor-sub-item">Scholarships &amp; Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3574"><a href="https://eage.org/students/awards-support/" class="elementor-sub-item">EAGE Membership &amp; Grants</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-20414"><a href="https://eage.org/students/support-ukraine-professional-development-fund/" class="elementor-sub-item">Ukraine Professional Development Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3557"><a href="#" class="elementor-sub-item elementor-item-anchor">EAGE Student Fund</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3559"><a href="https://eage.org/students/about-eage-student-fund/" class="elementor-sub-item">About the EAGE Student Fund</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1354"><a href="#" class="elementor-item elementor-item-anchor">Education</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3575"><a href="#" class="elementor-sub-item elementor-item-anchor">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8511"><a href="https://eage.org/education/highlights/" class="elementor-sub-item">EAGE Education</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21602"><a href="https://eage.org/education/energy-transition-skills/" class="elementor-sub-item">Energy Transition Skills</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3576"><a href="#" class="elementor-sub-item elementor-item-anchor">Learning Geoscience</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8519"><a href="https://eage.org/education/learning-geoscience/" class="elementor-sub-item">About Learning Geoscience</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8510"><a href="https://eage.org/education/electures/" class="elementor-sub-item">E-Lectures</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8517"><a href="https://eage.org/education/webinars/" class="elementor-sub-item">Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8513"><a href="https://eage.org/education/how-to-videos/" class="elementor-sub-item">How-to Videos</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3579"><a href="#" class="elementor-sub-item elementor-item-anchor">Short Courses</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8512"><a href="https://eage.org/education/education-tours/" class="elementor-sub-item">Education Tours</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8515"><a href="https://eage.org/education/interactive-online-short-courses/" class="elementor-sub-item">Interactive Online Short Courses</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8514"><a href="https://eage.org/education/in-house-training/" class="elementor-sub-item">In-House Training</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8518"><a href="https://eage.org/education/classroom-training/" class="elementor-sub-item">Classroom Training</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3581"><a href="#" class="elementor-sub-item elementor-item-anchor">Eurgeol Title</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3584"><a href="https://eage.org/education/eurgeol-title/" class="elementor-sub-item">Accreditation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14709"><a href="#" class="elementor-sub-item elementor-item-anchor">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-14710"><a href="https://eage.org/education/education-calendar/" class="elementor-sub-item">Education Calendar</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8516"><a href="https://eage.org/education/short-course-catalogue/" class="elementor-sub-item">Short Course Catalogue</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1355"><a href="#" class="elementor-item elementor-item-anchor">Media</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3589"><a href="#" class="elementor-sub-item elementor-item-anchor">First Break</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3596"><a href="https://eage.org/media/about-firstbreak/" class="elementor-sub-item">About First Break</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3590"><a href="#" class="elementor-sub-item elementor-item-anchor">EarthDoc</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3599"><a href="https://eage.org/media/earthdoc/" class="elementor-sub-item">EarthDoc</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3591"><a href="#" class="elementor-sub-item elementor-item-anchor">Journals</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3588"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics" class="elementor-sub-item elementor-item-anchor">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3594"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience" class="elementor-sub-item elementor-item-anchor">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8522"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting" class="elementor-sub-item elementor-item-anchor">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8523"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research" class="elementor-sub-item elementor-item-anchor">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17867"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy" class="elementor-sub-item elementor-item-anchor">Geoenergy</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3592"><a href="#" class="elementor-sub-item elementor-item-anchor">Books</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3604"><a href="https://eage.org/media/online-bookshop/" class="elementor-sub-item">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3597"><a href="https://eage.org/media/publishing-with-eage/" class="elementor-sub-item">Publishing with EAGE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3593"><a href="#" class="elementor-sub-item elementor-item-anchor">Newsletters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8521"><a href="https://eage.org/media/newsletters_stay-connected/" class="elementor-sub-item">Stay Connected</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8520"><a href="https://eage.org/media/digital-newsletters/" class="elementor-sub-item">Digital Newsletters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9742"><a href="https://eage.org/media/nsg-newsletters/" class="elementor-sub-item">NSG Newsletters</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3595"><a href="#" class="elementor-sub-item elementor-item-anchor">Media Partners</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3602"><a href="https://eage.org/media/media-partners/" class="elementor-sub-item">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9661"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/" class="elementor-sub-item">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul> </li> </ul> </nav> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-6b5d2638" class="elementor-nav-menu sm-vertical"><li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1349"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">About EAGE</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1328"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">General</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3501"><a href="https://eage.org/about_eage/mission-and-objectives/" class="elementor-sub-item" tabindex="-1">Mission and Objectives</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-9309"><a href="https://eage.org/about_eage/eage-history/" class="elementor-sub-item" tabindex="-1">History</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3498"><a href="https://eage.org/about_eage/agmm/" class="elementor-sub-item" tabindex="-1">AGMM</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3499"><a href="https://eage.org/about_eage/circles/" class="elementor-sub-item" tabindex="-1">Circles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25434"><a href="https://eage.org/about_eage/code-of-conduct/" class="elementor-sub-item" tabindex="-1">Code of Conduct</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1329"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Organization</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-20411"><a href="https://eage.org/about_eage/ballot/" class="elementor-sub-item" tabindex="-1">Ballot</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3502"><a href="https://eage.org/about_eage/board-and-bod/" class="elementor-sub-item" tabindex="-1">Board and BoD</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3504"><a href="https://eage.org/about_eage/committees/" class="elementor-sub-item" tabindex="-1">Committees</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3505"><a href="https://eage.org/about_eage/constitution/" class="elementor-sub-item" tabindex="-1">Constitution</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3503"><a href="https://eage.org/about_eage/by-laws/" class="elementor-sub-item" tabindex="-1">By-Laws</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1330"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Funds</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3508"><a href="https://eage.org/about_eage/student-fund/" class="elementor-sub-item" tabindex="-1">Student Fund</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3506"><a href="https://eage.org/about_eage/green-fund/" class="elementor-sub-item" tabindex="-1">Green Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1331"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Cooperations</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3509"><a href="https://eage.org/about_eage/associated-societies/" class="elementor-sub-item" tabindex="-1">Associated Societies</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3511"><a href="https://eage.org/about_eage/joint-events/" class="elementor-sub-item" tabindex="-1">Joint Events</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1332"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Global Offices</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8453"><a href="/about_eage/global-offices" class="elementor-sub-item" tabindex="-1">Europe Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8455"><a href="/about_eage/global-offices#middle-east_africa_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Middle East / Africa Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8458"><a href="/about_eage/global-offices#asia-pacific_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Asia Pacific Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8459"><a href="/about_eage/global-offices#latin-americas_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Latin America Office</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1333"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Careers</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3515"><a href="https://eage.org/about_eage/careers/" class="elementor-sub-item" tabindex="-1">Work with EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3513"><a href="https://eage.org/about_eage/careers-in-the-industry/" class="elementor-sub-item" tabindex="-1">Careers in the Industry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3514"><a href="https://eage.org/about_eage/volunteer/" class="elementor-sub-item" tabindex="-1">Volunteering Opportunities</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8492"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Awards</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8494"><a href="https://eage.org/about_eage/nominations/" class="elementor-sub-item" tabindex="-1">Nominations</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8495"><a href="https://eage.org/about_eage/overview-awards/" class="elementor-sub-item" tabindex="-1">Overview Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8493"><a href="https://eage.org/about_eage/award-winners/" class="elementor-sub-item" tabindex="-1">Award Winners</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor menu-item-has-children menu-item-1350"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3518"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">About Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3516"><a href="https://eage.org/events/conferences/" class="elementor-sub-item" tabindex="-1">Conferences</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3517"><a href="https://eage.org/events/workshops/" class="elementor-sub-item" tabindex="-1">Workshops</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-20412"><a href="https://eage.org/events/eage-event-terms-conditions/" class="elementor-sub-item" tabindex="-1">EAGE Event Terms &amp; Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3519"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20413"><a href="https://eagedigital.org/" class="elementor-sub-item" tabindex="-1">EAGE Digital 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16612"><a target="_blank" href="https://eageannual.org/" class="elementor-sub-item" tabindex="-1">EAGE Annual 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8497"><a target="_blank" href="https://eagensg.org/" class="elementor-sub-item" tabindex="-1">EAGE Near Surface Geoscience 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21878"><a href="https://eageget.org/" class="elementor-sub-item" tabindex="-1">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-3520"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9429"><a href="https://eage.org/events/calendar-of-events/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events current-menu-item menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" aria-current="page" class="elementor-sub-item elementor-item-active" tabindex="-1">Calendar of Online Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9428"><a href="https://eage.org/events/calendar-of-past-events/" class="elementor-sub-item" tabindex="-1">Calendar of Past Events</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1351"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3522"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12860"><a href="https://eage.org/membership/welcome/" class="elementor-sub-item" tabindex="-1">Welcome to EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3525"><a href="https://eage.org/membership/benefits/" class="elementor-sub-item" tabindex="-1">Benefits</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9123"><a href="https://eage.org/membership/membershiptypes/" class="elementor-sub-item" tabindex="-1">Types of Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3527"><a href="https://eage.org/membership/recognition-programme/" class="elementor-sub-item" tabindex="-1">Recognition Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-8498"><a href="https://eage.org/membership/membership-terms-and-conditions/" class="elementor-sub-item" tabindex="-1">Membership Terms and Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3523"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3526"><a href="https://eage.org/membership/hardship-programme/" class="elementor-sub-item" tabindex="-1">Hardship Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3528"><a href="https://eage.org/membership/travel-grant/" class="elementor-sub-item" tabindex="-1">Individual Support – PACE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3524"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Join or Renew</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8499"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Join EAGE</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8500"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Renew your Membership</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1352"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3529"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Local Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3539"><a href="https://eage.org/communities/eage-local-chapters/" class="elementor-sub-item" tabindex="-1">EAGE Local Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3544"><a href="https://eage.org/communities/find-your-local-chapter/" class="elementor-sub-item" tabindex="-1">Find your Local Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3546"><a href="https://eage.org/communities/local-chapter-prizes/" class="elementor-sub-item" tabindex="-1">Local Chapter Prizes</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3530"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Special Interest Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3540"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/" class="elementor-sub-item" tabindex="-1">Women in Geoscience &amp; Engineering</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3541"><a href="https://eage.org/communities/young-professionals/" class="elementor-sub-item" tabindex="-1">Young Professionals</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3532"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Technical Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3536"><a href="https://eage.org/communities/artificial-intelligence-community/" class="elementor-sub-item" tabindex="-1">Artificial Intelligence</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8502"><a href="https://eage.org/communities/basinpetroleumsystems/" class="elementor-sub-item" tabindex="-1">Basin &amp; Petroleum Systems Analysis</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3537"><a href="https://eage.org/communities/decabonization-and-energy-transition/" class="elementor-sub-item" tabindex="-1">Decarbonization and Energy Transition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9548"><a href="https://eage.org/communities/geochemistry/" class="elementor-sub-item" tabindex="-1">Geochemistry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20409"><a href="https://eage.org/communities/geohazards/" class="elementor-sub-item" tabindex="-1">Geohazards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8503"><a href="https://eage.org/communities/hydrogeophysics/" class="elementor-sub-item" tabindex="-1">Hydrogeophysics</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8504"><a href="https://eage.org/communities/critical-minerals/" class="elementor-sub-item" tabindex="-1">Critical Minerals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10328"><a href="https://eage.org/communities/seismic-acquisition/" class="elementor-sub-item" tabindex="-1">Seismic Acquisition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10329"><a href="https://eage.org/communities/seismic-interpretation/" class="elementor-sub-item" tabindex="-1">Seismic Interpretation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20410"><a href="https://eage.org/communities/uav/" class="elementor-sub-item" tabindex="-1">Uncrewed Aerial Vehicles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23793"><a href="https://eage.org/communities/ccs/" class="elementor-sub-item" tabindex="-1">CCS</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23790"><a href="https://eage.org/communities/geothermal-energy/" class="elementor-sub-item" tabindex="-1">Geothermal Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23791"><a href="https://eage.org/communities/wind-energy/" class="elementor-sub-item" tabindex="-1">Wind Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23792"><a href="https://eage.org/communities/hydrogen-and-energy-storage/" class="elementor-sub-item" tabindex="-1">Hydrogen and Energy Storage</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25655"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/" class="elementor-sub-item" tabindex="-1">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3534"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EU Affairs</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3538"><a href="https://eage.org/communities/eu-affairs/" class="elementor-sub-item" tabindex="-1">About EU Affairs</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3535"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Community Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3550"><a href="https://events.eage.org/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8505"><a href="https://eage.org/communities/mentoring-programme/" class="elementor-sub-item" tabindex="-1">Mentoring Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8506"><a href="https://eage.org/communities/pace-event-support/" class="elementor-sub-item" tabindex="-1">PACE Event Support</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19319"><a href="https://eage.org/communities/resources/" class="elementor-sub-item" tabindex="-1">Resources</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1353"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Students</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3551"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Student Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3563"><a href="https://eage.org/students/about-student-chapter/" class="elementor-sub-item" tabindex="-1">About Student Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3564"><a href="https://eage.org/students/establish-your-student-chapter/" class="elementor-sub-item" tabindex="-1">Establish a Student Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8508"><a href="https://eage.org/students/your-student-chapter/" class="elementor-sub-item" tabindex="-1">Your Student Chapter</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3552"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Online Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3573"><a href="https://eage.org/students/webinars/" class="elementor-sub-item" tabindex="-1">Student Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8509"><a href="https://eage.org/students/e-summits/" class="elementor-sub-item" tabindex="-1">Student E-Summits</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3553"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">GEO Quiz</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3560"><a href="https://eage.org/students/about-geo-quiz/" class="elementor-sub-item" tabindex="-1">About the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3566"><a href="https://eage.org/students/join-the-geoquiz/" class="elementor-sub-item" tabindex="-1">Join the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3565"><a href="https://eage.org/students/geo-quiz/" class="elementor-sub-item" tabindex="-1">Geo Quiz Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3554"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Laurie Dake Challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3561"><a href="https://eage.org/students/about-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">About the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3567"><a href="https://eage.org/students/join-the-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">Join the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8507"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3555"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Minus CO2 challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3562"><a href="https://eage.org/students/about-minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">About Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3568"><a href="https://eage.org/students/minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">Join the Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3569"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3556"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3570"><a href="https://eage.org/students/scholarship-support/" class="elementor-sub-item" tabindex="-1">Scholarships &amp; Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3574"><a href="https://eage.org/students/awards-support/" class="elementor-sub-item" tabindex="-1">EAGE Membership &amp; Grants</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-20414"><a href="https://eage.org/students/support-ukraine-professional-development-fund/" class="elementor-sub-item" tabindex="-1">Ukraine Professional Development Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3557"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EAGE Student Fund</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3559"><a href="https://eage.org/students/about-eage-student-fund/" class="elementor-sub-item" tabindex="-1">About the EAGE Student Fund</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1354"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Education</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3575"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8511"><a href="https://eage.org/education/highlights/" class="elementor-sub-item" tabindex="-1">EAGE Education</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21602"><a href="https://eage.org/education/energy-transition-skills/" class="elementor-sub-item" tabindex="-1">Energy Transition Skills</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3576"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Learning Geoscience</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8519"><a href="https://eage.org/education/learning-geoscience/" class="elementor-sub-item" tabindex="-1">About Learning Geoscience</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8510"><a href="https://eage.org/education/electures/" class="elementor-sub-item" tabindex="-1">E-Lectures</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8517"><a href="https://eage.org/education/webinars/" class="elementor-sub-item" tabindex="-1">Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8513"><a href="https://eage.org/education/how-to-videos/" class="elementor-sub-item" tabindex="-1">How-to Videos</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3579"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Short Courses</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8512"><a href="https://eage.org/education/education-tours/" class="elementor-sub-item" tabindex="-1">Education Tours</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8515"><a href="https://eage.org/education/interactive-online-short-courses/" class="elementor-sub-item" tabindex="-1">Interactive Online Short Courses</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8514"><a href="https://eage.org/education/in-house-training/" class="elementor-sub-item" tabindex="-1">In-House Training</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8518"><a href="https://eage.org/education/classroom-training/" class="elementor-sub-item" tabindex="-1">Classroom Training</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3581"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Eurgeol Title</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3584"><a href="https://eage.org/education/eurgeol-title/" class="elementor-sub-item" tabindex="-1">Accreditation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14709"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-14710"><a href="https://eage.org/education/education-calendar/" class="elementor-sub-item" tabindex="-1">Education Calendar</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8516"><a href="https://eage.org/education/short-course-catalogue/" class="elementor-sub-item" tabindex="-1">Short Course Catalogue</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1355"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Media</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3589"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">First Break</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3596"><a href="https://eage.org/media/about-firstbreak/" class="elementor-sub-item" tabindex="-1">About First Break</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3590"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EarthDoc</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3599"><a href="https://eage.org/media/earthdoc/" class="elementor-sub-item" tabindex="-1">EarthDoc</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3591"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Journals</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3588"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3594"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8522"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8523"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17867"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geoenergy</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3592"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Books</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3604"><a href="https://eage.org/media/online-bookshop/" class="elementor-sub-item" tabindex="-1">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3597"><a href="https://eage.org/media/publishing-with-eage/" class="elementor-sub-item" tabindex="-1">Publishing with EAGE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3593"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Newsletters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8521"><a href="https://eage.org/media/newsletters_stay-connected/" class="elementor-sub-item" tabindex="-1">Stay Connected</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8520"><a href="https://eage.org/media/digital-newsletters/" class="elementor-sub-item" tabindex="-1">Digital Newsletters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9742"><a href="https://eage.org/media/nsg-newsletters/" class="elementor-sub-item" tabindex="-1">NSG Newsletters</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3595"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Media Partners</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3602"><a href="https://eage.org/media/media-partners/" class="elementor-sub-item" tabindex="-1">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9661"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/" class="elementor-sub-item" tabindex="-1">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul> </li> </ul> </nav> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-017d646" data-id="017d646" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-3613d17 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3613d17" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-921c94e" data-id="921c94e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-59b1439 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="59b1439" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-1577a46" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-7e3fc8d" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-32325cb" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-c950098" target="_blank"> <span class="elementor-screen-only">Instagram</span> <i class="fab fa-instagram"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-358e98a" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1653" class="elementor elementor-1653 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_media&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-5640d53f elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="5640d53f" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-6d5f1c71" data-id="6d5f1c71" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1d09e456" data-id="1d09e456" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7ee34a70 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="7ee34a70" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-media-container"><ul id="menu-menu-media-1" class="menu"><li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2595"><a href="#">First Break</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2602"><a href="https://eage.org/media/about-firstbreak/">About First Break</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2596"><a href="#">Earthdoc</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2605"><a href="https://eage.org/media/earthdoc/">EarthDoc</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2597"><a href="#">Journals</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5534"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5535"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5536"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5537"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17866"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy">Geoenergy</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2598"><a href="#">Books</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2610"><a href="https://eage.org/media/online-bookshop/">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5527"><a href="https://eage.org/media/publishing-with-eage/">Publishing with EAGE</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2599"><a href="#">Newsletters</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-4051"><a href="https://eage.org/media/newsletters_stay-connected/">Stay Connected</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5528"><a href="https://eage.org/media/digital-newsletters/">Digital Newsletters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9740"><a href="https://eage.org/media/nsg-newsletters/">NSG Newsletters</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2601"><a href="#">Media Partners</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2608"><a href="https://eage.org/media/media-partners/">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9659"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-24633947" data-id="24633947" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9614c8a elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="9614c8a" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1650" class="elementor elementor-1650 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_education&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-3141df06 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="3141df06" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-62ffc1ec" data-id="62ffc1ec" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-617cb706" data-id="617cb706" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-71692381 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="71692381" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-education-container"><ul id="menu-menu-education" class="menu"><li id="menu-item-1620" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1620"><a href="#">Highlights</a> <ul class="sub-menu"> <li id="menu-item-7940" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-7940"><a href="https://eage.org/education/highlights/">EAGE Education</a></li> <li id="menu-item-21601" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21601"><a href="https://eage.org/education/energy-transition-skills/">Energy Transition Skills</a></li> </ul> </li> <li id="menu-item-1621" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1621"><a href="#">Learning Geoscience</a> <ul class="sub-menu"> <li id="menu-item-3417" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3417"><a href="https://eage.org/education/learning-geoscience/">About Learning Geoscience</a></li> <li id="menu-item-3415" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3415"><a href="https://eage.org/education/electures/">E-Lectures</a></li> <li id="menu-item-3419" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3419"><a href="https://eage.org/education/webinars/">Webinars</a></li> <li id="menu-item-5524" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5524"><a href="https://eage.org/education/how-to-videos/">How-to Videos</a></li> </ul> </li> <li id="menu-item-3412" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3412"><a href="#">Short Courses</a> <ul class="sub-menu"> <li id="menu-item-5989" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5989"><a href="https://eage.org/education/education-tours/">Education Tours</a></li> <li id="menu-item-5525" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5525"><a href="https://eage.org/education/interactive-online-short-courses/">Interactive Online Short Courses</a></li> <li id="menu-item-5526" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5526"><a href="https://eage.org/education/in-house-training/">In-House Training</a></li> <li id="menu-item-6209" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-6209"><a href="https://eage.org/education/classroom-training/">Classroom Training</a></li> </ul> </li> <li id="menu-item-7944" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-7944"><a href="#">Eurgeol title</a> <ul class="sub-menu"> <li id="menu-item-3416" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3416"><a href="https://eage.org/education/eurgeol-title/">Accreditation</a></li> </ul> </li> <li id="menu-item-14706" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14706"><a href="#">Overview</a> <ul class="sub-menu"> <li id="menu-item-14708" class="menu-button menu-item menu-item-type-post_type menu-item-object-education menu-item-14708"><a href="https://eage.org/education/education-calendar/">Education Calendar</a></li> <li id="menu-item-6210" class="menu-button menu-item menu-item-type-post_type menu-item-object-education menu-item-6210"><a href="https://eage.org/education/short-course-catalogue/">Short Course Catalogue</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-55e52e7b" data-id="55e52e7b" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7e0500d0 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="7e0500d0" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1647" class="elementor elementor-1647 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_students&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-4a63d3e6 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="4a63d3e6" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-39fe2b25" data-id="39fe2b25" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-2a95800e" data-id="2a95800e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-103792c3 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="103792c3" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-students-container"><ul id="menu-menu-students" class="menu"><li id="menu-item-1617" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1617"><a href="#">Student Chapters</a> <ul class="sub-menu"> <li id="menu-item-2583" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2583"><a href="https://eage.org/students/about-student-chapter/">About Student Chapters</a></li> <li id="menu-item-2584" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2584"><a href="https://eage.org/students/establish-your-student-chapter/">Establish a Student Chapter</a></li> <li id="menu-item-5988" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-5988"><a href="https://eage.org/students/your-student-chapter/">Your Student Chapter</a></li> </ul> </li> <li id="menu-item-1619" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1619"><a href="#">Online Activities</a> <ul class="sub-menu"> <li id="menu-item-2593" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2593"><a href="https://eage.org/students/webinars/">Student Webinars</a></li> <li id="menu-item-5523" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-5523"><a href="https://eage.org/students/e-summits/">Student E-Summits</a></li> </ul> </li> <li id="menu-item-1618" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1618"><a href="#">Geo Quiz</a> <ul class="sub-menu"> <li id="menu-item-2580" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2580"><a href="https://eage.org/students/about-geo-quiz/">About the Geo Quiz</a></li> <li id="menu-item-2586" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2586"><a href="https://eage.org/students/join-the-geoquiz/">Join the Geo Quiz</a></li> <li id="menu-item-2585" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2585"><a href="https://eage.org/students/geo-quiz/">Geo Quiz Hall of Fame</a></li> </ul> </li> <li id="menu-item-2575" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2575"><a href="#">Laurie Dake Challenge</a> <ul class="sub-menu"> <li id="menu-item-2581" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2581"><a href="https://eage.org/students/about-laurie-dake-challenge/">About the Laurie Dake Challenge</a></li> <li id="menu-item-2587" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2587"><a href="https://eage.org/students/join-the-laurie-dake-challenge/">Join the Laurie Dake Challenge</a></li> <li id="menu-item-6203" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-6203"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li id="menu-item-2576" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2576"><a href="#">Minus co2 Challenge</a> <ul class="sub-menu"> <li id="menu-item-2582" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2582"><a href="https://eage.org/students/about-minus-co2-challenge/">About Minus CO2 Challenge</a></li> <li id="menu-item-2588" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2588"><a href="https://eage.org/students/minus-co2-challenge/">Join the Minus CO2 Challenge</a></li> <li id="menu-item-2589" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2589"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li id="menu-item-2577" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2577"><a href="#">Support</a> <ul class="sub-menu"> <li id="menu-item-2590" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2590"><a href="https://eage.org/students/scholarship-support/">Scholarships &amp; Awards</a></li> <li id="menu-item-2594" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2594"><a href="https://eage.org/students/awards-support/">EAGE Membership &amp; Grants</a></li> <li id="menu-item-16377" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-16377"><a href="https://eage.org/students/support-ukraine-professional-development-fund/">Ukraine Professional Development Fund</a></li> </ul> </li> <li id="menu-item-2578" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2578"><a href="#">EAGE Student Fund</a> <ul class="sub-menu"> <li id="menu-item-2579" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2579"><a href="https://eage.org/students/about-eage-student-fund/">About the EAGE Student Fund</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1d9764b6" data-id="1d9764b6" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e7ceaed elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="e7ceaed" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1644" class="elementor elementor-1644 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_communities&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-5ac0563c elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="5ac0563c" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4101717a" data-id="4101717a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-14ea76b4 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="14ea76b4" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-communities-container"><ul id="menu-menu-communities" class="menu"><li id="menu-item-1601" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1601"><a href="#">Local Chapters</a> <ul class="sub-menu"> <li id="menu-item-2554" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2554"><a href="https://eage.org/communities/eage-local-chapters/">Local Chapters</a></li> <li id="menu-item-2555" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2555"><a href="https://eage.org/communities/find-your-local-chapter/">Find your Local Chapter</a></li> <li id="menu-item-2556" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2556"><a href="https://eage.org/communities/local-chapter-prizes/">Local Chapter Prizes</a></li> </ul> </li> <li id="menu-item-1602" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1602"><a href="#">Special Interest Communities</a> <ul class="sub-menu"> <li id="menu-item-2557" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2557"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/">Women in Geoscience &amp; Engineering</a></li> <li id="menu-item-2560" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2560"><a href="https://eage.org/communities/young-professionals/">Young Professionals</a></li> </ul> </li> <li id="menu-item-2562" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2562"><a href="#">Technical Communities</a> <ul class="sub-menu"> <li id="menu-item-2563" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2563"><a href="https://eage.org/communities/artificial-intelligence-community/">Artificial Intelligence</a></li> <li id="menu-item-7945" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-7945"><a href="https://eage.org/communities/basinpetroleumsystems/">Basin &amp; Petroleum Systems Analysis</a></li> <li id="menu-item-2566" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2566"><a href="https://eage.org/communities/decabonization-and-energy-transition/">Decarbonization and Energy Transition</a></li> <li id="menu-item-9545" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9545"><a href="https://eage.org/communities/geochemistry/">Geochemistry</a></li> <li id="menu-item-17136" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-17136"><a href="https://eage.org/communities/geohazards/">Geohazards</a></li> <li id="menu-item-4035" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-4035"><a href="https://eage.org/communities/hydrogeophysics/">Hydrogeophysics</a></li> <li id="menu-item-4036" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-4036"><a href="https://eage.org/communities/critical-minerals/">Critical Minerals</a></li> <li id="menu-item-10326" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10326"><a href="https://eage.org/communities/seismic-acquisition/">Seismic Acquisition</a></li> <li id="menu-item-10327" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10327"><a href="https://eage.org/communities/seismic-interpretation/">Seismic Interpretation</a></li> <li id="menu-item-16853" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-16853"><a href="https://eage.org/communities/uav/">Uncrewed Aerial Vehicles</a></li> <li id="menu-item-23789" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23789"><a href="https://eage.org/communities/ccs/">CCS</a></li> <li id="menu-item-23786" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23786"><a href="https://eage.org/communities/geothermal-energy/">Geothermal Energy</a></li> <li id="menu-item-23787" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23787"><a href="https://eage.org/communities/wind-energy/">Wind Energy</a></li> <li id="menu-item-23788" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23788"><a href="https://eage.org/communities/hydrogen-and-energy-storage/">Hydrogen and Energy Storage</a></li> <li id="menu-item-25654" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25654"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li id="menu-item-2570" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2570"><a href="#">EU Affairs</a> <ul class="sub-menu"> <li id="menu-item-2572" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2572"><a href="https://eage.org/communities/eu-affairs/">About EU Affairs</a></li> </ul> </li> <li id="menu-item-2573" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2573"><a href="#">Community Activities</a> <ul class="sub-menu"> <li id="menu-item-9782" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9782"><a href="https://eage.org/events/calendar-of-events/">Calendar of Events</a></li> <li id="menu-item-4058" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-4058"><a href="https://eage.org/communities/mentoring-programme/">Mentoring Programme</a></li> <li id="menu-item-6208" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-6208"><a href="https://eage.org/communities/pace-event-support/">PACE Event Support</a></li> <li id="menu-item-19318" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19318"><a href="https://eage.org/communities/resources/">Resources</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-587493b3" data-id="587493b3" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f7ab452 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="f7ab452" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1641" class="elementor elementor-1641 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_membership&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-52fc1a12 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="52fc1a12" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-4be13bf3" data-id="4be13bf3" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-7e797f79" data-id="7e797f79" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-336a75d elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="336a75d" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-membership-container"><ul id="menu-menu-membership" class="menu"><li id="menu-item-1591" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1591"><a href="#">Membership</a> <ul class="sub-menu"> <li id="menu-item-12859" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12859"><a href="https://eage.org/membership/welcome/">Welcome to EAGE</a></li> <li id="menu-item-2553" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2553"><a href="https://eage.org/membership/benefits/">Benefits</a></li> <li id="menu-item-9121" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9121"><a href="https://eage.org/membership/membershiptypes/">Types of Membership</a></li> <li id="menu-item-2552" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2552"><a href="https://eage.org/membership/recognition-programme/">Recognition Programme</a></li> <li id="menu-item-6197" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-6197"><a href="https://eage.org/membership/membership-terms-and-conditions/">Membership Terms and Conditions</a></li> </ul> </li> <li id="menu-item-1592" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1592"><a href="#">Support</a> <ul class="sub-menu"> <li id="menu-item-2551" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2551"><a href="https://eage.org/membership/hardship-programme/">Hardship Programme</a></li> <li id="menu-item-2550" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2550"><a href="https://eage.org/membership/travel-grant/">Individual Support – PACE</a></li> </ul> </li> <li id="menu-item-1593" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1593"><a href="#">Join or Renew</a> <ul class="sub-menu"> <li id="menu-item-4328" class="menu-button menu-item menu-item-type-custom menu-item-object-custom menu-item-4328"><a href="https://eage.eventsair.com/eage-membership-module/membership-application">Join EAGE</a></li> <li id="menu-item-4329" class="menu-button menu-item menu-item-type-custom menu-item-object-custom menu-item-4329"><a href="https://eage.eventsair.com/eage-membership-module/membership-application">Renew your Membership</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-271e2f07" data-id="271e2f07" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-01d6f3c elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="01d6f3c" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1588" class="elementor elementor-1588 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_events&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-b00dac6 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="b00dac6" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e9a80bb" data-id="e9a80bb" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-10d41b7c" data-id="10d41b7c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-267581f6 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="267581f6" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-events-container"><ul id="menu-menu-events" class="menu"><li id="menu-item-1583" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1583"><a href="#">About Events</a> <ul class="sub-menu"> <li id="menu-item-2547" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-2547"><a href="https://eage.org/events/conferences/">Conferences</a></li> <li id="menu-item-2548" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-2548"><a href="https://eage.org/events/workshops/">Workshops</a></li> <li id="menu-item-9798" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9798"><a href="https://eage.org/events/eage-event-terms-conditions/">EAGE Event Terms &amp; Conditions</a></li> </ul> </li> <li id="menu-item-1584" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1584"><a href="#">Highlights</a> <ul class="sub-menu"> <li id="menu-item-4006" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4006"><a target="_blank" href="https://eagedigital.org/">EAGE Digital 2024</a></li> <li id="menu-item-16494" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16494"><a target="_blank" href="https://eageannual.org/">EAGE Annual 2024</a></li> <li id="menu-item-19103" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-19103"><a target="_blank" href="https://eagensg.org/">EAGE Near Surface Geoscience 2024</a></li> <li id="menu-item-21877" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21877"><a target="_blank" href="https://eageget.org/">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li id="menu-item-1585" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-1585"><a href="#">Overview</a> <ul class="sub-menu"> <li id="menu-item-9426" class="menu-button menu-item menu-item-type-post_type menu-item-object-events menu-item-9426"><a href="https://eage.org/events/calendar-of-events/">Calendar of Events</a></li> <li id="menu-item-9424" class="menu-button menu-item menu-item-type-post_type menu-item-object-events current-menu-item menu-item-9424"><a href="https://eage.org/events/calendar-of-online-events/" aria-current="page">Calendar of Online Events</a></li> <li id="menu-item-9425" class="menu-button menu-item menu-item-type-post_type menu-item-object-events menu-item-9425"><a href="https://eage.org/events/calendar-of-past-events/">Calendar of Past Events</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-36d6f532" data-id="36d6f532" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ce9dfa9 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="ce9dfa9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1566" class="elementor elementor-1566 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_mobile&quot;,&quot;entrance_animation_mobile&quot;:&quot;none&quot;,&quot;exit_animation_mobile&quot;:&quot;none&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-27a275b4 elementor-section-full_width elementor-section-content-top mobile_menu_container_popup elementor-section-height-default elementor-section-height-default" data-id="27a275b4" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-dc0edff" data-id="dc0edff" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-77cd725 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="77cd725" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-33d9293" data-id="33d9293" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-00db6a8 elementor-widget elementor-widget-image" data-id="00db6a8" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/EAGE_logo_header.svg?w=800" title="EAGE_logo" alt="" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-d7ee7bc" data-id="d7ee7bc" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f04bbc4 elementor-widget elementor-widget-image" data-id="f04bbc4" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/Mobile_MenuIcon_closing.svg?w=150&#038;h=150&#038;crop=1" title="Mobile_MenuIcon_closing" alt="" loading="lazy" /> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-444c9ec elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="444c9ec" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-624d41a" data-id="624d41a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-afad4b1 mobile_top_menu elementor-widget elementor-widget-text-editor" data-id="afad4b1" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center;">           <a href="https://www.firstbreak.org/">First Break</a>           <a href="https://www.earthdoc.org/">EarthDoc</a></p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-d22a331 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="d22a331" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1220ef8" data-id="1220ef8" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <section class="elementor-section elementor-inner-section elementor-element elementor-element-df7c7e4 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="df7c7e4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-4315d2c" data-id="4315d2c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d0dba09 elementor-search-form--skin-classic elementor-search-form--button-type-icon elementor-search-form--icon-search elementor-widget elementor-widget-search-form" data-id="d0dba09" data-element_type="widget" data-settings="{&quot;skin&quot;:&quot;classic&quot;}" data-widget_type="search-form.default"> <div class="elementor-widget-container"> <search role="search"> <form class="elementor-search-form" action="https://eage.org" method="get"> <div class="elementor-search-form__container"> <label class="elementor-screen-only" for="elementor-search-form-d0dba09">Search</label> <input id="elementor-search-form-d0dba09" placeholder="Search..." class="elementor-search-form__input" type="search" name="s" value=""> <button class="elementor-search-form__submit" type="submit" aria-label="Search"> <i aria-hidden="true" class="fas fa-search"></i> <span class="elementor-screen-only">Search</span> </button> </div> </form> </search> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-3752fb4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3752fb4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-025f73c" data-id="025f73c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1a7ce65 elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="1a7ce65" data-element_type="widget" data-settings="{&quot;layout&quot;:&quot;dropdown&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-1a7ce65" class="elementor-nav-menu"><li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1349"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">About EAGE</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1328"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">General</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3501"><a href="https://eage.org/about_eage/mission-and-objectives/" class="elementor-sub-item" tabindex="-1">Mission and Objectives</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-9309"><a href="https://eage.org/about_eage/eage-history/" class="elementor-sub-item" tabindex="-1">History</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3498"><a href="https://eage.org/about_eage/agmm/" class="elementor-sub-item" tabindex="-1">AGMM</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3499"><a href="https://eage.org/about_eage/circles/" class="elementor-sub-item" tabindex="-1">Circles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25434"><a href="https://eage.org/about_eage/code-of-conduct/" class="elementor-sub-item" tabindex="-1">Code of Conduct</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1329"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Organization</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-20411"><a href="https://eage.org/about_eage/ballot/" class="elementor-sub-item" tabindex="-1">Ballot</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3502"><a href="https://eage.org/about_eage/board-and-bod/" class="elementor-sub-item" tabindex="-1">Board and BoD</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3504"><a href="https://eage.org/about_eage/committees/" class="elementor-sub-item" tabindex="-1">Committees</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3505"><a href="https://eage.org/about_eage/constitution/" class="elementor-sub-item" tabindex="-1">Constitution</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3503"><a href="https://eage.org/about_eage/by-laws/" class="elementor-sub-item" tabindex="-1">By-Laws</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1330"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Funds</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3508"><a href="https://eage.org/about_eage/student-fund/" class="elementor-sub-item" tabindex="-1">Student Fund</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3506"><a href="https://eage.org/about_eage/green-fund/" class="elementor-sub-item" tabindex="-1">Green Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1331"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Cooperations</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3509"><a href="https://eage.org/about_eage/associated-societies/" class="elementor-sub-item" tabindex="-1">Associated Societies</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3511"><a href="https://eage.org/about_eage/joint-events/" class="elementor-sub-item" tabindex="-1">Joint Events</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1332"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Global Offices</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8453"><a href="/about_eage/global-offices" class="elementor-sub-item" tabindex="-1">Europe Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8455"><a href="/about_eage/global-offices#middle-east_africa_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Middle East / Africa Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8458"><a href="/about_eage/global-offices#asia-pacific_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Asia Pacific Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8459"><a href="/about_eage/global-offices#latin-americas_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Latin America Office</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1333"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Careers</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3515"><a href="https://eage.org/about_eage/careers/" class="elementor-sub-item" tabindex="-1">Work with EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3513"><a href="https://eage.org/about_eage/careers-in-the-industry/" class="elementor-sub-item" tabindex="-1">Careers in the Industry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3514"><a href="https://eage.org/about_eage/volunteer/" class="elementor-sub-item" tabindex="-1">Volunteering Opportunities</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8492"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Awards</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8494"><a href="https://eage.org/about_eage/nominations/" class="elementor-sub-item" tabindex="-1">Nominations</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8495"><a href="https://eage.org/about_eage/overview-awards/" class="elementor-sub-item" tabindex="-1">Overview Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8493"><a href="https://eage.org/about_eage/award-winners/" class="elementor-sub-item" tabindex="-1">Award Winners</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor menu-item-has-children menu-item-1350"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3518"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">About Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3516"><a href="https://eage.org/events/conferences/" class="elementor-sub-item" tabindex="-1">Conferences</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3517"><a href="https://eage.org/events/workshops/" class="elementor-sub-item" tabindex="-1">Workshops</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-20412"><a href="https://eage.org/events/eage-event-terms-conditions/" class="elementor-sub-item" tabindex="-1">EAGE Event Terms &amp; Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3519"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20413"><a href="https://eagedigital.org/" class="elementor-sub-item" tabindex="-1">EAGE Digital 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16612"><a target="_blank" href="https://eageannual.org/" class="elementor-sub-item" tabindex="-1">EAGE Annual 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8497"><a target="_blank" href="https://eagensg.org/" class="elementor-sub-item" tabindex="-1">EAGE Near Surface Geoscience 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21878"><a href="https://eageget.org/" class="elementor-sub-item" tabindex="-1">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-3520"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9429"><a href="https://eage.org/events/calendar-of-events/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events current-menu-item menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" aria-current="page" class="elementor-sub-item elementor-item-active" tabindex="-1">Calendar of Online Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9428"><a href="https://eage.org/events/calendar-of-past-events/" class="elementor-sub-item" tabindex="-1">Calendar of Past Events</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1351"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3522"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12860"><a href="https://eage.org/membership/welcome/" class="elementor-sub-item" tabindex="-1">Welcome to EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3525"><a href="https://eage.org/membership/benefits/" class="elementor-sub-item" tabindex="-1">Benefits</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9123"><a href="https://eage.org/membership/membershiptypes/" class="elementor-sub-item" tabindex="-1">Types of Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3527"><a href="https://eage.org/membership/recognition-programme/" class="elementor-sub-item" tabindex="-1">Recognition Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-8498"><a href="https://eage.org/membership/membership-terms-and-conditions/" class="elementor-sub-item" tabindex="-1">Membership Terms and Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3523"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3526"><a href="https://eage.org/membership/hardship-programme/" class="elementor-sub-item" tabindex="-1">Hardship Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3528"><a href="https://eage.org/membership/travel-grant/" class="elementor-sub-item" tabindex="-1">Individual Support – PACE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3524"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Join or Renew</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8499"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Join EAGE</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8500"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Renew your Membership</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1352"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3529"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Local Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3539"><a href="https://eage.org/communities/eage-local-chapters/" class="elementor-sub-item" tabindex="-1">EAGE Local Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3544"><a href="https://eage.org/communities/find-your-local-chapter/" class="elementor-sub-item" tabindex="-1">Find your Local Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3546"><a href="https://eage.org/communities/local-chapter-prizes/" class="elementor-sub-item" tabindex="-1">Local Chapter Prizes</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3530"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Special Interest Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3540"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/" class="elementor-sub-item" tabindex="-1">Women in Geoscience &amp; Engineering</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3541"><a href="https://eage.org/communities/young-professionals/" class="elementor-sub-item" tabindex="-1">Young Professionals</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3532"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Technical Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3536"><a href="https://eage.org/communities/artificial-intelligence-community/" class="elementor-sub-item" tabindex="-1">Artificial Intelligence</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8502"><a href="https://eage.org/communities/basinpetroleumsystems/" class="elementor-sub-item" tabindex="-1">Basin &amp; Petroleum Systems Analysis</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3537"><a href="https://eage.org/communities/decabonization-and-energy-transition/" class="elementor-sub-item" tabindex="-1">Decarbonization and Energy Transition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9548"><a href="https://eage.org/communities/geochemistry/" class="elementor-sub-item" tabindex="-1">Geochemistry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20409"><a href="https://eage.org/communities/geohazards/" class="elementor-sub-item" tabindex="-1">Geohazards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8503"><a href="https://eage.org/communities/hydrogeophysics/" class="elementor-sub-item" tabindex="-1">Hydrogeophysics</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8504"><a href="https://eage.org/communities/critical-minerals/" class="elementor-sub-item" tabindex="-1">Critical Minerals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10328"><a href="https://eage.org/communities/seismic-acquisition/" class="elementor-sub-item" tabindex="-1">Seismic Acquisition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10329"><a href="https://eage.org/communities/seismic-interpretation/" class="elementor-sub-item" tabindex="-1">Seismic Interpretation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20410"><a href="https://eage.org/communities/uav/" class="elementor-sub-item" tabindex="-1">Uncrewed Aerial Vehicles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23793"><a href="https://eage.org/communities/ccs/" class="elementor-sub-item" tabindex="-1">CCS</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23790"><a href="https://eage.org/communities/geothermal-energy/" class="elementor-sub-item" tabindex="-1">Geothermal Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23791"><a href="https://eage.org/communities/wind-energy/" class="elementor-sub-item" tabindex="-1">Wind Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23792"><a href="https://eage.org/communities/hydrogen-and-energy-storage/" class="elementor-sub-item" tabindex="-1">Hydrogen and Energy Storage</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25655"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/" class="elementor-sub-item" tabindex="-1">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3534"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EU Affairs</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3538"><a href="https://eage.org/communities/eu-affairs/" class="elementor-sub-item" tabindex="-1">About EU Affairs</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3535"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Community Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3550"><a href="https://events.eage.org/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8505"><a href="https://eage.org/communities/mentoring-programme/" class="elementor-sub-item" tabindex="-1">Mentoring Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8506"><a href="https://eage.org/communities/pace-event-support/" class="elementor-sub-item" tabindex="-1">PACE Event Support</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19319"><a href="https://eage.org/communities/resources/" class="elementor-sub-item" tabindex="-1">Resources</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1353"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Students</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3551"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Student Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3563"><a href="https://eage.org/students/about-student-chapter/" class="elementor-sub-item" tabindex="-1">About Student Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3564"><a href="https://eage.org/students/establish-your-student-chapter/" class="elementor-sub-item" tabindex="-1">Establish a Student Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8508"><a href="https://eage.org/students/your-student-chapter/" class="elementor-sub-item" tabindex="-1">Your Student Chapter</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3552"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Online Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3573"><a href="https://eage.org/students/webinars/" class="elementor-sub-item" tabindex="-1">Student Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8509"><a href="https://eage.org/students/e-summits/" class="elementor-sub-item" tabindex="-1">Student E-Summits</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3553"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">GEO Quiz</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3560"><a href="https://eage.org/students/about-geo-quiz/" class="elementor-sub-item" tabindex="-1">About the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3566"><a href="https://eage.org/students/join-the-geoquiz/" class="elementor-sub-item" tabindex="-1">Join the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3565"><a href="https://eage.org/students/geo-quiz/" class="elementor-sub-item" tabindex="-1">Geo Quiz Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3554"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Laurie Dake Challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3561"><a href="https://eage.org/students/about-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">About the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3567"><a href="https://eage.org/students/join-the-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">Join the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8507"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3555"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Minus CO2 challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3562"><a href="https://eage.org/students/about-minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">About Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3568"><a href="https://eage.org/students/minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">Join the Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3569"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3556"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3570"><a href="https://eage.org/students/scholarship-support/" class="elementor-sub-item" tabindex="-1">Scholarships &amp; Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3574"><a href="https://eage.org/students/awards-support/" class="elementor-sub-item" tabindex="-1">EAGE Membership &amp; Grants</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-20414"><a href="https://eage.org/students/support-ukraine-professional-development-fund/" class="elementor-sub-item" tabindex="-1">Ukraine Professional Development Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3557"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EAGE Student Fund</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3559"><a href="https://eage.org/students/about-eage-student-fund/" class="elementor-sub-item" tabindex="-1">About the EAGE Student Fund</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1354"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Education</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3575"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8511"><a href="https://eage.org/education/highlights/" class="elementor-sub-item" tabindex="-1">EAGE Education</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21602"><a href="https://eage.org/education/energy-transition-skills/" class="elementor-sub-item" tabindex="-1">Energy Transition Skills</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3576"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Learning Geoscience</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8519"><a href="https://eage.org/education/learning-geoscience/" class="elementor-sub-item" tabindex="-1">About Learning Geoscience</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8510"><a href="https://eage.org/education/electures/" class="elementor-sub-item" tabindex="-1">E-Lectures</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8517"><a href="https://eage.org/education/webinars/" class="elementor-sub-item" tabindex="-1">Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8513"><a href="https://eage.org/education/how-to-videos/" class="elementor-sub-item" tabindex="-1">How-to Videos</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3579"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Short Courses</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8512"><a href="https://eage.org/education/education-tours/" class="elementor-sub-item" tabindex="-1">Education Tours</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8515"><a href="https://eage.org/education/interactive-online-short-courses/" class="elementor-sub-item" tabindex="-1">Interactive Online Short Courses</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8514"><a href="https://eage.org/education/in-house-training/" class="elementor-sub-item" tabindex="-1">In-House Training</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8518"><a href="https://eage.org/education/classroom-training/" class="elementor-sub-item" tabindex="-1">Classroom Training</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3581"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Eurgeol Title</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3584"><a href="https://eage.org/education/eurgeol-title/" class="elementor-sub-item" tabindex="-1">Accreditation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14709"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-14710"><a href="https://eage.org/education/education-calendar/" class="elementor-sub-item" tabindex="-1">Education Calendar</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8516"><a href="https://eage.org/education/short-course-catalogue/" class="elementor-sub-item" tabindex="-1">Short Course Catalogue</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1355"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Media</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3589"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">First Break</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3596"><a href="https://eage.org/media/about-firstbreak/" class="elementor-sub-item" tabindex="-1">About First Break</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3590"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EarthDoc</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3599"><a href="https://eage.org/media/earthdoc/" class="elementor-sub-item" tabindex="-1">EarthDoc</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3591"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Journals</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3588"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3594"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8522"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8523"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17867"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geoenergy</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3592"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Books</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3604"><a href="https://eage.org/media/online-bookshop/" class="elementor-sub-item" tabindex="-1">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3597"><a href="https://eage.org/media/publishing-with-eage/" class="elementor-sub-item" tabindex="-1">Publishing with EAGE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3593"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Newsletters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8521"><a href="https://eage.org/media/newsletters_stay-connected/" class="elementor-sub-item" tabindex="-1">Stay Connected</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8520"><a href="https://eage.org/media/digital-newsletters/" class="elementor-sub-item" tabindex="-1">Digital Newsletters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9742"><a href="https://eage.org/media/nsg-newsletters/" class="elementor-sub-item" tabindex="-1">NSG Newsletters</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3595"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Media Partners</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3602"><a href="https://eage.org/media/media-partners/" class="elementor-sub-item" tabindex="-1">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9661"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/" class="elementor-sub-item" tabindex="-1">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul> </li> </ul> </nav> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-3b3b8a4 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="3b3b8a4" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-a4b9c70" data-id="a4b9c70" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3cbbfb4 elementor-align-center elementor-widget elementor-widget-button" data-id="3cbbfb4" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="#"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fas fa-phone-alt"></i> </span> <span class="elementor-button-text">Call Us</span> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-50455d9 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="50455d9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-1577a46" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-358e98a" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-32325cb" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-7e3fc8d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1137" class="elementor elementor-1137 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_abouteage&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-54464432 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="54464432" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-a784336" data-id="a784336" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-5af8966f" data-id="5af8966f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-85623ab elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="85623ab" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-about-eage-container"><ul id="menu-menu-about-eage" class="menu"><li id="menu-item-1124" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1124"><a href="#">General</a> <ul class="sub-menu"> <li id="menu-item-2337" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2337"><a href="https://eage.org/about_eage/mission-and-objectives/">Mission and Objectives</a></li> <li id="menu-item-6973" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-6973"><a href="https://eage.org/about_eage/eage-history/">History</a></li> <li id="menu-item-2336" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2336"><a href="https://eage.org/about_eage/agmm/">AGMM</a></li> <li id="menu-item-2318" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2318"><a href="https://eage.org/about_eage/circles/">Circles</a></li> <li id="menu-item-25432" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25432"><a href="https://eage.org/about_eage/code-of-conduct/">Code of Conduct</a></li> </ul> </li> <li id="menu-item-1125" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1125"><a href="#">Organization</a> <ul class="sub-menu"> <li id="menu-item-19501" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-19501"><a href="https://eage.org/about_eage/ballot/">Ballot</a></li> <li id="menu-item-2339" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2339"><a href="https://eage.org/about_eage/board-and-bod/">Board and BoD</a></li> <li id="menu-item-2340" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2340"><a href="https://eage.org/about_eage/committees/">Committees</a></li> <li id="menu-item-2319" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2319"><a href="https://eage.org/about_eage/constitution/">Constitution</a></li> <li id="menu-item-2342" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2342"><a href="https://eage.org/about_eage/by-laws/">By-Laws</a></li> </ul> </li> <li id="menu-item-1126" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1126"><a href="#">Funds</a> <ul class="sub-menu"> <li id="menu-item-2322" class="hide_menu_item menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2322"><a href="https://eage.org/?post_type=about_eage&#038;p=2108">Structural Funds</a></li> <li id="menu-item-5224" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5224"><a href="https://eage.org/about_eage/funds">Student Fund</a></li> <li id="menu-item-4378" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4378"><a href="https://eage.org/about_eage/funds#green_fund">Green Fund</a></li> </ul> </li> <li id="menu-item-1150" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1150"><a href="#">Cooperations</a> <ul class="sub-menu"> <li id="menu-item-2324" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2324"><a href="https://eage.org/about_eage/associated-societies/">Associated Societies</a></li> <li id="menu-item-2325" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2325"><a href="https://eage.org/about_eage/joint-events/">Joint Events</a></li> <li id="menu-item-2323" class="hide_menu_item menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2323"><a href="https://eage.org/?post_type=about_eage&#038;p=2136">Corporate Partners</a></li> </ul> </li> <li id="menu-item-1151" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1151"><a href="#">Global Offices</a> <ul class="sub-menu"> <li id="menu-item-5576" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5576"><a href="/about_eage/global-offices">Europe Office</a></li> <li id="menu-item-5577" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5577"><a href="/about_eage/global-offices#middle-east_africa_office">Middle East / Africa Office</a></li> <li id="menu-item-5579" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5579"><a href="/about_eage/global-offices#asia-pacific_office">Asia Pacific Office</a></li> <li id="menu-item-5580" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5580"><a href="/about_eage/global-offices#latin-americas_office">Latin America Office</a></li> </ul> </li> <li id="menu-item-1152" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1152"><a href="#">Careers</a> <ul class="sub-menu"> <li id="menu-item-2329" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2329"><a href="https://eage.org/about_eage/careers/">Work with EAGE</a></li> <li id="menu-item-2328" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2328"><a href="https://eage.org/about_eage/careers-in-the-industry/">Careers in the Industry</a></li> <li id="menu-item-2327" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2327"><a href="https://eage.org/about_eage/volunteer/">Volunteering Opportunities</a></li> </ul> </li> <li id="menu-item-2331" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2331"><a href="#">Awards</a> <ul class="sub-menu"> <li id="menu-item-2334" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2334"><a href="https://eage.org/about_eage/nominations/">Nominations</a></li> <li id="menu-item-2333" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2333"><a href="https://eage.org/about_eage/overview-awards/">Overview Awards</a></li> <li id="menu-item-2332" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2332"><a href="https://eage.org/about_eage/award-winners/">Award Winners</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-7cb713e" data-id="7cb713e" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-8ce403f elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="8ce403f" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <script type='text/javascript'> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <script type="text/javascript"> window['ninja_table_instance_0'] = {"table_id":"9207","title":"Calendar of Online Events - Google Spreadsheet Connected","caption":"","columns":[{"name":"year","key":"year","title":"Year","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_0","ninja_clmn_nm_year"],"filterable":false,"sortable":true,"original":{"name":"Year","key":"year","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Year","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"month","key":"month","title":"Month","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_1","ninja_clmn_nm_month"],"filterable":false,"sortable":true,"original":{"name":"Month","key":"month","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Month","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"dates","key":"dates","title":"Dates","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_2","ninja_clmn_nm_dates","width-20"],"filterable":false,"sortable":false,"original":{"name":"Dates","key":"dates","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Dates","maxWidthUnit":"px","classes":"width-20","unfilterable":"yes","unsortable":"yes"}},{"name":"event","key":"event","title":"Event","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_3","ninja_clmn_nm_event","width-40"],"filterable":true,"sortable":false,"original":{"name":"Event","key":"event","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Event","maxWidthUnit":"px","classes":"width-40","unsortable":"yes"}},{"name":"location","key":"location","title":"Location","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_4","ninja_clmn_nm_location"],"filterable":true,"sortable":false,"original":{"name":"Location","key":"location","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Location","maxWidthUnit":"px","unsortable":"yes"}},{"name":"eventtype","key":"eventtype","title":"Event Type","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_5","ninja_clmn_nm_eventtype"],"filterable":false,"sortable":true,"original":{"name":"Event Type","key":"eventtype","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Event Type","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"organizer","key":"organizer","title":"Organizer","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_6","ninja_clmn_nm_organizer","width-15"],"filterable":false,"sortable":false,"original":{"name":"Organizer","key":"organizer","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Organizer","maxWidthUnit":"px","classes":"width-15","unsortable":"yes","unfilterable":"yes"}},{"name":"callforabstracts","key":"callforabstracts","title":"Call for Abstracts","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_7","ninja_clmn_nm_callforabstracts","width-10"],"filterable":false,"sortable":false,"original":{"name":"Call for Abstracts","key":"callforabstracts","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Call for Abstracts","maxWidthUnit":"px","classes":"width-10","unfilterable":"yes","unsortable":"yes"}},{"name":"registration","key":"registration","title":"Registration","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_8","ninja_clmn_nm_registration","width-5"],"filterable":false,"sortable":false,"original":{"name":"Registration","key":"registration","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Registration","maxWidthUnit":"px","unfilterable":"yes","unsortable":"yes","classes":"width-5"}},{"name":"topicarea","key":"topicarea","title":"Topic Area","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_9","ninja_clmn_nm_topicarea"],"filterable":true,"sortable":true,"original":{"name":"Topic Area","key":"topicarea","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Topic Area","maxWidthUnit":"px"}},{"name":"country","key":"country","title":"Country","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_10","ninja_clmn_nm_country"],"filterable":true,"sortable":true,"original":{"name":"Country","key":"country","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Country","maxWidthUnit":"px"}},{"name":"region","key":"region","title":"Region","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_11","ninja_clmn_nm_region"],"filterable":true,"sortable":true,"original":{"name":"Region","key":"region","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Region","maxWidthUnit":"px"}},{"name":"onlyeageevents","key":"onlyeageevents","title":"EAGE Events","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_12","ninja_clmn_nm_onlyeageevents"],"filterable":false,"sortable":true,"original":{"name":"EAGE Events","key":"onlyeageevents","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Only EAGE Events","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"onlyeducationevents","key":"onlyeducationevents","title":"Education Events","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_13","ninja_clmn_nm_onlyeducationevents"],"filterable":false,"sortable":true,"original":{"name":"Education Events","key":"onlyeducationevents","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Only Education Events","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"onlystudentevents","key":"onlystudentevents","title":"Student Events","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_14","ninja_clmn_nm_onlystudentevents"],"filterable":false,"sortable":true,"original":{"name":"Student Events","key":"onlystudentevents","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Only Student Events","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"onlyonlineevents","key":"onlyonlineevents","title":"Online Events","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_15","ninja_clmn_nm_onlyonlineevents"],"filterable":false,"sortable":true,"original":{"name":"Online Events","key":"onlyonlineevents","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Only Online Events","maxWidthUnit":"px","unsortable":"no","unfilterable":"yes"}},{"name":"jointevent","key":"jointevent","title":"Joint Event","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_16","ninja_clmn_nm_jointevent"],"filterable":false,"sortable":false,"original":{"name":"Joint Event","key":"jointevent","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Joint Event","maxWidthUnit":"px","unfilterable":"yes","unsortable":"yes"}}],"original_columns":[{"name":"Year","key":"year","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Year","maxWidthUnit":"px","unfilterable":"yes"},{"name":"Month","key":"month","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Month","maxWidthUnit":"px","unfilterable":"yes"},{"name":"Dates","key":"dates","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Dates","maxWidthUnit":"px","classes":"width-20","unfilterable":"yes","unsortable":"yes"},{"name":"Event","key":"event","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Event","maxWidthUnit":"px","classes":"width-40","unsortable":"yes"},{"name":"Location","key":"location","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Location","maxWidthUnit":"px","unsortable":"yes"},{"name":"Event Type","key":"eventtype","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Event Type","maxWidthUnit":"px","unfilterable":"yes"},{"name":"Organizer","key":"organizer","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Organizer","maxWidthUnit":"px","classes":"width-15","unsortable":"yes","unfilterable":"yes"},{"name":"Call for Abstracts","key":"callforabstracts","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Call for Abstracts","maxWidthUnit":"px","classes":"width-10","unfilterable":"yes","unsortable":"yes"},{"name":"Registration","key":"registration","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Registration","maxWidthUnit":"px","unfilterable":"yes","unsortable":"yes","classes":"width-5"},{"name":"Topic Area","key":"topicarea","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Topic Area","maxWidthUnit":"px"},{"name":"Country","key":"country","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Country","maxWidthUnit":"px"},{"name":"Region","key":"region","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Region","maxWidthUnit":"px"},{"name":"EAGE Events","key":"onlyeageevents","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Only EAGE Events","maxWidthUnit":"px","unfilterable":"yes"},{"name":"Education Events","key":"onlyeducationevents","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Only Education Events","maxWidthUnit":"px","unfilterable":"yes"},{"name":"Student Events","key":"onlystudentevents","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Only Student Events","maxWidthUnit":"px","unfilterable":"yes"},{"name":"Online Events","key":"onlyonlineevents","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Only Online Events","maxWidthUnit":"px","unsortable":"no","unfilterable":"yes"},{"name":"Joint Event","key":"jointevent","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Joint Event","maxWidthUnit":"px","unfilterable":"yes","unsortable":"yes"}],"settings":{"filtering":"1","togglePosition":"first","paging":false,"pager":false,"page_sizes":["10","20","50","100"],"sorting":true,"default_sorting":"old_first","defualt_filter":false,"defualt_filter_column":null,"expandFirst":false,"expandAll":false,"i18n":{"search_in":"Search in","search":"Search","no_result_text":"No Result Found"},"shouldNotCache":false,"skip_rows":0,"limit_rows":0,"use_parent_width":false,"info":"","enable_html_cache":"yes","html_caching_minutes":"30","extra_css_class":"inverted","stack_config":{"stackable":true,"stacks_devices":["xs"]},"disable_sticky_on_mobile":null,"has_formula":"no","filter_selects":[]},"render_type":"legacy_table","custom_css":{"ninja_column_0":[],"ninja_column_1":[],"ninja_column_2":[],"ninja_column_3":[],"ninja_column_4":[],"ninja_column_5":[],"ninja_column_6":[],"ninja_column_7":[],"ninja_column_8":[],"ninja_column_9":[],"ninja_column_10":[],"ninja_column_11":[],"ninja_column_12":[],"ninja_column_13":[],"ninja_column_14":[],"ninja_column_15":[],"ninja_column_16":[]},"instance_name":"ninja_table_instance_0","table_version":"5.0.14","provider":"google-csv","uniqueID":"ninja_table_unique_id_795594100_9207","custom_filter_key":"ninja_table_instance_0_custom_filter","init_config":{"toggleColumn":"first","cascade":true,"useParentWidth":false,"columns":[{"name":"year","key":"year","title":"Year","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_0","ninja_clmn_nm_year"],"filterable":false,"sortable":true,"original":{"name":"Year","key":"year","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Year","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"month","key":"month","title":"Month","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_1","ninja_clmn_nm_month"],"filterable":false,"sortable":true,"original":{"name":"Month","key":"month","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Month","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"dates","key":"dates","title":"Dates","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_2","ninja_clmn_nm_dates","width-20"],"filterable":false,"sortable":false,"original":{"name":"Dates","key":"dates","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Dates","maxWidthUnit":"px","classes":"width-20","unfilterable":"yes","unsortable":"yes"}},{"name":"event","key":"event","title":"Event","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_3","ninja_clmn_nm_event","width-40"],"filterable":true,"sortable":false,"original":{"name":"Event","key":"event","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Event","maxWidthUnit":"px","classes":"width-40","unsortable":"yes"}},{"name":"location","key":"location","title":"Location","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_4","ninja_clmn_nm_location"],"filterable":true,"sortable":false,"original":{"name":"Location","key":"location","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Location","maxWidthUnit":"px","unsortable":"yes"}},{"name":"eventtype","key":"eventtype","title":"Event Type","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_5","ninja_clmn_nm_eventtype"],"filterable":false,"sortable":true,"original":{"name":"Event Type","key":"eventtype","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Event Type","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"organizer","key":"organizer","title":"Organizer","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_6","ninja_clmn_nm_organizer","width-15"],"filterable":false,"sortable":false,"original":{"name":"Organizer","key":"organizer","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Organizer","maxWidthUnit":"px","classes":"width-15","unsortable":"yes","unfilterable":"yes"}},{"name":"callforabstracts","key":"callforabstracts","title":"Call for Abstracts","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_7","ninja_clmn_nm_callforabstracts","width-10"],"filterable":false,"sortable":false,"original":{"name":"Call for Abstracts","key":"callforabstracts","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Call for Abstracts","maxWidthUnit":"px","classes":"width-10","unfilterable":"yes","unsortable":"yes"}},{"name":"registration","key":"registration","title":"Registration","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_8","ninja_clmn_nm_registration","width-5"],"filterable":false,"sortable":false,"original":{"name":"Registration","key":"registration","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Registration","maxWidthUnit":"px","unfilterable":"yes","unsortable":"yes","classes":"width-5"}},{"name":"topicarea","key":"topicarea","title":"Topic Area","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_9","ninja_clmn_nm_topicarea"],"filterable":true,"sortable":true,"original":{"name":"Topic Area","key":"topicarea","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Topic Area","maxWidthUnit":"px"}},{"name":"country","key":"country","title":"Country","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_10","ninja_clmn_nm_country"],"filterable":true,"sortable":true,"original":{"name":"Country","key":"country","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Country","maxWidthUnit":"px"}},{"name":"region","key":"region","title":"Region","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_11","ninja_clmn_nm_region"],"filterable":true,"sortable":true,"original":{"name":"Region","key":"region","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Region","maxWidthUnit":"px"}},{"name":"onlyeageevents","key":"onlyeageevents","title":"EAGE Events","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_12","ninja_clmn_nm_onlyeageevents"],"filterable":false,"sortable":true,"original":{"name":"EAGE Events","key":"onlyeageevents","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Only EAGE Events","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"onlyeducationevents","key":"onlyeducationevents","title":"Education Events","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_13","ninja_clmn_nm_onlyeducationevents"],"filterable":false,"sortable":true,"original":{"name":"Education Events","key":"onlyeducationevents","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Only Education Events","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"onlystudentevents","key":"onlystudentevents","title":"Student Events","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_14","ninja_clmn_nm_onlystudentevents"],"filterable":false,"sortable":true,"original":{"name":"Student Events","key":"onlystudentevents","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Only Student Events","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"onlyonlineevents","key":"onlyonlineevents","title":"Online Events","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_15","ninja_clmn_nm_onlyonlineevents"],"filterable":false,"sortable":true,"original":{"name":"Online Events","key":"onlyonlineevents","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Only Online Events","maxWidthUnit":"px","unsortable":"no","unfilterable":"yes"}},{"name":"jointevent","key":"jointevent","title":"Joint Event","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_16","ninja_clmn_nm_jointevent"],"filterable":false,"sortable":false,"original":{"name":"Joint Event","key":"jointevent","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Joint Event","maxWidthUnit":"px","unfilterable":"yes","unsortable":"yes"}}],"expandFirst":false,"expandAll":false,"empty":"No Result Found","sorting":{"enabled":true},"filtering":{"enabled":true,"delay":1,"dropdownTitle":"Search in","placeholder":"Search","connectors":false,"ignoreCase":true},"paging":{"enabled":false,"position":"right","size":false,"container":"#footable_parent_9207 .paging-ui-container","countFormat":""}}} </script> <link rel='stylesheet' id='elementor-post-3293-css' href='https://eage.org/wp-content/uploads/elementor/css/post-3293.css?ver=1731931368' media='all' /> <link rel='stylesheet' id='all-css-2' href='https://eage.org/wp-content/plugins/ninja-tables/assets/css/ninjatables-public.css?m=1712303166g' type='text/css' media='all' /> <style id='core-block-supports-inline-css'> /** * Core styles: block-supports */ </style> <link rel='stylesheet' id='all-css-6' href='https://eage.org/wp-content/plugins/revslider/public/assets/css/rs6.css?m=1712303167g' type='text/css' media='all' /> <style id='rs-plugin-settings-inline-css'> #rs-demo-id {} </style> <script type="text/javascript" src="https://eage.org/_static/??-eJyVyzEOwjAMQNEL0bqkUpkQZ2kTCxwSO8QxqLenYmIAJOb/PjxK54UbcoOS7EysUPGuiQJWKLYk8jCrYlOIW1qaSNI+E/dRd/DnrdP7SeyTBXyleDOsKxiBl4q/RUa2TyKQNgiSu4pzWL+Ki8hVt3rKx/1hdG6YBjfGJweZYXg=" ></script><script type="text/javascript" src="https://eage.org/wp-includes/js/dist/i18n.js?ver=2aff907006e2aa00e26e" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-includes/js/dist/a11y.js?ver=55ca8e5ef2be0319312c" id="wp-a11y-js"></script> <script type="text/javascript" id="_ning_global-js-extra"> /* <![CDATA[ */ var _adn_ = {"ajaxurl":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","upload":{"dir":"vip:\/\/wp-content\/uploads\/angwp\/","src":"https:\/\/eage.org\/wp-content\/uploads\/angwp\/"}}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJytjUsOwjAMBS9E69JKsELcgi1KE4Mc5WPiRC23JyVsERskL6z3xmNYuKOgXTEoYOs8CqYnFAJVctTRs8OMvZUdVFLHkDFkYFfuFARUuC8MSgSzgCHJLennEoz7cfX5CrjWUijWQjhddXTFb1CT2pZSuBAuHFP+k5RVUs6ptfcUviq5a2snOhFnjHBLb8ZsillUr1WKRdBVxdmf9sdpHIfDME72BUiLgqc=" ></script><script type="text/javascript" src="https://eage.org/wp-includes/js/jquery/ui/datepicker.js?ver=1.13.3" id="jquery-ui-datepicker-js"></script> <script type="text/javascript" id="jquery-ui-datepicker-js-after"> /* <![CDATA[ */ jQuery(function(jQuery){jQuery.datepicker.setDefaults({"closeText":"Close","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Previous","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM d, yy","firstDay":1,"isRTL":false});}); /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.js,/wp-includes/js/imagesloaded.min.js?m=1732206023j" ></script><script type="text/javascript" src="https://stats.wp.com/e-202448.js" id="jetpack-stats-js" data-wp-strategy="defer"></script> <script type="text/javascript" id="jetpack-stats-js-after"> /* <![CDATA[ */ _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"172520282\",\"post\":\"9229\",\"tz\":\"0\",\"srv\":\"eage.org\",\"hp\":\"vip\",\"j\":\"1:13.9.1\"}") ]); _stq.push([ "clickTrackerInit", "172520282", "9229" ]); /* ]]> */ </script> <script type="text/javascript" id="ivory-search-scripts-js-extra"> /* <![CDATA[ */ var IvorySearchVars = {"is_analytics_enabled":"1"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-content/plugins/add-search-to-menu/public/js/ivory-search.min.js?m=1712303165g" ></script><script type="text/javascript" src="https://eage.org/wp-content/plugins/ninja-tables/assets/libs/footable/js/footable.min.js?ver=3.1.5" id="footable-js"></script> <script type="text/javascript" id="footable-js-after"> /* <![CDATA[ */ jQuery(document).ready(function ($) { var filters = {"ninja_filter_2":{"placeholder":"All","options":[{"label":"January","value":"January"},{"label":"February","value":"February"},{"label":"March","value":"March"},{"label":"April","value":"April"},{"label":"May","value":"May"},{"label":"June","value":"June"},{"label":"July","value":"July"},{"label":"August","value":"August"},{"label":"September","value":"September"},{"label":"October","value":"October"},{"label":"November","value":"November"},{"label":"December","value":"December"}],"type":"select","columns":["month"],"strict":"no","title":"Month","filter_prefix":"Month","select_value_type":"manual","name":"ninja_filter_2"},"ninja_filter_1":{"placeholder":"All","options":[{"label":"Europe","value":"Europe"},{"label":"Middle East","value":"Middle East"},{"label":"Asia Pacific","value":"Asia Pacific"},{"label":"Latin America","value":"Latin America"},{"label":"North America","value":"North America"},{"label":"Africa","value":"Africa"},{"label":"Online","value":"Online"}],"type":"select","columns":["region"],"strict":"no","title":"Regions","filter_prefix":"Regions","select_value_type":"manual","name":"ninja_filter_1"},"ninja_filter_0":{"placeholder":"All","options":[{"label":"EAGE Events","value":"eage-true"},{"label":"Education","value":"education-true"},{"label":"EAGE Communities","value":"EAGE Community"},{"label":"Student","value":"student-true"},{"label":"Conferences","value":"Conference"},{"label":"Workshops","value":"Workshop"},{"label":"Exhibitions","value":"Conference & Exhibition"},{"label":"Associated Societies","value":"Associated Society"},{"label":"Online Events","value":"online-true"},{"label":"Joint Events","value":"joint-true"}],"type":"checkbox","columns":["eventtype","organizer","onlyeageevents","onlyeducationevents","onlystudentevents","onlyonlineevents","jointevent"],"strict":"yes","title":"COF legenda","name":"ninja_filter_0"}}; var filterKey = "ninja_table_instance_0_custom_filter"; var tableId = 9207; var progressive = true; var preSelects = []; var uniqueId = "ninja_table_unique_id_795594100_9207"; var FilterOptions = ninjaTableGetCustomFilter(filters, filterKey, tableId, preSelects, progressive, uniqueId); FooTable[filterKey] = FooTable.Filtering.extend(FilterOptions); }); /* ]]> */ </script> <script type="text/javascript" id="footable_init-js-extra"> /* <![CDATA[ */ var ninja_footables = {"ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","tables":[],"ninja_version":"5.0.14","i18n":{"search_in":"Search in","search":"Search","empty_text":"No Result Found","clear_all":"Clear All","caption_format":"Selected","pikaday":{"previousMonth":"Previous Month","nextMonth":"Next Month","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]}},"ninja_table_public_nonce":"95e3c1a0d3","site_url":"https:\/\/eage.org","delay":"0","pro_version":"5.0.3"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJydjtEKwjAMRX/IGufYfBK/pdsyaW2T0rTs91f6IDgpgm9Jbs7hwhbUzJSQEgSXn4YEyJDVKunJoYAWwSRgP89qZa7T2coJfjhUiNzylKilQIe+7BwP/IZT0POrojFTMr7Z4q34xv9B11ifFuV5yaV9YR/+3t36S9dfx3GwOxYmfZo=" ></script><script type="text/javascript" id="elementor-pro-frontend-js-before"> /* <![CDATA[ */ var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","nonce":"33f249eb44","urls":{"assets":"https:\/\/eage.org\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/eage.org\/wp-json\/"},"settings":{"lazy_load_background_images":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/eage.org\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-content/plugins/elementor-pro/assets/js/frontend.js?ver=3.24.4" id="elementor-pro-frontend-js"></script> <script type="text/javascript" id="elementor-frontend-js-before"> /* <![CDATA[ */ var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":true},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselWrapperAriaLabel":"Carousel | Horizontal scrolling: Arrow Left & Right","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":900,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":899,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":true},"version":"3.24.7","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"container":true,"container_grid":true,"e_swiper_latest":true,"e_nested_atomic_repeaters":true,"e_onboarding":true,"theme_builder_v2":true,"home_screen":true,"ai-layout":true,"landing-pages":true,"nested-elements":true,"link-in-bio":true,"floating-buttons":true,"display-conditions":true,"form-submissions":true,"mega-menu":true},"urls":{"assets":"https:\/\/eage.org\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/eage.org\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"38174a4f7d"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"viewport_tablet":899,"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":9229,"title":"Calendar%20of%20Online%20Events%20-%20eage.org","excerpt":"","featuredImage":"https:\/\/eage.org\/wp-content\/uploads\/2021\/02\/Online_Events.jpg?w=800"}}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-content/plugins/elementor/assets/js/frontend.js?ver=3.24.7" id="elementor-frontend-js"></script> <script type="text/javascript" id="powerpack-frontend-js-extra"> /* <![CDATA[ */ var ppLogin = {"empty_username":"Enter a username or email address.","empty_password":"Enter password.","empty_password_1":"Enter a password.","empty_password_2":"Re-enter password.","empty_recaptcha":"Please check the captcha to verify you are not a robot.","email_sent":"A password reset email has been sent to the email address for your account, but may take several minutes to show up in your inbox. Please wait at least 10 minutes before attempting another reset.","reset_success":"Your password has been reset successfully.","ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","show_password":"Show password","hide_password":"Hide password"}; var ppRegistration = {"invalid_username":"This username is invalid because it uses illegal characters. Please enter a valid username.","username_exists":"This username is already registered. Please choose another one.","empty_email":"Please type your email address.","invalid_email":"The email address isn\u2019t correct!","email_exists":"The email is already registered, please choose another one.","password":"Password must not contain the character \"\\\\\"","password_length":"Your password should be at least 8 characters long.","password_mismatch":"Password does not match.","invalid_url":"URL seems to be invalid.","recaptcha_php_ver":"reCAPTCHA API requires PHP version 5.3 or above.","recaptcha_missing_key":"Your reCAPTCHA Site or Secret Key is missing!","show_password":"Show password","hide_password":"Hide password","ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php"}; var ppCoupons = {"copied_text":"Copied"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJyVjMEOgkAMRH/ItSART8RvWaHiLmXbtDX8vsQEw8ELt5nJvAeLhJ6LY3EQeo+pGCDhvHbWIMoQzdAN8m+38IplIFQ7ZzvBH4Hwgiqxn8KG7CxP/b6H4zClBzgzeRJz1H1eZfe5q29NVTeXtr3mD1GDUes=" ></script> <script type="text/javascript"> jQuery(document).on('ninja_table_ready_init_table_id_9207',function (e, params) { var $table = params.$table; var $ = jQuery; var tableConfig = params.tableConfig; if (window.ninjaTableAfterPrint) { if (window.ninjaTableAfterPrint.indexOf(tableConfig.table_id) != -1) { return; } else { window.ninjaTableAfterPrint.push(tableConfig.table_id); } } else { window.ninjaTableAfterPrint = [tableConfig.table_id]; } try { $('input[value="online-true"]').trigger('click'); } catch (e) { console.warn('Error in custom JS of Ninja Table ID: '+tableConfig.table_id); console.error(e); } }); </script> <script type="text/javascript">var ang_tracker = "UA-6893078-30";var loaded_ang = [];var loaded_angzones = [];</script> </body> </html>

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