CINXE.COM

Ballot - 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>Ballot - eage.org</title> <meta name="description" content="Throughout May, a Ballot was held for five positions in the EAGE Board and proposals for changes to the constitution of the Association."/> <meta name="robots" content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/> <link rel="canonical" href="https://eage.org/about_eage/ballot/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Ballot - eage.org" /> <meta property="og:description" content="Throughout May, a Ballot was held for five positions in the EAGE Board and proposals for changes to the constitution of the Association." /> <meta property="og:url" content="https://eage.org/about_eage/ballot/" /> <meta property="og:site_name" content="eage.org" /> <meta property="og:updated_time" content="2024-09-02T12:19:56+00:00" /> <meta property="og:image" content="https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg" /> <meta property="og:image:secure_url" content="https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg" /> <meta property="og:image:width" content="800" /> <meta property="og:image:height" content="217" /> <meta property="og:image:alt" content="Ballot" /> <meta property="og:image:type" content="image/jpeg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Ballot - eage.org" /> <meta name="twitter:description" content="Throughout May, a Ballot was held for five positions in the EAGE Board and proposals for changes to the constitution of the Association." /> <meta name="twitter:image" content="https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.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; Ballot Comments Feed" href="https://eage.org/about_eage/ballot/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.2","twemoji":"https:\/\/eage.org\/wp-includes\/js\/twemoji.js?ver=6.7.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-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/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5oM02OfaGpobWxpZmhgbGwAAhN0tcg==' 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='rank-math-rich-snippet-style-inline-css'> /*! * Plugin: Rank Math * URL: https://rankmath.com/wordpress/plugin/seo-suite/ * Name: rank-math-review-snippet.css */@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(-360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(-360deg)}}@keyframes bounce{from{-webkit-transform:translateY(0px);transform:translateY(0px)}to{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}@-webkit-keyframes bounce{from{-webkit-transform:translateY(0px);transform:translateY(0px)}to{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}@-webkit-keyframes loading{0%{background-size:20% 50% ,20% 50% ,20% 50%}20%{background-size:20% 20% ,20% 50% ,20% 50%}40%{background-size:20% 100%,20% 20% ,20% 50%}60%{background-size:20% 50% ,20% 100%,20% 20%}80%{background-size:20% 50% ,20% 50% ,20% 100%}100%{background-size:20% 50% ,20% 50% ,20% 50%}}@keyframes loading{0%{background-size:20% 50% ,20% 50% ,20% 50%}20%{background-size:20% 20% ,20% 50% ,20% 50%}40%{background-size:20% 100%,20% 20% ,20% 50%}60%{background-size:20% 50% ,20% 100%,20% 20%}80%{background-size:20% 50% ,20% 50% ,20% 100%}100%{background-size:20% 50% ,20% 50% ,20% 50%}}:root{--rankmath-wp-adminbar-height: 0}#rank-math-rich-snippet-wrapper{overflow:hidden}#rank-math-rich-snippet-wrapper h5.rank-math-title{display:block;font-size:18px;line-height:1.4}#rank-math-rich-snippet-wrapper .rank-math-review-image{float:right;max-width:40%;margin-left:15px}#rank-math-rich-snippet-wrapper .rank-math-review-data{margin-bottom:15px}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper{width:100%;padding:0 0 20px 0;float:left;clear:both;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-total{border:0;display:block;margin:0;width:auto;float:left;text-align:left;padding:0;font-size:24px;line-height:1;font-weight:700;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star{float:left;margin-left:15px;margin-top:5px;position:relative;z-index:99;line-height:1}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper{display:inline-block;white-space:nowrap;position:relative;color:#e7e7e7}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper .rank-math-review-result{position:absolute;top:0;left:0;overflow:hidden;white-space:nowrap;color:#ffbe01}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper i{font-size:18px;-webkit-text-stroke-width:1px;font-style:normal;padding:0 2px;line-height:inherit}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper i:before{content:"\2605"}body.rtl #rank-math-rich-snippet-wrapper .rank-math-review-image{float:left;margin-left:0;margin-right:15px}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-total{float:right}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star{float:right;margin-left:0;margin-right:15px}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result{left:auto;right:0}@media screen and (max-width: 480px){#rank-math-rich-snippet-wrapper .rank-math-review-image{display:block;max-width:100%;width:100%;text-align:center;margin-right:0}#rank-math-rich-snippet-wrapper .rank-math-review-data{clear:both}}.clear{clear:both} </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-16' href='https://eage.org/_static/??-eJylkt1OwzAMhV+I1IwJEBeIR0Fe4rWG/Cl2GHt70hYkkCir6E2UHNufjh3DKRubolJUyL72HAUw9qcMKEIqcGzB+TR4IkmBwMpPoQscuyZewSWYY9FZ6Q41Ok/di1yo5Gh9dQT03oLCqQUkl2ebfA1j0gweLWHkgLrGzXrmN3mZmc18NWILZ6UExzLluNnXiAPRc2t3G6MKFZMxkv8/yG+onUx8jXkbxQ5YdCPjINhZLKmNZWtTY0eF0RtHwv0f+7Pun9g4VMxsX6kss5wzQljsYDSZQLFCrgfPdiLxWyrnz/ivK60DBRIYyPtkyLdH1FQW9mwheZLH5KfwuLu/ebi9vtvt9h8gLI3O' 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=1737636798' media='all' /> <link rel='stylesheet' id='all-css-18' href='https://eage.org/wp-content/plugins/elementor/assets/css/widget-image.min.css?m=1739269105g' 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=1737636870' media='all' /> <link rel='stylesheet' id='all-css-20' href='https://eage.org/_static/??-eJylkkFuAjEMRS+EcaGihQXiLGnGTC0lcRQHArfHUw2IHTNlaef/F3/L2DJ4SZVSxRxOPSdFChStloJOlapi4B90iaOrLPau9RrIZPDoQV+kLb3qAqfytHGmguctmm2sphMGj4k6Hn53YRhmKgJykWdM466nCkqu+F84SonLyGlemKOJwDVSifQHHRpj/SZJJXA3bzH3RNl5W8isME/2SpcKZBuWmYzX15Il/y+ReHYB2Dx6n+kQ96vvz936a7f62NwA8ucRdw==' 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=1737636792' media='all' /> <link rel='stylesheet' id='all-css-22' href='https://eage.org/_static/??-eJyVy0sKgDAMANEL2cYPKl2IZykm1IBNi6n2+rrxAC5n4EHNZktSSArk4wosCnRQfDud4FWpKGyqUBkDFYN8M9JpI4t9dwM//U4eWcLn17h08+D6yXXt+ADFJDOw' 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=1737636810' media='all' /> <link rel='stylesheet' id='all-css-24' href='https://eage.org/_static/??-eJytz8EKwjAMBuAXcotTmOwgXrwIvkTtshFom7BkDN/eVhDBgyjsmD/JRwKLVJ6TYTKQMI+UFDBgzDVPlUwMThVNwavCQv2IVgmraR0p1TncwDfhtR3oBi5RdEac+2r3gAqD6/Hyg/J5Rx7sqUguKAjLLOtdc+ZlJemKg/0nIfmilBffvz+z4pzisTnsu13bNdv2Ac7np0c=' 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=1737636885' media='all' /> <link rel='stylesheet' id='all-css-26' href='https://eage.org/wp-content/plugins/powerpack-elements/assets/css/frontend.css?m=1729506112g' type='text/css' media='all' /> <link rel='stylesheet' id='widget-call-to-action-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-pro-widget-call-to-action.min.css?ver=1737636876' media='all' /> <link rel='stylesheet' id='all-css-28' href='https://eage.org/_static/??-eJyVjsEKwjAQRH/IdK2i0oP4LSFd2oVkN2S29PeNnvQieJjDY4bH0F5DMnVWp5q3RRTEmUtna6E2owiwgxJ6TGdxMY0Z5C0q3oShiA59cKBftk/TLvPCHnqxhahptfa/4+sN1lgZL8Gj3MfbeTpdp/F4eQK771RG' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-5248-css' href='https://eage.org/wp-content/uploads/elementor/css/post-5248.css?ver=1737636882' media='all' /> <link rel='stylesheet' id='elementor-post-147-css' href='https://eage.org/wp-content/uploads/elementor/css/post-147.css?ver=1737636783' media='all' /> <link rel='stylesheet' id='elementor-post-174-css' href='https://eage.org/wp-content/uploads/elementor/css/post-174.css?ver=1737636786' media='all' /> <link rel='stylesheet' id='elementor-post-3360-css' href='https://eage.org/wp-content/uploads/elementor/css/post-3360.css?ver=1737636885' media='all' /> <link rel='stylesheet' id='all-css-36' href='https://eage.org/wp-content/themes/hello-elementor/elementorRights.css?m=1729506113g' 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=1737636789' media='all' /> <link rel='stylesheet' id='elementor-post-14898-css' href='https://eage.org/wp-content/uploads/elementor/css/post-14898.css?ver=1737636792' media='all' /> <link rel='stylesheet' id='elementor-post-4198-css' href='https://eage.org/wp-content/uploads/elementor/css/post-4198.css?ver=1737636795' media='all' /> <link rel='stylesheet' id='elementor-post-1653-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1653.css?ver=1737636795' media='all' /> <link rel='stylesheet' id='elementor-post-1650-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1650.css?ver=1737636798' media='all' /> <link rel='stylesheet' id='elementor-post-1647-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1647.css?ver=1737636801' media='all' /> <link rel='stylesheet' id='elementor-post-1644-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1644.css?ver=1737636804' media='all' /> <link rel='stylesheet' id='elementor-post-1641-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1641.css?ver=1737636808' media='all' /> <link rel='stylesheet' id='elementor-post-1588-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1588.css?ver=1737636811' media='all' /> <link rel='stylesheet' id='elementor-post-1566-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1566.css?ver=1737636811' media='all' /> <link rel='stylesheet' id='elementor-post-1137-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1137.css?ver=1737636814' media='all' /> <link rel='stylesheet' id='all-css-58' href='https://eage.org/_static/??-eJytkDsOwjAQRC+EY34BGsRZ/FknljZey14TuD0GkoICmlBsM9p5Mxo5RmEoMASWEUvnQ5asNEJMkLM09XTxaKUFpwpyU5WV/G0ayBaED7Ni9XrIjS7MFPJijiEsQ3AeGdLobQe8nOn8DWwPykL6D+tdcnmxbBIhikXbVTlWs7+CmCf8gnGU6pxCaSosck+JDVmY02UsGr2ZyE9JZL5PvMtw3hx3+0O73ranBwK559o=' 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.2' media='all' /> <link rel='stylesheet' id='all-css-60' href='https://eage.org/_static/??-eJydjFsKgCAUBTeUnQwq+ojWYnYTwRdexe1nW+hvBoZBS0LHUCgUJFeNDQxy5LvHDMVMheHshadHQjXi6AmaGZlMdSqPnQf8vlxZhZu/yekPuc37Mq1SyhctVzfp' 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/??-eJydkU1uAyEMRi9UQtupFGVR9SwUuzOegk2xyc/tS6ZJlEXSRSQkDHrP/hB+VxxxTA1Q/dzXT8N6OG2rWZ/8f4DLNNZgeAajsCGbL6mNxOozcuu2K6J2lHPoh0x8jw887ooPqmjqAbdHJ8AWq5ESj7fy2ETx+1P2l+IW1BiwapSKq6vp14ROUi0KXJ4SoJNLZgQKrpUkAe7mLu6vdBorFUPxX3VhYGm+XD4oxynUR93TNyrlkg6dkJR6p4/8/rIeNq+bt2F4nn8BBMfA5g==" ></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.2" /> <link rel='shortlink' href='https://eage.org/?p=5248' /> <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%2Fabout_eage%2Fballot%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%2Fabout_eage%2Fballot%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.146.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.27.3; 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-1736434310611-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', [[320, 180], 'fluid'], 'div-gpt-ad-1734681659043-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> <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 mapping3 = googletag.sizeMapping() //.addSize([1600, 0], [[1140, 140]]) .addSize([1380, 0], [[1000, 123]]) .addSize([1150, 0], [[728, 90]]) .addSize([1100, 0], [[500, 62]]) .addSize([500, 180], [[320, 180]]) .build(); adSlot = googletag.defineSlot('/20287594127/allsizes_testing_for_mobile', [[500, 62], [1000, 123], 'fluid', [320, 180], [728, 90], [1140, 140]], 'div-gpt-ad-1737030555613-0') .defineSizeMapping(mapping3) .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> <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="about_eage-template-default single single-about_eage postid-5248 single-format-standard viewable-enabled hello-elementor elementor-default elementor-template-full-width elementor-kit-3378 elementor-page elementor-page-5248 elementor-page-3360"> <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-mobile 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 fetchpriority="high" 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> </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-mobile 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 fetchpriority="high" 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> </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> </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="Mobile_MenuIcon_open" 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="EAGE_logo" 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="Mobile_MenuIcon_open" 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="3360" class="elementor elementor-3360 elementor-location-single post-5248 about_eage type-about_eage 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-30e5088e elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="30e5088e" 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-25a73b5c" data-id="25a73b5c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5b4cced3 elementor-widget elementor-widget-template" data-id="5b4cced3" 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-bb05a87:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-bb05a87 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.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/2020/04/Template_RevSlider_BG.jpg");}@media(max-width:767px){.elementor-3293 .elementor-element.elementor-element-de92fe3:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-de92fe3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.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/2020/04/Template_RevSlider_BG.jpg");}}</style> <div data-elementor-type="single" data-elementor-id="3293" class="elementor elementor-3293 elementor-location-single post-5248 about_eage type-about_eage status-publish format-standard has-post-thumbnail hentry" data-elementor-post-type="elementor_library"> <div class="elementor-element elementor-element-bb05a87 elementor-hidden-mobile e-flex e-con-boxed e-con e-parent" data-id="bb05a87" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-8134cbc e-con-full e-flex e-con e-child" data-id="8134cbc" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> </div> <div class="elementor-element elementor-element-b508911 e-con-full e-flex e-con e-child" data-id="b508911" data-element_type="container"> </div> </div> </div> <div class="elementor-element elementor-element-a83e5c5 elementor-hidden-mobile e-flex e-con-boxed e-con e-parent" data-id="a83e5c5" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-2967be5 e-con-full pagetitle_container e-flex e-con e-child" data-id="2967be5" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-element elementor-element-56b283a elementor-widget elementor-widget-heading" data-id="56b283a" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">EAGE Ballot</h2> </div> </div> <div class="elementor-element elementor-element-5b995c4 elementor-widget elementor-widget-heading" data-id="5b995c4" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">EAGE Annual Ballot</h2> </div> </div> <div class="elementor-element elementor-element-5123d4b elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="5123d4b" 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-64338ad e-con-full e-flex e-con e-child" data-id="64338ad" data-element_type="container"> </div> </div> </div> <div class="elementor-element elementor-element-de92fe3 elementor-hidden-desktop elementor-hidden-tablet e-flex e-con-boxed e-con e-parent" data-id="de92fe3" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-c98cbc0 e-con-full e-flex e-con e-child" data-id="c98cbc0" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-element elementor-element-83d8532 elementor-widget elementor-widget-heading" data-id="83d8532" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">EAGE Ballot</h2> </div> </div> <div class="elementor-element elementor-element-ace1dbc elementor-widget elementor-widget-heading" data-id="ace1dbc" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">EAGE Annual Ballot</h2> </div> </div> <div class="elementor-element elementor-element-fe0e3ba elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="fe0e3ba" 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> <div class="elementor-element elementor-element-525e363 e-flex e-con-boxed e-con e-parent" data-id="525e363" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-ad0ea6f elementor-widget elementor-widget-spacer" data-id="ad0ea6f" 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> <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-background-overlay"></div> <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">EAGE Ballot</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">EAGE Annual Ballot</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">EAGE Ballot</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">EAGE Annual Ballot</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-2b62c27b 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="2b62c27b" 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-242cabfd" data-id="242cabfd" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-c1db3c8 section-content elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="c1db3c8" 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-69396d1" data-id="69396d1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-af58920 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="af58920" 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-9ffb28b" data-id="9ffb28b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3648160 elementor-hidden-mobile elementor-widget elementor-widget-html" data-id="3648160" 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-9acef26 elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-html" data-id="9acef26" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <!-- /20287594127/WP_EAGE_leaderboard_Mobile --> <div id='div-gpt-ad-1734681659043-0' style='min-width: 320px; min-height: 180px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1734681659043-0'); }); </script> </div> </div> </div> <div class="elementor-element elementor-element-b150bdc elementor-hidden-phone elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="b150bdc" 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 class="elementor-element elementor-element-54bd59d elementor-widget elementor-widget-heading" data-id="54bd59d" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">EAGE Annual Ballot</h2> </div> </div> <div class="elementor-element elementor-element-2f62639 elementor-widget elementor-widget-theme-post-content" data-id="2f62639" 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="5248" class="elementor elementor-5248" data-elementor-post-type="about_eage"> <section class="elementor-section elementor-top-section elementor-element elementor-element-5d8d026 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5d8d026" 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-431c1b1" data-id="431c1b1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-906517b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="906517b" 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-1cad7e6" data-id="1cad7e6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-784f644 elementor-widget elementor-widget-heading" data-id="784f644" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <div class="elementor-heading-title elementor-size-default">Ballot 2024</div> </div> </div> <div class="elementor-element elementor-element-2a49340 elementor-widget elementor-widget-heading" data-id="2a49340" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <div class="elementor-heading-title elementor-size-default">Our candidates</div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-aca3279 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="aca3279" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-16 elementor-inner-column elementor-element elementor-element-fb83942" data-id="fb83942" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1e0cc89 elementor-cta--skin-cover elementor-cta--valign-bottom CallToAction_gradiant_bottom_long elementor-widget elementor-widget-call-to-action" data-id="1e0cc89" data-element_type="widget" data-widget_type="call-to-action.default"> <div class="elementor-widget-container"> <a class="elementor-cta" href="#Sanjeev"> <div class="elementor-cta__bg-wrapper"> <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://eage.org/wp-content/uploads/2024/04/Sanjeev-Rajput.jpg?w=800);" role="img" aria-label="Sanjeev-Rajput"></div> <div class="elementor-cta__bg-overlay"></div> </div> <div class="elementor-cta__content"> <h2 class="elementor-cta__title elementor-cta__content-item elementor-content-item"> Sanjeev Rajput </h2> <div class="elementor-cta__description elementor-cta__content-item elementor-content-item"> candidate for Vice-President </div> </div> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-16 elementor-inner-column elementor-element elementor-element-f828a63" data-id="f828a63" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-82e0b0c elementor-cta--skin-cover elementor-cta--valign-bottom CallToAction_gradiant_bottom_long elementor-widget elementor-widget-call-to-action" data-id="82e0b0c" data-element_type="widget" data-widget_type="call-to-action.default"> <div class="elementor-widget-container"> <a class="elementor-cta" href="#Martin"> <div class="elementor-cta__bg-wrapper"> <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://eage.org/wp-content/uploads/2024/04/Martin-Widmaier.jpg?w=800);" role="img" aria-label="Martin-Widmaier"></div> <div class="elementor-cta__bg-overlay"></div> </div> <div class="elementor-cta__content"> <h2 class="elementor-cta__title elementor-cta__content-item elementor-content-item"> Martin Widmaier </h2> <div class="elementor-cta__description elementor-cta__content-item elementor-content-item"> CANDIDATE FOR Technical Programme Officer </div> </div> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-16 elementor-inner-column elementor-element elementor-element-e6e2f53" data-id="e6e2f53" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-198d28f elementor-cta--skin-cover elementor-cta--valign-bottom CallToAction_gradiant_bottom_long elementor-widget elementor-widget-call-to-action" data-id="198d28f" data-element_type="widget" data-widget_type="call-to-action.default"> <div class="elementor-widget-container"> <a class="elementor-cta" href="#Diego"> <div class="elementor-cta__bg-wrapper"> <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://eage.org/wp-content/uploads/2024/04/Diego-Rovetta.jpg?w=800);" role="img" aria-label="Diego-Rovetta"></div> <div class="elementor-cta__bg-overlay"></div> </div> <div class="elementor-cta__content"> <h2 class="elementor-cta__title elementor-cta__content-item elementor-content-item"> Diego Rovetta </h2> <div class="elementor-cta__description elementor-cta__content-item elementor-content-item"> candidate for Membership &amp; Cooperation Officer </div> </div> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-16 elementor-inner-column elementor-element elementor-element-eb784b8" data-id="eb784b8" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4a01b27 elementor-cta--skin-cover elementor-cta--valign-bottom CallToAction_gradiant_bottom_long elementor-widget elementor-widget-call-to-action" data-id="4a01b27" data-element_type="widget" data-widget_type="call-to-action.default"> <div class="elementor-widget-container"> <a class="elementor-cta" href="#Florina"> <div class="elementor-cta__bg-wrapper"> <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://eage.org/wp-content/uploads/2020/09/Florina-Tuluca.jpeg?w=800);" role="img" aria-label="Florina-Tuluca"></div> <div class="elementor-cta__bg-overlay"></div> </div> <div class="elementor-cta__content"> <h2 class="elementor-cta__title elementor-cta__content-item elementor-content-item"> Florina Tuluca </h2> <div class="elementor-cta__description elementor-cta__content-item elementor-content-item"> Candidate for Vice-Chair Near Surface Geoscience Circle </div> </div> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-16 elementor-inner-column elementor-element elementor-element-587498a" data-id="587498a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-fe5c06f elementor-cta--skin-cover elementor-cta--valign-bottom CallToAction_gradiant_bottom_long elementor-widget elementor-widget-call-to-action" data-id="fe5c06f" data-element_type="widget" data-widget_type="call-to-action.default"> <div class="elementor-widget-container"> <a class="elementor-cta" href="#Maren"> <div class="elementor-cta__bg-wrapper"> <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://eage.org/wp-content/uploads/2022/04/Maren_Kleemeyer.jpeg?w=800);" role="img" aria-label="Maren_Kleemeyer"></div> <div class="elementor-cta__bg-overlay"></div> </div> <div class="elementor-cta__content"> <h2 class="elementor-cta__title elementor-cta__content-item elementor-content-item"> Maren Kleemeyer </h2> <div class="elementor-cta__description elementor-cta__content-item elementor-content-item"> Stands to be Re-Elected for Education Officer </div> </div> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-16 elementor-inner-column elementor-element elementor-element-505faa8" data-id="505faa8" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-260a216 elementor-cta--skin-cover elementor-cta--valign-bottom CallToAction_gradiant_bottom_long elementor-widget elementor-widget-call-to-action" data-id="260a216" data-element_type="widget" data-widget_type="call-to-action.default"> <div class="elementor-widget-container"> <a class="elementor-cta" href="#Christian"> <div class="elementor-cta__bg-wrapper"> <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://eage.org/wp-content/uploads/2024/05/Christian_Henke.jpg?w=800);" role="img" aria-label="Christian_Henke"></div> <div class="elementor-cta__bg-overlay"></div> </div> <div class="elementor-cta__content"> <h2 class="elementor-cta__title elementor-cta__content-item elementor-content-item"> Christian Henke </h2> <div class="elementor-cta__description elementor-cta__content-item elementor-content-item"> Candidate for Secretary-Treasurer </div> </div> </a> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-6f3eeab elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6f3eeab" 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-67bdad2" data-id="67bdad2" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6797d2d elementor-cta--skin-cover elementor-cta--valign-bottom CallToAction_gradiant_bottom_long elementor-widget elementor-widget-call-to-action" data-id="6797d2d" data-element_type="widget" data-widget_type="call-to-action.default"> <div class="elementor-widget-container"> <a class="elementor-cta" href="#Sanjeev"> <div class="elementor-cta__bg-wrapper"> <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://eage.org/wp-content/uploads/2024/04/Sanjeev-Rajput.jpg?w=800);" role="img" aria-label="Sanjeev-Rajput"></div> <div class="elementor-cta__bg-overlay"></div> </div> <div class="elementor-cta__content"> <h2 class="elementor-cta__title elementor-cta__content-item elementor-content-item"> Sanjeev Rajput </h2> <div class="elementor-cta__description elementor-cta__content-item elementor-content-item"> candidate for Vice-President </div> </div> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-b7afcd6" data-id="b7afcd6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1acb4d9 elementor-cta--skin-cover elementor-cta--valign-bottom CallToAction_gradiant_bottom_long elementor-widget elementor-widget-call-to-action" data-id="1acb4d9" data-element_type="widget" data-widget_type="call-to-action.default"> <div class="elementor-widget-container"> <a class="elementor-cta" href="#Martin"> <div class="elementor-cta__bg-wrapper"> <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://eage.org/wp-content/uploads/2024/04/Martin-Widmaier.jpg?w=800);" role="img" aria-label="Martin-Widmaier"></div> <div class="elementor-cta__bg-overlay"></div> </div> <div class="elementor-cta__content"> <h2 class="elementor-cta__title elementor-cta__content-item elementor-content-item"> Martin Widmaier </h2> <div class="elementor-cta__description elementor-cta__content-item elementor-content-item"> CANDIDATE FOR Technical Programme Officer </div> </div> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-d593a4f" data-id="d593a4f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0ed40d8 elementor-cta--skin-cover elementor-cta--valign-bottom CallToAction_gradiant_bottom_long elementor-widget elementor-widget-call-to-action" data-id="0ed40d8" data-element_type="widget" data-widget_type="call-to-action.default"> <div class="elementor-widget-container"> <a class="elementor-cta" href="#Diego"> <div class="elementor-cta__bg-wrapper"> <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://eage.org/wp-content/uploads/2024/04/Diego-Rovetta.jpg?w=800);" role="img" aria-label="Diego-Rovetta"></div> <div class="elementor-cta__bg-overlay"></div> </div> <div class="elementor-cta__content"> <h2 class="elementor-cta__title elementor-cta__content-item elementor-content-item"> Diego Rovetta </h2> <div class="elementor-cta__description elementor-cta__content-item elementor-content-item"> candidate for Membership &amp; Cooperation Officer </div> </div> </a> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-4433cf0 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4433cf0" 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-30e1a2d" data-id="30e1a2d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-50b1001 elementor-cta--skin-cover elementor-cta--valign-bottom CallToAction_gradiant_bottom_long elementor-widget elementor-widget-call-to-action" data-id="50b1001" data-element_type="widget" data-widget_type="call-to-action.default"> <div class="elementor-widget-container"> <a class="elementor-cta" href="#Florina"> <div class="elementor-cta__bg-wrapper"> <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://eage.org/wp-content/uploads/2020/09/Florina-Tuluca.jpeg?w=800);" role="img" aria-label="Florina-Tuluca"></div> <div class="elementor-cta__bg-overlay"></div> </div> <div class="elementor-cta__content"> <h2 class="elementor-cta__title elementor-cta__content-item elementor-content-item"> Florina Tuluca </h2> <div class="elementor-cta__description elementor-cta__content-item elementor-content-item"> Candidate for Vice-Chair Near Surface Geoscience Circle </div> </div> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4572719" data-id="4572719" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-172358e elementor-cta--skin-cover elementor-cta--valign-bottom CallToAction_gradiant_bottom_long elementor-widget elementor-widget-call-to-action" data-id="172358e" data-element_type="widget" data-widget_type="call-to-action.default"> <div class="elementor-widget-container"> <a class="elementor-cta" href="#Maren"> <div class="elementor-cta__bg-wrapper"> <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://eage.org/wp-content/uploads/2022/04/Maren_Kleemeyer.jpeg?w=800);" role="img" aria-label="Maren_Kleemeyer"></div> <div class="elementor-cta__bg-overlay"></div> </div> <div class="elementor-cta__content"> <h2 class="elementor-cta__title elementor-cta__content-item elementor-content-item"> Maren Kleemeyer </h2> <div class="elementor-cta__description elementor-cta__content-item elementor-content-item"> Stands to be Re-Elected for Education Officer </div> </div> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-82e645b" data-id="82e645b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a54b7c7 elementor-cta--skin-cover elementor-cta--valign-bottom CallToAction_gradiant_bottom_long elementor-widget elementor-widget-call-to-action" data-id="a54b7c7" data-element_type="widget" data-widget_type="call-to-action.default"> <div class="elementor-widget-container"> <a class="elementor-cta" href="#Christian"> <div class="elementor-cta__bg-wrapper"> <div class="elementor-cta__bg elementor-bg" style="background-image: url(https://eage.org/wp-content/uploads/2024/05/Christian_Henke.jpg?w=800);" role="img" aria-label="Christian_Henke"></div> <div class="elementor-cta__bg-overlay"></div> </div> <div class="elementor-cta__content"> <h2 class="elementor-cta__title elementor-cta__content-item elementor-content-item"> Christian Henke </h2> <div class="elementor-cta__description elementor-cta__content-item elementor-content-item"> ?????? </div> </div> </a> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-5afb457 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5afb457" 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-e1840a9" data-id="e1840a9" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-49e549e elementor-absolute elementor-widget elementor-widget-menu-anchor" data-id="49e549e" data-element_type="widget" data-settings="{&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="menu-anchor.default"> <div class="elementor-widget-container"> <div class="elementor-menu-anchor" id="Sanjeev"></div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-a522cd6 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a522cd6" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;tilt&quot;}"> <div class="elementor-shape elementor-shape-bottom" data-negative="false"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"> <path class="elementor-shape-fill" d="M0,6V0h1000v100L0,6z"/> </svg> </div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-44826bc" data-id="44826bc" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6072490 elementor-widget elementor-widget-image" data-id="6072490" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img decoding="async" src="https://eage.org/wp-content/uploads/2024/04/Sanjeev-Rajput.jpg?w=800" title="Sanjeev-Rajput" alt="Sanjeev-Rajput" loading="lazy" /> </div> </div> <div class="elementor-element elementor-element-1c8d907 elementor-widget elementor-widget-heading" data-id="1c8d907" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Sanjeev Rajput</h2> </div> </div> <div class="elementor-element elementor-element-5740e85 elementor-widget elementor-widget-heading" data-id="5740e85" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">candidate for Vice-President</h3> </div> </div> <div class="elementor-element elementor-element-34a00f9 elementor-widget elementor-widget-text-editor" data-id="34a00f9" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center">Currently General Manager Head-Reservoir-Geoscience/Geophysics at PETRONAS Upstream</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-783bda6" data-id="783bda6" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-6e116af elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6e116af" 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-20e6f01 video_ballot_2021_txt_mobile_pos" data-id="20e6f01" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-35031af elementor-widget elementor-widget-text-editor" data-id="35031af" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>It is both a distinct privilege and a profound responsibility to be nominated as Vice-President of EAGE. This role reflects our shared commitment to leadership at a time of critical environmental imperatives and global transformations. Facing the urgent energy trilemma, EAGE’s diverse expertise across academia, industry, and research uniquely positions us to lead the bold, necessary transformations for sustainable energy practices globally.</p><p>At this pivotal moment, the need for resilient and innovative approaches in geosciences and engineering is paramount. Positioned at the forefront, EAGE is ready to turn significant challenges into groundbreaking opportunities through visionary leadership and technological innovation. My aim is to elevate EAGE’s global stature, driving solutions that bridge continents and cultures and establish new standards in our field.</p><p>With over two decades leading sustainable energy initiatives—from launching the world’s first Digital Oil Field concept to advancing Carbon Capture and Storage &#8211; I am deeply committed to steering EAGE to unparalleled heights in environmental guardianship and technological breakthroughs. My strategic vision includes:</p><ul><li><strong>Catalyzing Technological Breakthroughs:</strong> Advance the integration of digital technologies to redefine geosciences, enhancing capabilities in subsurface and climate engineering, and energy analytics and beyond.</li><li><strong>Fostering Global Collaboration:</strong> Cultivate a dynamic ecosystem where geosciences and engineering converge, sparking innovative approaches through interdisciplinary collaboration among professionals, academics, and industries.</li><li><strong>Cultivating Diversity and Inclusion:</strong> Deepen our commitment to diversity, enriching EAGE’s collective intelligence and developing nuanced solutions to global challenges.</li><li><strong>Empowering Educational Excellence:</strong> Broaden educational programs for all professional stages, equipping members for leadership and maintaining EAGE’s reputation as a knowledge leader.</li><li><strong>Championing Open Innovation:</strong> Promote open science and data sharing to accelerate innovation and increase the societal impact of our work.</li></ul><p> </p><p>At EAGE, we are committed to leading the transition to integrated, resilient energy systems and enhancing collaboration across sectors to fast-track low-carbon technology adoption. This focus will cement EAGE’s leadership in innovation and sustainable progress.</p><p>My diverse experience in environmental protection and resource exploration has deeply influenced my appreciation for our community’s capabilities. As Vice-President, I am eager to leverage this potential to address the urgent global issues of our era. Together, we can ensure that EAGE remains a leader in innovation and a bastion of sustainable progress, dedicated to the monumental task of transitioning to a net-zero energy future.</p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4efed67 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4efed67" 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-9a6f510" data-id="9a6f510" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-13bf078 elementor-absolute elementor-widget elementor-widget-menu-anchor" data-id="13bf078" data-element_type="widget" data-settings="{&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="menu-anchor.default"> <div class="elementor-widget-container"> <div class="elementor-menu-anchor" id="Martin"></div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-5fadc68 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5fadc68" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;tilt&quot;}"> <div class="elementor-shape elementor-shape-bottom" data-negative="false"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"> <path class="elementor-shape-fill" d="M0,6V0h1000v100L0,6z"/> </svg> </div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-39f1b79" data-id="39f1b79" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-77f7082 elementor-widget elementor-widget-image" data-id="77f7082" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img decoding="async" src="https://eage.org/wp-content/uploads/2024/04/Martin-Widmaier.jpg?w=800" title="Martin-Widmaier" alt="Martin-Widmaier" loading="lazy" /> </div> </div> <div class="elementor-element elementor-element-daf5272 elementor-widget elementor-widget-heading" data-id="daf5272" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Martin Widmaier</h2> </div> </div> <div class="elementor-element elementor-element-687c478 elementor-widget elementor-widget-heading" data-id="687c478" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">candidate for Technical Programme Officer</h3> </div> </div> <div class="elementor-element elementor-element-cb4598b elementor-widget elementor-widget-text-editor" data-id="cb4598b" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center">Currently Chief Geophysicist for PGS Sales &amp; Services</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5c390fd" data-id="5c390fd" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-037d477 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="037d477" 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-8488ae9 video_ballot_2021_txt_mobile_pos" data-id="8488ae9" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d801ec3 elementor-widget elementor-widget-text-editor" data-id="d801ec3" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>EAGE events such as conferences, exhibitions, workshops, and lectures, as well as publications have been key for my own learning, development, and networking throughout my education and professional career. Serving the association as the Technical Programme Officer (TPO) is a great opportunity to contribute to something from which I have personally benefited enormously. As EAGE’s TPO I will be committed to:</p><ul><li>ensuring EAGE provides conferences with high-quality technical agendas that embrace the association’s mission to promote the global development and application of geosciences and related engineering subjects.</li><li>facilitating technical agendas that foster cross-disciplinary learning and cooperation.</li><li>promoting innovation, technology advance and knowledge transfer that secures both affordable access to hydrocarbons, mitigation of carbon emissions, as well as the transition to energy solutions based on renewables.</li><li>providing ample opportunities for our young professionals to share their work and to grow their network on their career path and route towards a sustainable future.</li><li>maintaining and enhancing collaboration and exchange between international geoscientific societies.</li></ul> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-0494c3a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="0494c3a" 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-19a1d36" data-id="19a1d36" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-546e609 elementor-absolute elementor-widget elementor-widget-menu-anchor" data-id="546e609" data-element_type="widget" data-settings="{&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="menu-anchor.default"> <div class="elementor-widget-container"> <div class="elementor-menu-anchor" id="Diego"></div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-687c345 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="687c345" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;tilt&quot;}"> <div class="elementor-shape elementor-shape-bottom" data-negative="false"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"> <path class="elementor-shape-fill" d="M0,6V0h1000v100L0,6z"/> </svg> </div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e02a74c" data-id="e02a74c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-64405dd elementor-widget elementor-widget-image" data-id="64405dd" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img decoding="async" src="https://eage.org/wp-content/uploads/2024/04/Diego-Rovetta.jpg?w=800" title="Diego-Rovetta" alt="Diego-Rovetta" loading="lazy" /> </div> </div> <div class="elementor-element elementor-element-b1c13a6 elementor-widget elementor-widget-heading" data-id="b1c13a6" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Diego Rovetta</h2> </div> </div> <div class="elementor-element elementor-element-2ab075f elementor-widget elementor-widget-heading" data-id="2ab075f" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">candidate for Membership &amp; Cooperation Officer</h3> </div> </div> <div class="elementor-element elementor-element-b08ddc2 elementor-widget elementor-widget-text-editor" data-id="b08ddc2" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center">Currently HPC for Reservoir Technologies focus area champion at Aramco Global Research Center</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-cb912ca" data-id="cb912ca" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-7e2a555 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7e2a555" 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-94a5628 video_ballot_2021_txt_mobile_pos" data-id="94a5628" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ab18c48 elementor-widget elementor-widget-text-editor" data-id="ab18c48" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>It is a tremendous honor to be considered as a potential candidate for the EAGE Board.</p><p>I believe this association holds a pivotal role in gathering and facilitating knowledge sharing within the geoscience and engineering community in Europe and worldwide.</p><p>This is particularly crucial during these challenging times, where a balance needs to be found between the new energy transition and the O&amp;G industry, which, evolving towards sustainability, will keep leading the technological investments of the coming years.</p><p>I also think that EAGE is extremely important to promote diversity at all levels and to include more and more students and young professionals in its activities.</p><p>As a member since 2007, I have greatly benefited from the association&#8217;s network of local organizations, which has allowed me to stay connected with the geoscience and engineering community throughout my career everywhere I was living, from Italy to Norway, from Saudi Arabia to The Netherlands.</p><p>In 2019 I decided to bring my own contribution founding an EAGE local chapter in the Netherlands together with other colleagues and friends. In five years, four of which under my presidency, the local chapter reached more than two hundred members with more than fifty events organized and it has been awarded with the “Best Local Chapter Newcomer” prize in 2021 and the “Best Local Chapter” prize in 2023.</p><p>From this experience, I learned how to use my skills to foster communications and cooperation among the local community, staying active also during challenging times, exploring new topics, encouraging team-building and engaging new members with the association.</p><p>I believe it is a natural step forward for me now to get more involved with EAGE at the Board level and I am eager to make available my experience and energy for the benefit of the members of the association.</p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-23b58db elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="23b58db" 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-330adbd" data-id="330adbd" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9aec211 elementor-absolute elementor-widget elementor-widget-menu-anchor" data-id="9aec211" data-element_type="widget" data-settings="{&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="menu-anchor.default"> <div class="elementor-widget-container"> <div class="elementor-menu-anchor" id="Florina"></div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-cb2dea4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="cb2dea4" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;tilt&quot;}"> <div class="elementor-shape elementor-shape-bottom" data-negative="false"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"> <path class="elementor-shape-fill" d="M0,6V0h1000v100L0,6z"/> </svg> </div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e6cbf42" data-id="e6cbf42" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-67f1a89 elementor-widget elementor-widget-image" data-id="67f1a89" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img decoding="async" src="https://eage.org/wp-content/uploads/2020/09/Florina-Tuluca.jpeg?w=800" title="Florina-Tuluca" alt="Florina-Tuluca" loading="lazy" /> </div> </div> <div class="elementor-element elementor-element-f946a0f elementor-widget elementor-widget-heading" data-id="f946a0f" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Florina Tuluca</h2> </div> </div> <div class="elementor-element elementor-element-4eff8fa elementor-widget elementor-widget-heading" data-id="4eff8fa" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Candidate for Vice-Chair Near Surface Geoscience Circle</h3> </div> </div> <div class="elementor-element elementor-element-eb71343 elementor-widget elementor-widget-text-editor" data-id="eb71343" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center">Currently Lecturer at the Faculty of Geology and Geophysics, University of Bucharest</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-dc8c16d" data-id="dc8c16d" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4c30ee8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4c30ee8" 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-f060f71 video_ballot_2021_txt_mobile_pos" data-id="f060f71" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9186965 elementor-widget elementor-widget-text-editor" data-id="9186965" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>I start by emphasizing the honour I feel for the nomination and for being considered as a candidate to become a Board member at the EAGE, as over the past 18 years the EAGE activity positively influenced my career and personal growth in the field of geosciences.</p><p>18 years ago, while I was a student, I attended for the first time the Annual Meeting of EAGE. That first encounter with the sphere of EAGE was quite important for my career and the overall experience as a participant at the EAGE events and serving in the NSG Circle made me appreciate even more the EAGE mission, the value it provides, the importance of a geoscientific association to the society and the work of the people behind all the EAGE fantastic actions.</p><p>I believe that my technical background, my international experience in NGOs and professional associations (Balkan Geophysical Society &amp; Romanian Society of Applied Geophysics), and my track record in leading changes in the geoscientific community of Romania will bring a valuable contribution to the work of the EAGE in these times of significant and rapid changes both for the industry as well as for the academic world.</p><p>I was part of the group that made a brave decision and founded, in 2012, the Romanian Society of Applied Geophysics (SGAR). Through the work, I’ve done in the service of the community, in various roles, I won the appreciation of my colleagues who entrusted me presidency (2nd term) of this professional association, being the first woman to ever lead a geophysics society in Romania. I made this mention as I wanted to highlight that I’ve overcome the barrier of gender discrimination, which still affects the field of geoengineering, and brought my support to the development of the geoscientific community, leading the SGAR to bring positive impact to both young scientists and high skilled geo-engineers.</p><p>When I join a team, I am fully committed to the development and implementation of strategies and pursue the objectives. I hope I am going to have the honor to be part of the decision-makers group of EAGE as I would love to work in developing, even more, the strategic status that EAGE has in managing the relations between industry stakeholders and education in geosciences. I consider that only through a strong society as the EAGE it could be possible to bring value at an international level to the development of human resources in the field of geosciences, at this very moment when there should be a boost of registrations in the profile faculties of geophysics and geoengineering, but statistics show a decrease in the number of students walking on the geoscientific path.</p><p>Based on my professional as well as my experience as part of the NSG Circle members, I feel confident I can provide valuable assistance for EAGE future steps.</p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4381b92 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4381b92" 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-93cda49" data-id="93cda49" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-735d934 elementor-absolute elementor-widget elementor-widget-menu-anchor" data-id="735d934" data-element_type="widget" data-settings="{&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="menu-anchor.default"> <div class="elementor-widget-container"> <div class="elementor-menu-anchor" id="Maren"></div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-3fbe7eb elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3fbe7eb" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;tilt&quot;}"> <div class="elementor-shape elementor-shape-bottom" data-negative="false"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"> <path class="elementor-shape-fill" d="M0,6V0h1000v100L0,6z"/> </svg> </div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c0d8ab9" data-id="c0d8ab9" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-da00b24 elementor-widget elementor-widget-image" data-id="da00b24" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img decoding="async" src="https://eage.org/wp-content/uploads/2022/04/Maren_Kleemeyer.jpeg?w=800" title="Maren_Kleemeyer" alt="Maren_Kleemeyer" loading="lazy" /> </div> </div> <div class="elementor-element elementor-element-b290af5 elementor-widget elementor-widget-heading" data-id="b290af5" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Maren Kleemeyer</h2> </div> </div> <div class="elementor-element elementor-element-6752c01 elementor-widget elementor-widget-heading" data-id="6752c01" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Stands to be Re-Elected for Education Officer</h3> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ae03a2f" data-id="ae03a2f" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-cb76bc0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="cb76bc0" 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-af91056 video_ballot_2021_txt_mobile_pos" data-id="af91056" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-36034ea elementor-widget elementor-widget-text-editor" data-id="36034ea" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>We are living in unprecedented times of change and uncertainty, requiring our learning activities to respond quicker to current and emerging needs and technologies. Experienced professionals, academic experts, practitioners looking for new solutions and students searching for skills to master future challenges need to connect and support each other, enabling fast and effective learning – where could that happen better, if not in our community of Engineers and Geoscientists?</p><p>As Education Officer I want to continue the diversification of our educational program in terms of topics, instructors, and formats. As the industry moves through the Energy Transition, we as Geoscientists and Subsurface Engineers need to adapt quickly, demonstrating that our core skills remain highly relevant and can be efficiently transferred and expanded to new areas beyond the conventional exploration and production of Hydrocarbons. Our program therefore needs to offer a broadened spectrum, including new energies, energy storage, CO 2 sequestration and storage, geotechnical and near-surface applications, as well as data science – to name a few.</p><p>At the same time, our students and new professionals wonder how their jobs and roles might look like in the future and reach out for guidance and role models. As EAGE, we should leverage our diverse global expertise and insights, ensuring that our combined knowledge is well reflected in our course offerings and by our instructors. In parallel, our virtual and on-demand online educational offerings should be increased and enhanced to provide maximum flexibility to our learners and capture deep/niche knowledge, that does not find a large enough audience and might be lost otherwise.</p><p>I joined the EAGE more than 28 years ago as a student of Geophysics at Technical University of Clausthal/Germany and have enjoyed its wealth of experience, networking and educational opportunities ever since. After graduation, I started my career in the oil-and-gas industry in 1994 and worked in several locations around Europe as Processing- and Reservoir Geophysicist, as well as Team Lead for Shell and its Joint Ventures. For the last 6 years, I have been responsible for the Geoscience courses in Shell as Learning Advisor. In addition to directing and facilitating classroom and virtual courses, a significant part of this role includes the development and refresh of engaging specialist and integrated, quality course content, working closely with Discipline Leaders, experts, and learners at all levels.</p><p>My engagement in the EAGE has evolved over time from conference-presenter to contributions as technical reviewer, chairperson, mentor and active member of the Education Committee for several years. Serving as Education officer is a great opportunity for me to continue this journey and to contribute with my demonstrated professional skills and experiences and my passion for learning.</p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-97a7221 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="97a7221" 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-40915a1" data-id="40915a1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a916c21 elementor-absolute elementor-widget elementor-widget-menu-anchor" data-id="a916c21" data-element_type="widget" data-settings="{&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="menu-anchor.default"> <div class="elementor-widget-container"> <div class="elementor-menu-anchor" id="Christian"></div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-59e1138 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="59e1138" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;tilt&quot;}"> <div class="elementor-shape elementor-shape-bottom" data-negative="false"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"> <path class="elementor-shape-fill" d="M0,6V0h1000v100L0,6z"/> </svg> </div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-fa9b1ae" data-id="fa9b1ae" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-14d5ef6 elementor-widget elementor-widget-image" data-id="14d5ef6" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img decoding="async" src="https://eage.org/wp-content/uploads/2024/05/Christian_Henke.jpg?w=800" title="Christian_Henke" alt="Christian_Henke" loading="lazy" /> </div> </div> <div class="elementor-element elementor-element-06be7dd elementor-widget elementor-widget-heading" data-id="06be7dd" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Christian Henke</h2> </div> </div> <div class="elementor-element elementor-element-2ae3fe7 elementor-widget elementor-widget-heading" data-id="2ae3fe7" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Candidate for Secretary-Treasurer</h3> </div> </div> <div class="elementor-element elementor-element-957c9f9 elementor-widget elementor-widget-text-editor" data-id="957c9f9" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center">Currently Managing Director at Henke Energy, advising on energy transition projects and E&amp;P innovations</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-df1e51e" data-id="df1e51e" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-145252e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="145252e" 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-403a62d video_ballot_2021_txt_mobile_pos" data-id="403a62d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2af7bef elementor-widget elementor-widget-text-editor" data-id="2af7bef" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>I am deeply honored to have been nominated to be the Secretary-Treasurer on the EAGE Board.</p><p>Our global society faces unprecedented challenges in the face of climate change and the imperative shift towards sustainable energy. EAGE stands as a beacon, offering a formidable platform to support and expedite the necessary transformations. The promotion of geoscientific and engineering advancements and their practical applications is now more vital than ever.</p><p>Through numerous conferences, workshops, exhibitions, and educational programmes, EAGE has created excellent opportunities for information exchange, interdisciplinary and international collaboration, and knowledge transfer for its members and supporters. As a member since 1987, I have continuously benefited from its offerings. From 2014 to 2022, I was actively involved as Chairman of the EAGE PACE Committee.</p><p>As a dedicated geoscientist and energy sector expert with extensive international experience, I possess a diverse skill set that includes proficiency in business processes and personnel and technology management. Additionally, I bring a strong combination of financial expertise and forward-thinking strategic planning, underscored by a steadfast dedication to transparency and accountability.</p><p>I am excited to contribute to and enhance these offerings for the members. I am committed to utilising my expertise, experience, and enthusiasm to elevate our association to new levels of excellence and influence.</p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-aeb1a1a" data-id="aeb1a1a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-e4431ac elementor-section-full_width elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-phone elementor-section-height-default elementor-section-height-default" data-id="e4431ac" 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-inner-column elementor-element elementor-element-ddd84b2" data-id="ddd84b2" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6c908ea 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="6c908ea" 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"> <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-cd0a22b elementor-align-right elementor-widget elementor-widget-button" data-id="cd0a22b" 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-xs" href="https://eage.org/eage_news/eage-news-archive/"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <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> </span> <span class="elementor-button-text">Read more news</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-d1c43fc elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="d1c43fc" 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-inner-column elementor-element elementor-element-9902ff0" data-id="9902ff0" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a31625d 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="a31625d" 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"> <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 </span> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-ad5e802 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="ad5e802" 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-33645f9" 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> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-fd42255 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="fd42255" 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-inner-column elementor-element elementor-element-af89554 ad_skyscraper_column" data-id="af89554" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9a5c799 elementor-hidden-mobile elementor-widget elementor-widget-html" data-id="9a5c799" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <!-- /20287594127/WP_EAGE_skyscraper --> <div id='div-gpt-ad-1736434310611-0' style='min-width: 310px; min-height: 360px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1736434310611-0'); }); </script> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </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-mobile 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="EAGE_logo_diap_bijschrift" 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-9833602 elementor-widget elementor-widget-text-editor" data-id="9833602" 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> </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="EAGE_logo_diap_bijschrift" 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="Award-Spinning-coin-" 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> </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 current-menu-ancestor 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 current-menu-ancestor current-menu-parent 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 current-menu-item menu-item-20411"><a href="https://eage.org/about_eage/ballot/" aria-current="page" class="elementor-sub-item elementor-item-active">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 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 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 menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" class="elementor-sub-item">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> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-26566"><a href="https://eage.org/communities/geoscience-communication-and-public-engagement/" class="elementor-sub-item">Geoscience Communication and Public Engagement</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> </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 current-menu-ancestor 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 current-menu-ancestor current-menu-parent 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 current-menu-item menu-item-20411"><a href="https://eage.org/about_eage/ballot/" aria-current="page" class="elementor-sub-item elementor-item-active" 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 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 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 menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" class="elementor-sub-item" 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> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-26566"><a href="https://eage.org/communities/geoscience-communication-and-public-engagement/" class="elementor-sub-item" tabindex="-1">Geoscience Communication and Public Engagement</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> </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> </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> <li id="menu-item-26565" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-26565"><a href="https://eage.org/communities/geoscience-communication-and-public-engagement/">Geoscience Communication and Public Engagement</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</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</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</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</a></li> </ul> </li> <li id="menu-item-1585" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom 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 menu-item-9424"><a href="https://eage.org/events/calendar-of-online-events/">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="EAGE_logo" 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="Mobile_MenuIcon_closing" 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> </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 current-menu-ancestor 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 current-menu-ancestor current-menu-parent 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 current-menu-item menu-item-20411"><a href="https://eage.org/about_eage/ballot/" aria-current="page" class="elementor-sub-item elementor-item-active" 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 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 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 menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" class="elementor-sub-item" 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> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-26566"><a href="https://eage.org/communities/geoscience-communication-and-public-engagement/" class="elementor-sub-item" tabindex="-1">Geoscience Communication and Public Engagement</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> </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 current-menu-ancestor current-menu-parent 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 current-menu-item menu-item-19501"><a href="https://eage.org/about_eage/ballot/" aria-current="page">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> 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> <link rel='stylesheet' id='elementor-post-3293-css' href='https://eage.org/wp-content/uploads/elementor/css/post-3293.css?ver=1737636878' 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/_static/??/wp-content/plugins/elementor-pro/assets/css/modules/motion-fx.css,/wp-content/plugins/revslider/public/assets/css/rs6.css?m=1734649861' 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/??-eJyVyzEOwjAMQNEL0RoIAnVAnKVNLHBI7BDHoN6eiokBkJj/+/AonRduyA1KsjOxQsW7JgpYodiUyMOoik0hLmlqIkn7TNxHXcGft+7fT2KfLOArxZthncEIvFT8LTKyfRKBtEGQ3FUcw/xVXESuutRTPm4ObtgOO+fW8QkIBmGH" ></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/??-eJytjUsOwjAMBS9Ea6BIqAvELdiiNDHIUT4mTtRye1LCFrFB8sJ6bzyGmTsK2hWDArbOo2B6QiFQJUcdPTvM2FvZQCV1DBlDBnblTkFAhfvMoEQwCxiS3JJ+KsG4H1efr4BLLYViLYTTVUdX/Ao1qW0phQvhzDHlP0lZJeWcWnpP4auSu7Z2ohNxxgi39GbMqphE9VqlWARdVZz9aXccxv14GIatfQFI+IK2" ></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=1739294330j" ></script><script type="text/javascript" src="https://stats.wp.com/e-202508.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\":\"5248\",\"tz\":\"0\",\"srv\":\"eage.org\",\"hp\":\"vip\",\"j\":\"1:14.2.1\"}") ]); _stq.push([ "clickTrackerInit", "172520282", "5248" ]); /* ]]> */ </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/_static/??-eJydzcsKwkAMBdAfchqrUO1C/JZ5RE2dF8lMi39vlYobQXEXkpx7YcrKplgwFsi+nikKaOeUoGZ7USWpgLFCrsaThUGAxsS35dwEis0gK/gQgh5nWRKDFsEi4MmATJSRYdwv01esMqdXwFw+ocnaXh/bhmssFPDn/jf/h574+eRUSK56lNkew6HdbftN17frbrgDe+R7rA==" ></script><script type="text/javascript" id="elementor-pro-frontend-js-before"> /* <![CDATA[ */ var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","nonce":"4806ced75e","urls":{"assets":"https:\/\/eage.org\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/eage.org\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":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.26.1" 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","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.27.3","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"container":true,"e_swiper_latest":true,"e_onboarding":true,"theme_builder_v2":true,"home_screen":true,"landing-pages":true,"nested-elements":true,"editor_v2":true,"link-in-bio":true,"floating-buttons":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":"6d440d24d4"},"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":5248,"title":"Ballot%20-%20eage.org","excerpt":"","featuredImage":"https:\/\/eage.org\/wp-content\/uploads\/2020\/04\/Template_RevSlider_BG.jpg?w=800"}}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-content/plugins/elementor/assets/js/frontend.js?ver=3.27.3" 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/ItSESxAPxW1aosEvZNm0Nvy8x0XDwwm1mMu/BKqHn4lgchF5jKgZIuGydNYgyRDN0g/zbLUyxDIRq52wn+CMQXlEl9nP4IjvLUz/v4ThM6QHOTJ7EHHWfN9l96arrpW7qW9tU+Q1R71H6" ></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