CINXE.COM
Terms and conditions – Learning for Nature
<!doctype html> <html lang="en-US"> <head> <meta charset="UTF-8"> <link rel="profile" href="http://gmpg.org/xfn/11"> <title>Terms and conditions – 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 %> of <%= 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='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-1740164581' 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-1740164581' 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-1740164581' 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='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='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-091b153f17370a9fd375dd48776f53d8-css' href='https://www.learningfornature.org/wp-content/uploads/bb-plugin/cache/091b153f17370a9fd375dd48776f53d8-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-1740164581' 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-a67fcc4a1c99e1fe53479f09546502f4-css' href='//fonts.googleapis.com/css?family=Ubuntu%3A300%2C700%2C500%2C400&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":"05c17d1930"},"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=8304138ed9';WP_H5P_XAPI_CONTEXTACTIVITY = JSON.parse( '{"id":"https:\/\/www.learningfornature.org\/en\/terms-and-conditions\/","definition":{"name":{"en":" | Terms and conditions"},"moreInfo":"https:\/\/www.learningfornature.org\/en\/terms-and-conditions\/"}}' ); /* ]]> */ </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":"ba0b053590"}; /* ]]> */ </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/49037" /><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/terms-and-conditions/" /> <link rel='shortlink' href='https://www.learningfornature.org/en/?p=49037' /> <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%2Fterms-and-conditions%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%2Fterms-and-conditions%2F&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/terms-and-conditions/"/> <link rel="alternate" hreflang="es-ES" href="https://www.learningfornature.org/es/terms-and-conditions/"/> <link rel="alternate" hreflang="fr-FR" href="https://www.learningfornature.org/fr/terms-and-conditions/"/> <link rel="alternate" hreflang="ru-RU" href="https://www.learningfornature.org/ru/terms-and-conditions/"/> <link rel="alternate" hreflang="pt-PT" href="https://www.learningfornature.org/pt/terms-and-conditions/"/> <link rel="alternate" hreflang="sq" href="https://www.learningfornature.org/sq/terms-and-conditions/"/> <link rel="alternate" hreflang="en" href="https://www.learningfornature.org/en/terms-and-conditions/"/> <link rel="alternate" hreflang="es" href="https://www.learningfornature.org/es/terms-and-conditions/"/> <link rel="alternate" hreflang="fr" href="https://www.learningfornature.org/fr/terms-and-conditions/"/> <link rel="alternate" hreflang="ru" href="https://www.learningfornature.org/ru/terms-and-conditions/"/> <link rel="alternate" hreflang="pt" href="https://www.learningfornature.org/pt/terms-and-conditions/"/> <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 type="text/css"> h1, h2{ font-family: Ubuntu; font-weight: 500; } a, p, li{ font-family: Ubuntu; } </style> <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 21, 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-default page page-id-49037 translatepress-en_US fl-theme-builder-header fl-theme-builder-header-header-signin-and-register fl-theme-builder-part fl-theme-builder-part-home-page-mobile-final 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-54920 fl-builder-global-templates-locked" data-post-id="54920" data-type="header" data-sticky="0" data-sticky-on="desktop" data-sticky-breakpoint="medium" data-shrink="0" 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-608e6fa68e7d5" data-node="608e6fa68e7d5"> <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-608e6fa68e7dc fl-col-group-equal-height fl-col-group-align-center fl-col-group-custom-width" data-node="608e6fa68e7dc"> <div class="fl-col fl-node-608e6fa68e7dd fl-col-small" data-node="608e6fa68e7dd"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-608f823b6cde7" data-node="608f823b6cde7"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><a href="https://www.learningfornature.org/"><img decoding="async" src="https://www.learningfornature.org/wp-content/uploads/2019/08/LfN_UNDP_combined_darker3.png" /></a></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-608e6fa68e7de fl-col-small" data-node="608e6fa68e7de"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-uabb-advanced-menu fl-node-608e86e641956" data-node="608e86e641956"> <div class="fl-module-content fl-node-content"> <div class="uabb-creative-menu uabb-creative-menu-accordion-collapse uabb-menu-default"> <div class="uabb-creative-menu-mobile-toggle-container"><div class="uabb-creative-menu-mobile-toggle hamburger" tabindex="0"><div class="uabb-svg-container"><svg title="uabb-menu-toggle" version="1.1" class="hamburger-menu" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" viewBox="0 0 50 50"> <rect class="uabb-hamburger-menu-top" width="50" height="10"/> <rect class="uabb-hamburger-menu-middle" y="20" width="50" height="10"/> <rect class="uabb-hamburger-menu-bottom" y="40" width="50" height="10"/> </svg> </div></div></div> <div class="uabb-clear"></div> <ul id="menu-titlebar" class="menu uabb-creative-menu-horizontal uabb-toggle-arrows"><li id="menu-item-56251" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children uabb-has-submenu uabb-creative-menu uabb-cm-style" aria-haspopup="true"><div class="uabb-has-submenu-container"><a href="#"><span class="menu-item-text">About<span class="uabb-menu-toggle"></span></span></a></div> <ul class="sub-menu"> <li id="menu-item-56252" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/about-us/"><span class="menu-item-text">About us</span></a></li> <li id="menu-item-56253" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/our-team/"><span class="menu-item-text">Our team</span></a></li> </ul> </li> <li id="menu-item-56259" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children uabb-has-submenu uabb-creative-menu uabb-cm-style" aria-haspopup="true"><div class="uabb-has-submenu-container"><a href="#"><span class="menu-item-text">Offerings<span class="uabb-menu-toggle"></span></span></a></div> <ul class="sub-menu"> <li id="menu-item-56261" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/course-offerings/"><span class="menu-item-text">Courses</span></a></li> <li id="menu-item-56260" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/webinar-offerings/"><span class="menu-item-text">Webinars</span></a></li> <li id="menu-item-56268" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/podcasts/"><span class="menu-item-text">Podcasts</span></a></li> <li id="menu-item-56262" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/google-earth-stories/"><span class="menu-item-text">Google Earth stories</span></a></li> <li id="menu-item-56264" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/virtual-events/"><span class="menu-item-text">Virtual events</span></a></li> <li id="menu-item-117886" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/toolkits/"><span class="menu-item-text">Toolkits</span></a></li> <li id="menu-item-118444" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/tutorials/"><span class="menu-item-text">Tutorials</span></a></li> </ul> </li> <li id="menu-item-17281" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children uabb-has-submenu uabb-creative-menu uabb-cm-style" aria-haspopup="true"><div class="uabb-has-submenu-container"><a href="https://www.learningfornature.org/en/members/"><span class="menu-item-text">Community<span class="uabb-menu-toggle"></span></span></a></div> <ul class="sub-menu"> <li id="menu-item-115510" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/members/"><span class="menu-item-text">Members</span></a></li> <li id="menu-item-56269" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/impact-stories/"><span class="menu-item-text">Impact stories</span></a></li> </ul> </li> <li id="menu-item-104883" class="menu-item menu-item-type-custom menu-item-object-custom uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/nbsap-forum/"><span class="menu-item-text">NBSAP Forum</span></a></li> <li id="menu-item-13515" class="trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher menu-item-has-children current-language-menu-item uabb-has-submenu uabb-creative-menu uabb-cm-style" aria-haspopup="true"><div class="uabb-has-submenu-container"><a href="https://www.learningfornature.org/en/terms-and-conditions/"><span class="menu-item-text"><span data-no-translation><span class="trp-ls-language-name">English</span></span><span class="uabb-menu-toggle"></span></span></a></div> <ul class="sub-menu"> <li id="menu-item-13517" class="trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/fr/terms-and-conditions/"><span class="menu-item-text"><span data-no-translation><span class="trp-ls-language-name">Français</span></span></span></a></li> <li id="menu-item-13518" class="trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/es/terms-and-conditions/"><span class="menu-item-text"><span data-no-translation><span class="trp-ls-language-name">Español</span></span></span></a></li> <li id="menu-item-13516" class="trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/ru/terms-and-conditions/"><span class="menu-item-text"><span data-no-translation><span class="trp-ls-language-name">Русский</span></span></span></a></li> </ul> </li> </ul> </div> </div> </div> </div> </div> <div class="fl-col fl-node-609361d65f55e fl-col-small" data-node="609361d65f55e"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-609361d65f35f" data-node="609361d65f35f"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <div class="aligncenter"><a class="button small contact-button" href="mailto:info@learningfornature.org" target="_blank" rel="noopener">Contact</a></div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-608e7d2f1acf0 fl-col-small" data-node="608e7d2f1acf0"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-header-bar fl-node-608e7d2f1ac0f" data-node="608e7d2f1ac0f"> <div class="fl-module-content fl-node-content"> <div class="site-header site-header--beaver-builder site-header--align-right" data-search-icon="" data-messages-icon="ua-icon ua-icon-mail" data-notifications-icon="" data-cart-icon=""> <div id="header-aside" class="header-aside name_and_avatar"> <div class="header-aside-inner"> <a href="#" class="header-search-link" data-balloon-pos="down" data-balloon="Search"><i class="bb-icon-l bb-icon-search"></i></a> <span class="search-separator bb-separator"></span> <div class="bb-header-buttons"> <a href="https://www.learningfornature.org/wp-login.php" class="button small outline signin-button link">Sign in</a> <a href="https://www.learningfornature.org/en//register/" class="button small signup">Register</a> </div> </div><!-- .header-aside-inner --> </div><!-- #header-aside --> <div class="header-search-wrap header-search-wrap--beaver-builder"> <div class="container"> <form role="search" method="get" class="search-form" action="https://www.learningfornature.org/en/"> <label> <span class="screen-reader-text">Search for:</span> <input type="search" class="search-field-top" placeholder="Search..." value="" name="s" /> </label> </form> <a href="#" class="close-search"><i class="bb-icon-rl bb-icon-times"></i></a> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </header><div class="uabb-js-breakpoint" style="display: none;"></div> </header> <div class="fl-builder-content fl-builder-content-120650 fl-builder-global-templates-locked" data-post-id="120650" data-type="part"><div class="fl-row fl-row-full-width fl-row-bg-color fl-node-2wje98lpfa51 fl-visible-medium-mobile" data-node="2wje98lpfa51"> <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-xyarqg9dcphw" data-node="xyarqg9dcphw"> <div class="fl-col fl-node-6yjowxkcr9i4 fl-col-has-cols" data-node="6yjowxkcr9i4"> <div class="fl-col-content fl-node-content"> <div class="fl-col-group fl-node-u4wbdekvyj2s fl-col-group-nested fl-col-group-equal-height fl-col-group-align-center fl-col-group-custom-width" data-node="u4wbdekvyj2s"> <div class="fl-col fl-node-410xvc7ght35 fl-col-small" data-node="410xvc7ght35"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text fl-node-n0qey1i42hkg mobile-logo" data-node="n0qey1i42hkg"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p><a id="logo" href="https://www.learningfornature.org/"><img decoding="async" src="https://www.learningfornature.org/wp-content/uploads/2019/08/LfN_UNDP_combined_darker3.png" /></a></p> </div> </div> </div> </div> </div> <div class="fl-col fl-node-fdw70iqjeul5" data-node="fdw70iqjeul5"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-header-bar fl-node-movnhjid37qt" data-node="movnhjid37qt"> <div class="fl-module-content fl-node-content"> <div class="site-header site-header--beaver-builder site-header--align-right" data-search-icon="" data-messages-icon="" data-notifications-icon="" data-cart-icon=""> <div id="header-aside" class="header-aside name_and_avatar"> <div class="header-aside-inner"> <a href="#" class="header-search-link" data-balloon-pos="down" data-balloon="Search"><i class="bb-icon-l bb-icon-search"></i></a> <span class="search-separator bb-separator"></span> <div class="bb-header-buttons"> <a href="https://www.learningfornature.org/wp-login.php" class="button small outline signin-button link">Sign in</a> <a href="https://www.learningfornature.org/en//register/" class="button small signup">Register</a> </div> </div><!-- .header-aside-inner --> </div><!-- #header-aside --> <div class="header-search-wrap header-search-wrap--beaver-builder"> <div class="container"> <form role="search" method="get" class="search-form" action="https://www.learningfornature.org/en/"> <label> <span class="screen-reader-text">Search for:</span> <input type="search" class="search-field-top" placeholder="Search..." value="" name="s" /> </label> </form> <a href="#" class="close-search"><i class="bb-icon-rl bb-icon-times"></i></a> </div> </div> </div> </div> </div> </div> </div> <div class="fl-col fl-node-w2sbtxgjrpya fl-col-small" data-node="w2sbtxgjrpya"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-uabb-advanced-menu fl-node-czun182krfjs" data-node="czun182krfjs"> <div class="fl-module-content fl-node-content"> <div class="uabb-creative-menu uabb-creative-menu-accordion-collapse uabb-menu-default"> <div class="uabb-creative-menu-mobile-toggle-container"><div class="uabb-creative-menu-mobile-toggle hamburger" tabindex="0"><div class="uabb-svg-container"><svg title="uabb-menu-toggle" version="1.1" class="hamburger-menu" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" viewBox="0 0 50 50"> <rect class="uabb-hamburger-menu-top" width="50" height="10"/> <rect class="uabb-hamburger-menu-middle" y="20" width="50" height="10"/> <rect class="uabb-hamburger-menu-bottom" y="40" width="50" height="10"/> </svg> </div></div></div> <div class="uabb-clear"></div> <ul id="menu-mobile" class="menu uabb-creative-menu-horizontal uabb-toggle-arrows"><li id="menu-item-120658" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children uabb-has-submenu uabb-creative-menu uabb-cm-style" aria-haspopup="true"><div class="uabb-has-submenu-container"><a href="#"><span class="menu-item-text">About<span class="uabb-menu-toggle"></span></span></a></div> <ul class="sub-menu"> <li id="menu-item-120659" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/about-us/"><span class="menu-item-text">About us</span></a></li> <li id="menu-item-120660" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/our-team/"><span class="menu-item-text">Our team</span></a></li> </ul> </li> <li id="menu-item-120661" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children uabb-has-submenu uabb-creative-menu uabb-cm-style" aria-haspopup="true"><div class="uabb-has-submenu-container"><a href="#"><span class="menu-item-text">Offerings<span class="uabb-menu-toggle"></span></span></a></div> <ul class="sub-menu"> <li id="menu-item-120662" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/course-offerings/"><span class="menu-item-text">Courses</span></a></li> <li id="menu-item-120663" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/webinar-offerings/"><span class="menu-item-text">Webinars</span></a></li> <li id="menu-item-120664" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/podcasts/"><span class="menu-item-text">Podcasts</span></a></li> <li id="menu-item-120665" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/google-earth-stories/"><span class="menu-item-text">Google Earth stories</span></a></li> <li id="menu-item-120666" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/virtual-events/"><span class="menu-item-text">Virtual events</span></a></li> <li id="menu-item-120667" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/tutorials/"><span class="menu-item-text">Tutorials</span></a></li> </ul> </li> <li id="menu-item-120668" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children uabb-has-submenu uabb-creative-menu uabb-cm-style" aria-haspopup="true"><div class="uabb-has-submenu-container"><a href="#"><span class="menu-item-text">Community<span class="uabb-menu-toggle"></span></span></a></div> <ul class="sub-menu"> <li id="menu-item-120669" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/members/"><span class="menu-item-text">Learners Directory</span></a></li> <li id="menu-item-120670" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/impact-stories/"><span class="menu-item-text">Impact Stories</span></a></li> </ul> </li> <li id="menu-item-120671" class="menu-item menu-item-type-custom menu-item-object-custom uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/nbsap-forum/"><span class="menu-item-text">NBSAP Forum</span></a></li> <li id="menu-item-120678" class="menu-item menu-item-type-custom menu-item-object-custom uabb-creative-menu uabb-cm-style"><a href="mailto:info@learningfornature.org"><span class="menu-item-text">Contact us</span></a></li> <li id="menu-item-120672" class="trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher menu-item-has-children current-language-menu-item uabb-has-submenu uabb-creative-menu uabb-cm-style" aria-haspopup="true"><div class="uabb-has-submenu-container"><a href="https://www.learningfornature.org/en/terms-and-conditions/"><span class="menu-item-text"><span data-no-translation><span class="trp-ls-language-name">English</span></span><span class="uabb-menu-toggle"></span></span></a></div> <ul class="sub-menu"> <li id="menu-item-120674" class="trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/fr/terms-and-conditions/"><span class="menu-item-text"><span data-no-translation><span class="trp-ls-language-name">Français</span></span></span></a></li> <li id="menu-item-120675" class="trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/es/terms-and-conditions/"><span class="menu-item-text"><span data-no-translation><span class="trp-ls-language-name">Español</span></span></span></a></li> <li id="menu-item-120676" class="trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/ru/terms-and-conditions/"><span class="menu-item-text"><span data-no-translation><span class="trp-ls-language-name">Русский</span></span></span></a></li> </ul> </li> </ul> </div> <div class="uabb-creative-menu-mobile-toggle-container"><div class="uabb-creative-menu-mobile-toggle hamburger" tabindex="0"><div class="uabb-svg-container"><svg title="uabb-menu-toggle" version="1.1" class="hamburger-menu" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" viewBox="0 0 50 50"> <rect class="uabb-hamburger-menu-top" width="50" height="10"/> <rect class="uabb-hamburger-menu-middle" y="20" width="50" height="10"/> <rect class="uabb-hamburger-menu-bottom" y="40" width="50" height="10"/> </svg> </div></div></div> <div class="uabb-creative-menu uabb-creative-menu-accordion-collapse off-canvas"> <div class="uabb-clear"></div> <div class="uabb-off-canvas-menu uabb-menu-right"> <div class="uabb-menu-close-btn">×</div> <ul id="menu-mobile-1" class="menu uabb-creative-menu-horizontal uabb-toggle-arrows"><li id="menu-item-120658" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children uabb-has-submenu uabb-creative-menu uabb-cm-style" aria-haspopup="true"><div class="uabb-has-submenu-container"><a href="#"><span class="menu-item-text">About<span class="uabb-menu-toggle"></span></span></a></div> <ul class="sub-menu"> <li id="menu-item-120659" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/about-us/"><span class="menu-item-text">About us</span></a></li> <li id="menu-item-120660" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/our-team/"><span class="menu-item-text">Our team</span></a></li> </ul> </li> <li id="menu-item-120661" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children uabb-has-submenu uabb-creative-menu uabb-cm-style" aria-haspopup="true"><div class="uabb-has-submenu-container"><a href="#"><span class="menu-item-text">Offerings<span class="uabb-menu-toggle"></span></span></a></div> <ul class="sub-menu"> <li id="menu-item-120662" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/course-offerings/"><span class="menu-item-text">Courses</span></a></li> <li id="menu-item-120663" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/webinar-offerings/"><span class="menu-item-text">Webinars</span></a></li> <li id="menu-item-120664" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/podcasts/"><span class="menu-item-text">Podcasts</span></a></li> <li id="menu-item-120665" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/google-earth-stories/"><span class="menu-item-text">Google Earth stories</span></a></li> <li id="menu-item-120666" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/virtual-events/"><span class="menu-item-text">Virtual events</span></a></li> <li id="menu-item-120667" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/tutorials/"><span class="menu-item-text">Tutorials</span></a></li> </ul> </li> <li id="menu-item-120668" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children uabb-has-submenu uabb-creative-menu uabb-cm-style" aria-haspopup="true"><div class="uabb-has-submenu-container"><a href="#"><span class="menu-item-text">Community<span class="uabb-menu-toggle"></span></span></a></div> <ul class="sub-menu"> <li id="menu-item-120669" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/members/"><span class="menu-item-text">Learners Directory</span></a></li> <li id="menu-item-120670" class="menu-item menu-item-type-post_type menu-item-object-page uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/en/impact-stories/"><span class="menu-item-text">Impact Stories</span></a></li> </ul> </li> <li id="menu-item-120671" class="menu-item menu-item-type-custom menu-item-object-custom uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/nbsap-forum/"><span class="menu-item-text">NBSAP Forum</span></a></li> <li id="menu-item-120678" class="menu-item menu-item-type-custom menu-item-object-custom uabb-creative-menu uabb-cm-style"><a href="mailto:info@learningfornature.org"><span class="menu-item-text">Contact us</span></a></li> <li id="menu-item-120672" class="trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher menu-item-has-children current-language-menu-item uabb-has-submenu uabb-creative-menu uabb-cm-style" aria-haspopup="true"><div class="uabb-has-submenu-container"><a href="https://www.learningfornature.org/en/terms-and-conditions/"><span class="menu-item-text"><span data-no-translation><span class="trp-ls-language-name">English</span></span><span class="uabb-menu-toggle"></span></span></a></div> <ul class="sub-menu"> <li id="menu-item-120674" class="trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/fr/terms-and-conditions/"><span class="menu-item-text"><span data-no-translation><span class="trp-ls-language-name">Français</span></span></span></a></li> <li id="menu-item-120675" class="trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/es/terms-and-conditions/"><span class="menu-item-text"><span data-no-translation><span class="trp-ls-language-name">Español</span></span></span></a></li> <li id="menu-item-120676" class="trp-language-switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher uabb-creative-menu uabb-cm-style"><a href="https://www.learningfornature.org/ru/terms-and-conditions/"><span class="menu-item-text"><span data-no-translation><span class="trp-ls-language-name">Русский</span></span></span></a></li> </ul> </li> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div><div class="uabb-js-breakpoint" style="display: none;"></div> <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-49037" class="post-49037 page type-page status-publish hentry"> <header class="entry-header"><h1 class="entry-title">Terms and conditions</h1></header> <div class="entry-content"> <p>These terms and conditions outline the rules and regulations for the use of Learning for Nature’s website.</p> <p>By accessing this website we assume you accept these terms and conditions in full. Do not continue to use Learning for Nature’s website if you do not accept all of the terms and conditions stated on this page.</p> <p>The following terminology applies to these Terms and Conditions, Privacy Statement and Disclaimer Notice and any or all Agreements: “User”, “You” and “Your” refers to you, the person accessing this website and accepting the Company’s terms and conditions. “The Company”, “Ourselves”, “We”, “Our” and “Us”, refers to our Company. “Party”, “Parties”, or “Us”, refers to both the User and ourselves, or either the User or ourselves. All terms refer to the offer, acceptance and consideration of payment necessary to undertake the process of our assistance to the User in the most appropriate manner, whether by formal meetings of a fixed duration, or any other means, for the express purpose of meeting the User’s needs in respect of provision of the Company’s stated services/products, in accordance with and subject to, prevailing law of Belarus. Any use of the above terminology or other words in the singular, plural, capitalisation and/or he/she or they, are taken as interchangeable and therefore as referring to same.</p> <h2>Cookies</h2> <p>We employ the use of cookies. By using Learning for Nature’s website you consent to the use of cookies in accordance with Learning for Nature’s privacy policy.</p> <p>Most of the modern day interactive websites use cookies to enable us to retrieve user details for each visit. Cookies are used in some areas of our site to enable the functionality of this area and ease of use for those people visiting. Some of our affiliate / advertising partners may also use cookies.</p> <h2>License</h2> <p>Unless otherwise stated, Learning for Nature and/or it’s licensors own the intellectual property rights for all material on Learning for Nature. All intellectual property rights are reserved. You may view and/or print pages from https://learningfornature.org for your own personal use subject to restrictions set in these terms and conditions.</p> <p>You must not:</p> <ol> <li>Republish material from https://learningfornature.org</li> <li>Sell, rent or sub-license material from https://learningfornature.org</li> <li>Reproduce, duplicate or copy material from https://learningfornature.org</li> <li>Redistribute content from Learning for Nature (unless content is specifically made for redistribution).</li> </ol> <h2>User Comments</h2> <ol> <li> <ol> <li>This Agreement shall begin on the date hereof.</li> <li>Certain parts of this website offer the opportunity for users to post and exchange opinions, information, material and data (‘Comments’) in areas of the website. Learning for Nature does not screen, edit, publish or review Comments prior to their appearance on the website and Comments do not reflect the views or opinions of Learning for Nature, its agents or affiliates. Comments reflect the view and opinion of the person who posts such view or opinion. To the extent permitted by applicable laws Learning for Nature shall not be responsible or liable for the Comments or for any loss cost, liability, damages or expenses caused and or suffered as a result of any use of and/or posting of and/or appearance of the Comments on this website.</li> <li>Learning for Nature reserves the right to monitor all Comments and to remove any Comments which it considers in its absolute discretion to be inappropriate, offensive or otherwise in breach of these Terms and Conditions.</li> <li>You warrant and represent that:<br /> oYou are entitled to post the Comments on our website and have all necessary licenses and consents to do so;<br /> oThe Comments do not infringe any intellectual property right, including without limitation copyright, patent or trademark, or other proprietary right of any third party;<br /> oThe Comments do not contain any defamatory, libelous, offensive, indecent or otherwise unlawful material or material which is an invasion of privacy<br /> oThe Comments will not be used to solicit or promote business or custom or present commercial activities or unlawful activity.</li> </ol> </li> <li>You hereby grant to Learning for Nature a non-exclusive royalty-free license to use, reproduce, edit and authorize others to use, reproduce and edit any of your Comments in any and all forms, formats or media.</li> </ol> <h2>Hyperlinking to our Content</h2> <ol> <li>The following organizations may link to our website without prior written approval:<br /> o Government agencies;<br /> o Search engines;<br /> o News organizations;<br /> o Online directory distributors when they list us in the directory may link to our website in the same manner as they hyperlink to the websites of other listed businesses; and<br /> o Systemwide Accredited Businesses except soliciting non-profit organizations, charity shopping malls, and charity fundraising groups which may not hyperlink to our website.</li> <li>These organizations may link to our home page, to publications or to other website information so long as the link: (a) is not in any way misleading; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and its products or services; and (c) fits within the context of the linking party’s site.</li> <li>We may consider and approve in our sole discretion other link requests from the following types of organizations:<br /> o commonly-known consumer and/or business information sources such as Chambers of Commerce, American Automobile Association, AARP and Consumers Union;o dot.com community sites;<br /> o associations or other groups representing charities, including charity giving sites,<br /> o online directory distributors;<br /> o internet portals;<br /> o accounting, law and consulting firms whose primary Users are businesses; and<br /> o educational institutions and trade associations.</li> </ol> <p>We will approve link requests from these organizations if we determine that: (a) the link would not reflect unfavorably on us or our accredited businesses (for example, trade associations or other organizations representing inherently suspect types of business, such as work-at-home opportunities, shall not be allowed to link); (b)the organization does not have an unsatisfactory record with us; (c) the benefit to us from the visibility associated with the hyperlink outweighs the absence of Learning for Nature; and (d) where the link is in the context of general resource information or is otherwise consistent with editorial content in a newsletter or similar product furthering the mission of the organization.</p> <p>These organizations may link to our home page, to publications or to other website information so long as the link: (a) is not in any way misleading; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and it products or services; and (c) fits within the context of the linking party’s site.</p> <p>If you are among the organizations listed in paragraph 2 above and are interested in linking to our website, you must notify us by sending an e-mail to <a href="mailto:info@learningfornature.org">info@learningfornature.org</a>. Please include your name, your organization name, contact information (such as a phone number and/or e-mail address) as well as the URL of your site, a list of any URLs from which you intend to link to our website, and a list of the URL(s) on our site to which you would like to link. Allow 2-3 weeks for a response.</p> <p>Approved organizations may hyperlink to our website as follows:</p> <ol> <li> By use of our corporate name; or</li> <li>By use of the uniform resource locator (Web address) being linked to; or</li> <li>By use of any other description of our website or material being linked to that makes sense within the context and format of content on the linking party’s site.</li> </ol> <p>No use of Learning for Nature’s logo or other artwork will be allowed for linking absent a trademark license agreement.</p> <h2>Iframes</h2> <p>Without prior approval and express written permission, you may not create frames around our Web pages or use other techniques that alter in any way the visual presentation or appearance of our website.</p> <h2>Content Liability</h2> <p>We shall have no responsibility or liability for any content appearing on your website. You agree to indemnify and defend us against all claims arising out of or based upon your Website. No link(s) may appear on any page on your website or within any context containing content or materials that may be interpreted as libelous, obscene or criminal, or which infringes, otherwise violates, or advocates the infringement or other violation of, any third party rights.</p> <h2>Reservation of Rights</h2> <p>We reserve the right at any time and in its sole discretion to request that you remove all links or any particular link to our website. You agree to immediately remove all links to our website upon such request. We also reserve the right to amend these terms and conditions and its linking policy at any time. By continuing to link to our website, you agree to be bound to and abide by these linking terms and conditions.</p> <h2>Removal of links from our website</h2> <p>If you find any link on our website or any linked website objectionable for any reason, you may contact us about this. We will consider requests to remove links but will have no obligation to do so or to respond directly to you.</p> <p>Whilst we endeavour to ensure that the information on this website is correct, we do not warrant its completeness or accuracy; nor do we commit to ensuring that the website remains available or that the material on the website is kept up to date.</p> <h2>Disclaimer</h2> <p>To the maximum extent permitted by applicable law, we exclude all representations, warranties and conditions relating to our website and the use of this website (including, without limitation, any warranties implied by law in respect of satisfactory quality, fitness for purpose and/or the use of reasonable care and skill). Nothing in this disclaimer will:</p> <ol> <li>limit or exclude our or your liability for death or personal injury resulting from negligence;</li> <li>limit or exclude our or your liability for fraud or fraudulent misrepresentation;</li> <li>limit any of our or your liabilities in any way that is not permitted under applicable law; or</li> <li>exclude any of our or your liabilities that may not be excluded under applicable law.</li> </ol> <p>The limitations and exclusions of liability set out in this Section and elsewhere in this disclaimer: (a) are subject to the preceding paragraph; and (b) govern all liabilities arising under the disclaimer or in relation to the subject matter of this disclaimer, including liabilities arising in contract, in tort (including negligence) and for breach of statutory duty.</p> <p>To the extent that the website and the information and services on the website are provided free of charge, we will not be liable for any loss or damage of any nature.</p> <h2>Maps and cartographic data</h2> <p>The geographical boundaries shown and the designations used on maps, tables and documents on this website do not imply official endorsement or acceptance by the United Nations.</p> <p> </p> <p><strong>Last Edited</strong> <strong>on 07/03/2021</strong></p> </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'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/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":"f56e083614","members":"fe500e2af1","groups":"629d6fc4af","xprofile":"cd88d692d9","friends":"7b57f43bf3","media":"6707779644","document":"f1d3dfedff","video":"96c233b4fb","messages":"774377f062","settings":"3998f87192","notifications":"851497cb4c","search":"c4c25727f7","moderation":"483a1ea1dd","group_members":"2cb3397074"},"modbypass":null,"nonce":{"bp_moderation_content_nonce":"e350a7ff1f"},"current":{"message_user_id":0},"archived_threads":[],"activity":{"params":{"user_id":0,"object":"user","backcompat":false,"post_nonce":"1ef85a3ed5","post_draft_nonce":"1a03a03047","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'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":"27f6807911","send_messages":"fd4c2af393","retrieve_group_members":"87b4e5c769","send_messages_users":"7f1968e30a"}},"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":"dd64b56fb2","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":"0fd473b920","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-b75766a65bfcb84ca98296f0a44d093e.min.js?ver=2.5.5.5-1.4.3.2" id="fl-builder-layout-bundle-b75766a65bfcb84ca98296f0a44d093e-js"></script> <script type="text/javascript" id="learndash-front-js-extra"> /* <![CDATA[ */ var ldVars = {"postID":"49037","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-1740164581" 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":"df8b77bcf8","learndash":{"nonce_get_courses":"b5d3a6fedf","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>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. -->