CINXE.COM

The Nature for Life Hub 2024 – Learning for Nature

<!doctype html> <html lang="en-US"> <head> <meta charset="UTF-8"> <link rel="profile" href="http://gmpg.org/xfn/11"> <title>The Nature for Life Hub 2024 &#8211; Learning for Nature</title> <script type="text/html" id="tmpl-bb-link-preview"> <% if ( link_scrapping ) { %> <% if ( link_loading ) { %> <span class="bb-url-scrapper-loading bb-ajax-loader"><i class="bb-icon-l bb-icon-spinner animate-spin"></i>Loading preview...</span> <% } %> <% if ( link_success || link_error ) { %> <a title="Cancel Preview" href="#" id="bb-close-link-suggestion">Remove Preview</a> <div class="bb-link-preview-container"> <% if ( link_images && link_images.length && link_success && ! link_error && '' !== link_image_index ) { %> <div id="bb-url-scrapper-img-holder"> <div class="bb-link-preview-image"> <div class="bb-link-preview-image-cover"> <img src="<%= link_images[link_image_index] %>"/> </div> <div class="bb-link-preview-icons"> <% if ( link_images.length > 1 ) { %> <a data-bp-tooltip-pos="up" data-bp-tooltip="Change image" href="#" class="icon-exchange toolbar-button bp-tooltip" id="icon-exchange"><i class="bb-icon-l bb-icon-exchange"></i></a> <% } %> <% if ( link_images.length ) { %> <a data-bp-tooltip-pos="up" data-bp-tooltip="Remove image" href="#" class="icon-image-slash toolbar-button bp-tooltip" id="bb-link-preview-remove-image"><i class="bb-icon-l bb-icon-image-slash"></i></a> <% } %> <a data-bp-tooltip-pos="up" data-bp-tooltip="Confirm" class="toolbar-button bp-tooltip" href="#" id="bb-link-preview-select-image"> <i class="bb-icon-check bb-icon-l"></i> </a> </div> </div> <% if ( link_images.length > 1 ) { %> <div class="bb-url-thumb-nav"> <button type="button" id="bb-url-prevPicButton"><span class="bb-icon-l bb-icon-angle-left"></span></button> <button type="button" id="bb-url-nextPicButton"><span class="bb-icon-l bb-icon-angle-right"></span></button> <div id="bb-url-scrapper-img-count"> Image <%= link_image_index + 1 %>&nbsp;of&nbsp;<%= link_images.length %> </div> </div> <% } %> </div> <% } %> <% if ( link_success && ! link_error && link_url ) { %> <div class="bb-link-preview-info"> <% var a = document.createElement('a'); a.href = link_url; var hostname = a.hostname; var domainName = hostname.replace('www.', '' ); %> <% if ( 'undefined' !== typeof link_title && link_title.trim() && link_description ) { %> <p class="bb-link-preview-link-name"><%= domainName %></p> <% } %> <% if ( link_success && ! link_error ) { %> <p class="bb-link-preview-title"><%= link_title %></p> <% } %> <% if ( link_success && ! link_error ) { %> <div class="bb-link-preview-excerpt"><p><%= link_description %></p></div> <% } %> </div> <% } %> <% if ( link_error && ! link_success ) { %> <div id="bb-url-error" class="bb-url-error"><%= link_error_msg %></div> <% } %> </div> <% } %> <% } %> </script> <style id="bb_learndash_30_custom_colors"> .learndash-wrapper .ld-item-list .ld-item-list-item.ld-item-lesson-item .ld-item-name .ld-item-title .ld-item-components span.ld-status-waiting, .learndash-wrapper .ld-item-list .ld-item-list-item.ld-item-lesson-item .ld-item-name .ld-item-title .ld-item-components span.ld-status-waiting span.ld-icon, .learndash-wrapper .ld-status-waiting { background-color: #ffd200 !important; } </style> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//pro.fontawesome.com' /> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link href='https://fonts.gstatic.com' crossorigin rel='preconnect' /> <link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/foundation-icons.woff" as="font" type="font/woff2" crossorigin="anonymous"> <script type="text/javascript"> /* <![CDATA[ */ 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:\/\/www.learningfornature.org\/wp-includes\/js\/wp-emoji.js?ver=6.4.3","twemoji":"https:\/\/www.learningfornature.org\/wp-includes\/js\/twemoji.js?ver=6.4.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> <link rel='stylesheet' id='jquery.prettyphoto-css' href='https://www.learningfornature.org/wp-content/plugins/wp-video-lightbox/css/prettyPhoto.css?ver=6.4.3' type='text/css' media='all' /> <link rel='stylesheet' id='video-lightbox-css' href='https://www.learningfornature.org/wp-content/plugins/wp-video-lightbox/wp-video-lightbox.css?ver=6.4.3' type='text/css' media='all' /> <link rel='stylesheet' id='bp-nouveau-icons-map-css' href='https://www.learningfornature.org/wp-content/plugins/buddyboss-platform/bp-templates/bp-nouveau/icons/css/icons-map.css?ver=2.5.60' type='text/css' media='screen' /> <link rel='stylesheet' id='bp-nouveau-bb-icons-css' href='https://www.learningfornature.org/wp-content/plugins/buddyboss-platform/bp-templates/bp-nouveau/icons/css/bb-icons.css?ver=1.0.5' type='text/css' media='screen' /> <link rel='stylesheet' id='dashicons-css' href='https://www.learningfornature.org/wp-includes/css/dashicons.css?ver=6.4.3' type='text/css' media='all' /> <link rel='stylesheet' id='bp-nouveau-css' href='https://www.learningfornature.org/wp-content/plugins/buddyboss-platform/bp-templates/bp-nouveau/css/buddypress.css?ver=2.5.60' type='text/css' media='screen' /> <style id='bp-nouveau-inline-css' type='text/css'> .list-wrap .bs-group-cover a:before{ background:unset; } </style> <link rel='stylesheet' id='bb-css-css' href='https://www.learningfornature.org/wp-content/plugins/scroll_magic/bestbugcore//assets/css/style.css?ver=1.4.5' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/inc/plugins/buddyboss-menu-icons/vendor/kucrut/icon-picker/css/types/font-awesome.css?ver=4.7.0' type='text/css' media='all' /> <link rel='stylesheet' id='font-scrollmagic-css' href='https://www.learningfornature.org/wp-content/plugins/scroll_magic/assets/libs/font-scrollmagic/style.css?ver=6.4.3' type='text/css' media='all' /> <link rel='stylesheet' id='animate-css' href='https://www.learningfornature.org/wp-content/plugins/scroll_magic/assets/libs/animate/animate.min.css?ver=6.4.3' type='text/css' media='all' /> <link rel='stylesheet' id='bb-scrollmagic-css' href='https://www.learningfornature.org/wp-content/plugins/scroll_magic//assets/css/bb-scrollmagic.css?ver=4.2.5' type='text/css' media='all' /> <link rel='stylesheet' id='buddyboss_legacy-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/inc/plugins/buddyboss-menu-icons/vendor/kucrut/icon-picker/css/types/buddyboss_legacy.css?ver=1.0' type='text/css' media='all' /> <link rel='stylesheet' id='elusive-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/inc/plugins/buddyboss-menu-icons/vendor/kucrut/icon-picker/css/types/elusive.css?ver=2.0' type='text/css' media='all' /> <link rel='stylesheet' id='foundation-icons-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/inc/plugins/buddyboss-menu-icons/vendor/kucrut/icon-picker/css/types/foundation-icons.css?ver=3.0' type='text/css' media='all' /> <link rel='stylesheet' id='genericons-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/inc/plugins/buddyboss-menu-icons/vendor/kucrut/icon-picker/css/types/genericons.css?ver=3.4' type='text/css' media='all' /> <link rel='stylesheet' id='wp-block-library-css' href='https://www.learningfornature.org/wp-includes/css/dist/block-library/style.css?ver=6.4.3' type='text/css' media='all' /> <link rel='stylesheet' id='bb_theme_block-buddypanel-style-css-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/blocks/buddypanel/build/style-buddypanel.css?ver=a43481f57c3cc73f6cce06223a569c14' type='text/css' media='all' /> <link rel='stylesheet' id='tclr-gutenberg-blocks-css' href='https://www.learningfornature.org/wp-content/plugins/tin-canny-learndash-reporting/src/blocks/dist/blocks.style.build.css?ver=3.5.3' type='text/css' media='all' /> <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--font-family--proxima-nova: proxima-nova;--wp--preset--font-family--giorgio-sans: giorgio-sans;--wp--preset--font-family--giorgio-sans-bold: giorgio-sans-bold;--wp--preset--font-family--inter: inter;--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);}body { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.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;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}.wp-element-button, .wp-block-button__link{background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.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;}.has-proxima-nova-font-family{font-family: var(--wp--preset--font-family--proxima-nova) !important;}.has-giorgio-sans-font-family{font-family: var(--wp--preset--font-family--giorgio-sans) !important;}.has-giorgio-sans-bold-font-family{font-family: var(--wp--preset--font-family--giorgio-sans-bold) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !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='font-awesome-5-css' href='https://pro.fontawesome.com/releases/v5.15.4/css/all.css?ver=2.5.5.5' type='text/css' media='all' /> <link rel='stylesheet' id='jquery-magnificpopup-css' href='https://www.learningfornature.org/wp-content/plugins/bb-plugin/css/jquery.magnificpopup.css?ver=2.5.5.5' type='text/css' media='all' /> <link rel='stylesheet' id='fl-builder-layout-120253-css' href='https://www.learningfornature.org/wp-content/uploads/bb-plugin/cache/120253-layout.css?ver=8829fb9727af7f3b196fe4ffff559031' type='text/css' media='all' /> <link rel='stylesheet' id='bcct_style-css' href='https://www.learningfornature.org/wp-content/plugins/better-click-to-tweet/assets/css/styles.css?ver=3.0' type='text/css' media='all' /> <link rel='stylesheet' id='som_lost_password_style-css' href='https://www.learningfornature.org/wp-content/plugins/frontend-reset-password/assets/css/password-lost.css?ver=6.4.3' type='text/css' media='all' /> <link rel='stylesheet' id='popupaoc-public-style-css' href='https://www.learningfornature.org/wp-content/plugins/popup-anything-on-click/assets/css/popupaoc-public-style.css?ver=1.7.7' type='text/css' media='all' /> <link rel='stylesheet' id='post-views-counter-frontend-css' href='https://www.learningfornature.org/wp-content/plugins/post-views-counter/css/frontend.css?ver=1.4.4' type='text/css' media='all' /> <link rel='stylesheet' id='uncannyowl-learndash-toolkit-free-css' href='https://www.learningfornature.org/wp-content/plugins/uncanny-learndash-toolkit/src/assets/frontend/dist/bundle.min.css?ver=3.6.4.8' type='text/css' media='all' /> <link rel='stylesheet' id='uaf_client_css-css' href='https://www.learningfornature.org/wp-content/uploads/useanyfont/uaf.css?ver=1727951895' type='text/css' media='all' /> <link rel='stylesheet' id='wp-polls-css' href='https://www.learningfornature.org/wp-content/plugins/wp-polls/polls-css.css?ver=2.77.3' type='text/css' media='all' /> <style id='wp-polls-inline-css' type='text/css'> .wp-polls .pollbar { margin: 1px; font-size: 18px; line-height: 20px; height: 20px; background: #287288; border: 1px solid #FFFFFF; } </style> <link rel='stylesheet' id='learndash_quiz_front_css-css' href='//www.learningfornature.org/wp-content/plugins/sfwd-lms/themes/legacy/templates/learndash_quiz_front.css?ver=4.12.0-1739857785' type='text/css' media='all' /> <link rel='stylesheet' id='jquery-dropdown-css-css' href='//www.learningfornature.org/wp-content/plugins/sfwd-lms/assets/css/jquery.dropdown.min.css?ver=4.12.0-1739857785' type='text/css' media='all' /> <link rel='stylesheet' id='learndash_lesson_video-css' href='//www.learningfornature.org/wp-content/plugins/sfwd-lms/themes/legacy/templates/learndash_lesson_video.css?ver=4.12.0-1739857785' type='text/css' media='all' /> <style id='wpgb-head-inline-css' type='text/css'> .wp-grid-builder:not(.wpgb-template),.wpgb-facet{opacity:0.01}.wpgb-facet fieldset{margin:0;padding:0;border:none;outline:none;box-shadow:none}.wpgb-facet fieldset:last-child{margin-bottom:40px;}.wpgb-facet fieldset legend.wpgb-sr-only{height:1px;width:1px} </style> <link rel='stylesheet' id='trp-language-switcher-style-css' href='https://www.learningfornature.org/wp-content/plugins/translatepress-multilingual/assets/css/trp-language-switcher.css?ver=2.7.3' type='text/css' media='all' /> <link rel='stylesheet' id='accordion-slider-plugin-style-css' href='https://www.learningfornature.org/wp-content/plugins/accordion-slider/public/assets/css/accordion-slider.min.css?ver=1.9.8' type='text/css' media='all' /> <link rel='stylesheet' id='ultimate-icons-css' href='https://www.learningfornature.org/wp-content/uploads/bb-plugin/icons/ultimate-icons/style.css?ver=2.5.5.5' type='text/css' media='all' /> <link rel='stylesheet' id='fl-builder-layout-bundle-080f3ba79dc0b5b9940775d3c62ae1fb-css' href='https://www.learningfornature.org/wp-content/uploads/bb-plugin/cache/080f3ba79dc0b5b9940775d3c62ae1fb-layout-bundle.css?ver=2.5.5.5-1.4.3.2' type='text/css' media='all' /> <link rel='stylesheet' id='redux-extendify-styles-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/inc/admin/framework/redux-core/assets/css/extendify-utilities.css?ver=4.4.11' type='text/css' media='all' /> <link rel='stylesheet' id='buddyboss-theme-fonts-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/fonts/fonts.css?ver=2.5.50' type='text/css' media='all' /> <link rel='stylesheet' id='learndash-front-css' href='//www.learningfornature.org/wp-content/plugins/sfwd-lms/themes/ld30/assets/css/learndash.css?ver=4.12.0-1739857785' type='text/css' media='all' /> <link rel='stylesheet' id='wp-h5p-xapi-css' href='https://www.learningfornature.org/wp-content/plugins/tin-canny-learndash-reporting/src/h5p-xapi/wp-h5p-xapi.css?ver=3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='buddyboss-theme-magnific-popup-css-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/css/vendors/magnific-popup.min.css?ver=2.5.50' type='text/css' media='all' /> <link rel='stylesheet' id='buddyboss-theme-select2-css-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/css/vendors/select2.min.css?ver=2.5.50' type='text/css' media='all' /> <link rel='stylesheet' id='buddyboss-theme-css-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/css/theme.min.css?ver=2.5.50' type='text/css' media='all' /> <link rel='stylesheet' id='buddyboss-theme-template-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/css/template-v1.min.css?ver=2.5.50' type='text/css' media='all' /> <link rel='stylesheet' id='buddyboss-theme-buddypress-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/css/buddypress.min.css?ver=2.5.50' type='text/css' media='all' /> <link rel='stylesheet' id='buddyboss-theme-learndash-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/css/learndash.min.css?ver=2.5.50' type='text/css' media='all' /> <link rel='stylesheet' id='buddyboss-theme-beaver-builder-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/css/beaver-builder.min.css?ver=2.5.50' type='text/css' media='all' /> <link rel='stylesheet' id='buddyboss-theme-plugins-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/css/plugins.min.css?ver=2.5.50' type='text/css' media='all' /> <link rel='stylesheet' id='buddyboss-theme-ie-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/css/ie.min.css?ver=2.5.50' type='text/css' media='all' /> <link rel='stylesheet' id='snc-style-css' href='https://www.learningfornature.org/wp-content/plugins/tin-canny-learndash-reporting/src/uncanny-articulate-and-captivate/assets/css/style.min.css?ver=3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='wpdiscuz-font-awesome-css' href='https://www.learningfornature.org/wp-content/plugins/wpdiscuz/assets/third-party/font-awesome-5.13.0/css/fontawesome-all.min.css?ver=7.6.25' type='text/css' media='all' /> <link rel='stylesheet' id='wpdiscuz_widgets_comm_vot_style-css' href='https://www.learningfornature.org/wp-content/plugins/wpdiscuz-widgets/assets/css/style.min.css?ver=7.2.6' type='text/css' media='all' /> <link rel='stylesheet' id='buddyboss-child-css-css' href='https://www.learningfornature.org/wp-content/themes/buddyboss-theme-child/assets/css/custom.css?ver=2.2.2' type='text/css' media='all' /> <link rel='stylesheet' id='fl-builder-google-fonts-7977a37965b0ea8f6e8978c5e2e9f4e9-css' href='//fonts.googleapis.com/css?family=Ubuntu%3A300%2C700&#038;ver=6.4.3' type='text/css' media='all' /> <script type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/jquery.prettyphoto.min.js?ver=3.1.6" id="jquery.prettyphoto-js"></script> <script type="text/javascript" id="video-lightbox-js-extra"> /* <![CDATA[ */ var vlpp_vars = {"prettyPhoto_rel":"wp-video-lightbox","animation_speed":"fast","slideshow":"5000","autoplay_slideshow":"false","opacity":"0.80","show_title":"true","allow_resize":"true","allow_expand":"true","default_width":"640","default_height":"480","counter_separator_label":"\/","theme":"pp_default","horizontal_padding":"20","hideflash":"false","wmode":"opaque","autoplay":"false","modal":"false","deeplinking":"false","overlay_gallery":"true","overlay_gallery_max":"30","keyboard_shortcuts":"true","ie6_fallback":"true"}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/video-lightbox.min.js?ver=3.1.6" id="video-lightbox-js"></script> <script type="text/javascript" id="cookie-law-info-js-extra"> /* <![CDATA[ */ var _ckyConfig = {"_ipData":[],"_assetsURL":"https:\/\/www.learningfornature.org\/wp-content\/plugins\/cookie-law-info\/lite\/frontend\/images\/","_publicURL":"https:\/\/www.learningfornature.org","_expiry":"365","_categories":[{"name":"Necessary","slug":"necessary","isNecessary":true,"ccpaDoNotSell":true,"cookies":[],"active":true,"defaultConsent":{"gdpr":true,"ccpa":true}},{"name":"Functional","slug":"functional","isNecessary":false,"ccpaDoNotSell":true,"cookies":[],"active":true,"defaultConsent":{"gdpr":false,"ccpa":false}},{"name":"Analytics","slug":"analytics","isNecessary":false,"ccpaDoNotSell":true,"cookies":[],"active":true,"defaultConsent":{"gdpr":false,"ccpa":false}},{"name":"Performance","slug":"performance","isNecessary":false,"ccpaDoNotSell":true,"cookies":[],"active":true,"defaultConsent":{"gdpr":false,"ccpa":false}},{"name":"Advertisement","slug":"advertisement","isNecessary":false,"ccpaDoNotSell":true,"cookies":[],"active":true,"defaultConsent":{"gdpr":false,"ccpa":false}}],"_activeLaw":"gdpr","_rootDomain":"","_block":"1","_showBanner":"1","_bannerConfig":{"settings":{"type":"box","preferenceCenterType":"popup","position":"bottom-left","applicableLaw":"gdpr"},"behaviours":{"reloadBannerOnAccept":false,"loadAnalyticsByDefault":false,"animations":{"onLoad":"animate","onHide":"sticky"}},"config":{"revisitConsent":{"status":false,"tag":"revisit-consent","position":"bottom-left","meta":{"url":"#"},"styles":{"background-color":"#0056A7"},"elements":{"title":{"type":"text","tag":"revisit-consent-title","status":true,"styles":{"color":"#0056a7"}}}},"preferenceCenter":{"toggle":{"status":true,"tag":"detail-category-toggle","type":"toggle","states":{"active":{"styles":{"background-color":"#1863DC"}},"inactive":{"styles":{"background-color":"#D0D5D2"}}}}},"categoryPreview":{"status":false,"toggle":{"status":true,"tag":"detail-category-preview-toggle","type":"toggle","states":{"active":{"styles":{"background-color":"#1863DC"}},"inactive":{"styles":{"background-color":"#D0D5D2"}}}}},"videoPlaceholder":{"status":true,"styles":{"background-color":"#000000","border-color":"#000000","color":"#ffffff"}},"readMore":{"status":false,"tag":"readmore-button","type":"link","meta":{"noFollow":true,"newTab":true},"styles":{"color":"#1863DC","background-color":"transparent","border-color":"transparent"}},"auditTable":{"status":true},"optOption":{"status":true,"toggle":{"status":true,"tag":"optout-option-toggle","type":"toggle","states":{"active":{"styles":{"background-color":"#1863dc"}},"inactive":{"styles":{"background-color":"#FFFFFF"}}}}}}},"_version":"3.2.4","_logConsent":"1","_tags":[{"tag":"accept-button","styles":{"color":"#FFFFFF","background-color":"#1863DC","border-color":"#1863DC"}},{"tag":"reject-button","styles":{"color":"#1863DC","background-color":"transparent","border-color":"#1863DC"}},{"tag":"settings-button","styles":{"color":"#1863DC","background-color":"transparent","border-color":"#1863DC"}},{"tag":"readmore-button","styles":{"color":"#1863DC","background-color":"transparent","border-color":"transparent"}},{"tag":"donotsell-button","styles":{"color":"#1863DC","background-color":"transparent","border-color":"transparent"}},{"tag":"accept-button","styles":{"color":"#FFFFFF","background-color":"#1863DC","border-color":"#1863DC"}},{"tag":"revisit-consent","styles":{"background-color":"#0056A7"}}],"_shortCodes":[{"key":"cky_readmore","content":"<a href=\"#\" class=\"cky-policy\" aria-label=\"Cookie Policy\" target=\"_blank\" rel=\"noopener\" data-cky-tag=\"readmore-button\">Cookie Policy<\/a>","tag":"readmore-button","status":false,"attributes":{"rel":"nofollow","target":"_blank"}},{"key":"cky_show_desc","content":"<button class=\"cky-show-desc-btn\" data-cky-tag=\"show-desc-button\" aria-label=\"Show more\">Show more<\/button>","tag":"show-desc-button","status":true,"attributes":[]},{"key":"cky_hide_desc","content":"<button class=\"cky-show-desc-btn\" data-cky-tag=\"hide-desc-button\" aria-label=\"Show less\">Show less<\/button>","tag":"hide-desc-button","status":true,"attributes":[]},{"key":"cky_category_toggle_label","content":"[cky_{{status}}_category_label] [cky_preference_{{category_slug}}_title]","tag":"","status":true,"attributes":[]},{"key":"cky_enable_category_label","content":"Enable","tag":"","status":true,"attributes":[]},{"key":"cky_disable_category_label","content":"Disable","tag":"","status":true,"attributes":[]},{"key":"cky_video_placeholder","content":"<div class=\"video-placeholder-normal\" data-cky-tag=\"video-placeholder\" id=\"[UNIQUEID]\"><p class=\"video-placeholder-text-normal\" data-cky-tag=\"placeholder-title\">Please accept cookies to access this content<\/p><\/div>","tag":"","status":true,"attributes":[]},{"key":"cky_enable_optout_label","content":"Enable","tag":"","status":true,"attributes":[]},{"key":"cky_disable_optout_label","content":"Disable","tag":"","status":true,"attributes":[]},{"key":"cky_optout_toggle_label","content":"[cky_{{status}}_optout_label] [cky_optout_option_title]","tag":"","status":true,"attributes":[]},{"key":"cky_optout_option_title","content":"Do Not Sell or Share My Personal Information","tag":"","status":true,"attributes":[]},{"key":"cky_optout_close_label","content":"Close","tag":"","status":true,"attributes":[]}],"_rtl":"","_providersToBlock":[]}; var _ckyStyles = {"css":".cky-overlay{background: #000000; opacity: 0.4; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999999;}.cky-hide{display: none;}.cky-btn-revisit-wrapper{display: flex; align-items: center; justify-content: center; background: #0056a7; width: 45px; height: 45px; border-radius: 50%; position: fixed; z-index: 999999; cursor: pointer;}.cky-revisit-bottom-left{bottom: 15px; left: 15px;}.cky-revisit-bottom-right{bottom: 15px; right: 15px;}.cky-btn-revisit-wrapper .cky-btn-revisit{display: flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; position: relative; margin: 0; padding: 0;}.cky-btn-revisit-wrapper .cky-btn-revisit img{max-width: fit-content; margin: 0; height: 30px; width: 30px;}.cky-revisit-bottom-left:hover::before{content: attr(data-tooltip); position: absolute; background: #4e4b66; color: #ffffff; left: calc(100% + 7px); font-size: 12px; line-height: 16px; width: max-content; padding: 4px 8px; border-radius: 4px;}.cky-revisit-bottom-left:hover::after{position: absolute; content: \"\"; border: 5px solid transparent; left: calc(100% + 2px); border-left-width: 0; border-right-color: #4e4b66;}.cky-revisit-bottom-right:hover::before{content: attr(data-tooltip); position: absolute; background: #4e4b66; color: #ffffff; right: calc(100% + 7px); font-size: 12px; line-height: 16px; width: max-content; padding: 4px 8px; border-radius: 4px;}.cky-revisit-bottom-right:hover::after{position: absolute; content: \"\"; border: 5px solid transparent; right: calc(100% + 2px); border-right-width: 0; border-left-color: #4e4b66;}.cky-revisit-hide{display: none;}.cky-consent-container{position: fixed; width: 440px; box-sizing: border-box; z-index: 9999999; border-radius: 6px;}.cky-consent-container .cky-consent-bar{background: #ffffff; border: 1px solid; padding: 20px 26px; box-shadow: 0 -1px 10px 0 #acabab4d; border-radius: 6px;}.cky-box-bottom-left{bottom: 40px; left: 40px;}.cky-box-bottom-right{bottom: 40px; right: 40px;}.cky-box-top-left{top: 40px; left: 40px;}.cky-box-top-right{top: 40px; right: 40px;}.cky-custom-brand-logo-wrapper .cky-custom-brand-logo{width: 100px; height: auto; margin: 0 0 12px 0;}.cky-notice .cky-title{color: #212121; font-weight: 700; font-size: 18px; line-height: 24px; margin: 0 0 12px 0;}.cky-notice-des *,.cky-preference-content-wrapper *,.cky-accordion-header-des *,.cky-gpc-wrapper .cky-gpc-desc *{font-size: 14px;}.cky-notice-des{color: #212121; font-size: 14px; line-height: 24px; font-weight: 400;}.cky-notice-des img{height: 25px; width: 25px;}.cky-consent-bar .cky-notice-des p,.cky-gpc-wrapper .cky-gpc-desc p,.cky-preference-body-wrapper .cky-preference-content-wrapper p,.cky-accordion-header-wrapper .cky-accordion-header-des p,.cky-cookie-des-table li div:last-child p{color: inherit; margin-top: 0; overflow-wrap: break-word;}.cky-notice-des P:last-child,.cky-preference-content-wrapper p:last-child,.cky-cookie-des-table li div:last-child p:last-child,.cky-gpc-wrapper .cky-gpc-desc p:last-child{margin-bottom: 0;}.cky-notice-des a.cky-policy,.cky-notice-des button.cky-policy{font-size: 14px; color: #1863dc; white-space: nowrap; cursor: pointer; background: transparent; border: 1px solid; text-decoration: underline;}.cky-notice-des button.cky-policy{padding: 0;}.cky-notice-des a.cky-policy:focus-visible,.cky-notice-des button.cky-policy:focus-visible,.cky-preference-content-wrapper .cky-show-desc-btn:focus-visible,.cky-accordion-header .cky-accordion-btn:focus-visible,.cky-preference-header .cky-btn-close:focus-visible,.cky-switch input[type=\"checkbox\"]:focus-visible,.cky-footer-wrapper a:focus-visible,.cky-btn:focus-visible{outline: 2px solid #1863dc; outline-offset: 2px;}.cky-btn:focus:not(:focus-visible),.cky-accordion-header .cky-accordion-btn:focus:not(:focus-visible),.cky-preference-content-wrapper .cky-show-desc-btn:focus:not(:focus-visible),.cky-btn-revisit-wrapper .cky-btn-revisit:focus:not(:focus-visible),.cky-preference-header .cky-btn-close:focus:not(:focus-visible),.cky-consent-bar .cky-banner-btn-close:focus:not(:focus-visible){outline: 0;}button.cky-show-desc-btn:not(:hover):not(:active){color: #1863dc; background: transparent;}button.cky-accordion-btn:not(:hover):not(:active),button.cky-banner-btn-close:not(:hover):not(:active),button.cky-btn-revisit:not(:hover):not(:active),button.cky-btn-close:not(:hover):not(:active){background: transparent;}.cky-consent-bar button:hover,.cky-modal.cky-modal-open button:hover,.cky-consent-bar button:focus,.cky-modal.cky-modal-open button:focus{text-decoration: none;}.cky-notice-btn-wrapper{display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; margin-top: 16px;}.cky-notice-btn-wrapper .cky-btn{text-shadow: none; box-shadow: none;}.cky-btn{flex: auto; max-width: 100%; font-size: 14px; font-family: inherit; line-height: 24px; padding: 8px; font-weight: 500; margin: 0 8px 0 0; border-radius: 2px; cursor: pointer; text-align: center; text-transform: none; min-height: 0;}.cky-btn:hover{opacity: 0.8;}.cky-btn-customize{color: #1863dc; background: transparent; border: 2px solid #1863dc;}.cky-btn-reject{color: #1863dc; background: transparent; border: 2px solid #1863dc;}.cky-btn-accept{background: #1863dc; color: #ffffff; border: 2px solid #1863dc;}.cky-btn:last-child{margin-right: 0;}@media (max-width: 576px){.cky-box-bottom-left{bottom: 0; left: 0;}.cky-box-bottom-right{bottom: 0; right: 0;}.cky-box-top-left{top: 0; left: 0;}.cky-box-top-right{top: 0; right: 0;}}@media (max-width: 440px){.cky-box-bottom-left, .cky-box-bottom-right, .cky-box-top-left, .cky-box-top-right{width: 100%; max-width: 100%;}.cky-consent-container .cky-consent-bar{padding: 20px 0;}.cky-custom-brand-logo-wrapper, .cky-notice .cky-title, .cky-notice-des, .cky-notice-btn-wrapper{padding: 0 24px;}.cky-notice-des{max-height: 40vh; overflow-y: scroll;}.cky-notice-btn-wrapper{flex-direction: column; margin-top: 0;}.cky-btn{width: 100%; margin: 10px 0 0 0;}.cky-notice-btn-wrapper .cky-btn-customize{order: 2;}.cky-notice-btn-wrapper .cky-btn-reject{order: 3;}.cky-notice-btn-wrapper .cky-btn-accept{order: 1; margin-top: 16px;}}@media (max-width: 352px){.cky-notice .cky-title{font-size: 16px;}.cky-notice-des *{font-size: 12px;}.cky-notice-des, .cky-btn{font-size: 12px;}}.cky-modal.cky-modal-open{display: flex; visibility: visible; -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); transform: translate(-50%, -50%); top: 50%; left: 50%; transition: all 1s ease;}.cky-modal{box-shadow: 0 32px 68px rgba(0, 0, 0, 0.3); margin: 0 auto; position: fixed; max-width: 100%; background: #ffffff; top: 50%; box-sizing: border-box; border-radius: 6px; z-index: 999999999; color: #212121; -webkit-transform: translate(-50%, 100%); -moz-transform: translate(-50%, 100%); -ms-transform: translate(-50%, 100%); -o-transform: translate(-50%, 100%); transform: translate(-50%, 100%); visibility: hidden; transition: all 0s ease;}.cky-preference-center{max-height: 79vh; overflow: hidden; width: 845px; overflow: hidden; flex: 1 1 0; display: flex; flex-direction: column; border-radius: 6px;}.cky-preference-header{display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid;}.cky-preference-header .cky-preference-title{font-size: 18px; font-weight: 700; line-height: 24px;}.cky-preference-header .cky-btn-close{margin: 0; cursor: pointer; vertical-align: middle; padding: 0; background: none; border: none; width: auto; height: auto; min-height: 0; line-height: 0; text-shadow: none; box-shadow: none;}.cky-preference-header .cky-btn-close img{margin: 0; height: 10px; width: 10px;}.cky-preference-body-wrapper{padding: 0 24px; flex: 1; overflow: auto; box-sizing: border-box;}.cky-preference-content-wrapper,.cky-gpc-wrapper .cky-gpc-desc{font-size: 14px; line-height: 24px; font-weight: 400; padding: 12px 0;}.cky-preference-content-wrapper{border-bottom: 1px solid;}.cky-preference-content-wrapper img{height: 25px; width: 25px;}.cky-preference-content-wrapper .cky-show-desc-btn{font-size: 14px; font-family: inherit; color: #1863dc; text-decoration: none; line-height: 24px; padding: 0; margin: 0; white-space: nowrap; cursor: pointer; background: transparent; border-color: transparent; text-transform: none; min-height: 0; text-shadow: none; box-shadow: none;}.cky-accordion-wrapper{margin-bottom: 10px;}.cky-accordion{border-bottom: 1px solid;}.cky-accordion:last-child{border-bottom: none;}.cky-accordion .cky-accordion-item{display: flex; margin-top: 10px;}.cky-accordion .cky-accordion-body{display: none;}.cky-accordion.cky-accordion-active .cky-accordion-body{display: block; padding: 0 22px; margin-bottom: 16px;}.cky-accordion-header-wrapper{cursor: pointer; width: 100%;}.cky-accordion-item .cky-accordion-header{display: flex; justify-content: space-between; align-items: center;}.cky-accordion-header .cky-accordion-btn{font-size: 16px; font-family: inherit; color: #212121; line-height: 24px; background: none; border: none; font-weight: 700; padding: 0; margin: 0; cursor: pointer; text-transform: none; min-height: 0; text-shadow: none; box-shadow: none;}.cky-accordion-header .cky-always-active{color: #008000; font-weight: 600; line-height: 24px; font-size: 14px;}.cky-accordion-header-des{font-size: 14px; line-height: 24px; margin: 10px 0 16px 0;}.cky-accordion-chevron{margin-right: 22px; position: relative; cursor: pointer;}.cky-accordion-chevron-hide{display: none;}.cky-accordion .cky-accordion-chevron i::before{content: \"\"; position: absolute; border-right: 1.4px solid; border-bottom: 1.4px solid; border-color: inherit; height: 6px; width: 6px; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); transition: all 0.2s ease-in-out; top: 8px;}.cky-accordion.cky-accordion-active .cky-accordion-chevron i::before{-webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg);}.cky-audit-table{background: #f4f4f4; border-radius: 6px;}.cky-audit-table .cky-empty-cookies-text{color: inherit; font-size: 12px; line-height: 24px; margin: 0; padding: 10px;}.cky-audit-table .cky-cookie-des-table{font-size: 12px; line-height: 24px; font-weight: normal; padding: 15px 10px; border-bottom: 1px solid; border-bottom-color: inherit; margin: 0;}.cky-audit-table .cky-cookie-des-table:last-child{border-bottom: none;}.cky-audit-table .cky-cookie-des-table li{list-style-type: none; display: flex; padding: 3px 0;}.cky-audit-table .cky-cookie-des-table li:first-child{padding-top: 0;}.cky-cookie-des-table li div:first-child{width: 100px; font-weight: 600; word-break: break-word; word-wrap: break-word;}.cky-cookie-des-table li div:last-child{flex: 1; word-break: break-word; word-wrap: break-word; margin-left: 8px;}.cky-footer-shadow{display: block; width: 100%; height: 40px; background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%); position: absolute; bottom: calc(100% - 1px);}.cky-footer-wrapper{position: relative;}.cky-prefrence-btn-wrapper{display: flex; flex-wrap: wrap; align-items: center; justify-content: center; padding: 22px 24px; border-top: 1px solid;}.cky-prefrence-btn-wrapper .cky-btn{flex: auto; max-width: 100%; text-shadow: none; box-shadow: none;}.cky-btn-preferences{color: #1863dc; background: transparent; border: 2px solid #1863dc;}.cky-preference-header,.cky-preference-body-wrapper,.cky-preference-content-wrapper,.cky-accordion-wrapper,.cky-accordion,.cky-accordion-wrapper,.cky-footer-wrapper,.cky-prefrence-btn-wrapper{border-color: inherit;}@media (max-width: 845px){.cky-modal{max-width: calc(100% - 16px);}}@media (max-width: 576px){.cky-modal{max-width: 100%;}.cky-preference-center{max-height: 100vh;}.cky-prefrence-btn-wrapper{flex-direction: column;}.cky-accordion.cky-accordion-active .cky-accordion-body{padding-right: 0;}.cky-prefrence-btn-wrapper .cky-btn{width: 100%; margin: 10px 0 0 0;}.cky-prefrence-btn-wrapper .cky-btn-reject{order: 3;}.cky-prefrence-btn-wrapper .cky-btn-accept{order: 1; margin-top: 0;}.cky-prefrence-btn-wrapper .cky-btn-preferences{order: 2;}}@media (max-width: 425px){.cky-accordion-chevron{margin-right: 15px;}.cky-notice-btn-wrapper{margin-top: 0;}.cky-accordion.cky-accordion-active .cky-accordion-body{padding: 0 15px;}}@media (max-width: 352px){.cky-preference-header .cky-preference-title{font-size: 16px;}.cky-preference-header{padding: 16px 24px;}.cky-preference-content-wrapper *, .cky-accordion-header-des *{font-size: 12px;}.cky-preference-content-wrapper, .cky-preference-content-wrapper .cky-show-more, .cky-accordion-header .cky-always-active, .cky-accordion-header-des, .cky-preference-content-wrapper .cky-show-desc-btn, .cky-notice-des a.cky-policy{font-size: 12px;}.cky-accordion-header .cky-accordion-btn{font-size: 14px;}}.cky-switch{display: flex;}.cky-switch input[type=\"checkbox\"]{position: relative; width: 44px; height: 24px; margin: 0; background: #d0d5d2; -webkit-appearance: none; border-radius: 50px; cursor: pointer; outline: 0; border: none; top: 0;}.cky-switch input[type=\"checkbox\"]:checked{background: #1863dc;}.cky-switch input[type=\"checkbox\"]:before{position: absolute; content: \"\"; height: 20px; width: 20px; left: 2px; bottom: 2px; border-radius: 50%; background-color: white; -webkit-transition: 0.4s; transition: 0.4s; margin: 0;}.cky-switch input[type=\"checkbox\"]:after{display: none;}.cky-switch input[type=\"checkbox\"]:checked:before{-webkit-transform: translateX(20px); -ms-transform: translateX(20px); transform: translateX(20px);}@media (max-width: 425px){.cky-switch input[type=\"checkbox\"]{width: 38px; height: 21px;}.cky-switch input[type=\"checkbox\"]:before{height: 17px; width: 17px;}.cky-switch input[type=\"checkbox\"]:checked:before{-webkit-transform: translateX(17px); -ms-transform: translateX(17px); transform: translateX(17px);}}.cky-consent-bar .cky-banner-btn-close{position: absolute; right: 9px; top: 5px; background: none; border: none; cursor: pointer; padding: 0; margin: 0; min-height: 0; line-height: 0; height: auto; width: auto; text-shadow: none; box-shadow: none;}.cky-consent-bar .cky-banner-btn-close img{height: 9px; width: 9px; margin: 0;}.cky-notice-group{font-size: 14px; line-height: 24px; font-weight: 400; color: #212121;}.cky-notice-btn-wrapper .cky-btn-do-not-sell{font-size: 14px; line-height: 24px; padding: 6px 0; margin: 0; font-weight: 500; background: none; border-radius: 2px; border: none; cursor: pointer; text-align: left; color: #1863dc; background: transparent; border-color: transparent; box-shadow: none; text-shadow: none;}.cky-consent-bar .cky-banner-btn-close:focus-visible,.cky-notice-btn-wrapper .cky-btn-do-not-sell:focus-visible,.cky-opt-out-btn-wrapper .cky-btn:focus-visible,.cky-opt-out-checkbox-wrapper input[type=\"checkbox\"].cky-opt-out-checkbox:focus-visible{outline: 2px solid #1863dc; outline-offset: 2px;}@media (max-width: 440px){.cky-consent-container{width: 100%;}}@media (max-width: 352px){.cky-notice-des a.cky-policy, .cky-notice-btn-wrapper .cky-btn-do-not-sell{font-size: 12px;}}.cky-opt-out-wrapper{padding: 12px 0;}.cky-opt-out-wrapper .cky-opt-out-checkbox-wrapper{display: flex; align-items: center;}.cky-opt-out-checkbox-wrapper .cky-opt-out-checkbox-label{font-size: 16px; font-weight: 700; line-height: 24px; margin: 0 0 0 12px; cursor: pointer;}.cky-opt-out-checkbox-wrapper input[type=\"checkbox\"].cky-opt-out-checkbox{background-color: #ffffff; border: 1px solid black; width: 20px; height: 18.5px; margin: 0; -webkit-appearance: none; position: relative; display: flex; align-items: center; justify-content: center; border-radius: 2px; cursor: pointer;}.cky-opt-out-checkbox-wrapper input[type=\"checkbox\"].cky-opt-out-checkbox:checked{background-color: #1863dc; border: none;}.cky-opt-out-checkbox-wrapper input[type=\"checkbox\"].cky-opt-out-checkbox:checked::after{left: 6px; bottom: 4px; width: 7px; height: 13px; border: solid #ffffff; border-width: 0 3px 3px 0; border-radius: 2px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); content: \"\"; position: absolute; box-sizing: border-box;}.cky-opt-out-checkbox-wrapper.cky-disabled .cky-opt-out-checkbox-label,.cky-opt-out-checkbox-wrapper.cky-disabled input[type=\"checkbox\"].cky-opt-out-checkbox{cursor: no-drop;}.cky-gpc-wrapper{margin: 0 0 0 32px;}.cky-footer-wrapper .cky-opt-out-btn-wrapper{display: flex; flex-wrap: wrap; align-items: center; justify-content: center; padding: 22px 24px;}.cky-opt-out-btn-wrapper .cky-btn{flex: auto; max-width: 100%; text-shadow: none; box-shadow: none;}.cky-opt-out-btn-wrapper .cky-btn-cancel{border: 1px solid #dedfe0; background: transparent; color: #858585;}.cky-opt-out-btn-wrapper .cky-btn-confirm{background: #1863dc; color: #ffffff; border: 1px solid #1863dc;}@media (max-width: 352px){.cky-opt-out-checkbox-wrapper .cky-opt-out-checkbox-label{font-size: 14px;}.cky-gpc-wrapper .cky-gpc-desc, .cky-gpc-wrapper .cky-gpc-desc *{font-size: 12px;}.cky-opt-out-checkbox-wrapper input[type=\"checkbox\"].cky-opt-out-checkbox{width: 16px; height: 16px;}.cky-opt-out-checkbox-wrapper input[type=\"checkbox\"].cky-opt-out-checkbox:checked::after{left: 5px; bottom: 4px; width: 3px; height: 9px;}.cky-gpc-wrapper{margin: 0 0 0 28px;}}.video-placeholder-youtube{background-size: 100% 100%; background-position: center; background-repeat: no-repeat; background-color: #b2b0b059; position: relative; display: flex; align-items: center; justify-content: center; max-width: 100%;}.video-placeholder-text-youtube{text-align: center; align-items: center; padding: 10px 16px; background-color: #000000cc; color: #ffffff; border: 1px solid; border-radius: 2px; cursor: pointer;}.video-placeholder-normal{background-image: url(\"\/wp-content\/plugins\/cookie-law-info\/lite\/frontend\/images\/placeholder.svg\"); background-size: 80px; background-position: center; background-repeat: no-repeat; background-color: #b2b0b059; position: relative; display: flex; align-items: flex-end; justify-content: center; max-width: 100%;}.video-placeholder-text-normal{align-items: center; padding: 10px 16px; text-align: center; border: 1px solid; border-radius: 2px; cursor: pointer;}.cky-rtl{direction: rtl; text-align: right;}.cky-rtl .cky-banner-btn-close{left: 9px; right: auto;}.cky-rtl .cky-notice-btn-wrapper .cky-btn:last-child{margin-right: 8px;}.cky-rtl .cky-notice-btn-wrapper .cky-btn:first-child{margin-right: 0;}.cky-rtl .cky-notice-btn-wrapper{margin-left: 0; margin-right: 15px;}.cky-rtl .cky-prefrence-btn-wrapper .cky-btn{margin-right: 8px;}.cky-rtl .cky-prefrence-btn-wrapper .cky-btn:first-child{margin-right: 0;}.cky-rtl .cky-accordion .cky-accordion-chevron i::before{border: none; border-left: 1.4px solid; border-top: 1.4px solid; left: 12px;}.cky-rtl .cky-accordion.cky-accordion-active .cky-accordion-chevron i::before{-webkit-transform: rotate(-135deg); -moz-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg);}@media (max-width: 768px){.cky-rtl .cky-notice-btn-wrapper{margin-right: 0;}}@media (max-width: 576px){.cky-rtl .cky-notice-btn-wrapper .cky-btn:last-child{margin-right: 0;}.cky-rtl .cky-prefrence-btn-wrapper .cky-btn{margin-right: 0;}.cky-rtl .cky-accordion.cky-accordion-active .cky-accordion-body{padding: 0 22px 0 0;}}@media (max-width: 425px){.cky-rtl .cky-accordion.cky-accordion-active .cky-accordion-body{padding: 0 15px 0 0;}}.cky-rtl .cky-opt-out-btn-wrapper .cky-btn{margin-right: 12px;}.cky-rtl .cky-opt-out-btn-wrapper .cky-btn:first-child{margin-right: 0;}.cky-rtl .cky-opt-out-checkbox-wrapper .cky-opt-out-checkbox-label{margin: 0 12px 0 0;}"}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/cookie-law-info.min.js?ver=3.2.4" id="cookie-law-info-js"></script> <script type="text/javascript" id="bb-twemoji-js-extra"> /* <![CDATA[ */ var bbemojiSettings = {"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"}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bb-twemoji.min.js?ver=2.5.60" id="bb-twemoji-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bb-emoji-loader.min.js?ver=2.5.60" id="bb-emoji-loader-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bpas-loadmore-js.min.js?ver=6.4.3" id="bpas-loadmore-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-nouveau-magnific-popup.min.js?ver=2.5.60" id="bp-nouveau-magnific-popup-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-widget-members.min.js?ver=2.5.60" id="bp-widget-members-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-jquery-query.min.js?ver=2.5.60" id="bp-jquery-query-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-jquery-cookie.min.js?ver=2.5.60" id="bp-jquery-cookie-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-jquery-scroll-to.min.js?ver=2.5.60" id="bp-jquery-scroll-to-js"></script> <script type="text/javascript" id="bp-media-dropzone-js-extra"> /* <![CDATA[ */ var bp_media_dropzone = {"dictDefaultMessage":"Drop files here to upload","dictFallbackMessage":"Your browser does not support drag'n'drop file uploads.","dictFallbackText":"Please use the fallback form below to upload your files like in the olden days.","dictFileTooBig":"File size is too big ({{filesize}} MB). Max file size: {{maxFilesize}} MB.","dictInvalidFileType":"You can't upload files of this type.","dictResponseError":"Server responded with {{statusCode}} code.","dictCancelUpload":"Cancel upload","dictUploadCanceled":"Upload canceled.","dictCancelUploadConfirmation":"Are you sure you want to cancel this upload?","dictRemoveFile":"Remove file","dictMaxFilesExceeded":"You cannot upload more than 10 files at a time."}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-media-dropzone.min.js?ver=2.5.60" id="bp-media-dropzone-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-exif.min.js?ver=2.5.60" id="bp-exif-js"></script> <script type="text/javascript" id="uncannyowl-learndash-toolkit-free-js-extra"> /* <![CDATA[ */ var UncannyToolkit = {"ajax":{"url":"https:\/\/www.learningfornature.org\/wp-admin\/admin-ajax.php","nonce":"62d26a4802"},"integrity":{"shouldPreventConcurrentLogin":false},"i18n":{"dismiss":"Dismiss","preventConcurrentLogin":"Your account has exceeded maximum concurrent login number.","error":{"generic":"Something went wrong. Please, try again"}},"modals":[]}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/uncanny-learndash-toolkit/src/assets/frontend/dist/bundle.min.js?ver=3.6.4.8" id="uncannyowl-learndash-toolkit-free-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/imagesloaded.min.js?ver=6.4.3" id="imagesloaded-js"></script> <script defer type="text/javascript" id="wp-h5p-xapi-js-before"> /* <![CDATA[ */ WP_H5P_XAPI_STATEMENT_URL = 'https://www.learningfornature.org/wp-content/plugins/tin-canny-learndash-reporting/src/h5p-xapi/process-xapi-statement.php?security=2fb0ca3e88';WP_H5P_XAPI_CONTEXTACTIVITY = JSON.parse( '{"id":"https:\/\/www.learningfornature.org\/en\/nature-for-life-hub-2024\/","definition":{"name":{"en":" | The Nature for Life Hub 2024"},"moreInfo":"https:\/\/www.learningfornature.org\/en\/nature-for-life-hub-2024\/"}}' ); /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/wp-h5p-xapi.min.js?ver=3.5.3" id="wp-h5p-xapi-js"></script> <script type="text/javascript" id="ai-js-js-extra"> /* <![CDATA[ */ var MyAjax = {"ajaxurl":"https:\/\/www.learningfornature.org\/wp-admin\/admin-ajax.php","security":"d3e3d4a1f9"}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/advanced-iframe/js/ai.min.js?ver=623165" id="ai-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/buddyboss-child-js.min.js?ver=1.0.0" id="buddyboss-child-js-js"></script> <link rel="https://api.w.org/" href="https://www.learningfornature.org/en/wp-json/" /><link rel="alternate" type="application/json" href="https://www.learningfornature.org/en/wp-json/wp/v2/pages/120253" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.learningfornature.org/xmlrpc.php?rsd" /> <link rel="canonical" href="https://www.learningfornature.org/en/nature-for-life-hub-2024/" /> <link rel='shortlink' href='https://www.learningfornature.org/en/?p=120253' /> <link rel="alternate" type="application/json+oembed" href="https://www.learningfornature.org/en/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.learningfornature.org%2Fen%2Fnature-for-life-hub-2024%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://www.learningfornature.org/en/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.learningfornature.org%2Fen%2Fnature-for-life-hub-2024%2F&#038;format=xml" /> <script>var ajaxurl = 'https://www.learningfornature.org/wp-admin/admin-ajax.php';</script> <style id="cky-style-inline">[data-cky-tag]{visibility:hidden;}</style><style> .som-password-error-message, .som-password-sent-message { background-color: #2679ce; border-color: #2679ce; } </style> <style type="text/css"> .wptime-plugin-progress-wrap{ display:block !important; max-width:100%; background:#eee; line-height:1 !important; position:relative !important; box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.03) inset !important; -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.03) inset !important; -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.03) inset !important; } .wptime-plugin-progress-bar{ width:0%; display:block !important; background:#bbb; height:30px !important; box-sizing:border-box !important; -webkit-box-sizing:border-box !important; -moz-box-sizing:border-box !important; } .wptime-plugin-progress-wrap span{ position:absolute !important; left:10px !important; top:10px !important; font-size:12px !important; color:#fff; line-height:1 !important; } @media all and (max-width: 768px){ .wptime-plugin-progress-wrap{ max-width:100% !important; } } </style> <script> WP_VIDEO_LIGHTBOX_VERSION="1.9.10"; WP_VID_LIGHTBOX_URL="https://www.learningfornature.org/wp-content/plugins/wp-video-lightbox"; function wpvl_paramReplace(name, string, value) { // Find the param with regex // Grab the first character in the returned string (should be ? or &) // Replace our href string with our new value, passing on the name and delimeter var re = new RegExp("[\?&]" + name + "=([^&#]*)"); var matches = re.exec(string); var newString; if (matches === null) { // if there are no params, append the parameter newString = string + '?' + name + '=' + value; } else { var delimeter = matches[0].charAt(0); newString = string.replace(re, delimeter + name + "=" + value); } return newString; } </script><noscript><style>.wp-grid-builder .wpgb-card.wpgb-card-hidden .wpgb-card-wrapper{opacity:1!important;visibility:visible!important;transform:none!important}.wpgb-facet {opacity:1!important;pointer-events:auto!important}.wpgb-facet *:not(.wpgb-pagination-facet){display:none}</style></noscript><link rel="alternate" hreflang="en-US" href="https://www.learningfornature.org/en/nature-for-life-hub-2024/"/> <link rel="alternate" hreflang="es-ES" href="https://www.learningfornature.org/es/nature-for-life-hub-2024/"/> <link rel="alternate" hreflang="fr-FR" href="https://www.learningfornature.org/fr/nature-for-life-hub-2024/"/> <link rel="alternate" hreflang="ru-RU" href="https://www.learningfornature.org/ru/nature-for-life-hub-2024/"/> <link rel="alternate" hreflang="pt-PT" href="https://www.learningfornature.org/pt/nature-for-life-hub-2024/"/> <link rel="alternate" hreflang="sq" href="https://www.learningfornature.org/sq/nature-for-life-hub-2024/"/> <link rel="alternate" hreflang="en" href="https://www.learningfornature.org/en/nature-for-life-hub-2024/"/> <link rel="alternate" hreflang="es" href="https://www.learningfornature.org/es/nature-for-life-hub-2024/"/> <link rel="alternate" hreflang="fr" href="https://www.learningfornature.org/fr/nature-for-life-hub-2024/"/> <link rel="alternate" hreflang="ru" href="https://www.learningfornature.org/ru/nature-for-life-hub-2024/"/> <link rel="alternate" hreflang="pt" href="https://www.learningfornature.org/pt/nature-for-life-hub-2024/"/> <style type='text/css'> .wpdiscuz-widget-icon-show-box i{ color: #777; fill: #777; } #widget-comments-container .wpd-widget-comp-count{ background:#777; } .like-count-first.wpdiscuz-widget-comment .wpdiscuz-widget-icon-show-box{} #widget-comments-container .wpdiscuz-widgets-tab-title-list li .fas, #widget-comments-container .wpdiscuz-widgets-tab-title-list li .far, #widget-comments-container .wpdiscuz-widgets-tab-title-list li .fab{ color:#777; } div#widget-comments-container.widget-comments-container{ max-width:550px; margin-left:10px; margin-right:10px;} div#widget-comments-container div.wpdiscuz-widgets-content{ padding-right:10px; padding-left:10px; } div.widget-comments-container>div, div.widget-comments-container>ul>.tab-title-list-active-item{ background-color:rgba(255, 255, 255, 0); } #widget-comments-container ul.wpdiscuz-widgets-tab-title-list li.tab-title-list-active-item{ border-top-color:#777 } #widget-comments-container .wpd_widgets_items_wrapper .slick-arrow{ background:#777; } #widget-comments-container{font-size:100%} </style> <meta name="generator" content="Redux 4.4.11" /><meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /><style id='wp-fonts-local' type='text/css'> @font-face{font-family:proxima-nova;font-style:normal;font-weight:400;font-display:fallback;src:url('https://www.learningfornature.org/wp-content/uploads/useanyfont/4013Proxima-Nova.woff2') format('woff2');} @font-face{font-family:giorgio-sans;font-style:normal;font-weight:400;font-display:fallback;src:url('https://www.learningfornature.org/wp-content/uploads/useanyfont/7882Giorgio-Sans.woff2') format('woff2');} @font-face{font-family:giorgio-sans-bold;font-style:normal;font-weight:700;font-display:fallback;src:url('https://www.learningfornature.org/wp-content/uploads/useanyfont/3346Giorgio-Sans-Bold.woff2') format('woff2');} @font-face{font-family:inter;font-style:normal;font-weight:400;font-display:fallback;src:url('https://www.learningfornature.org/wp-content/uploads/useanyfont/5889Inter.woff2') format('woff2');} </style> <link rel="icon" href="https://www.learningfornature.org/wp-content/uploads/2018/04/cropped-FAVICON-32x32.png" sizes="32x32" /> <link rel="icon" href="https://www.learningfornature.org/wp-content/uploads/2018/04/cropped-FAVICON-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.learningfornature.org/wp-content/uploads/2018/04/cropped-FAVICON-180x180.png" /> <meta name="msapplication-TileImage" content="https://www.learningfornature.org/wp-content/uploads/2018/04/cropped-FAVICON-270x270.png" /> <style id="buddyboss_theme-style">:root{--bb-primary-color:#03A9F4;--bb-primary-color-rgb:3, 169, 244;--bb-body-background-color:#FFFFFF;--bb-body-background-color-rgb:255, 255, 255;--bb-content-background-color:#FFFFFF;--bb-content-alternate-background-color:#FBFBFC;--bb-content-border-color:#E7E9EC;--bb-content-border-color-rgb:231, 233, 236;--bb-cover-image-background-color:#359FD9;--bb-headings-color:#122B46;--bb-headings-color-rgb:18, 43, 70;--bb-body-text-color:#0F0E0A;--bb-body-text-color-rgb:15, 14, 10;--bb-alternate-text-color:#A3A5A9;--bb-alternate-text-color-rgb:163, 165, 169;--bb-primary-button-background-regular:#385DFF;--bb-primary-button-background-hover:#1E42DD;--bb-primary-button-border-regular:#385DFF;--bb-primary-button-border-hover:#1E42DD;--bb-primary-button-text-regular:#FFFFFF;--bb-primary-button-text-regular-rgb:255, 255, 255;--bb-primary-button-text-hover:#FFFFFF;--bb-primary-button-text-hover-rgb:255, 255, 255;--bb-secondary-button-background-regular:#F2F4F5;--bb-secondary-button-background-hover:#385DFF;--bb-secondary-button-border-regular:#F2F4F5;--bb-secondary-button-border-hover:#385DFF;--bb-secondary-button-text-regular:#1E2132;--bb-secondary-button-text-hover:#FFFFFF;--bb-header-background:#5C6A75;--bb-header-alternate-background:#F2F4F5;--bb-header-links:#FFFFFF;--bb-header-links-hover:#349FD8;--bb-header-mobile-logo-size:px;--bb-header-height:60px;--bb-sidenav-background:#3F515E;--bb-sidenav-text-regular:#FFFFFF;--bb-sidenav-text-hover:#FFFFFF;--bb-sidenav-text-active:#3F515E;--bb-sidenav-menu-background-color-regular:#3F515E;--bb-sidenav-menu-background-color-hover:#F2F4F5;--bb-sidenav-menu-background-color-active:#349FD8;--bb-sidenav-count-text-color-regular:#FFFFFF;--bb-sidenav-count-text-color-hover:#3F515E;--bb-sidenav-count-text-color-active:#349FD8;--bb-sidenav-count-background-color-regular:#F2F4F5;--bb-sidenav-count-background-color-hover:#349FD8;--bb-sidenav-count-background-color-active:#3F515E;--bb-footer-background:#4C4C4C;--bb-footer-widget-background:#FFFFFF;--bb-footer-text-color:#5A5A5A;--bb-footer-menu-link-color-regular:#5A5A5A;--bb-footer-menu-link-color-hover:#385DFF;--bb-footer-menu-link-color-active:#1E2132;--bb-admin-screen-bgr-color:#FAFBFD;--bb-admin-screen-txt-color:#122B46;--bb-login-register-link-color-regular:#5A5A5A;--bb-login-register-link-color-hover:#1E42DD;--bb-login-register-button-background-color-regular:#385DFF;--bb-login-register-button-background-color-hover:#1E42DD;--bb-login-register-button-border-color-regular:#385DFF;--bb-login-register-button-border-color-hover:#1E42DD;--bb-login-register-button-text-color-regular:#FFFFFF;--bb-login-register-button-text-color-hover:#FFFFFF;--bb-label-background-color:#D7DFFF;--bb-label-text-color:#385DFF;--bb-tooltip-background:#122B46;--bb-tooltip-background-rgb:18, 43, 70;--bb-tooltip-color:#FFFFFF;--bb-default-notice-color:#007CFF;--bb-default-notice-color-rgb:0, 124, 255;--bb-success-color:#1CD991;--bb-success-color-rgb:28, 217, 145;--bb-warning-color:#F7BA45;--bb-warning-color-rgb:247, 186, 69;--bb-danger-color:#EF3E46;--bb-danger-color-rgb:239, 62, 70;--bb-login-custom-heading-color:#FFFFFF;--bb-button-radius:100px;--bb-block-radius:4px;--bb-option-radius:3px;--bb-block-radius-inner:4px;--bb-input-radius:4px;--bb-checkbox-radius:2.7px;--bb-primary-button-focus-shadow:none;--bb-secondary-button-focus-shadow:none;--bb-outline-button-focus-shadow:none;--bb-input-focus-shadow:none;--bb-input-focus-border-color:var(--bb-content-border-color);--bb-label-type-radius:100px;--bb-widget-title-text-transform:uppercase;}h1 { line-height:1.2; }h2 { line-height:1.2; }h3 { line-height:1.4; }h4 { line-height:1.4; }h5 { line-height:1.4; }h6 { line-height:1.4; }.bb-style-primary-bgr-color {background-color:#03A9F4;}.bb-style-border-radius {border-radius:100px;}#site-logo .site-title img {max-height:inherit;}.site-header-container .site-branding {min-width:209px;}#site-logo .site-title .bb-logo img,#site-logo .site-title img.bb-logo,.buddypanel .site-title img {width:209px;}.site-header-container #site-logo .bb-logo img,.site-header-container #site-logo .site-title img.bb-logo,.site-title img.bb-mobile-logo {max-height:60px}.site-header .site-header-container,.header-search-wrap,.header-search-wrap input.search-field,.header-search-wrap form.search-form {height:60px;}.sticky-header .bp-feedback.bp-sitewide-notice {top:60px;}@media screen and (max-width:767px) {.bb-mobile-header {height:60px;}#learndash-content .lms-topic-sidebar-wrapper .lms-topic-sidebar-data {height:calc(90vh - 60px);}}[data-balloon]:after,[data-bp-tooltip]:after {background-color:rgba( 18,43,70,1 );box-shadow:none;}[data-balloon]:before,[data-bp-tooltip]:before {background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba( 18,43,70,1 )%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;}[data-bp-tooltip][data-bp-tooltip-pos="right"]:before,[data-balloon][data-balloon-pos='right']:before {background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba( 18,43,70,1 )%22%20transform%3D%22rotate(90 6 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;}[data-bp-tooltip][data-bp-tooltip-pos="left"]:before,[data-balloon][data-balloon-pos='left']:before {background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba( 18,43,70,1 )%22%20transform%3D%22rotate(-90 18 18)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;}[data-bp-tooltip][data-bp-tooltip-pos="down-left"]:before,[data-bp-tooltip][data-bp-tooltip-pos="down"]:before,[data-balloon][data-balloon-pos='down']:before {background:no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba( 18,43,70,1 )%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");background-size:100% auto;}</style> <style id="buddyboss_theme-bp-style"> #buddypress #header-cover-image.has-default,#buddypress #header-cover-image.has-default .guillotine-window img,.bs-group-cover.has-default a {background-color:#359FD9;}body.buddypress.register.login-split-page .login-split .split-overlay,body.buddypress.activation.login-split-page .login-split .split-overlay {opacity:1;} </style> <style id="buddyboss_theme-learndash-style"> .learndash-wrapper .bb-ld-tabs #learndash-course-content {top:-102px;}html[dir="rtl"] .learndash_next_prev_link a.next-link,html[dir="rtl"] .learndash_next_prev_link span.next-link {border-radius:100px 0 0 100px;}html[dir="rtl"] .learndash_next_prev_link a.prev-link,html[dir="rtl"] .learndash_next_prev_link span.prev-link {border-radius:0 100px 100px 0;} </style> <style id="buddyboss_theme-custom-style"> a.bb-close-panel i {top:21px;} </style> <style id="learndash-focus-mode-style">.ld-in-focus-mode .learndash-wrapper .learndash_content_wrap{max-width: 960px}.ld-in-focus-mode .learndash-wrapper .bb-lms-header .lms-header-title, .ld-in-focus-mode .learndash-wrapper .bb-lms-header .lms-header-instructor{max-width: 960px}</style> <style type="text/css" id="wp-custom-css"> /* Change color of user name on main menu */ a.user-link { color: #ffffff; } /* Adjust FAQ style in course room */ .ui-accordion.accordion h3.ui-accordion-header { border: 0px solid #dfe3e7; float:left !important; } /* Modify popup tigger button "Create your own group" */ .popupaoc-button { background: #03a9f4; color: #ffffff !important; display: inline-block; font-size: 14.5px; text-align: left; margin-top: -10px !important; margin-bottom: 20px !important; border-radius: 20px !important; padding: 8px 15px 8px 15px; float: left; margin-right: 7px; } /* Modify popup tigger button (on hover)*/ .popupaoc-button:hover{ background: #0690ce; color: #ffffff !important; } /*modify accordion style in FQAs */ /* Accordion Styles */ .accordion { margin-bottom: 20px; } .accordion-title { font-size: 16px; font-weight: 900; margin: 0; padding: 10px 0px 10px 0px !important; cursor: pointer !important; } /* Hide native LearnDash "Download cerficate" option" */ .learndash-wrapper .ld-alert-success { border-color: #1cd991; border-width: 1px; padding: 15px; min-height: inherit; color: inherit; font-size: 15px; background-color: rgba(1,158,124,.1); display: none; } /* Make shadow around Elearing, forum engagement and enrolled students boxes in home page */ .vc_row.vc_row-flex>.vc_column_container>.vc_column-inner { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; z-index: 1; box-shadow: 0px 1px 4px 0px rgba(50, 50, 50, 0.17) } /* Modify style of "complete" button in course page */ .learndash-wrapper .ld-status.ld-status-complete { background-color: #28ca82; border-radius: 3px; } .learndash-wrapper .bb-ld-status .ld-status.ld-status-complete { color: #fff; background-color: #28ca82; } /* modify color of course blue banner */ .bb-learndash-banner:before { content: ''; opacity: .4; background-color: #122b4600; background-image: -webkit-linear-gradient(270deg,transparent 4%,#000 100%); background-image: linear-gradient(-180deg,transparent 4%,#00000091 100%); position: absolute; height: 100%; width: 100%; top: 0; left: 0; z-index: 1; } /* modify style of complete activities/modules in the course room */ .learndash-wrapper .learndash-complete .ld-item-list-item-preview .ld-item-title>span:first-child { text-decoration: none !important; } .learndash-wrapper .ld-table-list .ld-table-list-items div.ld-table-list-item a.ld-table-list-item-preview.learndash-complete .ld-topic-title, .lms-topic-sidebar-wrapper .lms-lessions-list>ol.bb-lessons-list .bb-lesson-head>.flex-1 { text-decoration: none !important; } .lms-topic-sidebar-wrapper .bb-lesson-title, .lms-topic-sidebar-wrapper .bb-lms-title { text-decoration: none !important; } /* modify style of course content table */ .learndash-wrapper .ld-item-list .ld-item-list-item .ld-item-list-item-preview { background: #f1f5f9; border-radius: 4px; } /* Delete "Jump to next lesson" button in module page */ #ld-label-span { box-shadow: 0 0 2px lightgrey; cursor: pointer; display: none; } /* Fix issue of course right sidebar sitting on decription text on top blue area (delete this css once the buddyboss theme gets updated) .bb-course-banner-info .bb-course-excerpt { max-width: 65%; text-align: justify; } .bb-course-banner-inner h1.entry-title { max-width: 65%; text-align: left; } */ /* Adjust horizontal space of course title and description in blue top area*/ .bb-course-banner-info .bb-course-excerpt { max-width: 100% !important; text-align: left; } .bb-course-banner-inner h1.entry-title { max-width: 100% !important; text-align: left; } /*Adjust little size in the e-learning opportunities catalog items */ div.cspml_details_container div.cspml_details_title, div.cspml_details_container div.cspml_details_title a { text-decoration: none; font: 16px 'lato',sans-serif; font-weight: 400; white-space: inherit; line-height: 1.5em; height: 10em; /* height is 10x line-height, so 7 lines will display */ overflow: hidden; } div.cspml_details_container div.cspml_details_content.grid { line-height: 1.5em; /* height: 4em; /* height is 4x line-height, so two lines will display */ /* overflow: hidden;*/ } div.cspml_item img.thumb { padding: 0; background: rgba(253,253,253,1); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: content-box; width: inherit; } form.cspml_filter_form div.cspml_fs_options_list { padding-left: 5px;} element.style { } div.cspml_nbr_items { text-shadow: 0 1px 0 #fff; box-sizing: border-box; width: 100%; padding-right: 7px; padding-left: 7px; } /* Remove empty space at the top of the blue area in the course room */ .bb-course-banner-inner { margin-top: 10px; padding-top: 0; } /* Change backgroun color of boxes of the "complete course in three steps" section in the homepage */ .wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-tab.vc_active>a { border-color: #c4edff !important; background-color: #c4edff !important; color: #122b46 !important; box-shadow: 0px 1px 4px 0px rgba(50, 50, 50, 0.17) !important; } /* Change colors of the filters buttons in the e-learning opportunities page */ .cspm_bg_hex, .cspm_bg_hex_hover, .cspm_bg_before_hex:before, .cspm_bg_after_hex:after { background-color: #0999da; } div[class^=cspml_pagination_] ul li span.current { background-color: #0999da; } /* Adjust popup box of FAQ */ .paoc-popup-close { top: -2px; } .paoc-popup-modal-cnt { padding: 30px 50px 30px 50px !important; } .paoc-popup-modal, .paoc-popup-modal p { line-height: 1.5 !important; } /* Course info table: Reducing the spacing between rows */ div.su-column-inner.su-u-clearfix.su-u-trim { margin-bottom: -20px; } /* change the style of "Enrolled" lable */ .su-label-type-success { float: right; padding-top: 8px !important; padding-bottom: 17px!important; padding-left: 10px!important; padding-right: 10px!important; margin-bottom: 20px; background: #25bf7b !important; background: #ffffff !important; color: #109200 !important; font-weight: 900 !important; } /* Style of the delete button in the messaging system */ i.dashicons.dashicons-trash { background-color: #ffffff !important; } /* Style profile button "connected" */ button#friend-56.friendship-button.is_friend.remove.bp-toggle-action-button { margin-top: 5px; margin-right: 0px !important; } /*adjust style of "Course syllabus" popup */ .su-spoiler-style-default>.su-spoiler-title { font-size: 16px; } .paoc-popup-modal, .paoc-popup-modal p { font-size: 16px; } .su-list ul li { font-size: 16px; } .su-tabs-nav, .su-tabs-nav span, .su-tabs-pane, .su-tabs-panes { font-size: 16px !important; } /*delete course coordinator and course date in top blue area */ .bb-course-single-meta, .bb-author-meta { margin-bottom: 40px; display: none; } /*delete "about course coordinator" box in the course room */ .bb-about-instructor { display: none !important; } /* make lesson iframe 100% size */ .iframe-container { overflow: hidden; padding-top: 56.25%; position: relative; } .iframe-container iframe { border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 90%; } /* 4x3 Aspect Ratio */ .iframe-container-4x3 { padding-top: 75%; } /* Quizz adjust style */ .wpProQuiz_content .wpProQuiz_reviewLegend li { font-size: 12px; display: none; } .wpProQuiz_button2 { display: none !important; } .wpProQuiz_content .wpProQuiz_matrixSortString .wpProQuiz_sortStringList.ui-sortable li.wpProQuiz_sortStringItem { background-color: #029ade; color: white; } .wpProQuiz_content ul.wpProQuiz_questionList[data-type=matrix_sort_answer] li ul.wpProQuiz_maxtrixSortCriterion li.wpProQuiz_sortStringItem { background-color: #f5f5f5; color: #292929; } .learndash-wrapper .wpProQuiz_reviewDiv { margin-bottom: 2em; padding-bottom: 0; } .wpProQuiz_content .wpProQuiz_reviewQuestion { overflow-y: auto; } .wpProQuiz_content .wpProQuiz_results .quiz_continue_link a#quiz_continue_link { background: #03a9f4; font-size: 16px !important; } /*adjust discussion forum page (post page) */ .post-meta-wrapper { border-top: 1px solid #e7e9ec; padding-top: 30px; font-size: 15px; display: none; } .post-author-info { border-bottom: 1px solid #e7e9ec; margin-bottom: -65px; } .single-post .entry-content { padding-right: 40px; } .single .entry-meta { padding-right: 40px; margin-bottom: 25px; } .widget_bp_core_recently_active_widget .item-avatar { padding: 2px; padding-bottom: 20px; padding-left: 20px; max-width: 30%; } /* Change stly of element "button" */ input[type="submit"], .button, input[type=button], .bb-radio .bb-radio-help:after { background-color: #03a9f4; padding-bottom: 8px; padding-top: 8px; padding-right: 30px; padding-left: 30px; border-radius: 20px; } /* Change stely of quizzes */ div.wpProQuiz_incorrect { color: red !important; } .learndash-wrapper .ld-table-list-item.learndash-complete .ld-item-title>span:first-child { text-decoration: none; } /*Delete time in comments editing delete buttons span.sce-timer, span.sce-seperator, sce-timer { color:white; display: none; } div.sce-timer { display: none !important; } span.sce-seperator { margin-left:120px; }*/ /* Hide thumbs down in comments section */ #wpcomm .wc-vote-link.wc-down{ display: none !important; } .wcai-wrapper .wcai-profile-stat-box { width: 32% } .wcai-profile-stat-box:nth-child(4) { display: none; } /* Delete edit, stick, close buttons under the comment section */ /*span.wc_editable_comment.wc-cta-button, */ span.wc_stick_text, span.wc_close_btn.wc-cta-button { display: none !important; } div.sce-edit-button { float: right; margin-bottom: -50px } /* adjust alignment of edit/delete comment */ #wpcomm .wc-comment-footer { font-size: 13px; font-weight: normal; color: #999; padding: 2px 10px 10px 10px; margin-top: -10px; min-height: 28px; text-align: left; } /* adujust spacig of course content table */ .ld-item-components { width: 30% !important; } /*delete completion tab inside the module/activity page */ .learndash-wrapper .bb-ld-status .ld-status.ld-status-complete { color: #fff; background-color: #28ca82; display: none; } /* delete completion percentage (1/3 steps) lables in modules/activities pages */ .learndash-wrapper .ld-table-list .ld-table-list-header .ld-table-list-lesson-details { display: none; } /* Delele button "all available activities complete" from course sidebar */ .learndash-wrapper .ld-status.ld-status-complete { background-color: #28ca82; border-radius: 20px; display: none; } span.bb-course-type.bb-course-type-free { color: #019e7c !important; float: right; font-weight:800; } /* adjust the spacing between header logo and main menu */ @media only screen and (max-width: 1281px) { #primary-navbar { min-width: 210px; float: right !important; width:100%; padding-left: 30px; } .header-aside>:last-child { padding-right: 0; margin-right: -20px; } } @media only screen and (min-width: 1600px) { #primary-navbar { min-width: 210px; float: right !important; width:100%; } .site-header-container #site-logo .bb-logo img, .site-header-container #site-logo .site-title img.bb-logo, .site-title img.bb-mobile-logo { width:280px; float: left; } .header-aside>:last-child { padding-right: 0; margin-right: -20px; } } /* adjust size of three white stats boxes in home page (Learning opportunities, Forum engagement and Enrolled students) */ .vc_row.vc_row-flex>.vc_column_container>.vc_column-inner { padding-top: 0px;} /*adjust size of the course boxes in the e-learing opportunities page */ div.cspml_details_container div.cspml_details_title, div.cspml_details_container div.cspml_details_title a { height: 9em; } /*change color of modules and lessons text in the Course Content table in the course room */ .learndash-wrapper .ld-item-list .ld-item-list-item.ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-item-title { color: #6b6b6b; } .learndash-wrapper .ld-table-list .ld-table-list-items div.ld-table-list-item a.ld-table-list-item-preview.learndash-incomplete .ld-topic-title { color: #6b6b6b; } .learndash-wrapper .ld-table-list .ld-table-list-items div.ld-table-list-item a.ld-table-list-item-preview.learndash-complete .ld-topic-title { color: #6b6b6b; } .learndash-wrapper .ld-table-list-item.learndash-complete .ld-item-title>span:first-child { text-decoration: none; color: #6b6b6b; } .learndash-wrapper .ld-table-list-item.learndash-incomplete .ld-item-title>span:first-child { text-decoration: none; color: #6b6b6b; } /*Adjust style of "Moderate" and "Delete" comment buttons */ span.edit-comment, span.blacklist-comment, span.email-comment, span.move-comment,span.spam-comment, span.aec_link_text, span.aec_anon_text { display: none !important; float: right !important; } .aec-icons { clear: none; float: right !important; } /*Adjust style of "Edit" comment button */ span.wc_editable_comment.wc-cta-button { border: 1px solid #0178A0!important; color: #0178A0 !important; } span.wc_editable_comment.wc-cta-button:hover { color: #ffffff !important; } .aec_expand { background-image: url(images/full_screen.png); display: none; } #commentform .AtD_proofread_button{ display: none; } /*adjust quiz buttons*/ input.wpProQuiz_button { font-size: 16px !important; } .learndash-wrapper .wpProQuiz_content .wpProQuiz_box { float: left !important; } /*Delete the "Download certificate" button in the "certificates" section in my courses in user profile */ #certificate_list .bb-certificate-download a { font-size: 13px; position: relative; display: inline-block; padding-top: 11px; letter-spacing: -.24px; } /*Adjust the style of "My courses" section in user profile */ .bb-cover-list-item .ld-status-complete.ld-secondary-background { background-color: #1cbd68 !important; line-height: 1.5; } .bb-cover-list-item .ld-status { position: inherit; z-index: 9; top: 0px; border-radius: 0px; color: #fff; text-align: left; padding: 6px 10px 6px 10px; text-transform: uppercase; font-size: 11px; line-height: 1.5; letter-spacing: .23px; font-weight: 700; } /*delete messages (inbox) icon in the toolbar main menu - right side */ /*div#header-messages-dropdown-elem { display:none !important; }*/ /*adjust alignment of question feedback text in quizzes */ .wpProQuiz_content .wpProQuiz_quiz .wpProQuiz_response p { margin-bottom: 10px; font-size: 15px; TEXT-ALIGN: LEFT; } /*force the style of all iFrames in the site - delete iFrame border */ iframe { border-width: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: inset; border-color: initial; border-image: initial; } /*edit style of popular courses in home page */ span.wpcu_block_title { display: none } .wplp_container .title { margin-top: 10px; margin-bottom: 10px !important; color: #0b4c78 !important; font-size: 18px !important; max-width: 95%; font-size: 17px !important; } /* Ajust styling of Progress bar plugin */ .wptime-plugin-progress-bar { height: 5px !important; } /* adjust styling of Expand (show more) button from the shortcodes plugin */ .su-expand-collapsed .su-expand-link-more { display: block; margin-top: 25px; } /* Style of course room */ .bb-course-banner-info .bb-course-excerpt { max-width: 65%; text-align: left; } /*Style of all text editor elements (buttons, dropdowns, etc) this includes the media library elements*/ .fl-builder--group-label { color: black; -ms-flex: 0 0 auto; flex: 0 0 auto; padding: 4px 12px 4px 10px; background: #e7ebef; border-radius: 3px; display: -ms-flexbox; display: flex; -ms-flex-direction: row; flex-direction: row; -ms-flex-align: center; align-items: center; } body button[class*=fl-builder], body button[class*=fl-builder]:focus, body button[class*=fl-builder]:hover { box-shadow: none; max-height: none; max-width: none; text-decoration: none; text-indent: 0; text-shadow: none; text-transform: none; letter-spacing: normal; color: black !important; } .mce-toolbar .mce-btn-group .mce-btn, .qt-dfw { border: 1px solid transparent; margin: 2px !important; border-radius: 2px; } .mce-toolbar .mce-btn-group .mce-btn, .qt-dfw { border: 1px solid transparent !important; margin: 2px !important; border-radius: 2px !important; } .wp-core-ui .button, .wp-core-ui .button-secondary { color: #0071a1 !important; border-color: #0071a1 !important; background: #f3f5f6 !important; vertical-align: top; } .media-router .media-menu-item { position: relative; float: left; border: 0 !important; margin-left: 1 !important; margin-top: -5px !important; padding: 8px 10px 9px; height: 18px; line-height: 1.28571428; font-size: 14px; text-decoration: none; background: #9a9a9a !important; cursor: pointer; transition: none; border-radius: 5px; } .wp-core-ui button { font-weight: 400; background: #d2d0d0 !important; border-radius: 5px !important; } fl-builder-settings-save fl-builder-button fl-builder-button-large{ font-weight: 400; background: #d2d0d0 !important; border-radius: 5px !important; } /* Adjust the styling of the widget area across the site*/ .widget .widget-title { display: -webkit-box; display: -ms-flexbox; display: flex; font-size: 16px; } /*Adjust style of WPFomrs (see the "Create a group" form in the groups page) */ div.wpforms-container-full .wpforms-form .wpforms-field-label { display: block; font-weight: 700; font-size: 16px; float: none; line-height: 1.3; margin: 0 0 20px 0 !important; padding: 0; } div.wpforms-container-full .wpforms-form input[type=submit], div.wpforms-container-full .wpforms-form button[type=submit], div.wpforms-container-full .wpforms-form .wpforms-page-button { background-color: #03a9f4 !important; border: 0px solid #ddd !important; color: #333; font-size: 1em; padding: 10px 15px; } .wpforms-confirmation-container-full, div[submit-success] > .wpforms-confirmation-container-full:not(.wpforms-redirection-message) { background: #c7edff !important; border: 1px solid #acd0da !important; } /* Hide albums from groups */ a#albums { display:none !important; } /* hide "text formatting" icon in the messaging system text box (users don't need to format messages) */ #whats-new-messages-toolbar .dashicons-editor-textcolor:before, #whats-new-toolbar .dashicons-editor-textcolor:before, .ac-reply-toolbar .dashicons-editor-textcolor:before { content: '\e980'; font-size: 15px; vertical-align: top; margin-top: 4px; display: inline-block; width: 24px; display: none; } .dashicons dashicons-editor-textcolor{ width:100px; display:block; height:20px; background:black; color:white; text-decoration:none; padding-left:20px; } .dashicons dashicons-editor-textcolor:before{ content: ''; background:url('https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSj3XfIpf-OOJRCcWz4iN2CU3qMKVVbj0p0bRvKNGVo1U9pk_8ZIlyR8pWreA'); background-size:cover; position:absolute; width:20px; height:20px; margin-left:-20px; } /* Remove sticky and super sticky options from group forums */ i.bb-topic-status.bb-sticky.unsticky { display: none !important; } i.bb-topic-status.bb-super-sticky.unsticky { display: none !important; } .bb-modal-box #bbp_stick_topic_select { margin: 0!important; width: 10px; display: none; } #bbpress-forums .bb-modal.bbp-topic-form .bbp_topic_subscription_wrapper { margin-left: -200px; } /*Adjust comments area */ .comments-area { width: 60% !important; margin-left: 0px !important; } div#comments.comments-area { padding-left: 20px !important; } div#comments.comments-area { padding-left: 20px !important; padding-top: 20px !important; } /* Adjust width of the title area of the carousels in the Elearning opportunities page */ .wplp_container .title span { overflow: hidden; text-overflow: ellipsis; max-width: 90%; } /*Adjust bottom padding of the "free" green tag in the course room floating bar */ .bb-single-course-sidebar .bb-button-wrap .learndash_join_button+.bb-course-type { margin-top: 10px; margin-bottom: 20px; } /* Adjust confirmation message in WPform signup form */ .wpforms-confirmation-container-full, div[submit-success] > .wpforms-confirmation-container-full:not(.wpforms-redirection-message) { background: #c7edff00 !important; border: 1px solid #acd0da !important; } /*adjust buttons in nature for live hub*/ .nfl-homepage-buttons{ margin-top: 20px; } /* Ajust text formatting in tiptool of smart shortcode*/ .qtip:not(.ie9haxors) div.qtip-content, .qtip:not(.ie9haxors) div.qtip-titlebar { filter: none; -ms-filter: none; LINE-HEIGHT: 1.5; } /******* CLASSES ********/ /*Disable counter next to comments */ .sce-timer { display: none !important; } /* Button 2 (blue initial - gray on hover) */ /* Modify popup tigger button*/ .button2{ background: #03a9f4; color: #ffffff !important; display: inline-block; font-size: 14.5px; text-align: left; margin-top: 20px !important; margin-bottom: 20px !important; border-radius: 7px !important; padding: 4px 10px 4px 10px ; float:left; margin-right:7px; } /* Modify popup tigger button (on hover)*/ .button2:hover{ background: #0398db; color: #ffffff !important; } /*Class to remove a "black list" link at the bottom of all comments when changing the site to any language other than EN */ .edit-comment-admin-links-no-icon { font-size: 0px !important; } /* Button 3 (blue initial - gray on hover) */ /* Modify popup tigger button*/ .button3{ background: #03a9f4; color: #ffffff !important; display: inline-block; font-size: 14.5px; text-align: left; border-radius: 7px !important; padding: 4px 10px 4px 10px ; float:left; margin-right:7px; } /* Modify popup tigger button (on hover)*/ .button3:hover{ background: #0398db; color: #ffffff !important; } /*Make comments are full-width*/ .comments-area { width: 100% !important; margin-left: 0px !important; } /*hide scrollbar in quiz overview*/ .wpProQuiz_reviewDiv .wpProQuiz_reviewQuestion{ overflow: hidden; } /*Styling for Linking Google Earth Stories on NBS for Sustainable Dev*/ .polaroid{ background: #FFF; display: block; padding: 0px; margin: 10px; -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, .3); -moz-box-shadow: 0 4px 6px rgba(0, 0, 0, .3); box-shadow: 0 4px 6px rgba(0, 0, 0, .3); text-align: center; text-decoration: none; transition: all .20s linear; z-index: 0; position: relative; max-width: 700px; } a .polaroid { color: #333; font-size: 16px; position: relative; margin: 10px; padding: 20px; } .polaroid img { display: block; margin-left: auto; margin-right: auto; margin-bottom: 13px; } a .polaroid:hover{ color: #224c8f; } .polaroid:hover { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); transform: scale(1.04); z-index: 10; -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .7); -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, .7); box-shadow: 0 10px 20px rgba(0, 0, 0, .2); } /*hide addtoany elements below correct/incorrect feedback on quizzes*/ p.wpProQuiz_AnswerMessage .addtoany_share_save_container.addtoany_content.addtoany_content_bottom{ display:none; } /* Reduce the bottom margin of the Beaver Builder Slide Box module*/ .fl-node-5f86fdbe10884 .uabb-slide-box .uabb-slide-down { text-align: center; min-height: 150px; justify-content: inherit; } /*Make image caption text wrap in multiple lines in overflow */ .fl-photo-caption { font-size: 16px; line-height: 18px; overflow: hidden; text-overflow: ellipsis; white-space: pre-wrap; margin: -10px 10px -5px 10px; min-height: 66px; } /*Add disclaimer to all discusion forums*//* .wpd_comm_form.wpd_main_comm_form:after { content: "*The views expressed in this public forum are those of the author(s) and do not necessarily represent those of the United Nations, including UNDP, or the UN Member States. "; font-size: 14px; margin-top: 20px !important; margin-bottom:20px; !important margin-right: 120px !important; position: absolute } .wpd-thread-head{ margin-top: 75px !important; } */ /*Add disclaimer to all groups*/ #bbpress-forums#bbpress-forums .bs-forums-items.bs-single-forum-list .bs-header-item.bs-item-wrap:before { padding-top: 0px; content: "*The views expressed in this public forum are those of the author(s) and do not necessarily represent those of the United Nations, including UNDP, or the UN Member States. "; padding-bottom: 25px; font-size: 14px; padding-bottom: 25px; } /*Add search instructions in groups invites page*/ /*.bb-groups-invites-left .group-invites-search:before{ content: "To find a member, type their name and press ''Enter.'' ."; font-size: 14px; }*/ /*adjust margin and shape of the seach bar in the */ /*.buddypress-wrap form.bp-dir-search-form, .buddypress-wrap form.bp-invites-search-form, .buddypress-wrap form.bp-messages-search-form { background-color: #fff; border: 1px solid #dedfe2; box-shadow: none; border-radius: 20px; margin: 0; position: relative; margin-top: -15px; margin-left: -5px; }*/ /* Increase the width of the "Search member" column in the groups invite section"*/ .bb-groups-invites-left { border-right: 1px solid #e7e9ec; min-width: 45%; flex: 0 0 360px; } /*Add scam warning in private messaging system*/ .bp-messages-content #send-reply #bp-message-content:after{ content: "*PROTECT YOURSELF-AVOID SCAMS: Do not reply to messages that contain requests for personal or financial information. Exercise caution when asked to contact users using their personal email address. If you see suspicious behavior on the platform and/or if you receive requests for sensitive information, please report these cases to admin@learningfornature.org. "; font-size: 14px; color: red; line-height: 0 !important; } .bp-messages-content #bp-message-content #whats-new-messages-toolbar { padding: 5px 15px 0 0; width: 100%; margin-bottom: 30px; } /* Fix missing bottom border in "Show more" button, expand shortcode*/ .su-expand-link-style-button .su-expand-link a { display: inline-block; margin-top: .2em; padding: .2em .4em; border: 2px solid #03a9f4 !important; } /* Remove padding between image and container in case study boxes in Green Entrepreneurship course */ /* Make top images no-padding */ .uabb-slide-box .uabb-slide-front { padding-top: 0px !important; padding-right: 0px !important; padding-left: 0px !important; } /* Remove outline (border line) in FAQ accordion questions */ .accordion-title { outline: none; } body:not(.buddypanel-open) .buddypanel ul.buddypanel-menu>li>a>span.count { display: block; } body:not(.buddypanel-open) .buddypanel ul.buddypanel-menu>li>a>span { opacity: 1; width: 0; visibility: visible; -webkit-transition: all linear .2s; transition: all linear .2s; margin-left: -15px; transition-duration: 0.2s; } .bb-menu-item span.count { background: rgba(238,52,60,.95); border-radius: 100px; font-size: 10px; font-style: normal; font-weight: 600; color: #fff; letter-spacing: -.55px; vertical-align: text-top; text-align: center; width: 25px !important; } /*adjust the width of the restart quiz button*/ .wpProQuiz_button.wpProQuiz_button_restartQuiz{ min-width: 250px !important; } /*remove module and activity number*/ .sfwd-course-position{ visibility: hidden !important; } /*hide message on the side panel*/ #menu-item-738{ display:none; } /*remove message option in profile*/ #wp-admin-bar-my-account-messages{ display:none !important; } /*hide border line on quiz number bubble*/ .wpProQuiz_reviewQuestionTarget{ border: 0px !important; outline: 0px !important; } /* Remove shadow in comments box - wpDiscuz plugin*/ #wpdcom .wpd-form .wpdiscuz-textarea-wrap textarea { box-shadow: none; } /* Adjust alignment of the filter items and the filtering tool in general in the e-Learning opportunities page*/ div.cspml_field_desc { font-size: 14px; margin-bottom: 20px; margin-left: -20px; margin-right: 10px; } form.cspml_filter_form div.cspml_fs_options_list { padding-left: 40px; } .icr-item.type_checkbox { -moz-border-radius: 1px; border-radius: 1px; margin-left: -32px; } /* Adjust style of course box in course catalogue page (e-learning opportunities) */ div.cspml_details_container { padding: 15px !important; height: 250px ; } div.cspml_details_container div.cspml_details_content.grid { /* line-height: 2em !important; height: 4em !important;*/ overflow: visible; font-weight: 400; font-size: 15px; } /*Hide "Vote down" icon from the comment section */ #wpdcom .wpd-vote-down svg { display: none; } #wpdcom .wpd-comment-footer .wpd-reply-button { margin-left: -25px; } /*Add space betwen the activity counter and the title of the module in the course content table */ .learndash-wrapper .ld-item-list .ld-item-list-item.ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-item-title .ld-item-components { margin-top: 0; margin-left: 10px; text-align-last: right; } .learndash-wrapper .ld-table-list .ld-table-list-items div.ld-table-list-item a.ld-table-list-item-preview .ld-status-icon { margin-left: 10px; } /*adjust menu spacing*/ .header-search-link{ padding:5px; } #header-messages-dropdown-elem{ padding:5px; } #header-notifications-dropdown-elem{ padding:5px; } /* Hide "sample module" tag in those courses where sample modules exist */ .learndash-wrapper .ld-item-list .ld-item-list-item.ld-item-lesson-item.learndash-not-available .ld-item-list-item-preview .ld-item-name .ld-item-title>span.ld-item-components .ld-status { min-width: 285px; display: none !important; } /*customize registration page*/ body.buddypress.register.login-split-page .login-split .split-overlay{ background: linear-gradient( 232.51deg , #287288 23.7%, #58B3B2 85.66%); } body.buddypress.register.login-split-page .login-split>div:not(.split-overlay){ width:95% !important; max-width: none !important; font-family: Ubuntu; font-style: normal; font-weight: 500; font-size: 30px; line-height: 48px; text-align: right; margin:15px !important; } body.buddypress.register.login-split-page .login-split>div:not(.split-overlay):before{ content:url(https://www.learningfornature.org/wp-content/uploads/2020/07/Lfnnbsaplogin.png); display:block; } body.buddypress.register.login-split-page .login-split>div>span { font-size:20px !important; } .bs-bp-container-reg #buddypress #signup-form.standard-form .submit input[type=submit]{ border-radius: 0px !important; background: rgba(40, 114, 136, 0.92); } /*fix breadcrumb background issue in modules/activities*/ .learndash-wrapper .bb-ld-info-bar .ld-breadcrumbs{ background: white; border-bottom: none; } /*change colors in wpdiscuz*/ #wpdcom .wpdiscuz-sort-buttons .wpdiscuz-sort-button:hover { background-color: #287288; color: #ffffff !important; } #wpdcom .wpdiscuz-sort-button .wpdiscuz-vote-sort-up:hover { background-color: #287288; color: #ffffff !important; } #wpdcom .wpd-thread-filter .wpdf-sorting{ color: #000000; } #wpdcom .wpd-thread-head .wpd-thread-info { color: #000000; } /*change fonts in wpdiscuz*/ .wpd-comment-text p{ font-size: 15px; } /*hide share button*/ #wpdcom .wpd-comment-header .wpd-comment-share{ display:none; } /*adjust filter button*/ .cspml_btn{ padding: 15px 2px; font-size: 12px } /*remove header in registration page*/ .register-section-logo{ display:none; } .entry-header{ margin-top:20px; } /*remove author in profile courses page*/ .bb-course-meta{ display:none; } /*remove data balloon in profile*/ [data-bp-tooltip][data-bp-tooltip-pos=up]:hover:after, [data-bp-tooltip][data-bp-tooltip-pos=up][data-bp-tooltip-visible]:after{ display:none; } [data-bp-tooltip][data-bp-tooltip-pos=up]:hover:before, [data-bp-tooltip][data-bp-tooltip-pos=up][data-bp-tooltip-visible]:before{ display:none; } /*hide activity of connections on on profile page*/ .item-meta.last-activity{ display:none; } /*Add a connect icon in the profile connections page*/ #members-list > li > div > div > div > #send-private-message{ display:none !important; } #members-list > li > div > div > div > div.friendship-button.is_friend.generic-button > a{ width: 100% !important; } #item-header-cover-image > #item-header-content > div > div > #send-private-message a{ background: #287288 !important; border-radius: 0px !important; } .friendship-button.is_friend.generic-button{ background: #287288; margin: 15px !important; } .friendship-button.is_friend.generic-button a{ color: #ffffff !important; } .flex.only-grid-view.button-wrap.member-button-wrap.footer-button-wrap{ border-top: none !important; } .button.accept, .button.reject{ border-radius: 0px !important; color: #ffffff !important; background: #287288 !important; border: 1px solid #287288 !important; } .pag-count.bottom{ display:none; } /*remove timestamp in group*/ .bs-timestamp{ display:none; } /*customize submit and post button*/ #submit, #aw-whats-new-submit{ background: #287288 !important; color: #ffffff !important; border-radius: 0px !important; } /*customize connected button*/ .friendship-button.is_friend.remove.bp-toggle-action-button, .friendship-button.is_friend.remove.bp-toggle-action-button-clicked{ border-radius: 0px !important; border: none; background: #287288 !important; margin-top: 0px !important; margin: 0px !important; } /*customize connect button on other member profile page*/ .friendship-button.not_friends.add, .friendship-button.pending_friend.requested{ border-radius: 0px !important; background: #287288 !important; color: #ffffff; } /*change highlight color*/ .buddypress-wrap .bp-subnavs li.current a, .buddypress-wrap .bp-subnavs li.selected a, .widget.buddypress div.item-options .selected, .elementor-widget-wrap div.item-options .selected, .bp-navs ul li.selected a, nav#object-nav .selected > a, body.invites.has-sidebar #buddypress .bp-settings-container .bp-navs .selected a, #buddypress .profile.edit .button-nav .current a { border-bottom-color: #287288 !important; color: #287288 !important; } /*remove data balloon in menu*/ .site-header .header-aside [data-balloon]:after, .site-header .header-aside [data-balloon]:before{ display:none; } /*customize browse button*/ #bp-browse-button{ border-radius: 0px !important; background: #287288 !important; color: #ffffff !important; } /*customize view my profile button*/ .push-right.button.outline.small{ border-radius: 0px !important; color: #000 !important; border: 1px solid #287288 !important; } /*customize activate page*/ body.buddypress.activation.login-split-page .login-split .split-overlay{ background: linear-gradient( 232.51deg , #287288 23.7%, #58B3B2 85.66%); } body.buddypress.activation.login-split-page .login-split>div:not(.split-overlay){ position:relative !important; float:right; text-align:right; margin:15px !important; max-width: 85%; width:unset; } body.buddypress.activation.login-split-page .login-split>div>span{ font-family: Ubuntu !important; font-size: 25px !important; } body.buddypress.activation.login-split-page .login-split>div:not(.split-overlay):before{ content:url(https://www.learningfornature.org/wp-content/uploads/2019/08/LOGO1-e1542242896610-test4.png); display:block; } .activate-section-logo{ display:none; } body.buddypress.activation .entry-header{ margin-top: 130px !important; } body.buddypress.register #buddypress input[type="submit"], body.buddypress.activation #buddypress input[type="submit"]{ border-radius: 0px !important; background: #287288 !important; } /*remove module count in profile course pages*/ .bb-course-list.bb-course-items.grid-view.bb-grid .course-lesson-count{ display:none; } /*remove course steps in profile course pages*/ .bb-course-list.bb-course-items.grid-view.bb-grid .ld-progress-stats .ld-progress-steps{ display:none !important; } /*fix top padding for content area*/ .content-area { padding-top: 0px; } /*fix capitalization on preview this coruse*/ .bb-course-video-overlay > div > div{ text-transform: lowercase; } .bb-course-video-overlay > div > div:first-letter{ text-transform: uppercase; } /*add activation notice contact us after register*/ body.buddypress.register .register-section-logo a, .bs-bp-container-reg a{ color: #ffffff; text-decoration: underline; } /*edit font of terms and conditons and privacy policy text in register*/ .register-privacy-info a{ color: #4D5C6D; } .register-privacy-info a:hover{ color: #4D5C6D; } .entry-header span a{ color: #4D5C6D; } .entry-header span a:hover{ color: #4D5C6D; } /*formatting for course fields in popular courses, etc*/ .course-fields td{ border:none; padding:0px; min-width: 15px; } .course-fields td:last-child{ padding-left: 5px; } .course-fields td:first-child{ width: 15px; } .course-fields{ margin-bottom: 0px; border:none; } .course-fields-map td{ border:none; } /*Make site footer always on top */ #page .footer-bottom { z-index: 9999; } /*hide user rss feed*/ .wpd-follow-link.wpd_not_clicked.wpd-follow{ display:none; } /*change font of members in side panel in courses*/ div.bb-course-preview-content > div.bb-course-member-wrap.flex.align-items-center > span.members{ font-size:13.5px; } /* Adjust to the left the comments section at the bottom of a page*/ #wpdcom { height: auto; padding: 5px 1px; float: left !important; } /*Ajust top margin of the search box in the filter box (right filters box) */ .bp-profile-search-widget { margin-top: 80px; } /****CSS for all courses***/ .bb-learndash-banner{ background: linear-gradient(232deg, #287288 23.7%, #58B3B2 85.66%); } /*format buttons on sticky widget*/ .btn-join{ border-radius: 0px !important; background-color: #287288 !important; font-family: Ubuntu; color: #000000; font-weight: 500 !important; font-size: 15px !important; } .btn-advance.ld-primary-background{ border-radius: 0px !important; background-color: #287288 !important; font-family: Ubuntu; color: #000000; font-weight: 500 !important; font-size: 15px !important; } .bb-single-course-sidebar a.btn-advance{ font-weight: 500; font-size: 15px; } /*hide course price*/ .bb-single-course-sidebar .bb-button-wrap .learndash_join_button+.bb-course-type{ display:none; } /*format pop-up buttons*/ .paoc-popup.popupaoc-button{ border-radius: 0px !important; background-color: #287288 !important; font-family: Ubuntu; color: #000000; font-weight: 500; font-size: 15px; } /*stylize content table format*/ /*format module headings*/ .learndash-wrapper .ld-item-list .ld-item-list-item .ld-item-list-item-preview{ background: #287288 !important; color: #000000 !important; font-family: Ubuntu !important; font-weight: 700 !important; font-size: 17px !important; } .learndash-wrapper .ld-item-list .ld-item-list-item .ld-item-list-item-preview .ld-item-title{ color: #ffffff !important; } .learndash-wrapper .ld-expand-button .ld-text { font-family: Ubuntu !important; } .ld-section-heading{ font-family: Ubuntu !important; } /*change font of module content count in heading*/ .ld-item-components .ld-item-component{ color: #ffffff !important; font-family: Ubuntu !important; } /*format arrow in module heading*/ .learndash-wrapper .ld-item-list .ld-item-list-item .ld-item-list-item-preview .ld-icon-arrow-down:before{ color: #ffffff; } /*remove title in module dropdown*/ .ld-table-list-title{ display:none !important; } /*format font, background, and style of activity titles*/ .learndash-wrapper .ld-table-list .ld-table-list-items div.ld-table-list-item a.ld-table-list-item-preview{ padding: 15px !important; padding-left: 50px !important; } .ld-topic-title{ color: #000000 !important; } .learndash-wrapper .ld-table-list .ld-table-list-items div.ld-table-list-item a.ld-table-list-item-preview .ld-topic-title:before{ color: #000000 !important; } .learndash-wrapper .ld-table-list .ld-table-list-items div.ld-table-list-item a.ld-table-list-item-preview:hover{ background-color: #D4E3E7 !important; color: #000000 !important; } /*format progress status in widget*/ .ld-status.ld-status-progress.ld-primary-background, .ld-status.ld-status-incomplete.ld-third-background{ background:none; padding: 0px; font-family: Ubuntu; color: #000000; } /*change color of progress bar*/ .learndash-wrapper .ld-progress .ld-progress-bar .ld-progress-bar-percentage{ background-color: #287288 !important; } /**/ .bb-course-volume h4{ font-size: 19px !important; font-weight: 500 !important; color: #000000 !important; } .bb-course-volume li{ font-size: 15px !important; color: #000000 !important; } .ld-tabs-content .ld-tab-content.ld-visible{ font-family: Ubuntu; font-size: 18px; color: #000000 !important; } .ld-tabs-content .ld-tab-content.ld-visible h2{ font-family: Ubuntu; font-size: 28px; color: #000000 !important; } strong{ font-weight: 500; } /*decapitalize expand all and collapse all*/ .learndash-wrapper .ld-expand-button .ld-text{ text-transform: lowercase; } .learndash-wrapper .ld-expand-button .ld-text:first-letter{ text-transform: uppercase; } /*decapitalize start course*/ .learndash_join_button.btn-advance-start .btn-advance.ld-primary-background{ text-transform: lowercase; } .learndash_join_button.btn-advance-start .btn-advance.ld-primary-background:first-letter{ text-transform: uppercase; } /*remove background of course status*/ .ld-status.ld-status-progress.ld-primary-background{ background: none; } .enrolled{ text-transform: none; font-weight: 400; line-height: 30px; font-size: 14px; letter-spacing: normal; font-family: Ubuntu; text-align: center; color: #000000; } /*decapitalize "course includes" and items in sidebar*/ .bb-course-preview-content .bb-course-volume h4, .bb-course-volume > ul > li:not(:last-child){ text-transform: lowercase; } .bb-course-preview-content .bb-course-volume h4:first-letter{ text-transform: uppercase; } .bb-icon-moon-circle{ display:none; } .bb-icon-maximize{ display:none; } /*remove progress bar*/ .bb-ld-info-bar{ display:none; } /*remove course status*/ .bb-ld-status{ display:none; } /*style arrows*/ #learndash-page-content .sfwd-course-nav .learndash_next_prev_link span.empty-post, #learndash-page-content .sfwd-course-nav .learndash_next_prev_link a { margin: 0px 3px !important; background: #287288 !important; border-radius: 0px !important; opacity: 1; min-width: 30px !important; } /*remove title in content table*/ .learndash-wrapper .ld-table-list .ld-table-list-header .ld-table-list-title, .learndash-wrapper .ld-table-list .ld-table-list-item-preview .ld-table-list-title{ display:none; } /*stylize course link in the left panel*/ .course-entry-link{ background: #287288 !important; color: #ffffff !important; border-radius:0px !important; font-weight: 500 !important; font-family: Ubuntu !important; font-size: 14px !important; } /*stylize progress bar*/ .ld-progress-bar .ld-progress-bar-percentage{ background: #287288 !important; } .lms-topic-sidebar-wrapper .lms-course-members-list{ visibility: hidden !important; } .ld-progress-bar{ background: #c4c4c4 !important; } /*stylize fonts in left panel*/ .lms-topic-sidebar-wrapper .bb-lesson-title, .lms-topic-sidebar-wrapper .bb-lms-title{ font-family: Ubuntu !important; font-size: 15px !important; color: #000000; } /*change color of icons in left panel*/ .lms-toggle-lesson i{ color: #000000; } .bb-type-list .bb-lms-ico i{ color: #000000; } /*change background color of left panel*/ .lms-topic-sidebar-wrapper{ background: #ededed !important; } /*change background of content table in main .learndash-wrapper .learndash_content_wrap .ld-table-list .ld-table-list-items div.ld-table-list-item:nth-child(odd) a.ld-table-list-item-preview{ background: none !important; } .ld-table-list-item:hover{ background: rgba(40, 114, 136, 0.3) !important; }*/ /*change color in content table*/ .learndash-wrapper .ld-table-list .ld-table-list-items div.ld-table-list-item .ld-topic-title{ color: #000000 !important; } .learndash-wrapper .ld-table-list .ld-table-list-items div.ld-table-list-item a.ld-table-list-item-preview .ld-topic-title:before{ color: #000000 !important; } .lms-lesson-item.current.lms-not-locked .bb-lesson-head.flex{ background: rgba(40, 114, 136, 0.3); } /*change progress circle color*/ .bb-progress .bb-progress-circle{ border-color: #287288 !important; } /*change background in check mark for complete module/activity*/ .learndash-wrapper .ld-status-icon.ld-status-complete, .i-progress.i-progress-completed, .ld-status-icon.ld-quiz-complete.ld-secondary-color{ background-color: #287288 !important; } /*change color of activity count in left panel*/ .bb-lesson-topics-count{ color: #000000 !important; } [data-balloon][data-balloon-pos=left]:hover:after, [data-balloon][data-balloon-pos=left][data-balloon-visible]:after, [data-balloon][data-balloon-pos=left]:hover:before, [data-balloon][data-balloon-pos=left][data-balloon-visible]:before, [data-balloon][data-balloon-pos=up]:hover:after, [data-balloon][data-balloon-pos=up][data-balloon-visible]:after, [data-balloon][data-balloon-pos=up]:before { display:none; } .bb-icon-minimize{ display:none; } .switch-button.view-as.start.outline{ border-radius: 0px !important; border-color: #287288 !important; color: #287288 !important; } /*change mark complete button*/ .learndash-wrapper .learndash_content_wrap .learndash_mark_complete_button{ background-color: #287288 !important; color: #ffffff; font-weight: 500 !important; border-radius: 0px; } /*fix hover color on content table*/ .ld-item-list-item-preview:hover .ld-sep{ color: #939597 !important; } /*remove unnecessary labels on progress bar*/ .learndash-theme.single-sfwd-courses .learndash-wrapper .ld-course-status .ld-status.ld-status-progress,.learndash-wrapper .ld-course-status .ld-status.ld-status-complete{ display:none; } /*fix capitalization of course content text on table*/ .learndash-wrapper .ld-item-list.ld-course-list .ld-section-heading h2, .learndash-wrapper .ld-item-list.ld-lesson-list .ld-section-heading h2{ text-transform: lowercase; } .learndash-wrapper .ld-item-list.ld-course-list .ld-section-heading h2, .learndash-wrapper .ld-item-list.ld-lesson-list .ld-section-heading h2:first-letter{ text-transform: uppercase; } /*fix buttons to proper background color*/ [type=reset], [type=submit], button, html [type=button] { background-color: #287288; border-radius: 0px !important; } a.button2{ background-color: #287288; border-radius: 0px !important; } a.button2:hover{ background-color: #287288; } .button{ background-color: #287288 !important; border-radius: 0px !important; border: none !important; } /*change completed check mark on module row*/ div.ld-item-list-item-preview > a > div.ld-status-icon.ld-status-complete.ld-secondary-background{ background: #ffffff !important; color: #287288 !important; } /****************************/ /*fix color of link more in profile*/ .more-block a.count-more{ color: #000000; } /*fix capitalization on sticky sidebar*/ .ld-status.ld-status-progress.ld-primary-background, .ld-status.ld-status-incomplete.ld-third-background{ text-transform: lowercase; } .ld-status.ld-status-progress.ld-primary-background:first-letter, .ld-status.ld-status-incomplete.ld-third-background:first-letter{ text-transform: uppercase; } /*fix capitalization of category in meet and greet*/ .course-cat-meet{ text-transform:uppercase; } /*change color of header for virutal events*/ .virtual-header{ background: linear-gradient( 221.01deg , rgba(40, 114, 136, 0.92) 22.84%, #58B3B2 88.36%) !important; } /*Change color of quiz buttons and quiz text size*/ input.wpProQuiz_button { background-color: #287287 !important; } .wpProQuiz_content .wpProQuiz_quiz .wpProQuiz_response span { font-size: 17px; } .wpProQuiz_content .wpProQuiz_question { margin-bottom: 30px!important; font-size: 17px; } .wpProQuiz_content .wpProQuiz_results .quiz_continue_link a#quiz_continue_link { background: #287287; font-size: 16px !important; border-radius: 0px !important; } /*change background color of quiz numbers in summary table*/ .learndash-wrapper .wpProQuiz_content .wpProQuiz_reviewDiv li.wpProQuiz_reviewQuestionTarget{ background: #287288 !important; } /*change color of input buttons*/ input[type=submit]{ background: #287288 !important; } /*hide toggle dark mode on activities*/ #bb-toggle-theme{ display:none; } /*hide default mark all as read in notification*/ .mark-read-all.action-unread{ display:none; } .notification-list li:hover .notification-content a{ color: #000000 !important; } /*adjust problem of main menu overlapping with sidebar on courses*/ .lms-topic-sidebar-data{ top: 125px !important; position: absolute; } /*remove floating side header on modules*/ .site-header.site-header--beaver-builder.site-header--align-right.has-scrolled{ display:none !important; } /*adjust size of social icons*/ .prof-socials{ width: 30px; height: 30px; margin-right: 10px; } /*hide other meta items in profile header*/ .item-meta{ display:none; } /*edit font color of organization in member loop in profile page*/ .user-organization{ color:#4D5C6D; } /*hide popular list in member loop*/ #popular-members{ display: none; } /*hide socials in profile*/ .field_261.field_facebook.field_order_10.optional-field.visibility-public.alt.field_type_url, .field_262.field_twitter.field_order_11.optional-field.visibility-public.field_type_url, .field_263.field_linkedin.field_order_12.optional-field.visibility-public.field_type_url{ display:none; } /*prevent fields from disappearing when editing*/ .editfield.field_261.field_facebook.field_order_10.optional-field.visibility-public.alt.field_type_url, .editfield.field_262.field_twitter.field_order_11.optional-field.visibility-public.field_type_url, .editfield.field_263.field_linkedin.field_order_12.optional-field.visibility-public.field_type_url{ display:block !important; } /*hide gender in profile*/ .field_280.field_gender.field_order_9.required-field.visibility-adminsonly.field_type_selectbox{ display:none; } /*prevent gender from disappearing in edit*/ .editfield.field_280.field_gender.field_order_9.required-field.visibility-adminsonly.field_type_selectbox{ display:block !important; } /*hide username and join date on profile*/ .single-headers .item-meta{ display:none; } /*hide last name in profile*/ .field_287.field_last-name.field_order_1.required-field.visibility-public.alt.field_type_textbox{ display: none; } /*prevent lastname from disappearing in edit*/ .editfield.field_287.field_last-name.field_order_1.required-field.visibility-public.alt.field_type_textbox{ display:block !important; } /*hide biography in profile*/ .field_27.field_biography.field_order_5.optional-field.visibility-public.alt.field_type_textarea{ display: none; } /*prevent bio from disappearing in edit*/ .editfield.field_27.field_biography.field_order_5.optional-field.visibility-public.alt.field_type_textarea{ display:block !important; } /*adjust styling of menu in profile*/ #object-nav{ margin: 0px !important; padding: 0px !important; background: #287288 !important; border-radius: 0px !important; } #object-nav > ul{ width: fit-content; margin: auto; padding: 0px 20px; } #object-nav > ul > li > a{ color: #ffffff !important; font-size: 17.5px; font-weight: 500; } nav#object-nav li{ padding: 0px !important; margin: 0 10px 0 10px !important; } /*adjust color of count*/ nav#object-nav ul li .count{ display: none; } /*change color of active in menu*/ nav#object-nav .selected > a{ text-decoration: underline; border-bottom: #ffffff; color: #ffffff !important; } #cover-image-container{ background: #E5E5E5 !important; } /*adjust header of profile to not overlay with menu*/ #item-header{ margin-top:30px !important; } #item-header-cover-image .member-header-actions .generic-button button{ border: #287288; } .switch-button.view-as.start.outline{ border-radius: 0px !important; color: #287288 !important; border-color: #287288 !important; } /*adjust font of my profile*/ .entry-title.bb-profile-title{ font-size: 23.5px !important; font-weight: 700 !important; } /*adjust margin of content field in profile*/ .buddypress-wrap table.profile-fields td.data>p{ margin:0px; } /*change font of profile fields*/ #buddypress div.bp-profile-content table.profile-fields tr td { color: #000000; font-size:16px; font-weight: 400; } /*add border on "my profile" header*/ .entry-header.profile-loop-header.profile-header.flex.align-items-center{ border-bottom: 2px solid #287288 !important; padding: 0px; margin: 20px 0 20px 0px; padding-bottom: 10px; } /*reminder: remove display none of download certificate button*/ #certificate_list .bb-certificate-download{ width: fit-content; float: none; clear: left; text-align: none; margin:auto; } .download_button{ background: #287288 !important; border-radius: 0px !important; border: #287288 !important; } .course-profile-meta td:last-child{ padding-left: 3px; } /*change color of progress bar */ .ld-progress-bar-percentage.ld-secondary-background{ background-color: #287288 !important; } /*change background of start course in profile*/ .bb-course-cover > a > .ld-status.ld-status-progress.ld-primary-background{ background-color: #287288 !important; line-height: 1.5; color: #ffffff; padding: 6px 10px 6px 10px; text-transform: uppercase; font-size: 11px; line-height: 1.5; letter-spacing: .23px; font-weight: 700; } /*hide number of modules*/ .course-lesson-count{ display:none; } /*adjust height of course status in profile when on list view*/ .bb-course-list.bb-course-items.list-view.bb-list .bb-cover-list-item .ld-status{ min-height: 3.5em; } /*adjust header of edit profile*/ .profile-header.flex.align-items-center{ margin-top: 20px; } /*adjust subnav bottom border on profile*/ .bb-profile-grid.bb-grid .bp-navs.bp-subnavs.no-ajax.user-subnav .subnav{ border-bottom: 1px solid #ffffff; } .screen-heading.profile-group-title{ display:none; } /*Deactivate the preloader animation used in the NfL Hub 2022 from all pages, except the NfL Hub pages themselves*/ .page .preloader-plus .preloader-custom-img, .single .preloader-plus .preloader-custom-img { display: none; } .page.page-id-92081 .preloader-plus .preloader-custom-img, .single.postid-1256899 .preloader-plus .preloader-custom-img { display: block; } /*align arrows in left panel of course offerings etc*/ div.cspml_fs_label span.cspml_label_text{ margin-left: 15px !important; } /*fix titles in course offerings to overflow*/ div.cspml_details_container div.cspml_details_title{ white-space: normal !important; } /*fix color of button in "view questions" in quiz*/ .wpProQuiz_button wpProQuiz_button_reShowQuestion{ color: white !important; } /*hide course title on hover of title in wpdiscuz*/ [wpd-tooltip-position='top']::before, [wpd-tooltip-position='top']::after { display:none !important; } /*hide hottest option in wpdiscuz*/ .wpdf-hottest{ display:none; } /*hide send invites in groups*/ #invite-groups-li{ display:none; } /*Ajust margin of password prompt in private pages*/ .form-item, form { margin-bottom: 2rem; margin-top: 50PX; } /*Cahange color of selected activity in the course progression left bar in LearnDash (bar on the left when in an activity page)*/ .lms-lesson-item.current>.bb-lesson-head, .lms-quiz-item.current>.bb-lms-title-wrap, .lms-topic-item.current>.bb-lms-title-wrap { background: rgb(146 164 183 / 38%); } /*fix tab in groups from grouping when screen is resized*/ #object-nav > ul{ width:100%; display:flex; justify-content:center; } #albums-groups-li{ display:none !important; } /*remove photos tab from group space*/ #photos-groups-li{ display:none !important; } /*In group space: adjust the way the documents show when open*/ .bb-media-model-wrapper.bb-internal-model { position: relative !important; z-index: 999990; background-color: rgb(0 0 0 / 83%); width: 100%; height: 100%; top: -200px; left: 0; display: flex; align-items: center; overflow: auto; } /*In group space: remove the function to rename documents, it takes foerver to save*/ .ac-document-rename { display:none !important; } /* Remove the organizer icon in Group pages */ .group-item-actions { display: none !important; } /*remove members tab*/ #members-groups-li{ display:none !important; } /* Add sign-in message above the goup forums*/ /*.buddypress-wrap .bb-profile-grid .subnav-filters::after{ content: 'Important: You must be signed in to comment on the forum'; color: #f8731b; padding-top: 20px !important; }*/ .activity-update-form #whats-new-form-placeholder, .activity-update-form #whats-new-form.activity-form, .bp-nouveau-activity-form-placeholder- #whats-new-form-placeholder, .bp-nouveau-activity-form-placeholder- #whats-new-form.activity-form { position: relative; margin-bottom: -70px; } /*Hide de seach bar in the goup feed*/ #buddypress #dir-activity-search, #buddypress #dir-groups-search, #buddypress #group-activity-search { display: none; } /*Add disclaimer in Groups feed screen*/ /*.activity-list.bp-list::before{ content: "The views expressed in this public forum are those of the author(s) and do not necessarily represent those of the United Nations, including UNDP, or the UN Member States."; font-size: 15px; color: grey; }*/ #buddypress .activity-list.bp-list .activity-item { Margin-top:20px; } /* Remove certain activities from feed tab in the NBSAP groups*/ li#activity-114094.groups.activity_update.activity-item.mini { display: none; } li#activity-114064.groups.activity_update.activity-item.mini, li#activity-114051.groups.activity_update.activity-item.mini,li#activity-114050.groups.activity_update.activity-item.mini, li#activity-114046.groups.activity_update.activity-item.mini, li#activity-114041.groups.activity_update.activity-item.mini, li#activity-114040.groups.activity_update.activity-item.mini { display: none; } li#activity-114209.groups.activity_update.activity-item.mini, li#activity-114205.groups.activity_update.activity-item.mini { display: none; } li#activity-114272.groups.activity_update.activity-item.mini, li#activity-114271.groups.activity_update.activity-item.mini, li#activity-114270.groups.activity_update.activity-item.mini { display: none; } /*Target 4*/ li#activity-114058.groups.activity_update.activity-item.mini { Display: none; } /*Target 5*/ li#activity-114076.groups.activity_update.activity-item.mini, li#activity-114074.groups.activity_update.activity-item.mini { Display: none; } /*Target 6*/ li#activity-114075.groups.activity_update.activity-item.mini{ Display: none; } /*Target 7*/ li#activity-114088.groups.activity_update.activity-item.mini { Display: none; } /*Target 8*/ /*Target 9*/ li#activity-114233.groups.activity_update.activity-item.mini{ Display: none; } /*Target 10*/ /*Target 11*/ li#activity-114279.groups.activity_update.activity-item.mini { Display: none; } /*Target 12*/ li#activity-114216.groups.activity_update.activity-item.mini{ Display: none; } /*Target 13*/ li#activity-114130.groups.activity_update.activity-item.mini { Display: none; } /*Target 14*/ li#activity-114225.groups.activity_update.activity-item.mini, li#activity-114074.groups.activity_update.activity-item.mini { Display: none; } /*Target 15*/ li#activity-114174.groups.activity_update.activity-item.mini { Display: none; } /*Target 16*/ li#activity-114178.groups.activity_update.activity-item.mini { Display: none; } /*Target 17*/ li#activity-114126.groups.activity_update.activity-item.mini{ Display: none; } /*Target 18*/ li#activity-114240.groups.activity_update.activity-item.mini{ Display: none; } /*Target 19*/ li#activity-114251.groups.activity_update.activity-item.mini{ Display: none; } /*Target 20*/ li#activity-114125.groups.activity_update.activity-item.mini{ Display: none; } /*Target 21*/ li#activity-114189.groups.activity_update.activity-item.mini{ Display: none; } /*Target 22*/ li#activity-114259.groups.activity_update.activity-item.mini{ Display: none; } /*Target 23*/ li#activity-114124.groups.activity_update.activity-item.mini{ Display: none; } /*change color of view questions button in quiz*/ .wpProQuiz_button.wpProQuiz_button_reShowQuestion{ color: white !important; } /*Adjust the position of the floating box when editing a comments in the forums */ form#whats-new-form.activity-form.bp-activity-edit.focus-in { position: absolute !important; } /*customize hub 2023 booths video gallery*/ .booths-video{ position: relative; background: #232E3D; margin: 10px; color: white; line-height:1em; } .scrollable-col > div > div.fl-module.fl-module-rich-text > div > div > table > tbody > tr > td{ padding-right: 10px; } /*hide send message tab in groups*/ #group-messages-groups-li{ display:none; } /*edit css of survey completion message*/ .wpforms-confirmation-container-full p:last-of-type{ color:black; } group-member-count { padding: 10px; background-color: #f1f1f1; border: 1px solid #ddd; margin-left: -50px !important; z-index:999 !important; } div#cover-image-container { margin-top: 0px !important; } /*Remove grey top part in the side left panel of modules and activity pages*/ .lms-topic-sidebar-wrapper { background: #ffffff !important; } /*Change style of login and register buttons*/ .bb-header-buttons a.signin-button.button { color: #ffffff !important; } .site-header--beaver-builder .bb-header-buttons a.signup.button { padding-top: 6px; } /*fix the background of like and comment for the forums*/ .button.acomment-reply.bp-primary-action, .button.fav.bp-secondary-action.bp-like-button.reaction, .bp-secondary-action{ background: none !important; } .group-button{ background: #287288 !important; } .bp-toggle-action-button{ color:white !important; } /*Change text color of general site search bar (in navigation bar)*/ .header-search-wrap--beaver-builder .search-field-top, .header-search-wrap--beaver-builder input.search-field { color: black; } /*Remove the duplicated comments counter that appears in all discussion forums of course rooms (or wherever the comment box appears in the website)*/ #learndash-page-content .ld-focus-comments .ld-focus-comments__heading .ld-focus-comments__header { color: var(--bb-headings-color); display: none; } /*FROM ALL COURSE ROOMS: Remove the "Next activity" button at the end of all quizzes. This button is not working as we want it to work*/ .wpProQuiz_content .wpProQuiz_results .quiz_continue_link { margin-top: 20px; margin-bottom: 40px; display: none !important; } </style> <style id="buddyboss_theme_options-dynamic-css" title="dynamic-css" class="redux-options-output">.site-header .site-title{font-family:"SF UI Display";font-weight:500;font-style:normal;font-size:30px;font-display:swap;}body{font-family:"SF UI Text";font-weight:400;font-style:normal;font-size:16px;font-display:swap;}h1{font-family:"SF UI Display";font-weight:400;font-style:normal;font-size:34px;font-display:swap;}h2{font-family:"SF UI Display";font-weight:400;font-style:normal;font-size:24px;font-display:swap;}h3{font-family:"SF UI Display";font-weight:400;font-style:normal;font-size:20px;font-display:swap;}h4{font-family:"SF UI Display";font-weight:400;font-style:normal;font-size:18px;font-display:swap;}h5{font-family:"SF UI Display";font-weight:400;font-style:normal;font-size:16px;font-display:swap;}h6{font-family:"SF UI Display";font-weight:500;font-style:normal;font-size:12px;font-display:swap;}</style> <!-- Fonts Plugin CSS - https://fontsplugin.com/ --> <style> /* Cached: February 17, 2025 at 12:46pm */ /* latin-ext */ @font-face { font-family: 'Original Surfer'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/originalsurfer/v23/RWmQoKGZ9vIirYntXJ3_MbekzNMSBUFuMlY.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Original Surfer'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/originalsurfer/v23/RWmQoKGZ9vIirYntXJ3_MbekzNMSC0Fu.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkC3kaWzU.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkAnkaWzU.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCnkaWzU.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBXkaWzU.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* math */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkenkaWzU.woff2) format('woff2'); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; } /* symbols */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkaHkaWzU.woff2) format('woff2'); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCXkaWzU.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCHkaWzU.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBnka.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkC3kaWzU.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkAnkaWzU.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCnkaWzU.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBXkaWzU.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* math */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkenkaWzU.woff2) format('woff2'); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; } /* symbols */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkaHkaWzU.woff2) format('woff2'); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCXkaWzU.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCHkaWzU.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBnka.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkC3kaWzU.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkAnkaWzU.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCnkaWzU.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBXkaWzU.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* math */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkenkaWzU.woff2) format('woff2'); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; } /* symbols */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkaHkaWzU.woff2) format('woff2'); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCXkaWzU.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCHkaWzU.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBnka.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkC3kaWzU.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkAnkaWzU.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCnkaWzU.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBXkaWzU.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* math */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkenkaWzU.woff2) format('woff2'); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; } /* symbols */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkaHkaWzU.woff2) format('woff2'); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCXkaWzU.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCHkaWzU.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBnka.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkC3kaWzU.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkAnkaWzU.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCnkaWzU.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBXkaWzU.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* math */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkenkaWzU.woff2) format('woff2'); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; } /* symbols */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkaHkaWzU.woff2) format('woff2'); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCXkaWzU.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCHkaWzU.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBnka.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkC3kaWzU.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkAnkaWzU.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCnkaWzU.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBXkaWzU.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* math */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkenkaWzU.woff2) format('woff2'); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; } /* symbols */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkaHkaWzU.woff2) format('woff2'); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCXkaWzU.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkCHkaWzU.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkBnka.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* math */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe.woff2) format('woff2'); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; } /* symbols */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe.woff2) format('woff2'); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* math */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe.woff2) format('woff2'); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; } /* symbols */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe.woff2) format('woff2'); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* math */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe.woff2) format('woff2'); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; } /* symbols */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe.woff2) format('woff2'); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* math */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe.woff2) format('woff2'); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; } /* symbols */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe.woff2) format('woff2'); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* math */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe.woff2) format('woff2'); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; } /* symbols */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe.woff2) format('woff2'); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* math */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe.woff2) format('woff2'); unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF; } /* symbols */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe.woff2) format('woff2'); unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; font-stretch: 100%; font-display: swap; src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAgM9UvI.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLCwM9UvI.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAwM9UvI.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDAM9UvI.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAAM9UvI.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAQM9UvI.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDwM9.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAgM9UvI.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLCwM9UvI.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAwM9UvI.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDAM9UvI.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAAM9UvI.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAQM9UvI.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDwM9.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAgM9UvI.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLCwM9UvI.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAwM9UvI.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDAM9UvI.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAAM9UvI.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAQM9UvI.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDwM9.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAgM9UvI.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLCwM9UvI.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAwM9UvI.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDAM9UvI.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAAM9UvI.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAQM9UvI.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDwM9.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAgM9UvI.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLCwM9UvI.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAwM9UvI.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDAM9UvI.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAAM9UvI.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAQM9UvI.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDwM9.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAgM9UvI.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLCwM9UvI.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAwM9UvI.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDAM9UvI.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAAM9UvI.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAQM9UvI.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDwM9.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAgM9UvI.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLCwM9UvI.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAwM9UvI.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDAM9UvI.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAAM9UvI.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAQM9UvI.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDwM9.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAgM9UvI.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLCwM9UvI.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAwM9UvI.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDAM9UvI.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAAM9UvI.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAQM9UvI.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDwM9.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAgM9UvI.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLCwM9UvI.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAwM9UvI.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDAM9UvI.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAAM9UvI.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLAQM9UvI.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: italic; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDwM9.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DRs5.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DRs5.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DRs5.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DRs5.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DRs5.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DRs5.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DRs5.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DRs5.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DRs5.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DRs5.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DRs5.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DRs5.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DRs5.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DRs5.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DRs5.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DRs5.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DRs5.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DRs5.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DRs5.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DRs5.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DRs5.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DRs5.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DRs5.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DRs5.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DRs5.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DRs5.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DRs5.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DRs5.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DRs5.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DRs5.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DRs5.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DRs5.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DRs5.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DRs5.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DRs5.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DRs5.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DRs5.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DRs5.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DRs5.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DRs5.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DRs5.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DRs5.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DRs5.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DRs5.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DRs5.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DRs5.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DRs5.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DRs5.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 800; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DRs5.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DRs5.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DRs5.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DRs5.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DRs5.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DRs5.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Condensed'; font-style: normal; font-weight: 900; font-display: swap; src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3CWWoKC.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3mWWoKC.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm36WWoKC.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3KWWoKC.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3OWWoKC.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm32WWg.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3CWWoKC.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3mWWoKC.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm36WWoKC.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3KWWoKC.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3OWWoKC.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm32WWg.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3CWWoKC.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3mWWoKC.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm36WWoKC.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3KWWoKC.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3OWWoKC.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm32WWg.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3CWWoKC.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3mWWoKC.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm36WWoKC.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3KWWoKC.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3OWWoKC.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm32WWg.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3CWWoKC.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3mWWoKC.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm36WWoKC.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3KWWoKC.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3OWWoKC.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm32WWg.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3CWWoKC.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3mWWoKC.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm36WWoKC.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3KWWoKC.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3OWWoKC.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm32WWg.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3CWWoKC.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3mWWoKC.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm36WWoKC.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3KWWoKC.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm3OWWoKC.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x7DF4xlVMF-BfR8bXMIjhOm32WWg.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhGq3-OXg.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhPq3-OXg.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhIq3-OXg.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhEq3-OXg.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhFq3-OXg.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 100; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhLq38.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhGq3-OXg.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhPq3-OXg.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhIq3-OXg.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhEq3-OXg.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhFq3-OXg.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 200; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhLq38.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhGq3-OXg.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhPq3-OXg.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhIq3-OXg.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhEq3-OXg.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhFq3-OXg.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhLq38.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhGq3-OXg.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhPq3-OXg.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhIq3-OXg.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhEq3-OXg.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhFq3-OXg.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhLq38.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhGq3-OXg.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhPq3-OXg.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhIq3-OXg.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhEq3-OXg.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhFq3-OXg.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhLq38.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhGq3-OXg.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhPq3-OXg.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhIq3-OXg.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhEq3-OXg.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhFq3-OXg.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 600; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhLq38.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhGq3-OXg.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhPq3-OXg.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhIq3-OXg.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhEq3-OXg.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhFq3-OXg.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto Mono'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/robotomono/v23/L0x5DF4xlVMF-BfR8bXMIjhLq38.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftVyCN4Ffgg.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftVyLN4Ffgg.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftVyDN4Ffgg.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftVyMN4Ffgg.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* latin-ext */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftVyBN4Ffgg.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftVyPN4E.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKej75l0mwFg.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKej7wl0mwFg.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKej74l0mwFg.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKej73l0mwFg.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* latin-ext */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKej76l0mwFg.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKej70l0k.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtFyCN4Ffgg.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtFyLN4Ffgg.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtFyDN4Ffgg.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtFyMN4Ffgg.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* latin-ext */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtFyBN4Ffgg.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtFyPN4E.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPslyCN4Ffgg.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPslyLN4Ffgg.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPslyDN4Ffgg.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPslyMN4Ffgg.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* latin-ext */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPslyBN4Ffgg.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Ubuntu'; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPslyPN4E.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzjvWyNL4U.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzjtGyNL4U.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzjvGyNL4U.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1Czjs2yNL4U.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* latin-ext */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzjvmyNL4U.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzjsGyN.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKcg72j00.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKew72j00.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKcw72j00.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKfA72j00.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* latin-ext */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKcQ72j00.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKfw72.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3jvWyNL4U.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3jtGyNL4U.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3jvGyNL4U.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3js2yNL4U.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* latin-ext */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3jvmyNL4U.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3jsGyN.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvjvWyNL4U.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvjtGyNL4U.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvjvGyNL4U.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvjs2yNL4U.woff2) format('woff2'); unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* latin-ext */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvjvmyNL4U.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Ubuntu'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvjsGyN.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } :root { --font-base: Ubuntu; --font-headings: Ubuntu; --font-input: Ubuntu; } body, #content, .entry-content, .post-content, .page-content, .post-excerpt, .entry-summary, .entry-excerpt, .widget-area, .widget, .sidebar, #sidebar, footer, .footer, #footer, .site-footer { font-family: "Ubuntu"; } #site-title, .site-title, #site-title a, .site-title a, .entry-title, .entry-title a, h1, h2, h3, h4, h5, h6, .widget-title, .elementor-heading-title { font-family: "Ubuntu"; } button, .button, input, select, textarea, .wp-block-button, .wp-block-button__link { font-family: "Ubuntu"; } </style> <!-- Fonts Plugin CSS --> <style>.your-class { color: blue; } /*Hide the arrows to collapse the naviation bar of an activity page (LearnDash*/ .bb-icon-expand:before { display: none; } /*Adjust navigation arrows on the top right corner of the activity page*/ div.bb-lms-header .bb-position { display: none; margin-bottom: 0px; margin-top: 10px; }</style> <!-- 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-M5JGH66');</script> <!-- End Google Tag Manager --> </head> <body class="bp-nouveau page-template page-template-page-fullwidth-content page-template-page-fullwidth-content-php page page-id-120253 page-parent fl-builder translatepress-en_US fl-theme-builder-header fl-theme-builder-header-nfl-hub-2022-2-copy-copy fl-theme-builder-footer fl-theme-builder-footer-home-page-footer buddyboss-theme bb-template-v1 buddypanel-logo-off header-style-1 menu-style-standard bp-search no-js learndash-theme"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M5JGH66" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div id="page" class="site"> <header id="masthead" class="beaver-header"> <header class="fl-builder-content fl-builder-content-123940 fl-builder-global-templates-locked" data-post-id="123940" data-type="header" data-sticky="1" data-sticky-on="all" data-sticky-breakpoint="medium" data-shrink="1" data-overlay="0" data-overlay-bg="default" data-shrink-image-height="50px" role="banner" itemscope="itemscope" itemtype="http://schema.org/WPHeader"><div class="fl-row fl-row-full-width fl-row-bg-color fl-node-vxa0unrftlzo" data-node="vxa0unrftlzo"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-fixed-width fl-node-content"> <div class="fl-col-group fl-node-n29am3teshu4 fl-col-group-equal-height fl-col-group-align-center fl-col-group-custom-width" data-node="n29am3teshu4"> <div class="fl-col fl-node-ojzy79ivgwxf fl-col-small" data-node="ojzy79ivgwxf"> <div class="fl-col-content fl-node-content"> <div id="logo" class="fl-module fl-module-rich-text fl-node-ypgv4zxk8cbs" data-node="ypgv4zxk8cbs"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><a href="https://natureforlifehub.org/"><img decoding="async" class="alignnone size-full wp-image-58183" src="https://www.learningfornature.org/wp-content/uploads/2021/08/NfL-Hub-2021-LOGO-SVG.svg" alt="" /></a></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-95heua1ns3bf" data-node="95heua1ns3bf"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-menu fl-node-6fn24eqghjud menu-nfl" data-node="6fn24eqghjud"> <div class="fl-module-content fl-node-content"> <div class="fl-menu fl-menu-responsive-toggle-mobile"> <button class="fl-menu-mobile-toggle hamburger" aria-label="Menu"><span class="fl-menu-icon svg-container"><svg version="1.1" class="hamburger-menu" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512"> <rect class="fl-hamburger-menu-top" width="512" height="102"/> <rect class="fl-hamburger-menu-middle" y="205" width="512" height="102"/> <rect class="fl-hamburger-menu-bottom" y="410" width="512" height="102"/> </svg> </span></button> <div class="fl-clear"></div> <nav aria-label="Menu" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"><ul id="menu-nfl-hub-2024" class="menu fl-menu-horizontal fl-toggle-arrows"><li id="menu-item-124018" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-120253 current_page_item"><a href="https://www.learningfornature.org/en/nature-for-life-hub-2024/">The Nature for Life Hub 2024</a></li><li id="menu-item-123970" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children fl-has-submenu"><div class="fl-has-submenu-container"><a href="#">Watch again</a><span class="fl-menu-toggle"></span></div><ul class="sub-menu"> <li id="menu-item-123971" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.learningfornature.org/en/nature-for-life-hub-2024/day1/">Day 1: Nature Revolution</a></li> <li id="menu-item-123969" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.learningfornature.org/en/nature-for-life-hub-2024/day2/">Day 2: Rewriting the Rules</a></li> <li id="menu-item-123990" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.learningfornature.org/en/nature-for-life-hub-2024/day3/">Day 3: Restoring Balance</a></li> <li id="menu-item-124005" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.learningfornature.org/en/nature-for-life-hub-2024/day4/">Day 4: Equator Prize 2024 Award Ceremony</a></li></ul></li></ul></nav></div> </div> </div> </div> </div> <div class="fl-col fl-node-cp0t5j4uak2e fl-col-small" data-node="cp0t5j4uak2e"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-0l2u8apx39nd" data-node="0l2u8apx39nd"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img decoding="async" class="alignnone size-full wp-image-58207" src="https://www.learningfornature.org/wp-content/uploads/2023/08/CBD_UNEP_UNDP_WHITE-Recovered.svg" alt="" /></p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </header><div class="uabb-js-breakpoint" style="display: none;"></div> </header> <div id="content" class="site-content"> <div class="container"> <div class="bb-grid site-content-grid"> <div id="primary" class="content-area bb-grid-cell"> <main id="main" class="site-main"> <article id="post-120253" class="post-120253 page type-page status-publish has-post-thumbnail hentry"> <div class="entry-content"> <div class="fl-builder-content fl-builder-content-120253 fl-builder-content-primary fl-builder-global-templates-locked" data-post-id="120253"><div class="fl-row fl-row-full-width fl-row-bg-gradient fl-node-t5rmuin0sg1f" data-node="t5rmuin0sg1f"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-full-width fl-node-content"> <div class="fl-col-group fl-node-wm5803daqtsz" data-node="wm5803daqtsz"> <div class="fl-col fl-node-8twelrg619oz fl-col-has-cols" data-node="8twelrg619oz"> <div class="fl-col-content fl-node-content"> <div class="fl-col-group fl-node-u879pvs3mqbz fl-col-group-nested fl-col-group-equal-height fl-col-group-align-top" data-node="u879pvs3mqbz"> <div class="fl-col fl-node-69nc0v5ajs2g fl-col-small" data-node="69nc0v5ajs2g"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-button fl-node-hzf0elmy5ni9 fl-visible-desktop-medium" data-node="hzf0elmy5ni9"> <div class="fl-module-content fl-node-content"> <div class="fl-button-wrap fl-button-width-auto fl-button-left"> <a href="" target="_self" class="fl-button" role="button"> <span class="fl-button-text">30 September - 3 October 2024 I Virtual Event</span> </a> </div> </div> </div> <div class="fl-module fl-module-button fl-node-5uwoyj9s10c2 fl-visible-mobile" data-node="5uwoyj9s10c2"> <div class="fl-module-content fl-node-content"> <div class="fl-button-wrap fl-button-width-auto fl-button-left"> <a href="" target="_self" class="fl-button" role="button"> <span class="fl-button-text">30 September - 3 October 2024 I Virtual Event</span> </a> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-1sbgzuterpiv fl-visible-desktop-medium" data-node="1sbgzuterpiv"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="font-size: 40px; color: #ffffff; margin-bottom: 50px;"><span style="font-family: proxima nova;">THE NATURE FOR LIFE HUB 2024</span></p> <p><span style="font-size: 80px;"><strong><span style="color: #ffffff; font-family: 'proxima nova';">Reimagining Our Future</span></strong></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-kun7ymh6b9st fl-visible-mobile" data-node="kun7ymh6b9st"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="font-size: 30px; color: #ffffff; margin-bottom: 30px;"><span style="font-family: proxima nova;">THE NATURE FOR LIFE HUB 2024</span></p> <p><span style="font-size: 40px;"><strong><span style="color: #ffffff; font-family: 'proxima nova';">Reimagining Our Future</span></strong></span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-8ugv502b6t1s fl-col-small" data-node="8ugv502b6t1s"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-modal-popup fl-node-n39mrgv2hyxf POPUP-TRAILER" data-node="n39mrgv2hyxf"> <div class="fl-module-content fl-node-content"> <div class="uabb-modal-parent-wrapper uabb-module-content uamodal-n39mrgv2hyxf POPUP-TRAILER-overlay"> <div class="uabb-modal uabb-drag-fix uabb-center-modal uabb-modal-youtube uabb-modal-custom uabb-effect-1 uabb-aspect-ratio-16_9" id="modal-n39mrgv2hyxf" data-content="youtube"> <div class="uabb-content "> <span class="uabb-modal-close uabb-close-custom-popup-top-right" > <i class="uabb-close-icon fas fa-times"></i> </span> <div class="uabb-modal-text uabb-modal-content-data fl-clearfix"> <div class="uabb-video-wrap"><div class="uabb-modal-iframe uabb-video-player" data-src="youtube" data-id="_WfW3qRFV_w" data-append="?version=3&enablejsapi=1&rel=0" data-thumb="https://i.ytimg.com/vi/_WfW3qRFV_w/hqdefault.jpg"></div></div> </div> </div> </div> <div class="uabb-overlay"></div> </div> <div class="uabb-modal-action-wrap"> <div class="uabb-modal-action uabb-trigger uabb-modal-photo-wrap" data-modal="n39mrgv2hyxf"><img decoding="async" class="uabb-modal-photo" src="https://www.learningfornature.org/wp-content/uploads/2024/10/EDITED_WebsiteBanner_1600x560-1.jpg" alt=""></div> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-3zo2pdcwx85i fl-col-group-nested fl-col-group-equal-height fl-col-group-align-top" data-node="3zo2pdcwx85i"> <div class="fl-col fl-node-eb520d47hxuf fl-col-small" data-node="eb520d47hxuf"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-dcy8lj6w73nf" data-node="dcy8lj6w73nf"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="font-size: 30px; color: #ffffff; margin-bottom: 50px;"><span style="font-family: 'proxima nova'; ">Explore: </span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-vajiwxmpk0bz" data-node="vajiwxmpk0bz"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-button-group fl-node-b50oywk2fg19" data-node="b50oywk2fg19"> <div class="fl-module-content fl-node-content"> <div class="fl-button-group fl-button-group-layout-horizontal fl-button-group-width-"> <div class="fl-button-group-buttons" role="group" aria-label=""> <div id="fl-button-group-button-b50oywk2fg19-0" class="fl-button-group-button fl-button-group-button-b50oywk2fg19-0"><div class="fl-button-wrap fl-button-width-full fl-button-left"> <a href="https://www.learningfornature.org/en/nature-for-life-hub-2024/day1/" target="_self" class="fl-button" role="button"> <span class="fl-button-text">Day 1: Nature Revolution</span> </a> </div> </div><div id="fl-button-group-button-b50oywk2fg19-1" class="fl-button-group-button fl-button-group-button-b50oywk2fg19-1"><div class="fl-button-wrap fl-button-width-full fl-button-left"> <a href="https://www.learningfornature.org/en/nature-for-life-hub-2024/day2/" target="_self" class="fl-button" role="button"> <span class="fl-button-text">Day 2: Rewriting the Rules</span> </a> </div> </div><div id="fl-button-group-button-b50oywk2fg19-2" class="fl-button-group-button fl-button-group-button-b50oywk2fg19-2"><div class="fl-button-wrap fl-button-width-full fl-button-left"> <a href="https://www.learningfornature.org/en/nature-for-life-hub-2024/day3/" target="_self" class="fl-button" role="button"> <span class="fl-button-text">Day 3: Restoring Balance</span> </a> </div> </div><div id="fl-button-group-button-b50oywk2fg19-3" class="fl-button-group-button fl-button-group-button-b50oywk2fg19-3"><div class="fl-button-wrap fl-button-width-full fl-button-left"> <a href="https://www.learningfornature.org/en/nature-for-life-hub-2024/day4/" target="_self" class="fl-button" role="button"> <span class="fl-button-text">Day 4: Equator Prize 2024 Award Ceremony</span> </a> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="fl-row fl-row-full-width fl-row-bg-color fl-node-ocy7pbn1v3xu" data-node="ocy7pbn1v3xu"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-full-width fl-node-content"> <div class="fl-col-group fl-node-ku1mqrdvy5j3" data-node="ku1mqrdvy5j3"> <div class="fl-col fl-node-5zjlosvm0yu7 fl-col-has-cols" data-node="5zjlosvm0yu7"> <div class="fl-col-content fl-node-content"> <div class="fl-col-group fl-node-v2se6pz3gjwq fl-col-group-nested" data-node="v2se6pz3gjwq"> <div class="fl-col fl-node-z4x6kwd1fo2v fl-col-small fl-visible-desktop" data-node="z4x6kwd1fo2v"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-uabb-numbers fl-node-xm6d03ikqeto" data-node="xm6d03ikqeto"> <div class="fl-module-content fl-node-content"> <div class="uabb-module-content uabb-number uabb-number-none-above-title uabb-number-default"> <!-- Comment to fix spacing issue --><div class="uabb-number-text"> <p class="uabb-number-string"><span class="uabb-number-int">0</span> million+</p><span class="uabb-number-after-text">unique website visitors</span> </div><!-- Comment to fix spacing issue --> </div> </div> </div> </div> </div> <div class="fl-col fl-node-bnefdox9j23g fl-col-small fl-visible-desktop" data-node="bnefdox9j23g"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-uabb-numbers fl-node-iqfrvo80hgs1" data-node="iqfrvo80hgs1"> <div class="fl-module-content fl-node-content"> <div class="uabb-module-content uabb-number uabb-number-none-above-title uabb-number-default"> <!-- Comment to fix spacing issue --><div class="uabb-number-text"> <p class="uabb-number-string"><span class="uabb-number-int">0</span>+</p><span class="uabb-number-after-text">livestream views</span> </div><!-- Comment to fix spacing issue --> </div> </div> </div> </div> </div> <div class="fl-col fl-node-wmy126hqxte0 fl-col-small fl-visible-desktop" data-node="wmy126hqxte0"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-uabb-numbers fl-node-7o3vqsdtxemp" data-node="7o3vqsdtxemp"> <div class="fl-module-content fl-node-content"> <div class="uabb-module-content uabb-number uabb-number-none-above-title uabb-number-default"> <!-- Comment to fix spacing issue --><div class="uabb-number-text"> <p class="uabb-number-string"><span class="uabb-number-int">0</span>+</p><span class="uabb-number-after-text">partner organizations</span> </div><!-- Comment to fix spacing issue --> </div> </div> </div> </div> </div> <div class="fl-col fl-node-k7woe1s0mvit fl-col-small fl-visible-desktop" data-node="k7woe1s0mvit"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-uabb-numbers fl-node-3xgtm8daoqzu" data-node="3xgtm8daoqzu"> <div class="fl-module-content fl-node-content"> <div class="uabb-module-content uabb-number uabb-number-none-above-title uabb-number-default"> <!-- Comment to fix spacing issue --><div class="uabb-number-text"> <p class="uabb-number-string"><span class="uabb-number-int">0</span> billion+</p><span class="uabb-number-after-text">social media impressions for #NatureForLife</span> </div><!-- Comment to fix spacing issue --> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-4k2jdb7039fw fl-col-group-nested" data-node="4k2jdb7039fw"> <div class="fl-col fl-node-lp1jxv75qf42 fl-col-small fl-visible-medium-mobile" data-node="lp1jxv75qf42"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-uabb-numbers fl-node-v6kc8fgtue3r fl-animation fl-fade-up" data-node="v6kc8fgtue3r" data-animation-delay="0" data-animation-duration="1"> <div class="fl-module-content fl-node-content"> <div class="uabb-module-content uabb-number uabb-number-none-above-title uabb-number-default"> <!-- Comment to fix spacing issue --><div class="uabb-number-text"> <p class="uabb-number-string"><span class="uabb-number-int">0</span> million+</p><span class="uabb-number-after-text">unique website visitors</span> </div><!-- Comment to fix spacing issue --> </div> </div> </div> </div> </div> <div class="fl-col fl-node-bqz9ogpa7tln fl-col-small fl-visible-medium-mobile" data-node="bqz9ogpa7tln"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-uabb-numbers fl-node-vho6jtpgq2w0 fl-animation fl-fade-up" data-node="vho6jtpgq2w0" data-animation-delay="0" data-animation-duration="1"> <div class="fl-module-content fl-node-content"> <div class="uabb-module-content uabb-number uabb-number-none-above-title uabb-number-default"> <!-- Comment to fix spacing issue --><div class="uabb-number-text"> <p class="uabb-number-string"><span class="uabb-number-int">0</span>+</p><span class="uabb-number-after-text">livestream views</span> </div><!-- Comment to fix spacing issue --> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-islam56h04pv fl-col-group-nested" data-node="islam56h04pv"> <div class="fl-col fl-node-s9vrzhnepqjm fl-col-small fl-visible-medium-mobile" data-node="s9vrzhnepqjm"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-uabb-numbers fl-node-c1iwyp7nfusg fl-animation fl-fade-up" data-node="c1iwyp7nfusg" data-animation-delay="0" data-animation-duration="1"> <div class="fl-module-content fl-node-content"> <div class="uabb-module-content uabb-number uabb-number-none-above-title uabb-number-default"> <!-- Comment to fix spacing issue --><div class="uabb-number-text"> <p class="uabb-number-string"><span class="uabb-number-int">0</span>+</p><span class="uabb-number-after-text">partner organizations</span> </div><!-- Comment to fix spacing issue --> </div> </div> </div> </div> </div> <div class="fl-col fl-node-niyp08r59ke6 fl-col-small fl-visible-medium-mobile" data-node="niyp08r59ke6"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-uabb-numbers fl-node-vbsup0j2i4n8 fl-animation fl-fade-up" data-node="vbsup0j2i4n8" data-animation-delay="0" data-animation-duration="1"> <div class="fl-module-content fl-node-content"> <div class="uabb-module-content uabb-number uabb-number-none-above-title uabb-number-default"> <!-- Comment to fix spacing issue --><div class="uabb-number-text"> <p class="uabb-number-string"><span class="uabb-number-int">0</span> billion+</p><span class="uabb-number-after-text">social media impressions for #NatureForLife</span> </div><!-- Comment to fix spacing issue --> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-35hcngsmbkey fl-col-group-nested fl-col-group-equal-height fl-col-group-align-center" data-node="35hcngsmbkey"> <div class="fl-col fl-node-7gwermo1tjfs fl-col-small fl-visible-desktop" data-node="7gwermo1tjfs"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-6nhlwbxmjcqv" data-node="6nhlwbxmjcqv"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="text-align: center;"><span style="font-size: 60px; font-family: proxima nova;">Who we are</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-n40l1mxoy6kv" data-node="n40l1mxoy6kv"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-6tw2hks9roly fl-visible-medium-mobile" data-node="6tw2hks9roly"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="text-align: center;"><span style="font-size: 60px; font-family: proxima nova;">Who we are</span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-2fc178agu345" data-node="2fc178agu345"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><span style="font-size: 25px; font-family: proxima nova;">The Nature for Life Hub is a leading virtual event and global communications campaign hosted annually by the United Nations Development Programme and its partners. Together we work to put nature at the heart of sustainable development by convening world leaders, businesses, NGOs, Indigenous Peoples, youth leaders and activists to take ambitious action on nature.</span></p> <p><span style="font-size: 25px; font-family: proxima nova;">This year, we're calling on all of you – our incredible network of changemakers – <strong>to reimagine the future with us!</strong></span></p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="fl-row fl-row-full-width fl-row-bg-color fl-node-fzblrgn0y27u fl-visible-desktop-medium" data-node="fzblrgn0y27u"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-full-width fl-node-content"> <div class="fl-col-group fl-node-b76fp13ujzya" data-node="b76fp13ujzya"> <div class="fl-col fl-node-xp9siawtzucm fl-col-has-cols" data-node="xp9siawtzucm"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-p82nlasfikzq" data-node="p82nlasfikzq"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="text-align: center;"><span style="font-size: 60px; font-family: proxima nova;">Nature for Life Hub 2024 themes</span></p> </div> </div> </div> <div class="fl-col-group fl-node-sjq5y2fpnkhv fl-col-group-nested" data-node="sjq5y2fpnkhv"> <div class="fl-col fl-node-os38cblh1vy9 fl-col-small" data-node="os38cblh1vy9"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-tya4wrdp7sbz" data-node="tya4wrdp7sbz"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><strong><span style="font-family: 'proxima nova'; font-size: 25px;">30 September: Nature revolution: Shifting gears in policy and practice</span></strong></p> <p><span style="font-family: 'proxima nova'; font-size: 20px;">This theme focuses on revising policies and implementing impactful actions at the governmental and local levels.  Imagine a revolution in the way we manage our environment - a complete overhaul of existing approaches to ensure nature thrives alongside society.  Day 1 will explore how we can shift gears to make this revolution a reality.</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-4qd3hpkyseru fl-col-small" data-node="4qd3hpkyseru"> <div class="fl-col-content fl-node-content"> </div> </div> </div> <div class="fl-col-group fl-node-d7omps8b4zu9 fl-col-group-nested" data-node="d7omps8b4zu9"> <div class="fl-col fl-node-30174vsw2bgi fl-col-small" data-node="30174vsw2bgi"> <div class="fl-col-content fl-node-content"> </div> </div> <div class="fl-col fl-node-s9mfzn38akbj fl-col-small" data-node="s9mfzn38akbj"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-60nk3swx97da" data-node="60nk3swx97da"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><strong><span style="font-family: 'proxima nova'; font-size: 25px;">1 October: Rewriting the rules: Investing in a nature-positive economy</span></strong></p> <p><span style="font-family: 'proxima nova'; font-size: 20px;">This theme focuses on transforming economic models to incentivize sustainable practices and reframe economic growth. Imagine a world where the value we place on nature is reflected in how we do business. Day 2 will explore how we can rewrite the rules of the game, making investment in a nature-positive economy the new standard.</span></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-tmnqkgwhp4ib fl-col-group-nested" data-node="tmnqkgwhp4ib"> <div class="fl-col fl-node-yv5a3z4rng6b fl-col-small" data-node="yv5a3z4rng6b"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-96k8yfergiuz" data-node="96k8yfergiuz"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><strong><span style="font-family: 'proxima nova'; font-size: 25px;">2 October: Restoring balance: Reimagining our relationship with nature</span></strong></p> <p><span style="font-family: 'proxima nova'; font-size: 20px;">This theme explores ways to foster a deeper connection and respect for the natural world. Imagine a future where we view ourselves as stewards of nature, not just consumers of its resources. Day 3 will dive into how we can reimagine our relationship with nature, fostering a sense of shared responsibility for its well-being.</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-fx5v1mpznb4d fl-col-small" data-node="fx5v1mpznb4d"> <div class="fl-col-content fl-node-content"> </div> </div> </div> <div class="fl-col-group fl-node-ef091whyvksi fl-col-group-nested" data-node="ef091whyvksi"> <div class="fl-col fl-node-eg62zdrx5im7 fl-col-small" data-node="eg62zdrx5im7"> <div class="fl-col-content fl-node-content"> </div> </div> <div class="fl-col fl-node-h4qgi6a9wt0m fl-col-small" data-node="h4qgi6a9wt0m"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-tpjf9an6hge8" data-node="tpjf9an6hge8"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><strong><span style="font-family: 'proxima nova'; font-size: 25px;">3 October: Equator Prize award ceremony<br /> </span></strong></p> <p><span style="font-family: 'proxima nova'; font-size: 20px;">On this day, the prestigious Equator Prize Award Ceremony will celebrate 11 exceptional nature-based solutions spearheaded by Indigenous Peoples and local communities from around the globe. Under the theme of ‘Nature for Climate Action,’ the Award Ceremony will feature winners in the categories of Nature for Climate Mitigation, Nature for a Just Transition, and Nature for Climate Adaptation and Resilience.</span></p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="fl-row fl-row-full-width fl-row-bg-color fl-node-8ypghfoxenzk fl-visible-mobile" data-node="8ypghfoxenzk"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-full-width fl-node-content"> <div class="fl-col-group fl-node-j8u5dktrev2w" data-node="j8u5dktrev2w"> <div class="fl-col fl-node-2nx6fcjuaiqe fl-col-has-cols" data-node="2nx6fcjuaiqe"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-hlj593guq2n7" data-node="hlj593guq2n7"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="text-align: center;"><span style="font-size: 60px; font-family: proxima nova;">Nature for Life Hub 2024 themes</span></p> </div> </div> </div> <div class="fl-col-group fl-node-3h602byxour4 fl-col-group-nested" data-node="3h602byxour4"> <div class="fl-col fl-node-3e2m7uaicroq" data-node="3e2m7uaicroq"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-0huizt4y2g73 fl-animation fl-fade-up" data-node="0huizt4y2g73" data-animation-delay="0" data-animation-duration="1"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><strong><span style="font-family: 'proxima nova'; font-size: 25px;">30 September: Nature revolution: Shifting gears in policy and practice</span></strong></p> <p><span style="font-family: 'proxima nova'; font-size: 20px;">This theme focuses on revising policies and implementing impactful actions at the governmental and local levels.  Imagine a revolution in the way we manage our environment - a complete overhaul of existing approaches to ensure nature thrives alongside society.  Day 1 will explore how we can shift gears to make this revolution a reality.</span></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-834a6g95pnlo fl-col-group-nested" data-node="834a6g95pnlo"> <div class="fl-col fl-node-632ebrnph9u7 fl-animation fl-fade-up" data-node="632ebrnph9u7" data-animation-delay="0" data-animation-duration="1"> <div class="fl-col-content fl-node-content"> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-2ke7vo4uz1qc fl-animation fl-fade-up" data-node="2ke7vo4uz1qc" data-animation-delay="0" data-animation-duration="1"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><strong><span style="font-family: 'proxima nova'; font-size: 25px;">1 October: Rewriting the rules: Investing in a nature-positive economy</span></strong></p> <p><span style="font-family: 'proxima nova'; font-size: 20px;">This theme focuses on transforming economic models to incentivize sustainable practices and reframe economic growth. Imagine a world where the value we place on nature is reflected in how we do business. Day 2 will explore how we can rewrite the rules of the game, making investment in a nature-positive economy the new standard.</span></p> </div> </div> </div> <div class="fl-col-group fl-node-e7ty0x8uzc2a fl-col-group-nested" data-node="e7ty0x8uzc2a"> <div class="fl-col fl-node-0j2ifhmudtzq fl-animation fl-fade-up" data-node="0j2ifhmudtzq" data-animation-delay="0" data-animation-duration="1"> <div class="fl-col-content fl-node-content"> </div> </div> </div> <div class="fl-col-group fl-node-843uqhi5sclv fl-col-group-nested" data-node="843uqhi5sclv"> <div class="fl-col fl-node-aesp8z05imnb fl-animation fl-fade-up" data-node="aesp8z05imnb" data-animation-delay="0" data-animation-duration="1"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-9iw5l47j8e6x fl-animation fl-fade-up" data-node="9iw5l47j8e6x" data-animation-delay="0" data-animation-duration="1"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><strong><span style="font-family: 'proxima nova'; font-size: 25px;">2 October: Restoring balance: Reimagining our relationship with nature</span></strong></p> <p><span style="font-family: 'proxima nova'; font-size: 20px;">This theme explores ways to foster a deeper connection and respect for the natural world. Imagine a future where we view ourselves as stewards of nature, not just consumers of its resources. Day 3 will dive into how we can reimagine our relationship with nature, fostering a sense of shared responsibility for its well-being.</span></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-2u6nkzrpx4dy fl-col-group-nested" data-node="2u6nkzrpx4dy"> <div class="fl-col fl-node-h2dl3gs64zae fl-animation fl-fade-up" data-node="h2dl3gs64zae" data-animation-delay="0" data-animation-duration="1"> <div class="fl-col-content fl-node-content"> </div> </div> </div> <div class="fl-col-group fl-node-sgr219kim0w6 fl-col-group-nested" data-node="sgr219kim0w6"> <div class="fl-col fl-node-n6r5pvf4lze2 fl-animation fl-fade-up" data-node="n6r5pvf4lze2" data-animation-delay="0" data-animation-duration="1"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-w5j2hoxvgu7s fl-animation fl-fade-up" data-node="w5j2hoxvgu7s" data-animation-delay="0" data-animation-duration="1"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><strong><span style="font-family: 'proxima nova'; font-size: 25px;">3 October: Equator Prize award ceremony<br /> </span></strong></p> <p><span style="font-family: 'proxima nova'; font-size: 20px;">On this day, the prestigious Equator Prize Award Ceremony will celebrate 11 exceptional nature-based solutions spearheaded by Indigenous Peoples and local communities from around the globe. Under the theme of ‘Nature for Climate Action,’ the Award Ceremony will feature winners in the categories of Nature for Climate Mitigation, Nature for a Just Transition, and Nature for Climate Adaptation and Resilience. </span></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-5iun9t02jx48 fl-col-group-nested" data-node="5iun9t02jx48"> <div class="fl-col fl-node-vtykdu0lm3ir fl-animation fl-fade-up" data-node="vtykdu0lm3ir" data-animation-delay="0" data-animation-duration="1"> <div class="fl-col-content fl-node-content"> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-zb948j3hxg6p" data-node="zb948j3hxg6p"> <div id="agenda" class="fl-col fl-node-9a6n0jz4v5q8" data-node="9a6n0jz4v5q8"> <div class="fl-col-content fl-node-content"> </div> </div> </div> </div> </div> </div> <div id="speakers" class="fl-row fl-row-full-width fl-row-bg-color fl-node-5walv0e83ydi" data-node="5walv0e83ydi"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-full-width fl-node-content"> <div class="fl-col-group fl-node-h6r38vb7lf0c" data-node="h6r38vb7lf0c"> <div class="fl-col fl-node-u6s0flepxv4o" data-node="u6s0flepxv4o"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-yrls1nz74dx8" data-node="yrls1nz74dx8"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="text-align: center;"><span style="font-size: 60px; font-family: proxima nova;">Featured speakers</span></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-7wp0zq9jx8e3" data-node="7wp0zq9jx8e3"> <div class="fl-col fl-node-s7cly0x1w9fm fl-col-small" data-node="s7cly0x1w9fm"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-v3c7twzdl9hf" data-node="v3c7twzdl9hf"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img fetchpriority="high" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Razan-Al-Mubarak.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1">Razan Al Mubarak</span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';">UN Climate Change High Level Champion for COP28 and IUCN President</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-nxylku7vb8ic fl-col-small" data-node="nxylku7vb8ic"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-47s6apgn1u0l" data-node="47s6apgn1u0l"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Alasdair-Allan.jpg" alt="" width="622" height="625" srcset="https://www.learningfornature.org/wp-content/uploads/2024/09/Alasdair-Allan.jpg 622w, https://www.learningfornature.org/wp-content/uploads/2024/09/Alasdair-Allan-300x300.jpg 300w, https://www.learningfornature.org/wp-content/uploads/2024/09/Alasdair-Allan-150x150.jpg 150w, https://www.learningfornature.org/wp-content/uploads/2024/09/Alasdair-Allan-100x100.jpg 100w, https://www.learningfornature.org/wp-content/uploads/2024/09/Alasdair-Allan-12x12.jpg 12w, https://www.learningfornature.org/wp-content/uploads/2024/09/Alasdair-Allan-50x50.jpg 50w, https://www.learningfornature.org/wp-content/uploads/2024/09/Alasdair-Allan-149x150.jpg 149w, https://www.learningfornature.org/wp-content/uploads/2024/09/Alasdair-Allan-119x120.jpg 119w" sizes="(max-width: 622px) 100vw, 622px" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1">Alasdair Allan</span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Minister for Climate Action - </span><span style="font-size: 16px; font-family: 'proxima nova';">Government of Scotland</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-t7lm1j235hzf fl-col-small" data-node="t7lm1j235hzf"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-wrzmbc5t493p" data-node="wrzmbc5t493p"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Daniel-Alvarez.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1">Daniel Alvarez</span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Head of Biodiversity Policy and Planning Department - Ministry of the Environment of Chile</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-4bxmj8gkc1r5 fl-col-small" data-node="4bxmj8gkc1r5"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-jrkh0ie4svwt" data-node="jrkh0ie4svwt"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Jamal-Annagylyjova-.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1">Jamal Annagylyjova </span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Forest Biodiversity and Ecosystem Restoration Officer - Convention on Biological Diversity</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-bpi4sh7jn9au fl-col-small" data-node="bpi4sh7jn9au"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-jenqr43covfu" data-node="jenqr43covfu"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Odile-Conchou.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1">Odile Conchou</span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Deputy Director - High Ambition Coalition for Nature and People</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-81t9pw2rsghx fl-col-small" data-node="81t9pw2rsghx"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-xb3pf6j1ks8z" data-node="xb3pf6j1ks8z"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Gisele-Didier.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1">Gisele Didier</span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Director of Knowledge Management -  Humboldt Institute (Government of Colombia)</span></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-gzkmivw0sp52 fl-col-group-equal-height fl-col-group-align-top" data-node="gzkmivw0sp52"> <div class="fl-col fl-node-aowd7ezgun3x fl-col-small" data-node="aowd7ezgun3x"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-q89pyisafdr2" data-node="q89pyisafdr2"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Andrea-Meza.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1">Andrea Meza</span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Deputy Executive Secretary - United Nations Convention to Combat Desertification</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-239kmz6otrix fl-col-small" data-node="239kmz6otrix"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-mhgx1l3nwqce" data-node="mhgx1l3nwqce"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Diego-Ochoa.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1">Diego Ochoa</span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Programme Management Advisor - United Nations Development Programme</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-fgetbupzc6ra fl-col-small" data-node="fgetbupzc6ra"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-3a6t4eg2juqd" data-node="3a6t4eg2juqd"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Reina-Otsuka.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Reina Otsuka</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Digital Innovation Lead for Nature, Climate and Energy - United Nations Development Programme</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-zwsh60tcnb9p fl-col-small" data-node="zwsh60tcnb9p"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-eloz61rtf70g" data-node="eloz61rtf70g"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Enrique-Paniagua.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Enrique Paniagua</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Policy Expert - United Nations Development Programme</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-e2f7q1scnjo4 fl-col-small" data-node="e2f7q1scnjo4"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-orvpbxg3k1qf" data-node="orvpbxg3k1qf"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Midori-P.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Midori Paxton</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Director of Nature Hub, Bureau for Policy and Programme Support - United Nations Development Programme </span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-5jt1a30rk8x4 fl-col-small" data-node="5jt1a30rk8x4"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-qz6uda9tw3cm" data-node="qz6uda9tw3cm"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Constanza-Troppa.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Constanza Troppa</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Manager of Ecosystem Conservation and Climate Change - National Forestry Corporation</span></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-nto7crs92fyv fl-col-group-equal-height fl-col-group-align-top" data-node="nto7crs92fyv"> <div class="fl-col fl-node-nrpe97a5ucdj fl-col-small" data-node="nrpe97a5ucdj"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-sgv3x1b9nyq8" data-node="sgv3x1b9nyq8"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Rita-Zaghloul.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1">Rita Zaghloul</span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Director - High Ambition Coalition for Nature and People</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-m97x8ry3sdu4 fl-col-small" data-node="m97x8ry3sdu4"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-54hem1paiwxg" data-node="54hem1paiwxg"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Alonso-Cordova.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Alonso Córdova</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Forestry and Indigenous Affairs Specialist - World Wildlife Fund</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-m4ntidgkw173 fl-col-small" data-node="m4ntidgkw173"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-g2hpl68ecf03" data-node="g2hpl68ecf03"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Nina-Kantcheva.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Nina Kantcheva</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Senior Policy Adviser on Indigenous Peoples and Local Communities Engagement - United Nations Development Programme</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-jt1mihluxoy7 fl-col-small" data-node="jt1mihluxoy7"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-szlywtag1n0o" data-node="szlywtag1n0o"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Alessandra-Melis-.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Alessandra Melis</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Senior Manager – Lead, Standards and Regulatory Engagement - The TNFD Secretariat</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-2xecmqzrsot1 fl-col-small" data-node="2xecmqzrsot1"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-iatw74lnoyu9" data-node="iatw74lnoyu9"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Raymond.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Raymond Ohene Ofori</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1">Deputy Director of the Environment Directorate </span>- Ministry of Environment, Science, Technology and Innovation of Ghana</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-ipnj7h6x12cd fl-col-small" data-node="ipnj7h6x12cd"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-yiupavk9lrdh" data-node="yiupavk9lrdh"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Diego-Olarte.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Diego Olarte</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1">National Sustainable Development Specialist </span>- <span data-sheets-root="1">United Nations Development Programme in Colombia </span></span></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-2pe3jlcid0qt fl-col-group-equal-height fl-col-group-align-top" data-node="2pe3jlcid0qt"> <div class="fl-col fl-node-w4e13piy26ax fl-col-small" data-node="w4e13piy26ax"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-ykc9usit27o5" data-node="ykc9usit27o5"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Mrinalini-Rai.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Mrinalini Rai</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1">Founder and Director </span>- <span data-sheets-root="1">Women4Biodiversity</span></span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-nj2deb1rt3y5 fl-col-small" data-node="nj2deb1rt3y5"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-mkcan5eygl0w" data-node="mkcan5eygl0w"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Omar-Shaikh.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Omar Shaikh</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1">Managing Director </span> - Global Ethical Finance Initiative</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-aq8mzen157cg fl-col-small" data-node="aq8mzen157cg"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-2u5yh1td3gfb" data-node="2u5yh1td3gfb"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Gina-Torres.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1">Gina Torres</span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Manager - Economic Studies and Statistics, Central Bank, Ecuador</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-tp4ynu59v1j8 fl-col-small" data-node="tp4ynu59v1j8"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-9p8k5aim2co1" data-node="9p8k5aim2co1"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/James-Vause.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1">James Vause</span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Lead Economist - United Nations Environment Programme World Conservation Monitoring Centre</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-80e4u75wq6zr fl-col-small" data-node="80e4u75wq6zr"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-exubm7nl4fws" data-node="exubm7nl4fws"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Alex-White.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1">Alexander White</span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1">Department for Environment, Food and Rural Affairs, Government of the United Kingdom</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-l0cfsojup82y fl-col-small" data-node="l0cfsojup82y"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-bnqltxzryf5k" data-node="bnqltxzryf5k"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Andrew-Bovarnick.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Andrew Bovarnick</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1">Global Head of Food and Agricultural Commodity Systems</span> - <span data-sheets-root="1">United Nations Development Programme</span></span></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-vcdiu4fjy1ow fl-col-group-equal-height fl-col-group-align-top" data-node="vcdiu4fjy1ow"> <div class="fl-col fl-node-fd9o01qls8it fl-col-small" data-node="fd9o01qls8it"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-pn9iy0hxa8c3" data-node="pn9iy0hxa8c3"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Susan-Hu.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Susan Hu</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1">Nature Action Agenda Lead</span> - <span data-sheets-root="1">World Economic Forum</span></span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-9ozipk2jc415 fl-col-small" data-node="9ozipk2jc415"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-1sphdolbq9w4" data-node="1sphdolbq9w4"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/David-Jensen.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">David Jensen</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1">Coordinator of the Digital Transformation Task Force</span> - <span data-sheets-root="1">United Nations Environment Programme</span></span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-d34khy2ioa6l fl-col-small" data-node="d34khy2ioa6l"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-a5umx0p9v1wk" data-node="a5umx0p9v1wk"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Naabia-Ofosu-Amaah.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Naabia Ofosu-Amaah</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1">Senior Corporate Engagement Advisor, Water and Resilience</span> - <span data-sheets-root="1">The Nature Conservancy</span></span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-ovgfprnwx58k fl-col-small" data-node="ovgfprnwx58k"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-1tv38rzmad40" data-node="1tv38rzmad40"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Cate-Owren.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Cate Owren</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1">Senior Advisor on Gender Equality</span> - <span data-sheets-root="1">United Nations Development Programme</span></span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-f3oz90lv26ek fl-col-small" data-node="f3oz90lv26ek"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-bjdl1nfegz6u" data-node="bjdl1nfegz6u"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Carmen-Torres.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1">Carmen Torres</span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1">Sustainable Food Systems Expert </span>- <span data-sheets-root="1">United Nations Environment Programme</span></span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-njctbk3hxdle fl-col-small" data-node="njctbk3hxdle"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-gt5apchx230q" data-node="gt5apchx230q"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Hindou-Oumarou-Ibrahim.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Hindou Oumarou Ibrahim</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span style="font-weight: 400;">Chair </span>- <span style="font-weight: 400;">UN Permanent Forum on Indigenous Issues</span></span></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-17taxlu3vedj fl-col-group-equal-height fl-col-group-align-top" data-node="17taxlu3vedj"> <div class="fl-col fl-node-hd3cza4flqy0 fl-col-small" data-node="hd3cza4flqy0"> <div class="fl-col-content fl-node-content"> </div> </div> <div class="fl-col fl-node-0pjy6w189bez fl-col-small" data-node="0pjy6w189bez"> <div class="fl-col-content fl-node-content"> </div> </div> <div class="fl-col fl-node-irn9uxz2a840 fl-col-small" data-node="irn9uxz2a840"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-d3ui79vba6mq" data-node="d3ui79vba6mq"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Francisco-Vera-Manzanares.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Francisco Vera Manzanares</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Human Rights Defender and Climate Activist</span></span></span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-tod1jmqsb5v9 fl-col-small" data-node="tod1jmqsb5v9"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-bdxter41gw8l" data-node="bdxter41gw8l"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Ida-Elisabeth-Hellmark.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Ida Elisabeth Hellmark</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span style="font-weight: 400;">Senior Adviser</span> - Norwegian Agency for Development Cooperation (NORAD)</span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-c74j35ys6epf fl-col-small" data-node="c74j35ys6epf"> <div class="fl-col-content fl-node-content"> </div> </div> <div class="fl-col fl-node-jwh0k71z8cfq fl-col-small" data-node="jwh0k71z8cfq"> <div class="fl-col-content fl-node-content"> </div> </div> </div> </div> </div> </div> <div id="featured_artists" class="fl-row fl-row-full-width fl-row-bg-color fl-node-rn76i4ty2ubj" data-node="rn76i4ty2ubj"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-full-width fl-node-content"> <div class="fl-col-group fl-node-kycoxtmfv8zb" data-node="kycoxtmfv8zb"> <div id="featured_artists" class="fl-col fl-node-ka7xj0q5rnw4" data-node="ka7xj0q5rnw4"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-mf7l5sre8jod" data-node="mf7l5sre8jod"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="text-align: center;"><span style="font-size: 60px; font-family: proxima nova;">Featured artists</span></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-akvhylo02r74 fl-col-group-equal-height fl-col-group-align-top" data-node="akvhylo02r74"> <div class="fl-col fl-node-tc9qa3fshxv2 fl-col-small align-modal-bottom" data-node="tc9qa3fshxv2"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-kg1s23rltx5d" data-node="kg1s23rltx5d"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Arandu-Arakuaa.jpg&quot;" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Arandu Arakuaa</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Brazilian folk metal band</span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-yusxafmtw17e" data-node="yusxafmtw17e"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview"> <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123290" data-conf='{"content":{ "target" : "#paoc-modal-1", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-6lezhv0ws5j7 fl-col-small align-modal-bottom" data-node="6lezhv0ws5j7"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-dwy4lrkfpj7c" data-node="dwy4lrkfpj7c"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Raven-Bright-2.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Raven Bright</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Indigenous contemporary artist </span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-9g42ufc3i0lj" data-node="9g42ufc3i0lj"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview">  <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123299" data-conf='{"content":{ "target" : "#paoc-modal-2", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-82orbdnv0ewc fl-col-small align-modal-bottom" data-node="82orbdnv0ewc"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-h8vn2pes7ulb" data-node="h8vn2pes7ulb"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Maya.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Maya Garnier</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Musician</span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-noldz5qc4i2u" data-node="noldz5qc4i2u"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123309" data-conf='{"content":{ "target" : "#paoc-modal-3", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-i40pb95gxva1 fl-col-small align-modal-bottom" data-node="i40pb95gxva1"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-k7g26vjs9r0m" data-node="k7g26vjs9r0m"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/dobetgnahore.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Dobet Gnahore Dodogna</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Singer, dancer, percussionist, songwriter</span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-iu1n8sp5razh" data-node="iu1n8sp5razh"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123310" data-conf='{"content":{ "target" : "#paoc-modal-4", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-6l3nwbxoufz4 fl-col-small align-modal-bottom" data-node="6l3nwbxoufz4"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-weqpzmroku38" data-node="weqpzmroku38"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Sarah-Kraning.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Sarah Kraning</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Abstract artist</span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-h7p3bk02lzqi" data-node="h7p3bk02lzqi"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123314" data-conf='{"content":{ "target" : "#paoc-modal-5", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-3wnq5x2t9ybp fl-col-small align-modal-bottom" data-node="3wnq5x2t9ybp"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-f4rv6xbtypc7" data-node="f4rv6xbtypc7"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/benjamin.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Benjamin Mirin </b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Ethno-ornithologist, acoustic biologist</span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-zp8h2u35ertb" data-node="zp8h2u35ertb"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123315" data-conf='{"content":{ "target" : "#paoc-modal-6", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div id="featured_artists" class="fl-row fl-row-full-width fl-row-bg-color fl-node-a3sne6xf5zgt" data-node="a3sne6xf5zgt"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-full-width fl-node-content"> <div class="fl-col-group fl-node-cf3aj1pd6n9w fl-col-group-equal-height fl-col-group-align-top" data-node="cf3aj1pd6n9w"> <div class="fl-col fl-node-7dqi1cw5ua0b fl-col-small align-modal-bottom" data-node="7dqi1cw5ua0b"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-mrjzx12fp08a" data-node="mrjzx12fp08a"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Madelyn-Monaghan.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Madelyn Monaghan</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Singer, actress, writer, international recording artist</span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-7nqml5vb4jt0" data-node="7nqml5vb4jt0"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview"> <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123317" data-conf='{"content":{ "target" : "#paoc-modal-7", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-cej5a0ltyh1f fl-col-small align-modal-bottom" data-node="cej5a0ltyh1f"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-o1klpbt5fi6v" data-node="o1klpbt5fi6v"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Snow-Raven.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Snow Raven</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Indigenous Sakha artist</span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-st8pkqui6401" data-node="st8pkqui6401"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123318" data-conf='{"content":{ "target" : "#paoc-modal-8", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-93skgq5li6rd fl-col-small align-modal-bottom" data-node="93skgq5li6rd"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-3pghm7tnykxr" data-node="3pghm7tnykxr"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/sounds.oftheocean.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Sounds of the Ocean</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Immersive experience</span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-olwg18rudm43" data-node="olwg18rudm43"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123322" data-conf='{"content":{ "target" : "#paoc-modal-9", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-9i0phtevcsg1 fl-col-small align-modal-bottom" data-node="9i0phtevcsg1"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-tghuq6m2navx" data-node="tghuq6m2navx"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/George-The-Poet.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>George The Poet</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Spoken word performer</span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-aqlumy4wkfnb" data-node="aqlumy4wkfnb"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123324" data-conf='{"content":{ "target" : "#paoc-modal-10", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-385udkgi7wzn fl-col-small align-modal-bottom" data-node="385udkgi7wzn"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-9aqw7lptumz8" data-node="9aqw7lptumz8"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Djuena-Tikuna.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Djuena Tikuna</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Indigenous singer, journalist, producer, activist</span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-z8yspol4jxg0" data-node="z8yspol4jxg0"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123327" data-conf='{"content":{ "target" : "#paoc-modal-11", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-8veftjpadw0b fl-col-small align-modal-bottom" data-node="8veftjpadw0b"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-i5rf4vxz9eh3" data-node="i5rf4vxz9eh3"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Maf-E-Tula.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Maf É Tulà </b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Musical artist</span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-v5gx7zlo218h" data-node="v5gx7zlo218h"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123329" data-conf='{"content":{ "target" : "#paoc-modal-12", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div id="featured_artists" class="fl-row fl-row-full-width fl-row-bg-color fl-node-5ueyc9d0h4ts" data-node="5ueyc9d0h4ts"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-full-width fl-node-content"> <div class="fl-col-group fl-node-v4rae201dpjn fl-col-group-equal-height fl-col-group-align-top" data-node="v4rae201dpjn"> <div class="fl-col fl-node-gq5io0prch23 fl-col-small align-modal-bottom" data-node="gq5io0prch23"> <div class="fl-col-content fl-node-content"> </div> </div> <div class="fl-col fl-node-1m2r68fzus7c fl-col-small align-modal-bottom" data-node="1m2r68fzus7c"> <div class="fl-col-content fl-node-content"> </div> </div> <div class="fl-col fl-node-hpktmfsiy21z fl-col-small align-modal-bottom" data-node="hpktmfsiy21z"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-i6oyst7nml8h" data-node="i6oyst7nml8h"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Orlando-Villarraga.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>Orlando Villarraga</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Poet, musician, visual artist</span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-kfv5o0y3w1s6" data-node="kfv5o0y3w1s6"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123332" data-conf='{"content":{ "target" : "#paoc-modal-13", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-dn0iev759gc3 fl-col-small align-modal-bottom" data-node="dn0iev759gc3"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-2jtypm7s891l" data-node="2jtypm7s891l"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="wp-image-122211 size-full aligncenter" style="border-radius: 100%;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/AY-Young44.jpg" alt="" width="622" height="625" /></p> <p style="text-align: center; margin-top: -30px;"><strong><span style="font-size: 20px; font-family: proxima nova;" data-sheets-root="1"><span data-sheets-root="1"><b>AY Young</b></span></span></strong></p> <p style="text-align: center; margin-top: -20px; line-height: 20px;"><span style="font-size: 16px; font-family: 'proxima nova';" data-sheets-root="1"><span data-sheets-root="1"><span style="font-weight: 400;">Producer, singer, songwriter, entrepreneur</span></span></span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-nfbcas1zxtjq" data-node="nfbcas1zxtjq"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <div class="popupaoc-shortcode-preview"> <a class="paoc-popup popupaoc-button" href="javascript:void(0);" data-target="popuppaoc-modal-123333" data-conf='{"content":{ "target" : "#paoc-modal-14", "effect": "fadein", "positionX": "center", "positionY": "center", "fullscreen": false, "speedIn": 300, "speedOut": 300, "delay": 150, "width": "60%" },"loader":{"active": true},"overlay":{"active": true}}'>Learn more</a> </div> </div> </div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-hz1sinlkoegj fl-col-small align-modal-bottom" data-node="hz1sinlkoegj"> <div class="fl-col-content fl-node-content"> </div> </div> <div class="fl-col fl-node-bqdashlg4jfr fl-col-small align-modal-bottom" data-node="bqdashlg4jfr"> <div class="fl-col-content fl-node-content"> </div> </div> </div> </div> </div> </div> <div class="fl-row fl-row-full-width fl-row-bg-color fl-node-13slkxq8yrac" data-node="13slkxq8yrac"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-full-width fl-node-content"> <div class="fl-col-group fl-node-tro9wxc72um0" data-node="tro9wxc72um0"> <div class="fl-col fl-node-io67v9zu5lqb fl-col-has-cols" data-node="io67v9zu5lqb"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-lc8yug6b0kpx" data-node="lc8yug6b0kpx"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="text-align: center;"><span style="font-size: 60px; font-family: proxima nova;">Agenda</span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-8vkmrofd64i3" data-node="8vkmrofd64i3"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="text-align: center;"><span style="font-family: 'Proxima Nova'; font-size: 20px; line-height: 20px;">Explore the event agenda to discover a lineup of engaging sessions, performances, and discussions. Find inspiration to make a positive impact for nature. Don't miss a moment of this exciting journey!</span></p> </div> </div> </div> <div class="fl-module fl-module-tabs fl-node-w5tg34nj27fa" data-node="w5tg34nj27fa"> <div class="fl-module-content fl-node-content"> <div class="fl-tabs fl-tabs-horizontal fl-clearfix"> <div class="fl-tabs-labels fl-clearfix" role="tablist"> <a href="#" class="fl-tabs-label fl-tab-active" id="fl-tabs-w5tg34nj27fa-label-0" data-index="0" aria-selected="true" aria-controls="fl-tabs-w5tg34nj27fa-panel-0" aria-expanded="true" role="tab" tabindex="0"> Day 1 </a> <a href="#" class="fl-tabs-label" id="fl-tabs-w5tg34nj27fa-label-1" data-index="1" aria-selected="false" aria-controls="fl-tabs-w5tg34nj27fa-panel-1" aria-expanded="false" role="tab" tabindex="0"> Day 2 </a> <a href="#" class="fl-tabs-label" id="fl-tabs-w5tg34nj27fa-label-2" data-index="2" aria-selected="false" aria-controls="fl-tabs-w5tg34nj27fa-panel-2" aria-expanded="false" role="tab" tabindex="0"> Day 3 </a> <a href="#" class="fl-tabs-label" id="fl-tabs-w5tg34nj27fa-label-3" data-index="3" aria-selected="false" aria-controls="fl-tabs-w5tg34nj27fa-panel-3" aria-expanded="false" role="tab" tabindex="0"> Day 4 </a> </div> <div class="fl-tabs-panels fl-clearfix"> <div class="fl-tabs-panel"> <div class="fl-tabs-label fl-tabs-panel-label fl-tab-active" data-index="0" tabindex="0"> <span>Day 1</span> <i class="fas"></i> </div> <div class="fl-tabs-panel-content fl-clearfix fl-tab-active" id="fl-tabs-w5tg34nj27fa-panel-0" data-index="0" aria-labelledby="fl-tabs-w5tg34nj27fa-label-0" role="tabpanel" aria-live="polite"> <style> body {<br /> font-family: 'Proxima Nova', sans-serif;<br /> font-size: 20px;<br /> }</p> <p> /* Specific class for this table to override global border styles */<br /> .custom-table {<br /> width: 100%;<br /> border-collapse: collapse;<br /> }</p> <p> .custom-table th, .custom-table td {<br /> padding: 10px;<br /> border-left: none !important;<br /> border-right: none !important;<br /> border-top: 1px solid black;<br /> border-bottom: 1px solid black;<br /> }</p> <p> /* Adding the green background for category rows */<br /> th {<br /> background-color: #00665B;<br /> color: white;<br /> text-align: left;<br /> }</p> <p> .time {<br /> width: 20%;<br /> font-weight: normal; /* Time column not bold */<br /> }</p> <p> .event {<br /> width: 80%;<br /> }</p> <p> /* Make first line bold and second line regular */<br /> .event .bold-line {<br /> font-weight: bold;<br /> }</p> <p> .event .regular-line {<br /> font-weight: normal;<br /> }</p> </style> <p>&nbsp;</p> <table class="custom-table"> <tbody> <tr> <td class="time">9:00 am*</td> <td class="event"><span class="bold-line">HUB OPENING</span><br /> <span class="regular-line">Artist: Dobet Gnahore Dodogna</span></td> </tr> <tr> <th colspan="2">BIODIVERSITY</th> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:05 am</span></td> <td class="event"><span class="bold-line">Introduction to the Global Biodiversity Framework</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:09 am</span></td> <td class="event"><span class="bold-line">Introduction to National Biodiversity Strategies and Action Plans</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:13 am</span></td> <td class="event"><span class="bold-line">Introduction to the High Ambition Coalition for Nature and People</span><br /> <span class="regular-line">Speaker: Rita Zaghloul, High Ambition Coalition for Nature and People</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:17 am</span></td> <td class="event"><span class="bold-line">Mainstreaming Biodiversity into Policy in Scotland</span><br /> <span class="regular-line">Speaker: Alasdair Allan, Government of Scotland</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:23 am</span></td> <td class="event"><span class="bold-line">Dialogue: Elevating Ambition on Nature</span><br /> <span class="regular-line">Speakers: Odile Conchou, High Ambition Coalition; Diego Ochoa, NBSAP Accelerator Partnership</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:38 am</span></td> <td class="event"><span class="bold-line">Performance</span><br /> <span class="regular-line">Sounds of the Ocean</span></td> </tr> <tr> <th colspan="2">CLIMATE</th> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:41 am</span></td> <td class="event"><span class="bold-line">Introduction to Nature for Climate</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:44 am</span></td> <td class="event"><span class="bold-line">Introduction to Nationally Determined Contributions</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:47 am</span></td> <td class="event"><span class="bold-line">Introduction to Nature-Based Solutions</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:50 am</span></td> <td class="event"><span class="bold-line">Nature-Positive Initiative</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:52 am</span></td> <td class="event"><span class="bold-line">Case study</span><br /> <span class="regular-line">Nature-Based Solutions in Kenya</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:56 am</span></td> <td class="event"><span class="bold-line">Dialogue: Nature-Based Solutions for Climate</span><br /> <span class="regular-line">Speaker: Gisele Didier, Humboldt Institute</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:01 am</span></td> <td class="event"><span class="bold-line">Performance</span><br /> <span class="regular-line">Artist: AY Young</span></td> </tr> <tr> <th colspan="2">LAND</th> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:04 am</span></td> <td class="event"><span class="bold-line">Case Study</span><br /> <span class="regular-line">Mongolia: Life in a Changing World</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:09 am</span></td> <td class="event"><span class="bold-line">Introduction to Land Degradation and Land Degradation Neutrality Targets</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:11 am</span></td> <td class="event"><span class="bold-line">Dialogue: Using Science to Link Rio Conventions for Restoring Hope</span><br /> <span class="regular-line">Speakers: Andrea Meza, UNCCD; Jamal Annagylyjova, SCBD; Enrique Paniagua, UNDP; Constanza Tropa, CONAF; Daniel Alvarez, Environment Ministry of Chile</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:29 am</span></td> <td class="event"><span class="bold-line">Performance</span><br /> <span class="regular-line">Artist: Raven Bright</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:34 am</span></td> <td class="event"><span class="bold-line">Technology for Conservation</span><br /> <span class="regular-line">Presentations: “Map of Hope,” Plangea, SEPAL, X-Prize</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:47 am</span></td> <td class="event"><span class="bold-line">Dialogue: Scaling Up Data and Land Conservation</span><br /> <span class="regular-line">Speaker: Reina Otsuka, UNDP</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:54 am</span></td> <td class="event"><span class="bold-line">Performance</span><br /> <span class="regular-line">Artist: Benjamin Mirin</span></td> </tr> </tbody> </table> <p>&nbsp;</p> </div> </div> <div class="fl-tabs-panel"> <div class="fl-tabs-label fl-tabs-panel-label" data-index="1" tabindex="0"> <span>Day 2</span> <i class="fas fa-plus"></i> </div> <div class="fl-tabs-panel-content fl-clearfix" id="fl-tabs-w5tg34nj27fa-panel-1" data-index="1" aria-hidden="true" aria-labelledby="fl-tabs-w5tg34nj27fa-label-1" role="tabpanel" aria-live="polite"> <style> body {<br /> font-family: 'Proxima Nova', sans-serif;<br /> font-size: 20px;<br /> }</p> <p> /* Specific class for this table to override global border styles */<br /> .custom-table {<br /> width: 100%;<br /> border-collapse: collapse;<br /> }</p> <p> .custom-table th, .custom-table td {<br /> padding: 10px;<br /> border-left: none !important;<br /> border-right: none !important;<br /> border-top: 1px solid black;<br /> border-bottom: 1px solid black;<br /> }</p> <p> /* Adding the green background for category rows */<br /> th {<br /> background-color: #00665B;<br /> color: white;<br /> text-align: left;<br /> }</p> <p> .time {<br /> width: 20%;<br /> font-weight: normal; /* Time column not bold */<br /> }</p> <p> .event {<br /> width: 80%;<br /> }</p> <p> /* Make first line bold and second line regular */<br /> .event .bold-line {<br /> font-weight: bold;<br /> }</p> <p> .event .regular-line {<br /> font-weight: normal;<br /> }<br /> </style> <p>&nbsp;</p> <table class="custom-table"> <tbody><!-- SHIFTING PRIVATE SECTOR FINANCE --></p> <tr> <td class="time">9:00 am*</td> <td class="event"><span class="bold-line">DAY 2 OPENING</span><br /> <span class="regular-line">Artist: Maf É Tulà</span></td> </tr> <tr> <th colspan="2">SHIFTING PRIVATE SECTOR FINANCE</th> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:05 am</span></td> <td class="event"><span class="bold-line">Thriving Together: Biodiversity and Corporate Success</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:08 am</span></td> <td class="event"><span class="bold-line">Why Every Business Needs a Nature Strategy</span><br /> <span class="regular-line">Speaker: Eva Zabey, Business for Nature</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:10 am</span></td> <td class="event"><span class="bold-line">Investing in a Nature-Positive Future</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:14 am</span></td> <td class="event"><span class="bold-line">Introduction to the Taskforce on Nature-related Financial Disclosures</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:18 am</span></td> <td class="event"><span class="bold-line">Dialogue: Disclosure and Accountability</span><br /> <span class="regular-line">Speaker: Alessandra Melis, TNFD</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:26 am</span></td> <td class="event"><span class="bold-line">Performance</span><br /> <span class="regular-line">Artist: Orlando Villarraga</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:27 am</span></td> <td class="event"><span class="bold-line">Upscaling Investment in Nature</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:31 am</span></td> <td class="event"><span class="bold-line">Evolution of Nature Markets</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:34 am</span></td> <td class="event"><span class="bold-line">Case Study</span><br /> <span class="regular-line">How Legal Personhood and Financial Markets Protect Whales</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:38 am</span></td> <td class="event"><span class="bold-line">Accounting for Nature</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:42 am</span></td> <td class="event"><span class="bold-line">Introduction to BIOFIN</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:47 am</span></td> <td class="event"><span class="bold-line">Making Green Finance Work for Nature</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:50 am</span></td> <td class="event"><span class="bold-line">Dialogue: Finance, Nature and the Private Sector</span><br /> <span class="regular-line">Speaker: Omar Shaikh, Global Ethical Finance Initiative</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:56 am</span></td> <td class="event"><span class="bold-line">Performance</span><br /> <span class="regular-line">Artist: George the Poet</span></td> </tr> <p><!-- SHIFTING PUBLIC SECTOR FINANCE --></p> <tr> <th colspan="2">SHIFTING PUBLIC SECTOR FINANCE</th> </tr> <tr> <td class="time"><span style="font-weight: 400;">9:58 am</span></td> <td class="event"><span class="bold-line">The Big Nature Turnaround</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:00 am</span></td> <td class="event"><span class="bold-line">The Nature of Subsidies</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:06 am</span></td> <td class="event"><span class="bold-line">Introduction to the Nature Transition Support Programme</span><br /> <span class="regular-line">Speaker: James Vause, UNEP-WCMC</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:07 am</span></td> <td class="event"><span class="bold-line">Case Study</span><br /> <span class="regular-line">The Nature Transition Support Programme in Ecuador</span><br /> <span class="regular-line">Speaker: Gina Torres, Central Bank Ecuador</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:11 am</span></td> <td class="event"><span class="bold-line">Dialogue: Transforming Economies</span><br /> <span class="regular-line">Speakers: Alexander White, Government of the United Kingdom; Raymond Ohene Ofori, Ministry of Environment, Science, Technology and Innovation of Ghana</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:26 am</span></td> <td class="event"><span class="bold-line">Performance</span><br /> <span class="regular-line">Artist: Djuena Tikuna</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:31 am</span></td> <td class="event"><span class="bold-line">Directing Finance to Indigenous Peoples and Local Communities</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:33 am</span></td> <td class="event"><span class="bold-line">Case Study</span><br /> <span class="regular-line">Paran Women Championing Climate and Nature Action in Kenya</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:38 am</span></td> <td class="event"><span class="bold-line">Dialogue: Directing Finance to Indigenous Peoples and Local Communities</span><br /> <span class="regular-line">Speakers: Nina Kantcheva, UNDP; Alonso Córdova, WWF</span></td> </tr> <tr> <td class="time"><span style="font-weight: 400;">10:53 am</span></td> <td class="event"><span class="bold-line">Performance</span><br /> <span class="regular-line">Arandu Arakuaa</span></td> </tr> </tbody> </table> <p>&nbsp;</p> </div> </div> <div class="fl-tabs-panel"> <div class="fl-tabs-label fl-tabs-panel-label" data-index="2" tabindex="0"> <span>Day 3</span> <i class="fas fa-plus"></i> </div> <div class="fl-tabs-panel-content fl-clearfix" id="fl-tabs-w5tg34nj27fa-panel-2" data-index="2" aria-hidden="true" aria-labelledby="fl-tabs-w5tg34nj27fa-label-2" role="tabpanel" aria-live="polite"> <style> body {<br /> font-family: 'Proxima Nova', sans-serif;<br /> font-size: 20px;<br /> }</p> <p> /* Specific class for this table to override global border styles */<br /> .custom-table {<br /> width: 100%;<br /> border-collapse: collapse;<br /> }</p> <p> .custom-table th, .custom-table td {<br /> padding: 10px;<br /> border-left: none !important;<br /> border-right: none !important;<br /> border-top: 1px solid black;<br /> border-bottom: 1px solid black;<br /> }</p> <p> /* Adding the green background for category rows */<br /> th {<br /> background-color: #00665B;<br /> color: white;<br /> text-align: left;<br /> }</p> <p> .time {<br /> width: 20%;<br /> font-weight: normal; /* Time column not bold */<br /> }</p> <p> .event {<br /> width: 80%;<br /> }</p> <p> /* Make first line bold and second line regular */<br /> .event .bold-line {<br /> font-weight: bold;<br /> }</p> <p> .event .regular-line {<br /> font-weight: normal;<br /> }<br /> </style> <p>&nbsp;</p> <table class="custom-table"> <tbody><!-- NATURE FOR FOOD --></p> <tr> <td class="time">9:00 am*</td> <td class="event"><span class="bold-line">DAY 3 OPENING</span><br /> <span class="regular-line">Artist: Maya Garnier</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Nature for All: One Nature, One Future</span></td> </tr> <tr> <th colspan="2">NATURE FOR FOOD</th> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Introduction to Nature for Food</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">The Chef's Manifesto</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Case Study</span><br /> <span class="regular-line">Coffee: For Climate, Nature, and People</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Dialogue: Transforming Our Food Systems for Nature, People and Planet</span><br /> <span class="regular-line">Speakers: Carmen Torres, UNEP; Andrew Bovarnick, UNDP</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Performance</span><br /> <span class="regular-line">Artist: Snow Raven</span></td> </tr> <p><!-- NATURE FOR WATER --></p> <tr> <th colspan="2">NATURE FOR WATER</th> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Introduction to Nature for Water</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Case Study</span><br /> <span class="regular-line">The Nairobi Water Fund</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Dialogue: Implementing Nature-Based Solutions for Water Security</span><br /> <span class="regular-line">Speaker: Naabia Ofosu-Amaah, The Nature Conservancy; Diego Olarte, UNDP</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Performance</span><br /> <span class="regular-line">Artist: Orlando Villarraga</span></td> </tr> <p><!-- NATURE FOR GENDER EQUALITY --></p> <tr> <th colspan="2">NATURE FOR GENDER EQUALITY</th> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Introduction to Nature for Gender Equality</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Transformative Change for Biodiversity: The Role of Gender Equality and Social Inclusion</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Case Study</span><br /> <span class="regular-line">Women of the Delta: Resilient Mangrove Communities of Pakistan</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Dialogue: Nature for Gender Equality</span><br /> <span class="regular-line">Speaker: Mrinalini Rai, Women4Biodiversity</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Performance</span><br /> <span class="regular-line">Artist: Madelyn Monaghan</span></td> </tr> <p><!-- NATURE FOR DISASTER RISK REDUCTION --></p> <tr> <th colspan="2">NATURE FOR DISASTER RISK REDUCTION</th> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Introduction to Nature for Disaster Reduction</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Case Study</span><br /> <span class="regular-line">A Changing Tide: A Story of Hope from the Front Lines of Climate Change</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Dialogue: Nature for Disaster Reduction</span><br /> <span class="regular-line">Speaker: Enrique Paniagua, UNDP</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Performance</span><br /> <span class="regular-line">Artist: Sarah Kraning</span></td> </tr> <p><!-- NATURE FOR PEACE --></p> <tr> <th colspan="2">NATURE FOR PEACE</th> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Introduction to Nature for Peace</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Case Study</span><br /> <span class="regular-line">Salween Peace Park</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Dialogue: Nature for Peace</span><br /> <span class="regular-line">Speaker: David Jensen, UNEP</span></td> </tr> <p><!-- NATURE FOR PROSPERITY --></p> <tr> <th colspan="2">NATURE FOR PROSPERITY</th> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Introduction to Nature for Prosperity</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Case Study</span><br /> <span class="regular-line">Cameroon Gender and Environment Watch</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Dialogue: Nature for Prosperity</span><br /> <span class="regular-line">Speakers: Susan Hu, World Economic Forum</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Performance</span><br /> <span class="regular-line">Artist: AY Young</span></td> </tr> </tbody> </table> </div> </div> <div class="fl-tabs-panel"> <div class="fl-tabs-label fl-tabs-panel-label" data-index="3" tabindex="0"> <span>Day 4</span> <i class="fas fa-plus"></i> </div> <div class="fl-tabs-panel-content fl-clearfix" id="fl-tabs-w5tg34nj27fa-panel-3" data-index="3" aria-hidden="true" aria-labelledby="fl-tabs-w5tg34nj27fa-label-3" role="tabpanel" aria-live="polite"> <style> body {<br /> font-family: 'Proxima Nova', sans-serif;<br /> font-size: 20px;<br /> }</p> <p> /* Specific class for this table to override global border styles */<br /> .custom-table {<br /> width: 100%;<br /> border-collapse: collapse;<br /> }</p> <p> .custom-table th, .custom-table td {<br /> padding: 10px;<br /> border-left: none !important;<br /> border-right: none !important;<br /> border-top: 1px solid black;<br /> border-bottom: 1px solid black;<br /> }</p> <p> /* Adding the green background for category rows */<br /> th {<br /> background-color: #00665B;<br /> color: white;<br /> text-align: left;<br /> }</p> <p> .time {<br /> width: 20%;<br /> font-weight: normal; /* Time column not bold */<br /> }</p> <p> .event {<br /> width: 80%;<br /> }</p> <p> /* Make first line bold and second line regular */<br /> .event .bold-line {<br /> font-weight: bold;<br /> }</p> <p> .event .regular-line {<br /> font-weight: normal;<br /> }<br /> </style> <p>&nbsp;</p> <table class="custom-table"> <tbody><!-- NATURE FOR FOOD --></p> <tr> <td class="time">9:00 am*</td> <td class="event"><span class="bold-line">Equator Prize Award Ceremony Opening</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Opening Performance</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Opening Statement</span><br /> <span class="regular-line">Speaker: Midori Paxton, Director of Nature Hub, Bureau for Policy and Programme Support, UNDP</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Thematic Category 1: Nature for Climate Mitigation</span><br /> <span class="regular-line">Speaker: H.E. Razan Khalifa Al Mubarak - UN Climate Change High Level Champion for COP28 and IUCN President</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Reserva Natural La Planada – Resguardo Indígena Awá Pialapí Pueblo Viejo (Colombia)</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Réserve Naturelle Communautaire de Dindéfélo (Senegal)</span></td> </tr> <p><!-- NATURE FOR WATER --></p> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">União dos Povos do Vale do Javari (Brazil)</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Music Intermission</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Thematic Category 2: Nature for a Just Transition</span><br /> <span class="regular-line">Speaker: Francisco Vera Manzanares, Human Rights Defender and Climate Activist</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Federación Mesa Nacional del Cafe - FEMNCAFÉ (Colombia)</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">CredorSave Loans (Zambia)</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Asociación de Productores del Pueblo Arhuaco de La Sierra Nevada de Santa Marta – ASOARHUACO (Colombia)</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Community Statement</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Music Intermission</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Thematic Category 3: Nature for Climate Adaptation and Resilience</span><br /> <span class="regular-line">Speaker: Ida Elizabeth Hellmark, Senior Adviser, Norwegian Agency for Development Cooperation (NORAD)</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Coletivo Ambientalista Indígena de Ação para Natureza, Agroecologia e Sustentabilidade – CAIANAS (Brazil)</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Moroccan Biodiversity and Livelihoods Association (Morocco)</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Indigenous Livelihoods Enhancement Partners - ILEPA (Kenya)</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Sundarbans Eco Village in Bangladesh (Bangladesh)</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Miras Parishan Kazeroon (Iran)</span></td> </tr> <tr> <td class="time">Time TBC</td> <td class="event"><span class="bold-line">Musical Performance</span><br /> <span class="regular-line">Artist: AY Young</span></td> </tr> </tbody> </table> </div> </div> </div> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-0t6f5bqsr81y" data-node="0t6f5bqsr81y"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <hr /> <p data-pm-slice="1 1 []"><span style="font-family: 'proxima nova'; font-size: 20px;">* All times listed in the agenda are in Eastern Time (ET)/New York.</span></p> </div> </div> </div> <div class="fl-col-group fl-node-o9qa3re6vk7t fl-col-group-nested" data-node="o9qa3re6vk7t"> <div class="fl-col fl-node-okyev3ml1xq6" data-node="okyev3ml1xq6"> <div class="fl-col-content fl-node-content"> </div> </div> </div> <div id="reimagine-our-future " class="fl-module fl-module-html fl-node-q2zgthb90wk6" data-node="q2zgthb90wk6"> <div class="fl-module-content fl-node-content"> <div class="fl-html"> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Schedule</title> <style> body th { font-family: 'Proxima Nova', sans-serif; font-size: 20px; } /* Specific class for this table to override global border styles */ .custom-table { width: 100%; border-collapse: collapse; } .custom-table th, .custom-table td { padding: 10px; border-left: none !important; border-right: none !important; border-top: 1px solid black; border-bottom: 1px solid black; } /* Adding the green background for category rows */ th { background-color: #00665B; color: white; text-align: left; } .time { width: 20%; font-weight: normal; /* Time column not bold */ } .event { width: 80%; } /* Make first line bold and second line regular */ .event .bold-line { font-weight: bold; } .event .regular-line { font-weight: normal; } </style> </head> </html> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="fl-row fl-row-full-width fl-row-bg-color fl-node-5gtizusa8od6" data-node="5gtizusa8od6"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-full-width fl-node-content"> <div class="fl-col-group fl-node-erigk2m9vsw7" data-node="erigk2m9vsw7"> <div class="fl-col fl-node-mwjty0aovhz4" data-node="mwjty0aovhz4"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-21opc5slzaed fl-visible-desktop-medium" data-node="21opc5slzaed"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="text-align: center;"><span style="font-size: 60px; font-family: proxima nova;">Partners and collaborators</span></p> </div> </div> </div> <div class="fl-module fl-module-rich-text fl-node-2hg0ex7tlao6 fl-visible-mobile" data-node="2hg0ex7tlao6"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="text-align: center;"><span style="font-size: 50px; font-family: proxima nova;">Partners and collaborators</span></p> </div> </div> </div> <div class="fl-module fl-module-uabb-image-carousel fl-node-b6yvs80i9afh carousel-height" data-node="b6yvs80i9afh"> <div class="fl-module-content fl-node-content"> <div class="uabb-module-content uabb-image-carousel uabb-img-col-6 "> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.undp.org/" target="_blank" rel="noopener" data-caption="Name of the country"> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-36-4.png" alt="" title="NFL LOGO 36-4"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://aadhimalai.in/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/aadhimalai_logo.png" alt="" title="aadhimalai_logo"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://anythingbutordinary.at/abo-blog/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/ABO-Logo-purple.png" alt="" title="ABO Logo purple"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.afdb.org/en" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-1.png" alt="" title="NFL LOGO 1"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.theamazonwewant.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/1-SPA-LOGO-ENG-MAIN-BCOLOR.png" alt="" title="1 SPA LOGO ENG-MAIN-BCOLOR"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://ayni-studios.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/AYNI-STUDIOS-LOGO.png" alt="" title="AYNI STUDIOS - LOGO"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="" target="_self" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/Round-logo-round-background-1.png" alt="" title="Round logo round background"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="" target="_self" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/BESNet.jpg" alt="" title="BESNet"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.biofin.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/cli_U-F4.png" alt="" title="cli_U-F4"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="http://www.birdlife.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-2.png" alt="" title="NFL LOGO 2"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.businessfornature.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-3.png" alt="" title="NFL LOGO 3"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.camgew.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/logo.png" alt="" title="logo"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.campaignfornature.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-4.png" alt="" title="NFL LOGO 4"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.carbontanzania.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/CT_Logo_2018.png" alt="" title="CT_Logo_2018"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.facebook.com/careashaninka/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/LOGO-CARE_2.png" alt="" title="LOGO CARE_2"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://climateadvisers.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-5.png" alt="" title="NFL LOGO 5"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.climateandlandusealliance.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-6.png" alt="" title="NFL LOGO 6"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.climateweeknyc.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-7-3.png" alt="" title="NFL LOGO 7-3"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.clubofrome.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-8.png" alt="" title="NFL LOGO 8"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://ecoadvance.eu/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-9.png" alt="" title="NFL LOGO 9"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.cbd.int/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-10.png" alt="" title="NFL LOGO 10"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="http://www.ddsindia.com/www/default.asp" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/l7niR3bM.png" alt="" title="l7niR3bM"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://earthtoneslab.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/thumbnail_image_123650291.jpg" alt="" title="thumbnail_image_123650291"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://earthx.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-11.png" alt="" title="NFL LOGO 11"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://ecoenterprisesfund.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/cisPU3Kb.png" alt="" title="cisPU3Kb"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://ecoadvance.eu/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/EcoAdvance-logo.jpg" alt="" title="EcoAdvance-logo"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.ecohealthalliance.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-12.png" alt="" title="NFL LOGO 12"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.edf.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-13.png" alt="" title="NFL LOGO 13"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="" target="_self" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/ESTAINIUM_association_Logo_pos_4color_rev2-01.png" alt="" title="ESTAINIUM_association_Logo_pos_4color_rev2-01"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.esteelauder.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/images.png" alt="" title="images"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://fairtrade-advocacy.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/CkGFOhix.png" alt="" title="CkGFOhix"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.bmz.de/en" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-14.png" alt="" title="NFL LOGO 14"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.bmu.de/en/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-15.png" alt="" title="NFL LOGO 15"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.learningfornature.org/en/finance-for-nature-series/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-16.png" alt="" title="NFL LOGO 16"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.financeforbiodiversity.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-17.png" alt="" title="NFL LOGO 17"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="http://www.fao.org/home/en/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-18.png" alt="" title="NFL LOGO 18"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.foodandlandusecoalition.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-19.png" alt="" title="NFL LOGO 19"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://fundacioncarlosslim.org/english/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/Logotipo-FCS-1.png" alt="" title="Logotipo FCS (1)"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.fordfoundation.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-20.png" alt="" title="NFL LOGO 20"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="http://www.huellasparaunfuturo.org/about-us/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/logo_huellas_alta.jpg" alt="" title="logo_huellas_alta"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://fund.ar/en/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/FU_LogoBajada_Negro.svg" alt="" title="FU_LogoBajada_Negro"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://globaia.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/0v2GN5p5.png" alt="" title="0v2GN5p5"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.globalethicalfinance.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-21.png" alt="" title="NFL LOGO 21"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.globalforestwatch.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/GFW_logo.jpg" alt="" title="GFW_logo"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://globescan.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/GlobeScan-Single-Lined-Logo-RGB.png" alt="" title="GlobeScan Single-Lined Logo RGB"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.glpfilms.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/v8p2IZBz.png" alt="" title="v8p2IZBz"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://goodearth.org.in/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/GoodEarth-Logo-Horizontal.png" alt="" title="GoodEarth Logo Horizontal"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://iclei-europe.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/ICLEI-europe-mainlogo-RGB1.png" alt="" title="ICLEI-europe-mainlogo-RGB(1)"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.icriforum.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-23.png" alt="" title="NFL LOGO 23"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://ifnotusthenwho.me/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-24.png" alt="" title="NFL LOGO 24"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.iitc.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/w5vu2y8k.png" alt="" title="w5vu2y8k"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.impactobservatory.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-25.png" alt="" title="NFL LOGO 25"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.ingafoundation.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/INGAfoundation.png" alt="" title="INGAfoundation"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.intracen.org/" target="_blank" rel="noopener" data-caption="ITC_logo_rgb"> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/ITC_logo_EN_RGB.jpg" alt="" title="ITC_logo_rgb"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://jumpstartnature.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/JUMPSTART-Nature24x9.png" alt="" title="JUMPSTART Nature24x9"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.kemitoene.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/image.png" alt="" title="image"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://kisstheground.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/ampbyCGa.png" alt="" title="ampbyCGa"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="" target="_self" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/Logo_10x10.jpg" alt="" title="Logo_10x10"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="http://listeningtotheearth.world/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-26.png" alt="" title="NFL LOGO 26"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.congovertgr.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/LOG_MAKLA-1.png" alt="" title="LOG_MAKLA (1)"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.mane.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/bNybURvu.jpeg" alt="" title="bNybURvu"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.mblaassociation.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/MBLA-Main-logo.png" alt="" title="MBLA- Main logo"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.mangrovealliance.org/mikoko-pamoja/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/logo_mikoko_Pamoja.jpg" alt="" title="logo_mikoko_Pamoja"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://mothrights.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/Screenshot-2024-09-05-at-5.06.48 PM.png" alt="" title="Screenshot 2024-09-05 at 5.06.48 PM"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.nationalgeographic.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-27.png" alt="" title="NFL LOGO 27"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://nature4climate.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-28.png" alt="" title="NFL LOGO 28"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.nature.org/en-us/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-29.png" alt="" title="NFL LOGO 29"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="" target="_self" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/NN-full-logo-colour-web-display.png" alt="" title="NN full logo colour web display"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="" target="_self" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-30.png" alt="" title="NFL LOGO 30"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.norad.no/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-31.png" alt="" title="NFL LOGO 31"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.oneearth.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/Se9v6WUz.png" alt="" title="Se9v6WUz"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://op2b.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-32.png" alt="" title="NFL LOGO 32"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.oecd.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-33.png" alt="" title="NFL LOGO 33"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://permianbrasil.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/Permian-Brasil-Verde-Escuro_Alta.png" alt="" title="Permian Brasil Verde Escuro_Alta"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://4post2020bd.net/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/P2020-EUEF-logos-rgb-transparent.png" alt="" title="P2020 + EU+EF logos rgb-transparent"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.proforest.net/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/PF_logo_blue.png" alt="" title="PF_logo_blue"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.purprojet.com/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/lKI2QyOP.jpeg" alt="" title="lKI2QyOP"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://rare.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/4729_Brand_USA-HQ_Rare_RGB_Digital_Use-2.png" alt="" title="4729_Brand_USA - HQ_Rare_RGB_Digital_Use (2)"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.recoftc.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/RECOFTC_RMFN.png" alt="" title="RECOFTC_RMFN"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="http://www.cprac.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/I33BbrhN.png" alt="" title="I33BbrhN"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.renature.co/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/TrpJ2D3U.png" alt="" title="TrpJ2D3U"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.resolve.ngo/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/logo_resolve_194u-158u___large.png" alt="" title="logo_resolve_194u-158u___large"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="" target="_self" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/REVOLVE-Logo.png" alt="" title="REVOLVE Logo"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://sarapesocial.com/en/home/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-35-2.png" alt="" title="NFL LOGO 35-2"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://sciencebasedtargetsnetwork.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/sbtn-logo-yellow-1.jpg" alt="" title="sbtn-logo-yellow (1)"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://seed.uno/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/iPRFK6ro.png" alt="" title="iPRFK6ro"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="" target="_self" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/n0UbZE3X-scaled.jpeg" alt="" title="n0UbZE3X"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.sida.se/en" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-34.png" alt="" title="NFL LOGO 34"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.theswitchers.eu/en/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/10/SwitchMed-logo.png" alt="" title="SwitchMed logo"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.treeaid.org/?srsltid=AfmBOoqwEoiCyWNxCPeD2d0aFEDiml5E30qRFQO3QlKV87tRHDMKVK07" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/RS54_Tree-Aid-logo-colour-©-2021-Tree-Aid.-All-rights-reserved-scr.jpg" alt="" title="RS54_Tree Aid logo - colour © 2021 Tree Aid. All rights reserved-scr"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.ethicalbiotrade.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/JBGW3lm9.png" alt="" title="JBGW3lm9"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://en.unesco.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-37.png" alt="" title="NFL LOGO 37"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.unep.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-38-2.png" alt="" title="NFL LOGO 38-2"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.unep-wcmc.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-39.png" alt="" title="NFL LOGO 39"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://unfoundation.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-40.png" alt="" title="NFL LOGO 40"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.unglobalcompact.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-41.png" alt="" title="NFL LOGO 41"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.unops.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/unops-logo-vector.png" alt="" title="unops-logo-vector"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.un-redd.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-42.png" alt="" title="NFL LOGO 42"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.whattookyousolong.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-43.png" alt="" title="NFL LOGO 43"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.wcs.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-44.png" alt="" title="NFL LOGO 44"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.worldbenchmarkingalliance.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/09/oPJm9ggO.png" alt="" title="oPJm9ggO"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.wbcsd.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-45.png" alt="" title="NFL LOGO 45"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.wild-win.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/03_Logo-entier_ecriture-noire_rectangle.png" alt="" title="03_Logo entier_écriture noire_rectangle"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.women4biodiversity.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/W4B_LongLogo_2024.png" alt="" title="W4B_LongLogo_2024"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.weforum.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-46.png" alt="" title="NFL LOGO 46"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.worldsurfleague.com/wsloneocean" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2024/09/WSL-OO-WSL-BLUE.png" alt="" title="WSL OO WSL BLUE"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.worldwildlife.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-47.png" alt="" title="NFL LOGO 47"/> </a> </div> </div> <div class="uabb-image-carousel-item uabb-image-carousel-link"> <div class="uabb-image-carousel-content"> <a href="https://www.youth4nature.org/" target="_blank" rel="noopener" data-caption=""> <img class="uabb-gallery-img" data-lazy="https://www.learningfornature.org/wp-content/uploads/2021/08/NFL-LOGO-48.png" alt="" title="NFL LOGO 48"/> </a> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="fl-row fl-row-full-width fl-row-bg-color fl-node-o6x1yv4luh9k" data-node="o6x1yv4luh9k"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-full-width fl-node-content"> <div class="fl-col-group fl-node-qugb2i5dw1f4" data-node="qugb2i5dw1f4"> <div class="fl-col fl-node-y5t37fjphnws" data-node="y5t37fjphnws"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-5j0bpys19ag4" data-node="5j0bpys19ag4"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="text-align: center;"><span style="font-size: 60px; font-family: proxima nova;">What people say </span></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-betuw5aimqjc" data-node="betuw5aimqjc"> <div class="fl-col fl-node-cdzq2rsm31ay fl-col-small" data-node="cdzq2rsm31ay"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-qpxfzcvla2s8" data-node="qpxfzcvla2s8"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img decoding="async" class="aligncenter circle-gradient" style="border-radius: 100%; margin-top: -25px; margin-bottom: 0px;" src="https://www.learningfornature.org/wp-content/uploads/2020/09/Rebecca_Moore_Headshot_HighRes.jpg" /></p> <p><span style="font-family: 'Proxima Nova'; font-size: 20px; line-height: 20px;">"At the Nature for Life Hub in 2020, we previewed, for the first time, new technology to create land cover maps using AI and deep learning. This novel AI-powered remote sensing technology, “Dynamic World,” was produced in close partnership with the World Resources Institute. The Nature for Life Hub, in bringing together a diverse set of stakeholders working together to take ambitious actions to protect, manage and restore nature, are exactly whom we hoped to mobilize with this innovative dataset, which has since been cited hundreds of times in journal papers. Conserving nature and protecting biodiversity are going to need all of us working together and deploying state of the art technologies, and there’s no time to waste."</span></p> <p><span style="font-size: 20px;"><b><span style="font-family: 'Proxima Nova'; line-height: 27px;">Rebecca Moore<br /> </span></b></span><span style="font-size: 20px;"><span style="font-family: 'Proxima Nova'; line-height: 27px;">Director, Google Earth and Earth Engine</span></span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-2thpjw4l3b9k fl-col-small" data-node="2thpjw4l3b9k"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-umso0yw5tlei" data-node="umso0yw5tlei"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img decoding="async" class="aligncenter circle-gradient" style="border-radius: 100%; margin-top: -25px; margin-bottom: 0px;" src="https://www.learningfornature.org/wp-content/uploads/2020/09/image001.jpg" /></p> <p><span style="font-family: 'Proxima Nova'; font-size: 20px; line-height: 20px;">"WWF has been an active partner engaging with the Nature for Life Hub for the past years. The Nature for Life Hub is one of the platforms that have contributed to elevating nature agenda to the highest level and widest outreach. At the times that humanity faces triple planetary crises: climate change, pollution and biodiversity loss, collective efforts from all sectors, all actors, and all walks of society are needed. The Nature for Life Hub plays a critical role in building convergencies and bridging gaps in our collective efforts to address nature loss while seeking sustainable development."</span></p> <p><span style="font-size: 20px;"><b><span style="font-family: 'Proxima Nova'; line-height: 27px;">Dr. Lin Li<br /> </span></b></span><span style="font-size: 20px;"><span style="font-family: 'Proxima Nova'; line-height: 27px;">Senior Director, Global Policy and Advocacy, World Wildlife Fund</span></span></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-8uj1y5piw4gk fl-col-small" data-node="8uj1y5piw4gk"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-eqxi2aulk4t7" data-node="eqxi2aulk4t7"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><img loading="lazy" decoding="async" class="aligncenter circle-gradient" style="border-radius: 100%; margin-top: -25px; margin-bottom: 0px;" src="https://www.learningfornature.org/wp-content/uploads/2022/08/Gabriel-Jaramillo.jpg" width="149" height="149" /></p> <p><span style="font-family: 'Proxima Nova'; font-size: 20px; line-height: 20px;">"The 2022 Nature for Life Hub was eye-opening! It helped me understand better how our usual ways of growing the economy aren't good for nature. The sessions pushed us to measure success differently, respecting our planet's limits while ensuring everyone's well-being."</span></p> <p><span style="font-size: 20px;"><b><span style="font-family: 'Proxima Nova'; line-height: 27px;">Gabriel Jaramillo<br /> </span></b></span><span style="font-size: 20px;"><span style="font-family: 'Proxima Nova'; line-height: 27px;">Regional Technical Specialist for Ecosystems and Biodiversity, UNDP</span></span></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-5vds8ni9lh2u" data-node="5vds8ni9lh2u"> <div class="fl-col fl-node-ygn854ahuo6d" data-node="ygn854ahuo6d"> <div class="fl-col-content fl-node-content"> </div> </div> </div> <div class="fl-col-group fl-node-82q3c16znmk5" data-node="82q3c16znmk5"> </div> <div class="fl-col-group fl-node-ky4mtsb2pufd" data-node="ky4mtsb2pufd"> <div class="fl-col fl-node-2ks4l1q5vz39" data-node="2ks4l1q5vz39"> <div class="fl-col-content fl-node-content"> </div> </div> </div> </div> </div> </div> </div><div class="uabb-js-breakpoint" style="display: none;"></div> </div><!-- .entry-content --> </article> </main><!-- #main --> </div><!-- #primary --> </div><!-- .bb-grid --> </div><!-- .container --> </div><!-- #content --> <footer class="fl-builder-content fl-builder-content-91404 fl-builder-global-templates-locked" data-post-id="91404" data-type="footer" itemscope="itemscope" itemtype="http://schema.org/WPFooter"><div id="footer" class="fl-row fl-row-full-width fl-row-bg-color fl-node-608f6b8d730ac" data-node="608f6b8d730ac"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-full-width fl-node-content"> <div class="fl-col-group fl-node-608f729a3fe03" data-node="608f729a3fe03"> <div class="fl-col fl-node-608f729a3fecf" data-node="608f729a3fecf"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-608f834b26199" data-node="608f834b26199"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><a href="https://www.learningfornature.org/"><img decoding="async" style="max-width: 250px;" src="https://www.learningfornature.org/wp-content/uploads/2019/08/LfN_UNDP_combined_white.png" /></a></p> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-608f743e565c8" data-node="608f743e565c8"> <div class="fl-col fl-node-608f743e56686" data-node="608f743e56686"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-icon-group fl-node-608f70e077389" data-node="608f70e077389"> <div class="fl-module-content fl-node-content"> <div class="fl-icon-group"> <span class="fl-icon"> <a href="https://www.facebook.com/LearningforNature/" target="_blank" rel="noopener" > <i class="ua-icon ua-icon-facebook2" aria-hidden="true"></i> </a> </span> <span class="fl-icon"> <a href="https://www.instagram.com/learningfornature/?utm_source=ig_web_button_share_sheet&igshid=ZDNlZDc0MzIxNw==" target="_blank" rel="noopener" > <i class="fab fa-instagram-square" aria-hidden="true"></i> </a> </span> <span class="fl-icon"> <a href="https://www.youtube.com/channel/UCaR4sZUyd8CClClaQC-fQKA/featured?disable_polymer=1" target="_blank" rel="noopener" > <i class="fab fa-youtube-square" aria-hidden="true"></i> </a> </span> </div> </div> </div> </div> </div> </div> <div class="fl-col-group fl-node-608f74c699973" data-node="608f74c699973"> <div class="fl-col fl-node-608f74c699a2f fl-col-small" data-node="608f74c699a2f"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-608f734b1823c" data-node="608f734b1823c"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p style="text-align: left; font-style: normal; font-weight: 400; margin: 0px;">Copyright © 2025 - Learning for Nature</p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-608f74c699a32" data-node="608f74c699a32"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-608f74e0b62ce" data-node="608f74e0b62ce"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><a style="margin-right: 35px; font-weight: 400;" href="https://www.learningfornature.org/privacy-policy/" target="_blank" rel="noopener">Privacy policy</a> <a style="margin-right: 35px; font-weight: 400;" href="https://www.learningfornature.org/terms-and-conditions" target="_blank" rel="noopener">Terms and conditions</a> <a style="font-weight: 400;" href="mailto:info@learningfornature.org" target="_blank" rel="noopener">info@learningfornature.org</a></p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </footer><div class="uabb-js-breakpoint" style="display: none;"></div> </div><!-- #page --> <template id="tp-language" data-tp-language="en_US"></template><script id="ckyBannerTemplate" type="text/template"><div class="cky-overlay cky-hide"></div><div class="cky-consent-container cky-hide" tabindex="0"> <div class="cky-consent-bar" data-cky-tag="notice" style="background-color:#FFFFFF;border-color:#f4f4f4;color:#212121"> <div class="cky-notice"> <p class="cky-title" role="heading" aria-level="1" data-cky-tag="title" style="color:#212121">We value your privacy</p><div class="cky-notice-group"> <div class="cky-notice-des" data-cky-tag="description" style="color:#212121"> <p>We use cookies to enhance your browsing experience, serve personalized ads or content, and analyze our traffic. By clicking "Accept All", you consent to our use of cookies.</p> </div><div class="cky-notice-btn-wrapper" data-cky-tag="notice-buttons"> <button class="cky-btn cky-btn-customize" aria-label="Customize" data-cky-tag="settings-button" style="color:#1863dc;background-color:transparent;border-color:#1863dc">Customize</button> <button class="cky-btn cky-btn-reject" aria-label="Reject All" data-cky-tag="reject-button" style="color:#1863dc;background-color:transparent;border-color:#1863dc">Reject All</button> <button class="cky-btn cky-btn-accept" aria-label="Accept All" data-cky-tag="accept-button" style="color:#FFFFFF;background-color:#1863dc;border-color:#1863dc">Accept All</button> </div></div></div></div></div><div class="cky-modal" tabindex="0"> <div class="cky-preference-center" data-cky-tag="detail" style="color:#212121;background-color:#FFFFFF;border-color:#F4F4F4"> <div class="cky-preference-header"> <span class="cky-preference-title" role="heading" aria-level="1" data-cky-tag="detail-title" style="color:#212121">Customize Consent Preferences</span> <button class="cky-btn-close" aria-label="[cky_preference_close_label]" data-cky-tag="detail-close"> <img src="https://www.learningfornature.org/wp-content/plugins/cookie-law-info/lite/frontend/images/close.svg" alt="Close"> </button> </div><div class="cky-preference-body-wrapper"> <div class="cky-preference-content-wrapper" data-cky-tag="detail-description" style="color:#212121"> <p>We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.</p><p>The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. </p><p>We also use third-party cookies that help us analyze how you use this website, store your preferences, and provide the content and advertisements that are relevant to you. These cookies will only be stored in your browser with your prior consent.</p><p>You can choose to enable or disable some or all of these cookies but disabling some of them may affect your browsing experience.</p> </div><div class="cky-accordion-wrapper" data-cky-tag="detail-categories"> <div class="cky-accordion" id="ckyDetailCategorynecessary"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Necessary" data-cky-tag="detail-category-title" style="color:#212121">Necessary</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchnecessary"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#212121"> <p>Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#212121;background-color:#f4f4f4;border-color:#ebebeb"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div><div class="cky-accordion" id="ckyDetailCategoryfunctional"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Functional" data-cky-tag="detail-category-title" style="color:#212121">Functional</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchfunctional"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#212121"> <p>Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#212121;background-color:#f4f4f4;border-color:#ebebeb"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div><div class="cky-accordion" id="ckyDetailCategoryanalytics"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Analytics" data-cky-tag="detail-category-title" style="color:#212121">Analytics</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchanalytics"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#212121"> <p>Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#212121;background-color:#f4f4f4;border-color:#ebebeb"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div><div class="cky-accordion" id="ckyDetailCategoryperformance"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Performance" data-cky-tag="detail-category-title" style="color:#212121">Performance</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchperformance"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#212121"> <p>Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#212121;background-color:#f4f4f4;border-color:#ebebeb"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div><div class="cky-accordion" id="ckyDetailCategoryadvertisement"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Advertisement" data-cky-tag="detail-category-title" style="color:#212121">Advertisement</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchadvertisement"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#212121"> <p>Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#212121;background-color:#f4f4f4;border-color:#ebebeb"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div> </div></div><div class="cky-footer-wrapper"> <span class="cky-footer-shadow"></span> <div class="cky-prefrence-btn-wrapper" data-cky-tag="detail-buttons"> <button class="cky-btn cky-btn-reject" aria-label="Reject All" data-cky-tag="detail-reject-button" style="color:#1863dc;background-color:transparent;border-color:#1863dc"> Reject All </button> <button class="cky-btn cky-btn-preferences" aria-label="Save My Preferences" data-cky-tag="detail-save-button" style="color:#1863dc;background-color:transparent;border-color:#1863dc"> Save My Preferences </button> <button class="cky-btn cky-btn-accept" aria-label="Accept All" data-cky-tag="detail-accept-button" style="color:#ffffff;background-color:#1863dc;border-color:#1863dc"> Accept All </button> </div></div></div></div></script> <div id="content-report" class="content-report-popup moderation-popup mfp-hide"> <div class="modal-mask bb-white bbm-model-wrap bbm-uploader-model-wrap"> <div class="modal-wrapper"> <div class="modal-container"> <header class="bb-model-header"> <h4>Report <span class="bp-reported-type"></span></h4> <button title="Close (Esc)" type="button" class="mfp-close"> <span class="bb-icon-l bb-icon-times"></span> </button> </header> <div class="bp-feedback bp-feedback-v2 error" id="notes-error" style="display: none;"> <span class="bp-icon" aria-hidden="true"></span> <p>There was a problem reporting this post.</p> </div> <div class="bb-report-type-wrp"> <form id="bb-report-content" action="javascript:void(0);"> <div class="form-item form-item-category content"> <label for="report-category-250"> <input type="radio" id="report-category-250" name="report_category" value="250" checked> <span>Harassment</span> </label> <span>Harassment or bullying behavior</span> </div> <div class="form-item form-item-category content"> <label for="report-category-247"> <input type="radio" id="report-category-247" name="report_category" value="247" > <span>Inappropriate</span> </label> <span>Contains mature or sensitive content</span> </div> <div class="form-item form-item-category content"> <label for="report-category-248"> <input type="radio" id="report-category-248" name="report_category" value="248" > <span>Misinformation</span> </label> <span>Contains misleading or false information</span> </div> <div class="form-item form-item-category content"> <label for="report-category-246"> <input type="radio" id="report-category-246" name="report_category" value="246" > <span>Offensive</span> </label> <span>Contains abusive or derogatory content</span> </div> <div class="form-item form-item-category content"> <label for="report-category-249"> <input type="radio" id="report-category-249" name="report_category" value="249" > <span>Suspicious</span> </label> <span>Contains spam, fake content or potential malware</span> </div> <div class="form-item"> <label for="report-category-other"> <input type="radio" id="report-category-other" name="report_category" value="other"> <span>Other</span> </label> </div> <div class="form-item bp-hide"> <label for="report-note"> <span class="screen-reader-text">Report note</span> <textarea id="report-note" placeholder="Enter your reason for reporting..." name="note" class="bp-other-report-cat"></textarea> </label> </div> <footer class="bb-model-footer"> <input type="button" class="bb-cancel-report-content button" value="Cancel"/> <button type="submit" class="report-submit button">Report</button> <input type="hidden" name="content_id" class="bp-content-id"/> <input type="hidden" name="content_type" class="bp-content-type"/> <input type="hidden" name="_wpnonce" class="bp-nonce"/> </footer> </form> <div class="bp-report-form-err"></div> </div> </div> </div> </div> </div> <div id="block-member" class="block-member-popup moderation-popup mfp-hide"> <div class="modal-mask bb-white bbm-model-wrap bbm-uploader-model-wrap"> <div class="modal-wrapper"> <div class="modal-container"> <header class="bb-model-header"> <h4>Block Member?</h4> <button title="Close (Esc)" type="button" class="mfp-close"> <span class="bb-icon-l bb-icon-times"></span> </button> </header> <div class="bb-report-type-wrp"> <p> Please confirm you want to block this member. </p> <p> You will no longer be able to: </p> <ul> <li> See blocked member&#039;s posts </li> <li> Mention this member in posts </li> <li> Invite this member to groups </li> <li> Message this member </li> <li> Add this member as a connection </li> </ul> <p> <strong>Please note: </strong> This action will also remove this member from your connections and send a report to the site admin. Please allow a few minutes for this process to complete. </p> <form id="bb-block-member" action="javascript:void(0);"> <footer class="bb-model-footer"> <input type="button" class="bb-cancel-report-content button" value="Cancel"/> <button type="submit" class="report-submit button">Confirm</button> <input type="hidden" name="content_id" class="bp-content-id"/> <input type="hidden" name="content_type" class="bp-content-type"/> <input type="hidden" name="_wpnonce" class="bp-nonce"/> </footer> </form> <div class="bp-report-form-err"></div> </div> </div> </div> </div> </div> <div id="reported-content" class="content-report-popup moderation-popup mfp-hide"> <div class="modal-mask bb-white bbm-model-wrap bbm-uploader-model-wrap"> <div class="modal-wrapper"> <div class="modal-container"> <header class="bb-model-header"> <h4> Report <span class="bp-reported-type"></span> </h4> <button title="Close (Esc)" type="button" class="mfp-close"> <span class="bb-icon-l bb-icon-times"></span> </button> </header> <div class="bb-report-type-wrp"> You have already reported this <span class="bp-reported-type"></span>. </div> </div> </div> </div> </div> <script> jQuery(document).ready(function($) { $('a').each(function() { var a = new RegExp('/' + window.location.host + '/'); if (!a.test(this.href) && !$(this).attr('href').toString().includes("javascript")) { $(this).attr('target', '_blank'); } }); }); </script> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/scroll_magic/assets/libs/TweenMax/gsap.min.js?ver=3.0.1" id="gsap-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/scroll_magic/assets/libs/TweenMax/SplitText3.min.js?ver=3.0.1" id="SplitText3-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/scroll_magic/assets/libs/TweenMax/ScrollToPlugin.min.js?ver=4.2.5" id="ScrollToPlugin-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/MotionPathPlugin.min.js?ver=3.0.1" id="MotionPathPlugin-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/scroll_magic/assets/libs/scrollmagic/ScrollMagic.min.js?ver=2.0.6" id="ScrollMagic-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/scroll_magic/assets/libs/scrollmagic/plugins/animation.gsap.min.js?ver=2.0.7" id="animation-gsap-js"></script> <script type="text/javascript" id="bb-scrollmagic-js-extra"> /* <![CDATA[ */ var BB_DEVICE = ["desktop"]; var BB_ALLOW_CLASS_NAME = ["true"]; var BB_SCENES = {"block-change-color-4":{"settings":{"shortcode":{"text":{"name":"text","icon":"scrollyicon-font_download","content":"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.","URL":"","target":"_blank","fontSize":"14px","fontFamily":"","cstFontFamily":"","fontWeight":"400","fontStyle":"normal","textAlign":"left","textTransform":"none","letterSpacing":"","lineHeight":"","textDecoration":"none","classCSS":""},"img":{"name":"image","icon":"scrollyicon-photo_size_select_actual","image":"https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/img.png","URL":"","target":"_blank","alt":"","classCSS":""},"button":{"name":"button","icon":"scrollyicon-radio_button_checked","title":"Click Here","iconButton":"","URL":"","target":"_blank","iconFontSize":"24px","fontSize":"14px","fontFamily":"","cstFontFamily":"","fontWeight":"400","fontStyle":"normal","textTransform":"none","letterSpacing":"","lineHeight":"","textDecoration":"none","classCSS":""},"sequence":{"name":"sequence","icon":"scrollyicon-burst_mode","images":["https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/sequense-image.png"],"URL":"","target":"_blank","alt":"","classCSS":""},"video":{"name":"video","icon":"scrollyicon-video_collection","video":"","poster":"https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/video.png","autoPlay":"off","controls":"on","loop":"off","muted":"off","preload":"off","classCSS":""},"audio":{"name":"audio","icon":"scrollyicon-audiotrack","audio":"","autoPlay":"off","controls":"on","loop":"off","muted":"off","preload":"off","classCSS":""},"svg":{"name":"svg","icon":"scrollyicon-extension","svg":"https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/svg.svg","classCSS":""},"shape":{"name":"shape","icon":"scrollyicon-crop_din","classCSS":""}},"shortcodeSelected":"text","general":{"name":"block-change-color-4","duration":"300","offset":"","pin":"off","pushFollowers":"true","triggerHook":"0.61","vertical":"on","reverse":"true","triggerElement":""},"ease":{"delay":"","duration":"0.5","ease":""},"class":{"classToggleEnable":"off","classCSS":"fadeInUp","customClassCSS":""},"scene_id":"92163"},"init":{"backgroundColor":"#031724","color":"#ffffff"},"tween":{"y":"-100","backgroundColor":"#ffffff","color":"#232e3e","opacity":"1"},"misc":{"drawSVG":"on","unableFill":"false","stroke":"","strokeWidth":"","imageSequence":"on","textDance":"false","textDanceStyle":"wave_from","textDanceSpeed":"0.01","scrollToPlay":"off","timeLapse":"off","imageSequenceRepeat":"","selector":"","container":"","disableMobile":"off","disableDesktop":"off","clickTo":""},"bezier":[]},"block-change-color-3":{"settings":{"shortcode":{"text":{"name":"text","icon":"scrollyicon-font_download","content":"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.","URL":"","target":"_blank","fontSize":"14px","fontFamily":"","cstFontFamily":"","fontWeight":"400","fontStyle":"normal","textAlign":"left","textTransform":"none","letterSpacing":"","lineHeight":"","textDecoration":"none","classCSS":""},"img":{"name":"image","icon":"scrollyicon-photo_size_select_actual","image":"https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/img.png","URL":"","target":"_blank","alt":"","classCSS":""},"button":{"name":"button","icon":"scrollyicon-radio_button_checked","title":"Click Here","iconButton":"","URL":"","target":"_blank","iconFontSize":"24px","fontSize":"14px","fontFamily":"","cstFontFamily":"","fontWeight":"400","fontStyle":"normal","textTransform":"none","letterSpacing":"","lineHeight":"","textDecoration":"none","classCSS":""},"sequence":{"name":"sequence","icon":"scrollyicon-burst_mode","images":["https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/sequense-image.png"],"URL":"","target":"_blank","alt":"","classCSS":""},"video":{"name":"video","icon":"scrollyicon-video_collection","video":"","poster":"https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/video.png","autoPlay":"off","controls":"on","loop":"off","muted":"off","preload":"off","classCSS":""},"audio":{"name":"audio","icon":"scrollyicon-audiotrack","audio":"","autoPlay":"off","controls":"on","loop":"off","muted":"off","preload":"off","classCSS":""},"svg":{"name":"svg","icon":"scrollyicon-extension","svg":"https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/svg.svg","classCSS":""},"shape":{"name":"shape","icon":"scrollyicon-crop_din","classCSS":""}},"shortcodeSelected":"text","general":{"name":"block-change-color-3","duration":"300","offset":"200","pin":"off","pushFollowers":"true","triggerHook":"0","vertical":"on","reverse":"true","triggerElement":""},"ease":{"delay":"","duration":"0.5","ease":""},"class":{"classToggleEnable":"off","classCSS":"fadeInUp","customClassCSS":""},"scene_id":"92157"},"init":{"backgroundColor":"#232e3e","color":"#ffffff"},"tween":{"backgroundColor":"#ffffff","color":"#232e3e"},"misc":{"drawSVG":"on","unableFill":"false","stroke":"","strokeWidth":"","imageSequence":"on","textDance":"false","textDanceStyle":"wave_from","textDanceSpeed":"0.01","scrollToPlay":"off","timeLapse":"off","imageSequenceRepeat":"","selector":"","container":"","disableMobile":"off","disableDesktop":"off","clickTo":""},"bezier":[]},"block-change-color-2":{"settings":{"shortcode":{"text":{"name":"text","icon":"scrollyicon-font_download","content":"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.","URL":"","target":"_blank","fontSize":"14px","fontFamily":"","cstFontFamily":"","fontWeight":"400","fontStyle":"normal","textAlign":"left","textTransform":"none","letterSpacing":"","lineHeight":"","textDecoration":"none","classCSS":""},"img":{"name":"image","icon":"scrollyicon-photo_size_select_actual","image":"https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/img.png","URL":"","target":"_blank","alt":"","classCSS":""},"button":{"name":"button","icon":"scrollyicon-radio_button_checked","title":"Click Here","iconButton":"","URL":"","target":"_blank","iconFontSize":"24px","fontSize":"14px","fontFamily":"","cstFontFamily":"","fontWeight":"400","fontStyle":"normal","textTransform":"none","letterSpacing":"","lineHeight":"","textDecoration":"none","classCSS":""},"sequence":{"name":"sequence","icon":"scrollyicon-burst_mode","images":["https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/sequense-image.png"],"URL":"","target":"_blank","alt":"","classCSS":""},"video":{"name":"video","icon":"scrollyicon-video_collection","video":"","poster":"https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/video.png","autoPlay":"off","controls":"on","loop":"off","muted":"off","preload":"off","classCSS":""},"audio":{"name":"audio","icon":"scrollyicon-audiotrack","audio":"","autoPlay":"off","controls":"on","loop":"off","muted":"off","preload":"off","classCSS":""},"svg":{"name":"svg","icon":"scrollyicon-extension","svg":"https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/svg.svg","classCSS":""},"shape":{"name":"shape","icon":"scrollyicon-crop_din","classCSS":""}},"shortcodeSelected":"text","general":{"name":"block-change-color-2","duration":"300","offset":"","pin":"off","pushFollowers":"true","triggerHook":"0.52","vertical":"on","reverse":"true","triggerElement":""},"ease":{"delay":"","duration":"0.5","ease":""},"class":{"classToggleEnable":"off","classCSS":"fadeInUp","customClassCSS":""},"scene_id":"82216"},"init":{"backgroundColor":"#232e3e","color":"#ffffff"},"tween":{"backgroundColor":"#ffffff","color":"#232e3e"},"misc":{"drawSVG":"on","unableFill":"false","stroke":"","strokeWidth":"","imageSequence":"on","textDance":"false","textDanceStyle":"wave_from","textDanceSpeed":"0.01","scrollToPlay":"off","timeLapse":"off","imageSequenceRepeat":"","selector":"","container":"","disableMobile":"off","disableDesktop":"off","clickTo":""},"bezier":[]},"image-scroll-stuck":{"settings":{"shortcode":{"text":{"name":"text","icon":"scrollyicon-font_download","content":"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.","URL":"","target":"_blank","fontSize":"14px","fontFamily":"","cstFontFamily":"","fontWeight":"400","fontStyle":"normal","textAlign":"left","textTransform":"none","letterSpacing":"","lineHeight":"","textDecoration":"none","classCSS":""},"img":{"name":"image","icon":"scrollyicon-photo_size_select_actual","image":"https:\/\/www.learningfornature.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/img.png","URL":"","target":"_blank","alt":"","classCSS":""},"button":{"name":"button","icon":"scrollyicon-radio_button_checked","title":"Click Here","iconButton":"","URL":"","target":"_blank","iconFontSize":"24px","fontSize":"14px","fontFamily":"","cstFontFamily":"","fontWeight":"400","fontStyle":"normal","textTransform":"none","letterSpacing":"","lineHeight":"","textDecoration":"none","classCSS":""},"sequence":{"name":"sequence","icon":"scrollyicon-burst_mode","images":["https:\/\/www.learningfornature.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/sequense-image.png"],"URL":"","target":"_blank","alt":"","classCSS":""},"video":{"name":"video","icon":"scrollyicon-video_collection","video":"","poster":"https:\/\/www.learningfornature.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/video.png","autoPlay":"off","controls":"on","loop":"off","muted":"off","preload":"off","classCSS":""},"audio":{"name":"audio","icon":"scrollyicon-audiotrack","audio":"","autoPlay":"off","controls":"on","loop":"off","muted":"off","preload":"off","classCSS":""},"svg":{"name":"svg","icon":"scrollyicon-extension","svg":"https:\/\/www.learningfornature.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/svg.svg","classCSS":""},"shape":{"name":"shape","icon":"scrollyicon-crop_din","classCSS":""}},"shortcodeSelected":"img","general":{"name":"image-scroll-stuck","duration":"400","offset":"","pin":"on","pushFollowers":"false","triggerHook":"0.23","vertical":"on","reverse":"true","triggerElement":""},"ease":{"delay":"","duration":"0.5","ease":""},"class":{"classToggleEnable":"off","classCSS":"bounce","customClassCSS":""},"scene_id":"58346"},"init":[],"tween":[],"misc":{"drawSVG":"off","unableFill":"false","stroke":"","strokeWidth":"","imageSequence":"off","textDance":"false","textDanceStyle":"wave_from","textDanceSpeed":"0.01","scrollToPlay":"off","timeLapse":"off","imageSequenceRepeat":"","selector":"","container":"","disableMobile":"off","disableDesktop":"off","clickTo":""},"bezier":[]},"block-change-color":{"settings":{"shortcode":{"text":{"name":"text","icon":"scrollyicon-font_download","content":"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.","URL":"","target":"_blank","fontSize":"14px","fontFamily":"","cstFontFamily":"","fontWeight":"400","fontStyle":"normal","textAlign":"left","textTransform":"none","letterSpacing":"","lineHeight":"","textDecoration":"none","classCSS":""},"img":{"name":"image","icon":"scrollyicon-photo_size_select_actual","image":"https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/img.png","URL":"","target":"_blank","alt":"","classCSS":""},"button":{"name":"button","icon":"scrollyicon-radio_button_checked","title":"Click Here","iconButton":"","URL":"","target":"_blank","iconFontSize":"24px","fontSize":"14px","fontFamily":"","cstFontFamily":"","fontWeight":"400","fontStyle":"normal","textTransform":"none","letterSpacing":"","lineHeight":"","textDecoration":"none","classCSS":""},"sequence":{"name":"sequence","icon":"scrollyicon-burst_mode","images":["https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/sequense-image.png"],"URL":"","target":"_blank","alt":"","classCSS":""},"video":{"name":"video","icon":"scrollyicon-video_collection","video":"","poster":"https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/video.png","autoPlay":"off","controls":"on","loop":"off","muted":"off","preload":"off","classCSS":""},"audio":{"name":"audio","icon":"scrollyicon-audiotrack","audio":"","autoPlay":"off","controls":"on","loop":"off","muted":"off","preload":"off","classCSS":""},"svg":{"name":"svg","icon":"scrollyicon-extension","svg":"https:\/\/www.new.unbiodiversitylab.org\/wp-content\/plugins\/scroll_magic\/assets\/images\/svg.svg","classCSS":""},"shape":{"name":"shape","icon":"scrollyicon-crop_din","classCSS":""}},"shortcodeSelected":"text","general":{"name":"block-change-color","duration":"300","offset":"","pin":"off","pushFollowers":"true","triggerHook":"0.52","vertical":"on","reverse":"true","triggerElement":""},"ease":{"delay":"","duration":"0.5","ease":""},"class":{"classToggleEnable":"off","classCSS":"fadeInUp","customClassCSS":""},"scene_id":"58328"},"init":{"backgroundColor":"#ffffff","color":"#232e3e"},"tween":{"backgroundColor":"#232e3e","color":"#ffffff"},"misc":{"drawSVG":"on","unableFill":"false","stroke":"","strokeWidth":"","imageSequence":"on","textDance":"false","textDanceStyle":"wave_from","textDanceSpeed":"0.01","scrollToPlay":"off","timeLapse":"off","imageSequenceRepeat":"","selector":"","container":"","disableMobile":"off","disableDesktop":"off","clickTo":""},"bezier":[]}}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bb-scrollmagic.min.js?ver=4.2.5" id="bb-scrollmagic-js"></script> <script defer type="text/javascript" async="async" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/fbtw-widgets.min.js?ver=6.4.3" id="fbtw-widgets-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/bb-plugin/js/jquery.waypoints.min.js?ver=2.5.5.5" id="jquery-waypoints-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/bb-plugin/js/jquery.fitvids.min.js?ver=1.2" id="jquery-fitvids-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/uabbpopup-cookies.min.js?ver=6.4.3" id="uabbpopup-cookies-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/jquery-magnificpopup.min.js?ver=2.5.5.5" id="jquery-magnificpopup-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/carousel.min.js?ver=6.4.3" id="carousel-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/bb-ultimate-addon/assets/js/global-scripts/imagesloaded.min.js?ver=6.4.3" id="imagesloaded-uabb-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/fl-builder-layout-120253.min.js?ver=daebfa4f1812364a8f65666c6e5fef0d" id="fl-builder-layout-120253-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/isInViewport.min.js?ver=2.5.60" id="isInViewport-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/dist/vendor/moment.js?ver=2.29.4" id="moment-js"></script> <script defer type="text/javascript" id="moment-js-after"> /* <![CDATA[ */ moment.updateLocale( 'en_US', {"months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"week":{"dow":1},"longDateFormat":{"LT":"g:i a","LTS":null,"L":null,"LL":"F j, Y","LLL":"F j, Y g:i a","LLLL":null}} ); moment.updateLocale( 'en_US', {"relativeTime":{"future":"in %s","past":"%s ago","s":"second","ss":"%d seconds","m":"a minute","mm":"%d minutes","h":"an hour","hh":"%d hours","d":"a day","dd":"%d days","w":"a week","ww":"%d weeks","M":"a month","MM":"%d months","y":"a year","yy":"%d years"}} ); /* ]]> */ </script> <script type="text/javascript" id="bp-livestamp-js-extra"> /* <![CDATA[ */ var bb_livestamp = {"year_in_seconds":"31536000","day_in_seconds":"86400","week_in_seconds":"604800","hour_in_seconds":"3600","minute_in_seconds":"60","chunks":[31536000,5256000,2592000,604800,86400,3600,60,1],"unknown_text":"sometime","right_now_text":"a second","ago_text":"%s ago","second_text":"a second","seconds_text":"seconds","minute_text":"a minute","minutes_text":"minutes","hour_text":"an hour","hours_text":"hours","day_text":"a day","days_text":"days","week_text":"a week","weeks_text":"weeks","month_text":"a month","months_text":"months","year_text":"a year","years_text":"years"}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-livestamp.min.js?ver=2.5.60" id="bp-livestamp-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/underscore.min.js?ver=1.13.4" id="underscore-js"></script> <script type="text/javascript" id="wp-util-js-extra"> /* <![CDATA[ */ var _wpUtilSettings = {"ajax":{"url":"\/wp-admin\/admin-ajax.php"}}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/wp-util.js?ver=6.4.3" id="wp-util-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/dist/vendor/wp-polyfill-inert.js?ver=3.1.2" id="wp-polyfill-inert-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/dist/vendor/regenerator-runtime.js?ver=0.14.0" id="regenerator-runtime-js"></script> <script type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/dist/vendor/wp-polyfill.js?ver=3.15.0" id="wp-polyfill-js"></script> <script type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/dist/hooks.js?ver=c2825736a5a04b1ba4df" id="wp-hooks-js"></script> <script type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/dist/i18n.js?ver=bbbb3a5d0e355b0e5159" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" id="bp-nouveau-js-extra"> /* <![CDATA[ */ var BP_Nouveau = {"ajaxurl":"https:\/\/www.learningfornature.org\/wp-admin\/admin-ajax.php","only_admin_notice":"As you are the only organizer of this group, you cannot leave it. You can either delete the group or promote another member to be an organizer first and then leave the group.","is_friend_confirm":"Are you sure you want to remove your connection with this member?","confirm":"Are you sure?","confirm_delete_set":"Are you sure you want to delete this set? This cannot be undone.","show_x_comments":"View previous comments","unsaved_changes":"Your profile has unsaved changes. If you leave the page, the changes will be lost.","object_nav_parent":"#buddypress","anchorPlaceholderText":"Paste or type a link","empty_field":"New Field","close":"Close","parent_group_leave_confirm":"By leaving this main group you will automatically be removed and unsubscribed to any subgroups relating to this group.","group_leave_confirm":"<p>Are you sure you want to leave <span class=\"bb-group-name\"><\/span>?<\/p>","objects":["activity","members","groups","xprofile","friends","media","document","video","messages","settings","notifications","search","moderation","group_members","group_requests","group_subgroups"],"nonces":{"activity":"4619f27545","members":"7e8b56c8e5","groups":"9df66718c4","xprofile":"37c8f34430","friends":"772731337e","media":"846156753d","document":"60e124bf7c","video":"057479320b","messages":"11228931dd","settings":"b97860818e","notifications":"042ebb992d","search":"a8830ab89b","moderation":"44ff19fdf8","group_members":"9640e2a859"},"modbypass":null,"nonce":{"bp_moderation_content_nonce":"c6533565c2"},"current":{"message_user_id":0},"archived_threads":[],"activity":{"params":{"user_id":0,"object":"user","backcompat":false,"post_nonce":"10dec85646","post_draft_nonce":"5a74b63a87","excluded_hosts":[],"user_can_post":false,"is_activity_edit":false,"displayed_user_id":0,"errors":{"empty_post_update":"Sorry, Your update cannot be empty.","post_fail":"An error occurred while saving your post.","media_fail":"To change the media type, remove existing media from your post."},"avatar_url":"https:\/\/www.learningfornature.org\/wp-content\/plugins\/buddyboss-platform\/bp-core\/images\/profile-avatar-buddyboss-50.png","avatar_width":150,"avatar_height":150,"user_display_name":false,"user_domain":"","avatar_alt":"Profile photo of ","link_preview":true,"objects":{"profile":{"text":"Post in: Profile","autocomplete_placeholder":"","priority":5},"group":{"text":"Post in: Group","autocomplete_placeholder":"Search groups","priority":10,"loading_group_placeholder":"Loading groups...","finding_group_placeholder":"Finding groups...","no_groups_found":"No groups found."},"group_list":[{"id":45,"name":"Agriculture Geography","avatar_url":"https:\/\/www.learningfornature.org\/wp-content\/uploads\/group-avatars\/45\/62acd7121764c-bpthumb.jpg","object_type":"group","is_public":true,"group_media":false,"group_document":false,"group_video":false},{"id":7,"name":"Arab Environmental Economics and Biodiversity Finance Group (AEEBF)","avatar_url":"https:\/\/www.learningfornature.org\/wp-content\/uploads\/group-avatars\/7\/5f3aa56979517-bpthumb.png","object_type":"group","is_public":true,"group_media":false,"group_document":false,"group_video":false},{"id":3,"name":"Bienvenid@s a los Grupos","avatar_url":"https:\/\/www.learningfornature.org\/wp-content\/uploads\/group-avatars\/3\/5ed6d2aac4893-bpthumb.png","object_type":"group","is_public":true,"group_media":false,"group_document":false,"group_video":false},{"id":4,"name":"Bienvenue aux groupes","avatar_url":"https:\/\/www.learningfornature.org\/wp-content\/uploads\/group-avatars\/4\/5ed7d021983bc-bpthumb.png","object_type":"group","is_public":true,"group_media":false,"group_document":false,"group_video":false},{"id":11,"name":"Bio People","avatar_url":"https:\/\/www.learningfornature.org\/wp-content\/uploads\/group-avatars\/11\/5f7f283a8f310-bpthumb.jpg","object_type":"group","is_public":true,"group_media":false,"group_document":false,"group_video":false},{"id":59,"name":"Businesses act for Biodiversity","avatar_url":"https:\/\/www.learningfornature.org\/wp-content\/uploads\/group-avatars\/59\/63210c92a4a63-bpthumb.jpg","object_type":"group","is_public":false,"group_media":false,"group_document":false,"group_video":false},{"id":54,"name":"Cadre juridique national","avatar_url":"https:\/\/www.learningfornature.org\/wp-content\/uploads\/group-avatars\/54\/630f4a72c1ce7-bpthumb.png","object_type":"group","is_public":true,"group_media":false,"group_document":false,"group_video":false},{"id":77,"name":"Communaut\u00e9s locales, Peuples autochtones et leurs repr\u00e9sentants","avatar_url":"https:\/\/www.learningfornature.org\/wp-content\/uploads\/group-avatars\/77\/633be1d5c25f7-bpthumb.png","object_type":"group","is_public":true,"group_media":false,"group_document":false,"group_video":false},{"id":9,"name":"CompostaHub","avatar_url":"https:\/\/www.learningfornature.org\/wp-content\/uploads\/group-avatars\/9\/5f7f199b8c357-bpthumb.jpg","object_type":"group","is_public":true,"group_media":false,"group_document":false,"group_video":false},{"id":47,"name":"Deconstructing ecosystem restoration at the subnational level","avatar_url":"https:\/\/www.learningfornature.org\/wp-content\/uploads\/group-avatars\/47\/630edb35e072e-bpthumb.png","object_type":"group","is_public":true,"group_media":false,"group_document":false,"group_video":false}],"group_count":59,"group_total_page":6},"draft_activity":false,"access_control_settings":{"can_create_activity":true,"can_create_activity_media":true,"can_create_activity_document":true}},"strings":{"whatsnewPlaceholder":"Share what's on your mind, ...","whatsnewLabel":"Post what&#039;s new","whatsnewpostinLabel":"Post in","postUpdateButton":"Post","updatePostButton":"Update Post","cancelButton":"Cancel","commentLabel":"%d Comment","commentsLabel":"%d Comments","loadingMore":"Loading...","discardButton":"Discard Draft","pinPost":"Pin to Feed","unpinPost":"Unpin from Feed","pinGroupPost":"Pin to Group","unpinGroupPost":"Unpin from Group","pinPostError":"There was a problem marking this operation. Please try again.","reactionAjaxError":"There was a problem marking this operation. Please try again."}},"group_messages":{"page":1,"type_message":"Type message","group_no_member":"There are no other members in this group. Please add some members before sending a message.","group_no_member_pro":"You are not allowed to send private messages to any member of this group.","loading":"Loading members. Please wait.","remove_recipient":"Remove Member","add_recipient":"Add Member","no_content":"Please add some content to your message.","no_recipient":"Please add at least one recipient.","select_default_text":"All Group Members","select_default_value":"all","no_member":"No members were found. Try another filter.","invites_form_all":"This message will be delivered to all members of this group you can message.","invites_form_separate":"Select group members to message by clicking the + button next to each member. Once you've made a selection, click \"Send Message\" to create a new group message.","invites_form_reset":"Group invitations cleared. Please use one of the available tabs to select members to invite.","invites_sending":"Sending group invitations. Please wait.","removeUserInvite":"Cancel invitation %s","feedback_select_all":"This message will be delivered to all members of this group you can message.","feedback_individual":"Select individual recipients by clicking the + button next to each member.","group_id":0,"is_group_create":false,"nonces":{"unmessage":"91426cc6e2","send_messages":"391b3172ff","retrieve_group_members":"04e857e34d","send_messages_users":"4baabbf0e8"}},"media":{"max_upload_size":128,"profile_media":false,"profile_album":false,"group_media":false,"group_album":true,"messages_media":true,"messages_media_active":true,"dropzone_media_message":"<strong>Add Photos<\/strong> Or drag and drop","media_select_error":"This file type is not supported for photo uploads.","empty_media_type":"Empty media file will not be uploaded.","invalid_media_type":"Unable to upload the file","media_size_error_header":"File too large ","media_size_error_description":"This file type is too large.","dictFileTooBig":"File size is too big ({{filesize}} MB). Max file size: {{maxFilesize}} MB.","cover_photo_size_error_header":"Unable to reposition the image ","cover_photo_size_error_description":"To reposition your cover photo, please upload a larger image and then try again.","maxFiles":10,"is_media_directory":"no","create_album_error_title":"Please enter title of album","current_album":0,"current_type":"","move_to_id_popup":0,"media_dict_file_exceeded":"You are allowed to upload only 10 photos at a time.","can_manage_media":false,"create_album_title":"Create Album","dictCancelUploadConfirmation":"Are you sure you want to cancel this upload?","connection_lost_error":"Connection lost with the server.","emoji":{"profile":true,"groups":true,"messages":true,"forums":true,"document":true},"emoji_filter_url":"https:\/\/www.learningfornature.org\/wp-content\/plugins\/buddyboss-platform\/bp-core\/images\/emojifilter\/","gif":{"profile":false,"groups":true,"messages":true,"forums":true,"document":true},"gif_api_key":"VrAXnIyh6ewj0SENaOjDIiHfyU3XpvEz","i18n_strings":{"select":"Select","unselect":"Unselect","selectall":"Select All","unselectall":"Unselect All","no_photos_found":"Sorry, no photos were found","upload":"Upload","uploading":"Uploading","upload_status":"%1$d out of %2$d uploaded","album_delete_confirm":"Are you sure you want to delete this album? Photos in this album will also be deleted.","album_delete_error":"There was a problem deleting the album.","media_delete_confirm":"Are you sure you want to delete this media?","folder_delete_confirm":"Are you sure you want to delete this folder? Documents in this folder will also be deleted?","document_delete_confirm":"Are you sure you want to delete this document?","folder_delete_error":"There was a problem deleting the folder.","folder_move_error":"Please select destination folder."},"profile_document":false,"group_document":false,"messages_document":true,"messages_document_active":true,"document_type":"text\/csv,application\/msword,application\/vnd.openxmlformats-officedocument.wordprocessingml.document,image\/jpeg,application\/pdf,image\/png,application\/vnd.ms-powerpoint,application\/vnd.openxmlformats-officedocument.presentationml.presentation,image\/svg+xml,text\/plain,application\/vnd.ms-excel,video\/mp4,video\/webm,video\/ogg,video\/quicktime,.csv,.doc,.docx,.jpeg,.jpg,.pdf,.png,.ppt,.pptm,.pptx,.svg,.txt,.xls,.mp4,.webm,.ogg,.mov","empty_document_type":"Empty documents will not be uploaded.","current_folder":0,"current_user_id":0,"current_group_id":0,"target_text":"Documents","create_folder_error_title":"Please enter title of folder","invalid_file_type":"Unable to upload the file","document_select_error":"Please upload only the following file types: <br \/><div class=\"bb-allowed-file-types\">.csv, .doc, .docx, .jpeg, .jpg, .pdf, .png, .ppt, .pptm, .pptx, .svg, .txt, .xls, .mp4, .webm, .ogg, .mov<\/div>","dropzone_document_message":"<strong>Add Files<\/strong> Or drag and drop","is_document_directory":"no","document_preview_error":"Sorry! something went wrong we are not able to preview.","move_to_folder":"Move folder to...","move_to_file":"Move document to...","copy_to_clip_board_text":"Copied to Clipboard","download_button":"Download","document_size_error_header":"File too large ","document_size_error_description":"This file type is too large.","sidebar_download_text":"Download","sidebar_view_text":"View","create_folder":"Create Folder","document_dict_file_exceeded":"You are allowed to upload only 10 documents at a time.","can_manage_document":false},"video":{"max_upload_size":256,"video_type":"video\/mp4,video\/webm,video\/ogg,video\/quicktime,.mp4,.webm,.ogg,.mov","profile_video":false,"profile_album":false,"group_video":false,"group_album":true,"messages_video":false,"messages_video_active":false,"dropzone_video_message":"<strong>Add Videos<\/strong> Or drag and drop","dropzone_video_thumbnail_message":"Upload thumbnail","video_select_error":"This file type is not supported for video uploads.","empty_video_type":"Empty video file will not be uploaded.","invalid_video_type":"Unable to upload the file","video_size_error_header":"File too large ","video_size_error_description":"This file type is too large.","dictFileTooBig":"File is too large ({{filesize}} MB). Max filesize: {{maxFilesize}} MB.","maxFiles":10,"is_video_directory":"no","create_album_error_title":"Please enter title of album","cover_video_size_error_header":"Unable to reposition the image ","cover_video_size_error_description":"To reposition your cover video, please upload a larger image and then try again.","current_album":0,"current_type":"","move_to_id_popup":0,"video_dict_file_exceeded":"You are allowed to upload only 10 videos at a time.","thumb_dict_file_exceeded":"You are allowed to upload only 1 thumb at a time.","dictInvalidFileType":"Please upload only the following file types: <br \/><div class=\"bb-allowed-file-types\">video\/mp4, video\/webm, video\/ogg, video\/quicktime, .mp4, .webm, .ogg, .mov<\/div>","is_ffpmeg_installed":true,"generating_thumb":"Generating thumbnail\u2026","dictCancelUploadConfirmation":"Are you sure you want to cancel this upload?","i18n_strings":{"select":"Select","unselect":"Unselect","selectall":"Select All","unselectall":"Unselect All","no_videos_found":"Sorry, no videos were found","upload":"Upload","upload_thumb":"Change Thumbnail","uploading":"Uploading","upload_status":"%1$d out of %2$d uploaded","album_delete_confirm":"Are you sure you want to delete this album? Videos in this album will also be deleted.","album_delete_error":"There was a problem deleting the album.","video_delete_confirm":"Are you sure you want to delete this video?","video_enlarge_text":"Enlarge","video_fullscreen_text":"Full screen","video_play_text":"Play","video_pause_text":"Pause","video_uploaded_text":"Uploaded","video_volume_text":"Volume","video_miniplayer_text":"Miniplayer","video_speed_text":"Speed","video_skip_back_text":"Step Back (5)","video_skip_forward_text":"Step Forward (5)","video_picture_in_text":"This video is playing in the miniplayer."}},"moderation":{"unblock_user_msg":"Are you sure you want to unblock this member?","no_user_msg":"No blocked members found."},"document":{"dictInvalidFileType":"Please upload only the following file types: <br \/><div class=\"bb-allowed-file-types\">.csv, .doc, .docx, .jpeg, .jpg, .pdf, .png, .ppt, .pptm, .pptx, .svg, .txt, .xls, .mp4, .webm, .ogg, .mov<\/div>","max_upload_size":10,"maxFiles":10,"mp3_preview_extension":"mp3,wav,ogg"}}; var BB_Nouveau_Presence = {"heartbeat_enabled":"","presence_interval":"50","presence_default_interval":"60","presence_time_span":"20","idle_inactive_span":"180","rest_nonce":"38c2cef4cd","native_presence":"","native_presence_url":"https:\/\/www.learningfornature.org\/wp-content\/plugins\/buddyboss-platform\/bp-core\/bb-core-native-presence.php","presence_rest_url":"https:\/\/www.learningfornature.org\/en\/wp-json\/buddyboss\/v1\/members\/presence"}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-nouveau.min.js?ver=2.5.60" id="bp-nouveau-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/buddyboss-platform/bp-templates/bp-nouveau/js/jquery.guillotine.min.js?ver=2.5.60" id="guillotine-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/comment-reply.js?ver=6.4.3" id="comment-reply-js" async="async" data-wp-strategy="async"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-nouveau-codemirror.min.js?ver=2.5.60" id="bp-nouveau-codemirror-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-nouveau-codemirror-css.min.js?ver=2.5.60" id="bp-nouveau-codemirror-css-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-nouveau-media.min.js?ver=2.5.60" id="bp-nouveau-media-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/jquery/ui/core.js?ver=1.13.2" id="jquery-ui-core-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/jquery/ui/menu.js?ver=1.13.2" id="jquery-ui-menu-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/dist/dom-ready.js?ver=ae5bd6ca23f589f2dac7" id="wp-dom-ready-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/dist/a11y.js?ver=b5ff61edc2245a1950cb" id="wp-a11y-js"></script> <script type="text/javascript" id="jquery-ui-autocomplete-js-extra"> /* <![CDATA[ */ var uiAutocompleteL10n = {"noResults":"No results found.","oneResult":"1 result found. Use up and down arrow keys to navigate.","manyResults":"%d results found. Use up and down arrow keys to navigate.","itemSelected":"Item selected."}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/jquery/ui/autocomplete.js?ver=1.13.2" id="jquery-ui-autocomplete-js"></script> <script type="text/javascript" id="bp-nouveau-search-js-extra"> /* <![CDATA[ */ var BP_SEARCH = {"nonce":"f579a2c67f","action":"bp_search_ajax","debug":"1","ajaxurl":"https:\/\/www.learningfornature.org\/wp-admin\/admin-ajax.php","loading_msg":"Loading suggestions...","enable_ajax_search":"1","per_page":"5","autocomplete_selector":".header-search-wrap .search-form","form_selector":".widget_search .search-form","forums_autocomplete":""}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-nouveau-search.min.js?ver=2.5.60" id="bp-nouveau-search-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/bp-nouveau-moderation.min.js?ver=2.5.60" id="bp-nouveau-moderation-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/som_reset_password_script.min.js?ver=1.0.0" id="som_reset_password_script-js"></script> <script type="text/javascript" id="wp-polls-js-extra"> /* <![CDATA[ */ var pollsL10n = {"ajax_url":"https:\/\/www.learningfornature.org\/wp-admin\/admin-ajax.php","text_wait":"Your last request is still being processed. Please wait a while ...","text_valid":"Please choose a valid poll answer.","text_multiple":"Maximum number of choices allowed: ","show_loading":"1","show_fading":"1"}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/wp-polls.min.js?ver=2.77.3" id="wp-polls-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/bb-plugin/js/jquery.ba-throttle-debounce.min.js?ver=2.5.5.5" id="jquery-throttle-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/fl-builder-layout-bundle-65e55d1e7a27b2001f5f27630b7edbb3.min.js?ver=2.5.5.5-1.4.3.2" id="fl-builder-layout-bundle-65e55d1e7a27b2001f5f27630b7edbb3-js"></script> <script type="text/javascript" id="learndash-front-js-extra"> /* <![CDATA[ */ var ldVars = {"postID":"120253","videoReqMsg":"You must watch the video before accessing this content","ajaxurl":"https:\/\/www.learningfornature.org\/wp-admin\/admin-ajax.php"}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/learndash-front.min.js?ver=4.12.0-1739857785" id="learndash-front-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/page-links-to.min.js?ver=3.3.6" id="page-links-to-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-includes/js/masonry.min.js?ver=4.2.2" id="masonry-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/boss-menu-js.min.js?ver=2.5.50" id="boss-menu-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/boss-fitvids-js.min.js?ver=2.5.50" id="boss-fitvids-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/js/vendors/slick.min.js?ver=2.5.50" id="boss-slick-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/js/vendors/panelslider.min.js?ver=2.5.50" id="boss-panelslider-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/boss-sticky-js.min.js?ver=2.5.50" id="boss-sticky-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/js/vendors/jssocials.min.js?ver=2.5.50" id="boss-jssocials-js-js"></script> <script type="text/javascript" id="buddyboss-theme-main-js-js-extra"> /* <![CDATA[ */ var bs_data = {"jm_ajax":"https:\/\/www.learningfornature.org\/en\/jm-ajax\/","ajaxurl":"https:\/\/www.learningfornature.org\/wp-admin\/admin-ajax.php","show_notifications":"1","show_messages":"1","facebook_label":"Share on Facebook","twitter_label":"Tweet","translation":{"comment_posted":"Your comment has been posted.","comment_btn_loading":"Please Wait...","choose_a_file_label":"Choose a file","email_validation":"Please enter a valid email address."},"gamipress_badge_label":"Badge","nonce_list_grid":"85f04229b4","learndash":{"nonce_get_courses":"d855f88a47","course_archive_url":"https:\/\/www.learningfornature.org\/en\/courses\/"}}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/js/main.min.js?ver=2.5.50" id="buddyboss-theme-main-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/js/vendors/validate.min.js?ver=2.5.50" id="boss-validate-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/js/vendors/select2.full.min.js?ver=2.5.50" id="select2-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/js/vendors/progressbar.min.js?ver=2.5.50" id="progressbar-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/js/vendors/mousewheel.min.js?ver=2.5.50" id="mousewheel-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/polyfill-event.min.js?ver=2.5.50" id="polyfill-event-js"></script> <script type="text/javascript" id="buddyboss-theme-learndash-js-js-extra"> /* <![CDATA[ */ var BBTHEME_LEARNDASH_FRONT_VIDEO = {"hide_wrapper":"show","video_progression_enabled":"off","video_type":""}; /* ]]> */ </script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/js/plugins/learndash.min.js?ver=2.5.50" id="buddyboss-theme-learndash-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/themes/buddyboss-theme/assets/js/plugins/plugins.min.js?ver=2.5.50" id="buddyboss-theme-plugins-js-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/uploads/siteground-optimizer-assets/snc-script.min.js?ver=3.5.3" id="snc-script-js"></script> <script defer type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/wpdiscuz-widgets/assets/js/script.min.js?ver=7.2.6" id="wpdiscuz_widgets_comm_vot_script-js"></script> <script type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/popup-anything-on-click/assets/js/custombox.legacy.min.js?ver=1.7.7" id="jquery-custombox-legacy-js"></script> <script type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/popup-anything-on-click/assets/js/custombox.min.js?ver=1.7.7" id="jquery-custombox-js"></script> <script type="text/javascript" src="https://www.learningfornature.org/wp-content/plugins/popup-anything-on-click/assets/js/popupaoc-public.js?ver=1.7.7" id="wpos-public-script-js-js"></script> <div id="paoc-modal-1" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="30%"><img class="alignnone wp-image-123288 size-full" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Arandu-Arakuaa.jpg" alt="" width="622" height="625" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Instagram.jpg" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;"><a class="waffle-rich-text-link" style="color: #000000;" href="https://www.instagram.com/aranduarakuaa" target="_blank" rel="noopener">@aranduarakuaa</a></span></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/facebook-1.png" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;"><a class="waffle-rich-text-link" style="color: #000000;" href="https://www.facebook.com/aranduarakuaa" target="_blank" rel="noopener"><span class="">@aranduarakuaa</span></a></span></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/youtube-3.png" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;"><a class="waffle-rich-text-link" style="color: #000000;" href="https://www.youtube.com/aranduarakuaa" target="_blank" rel="noopener">@aranduarakuaa</a></span></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/internet-1-2.png" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;"><a class="waffle-rich-text-link" style="color: #000000;" href="https://open.spotify.com/artist/7pROvcUEXH7vldjQJ2z8PH">Spotify</a></span></span></p> <p>&nbsp;</td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;"><span data-sheets-root="1">Arandu Arakuaa</span></span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Brazilian folk metal band</span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">Arandu Arakuaa, a Brazilian band formed in 2008 by the Indigenous Zândhio Huku, blends heavy metal with Indigenous and traditional Brazilian music. Their lyrics, written in the Indigenous languages of Xerente, Tupi, and Xavante, reflect the cosmologies, struggles, values, and knowledge of Brazil's Indigenous peoples. To date, they have released five albums and fifteen music videos.</span> </span></p> </td> </tr> </tbody> </table> </div> </div> <div id="paoc-modal-2" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="30%"><img class="alignnone wp-image-123304 size-full" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Raven-Bright-2.jpg" alt="" width="622" height="625" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Instagram.jpg" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;"><a class="waffle-rich-text-link" style="color: #000000;" href="https://www.instagram.com/raven_paven_11/" target="_blank" rel="noopener">@raven_paven_11</a></span></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/internet-1-2.png" alt="" width="22" height="22" /><a href="https://www.instagram.com/raven_paven_11/" target="_blank" rel="noopener"><span style="color: #000000; font-family: proxima nova;">Raven Bright</span></a></span></p> <p>&nbsp;</td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;"><span data-sheets-root="1">Raven Bright</span></span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Indigenous contemporary artist </span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">Raven Bright is an Indigenous contemporary artist that was born and raised in Gallup, NM. Raven’s main focus is that of Breaking and teaching. Raven has a background experience of 20 years with the art of Breaking and Hip-Hop culture. Along the way he has picked a multitude of skills and experiences through culture and community that has helped define his style of movement and has given him the tools to express himself through dance. He is a mix of Diné and Irish descent. Raven is claimed by the Dibéłizhiní (Black Sheep Clan) of the Diné people. Raven creates connection to land, culture, and its people through the movement he offers. “Every step you take on the dance floor is a deep heart beat of your people. The steps ahead are already imprinted and it’s your destiny to follow and build upon them”. Along with Breaking he also has a number of other styles he has built over the years including Modern, Contemporary, Capoeira, Popping, Locking, Waving, Tutting, and House. He’s also had to build skills in relation to acting, painting, and writing.</span></span></p> </td> </tr> </tbody> </table> </div> </div> <div id="paoc-modal-3" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="30%"><img class="alignnone wp-image-123307 size-full" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Maya.jpg" alt="" width="622" height="625" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/internet-1-2.png" alt="" width="22" height="22" /><a href="https://lnk.to/lsv15U" target="_blank" rel="noopener"><span style="color: #000000; font-family: proxima nova;">Maya Garnier</span></a></span></p> <p>&nbsp;</td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;"><span data-sheets-root="1">Maya Garnier</span></span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Musician</span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">An instructional designer by profession, Maya has always nurtured a parallel passion for music. She began playing piano at age 8, started singing at 13, and discovered a love for songwriting at 15. Her musical journey includes studying at the Conservatory of Cannes, a year of songwriting at LACM in Los Angeles, and three years at BIMM in London. Recently, Maya completed a master’s in digital education. She regularly performs live at weddings and special events, and composes heartfelt songs on the piano. Creativity, design, and music have always been central to Maya’s life and work.</span> </span></p> </td> </tr> </tbody> </table> </div> </div> <div id="paoc-modal-4" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="30%"><img class="alignnone wp-image-123288 size-full" src="https://www.learningfornature.org/wp-content/uploads/2024/09/dobetgnahore.jpg" alt="" width="622" height="625" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Instagram.jpg" alt="" width="22" height="22" /><a href="https://www.instagram.com/dobet_gnahore_officiel/" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">@dobet_gnahore_officiel</span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/facebook-1.png" alt="" width="22" height="22" /><a href="http://www.facebook.com/dobetgnahore" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;"><span class="">@dobetgnahore </span></span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/tik-tok.png" alt="" width="22" height="22" /><a href="https://www.tiktok.com/@dobetgnahore" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">@dobetgnahore </span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/internet-1-2.png" alt="" width="22" height="22" /><a href="https://www.dobetgnahore.com/" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">dobetgnahore.com</span></a></span></p> <p>&nbsp;</td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;"><span data-sheets-root="1">Dobet Gnahore Dodogna</span></span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Singer, dancer, percussionist, songwriter</span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">GRAMMY-winner Dobet Gnahoré is one of Africa’s hottest and most beloved talents. With her amazing voice, incredible dance moves, powerful stage presence, and colorful fashion sense, Dobet appeals to fans of Angelique Kidjo, Yemi Alade, Fatoumata Diawara and other divas of African music. While the African continent has blessed the world with many recognized female artists, Dobet Gnahoré has proven herself to be a truly special talent. Hailing from Côte d’Ivoire, Dobet is a virtuosic singer, dancer, percussionist, and songwriter who has taken the modern Afropop sounds of her country in exciting new directions while serving as an inspiration for the young generation of African women.</span> </span></p> </td> </tr> </tbody> </table> </div> </div> <div id="paoc-modal-5" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="30%"><img class="alignnone size-medium wp-image-123306" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Sarah-Kraning-300x300.jpg" alt="" width="300" height="300" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Instagram.jpg" alt="" width="22" height="22" /><a href="https://www.instagram.com/sarahkraning/"><span style="font-family: 'proxima nova'; color: #000000;">@sarahkraning</span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/youtube-3.png" alt="" width="22" height="22" /><a href="https://youtube.com/@sarahkraningart"><span class="" style="color: #000000; font-family: 'proxima nova';">@</span><span style="color: #000000; font-family: 'proxima nova';">sarahkraningart</span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/tik-tok.png" alt="" width="22" height="22" /><a href="https://www.tiktok.com/@sarahkraning?_t=8cM2C6ZEJn1&amp;_r=1"><span style="font-family: 'proxima nova'; color: #000000;"><span class="atwho-query">@</span>sarahkraning</span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/internet-1-2.png" alt="" width="22" height="22" /><a href="https://www.sarahkraning.com/" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">sarahkraning.com</span></a></span></p> <p>&nbsp;</td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;"><span data-sheets-root="1">Sarah Kraning</span></span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Abstract artist </span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">Sarah Kraning is an American abstract artist with <a class="in-cell-link" href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.apa.org%2Fmonitor%2Fmar01%2Fsynesthesia&amp;data=05%7C02%7Calina.klimantovych%40undp.org%7Cee70085107dc4f8a413c08dcc6410925%7Cb3e5db5e2944483799f57488ace54319%7C0%7C0%7C638603229848796000%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=IyWDchJobq1754nGsZ%2Bs%2B%2FvQNd51Q7vimS5dXMDi2qE%3D&amp;reserved=0" target="_blank" rel="noopener">synesthesia</a>. Born with various auditory-based forms of the rare trait, Sarah experiences sound as color, texture, and motion. Her art, inspired by these multi-sensory experiences, has captivated a global audience, amassing over 100 million views on <a class="in-cell-link" href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.tiktok.com%2F%40sarahkraning%3F_t%3D8aAS0YXneHe%26_r%3D1&amp;data=05%7C02%7Calina.klimantovych%40undp.org%7Cee70085107dc4f8a413c08dcc6410925%7Cb3e5db5e2944483799f57488ace54319%7C0%7C0%7C638603229848802440%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=%2BxySFMW8LTSV42gKNJKmKpxpMxIt4kJxuSc7mT%2FDIhQ%3D&amp;reserved=0" target="_blank" rel="noopener">TikTok</a>, <a class="in-cell-link" href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.instagram.com%2Fsarahkraning%2F&amp;data=05%7C02%7Calina.klimantovych%40undp.org%7Cee70085107dc4f8a413c08dcc6410925%7Cb3e5db5e2944483799f57488ace54319%7C0%7C0%7C638603229848807911%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=E9EKwV60%2FZvKLZ9Xd6mtwODdZ2C7VOO3e5Y8TopHfy4%3D&amp;reserved=0" target="_blank" rel="noopener">Instagram</a> and <a class="in-cell-link" href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fyoutube.com%2F%40sarahkraningart&amp;data=05%7C02%7Calina.klimantovych%40undp.org%7Cee70085107dc4f8a413c08dcc6410925%7Cb3e5db5e2944483799f57488ace54319%7C0%7C0%7C638603229848813309%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=3%2F1kII7NL56xMAyujitHBgfPuM2bDvgPV3csbhsESnM%3D&amp;reserved=0" target="_blank" rel="noopener">YouTube</a>. Kraning frequently collaborates with musicians for live concert painting events, blending high-energy performances with visual art.</p> <p>Kraning’s recent work has become synonymous with an impassioned activism for environmentalism; something that has been a cause close to the artist from a young age. Through Kraning’s recent ambassadorship with Leonardo DiCaprio’s wildlife restoration and protection organization <a class="in-cell-link" href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.rewild.org%2Fteam%2Fsarah-kraning&amp;data=05%7C02%7Calina.klimantovych%40undp.org%7Cee70085107dc4f8a413c08dcc6410925%7Cb3e5db5e2944483799f57488ace54319%7C0%7C0%7C638603229848824151%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=m%2FO%2Bj3hDm93ZBHvfC6vr9gYJC3oh%2F7nlhdaYz6ifuEQ%3D&amp;reserved=0" target="_blank" rel="noopener">Re:wild</a>, she seeks to inspire new audiences to protect the planet by showcasing the colors of nature’s soundscapes, illuminating the vibrancy the organization seeks to protect.</span> </span></p> </td> </tr> </tbody> </table> </div> </div> <div id="paoc-modal-6" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="30%"><img class="alignnone wp-image-123288 size-full" src="https://www.learningfornature.org/wp-content/uploads/2024/09/benjamin.jpg" alt="" width="622" height="625" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Instagram.jpg" alt="" width="22" height="22" /><a href="https://www.instagram.com/benmirin/" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">@NACOrchCNA</span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/facebook-1.png" alt="" width="22" height="22" /><a href="https://www.facebook.com/NACOrchCNA/" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;"><span class="">@benmirin</span></span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/internet-1-2.png" alt="" width="22" height="22" /><span style="color: #000000;"><a style="color: #000000;" href="http://benmirin.com/" target="_blank" rel="noopener">benmirin.com</a></span><br /> </span></p> <p>&nbsp;</td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;"><span data-sheets-root="1">Benjamin Mirin</span></span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Ethno-ornithologist, acoustic biologist </span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">Ben Mirin, Ph.D. (he/him) is an ethno-ornithologist and acoustic biologist at the Cornell Lab of Ornithology where he studies birdsong and human cultures. He is also a Wildlife DJ who leads expeditions to record rare sounds in nature, and samples their voices to create music that inspires conservation. Ben’s work using creativity to make conservation more inclusive. He has been a birder for 30 years and recorded wildlife sound to make music for nearly a decade. His sounds, music, writing, films and teaching have appeared at the United Nations, TED, the US Department of State (Fulbright), National Geographic (where he is an Explorer and television presenter), the BBC, bioGraphic, NPR, Smithsonian, Audubon, and the free online game BeastBox hosted by the Cornell Lab of Ornithology.</span></span></p> <p>--<br /> This music video is part of Ben Mirin's performance for the Great Canadian Orchestra Fieldtrip, an on-demand learning series created with the National Arts Centre of Canada. The series focuses on the transformative power of art and music in the climate emergency, and runs in three parts that are currently being broadcast across classrooms in thousands of Canadian public schools. Ben performed alongside renowned singer-songwriters, instrumental soloists, and a host of Canada's leading symphony orchestras, and has since shared the work across Indonesia to celebrate the sounds of Borneo's ancient rainforests.</p> <p>--<br /> ABOUT CANADA’S NATIONAL ARTS CENTRE<br /> The National Arts Centre is Canada’s bilingual, multi-disciplinary home for the performing arts. The NAC presents, creates, produces, and co-produces performing arts programming in various streams — the NAC Orchestra, Dance, English Theatre, French Theatre, Indigenous Theatre, and Popular Music and Variety — and nurtures the next generation of audiences and artists from across Canada. The NAC is located in the National Capital Region on the unceded territory of the Anishinabe Algonquin Nation.</p> <p>ABOUT CANADA’S NATIONAL ARTS CENTRE ORCHESTRA<br /> Since its debut in 1969, Canada’s National Arts Centre Orchestra has been praised for the passion and clarity of its performances, its visionary learning and engagement programs, and its prominent role in nurturing Canadian creativity. Under the leadership of Music Director Alexander Shelley, the NAC Orchestra reflects the fabric and values of Canada, reaching and representing the diverse communities we live in with daring programming, powerful storytelling, inspiring artistry, and innovative partnerships. Since its inception, the NAC Orchestra has recorded for radio and more than 40 commercial recordings many of the 80+ new works it has commissioned, primarily from Canadian composers.</td> </tr> </tbody> </table> </div> </div> <div id="paoc-modal-7" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="30%"><img class="alignnone wp-image-123305 size-full" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Madelyn-Monaghan.jpg" alt="" width="622" height="625" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Instagram.jpg" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;">@<a style="color: #000000;" href="https://www.instagram.com/madelyn_monaghan/" target="_blank" rel="noopener">madelyn_monaghan</a></span></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/internet-1-2.png" alt="" width="22" height="22" /><span style="color: #000000;"><a style="color: #000000;" href="http://www.madelynmonaghan.com/" target="_blank" rel="noopener"><span style="font-family: 'proxima nova';">madelynmonaghan.com </span></a></span></span></p> <p>&nbsp;</td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;"><span data-sheets-root="1">Madelyn Monaghan</span></span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Singer, actress, writer, international recording artist</span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">Madelyn Monaghan is an Irish-American singer, actress, writer, and international recording artist based in New York City. Madelyn is perhaps best known for her Irish traditional singing (Sean-nós) work. She has lent her singing voice to film scores, commercials, and museums, and has as collaborated with renowned musical artists in Ireland, the UK, the US, and the Netherlands—most recently with Ben Gold of Armada Records in Amsterdam. In 2022, Madelyn released her debut album “éist”, a collaboration with fellow Irish-American musician, Cullen Vance. Madelyn’s music is streaming on all platforms, and she can be found on TikTok/Instagram.</span> </span></p> </td> </tr> </tbody> </table> </div> </div> <div id="paoc-modal-8" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="30%"><img class="alignnone wp-image-123304 size-full" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Snow-Raven.jpg" alt="" width="622" height="625" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Instagram.jpg" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;">@<a class="waffle-rich-text-link" style="color: #000000;" href="https://www.instagram.com/snowravenofficial/" target="_blank" rel="noopener">snowravenofficial</a></span></span></p> <p><span style="font-size: 18px; color: #000000;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/twitter-1.png" alt="" width="22" height="22" /><span style="font-family: 'proxima nova';">@<a class="waffle-rich-text-link" style="color: #000000;" href="https://twitter.com/8snowraven8">8snowraven8</a> </span></span></p> <p><span style="font-size: 18px; color: #000000;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/facebook-1.png" alt="" width="22" height="22" /><span style="font-family: 'proxima nova';"><span class="">@<a class="waffle-rich-text-link" style="color: #000000;" href="https://www.facebook.com/snowravenofficial" target="_blank" rel="noopener">snowravenofficial</a></span></span><br /> </span></p> <p><span style="font-size: 18px; color: #000000;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/youtube-3.png" alt="" width="22" height="22" /><a href="https://www.youtube.com/@SNOWRAVENOFFICIAL/videos" target="_blank" rel="noopener"><span style="font-family: 'proxima nova';">@snowravenofficial</span></a><br /> </span></p> <p><span style="font-size: 18px; color: #000000;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/tik-tok.png" alt="" width="22" height="22" /><span style="font-family: 'proxima nova';">@<a class="waffle-rich-text-link" style="color: #000000;" href="https://www.tiktok.com/@snowravenofficial">snowravenofficial</a> </span></span></p> <p><span style="font-size: 18px;"><span style="color: #000000;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/internet-1-2.png" alt="" width="22" height="22" /><a href="http://www.snowraven.com/" target="_blank" rel="noopener"><span style="font-size: 18px; color: #000000;"><span style="font-family: 'proxima nova';">snowraven.com </span></span></a></span></span></td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;"><span data-sheets-root="1">Snow Raven</span></span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Indigenous Sakha artist</span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">SNOW RAVEN - SUOR was born in one of the most remote and cold inhabited places in the world - the Republic of Sakha - Yakutia (arctic Siberia). She was three years old when she started to learn the language of birds and animals. Her voice takes its breath from traditional Sakha culture and is truly an instrument. She is the OG of “arctic beatbox” - the reindeer breath and the founder of OLOX ecosystem: Of Many Believes Common Truth.</span></span></p> <p>SNOW RAVEN, participant of America’s Got Talent 2020, headlined Texas Eclipse, Lightning in the Bottle, Lost Lands, Burning Man, The Elements, Lucidity Festival, Beloved, Sundance Film Festival. SNOW RAVEN sang for The Bioneers ECOconference, MAPS Psychedelic Science conference, the international forum Arctic Circle-2015 in Iceland, in the French-American Arctic expedition Pax Arctica (DeLong Islands) sponsored by the Prince Monaco Foundation and in the International Beatbox Championship as a special guest. In 2023 she spoke at TEDx Vermont, Yale University..</td> </tr> </tbody> </table> </div> </div> <div id="paoc-modal-9" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="30%"><img class="alignnone wp-image-123288 size-full" src="https://www.learningfornature.org/wp-content/uploads/2024/09/sounds.oftheocean.jpg" alt="" width="622" height="625" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Instagram.jpg" alt="" width="22" height="22" /><a href="https://www.instagram.com/sounds.oftheocean/" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">@sounds.oftheocean</span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/internet-1-2.png" alt="" width="22" height="22" /><a href="https://www.soundsoftheocean.com/" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">soundsoftheocean.com</span></a></span></p> <p>&nbsp;</td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;"><span data-sheets-root="1">Sounds of the Ocean</span></span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Immersive experience</span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">Sounds of the Ocean is an award-winning immersive experience that invites you and your family to the heart of the deep blue sea. In a society burdened with stress, this transformative project offers calm and rest. It is an invitation to forge a deep connection with the enchanting life that dwells beneath the waves. The experience combines sounds of whales &amp; dolphins, live music, dance, immersive visual art and ocean imagery to guide the audience on a mindful underwater odyssey.</span> </span></p> </td> </tr> </tbody> </table> </div> </div> <div id="paoc-modal-10" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="30%"><img class="alignnone wp-image-123288 size-full" src="https://www.learningfornature.org/wp-content/uploads/2024/09/George-The-Poet.jpg" alt="" width="622" height="625" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Instagram.jpg" alt="" width="22" height="22" /><a href="https://www.instagram.com/georgethepoet/" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">@georgethepoet</span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/twitter-1.png" alt="" width="22" height="22" /><a href="https://x.com/GeorgeThePoet" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">@GeorgeThePoet</span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/youtube-3.png" alt="" width="22" height="22" /><a href="https://www.youtube.com/@GeorgeThePoet" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;"><span class="atwho-query">@Georg</span>eThePoet</span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/internet-1-2.png" alt="" width="22" height="22" /><a href="http://www.georgethepoet.com/" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">georgethepoet.com </span></a></span></p> <p>&nbsp;</td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;"><span data-sheets-root="1">George The Poet</span></span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Spoken word performer</span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">George the Poet is a London-born spoken word performer of Ugandan heritage. His innovative brand of musical poetry has won him critical acclaim both as a recording artist and social commentator and seen his work broadcast to billions of people worldwide. In 2019, his audio offering ‘Have You Heard George’s Podcast?’ won a prestigious Peabody Award and 5 Gold British Podcast Awards, including the highly-coveted Podcast of the Year. More accolades followed in the years to come, including an NME Award, two Gold ARIAS, three New York Festival Awards and more. In 2021 The University of London presented George with an honorary doctorate in literature. George is now embarking on a PhD at UCL'S Institute for Innovation and Public Purpose, under the supervision of the institute's founder, Mariana Mazzucato, and Reader in Educational Leadership At UCL's Institute Of Education, Dr. Karen Edge. His research focuses on the socio-economic potential of black music.</span> </span></p> </td> </tr> </tbody> </table> </div> </div> <div id="paoc-modal-11" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="30%"><img class="alignnone wp-image-123288 size-full" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Djuena-Tikuna.jpg" alt="" width="622" height="625" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Instagram.jpg" alt="" width="22" height="22" /><a href="https://www.instagram.com/djuenatikuna?igsh=MTlzZ2puYjhwemxpNw==" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">@djuenatikuna</span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/youtube-3.png" alt="" width="22" height="22" /><a href="https://youtube.com/@djuenatikuna-canal?si=_loCp3ol9jbloJFe"><span style="font-family: 'proxima nova'; color: #000000;">@djuenatikuna-canal</span></a></span></p> <p>&nbsp;</td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;"><span data-sheets-root="1">Djuena Tikuna</span></span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Indigenous singer, journalist, producer, activist</span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">Djuena Tikuna, born in Aldeia Umariaçu II, Tabatinga, Amazonas, in 1984, is the daughter of Nutchametücü and Totchimaüna. She is a singer and the first Indigenous journalist trained in Amazonas. In 2017, she made history as the first Indigenous woman to perform at Teatro Amazonas, releasing her album Tchautchiüãne. As a cultural producer, she organized the first Indigenous Music Festival - WIYAE in Amazonas in 2018. She toured with Sonora Brasil in 2019 and performed across Europe, including France, Amsterdam, Brussels, and Austria, promoting Indigenous music. All her songs are in Tikuna.</span> </span></p> </td> </tr> </tbody> </table> </div> </div> <div id="paoc-modal-12" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="30%"><img class="alignnone wp-image-123288 size-full" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Maf-E-Tula.jpg" alt="" width="622" height="625" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Instagram.jpg" alt="" width="22" height="22" /><a href="https://www.instagram.com/mafetula.music/" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">@mafetula.music</span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/internet-1-2.png" alt="" width="22" height="22" /><a href="http://www.mafetula.com/" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">mafetula.com</span></a></span></p> <p>&nbsp;</td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;"><span data-sheets-root="1">Maf É Tulà</span></span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Musical artist</span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">Maf é Tulà is a Costa Rican artist who has been exploring the craft of songwriting since a very young age. Motivated by the ability of sound to evoke emotions in humans, her lyrics address themes that lead to deep reflection. By blending a variety of rhythms and sounds inspired by the folklore of different places around the world, she allows the imagination to draw diverse soundscapes. She has an 18-year musical career and is a three-time winner of the Costa Rican Composers Association (ACAM) awards. She has taken her music to 20 countries across Latin America and Europe. She is currently working on a new album, inspired by the sounds of the tropical jungle, emphasizing the importance of conservation and regeneration of our ecosystems.</span> </span></p> </td> </tr> </tbody> </table> </div> </div> <div id="paoc-modal-13" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="30%"><img class="alignnone wp-image-123288 size-full" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Orlando-Villarraga.jpg" alt="" width="622" height="625" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Instagram.jpg" alt="" width="22" height="22" /><a href="https://www.instagram.com/ocgv_sound" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">@ocgv_sound </span></a></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/youtube-3.png" alt="" width="22" height="22" /><a href="https://www.youtube.com/@ocgv_sound" target="_blank" rel="noopener"><span style="font-family: 'proxima nova'; color: #000000;">@ocgv_sound </span></a></span></p> <p>&nbsp;</p> <p>&nbsp;</td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;"><span data-sheets-root="1">Orlando Villarraga</span></span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Poet, musician, visual artist</span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">Orlando's work lives at an intersection of nature-based philosophies/spiritual practices, combined with modern sound meditation techniques to create sonic experiences of connection. His compositions combine electronic elements, as well as acoustic sounds to generate a mirror for our own connection with nature. Collaborations include: MoMA, Garrison Institute, Wisdom 2.0 and more.</span> </span></p> </td> </tr> </tbody> </table> </div> </div> <div id="paoc-modal-14" class="paoc-popup-modal"> <a href="javascript:void(0);" class="paoc-popup-close paoc-close-popup"></a> <div class="paoc-popup-modal-cnt"> <table> <tbody> <tr> <td style="vertical-align: top;" width="35%"><img src="https://www.learningfornature.org/wp-content/uploads/2024/09/AY-Young44.jpg" alt="" width="370" height="507" /></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/Instagram.jpg" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;"><a class="waffle-rich-text-link" style="color: #000000;" href="https://www.instagram.com/aymusik/" target="_blank" rel="noopener">@aymusik</a></span></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/twitter-1.png" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;"><a class="waffle-rich-text-link" style="color: #000000;" href="https://twitter.com/aymusik" target="_blank" rel="noopener">@aymusik</a></span></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/facebook-1.png" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;"><a class="waffle-rich-text-link" style="color: #000000;" href="https://www.facebook.com/aymusik" target="_blank" rel="noopener"><span class="">@aymusik</span></a></span><br /> </span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/social-1.png" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;"><a class="waffle-rich-text-link" style="color: #000000;" href="https://www.linkedin.com/in/aymusik/" target="_blank" rel="noopener">@aymusik</a></span><br /> </span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/youtube-3.png" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;"><a class="waffle-rich-text-link" style="color: #000000;" href="https://www.youtube.com/@AYYoung" target="_blank" rel="noopener">@AYYoung</a></span></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/tik-tok.png" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;"><a class="waffle-rich-text-link" style="color: #000000;" href="https://www.tiktok.com/@ayyoungtheplug" target="_blank" rel="noopener">@ayyoungtheplug</a></span></span></p> <p><span style="font-size: 18px;"><img class="wp-image-122132 alignleft" style="margin-top: 0px; margin-right: 10px;" src="https://www.learningfornature.org/wp-content/uploads/2024/09/internet-1-2.png" alt="" width="22" height="22" /><span style="font-family: 'proxima nova'; color: #000000;"><a class="waffle-rich-text-link" style="color: #000000;" href="https://www.aymusik.com/">aymusik.com</a></span></span></td> <td> <p style="padding-left: 40px;"><b><span style="font-size: 30px; font-family: proxima nova;">AY Young</span></b></p> <p style="margin-top: -20px; font-family: 'proxima nova'; font-size: 25px; padding-left: 40px;"><span data-sheets-root="1">Producer, Singer, Songwriter, and Entrepreneur</span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">AY Young stands at the forefront of the intersection between entertainment and global sustainability. As a producer, singer, songwriter, and entrepreneur, he has electrified the music scene with over 900 concerts powered entirely by renewable energy through his pioneering initiative, the Battery Tour. This concert series not only entertains but actively funds, promotes, and deploys sustainable energy solutions to communities in need worldwide. </span></span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">Recognized as one of the 17 United Nations Youth Leaders for Sustainable Development Goals, AY's influence extends beyond the music industry. He performed at President Biden’s inauguration, marking a significant highlight in his career dedicated to advocacy and change. AY is currently channeling his passion for sustainability into "Project 17," an ambitious album created in collaboration with some of the Earth's most influential artists. Each of the 17 tracks in the album is dedicated to one of the UN's Sustainable Development Goals, featuring guest performances from renowned artists and backed by corporate sponsors like General Motors, Samsung, and BNP Paribas, who are committed to these global objectives. </span></span></p> <p style="padding-left: 40px;"><span style="font-size: 20px; font-family: 'proxima nova';"><span data-sheets-root="1">Proceeds from "Project 17" are dedicated to advancing the SDGs, with funds supporting various NGOs committed to these goals. AY’s commitment to change is palpable not only in his music but in his active engagement with global audiences, pushing for a sustainable future through every note he plays. </span></span></p> <p>&nbsp;</td> </tr> </tbody> </table> </div> </div> <script>jQuery( document ).ready( function(){ //Your codes strat from here });</script> </body> </html> <!-- Comet Cache is NOT caching this page, because the current page contains `_wpnonce` or `akismet_comment_nonce`. Your current configuration states that pages with dynamic `*nonce*` values in the markup should not be cached. See http://wsharks.com/1O1Kudy for further details. -->

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