CINXE.COM
ISEE 2024 36th Annual ISEE Conference in Santiago, Chile – August 25-28, 2024
<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /> <title>ISEE 2024 36th Annual ISEE Conference in Santiago, Chile – August 25-28, 2024</title> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" type="application/rss+xml" title="ISEE 2024 36th Annual ISEE Conference in Santiago, Chile - August 25-28, 2024 » Feed" href="https://iseeconference.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="ISEE 2024 36th Annual ISEE Conference in Santiago, Chile - August 25-28, 2024 » Comments Feed" href="https://iseeconference.org/comments/feed/" /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/iseeconference.org\/wp-includes\/js\/wp-emoji.js?ver=6.3","twemoji":"https:\/\/iseeconference.org\/wp-includes\/js\/twemoji.js?ver=6.3"}}; /** * @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': /* * Why can't we be friends? Everyone can now shake hands in emoji, regardless of skin tone! * * To test for Emoji 14.0 support, try to render a new emoji: Handshake: Light Skin Tone, Dark Skin Tone. * * The Handshake: Light Skin Tone, Dark Skin Tone emoji is a ZWJ sequence combining 🫱 Rightwards Hand, * 🏻 Light Skin Tone, a Zero Width Joiner, 🫲 Leftwards Hand, and 🏿 Dark Skin Tone. * * 0x1FAF1 == Rightwards Hand * 0x1F3FB == Light Skin Tone * 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. * 0x1FAF2 == Leftwards Hand * 0x1F3FF == Dark Skin Tone. * * 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, '\uD83E\uDEF1\uD83C\uDFFB\u200D\uD83E\uDEF2\uD83C\uDFFF', // as the zero-width joiner sequence '\uD83E\uDEF1\uD83C\uDFFB\u200B\uD83E\uDEF2\uD83C\uDFFF' // 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 type="text/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='bdt-uikit-css' href='https://iseeconference.org/wp-content/plugins/bdthemes-element-pack/assets/css/bdt-uikit.css?ver=3.15.1' type='text/css' media='all' /> <link rel='stylesheet' id='ep-helper-css' href='https://iseeconference.org/wp-content/plugins/bdthemes-element-pack/assets/css/ep-helper.css?ver=6.15.5' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-css' href='https://iseeconference.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.css?ver=4.7.0' type='text/css' media='all' /> <link rel='stylesheet' id='tf-header-footer-style-css' href='https://iseeconference.org/wp-content/plugins/tf-header-footer/assets/css/tf-style.css?ver=6.3' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/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' type='text/css'> body{--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-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{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;} .wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;} :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;} .wp-block-pullquote{font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='logo-owl-css' href='https://iseeconference.org/wp-content/plugins/vcx-theme-core/assets/owl.carousel2/owl.carousel.css?ver=6.3' type='text/css' media='all' /> <link rel='stylesheet' id='logo-owltheme-css' href='https://iseeconference.org/wp-content/plugins/vcx-theme-core/assets/owl.carousel2/owl.theme.default.min.css?ver=6.3' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap-css' href='https://iseeconference.org/wp-content/themes/emeet/assets/vendor/bootstrap/css/bootstrap.min.css?ver=6.3' type='text/css' media='all' /> <link rel='stylesheet' id='animate-css' href='https://iseeconference.org/wp-content/themes/emeet/assets/css/animate.css?ver=6.3' type='text/css' media='all' /> <link rel='stylesheet' id='jquery-smartmenus-bootstrap-css' href='https://iseeconference.org/wp-content/themes/emeet/assets/css/jquery.smartmenus.bootstrap.css?ver=6.3' type='text/css' media='all' /> <link rel='stylesheet' id='emeet-main-style-css' href='https://iseeconference.org/wp-content/themes/emeet/assets/css/main-style.min.css?ver=1.1.2' type='text/css' media='all' /> <link rel='stylesheet' id='emeet-style-css' href='https://iseeconference.org/wp-content/themes/emeet/style.css?ver=6.3' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-css' href='https://iseeconference.org/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.css?ver=5.30.0' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://iseeconference.org/wp-content/plugins/elementor/assets/css/frontend.css?ver=3.23.3' type='text/css' media='all' /> <link rel='stylesheet' id='swiper-css' href='https://iseeconference.org/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.css?ver=8.4.5' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-5-css' href='https://iseeconference.org/wp-content/uploads/elementor/css/post-5.css?ver=1722250459' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-pro-css' href='https://iseeconference.org/wp-content/plugins/elementor-pro/assets/css/frontend.css?ver=3.12.3' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-global-css' href='https://iseeconference.org/wp-content/uploads/elementor/css/global.css?ver=1722250461' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-15-css' href='https://iseeconference.org/wp-content/uploads/elementor/css/post-15.css?ver=1724531249' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-119-css' href='https://iseeconference.org/wp-content/uploads/elementor/css/post-119.css?ver=1722250461' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-140-css' href='https://iseeconference.org/wp-content/uploads/elementor/css/post-140.css?ver=1722250461' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-345-css' href='https://iseeconference.org/wp-content/uploads/elementor/css/post-345.css?ver=1723209719' 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%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.3' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://iseeconference.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css?ver=5.15.3' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://iseeconference.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css?ver=5.15.3' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-fa-brands-css' href='https://iseeconference.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css?ver=5.15.3' type='text/css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type='text/javascript' src='https://iseeconference.org/wp-includes/js/jquery/jquery.js?ver=3.7.0' id='jquery-core-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1' id='jquery-migrate-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/vcx-theme-core/assets/js/jquery.magnific-popup.js?ver=6.3' id='jquery-magnific-popup-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/vcx-theme-core/assets/js/countdown.js?ver=6.3' id='countdown-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/vcx-theme-core/assets/js/instafeed.min.js?v=1.0.0&ver=6.3' id='instafeed-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/vcx-theme-core/assets/js/header-parallax.js?v=1.0.0&ver=6.3' id='vcx-parallax-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/vcx-theme-core/assets/js/particles.min.js?ver=6.3' id='particles-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/vcx-theme-core/assets/js/vcparticlesbackground.js?v=1.0.0&ver=6.3' id='vcx-particles-bg-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/vcx-theme-core/assets/owl.carousel2/owl.carousel2/owl.carousel.js?ver=6.3' id='logoowljs-js'></script> <script type='text/javascript' id='vcx_script-js-extra'> /* <![CDATA[ */ var vcxDataObj = {"review_rtl":"false","vcx_url":"https:\/\/iseeconference.org\/wp-content\/plugins\/vcx-theme-core\/assets\/"}; /* ]]> */ </script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/vcx-theme-core/assets/js/theme-core-script.js?v=1.1.0&ver=6.3' id='vcx_script-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-includes/js/imagesloaded.min.js?ver=4.1.4' id='imagesloaded-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-includes/js/masonry.min.js?ver=4.2.2' id='masonry-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/themes/emeet/assets/js/bootstrap.min.js?ver=1.0' id='bootstrap-js'></script> <link rel="https://api.w.org/" href="https://iseeconference.org/wp-json/" /><link rel="alternate" type="application/json" href="https://iseeconference.org/wp-json/wp/v2/pages/15" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://iseeconference.org/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.3" /> <link rel="canonical" href="https://iseeconference.org/" /> <link rel='shortlink' href='https://iseeconference.org/' /> <link rel="alternate" type="application/json+oembed" href="https://iseeconference.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fiseeconference.org%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://iseeconference.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fiseeconference.org%2F&format=xml" /> <meta name="generator" content="Elementor 3.23.3; features: e_optimized_css_loading, additional_custom_breakpoints, e_lazyload; settings: css_print_method-external, google_font-enabled, font_display-swap"> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-WZ5TD79');</script> <!-- End Google Tag Manager --> <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> <meta name="generator" content="Powered by Slider Revolution 6.6.12 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <link rel="icon" href="https://iseeconference.org/wp-content/uploads/2023/08/isee-logo-1-150x150.jpg" sizes="32x32" /> <link rel="icon" href="https://iseeconference.org/wp-content/uploads/2023/08/isee-logo-1-200x200.jpg" sizes="192x192" /> <link rel="apple-touch-icon" href="https://iseeconference.org/wp-content/uploads/2023/08/isee-logo-1-200x200.jpg" /> <meta name="msapplication-TileImage" content="https://iseeconference.org/wp-content/uploads/2023/08/isee-logo-1.jpg" /> <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="home page-template page-template-page-template page-template-tpl-home-page-default page-template-page-templatetpl-home-page-default-php page page-id-15 wp-custom-logo elementor-default elementor-kit-5 elementor-page elementor-page-15 elementor-page-345"> <!-- FAVICON AND TOUCH ICONS --> <link rel="shortcut icon" type="image/x-icon" href="https://iseeconference.org/wp-content/uploads/2023/09/favicon.ico"/><!-- this icon shows in browser toolbar --> <link rel="icon" type="image/x-icon" href="https://iseeconference.org/wp-content/uploads/2023/09/favicon.ico"/><!-- this icon shows in browser toolbar --> <link rel="icon" type="image/png" sizes="192x192" href="https://iseeconference.org/wp-content/uploads/2023/09/fav-icon.png"> <link rel="apple-touch-icon" sizes="180x180" href="https://iseeconference.org/wp-content/uploads/2023/09/fav-icon.png"> <link rel="apple-touch-icon" sizes="152x152" href="https://iseeconference.org/wp-content/uploads/2023/09/fav-icon.png"> <link rel="apple-touch-icon" sizes="144x144" href="https://iseeconference.org/wp-content/uploads/2023/09/fav-icon.png"> <link rel="apple-touch-icon" sizes="120x120" href="https://iseeconference.org/wp-content/uploads/2023/09/fav-icon.png"> <link rel="apple-touch-icon" sizes="114x114" href="https://iseeconference.org/wp-content/uploads/2023/09/fav-icon.png"> <link rel="icon" type="image/png" sizes="96x96" href="https://iseeconference.org/wp-content/uploads/2023/09/fav-icon.png"> <link rel="apple-touch-icon" sizes="76x76" href="https://iseeconference.org/wp-content/uploads/2023/09/fav-icon.png"> <link rel="apple-touch-icon" sizes="72x72" href="https://iseeconference.org/wp-content/uploads/2023/09/fav-icon.png"> <link rel="apple-touch-icon" sizes="60x60" href="https://iseeconference.org/wp-content/uploads/2023/09/fav-icon.png"> <link rel="apple-touch-icon" sizes="57x57" href="https://iseeconference.org/wp-content/uploads/2023/09/fav-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="https://iseeconference.org/wp-content/uploads/2023/09/fav-icon.png"> <link rel="icon" type="image/png" sizes="16x16" href="https://iseeconference.org/wp-content/uploads/2023/09/fav-icon.png"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap" rel="stylesheet"> <link rel="stylesheet" id="langLtr" href="https://iseeconference.org/wp-content/themes/emeet/assets/css/xsIcon.css" /> <link rel="stylesheet" id="langLtr" href="https://iseeconference.org/wp-content/themes/emeet/assets/css/custom-bootstrap-margin-padding.css" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <style> .bg-white{background:#fff !important;} .section-padding{padding:90px 0px;} .site-footer { position: relative; display: block; background-color: var(--insur-black); z-index: 1; } :root { --insur-font: 'DM Sans', sans-serif; --insur-reey-font: "reeyregular"; --insur-gray: #696e77; --insur-gray-rgb: 105, 110, 119; --insur-white: #ffffff; --insur-white-rgb: 255, 255, 255; --insur-base: #e31a1d; --insur-base-rgb: 229,144,0; --insur-black: #16243d; --insur-black-rgb: 22, 36, 61; --insur-primary: #f7a822; --insur-primary-rgb: 247,168,34; --insur-extra: #f2f5f9; --insur-extra-rgb: 242, 245, 249; --insur-bdr-color: #e0e4e8; --insur-bdr-color-rgb: 224, 228, 232; --insur-bdr-radius: 10px; --insur-letter-spacing: -0.02em; } :root { --insur-font: 'DM Sans', sans-serif; --insur-reey-font: "reeyregular"; --insur-gray: #696e77; --insur-gray-rgb: 105, 110, 119; --insur-white: #ffffff; --insur-white-rgb: 255, 255, 255; --insur-base: #e31a1d; --insur-base-rgb: 229,144,0; --insur-black: #16243d; --insur-black-rgb: 22, 36, 61; --insur-primary: #f7a822; --insur-primary-rgb: 247,168,34; --insur-extra: #f2f5f9; --insur-extra-rgb: 242, 245, 249; --insur-bdr-color: #e0e4e8; --insur-bdr-color-rgb: 224, 228, 232; --insur-bdr-radius: 10px; --insur-letter-spacing: -0.02em; } body { font-family: var(--insur-font) !important;} .icon-magnifying-glass:before { content: "\e900"; } .icon-right-arrow:before { content: "\e901"; } .icon-right-arrow1:before { content: "\e902"; } .icon-up-arrow:before { content: "\e903"; } .icon-down-arrow:before { content: "\e904"; } .icon-cashback:before { content: "\e905"; } .icon-insurance:before { content: "\e906"; } .icon-house:before { content: "\e907"; } .icon-family:before { content: "\e908"; } .icon-drive:before { content: "\e909"; } .icon-home:before { content: "\e90a"; } .icon-heart-beat:before { content: "\e90b"; } .icon-fire:before { content: "\e90c"; } .icon-briefcase:before { content: "\e90d"; } .icon-ring:before { content: "\e90e"; } .icon-plane:before { content: "\e90f"; } .icon-easy-to-use:before { content: "\e910"; } .icon-policy:before { content: "\e911"; } .icon-contract:before { content: "\e912"; } .icon-fund:before { content: "\e913"; } .icon-group:before { content: "\e914"; } .icon-insurance-1:before { content: "\e915"; } .icon-success:before { content: "\e916"; } .icon-life-insurance:before { content: "\e917"; } .icon-folder:before { content: "\e918"; } .icon-telephone:before { content: "\e919"; } .icon-email:before { content: "\e91a"; } .icon-telephone-call:before { content: "\e91b"; } .icon-pin:before { content: "\e91c"; } .icon-cash-flow:before { content: "\e91d"; } .icon-profits:before { content: "\e91e"; } .icon-insurance-2:before { content: "\e91f"; } .icon-select:before { content: "\e920"; } .icon-meeting:before { content: "\e921"; } .icon-agreement:before { content: "\e922"; } .icon-insurance-agent:before { content: "\e923"; } .icon-tick:before { content: "\e924"; } .icon-money-back:before { content: "\e925"; } .icon-employees:before { content: "\e926"; } .icon-mission:before { content: "\e927"; } .icon-computer:before { content: "\e928"; } .icon-chat:before { content: "\e929"; } .icon-file:before { content: "\e92a"; } .icon-plus:before { content: "\e92b"; } .icon-shield:before { content: "\e92c"; } @media print, screen and (min-width: 600px){ .cky-consent-bar {width: 600px;margin-left:auto;margin-right:auto;} .cky-notice-group{display:inline-block !important;width:100%;} } .cky-consent-container{height:100vh;background-color: rgba(10,10,10,.45);overflow-y: scroll; left:0px !important;bottom:0px;width:100%;} .cky-btn.cky-btn-accept{background:#51AC31 !important;border-color:#51AC31 !important;} .cky-btn.cky-btn-customize{background:#E41A1D !important;border-color:#E41A1D !important;color:#fff !important;} [data-cky-tag="detail-powered-by"]{display:none !important;} .cky-prefrence-btn-wrapper{display:flex !important;} </style> <div data-elementor-type="header" data-elementor-id="119" class="elementor elementor-119 elementor-location-header"> <div class="elementor-section-wrap"> <section class="elementor-section elementor-top-section elementor-element elementor-element-c38d0a0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="c38d0a0" data-element_type="section"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-61659b0" data-id="61659b0" 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-517ca53 header-social" data-id="517ca53" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-38805d4 e-grid-align-right elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="38805d4" 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-10c384b" href="https://www.facebook.com/ISEEglobal" 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-725bad9" href="https://twitter.com/ISEE_global" 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-linkedin elementor-repeater-item-1ce9ff6" href="https://www.linkedin.com/company/54109816" 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-7970666" href="https://www.youtube.com/channel/UCzW7ZAgwM-h0wWFEESbLlWA" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-a439e91" data-id="a439e91" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-afddaa3 elementor-widget elementor-widget-heading" data-id="afddaa3" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h5 class="elementor-heading-title elementor-size-default">#ISEE2024</h5> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-5250a41 menu-header elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5250a41" data-element_type="section"> <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-a5d2d90" data-id="a5d2d90" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a3a7075 elementor-widget__width-initial elementor-widget elementor-widget-theme-site-logo elementor-widget-image" data-id="a3a7075" data-element_type="widget" data-widget_type="theme-site-logo.default"> <div class="elementor-widget-container"> <div class="elementor-image"> <a href="https://iseeconference.org"> <img fetchpriority="high" width="250" height="253" src="https://iseeconference.org/wp-content/uploads/2023/08/isee-logo-1.jpg" class="attachment-full size-full wp-image-359" alt="" /> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-df80600" data-id="df80600" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5c2fe3f elementor-widget__width-initial elementor-widget elementor-widget-tf-nav-menu" data-id="5c2fe3f" data-element_type="widget" data-widget_type="tf-nav-menu.default"> <div class="elementor-widget-container"> <div class="tf-nav-menu tf-alignment-right horizontal menu-panel-style-default tf_link_effect_none tf_animation_line_ tf-nav-67d3ee09c37b8" data-id_random="tf-nav-67d3ee09c37b8"> <div class="nav-panel mobile-menu-alignment-center"> <div class="wrap-logo-nav"><a href="https://iseeconference.org/" class="logo-nav"> <img src="https://iseeconference.org/wp-content/uploads/2023/08/isee-logo-1.jpg" alt="ISEE 2024 36th Annual ISEE Conference in Santiago, Chile - August 25-28, 2024"></a></div> <div class="mainnav-mobi"><div class="menu-container tf-menu-container"><ul id="menu-main-menu" class="menu"><li id="menu-item-109" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-109"><a>ABOUT THE CONFERENCE<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-91" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-91"><a href="https://iseeconference.org/about-the-conference/welcome-address/">Welcome Address<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-86" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-86"><a href="https://iseeconference.org/about-the-conference/committees/">Committees<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-93" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-93"><a href="https://iseeconference.org/about-the-conference/key-dates/">Key Dates<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-89" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-89"><a href="https://iseeconference.org/about-the-conference/general-information/">General Information<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1836" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1836"><a href="https://iseeconference.org/explore-santiago/">Explore Santiago<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2023" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2023"><a href="https://iseeconference.org/about-the-conference/visa-travel-information/">Visa Information<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-5006" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5006"><a href="https://iseeconference.org/code-of-conduct-at-isee-2024/">Code of Conduct at ISEE 2024<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-88" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-88"><a href="https://iseeconference.org/about-the-conference/contact-us/">Contact Us<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-110" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-110"><a>SCIENTIFIC INFORMATION<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-4099" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-4099"><a href="https://iseeconference.org/scientific-program/">Scientific Program<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-4103" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4103"><a href="https://iseeconference.org/august-25-2024-sunday/">August 25, 2024 – SUNDAY<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-4102" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4102"><a href="https://iseeconference.org/august-26-2024-monday/">August 26, 2024 – MONDAY<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-4101" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4101"><a href="https://iseeconference.org/august-27-2024-tuesday/">August 27, 2024 – TUESDAY<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-4100" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4100"><a href="https://iseeconference.org/august-28-2024-wednesday/">August 28, 2024 – WEDNESDAY<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-1761" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1761"><a href="https://iseeconference.org/scientific-information/pre-conference-workshops/">Pre-Conference Workshops<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-4367" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4367"><a href="https://iseeconference.org/sponsored-collaboration-workshop/">Sponsored Collaboration Workshop<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-4992" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4992"><a href="https://iseeconference.org/townhall/">Town Hall<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2368" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2368"><a href="https://iseeconference.org/scientific-information/keynote-speakers/">Keynote Speakers<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2820" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2820"><a href="https://iseeconference.org/scientific-information/presenter-guidelines/">Presenter Guidelines<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-3791" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3791"><a href="https://iseeconference.org/scientific-information/conference-abstracts/">Conference Abstracts<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-3812" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3812"><a href="https://iseeconference.org/scientific-information/virtual-platform/">Virtual Platform<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-105" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-105"><a href="https://iseeconference.org/scientific-information/types-of-sessions/">Types of Sessions<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1756" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1756"><a href="https://iseeconference.org/main-topics-keywords-for-abstracts/">Main Topics & Keywords for Abstracts<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-5164" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5164"><a href="https://iseeconference.org/conference-e-books/">Conference E-Book<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-980" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-980"><a href="https://iseeconference.org/submissions/">SUBMISSIONS<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-2448" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2448"><a href="https://iseeconference.org/submissions/call-for-late-breaking-abstracts/">Call for Late-Breaking Abstracts<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1027" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1027"><a href="https://iseeconference.org/abstract_submissions/">Call for Abstracts<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1026" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1026"><a href="https://iseeconference.org/symposia_submissions/">Call for Symposia<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1025" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1025"><a href="https://iseeconference.org/workshop_submissions/">Call for Pre-Conference Workshops<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2545" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2545"><a href="https://iseeconference.org/abstract_review-2/">Call for Abstract Reviewers<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1275" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1275"><a href="https://iseeconference.org/session_chairs/">Call for Session Chairs<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-111" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-111"><a>REGISTRATION HOTELS & TRAVEL<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-2281" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2281"><a href="https://iseeconference.org/registration/">Registration<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2782" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2782"><a href="https://iseeconference.org/alternative-hotels/">Alternative Hotels<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2461" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2461"><a href="https://iseeconference.org/stay-at-the-hq-hotel/">Stay at the HQ Hotel<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1391" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1391"><a href="https://iseeconference.org/isee-2024-travel-awards/">ISEE 2024 Travel Awards<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-112" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-112"><a>SOCIAL PROGRAM<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-102" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-102"><a href="https://iseeconference.org/social-activities-events/">Social Activities & Events<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-113" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-113"><a>SPONSORSHIP & EXHIBITION<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-104" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-104"><a href="https://iseeconference.org/support-opportunities/">Support Opportunities<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2089" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2089"><a href="https://iseeconference.org/confirmed-supporters/">Confirmed Supporters<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-114" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-114"><a>USEFUL LINKS<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-717" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-717"><a href="https://iseeconference.org/promotional-toolkit/">Promotional Toolkit<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-78" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-78"><a href="https://iseeconference.org/about-isee/">About ISEE<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> </ul></div></div> <div class="wrap-close-menu-panel-style-default"><button class="close-menu-panel-style-default"><i class="fas fa-times"></i></button></div> </div> <div class="mainnav nav"><div class="menu-container tf-menu-container"><ul id="menu-main-menu" class="menu"><li id="menu-item-109" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-109"><a>ABOUT THE CONFERENCE<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-91" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-91"><a href="https://iseeconference.org/about-the-conference/welcome-address/">Welcome Address<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-86" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-86"><a href="https://iseeconference.org/about-the-conference/committees/">Committees<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-93" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-93"><a href="https://iseeconference.org/about-the-conference/key-dates/">Key Dates<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-89" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-89"><a href="https://iseeconference.org/about-the-conference/general-information/">General Information<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1836" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1836"><a href="https://iseeconference.org/explore-santiago/">Explore Santiago<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2023" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2023"><a href="https://iseeconference.org/about-the-conference/visa-travel-information/">Visa Information<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-5006" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5006"><a href="https://iseeconference.org/code-of-conduct-at-isee-2024/">Code of Conduct at ISEE 2024<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-88" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-88"><a href="https://iseeconference.org/about-the-conference/contact-us/">Contact Us<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-110" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-110"><a>SCIENTIFIC INFORMATION<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-4099" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-4099"><a href="https://iseeconference.org/scientific-program/">Scientific Program<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-4103" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4103"><a href="https://iseeconference.org/august-25-2024-sunday/">August 25, 2024 – SUNDAY<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-4102" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4102"><a href="https://iseeconference.org/august-26-2024-monday/">August 26, 2024 – MONDAY<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-4101" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4101"><a href="https://iseeconference.org/august-27-2024-tuesday/">August 27, 2024 – TUESDAY<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-4100" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4100"><a href="https://iseeconference.org/august-28-2024-wednesday/">August 28, 2024 – WEDNESDAY<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-1761" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1761"><a href="https://iseeconference.org/scientific-information/pre-conference-workshops/">Pre-Conference Workshops<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-4367" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4367"><a href="https://iseeconference.org/sponsored-collaboration-workshop/">Sponsored Collaboration Workshop<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-4992" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4992"><a href="https://iseeconference.org/townhall/">Town Hall<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2368" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2368"><a href="https://iseeconference.org/scientific-information/keynote-speakers/">Keynote Speakers<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2820" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2820"><a href="https://iseeconference.org/scientific-information/presenter-guidelines/">Presenter Guidelines<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-3791" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3791"><a href="https://iseeconference.org/scientific-information/conference-abstracts/">Conference Abstracts<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-3812" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3812"><a href="https://iseeconference.org/scientific-information/virtual-platform/">Virtual Platform<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-105" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-105"><a href="https://iseeconference.org/scientific-information/types-of-sessions/">Types of Sessions<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1756" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1756"><a href="https://iseeconference.org/main-topics-keywords-for-abstracts/">Main Topics & Keywords for Abstracts<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-5164" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5164"><a href="https://iseeconference.org/conference-e-books/">Conference E-Book<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-980" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-980"><a href="https://iseeconference.org/submissions/">SUBMISSIONS<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-2448" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2448"><a href="https://iseeconference.org/submissions/call-for-late-breaking-abstracts/">Call for Late-Breaking Abstracts<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1027" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1027"><a href="https://iseeconference.org/abstract_submissions/">Call for Abstracts<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1026" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1026"><a href="https://iseeconference.org/symposia_submissions/">Call for Symposia<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1025" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1025"><a href="https://iseeconference.org/workshop_submissions/">Call for Pre-Conference Workshops<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2545" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2545"><a href="https://iseeconference.org/abstract_review-2/">Call for Abstract Reviewers<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1275" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1275"><a href="https://iseeconference.org/session_chairs/">Call for Session Chairs<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-111" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-111"><a>REGISTRATION HOTELS & TRAVEL<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-2281" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2281"><a href="https://iseeconference.org/registration/">Registration<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2782" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2782"><a href="https://iseeconference.org/alternative-hotels/">Alternative Hotels<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2461" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2461"><a href="https://iseeconference.org/stay-at-the-hq-hotel/">Stay at the HQ Hotel<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-1391" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1391"><a href="https://iseeconference.org/isee-2024-travel-awards/">ISEE 2024 Travel Awards<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-112" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-112"><a>SOCIAL PROGRAM<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-102" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-102"><a href="https://iseeconference.org/social-activities-events/">Social Activities & Events<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-113" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-113"><a>SPONSORSHIP & EXHIBITION<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-104" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-104"><a href="https://iseeconference.org/support-opportunities/">Support Opportunities<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-2089" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2089"><a href="https://iseeconference.org/confirmed-supporters/">Confirmed Supporters<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> <li id="menu-item-114" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-114"><a>USEFUL LINKS<i class="fa fa-angle-right" aria-hidden="true"></i></a> <ul class="sub-menu"> <li id="menu-item-717" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-717"><a href="https://iseeconference.org/promotional-toolkit/">Promotional Toolkit<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> <li id="menu-item-78" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-78"><a href="https://iseeconference.org/about-isee/">About ISEE<i class="fa fa-angle-right" aria-hidden="true"></i></a></li> </ul> </li> </ul></div></div> <div class="mobile-menu-overlay"><button class="tf-close"><i class="fas fa-times"></i></button></div> <button class="btn-menu-mobile"> <span class="open-icon"><i class="fas fa-bars"></i></span> </button> <button class="btn-menu-only"> <span class="open-icon"><i class="fas fa-bars"></i></span> </button> </div> </div> </div> </div> </div> </div> </section> </div> </div> <div id="primary" class="content-area"> <main id="main" class="site-main"> <div id="lgx-page-wrapper" class="lgx-home-wrapper"> <div class="container2"> <article id="post-15" > <div class="entry-content"> <div data-elementor-type="wp-page" data-elementor-id="15" class="elementor elementor-15"> <section class="elementor-section elementor-top-section elementor-element elementor-element-cc6dcc4 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="cc6dcc4" 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-26fa54b" data-id="26fa54b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9f24d0a elementor-widget elementor-widget-html" data-id="9f24d0a" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <div class="meeta-hero-section-3 d-flex align-items-center" style="background-image: url(https:///iseeconference.org/wp-content/uploads/2023/08/banner-img.jpg);"> <div class="container"> <div class="row align-items-center"> <div class="col-lg-6"> <div class="meeta-hero-content"> <h3 class="title mb-0" style="font-size:30px" data-aos-delay="500" data-aos="fade-up">August 25-28, 2024</h3> <h2 class="title mb-0" data-aos-delay="800" data-aos="fade-up">36<sup>th</sup> Annual Conference of the International Society for Environmental Epidemiology</h2> <h3 class="title mb-0" style="font-size:30px" data-aos-delay="500" data-aos="fade-up">Santiago, Chile</h3> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-6154d5a pt-50 pb-50 quick-cont elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6154d5a" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-0f28722" data-id="0f28722" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f563c5b elementor-flip-box--direction-right elementor-flip-box--3d elementor-flip-box--effect-flip elementor-widget elementor-widget-flip-box" data-id="f563c5b" data-element_type="widget" data-widget_type="flip-box.default"> <div class="elementor-widget-container"> <div class="elementor-flip-box" tabindex="0"> <div class="elementor-flip-box__layer elementor-flip-box__front"> <div class="elementor-flip-box__layer__overlay"> <div class="elementor-flip-box__layer__inner"> <div class="elementor-icon-wrapper elementor-view-default"> <div class="elementor-icon"> <i class="fas fa-warehouse"></i> </div> </div> <h3 class="elementor-flip-box__layer__title"> Explore the Virtual Platform </h3> <div class="elementor-flip-box__layer__description"> <a class="elementor-flip-box__button elementor-button elementor-size-sm" href="https://iseeconference.org/scientific-information/virtual-platform/"> Click Here </a> </div> </div> </div> </div> <div class="elementor-flip-box__layer elementor-flip-box__back"> <div class="elementor-flip-box__layer__overlay"> <div class="elementor-flip-box__layer__inner"> <h3 class="elementor-flip-box__layer__title"> Key Dates </h3> <a class="elementor-flip-box__button elementor-button elementor-size-sm" href="https:///iseeconference.org/key-dates"> Click Here </a> </div> </div> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-c94f5a9" data-id="c94f5a9" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-8254487 elementor-flip-box--direction-right elementor-flip-box--3d elementor-flip-box--effect-flip elementor-widget elementor-widget-flip-box" data-id="8254487" data-element_type="widget" data-widget_type="flip-box.default"> <div class="elementor-widget-container"> <div class="elementor-flip-box" tabindex="0"> <div class="elementor-flip-box__layer elementor-flip-box__front"> <div class="elementor-flip-box__layer__overlay"> <div class="elementor-flip-box__layer__inner"> <div class="elementor-icon-wrapper elementor-view-default"> <div class="elementor-icon"> <i class="fas fa-archway"></i> </div> </div> <h3 class="elementor-flip-box__layer__title"> Conference Abstracts </h3> <div class="elementor-flip-box__layer__description"> <a class="elementor-flip-box__button elementor-button elementor-size-sm" href="https://iseeconference.org/scientific-information/conference-abstracts/"> Click Here </a> </div> </div> </div> </div> <div class="elementor-flip-box__layer elementor-flip-box__back"> <div class="elementor-flip-box__layer__overlay"> <div class="elementor-flip-box__layer__inner"> <h3 class="elementor-flip-box__layer__title"> General Information </h3> <a class="elementor-flip-box__button elementor-button elementor-size-sm" href="https:///iseeconference.org/general-information"> Click Here </a> </div> </div> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-c17fb26" data-id="c17fb26" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-73b825a elementor-flip-box--direction-right elementor-flip-box--3d elementor-flip-box--effect-flip elementor-widget elementor-widget-flip-box" data-id="73b825a" data-element_type="widget" data-widget_type="flip-box.default"> <div class="elementor-widget-container"> <div class="elementor-flip-box" tabindex="0"> <div class="elementor-flip-box__layer elementor-flip-box__front"> <div class="elementor-flip-box__layer__overlay"> <div class="elementor-flip-box__layer__inner"> <div class="elementor-icon-wrapper elementor-view-default"> <div class="elementor-icon"> <i class="fas fa-clipboard-list"></i> </div> </div> <h3 class="elementor-flip-box__layer__title"> Scientific Program </h3> <div class="elementor-flip-box__layer__description"> <a class="elementor-flip-box__button elementor-button elementor-size-sm" href="https://iseeconference.org/scientific-program/"> Click Here </a> </div> </div> </div> </div> <div class="elementor-flip-box__layer elementor-flip-box__back"> <div class="elementor-flip-box__layer__overlay"> <div class="elementor-flip-box__layer__inner"> <h3 class="elementor-flip-box__layer__title"> Welcome Letter </h3> <a class="elementor-flip-box__button elementor-button elementor-size-sm" href="https:///iseeconference.org/welcome-letter"> Click Here </a> </div> </div> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-52e7fe9" data-id="52e7fe9" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f2cdff6 elementor-flip-box--direction-right elementor-flip-box--3d elementor-flip-box--effect-flip elementor-widget elementor-widget-flip-box" data-id="f2cdff6" data-element_type="widget" data-widget_type="flip-box.default"> <div class="elementor-widget-container"> <div class="elementor-flip-box" tabindex="0"> <div class="elementor-flip-box__layer elementor-flip-box__front"> <div class="elementor-flip-box__layer__overlay"> <div class="elementor-flip-box__layer__inner"> <div class="elementor-icon-wrapper elementor-view-default"> <div class="elementor-icon"> <i class="fas fa-desktop"></i> </div> </div> <h3 class="elementor-flip-box__layer__title"> Conference E-Book </h3> <div class="elementor-flip-box__layer__description"> <a class="elementor-flip-box__button elementor-button elementor-size-sm" href="https://iseeconference.org/conference-e-books/"> Click Here </a> </div> </div> </div> </div> <div class="elementor-flip-box__layer elementor-flip-box__back"> <div class="elementor-flip-box__layer__overlay"> <div class="elementor-flip-box__layer__inner"> <h3 class="elementor-flip-box__layer__title"> ISEE 2023 Session Recordings </h3> <a class="elementor-flip-box__button elementor-button elementor-size-sm" href="https://isee2023.virtualmagix.com/"> Click Here </a> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-13ec008 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="13ec008" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-9b34110" data-id="9b34110" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-717b785 elementor-widget elementor-widget-image" data-id="717b785" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <figure class="wp-caption"> <img decoding="async" width="263" height="272" src="https://iseeconference.org/wp-content/uploads/2023/09/Maria-Elisa-Quinteros-portre-1.jpg" class="attachment-medium size-medium wp-image-616" alt="" /> <figcaption class="widget-image-caption wp-caption-text">María Elisa Quinteros Cáceres</figcaption> </figure> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-faad9a6" data-id="faad9a6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9910ab1 elementor-widget elementor-widget-image" data-id="9910ab1" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <figure class="wp-caption"> <img decoding="async" width="263" height="272" src="https://iseeconference.org/wp-content/uploads/2023/09/Veronica-Iglesia-portre-1.jpg" class="attachment-medium size-medium wp-image-617" alt="" /> <figcaption class="widget-image-caption wp-caption-text">Verónica Iglesias Alamos</figcaption> </figure> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-8bdc26f" data-id="8bdc26f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0c3887f elementor-widget elementor-widget-heading" data-id="0c3887f" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-large">Welcome Address</h2> </div> </div> <div class="elementor-element elementor-element-009fe3f elementor-widget elementor-widget-heading" data-id="009fe3f" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <div class="elementor-heading-title elementor-size-medium">Dear friends, colleagues, interested citizens, ISEE Community,<br><br><span style="font-weight: normal;">We are delighted to invite you to attend the </span>36th Annual ISEE Conference in Santiago, Chile<span style="font-weight: normal;"> from </span>August 25-28, 2024<span style="font-weight: normal;">. The main theme of the conference is </span>"Addressing challenges in environmental health, justice, and development"<span style="font-weight: normal;">...</span></div> </div> </div> <div class="elementor-element elementor-element-c244465 elementor-align-left elementor-widget elementor-widget-button" data-id="c244465" 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-md" href="https://iseeconference.org/welcome-address/"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">Read More</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-2e77195 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2e77195" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0682b89" data-id="0682b89" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-585bbe2 elementor-widget__width-inherit elementor-widget elementor-widget-video" data-id="585bbe2" data-element_type="widget" data-settings="{"video_type":"vimeo"}" data-widget_type="video.default"> <div class="elementor-widget-container"> <div class="elementor-wrapper elementor-open-inline"> <iframe class="elementor-video-iframe" allowfullscreen allow="clipboard-write" title="vimeo Video Player" src="https://player.vimeo.com/video/913814543?color&autopause=0&loop=0&muted=0&title=0&portrait=1&byline=0#t="></iframe> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-522c28a pt-50 main-title elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="522c28a" 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-b6b221b" data-id="b6b221b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4b9983c elementor-widget elementor-widget-heading" data-id="4b9983c" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Approaching Dates & Deadlines</h2> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-f6c9903 pb-50 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="f6c9903" 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-2bb1396" data-id="2bb1396" 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-bc6cc43" data-id="bc6cc43" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-bbb3fc2 elementor-widget elementor-widget-html" data-id="bbb3fc2" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <div class="category-item cat-1"> <a href="https://iseeconference.org/registration/"><i class="fas fa-calendar-o"></i><span>Early Bird Registration Deadline</span> <p>June 26, 2024</p> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-b12752c" data-id="b12752c" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-85fc550 subscribe-content-box pt-80 pb-80 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="85fc550" data-element_type="section"> <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-c9f181a" data-id="c9f181a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a9e12b4 elementor-widget elementor-widget-html" data-id="a9e12b4" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <h2 class="sec-title">Newsletter subscription</h2> <p style="font-size:14px !important" class="mt-15">Don't miss a thing! Subscribe to our newsletters and be the first to know.</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-7638231" data-id="7638231" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-246ccb0 elementor-widget elementor-widget-html" data-id="246ccb0" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <kenes-tag congressid="a097T000007G84XQAS" servicename="web2lead" templateid="kmuEmailOnly" successmessage="" failmessage="" ></kenes-tag> <script src="https://onlineforms.kenes.com/InjectionTemplates/scripts/kenesTagScript.js"></script> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-e54e274 popup-cont elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e54e274" 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-f814c9b" data-id="f814c9b" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> <footer> </footer> </div><!-- .entry-content --> </article><!-- #post-## --> </div> </div> </main> </div> <div data-elementor-type="footer" data-elementor-id="140" class="elementor elementor-140 elementor-location-footer"> <div class="elementor-section-wrap"> <footer data-bdt-parallax="background-color: #fff,#fff;" class="elementor-section elementor-top-section elementor-element elementor-element-c536345 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="c536345" data-element_type="section" data-settings="{"background_background":"classic"}"> <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-6aab950" data-id="6aab950" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9ea62d1 elementor-widget elementor-widget-html" data-id="9ea62d1" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <div class="row"> <div class="col-md-4 mb-xs-15 mb-text-center"> <h4 style="color:#fff;">Annual Conference Organizing Secretariat</h4> <a href="https://kenes-group.com/" target="_blank"> <img src="https:///iseeconference.org/wp-content/uploads/2023/08/kenes-logo-white.png"> </a> <p class="mb-0 mt-15" style="color:#fff">Kenes Group, Office: Kenes M+</p> </div> <div class="col-md-4 mb-xs-15 text-right mb-text-center pt-30 pt-xs-0"> </div> <div class="col-md-4 mb-xs-15 mb-text-center text-right"> <a href="https://www.iseepi.org/" target="_blank"> <img style="height:50px;" class="mt-50 mt-xs-0" src="https:///iseeconference.org/wp-content/uploads/2023/08/footer-dernek.png" height="69"></a> </div> </div> </div> </div> <div class="elementor-element elementor-element-5854d41 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="5854d41" 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-444189b" href="https://www.facebook.com/ISEEglobal" 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-e361b23" href="https://twitter.com/ISEE_global" 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-linkedin elementor-repeater-item-844bd30" href="https://www.linkedin.com/company/54109816" 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-f46a4a3" href="https://www.youtube.com/channel/UCzW7ZAgwM-h0wWFEESbLlWA" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> </div> </div> </div> <div class="elementor-element elementor-element-ed47813 elementor-widget elementor-widget-bdt-navbar" data-id="ed47813" data-element_type="widget" data-widget_type="bdt-navbar.default"> <div class="elementor-widget-container"> <div class="bdt-navbar-wrapper"> <nav class="bdt-navbar-container bdt-navbar bdt-navbar-transparent" data-bdt-navbar="{"align":"left","delay-hide":800,"duration":200}"> <ul class="bdt-navbar-nav"><li style="" data-id="155"><a href="https://web.kenes.com/klead/PRIVACY/KI.html">Privacy Policy</a></li><li style="" data-id="157"><a href="https://kenes-group.com/cookie-policy/">Cookie Policy</a></li><li style="" data-id="158"><a href="https://iseeconference.org/sitemap.xml">Site Map</a></li><li style="" data-id="159"><a href="https://iseeconference.org/about-the-conference/contact-us/">Contact Us</a></li></ul> </nav> </div> </div> </div> <div class="elementor-element elementor-element-c54cce4 elementor-widget elementor-widget-html" data-id="c54cce4" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <p style="text-align:center; font-size:12px">Copyright ©2023 ISEE 2024 All rights reserved.</p> <p class="mt-10 mb-0" style="text-align:center;"><a href="https://eventmagix.com/" target="_blank"><img style="display:inline-block;" src="https://ver.us/eventmagix-logo-white.png"></a></p> </div> </div> <div class="elementor-element elementor-element-75b34d7 elementor-align-center elementor-widget elementor-widget-bdt-scroll-button" data-id="75b34d7" data-element_type="widget" data-widget_type="bdt-scroll-button.default"> <div class="elementor-widget-container"> <div class="bdt-scroll-button-wrapper"> <button class="bdt-scroll-button bdt-button bdt-button-primary" data-settings="[]" data-selector="#my-header"> <span class="bdt-scroll-button-content-wrapper"> <span class="bdt-scroll-button-align-icon-right"> <i aria-hidden="true" class="fa-fw fas fa-angle-up"></i> </span> <span class="bdt-scroll-button-text"></span> </span> </button> </div> </div> </div> </div> </div> </div> </footer> <section class="elementor-section elementor-top-section elementor-element elementor-element-6022fdd elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6022fdd" 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-8823185" data-id="8823185" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> </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> <script type='text/javascript'> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <link rel='stylesheet' id='ep-font-css' href='https://iseeconference.org/wp-content/plugins/bdthemes-element-pack/assets/css/ep-font.css?ver=6.15.5' type='text/css' media='all' /> <link rel='stylesheet' id='ep-navbar-css' href='https://iseeconference.org/wp-content/plugins/bdthemes-element-pack/assets/css/ep-navbar.css?ver=6.15.5' type='text/css' media='all' /> <link rel='stylesheet' id='ep-scroll-button-css' href='https://iseeconference.org/wp-content/plugins/bdthemes-element-pack/assets/css/ep-scroll-button.css?ver=6.15.5' type='text/css' media='all' /> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <link rel='stylesheet' id='rs-plugin-settings-css' href='https://iseeconference.org/wp-content/plugins/revslider/public/assets/css/rs6.css?ver=6.6.12' type='text/css' media='all' /> <style id='rs-plugin-settings-inline-css' type='text/css'> #rs-demo-id {} </style> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/tf-header-footer/assets/js/svg-injector.min.js?ver=6.3' id='svg-injector-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/tf-header-footer/assets/js/tf-main.js?ver=6.3' id='tf-header-footer-main-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.6.12' defer async id='tp-tools-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.6.12' defer async id='revmin-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/bdthemes-element-pack/assets/vendor/js/typed.min.js' id='typed-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/themes/emeet/assets/js/jquery.smartmenus.min.js?ver=1.0' id='jquery-smartmenus-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/themes/emeet/assets/js/jquery.smartmenus.bootstrap.min.js?ver=1.0' id='jquery-smartmenus-bootstrap-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/themes/emeet/assets/js/TimeCircles.js?ver=1.0' id='TimeCircles-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/themes/emeet/assets/js/theme-main-script.js?ver=1.0.0' id='emeet-script-js'></script> <script id="emeet-script-js-after" type="text/javascript"> jQuery(window).load(function() { jQuery("#vcx-preloader").delay(250).fadeOut("slow"); setTimeout(vcx_remove_preloader, 2000); function vcx_remove_preloader() { jQuery("#vcx-preloader").remove(); } }); </script> <script type='text/javascript' id='bdt-uikit-js-extra'> /* <![CDATA[ */ var element_pack_ajax_login_config = {"ajaxurl":"https:\/\/iseeconference.org\/wp-admin\/admin-ajax.php","language":"en","loadingmessage":"Sending user info, please wait...","unknownerror":"Unknown error, make sure access is correct!"}; var ElementPackConfig = {"ajaxurl":"https:\/\/iseeconference.org\/wp-admin\/admin-ajax.php","nonce":"cf2d4d670d","data_table":{"language":{"lengthMenu":"Show _MENU_ Entries","info":"Showing _START_ to _END_ of _TOTAL_ entries","search":"Search :","sZeroRecords":"No matching records found","paginate":{"previous":"Previous","next":"Next"}}},"contact_form":{"sending_msg":"Sending message please wait...","captcha_nd":"Invisible captcha not defined!","captcha_nr":"Could not get invisible captcha response!"},"mailchimp":{"subscribing":"Subscribing you please wait..."},"search":{"more_result":"More Results","search_result":"SEARCH RESULT","not_found":"not found"},"elements_data":{"sections":[],"columns":[],"widgets":[]}}; /* ]]> */ </script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/bdthemes-element-pack/assets/js/bdt-uikit.js?ver=3.15.1' id='bdt-uikit-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/elementor/assets/js/webpack.runtime.js?ver=3.23.3' id='elementor-webpack-runtime-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/elementor/assets/js/frontend-modules.js?ver=3.23.3' id='elementor-frontend-modules-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.js?ver=4.0.2' id='elementor-waypoints-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-includes/js/jquery/ui/core.js?ver=1.13.2' id='jquery-ui-core-js'></script> <script id="elementor-frontend-js-before" type="text/javascript"> var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":true},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselWrapperAriaLabel":"Carousel | Horizontal scrolling: Arrow Left & Right","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"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":1024,"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}}},"version":"3.23.3","is_static":false,"experimentalFeatures":{"e_optimized_css_loading":true,"additional_custom_breakpoints":true,"container":true,"container_grid":true,"e_swiper_latest":true,"e_nested_atomic_repeaters":true,"e_onboarding":true,"theme_builder_v2":true,"home_screen":true,"ai-layout":true,"landing-pages":true,"nested-elements":true,"e_lazyload":true,"page-transitions":true,"notes":true,"loop":true,"form-submissions":true,"e_scroll_snap":true},"urls":{"assets":"https:\/\/iseeconference.org\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/iseeconference.org\/wp-admin\/admin-ajax.php"},"nonces":{"floatingButtonsClickTracking":"4400f0b61d"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"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":15,"title":"ISEE%202024%2036th%20Annual%20ISEE%20Conference%20in%20Santiago%2C%20Chile%20%E2%80%93%20August%2025-28%2C%202024","excerpt":"","featuredImage":false}}; </script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/elementor/assets/js/frontend.js?ver=3.23.3' id='elementor-frontend-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/bdthemes-element-pack/assets/js/modules/ep-scroll-button.js?ver=6.15.5' id='ep-scroll-button-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/bdthemes-element-pack/assets/js/common/helper.js?ver=6.15.5' id='element-pack-helper-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.js?ver=3.12.3' id='elementor-pro-webpack-runtime-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-includes/js/dist/vendor/wp-polyfill-inert.js?ver=3.1.2' id='wp-polyfill-inert-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-includes/js/dist/vendor/regenerator-runtime.js?ver=0.13.11' id='regenerator-runtime-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-includes/js/dist/vendor/wp-polyfill.js?ver=3.15.0' id='wp-polyfill-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-includes/js/dist/hooks.js?ver=cb3553927d7ab6049113' id='wp-hooks-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-includes/js/dist/i18n.js?ver=28325ce370dfa8a48974' id='wp-i18n-js'></script> <script id="wp-i18n-js-after" type="text/javascript"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); </script> <script id="elementor-pro-frontend-js-before" type="text/javascript"> var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/iseeconference.org\/wp-admin\/admin-ajax.php","nonce":"d3504861fd","urls":{"assets":"https:\/\/iseeconference.org\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/iseeconference.org\/wp-json\/"},"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"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/iseeconference.org\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; </script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/elementor-pro/assets/js/frontend.js?ver=3.12.3' id='elementor-pro-frontend-js'></script> <script type='text/javascript' src='https://iseeconference.org/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.js?ver=3.12.3' id='pro-preloaded-elements-handlers-js'></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/js-cookie/3.0.1/js.cookie.min.js"></script> <script type="text/javascript"> jQuery(".wpuf-checkbox-block").append('<a href="https://web.kenes.com/klead/PRIVACY/KI.html" target="_blank">I have read and agree to the Privacy Policy.</a>'); jQuery(".fab.fa-twitter").addClass("fa-brands fa-x-twitter"); jQuery(".fab.fa-twitter").removeClass("fab fa-twitter"); jQuery(document).ready(function() { if (jQuery.cookie('whenToShowDialog') != "true") { jQuery("#bdt-modal-1759bfe").addClass("bdt-open"); jQuery("#bdt-modal-1759bfe").attr("style","display:block"); jQuery(".dontshow").click(function() { jQuery("#bdt-modal-1759bfe").hide(); // set the cookie for 24 hours var date = new Date(); date.setTime(date.getTime() + 24 * 60 * 60 * 1000); jQuery.cookie('whenToShowDialog', "true", { expires: date }); }); } }); </script> <style> #google_translate_element span{display:none;} #google_translate_element select{width: 84px;} .goog-te-gadget-simple{border:none !important;} img.goog-te-gadget-icon{border:none !important; background-image:transparent !important;} .goog-te-gadget-icon{width:87px !important;top: -6px;position: relative;margin:0px;} .goog-te-gadget-simple{height:17px;position: relative;top: 5px;} .btn { display: inline-block; position: relative; background: #fc097c; border-color: transparent; color: #ffffff; border-radius: 0px; font-size: 14px; font-weight: 400; font-family: "Ubuntu", sans-serif; font-weight: 700; height: 50px; line-height: 48px; padding: 0px 30px; border: 0; border-style: solid; box-shadow: none; transition: all 0.3s ease 0s; cursor: pointer; text-transform: capitalize; } .btn::before { content: ''; border: 2px solid #000; padding: 0 30px; position: absolute; top: 4px; left: 4px; height: 50px; width: 100%; z-index: -1; overflow: hidden; transition: .3s; } .btn:focus, .btn:focus:active { box-shadow: none; } .btn:hover { box-shadow: none; background: #250449; color: #ffffff; } .btn:hover::before { top: 0; left: 0; } .bg-white{background-color:#fff;} @media all and (min-width: 140px) and (max-width:440px) { .hastag{display:none;} } .wpuf-checkbox-block a{color:#fff !important;} .mainnav-mobi #menu-main-menu > li{positin:relative;} .mainnav-mobi #menu-main-menu > li > span.btn-submenu{position:absolute;left:0px;top:0px;width:100%;z-index:9;text-align: right; padding-right: 30px;} @media all and (min-width: 10px) and (max-width:1080px) { .bdt-ep-breadcrumb li{flex:inherit !important;} } </style> <script src="//munchkin.marketo.net/154/munchkin.js" type="text/javascript"></script> <script type="text/javascript"> jQuery.ajax({ url: '//munchkin.marketo.net/munchkin.js', dataType: 'script', cache: true, success: function() { Munchkin.init('305-QUK-519'); } }); </script> <!-- Global site tag (gtag.js) - Google Ads: 1033847597 --> <script async src="https://www.googletagmanager.com/gtag/js?id=AW-1033847597"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'AW-1033847597'); </script> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WZ5TD79" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <meta name="google-site-verification" content="NFNJCeCvZPC4WfzwO36tqgtrtCUztpcBhFuarrf1xsw" /> <style> .bdt-nav.bdt-navbar-dropdown-nav li.bdt-parent .bdt-navbar-dropdown{left:0px !important;} </style> </body> </html>