<!doctype html >
<!--[if IE 8]>    <html class="ie8" lang="en"> <![endif]-->
<!--[if IE 9]>    <html class="ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en-US"> <!--<![endif]-->
<head>
    <title>Reviewboard Magazine | Reviews That Matter</title>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="pingback" href="https://www.reviewboard.com/xmlrpc.php" />
    <meta name='robots' content='max-image-preview:large' />
	<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
	<link rel="canonical" href="https://reviewboard.com/?option=com_ninjarsssyndicator&#038;feed_id=2&#038;format=raw"/><link rel="next" href="https://reviewboard.com/page/2/?option=com_ninjarsssyndicator&#038;feed_id=2&#038;format=raw"/><link rel="icon" type="image/png" href="http://reviewboard.com/wp-content/uploads/2022/08/Reviewboard-Magazine-Icon-1-1.png"><link rel='dns-prefetch' href='//www.reviewboard.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel="alternate" type="application/rss+xml" title="Reviewboard Magazine &raquo; Feed" href="https://reviewboard.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Reviewboard Magazine &raquo; Comments Feed" href="https://reviewboard.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="Reviewboard Magazine &raquo; Home Comments Feed" href="https://reviewboard.com/home/feed/" />
<script type="text/javascript">
/* <![CDATA[ */
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/www.reviewboard.com\/wp-includes\/js\/wp-emoji.js?ver=6.8.3","twemoji":"https:\/\/www.reviewboard.com\/wp-includes\/js\/twemoji.js?ver=6.8.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 is used to determine if the browser is rendering an emoji with multiple data points
	 * correctly. set1 is the emoji in the correct form, using a zero-width joiner. set2 is the emoji
	 * in the incorrect form, using a zero-width space. If the two sets render the same, then the browser
	 * does not support the emoji correctly.
	 *
	 * 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 ];
		} );
	}

	/**
	 * Checks if the center point of a single emoji is empty.
	 *
	 * This is used to determine if the browser is rendering an emoji with a single data point
	 * correctly. The center point of an incorrectly rendered emoji will be empty. A correctly
	 * rendered emoji will have a non-zero value at the center point.
	 *
	 * 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.8.2
	 *
	 * @private
	 *
	 * @param {CanvasRenderingContext2D} context 2D Context.
	 * @param {string} emoji Emoji to test.
	 *
	 * @return {boolean} True if the center point is empty.
	 */
	function emojiRendersEmptyCenterPoint( context, emoji ) {
		// Cleanup from previous test.
		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
		context.fillText( emoji, 0, 0 );

		// Test if the center point (16, 16) is empty (0,0,0,0).
		var centerPoint = context.getImageData(16, 16, 1, 1);
		for ( var i = 0; i < centerPoint.data.length; i++ ) {
			if ( centerPoint.data[ i ] !== 0 ) {
				// Stop checking the moment it's known not to be empty.
				return false;
			}
		}

		return true;
	}

	/**
	 * 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.
	 * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification.
	 *
	 * @return {boolean} True if the browser can render emoji, false if it cannot.
	 */
	function browserSupportsEmoji( context, type, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) {
		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 Sark 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 ([C] + [Q]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					'\uD83C\uDDE8\uD83C\uDDF6', // as the sequence of two code points
					'\uD83C\uDDE8\u200B\uD83C\uDDF6' // 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':
				/*
				 * Does Emoji 16.0 cause the browser to go splat?
				 *
				 * To test for Emoji 16.0 support, try to render a new emoji: Splatter.
				 *
				 * The splatter emoji is a single code point emoji. Testing for browser support
				 * required testing the center point of the emoji to see if it is empty.
				 *
				 * 0xD83E 0xDEDF (\uD83E\uDEDF) == 🫟 Splatter.
				 *
				 * When updating this test, please ensure that the emoji is either a single code point
				 * or switch to using the emojiSetsRenderIdentically function and testing with a zero-width
				 * joiner vs a zero-width space.
				 */
				var notSupported = emojiRendersEmptyCenterPoint( context, '\uD83E\uDEDF' );
				return ! notSupported;
		}

		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.
	 * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification.
	 *
	 * @return {SupportTests} Support tests.
	 */
	function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) {
		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, emojiRendersEmptyCenterPoint );
		} );
		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(),
						emojiRendersEmptyCenterPoint.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, emojiRendersEmptyCenterPoint );
		setSessionSupportTests( supportTests );
		resolve( supportTests );
	} )
		// Once the browser emoji support has been obtained from the session, finalize the settings.
		.then( function ( supportTests ) {
			/*
			 * Tests the browser support for flag emojis and other emojis, and adjusts the
			 * support settings accordingly.
			 */
			for ( var test in supportTests ) {
				settings.supports[ test ] = supportTests[ test ];

				settings.supports.everything =
					settings.supports.everything && settings.supports[ test ];

				if ( 'flag' !== test ) {
					settings.supports.everythingExceptFlag =
						settings.supports.everythingExceptFlag &&
						settings.supports[ test ];
				}
			}

			settings.supports.everythingExceptFlag =
				settings.supports.everythingExceptFlag &&
				! settings.supports.flag;

			// Sets DOMReady to false and assigns a ready function to settings.
			settings.DOMReady = false;
			settings.readyCallback = function () {
				settings.DOMReady = true;
			};
		} )
		.then( function () {
			return domReadyPromise;
		} )
		.then( function () {
			// When the browser can not render everything we need to load a polyfill.
			if ( ! settings.supports.everything ) {
				settings.readyCallback();

				var src = settings.source || {};

				if ( src.concatemoji ) {
					addScript( src.concatemoji );
				} else if ( src.wpemoji && src.twemoji ) {
					addScript( src.twemoji );
					addScript( src.wpemoji );
				}
			}
		} );
} )( window, document, window._wpemojiSettings );

/* ]]> */
</script>
<style id='wp-emoji-styles-inline-css' type='text/css'>

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
</style>
<style id='classic-theme-styles-inline-css' type='text/css'>
/**
 * These rules are needed for backwards compatibility.
 * They should match the button element rules in the base theme.json file.
 */
.wp-block-button__link {
	color: #ffffff;
	background-color: #32373c;
	border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */

	/* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */
	box-shadow: none;
	text-decoration: none;

	/* The extra 2px are added to size solids the same as the outline versions.*/
	padding: calc(0.667em + 2px) calc(1.333em + 2px);

	font-size: 1.125em;
}

.wp-block-file__button {
	background: #32373c;
	color: #ffffff;
	text-decoration: none;
}

</style>
<style id='global-styles-inline-css' type='text/css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 11px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 32px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-size--regular: 15px;--wp--preset--font-size--larger: 50px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='td-plugin-newsletter-css' href='https://www.reviewboard.com/wp-content/plugins/td-newsletter/style.css?ver=12.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='td-plugin-multi-purpose-css' href='https://www.reviewboard.com/wp-content/plugins/td-composer/td-multi-purpose/style.css?ver=7cd248d7ca13c255207c3f8b916c3f00' type='text/css' media='all' />
<link rel='stylesheet' id='google-fonts-style-css' href='https://fonts.googleapis.com/css?family=Open+Sans%3A400%2C600%2C700%7CRoboto%3A400%2C600%2C700%7CRubik%3A400%2C500&#038;display=swap&#038;ver=12.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='tds-front-css' href='https://www.reviewboard.com/wp-content/plugins/td-subscription/assets/css/tds-front.css?ver=1.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='td-multipurpose-css' href='https://www.reviewboard.com/wp-content/plugins/td-composer/assets/fonts/td-multipurpose/td-multipurpose.css?ver=7cd248d7ca13c255207c3f8b916c3f00' type='text/css' media='all' />
<link rel='stylesheet' id='td-theme-css' href='https://www.reviewboard.com/wp-content/themes/Newspaper/style.css?ver=12.7.3' type='text/css' media='all' />
<style id='td-theme-inline-css' type='text/css'>@media (max-width:767px){.td-header-desktop-wrap{display:none}}@media (min-width:767px){.td-header-mobile-wrap{display:none}}</style>
<link rel='stylesheet' id='td-legacy-framework-front-style-css' href='https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/css/td_legacy_main.css?ver=7cd248d7ca13c255207c3f8b916c3f00' type='text/css' media='all' />
<link rel='stylesheet' id='td-standard-pack-framework-front-style-css' href='https://www.reviewboard.com/wp-content/plugins/td-standard-pack/Newspaper/assets/css/td_standard_pack_main.css?ver=c12e6da63ed2f212e87e44e5e9b9a302' type='text/css' media='all' />
<link rel='stylesheet' id='tdb_style_cloud_templates_front-css' href='https://www.reviewboard.com/wp-content/plugins/td-cloud-library/assets/css/tdb_main.css?ver=6127d3b6131f900b2e62bb855b13dc3b' type='text/css' media='all' />
<script type="text/javascript" src="https://www.reviewboard.com/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script>
<script type="text/javascript" src="https://www.reviewboard.com/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script>
<link rel="https://api.w.org/" href="https://reviewboard.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://reviewboard.com/wp-json/wp/v2/pages/163" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.reviewboard.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.8.3" />
<link rel='shortlink' href='https://reviewboard.com/' />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://reviewboard.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Freviewboard.com%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://reviewboard.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Freviewboard.com%2F&#038;format=xml" />
    <script>
        window.tdb_global_vars = {"wpRestUrl":"https:\/\/reviewboard.com\/wp-json\/","permalinkStructure":"\/%postname%\/"};
        window.tdb_p_autoload_vars = {"isAjax":false,"isAdminBarShowing":false,"autoloadStatus":"on","origPostEditUrl":null};
    </script>
    
    <style id="tdb-global-colors">:root{--accent-color:#fff}</style>

    
	
<!-- JS generated by theme -->

<script type="text/javascript" id="td-generated-header-js">
    
    

	    var tdBlocksArray = []; //here we store all the items for the current page

	    // td_block class - each ajax block uses a object of this class for requests
	    function tdBlock() {
		    this.id = '';
		    this.block_type = 1; //block type id (1-234 etc)
		    this.atts = '';
		    this.td_column_number = '';
		    this.td_current_page = 1; //
		    this.post_count = 0; //from wp
		    this.found_posts = 0; //from wp
		    this.max_num_pages = 0; //from wp
		    this.td_filter_value = ''; //current live filter value
		    this.is_ajax_running = false;
		    this.td_user_action = ''; // load more or infinite loader (used by the animation)
		    this.header_color = '';
		    this.ajax_pagination_infinite_stop = ''; //show load more at page x
	    }

        // td_js_generator - mini detector
        ( function () {
            var htmlTag = document.getElementsByTagName("html")[0];

	        if ( navigator.userAgent.indexOf("MSIE 10.0") > -1 ) {
                htmlTag.className += ' ie10';
            }

            if ( !!navigator.userAgent.match(/Trident.*rv\:11\./) ) {
                htmlTag.className += ' ie11';
            }

	        if ( navigator.userAgent.indexOf("Edge") > -1 ) {
                htmlTag.className += ' ieEdge';
            }

            if ( /(iPad|iPhone|iPod)/g.test(navigator.userAgent) ) {
                htmlTag.className += ' td-md-is-ios';
            }

            var user_agent = navigator.userAgent.toLowerCase();
            if ( user_agent.indexOf("android") > -1 ) {
                htmlTag.className += ' td-md-is-android';
            }

            if ( -1 !== navigator.userAgent.indexOf('Mac OS X')  ) {
                htmlTag.className += ' td-md-is-os-x';
            }

            if ( /chrom(e|ium)/.test(navigator.userAgent.toLowerCase()) ) {
               htmlTag.className += ' td-md-is-chrome';
            }

            if ( -1 !== navigator.userAgent.indexOf('Firefox') ) {
                htmlTag.className += ' td-md-is-firefox';
            }

            if ( -1 !== navigator.userAgent.indexOf('Safari') && -1 === navigator.userAgent.indexOf('Chrome') ) {
                htmlTag.className += ' td-md-is-safari';
            }

            if( -1 !== navigator.userAgent.indexOf('IEMobile') ){
                htmlTag.className += ' td-md-is-iemobile';
            }

        })();

        var tdLocalCache = {};

        ( function () {
            "use strict";

            tdLocalCache = {
                data: {},
                remove: function (resource_id) {
                    delete tdLocalCache.data[resource_id];
                },
                exist: function (resource_id) {
                    return tdLocalCache.data.hasOwnProperty(resource_id) && tdLocalCache.data[resource_id] !== null;
                },
                get: function (resource_id) {
                    return tdLocalCache.data[resource_id];
                },
                set: function (resource_id, cachedData) {
                    tdLocalCache.remove(resource_id);
                    tdLocalCache.data[resource_id] = cachedData;
                }
            };
        })();

    
    
var td_viewport_interval_list=[{"limitBottom":767,"sidebarWidth":228},{"limitBottom":1018,"sidebarWidth":300},{"limitBottom":1140,"sidebarWidth":324}];
var td_animation_stack_effect="type0";
var tds_animation_stack=true;
var td_animation_stack_specific_selectors=".entry-thumb, img, .td-lazy-img";
var td_animation_stack_general_selectors=".td-animation-stack img, .td-animation-stack .entry-thumb, .post img, .td-animation-stack .td-lazy-img";
var tds_show_more_info="Show more info";
var tds_show_less_info="Show less info";
var tdc_is_installed="yes";
var tdc_domain_active=false;
var td_ajax_url="https:\/\/www.reviewboard.com\/wp-admin\/admin-ajax.php?td_theme_name=Newspaper&v=12.7.3";
var td_get_template_directory_uri="https:\/\/www.reviewboard.com\/wp-content\/plugins\/td-composer\/legacy\/common";
var tds_snap_menu="";
var tds_logo_on_sticky="";
var tds_header_style="";
var td_please_wait="Please wait...";
var td_email_user_pass_incorrect="User or password incorrect!";
var td_email_user_incorrect="Email or username incorrect!";
var td_email_incorrect="Email incorrect!";
var td_user_incorrect="Username incorrect!";
var td_email_user_empty="Email or username empty!";
var td_pass_empty="Pass empty!";
var td_pass_pattern_incorrect="Invalid Pass Pattern!";
var td_retype_pass_incorrect="Retyped Pass incorrect!";
var tds_more_articles_on_post_enable="";
var tds_more_articles_on_post_time_to_wait="";
var tds_more_articles_on_post_pages_distance_from_top=0;
var tds_captcha="";
var tds_theme_color_site_wide="#008d7f";
var tds_smart_sidebar="";
var tdThemeName="Newspaper";
var tdThemeNameWl="Newspaper";
var td_magnific_popup_translation_tPrev="Previous (Left arrow key)";
var td_magnific_popup_translation_tNext="Next (Right arrow key)";
var td_magnific_popup_translation_tCounter="%curr% of %total%";
var td_magnific_popup_translation_ajax_tError="The content from %url% could not be loaded.";
var td_magnific_popup_translation_image_tError="The image #%curr% could not be loaded.";
var tdBlockNonce="15e297fd9d";
var tdMobileMenu="enabled";
var tdMobileSearch="enabled";
var tdDateNamesI18n={"month_names":["January","February","March","April","May","June","July","August","September","October","November","December"],"month_names_short":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"day_names":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"day_names_short":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]};
var td_reset_pass_empty="Please enter a new password before proceeding.";
var td_reset_pass_confirm_empty="Please confirm the new password before proceeding.";
var td_reset_pass_not_matching="Please make sure that the passwords match.";
var tdb_modal_confirm="Save";
var tdb_modal_cancel="Cancel";
var tdb_modal_confirm_alt="Yes";
var tdb_modal_cancel_alt="No";
var td_deploy_mode="deploy";
var td_ad_background_click_link="";
var td_ad_background_click_target="";
</script>


<!-- Header style compiled by theme -->

<style>.td-header-wrap .black-menu .sf-menu>.current-menu-item>a,.td-header-wrap .black-menu .sf-menu>.current-menu-ancestor>a,.td-header-wrap .black-menu .sf-menu>.current-category-ancestor>a,.td-header-wrap .black-menu .sf-menu>li>a:hover,.td-header-wrap .black-menu .sf-menu>.sfHover>a,.sf-menu>.current-menu-item>a:after,.sf-menu>.current-menu-ancestor>a:after,.sf-menu>.current-category-ancestor>a:after,.sf-menu>li:hover>a:after,.sf-menu>.sfHover>a:after,.header-search-wrap .td-drop-down-search:after,.header-search-wrap .td-drop-down-search .btn:hover,input[type=submit]:hover,.td-read-more a,.td-post-category:hover,.td_top_authors .td-active .td-author-post-count,.td_top_authors .td-active .td-author-comments-count,.td_top_authors .td_mod_wrap:hover .td-author-post-count,.td_top_authors .td_mod_wrap:hover .td-author-comments-count,.td-404-sub-sub-title a:hover,.td-search-form-widget .wpb_button:hover,.td-rating-bar-wrap div,.dropcap,.td_wrapper_video_playlist .td_video_controls_playlist_wrapper,.wpb_default,.wpb_default:hover,.td-left-smart-list:hover,.td-right-smart-list:hover,#bbpress-forums button:hover,.bbp_widget_login .button:hover,.td-footer-wrapper .td-post-category,.td-footer-wrapper .widget_product_search input[type="submit"]:hover,.single-product .product .summary .cart .button:hover,.td-next-prev-wrap a:hover,.td-load-more-wrap a:hover,.td-post-small-box a:hover,.page-nav .current,.page-nav:first-child>div,#bbpress-forums .bbp-pagination .current,#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a,.td-theme-slider:hover .slide-meta-cat a,a.vc_btn-black:hover,.td-trending-now-wrapper:hover .td-trending-now-title,.td-scroll-up,.td-smart-list-button:hover,.td-weather-information:before,.td-weather-week:before,.td_block_exchange .td-exchange-header:before,.td-pulldown-syle-2 .td-subcat-dropdown ul:after,.td_block_template_9 .td-block-title:after,.td_block_template_15 .td-block-title:before,div.wpforms-container .wpforms-form div.wpforms-submit-container button[type=submit],.td-close-video-fixed{background-color:#008d7f}.td_block_template_4 .td-related-title .td-cur-simple-item:before{border-color:#008d7f transparent transparent transparent!important}.td_block_template_4 .td-related-title .td-cur-simple-item,.td_block_template_3 .td-related-title .td-cur-simple-item,.td_block_template_9 .td-related-title:after{background-color:#008d7f}a,cite a:hover,.td-page-content blockquote p,.td-post-content blockquote p,.mce-content-body blockquote p,.comment-content blockquote p,.wpb_text_column blockquote p,.td_block_text_with_title blockquote p,.td_module_wrap:hover .entry-title a,.td-subcat-filter .td-subcat-list a:hover,.td-subcat-filter .td-subcat-dropdown a:hover,.td_quote_on_blocks,.dropcap2,.dropcap3,.td_top_authors .td-active .td-authors-name a,.td_top_authors .td_mod_wrap:hover .td-authors-name a,.td-post-next-prev-content a:hover,.author-box-wrap .td-author-social a:hover,.td-author-name a:hover,.td-author-url a:hover,.comment-reply-link:hover,.logged-in-as a:hover,#cancel-comment-reply-link:hover,.td-search-query,.widget a:hover,.td_wp_recentcomments a:hover,.archive .widget_archive .current,.archive .widget_archive .current a,.widget_calendar tfoot a:hover,#bbpress-forums li.bbp-header .bbp-reply-content span a:hover,#bbpress-forums .bbp-forum-freshness a:hover,#bbpress-forums .bbp-topic-freshness a:hover,#bbpress-forums .bbp-forums-list li a:hover,#bbpress-forums .bbp-forum-title:hover,#bbpress-forums .bbp-topic-permalink:hover,#bbpress-forums .bbp-topic-started-by a:hover,#bbpress-forums .bbp-topic-started-in a:hover,#bbpress-forums .bbp-body .super-sticky li.bbp-topic-title .bbp-topic-permalink,#bbpress-forums .bbp-body .sticky li.bbp-topic-title .bbp-topic-permalink,.widget_display_replies .bbp-author-name,.widget_display_topics .bbp-author-name,.td-subfooter-menu li a:hover,a.vc_btn-black:hover,.td-smart-list-dropdown-wrap .td-smart-list-button:hover,.td-instagram-user a,.td-block-title-wrap .td-wrapper-pulldown-filter .td-pulldown-filter-display-option:hover,.td-block-title-wrap .td-wrapper-pulldown-filter .td-pulldown-filter-display-option:hover i,.td-block-title-wrap .td-wrapper-pulldown-filter .td-pulldown-filter-link:hover,.td-block-title-wrap .td-wrapper-pulldown-filter .td-pulldown-filter-item .td-cur-simple-item,.td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more span,.td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more i,.td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more span,.td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more i,.td_block_template_2 .td-related-title .td-cur-simple-item,.td_block_template_5 .td-related-title .td-cur-simple-item,.td_block_template_6 .td-related-title .td-cur-simple-item,.td_block_template_7 .td-related-title .td-cur-simple-item,.td_block_template_8 .td-related-title .td-cur-simple-item,.td_block_template_9 .td-related-title .td-cur-simple-item,.td_block_template_10 .td-related-title .td-cur-simple-item,.td_block_template_11 .td-related-title .td-cur-simple-item,.td_block_template_12 .td-related-title .td-cur-simple-item,.td_block_template_13 .td-related-title .td-cur-simple-item,.td_block_template_14 .td-related-title .td-cur-simple-item,.td_block_template_15 .td-related-title .td-cur-simple-item,.td_block_template_16 .td-related-title .td-cur-simple-item,.td_block_template_17 .td-related-title .td-cur-simple-item,.td-theme-wrap .sf-menu ul .td-menu-item>a:hover,.td-theme-wrap .sf-menu ul .sfHover>a,.td-theme-wrap .sf-menu ul .current-menu-ancestor>a,.td-theme-wrap .sf-menu ul .current-category-ancestor>a,.td-theme-wrap .sf-menu ul .current-menu-item>a,.td_outlined_btn,.td_block_categories_tags .td-ct-item:hover{color:#008d7f}a.vc_btn-black.vc_btn_square_outlined:hover,a.vc_btn-black.vc_btn_outlined:hover{color:#008d7f!important}.td-next-prev-wrap a:hover,.td-load-more-wrap a:hover,.td-post-small-box a:hover,.page-nav .current,.page-nav:first-child>div,#bbpress-forums .bbp-pagination .current,.post .td_quote_box,.page .td_quote_box,a.vc_btn-black:hover,.td_block_template_5 .td-block-title>*,.td_outlined_btn{border-color:#008d7f}.td_wrapper_video_playlist .td_video_currently_playing:after{border-color:#008d7f!important}.header-search-wrap .td-drop-down-search:before{border-color:transparent transparent #008d7f transparent}.block-title>span,.block-title>a,.block-title>label,.widgettitle,.widgettitle:after,body .td-trending-now-title,.td-trending-now-wrapper:hover .td-trending-now-title,.wpb_tabs li.ui-tabs-active a,.wpb_tabs li:hover a,.vc_tta-container .vc_tta-color-grey.vc_tta-tabs-position-top.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tab.vc_active>a,.vc_tta-container .vc_tta-color-grey.vc_tta-tabs-position-top.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tab:hover>a,.td_block_template_1 .td-related-title .td-cur-simple-item,.td-subcat-filter .td-subcat-dropdown:hover .td-subcat-more,.td_3D_btn,.td_shadow_btn,.td_default_btn,.td_round_btn,.td_outlined_btn:hover{background-color:#008d7f}.block-title,.td_block_template_1 .td-related-title,.wpb_tabs .wpb_tabs_nav,.vc_tta-container .vc_tta-color-grey.vc_tta-tabs-position-top.vc_tta-style-classic .vc_tta-tabs-container{border-color:#008d7f}.td_block_wrap .td-subcat-item a.td-cur-simple-item{color:#008d7f}.td-grid-style-4 .entry-title{background-color:rgba(0,141,127,0.7)}.td-menu-background:before,.td-search-background:before{background:rgba(16,29,33,0.8);background:-moz-linear-gradient(top,rgba(16,29,33,0.8) 0%,rgba(11,86,89,0.8) 100%);background:-webkit-gradient(left top,left bottom,color-stop(0%,rgba(16,29,33,0.8)),color-stop(100%,rgba(11,86,89,0.8)));background:-webkit-linear-gradient(top,rgba(16,29,33,0.8) 0%,rgba(11,86,89,0.8) 100%);background:-o-linear-gradient(top,rgba(16,29,33,0.8) 0%,rgba(11,86,89,0.8) 100%);background:-ms-linear-gradient(top,rgba(16,29,33,0.8) 0%,rgba(11,86,89,0.8) 100%);background:linear-gradient(to bottom,rgba(16,29,33,0.8) 0%,rgba(11,86,89,0.8) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(16,29,33,0.8)',endColorstr='rgba(11,86,89,0.8)',GradientType=0)}.td-mobile-content .current-menu-item>a,.td-mobile-content .current-menu-ancestor>a,.td-mobile-content .current-category-ancestor>a,#td-mobile-nav .td-menu-login-section a:hover,#td-mobile-nav .td-register-section a:hover,#td-mobile-nav .td-menu-socials-wrap a:hover i,.td-search-close a:hover i{color:#00a392}.td-menu-background,.td-search-background{background-image:url('http://reviewboard.com/wp-content/uploads/2022/08/mob.jpg')}body{background-image:url("http://reviewboard.com/wp-content/uploads/2022/08/bg.png");background-attachment:fixed}.td-header-wrap .black-menu .sf-menu>.current-menu-item>a,.td-header-wrap .black-menu .sf-menu>.current-menu-ancestor>a,.td-header-wrap .black-menu .sf-menu>.current-category-ancestor>a,.td-header-wrap .black-menu .sf-menu>li>a:hover,.td-header-wrap .black-menu .sf-menu>.sfHover>a,.sf-menu>.current-menu-item>a:after,.sf-menu>.current-menu-ancestor>a:after,.sf-menu>.current-category-ancestor>a:after,.sf-menu>li:hover>a:after,.sf-menu>.sfHover>a:after,.header-search-wrap .td-drop-down-search:after,.header-search-wrap .td-drop-down-search .btn:hover,input[type=submit]:hover,.td-read-more a,.td-post-category:hover,.td_top_authors .td-active .td-author-post-count,.td_top_authors .td-active .td-author-comments-count,.td_top_authors .td_mod_wrap:hover .td-author-post-count,.td_top_authors .td_mod_wrap:hover .td-author-comments-count,.td-404-sub-sub-title a:hover,.td-search-form-widget .wpb_button:hover,.td-rating-bar-wrap div,.dropcap,.td_wrapper_video_playlist .td_video_controls_playlist_wrapper,.wpb_default,.wpb_default:hover,.td-left-smart-list:hover,.td-right-smart-list:hover,#bbpress-forums button:hover,.bbp_widget_login .button:hover,.td-footer-wrapper .td-post-category,.td-footer-wrapper .widget_product_search input[type="submit"]:hover,.single-product .product .summary .cart .button:hover,.td-next-prev-wrap a:hover,.td-load-more-wrap a:hover,.td-post-small-box a:hover,.page-nav .current,.page-nav:first-child>div,#bbpress-forums .bbp-pagination .current,#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a,.td-theme-slider:hover .slide-meta-cat a,a.vc_btn-black:hover,.td-trending-now-wrapper:hover .td-trending-now-title,.td-scroll-up,.td-smart-list-button:hover,.td-weather-information:before,.td-weather-week:before,.td_block_exchange .td-exchange-header:before,.td-pulldown-syle-2 .td-subcat-dropdown ul:after,.td_block_template_9 .td-block-title:after,.td_block_template_15 .td-block-title:before,div.wpforms-container .wpforms-form div.wpforms-submit-container button[type=submit],.td-close-video-fixed{background-color:#008d7f}.td_block_template_4 .td-related-title .td-cur-simple-item:before{border-color:#008d7f transparent transparent transparent!important}.td_block_template_4 .td-related-title .td-cur-simple-item,.td_block_template_3 .td-related-title .td-cur-simple-item,.td_block_template_9 .td-related-title:after{background-color:#008d7f}a,cite a:hover,.td-page-content blockquote p,.td-post-content blockquote p,.mce-content-body blockquote p,.comment-content blockquote p,.wpb_text_column blockquote p,.td_block_text_with_title blockquote p,.td_module_wrap:hover .entry-title a,.td-subcat-filter .td-subcat-list a:hover,.td-subcat-filter .td-subcat-dropdown a:hover,.td_quote_on_blocks,.dropcap2,.dropcap3,.td_top_authors .td-active .td-authors-name a,.td_top_authors .td_mod_wrap:hover .td-authors-name a,.td-post-next-prev-content a:hover,.author-box-wrap .td-author-social a:hover,.td-author-name a:hover,.td-author-url a:hover,.comment-reply-link:hover,.logged-in-as a:hover,#cancel-comment-reply-link:hover,.td-search-query,.widget a:hover,.td_wp_recentcomments a:hover,.archive .widget_archive .current,.archive .widget_archive .current a,.widget_calendar tfoot a:hover,#bbpress-forums li.bbp-header .bbp-reply-content span a:hover,#bbpress-forums .bbp-forum-freshness a:hover,#bbpress-forums .bbp-topic-freshness a:hover,#bbpress-forums .bbp-forums-list li a:hover,#bbpress-forums .bbp-forum-title:hover,#bbpress-forums .bbp-topic-permalink:hover,#bbpress-forums .bbp-topic-started-by a:hover,#bbpress-forums .bbp-topic-started-in a:hover,#bbpress-forums .bbp-body .super-sticky li.bbp-topic-title .bbp-topic-permalink,#bbpress-forums .bbp-body .sticky li.bbp-topic-title .bbp-topic-permalink,.widget_display_replies .bbp-author-name,.widget_display_topics .bbp-author-name,.td-subfooter-menu li a:hover,a.vc_btn-black:hover,.td-smart-list-dropdown-wrap .td-smart-list-button:hover,.td-instagram-user a,.td-block-title-wrap .td-wrapper-pulldown-filter .td-pulldown-filter-display-option:hover,.td-block-title-wrap .td-wrapper-pulldown-filter .td-pulldown-filter-display-option:hover i,.td-block-title-wrap .td-wrapper-pulldown-filter .td-pulldown-filter-link:hover,.td-block-title-wrap .td-wrapper-pulldown-filter .td-pulldown-filter-item .td-cur-simple-item,.td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more span,.td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more i,.td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more span,.td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more i,.td_block_template_2 .td-related-title .td-cur-simple-item,.td_block_template_5 .td-related-title .td-cur-simple-item,.td_block_template_6 .td-related-title .td-cur-simple-item,.td_block_template_7 .td-related-title .td-cur-simple-item,.td_block_template_8 .td-related-title .td-cur-simple-item,.td_block_template_9 .td-related-title .td-cur-simple-item,.td_block_template_10 .td-related-title .td-cur-simple-item,.td_block_template_11 .td-related-title .td-cur-simple-item,.td_block_template_12 .td-related-title .td-cur-simple-item,.td_block_template_13 .td-related-title .td-cur-simple-item,.td_block_template_14 .td-related-title .td-cur-simple-item,.td_block_template_15 .td-related-title .td-cur-simple-item,.td_block_template_16 .td-related-title .td-cur-simple-item,.td_block_template_17 .td-related-title .td-cur-simple-item,.td-theme-wrap .sf-menu ul .td-menu-item>a:hover,.td-theme-wrap .sf-menu ul .sfHover>a,.td-theme-wrap .sf-menu ul .current-menu-ancestor>a,.td-theme-wrap .sf-menu ul .current-category-ancestor>a,.td-theme-wrap .sf-menu ul .current-menu-item>a,.td_outlined_btn,.td_block_categories_tags .td-ct-item:hover{color:#008d7f}a.vc_btn-black.vc_btn_square_outlined:hover,a.vc_btn-black.vc_btn_outlined:hover{color:#008d7f!important}.td-next-prev-wrap a:hover,.td-load-more-wrap a:hover,.td-post-small-box a:hover,.page-nav .current,.page-nav:first-child>div,#bbpress-forums .bbp-pagination .current,.post .td_quote_box,.page .td_quote_box,a.vc_btn-black:hover,.td_block_template_5 .td-block-title>*,.td_outlined_btn{border-color:#008d7f}.td_wrapper_video_playlist .td_video_currently_playing:after{border-color:#008d7f!important}.header-search-wrap .td-drop-down-search:before{border-color:transparent transparent #008d7f transparent}.block-title>span,.block-title>a,.block-title>label,.widgettitle,.widgettitle:after,body .td-trending-now-title,.td-trending-now-wrapper:hover .td-trending-now-title,.wpb_tabs li.ui-tabs-active a,.wpb_tabs li:hover a,.vc_tta-container .vc_tta-color-grey.vc_tta-tabs-position-top.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tab.vc_active>a,.vc_tta-container .vc_tta-color-grey.vc_tta-tabs-position-top.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tab:hover>a,.td_block_template_1 .td-related-title .td-cur-simple-item,.td-subcat-filter .td-subcat-dropdown:hover .td-subcat-more,.td_3D_btn,.td_shadow_btn,.td_default_btn,.td_round_btn,.td_outlined_btn:hover{background-color:#008d7f}.block-title,.td_block_template_1 .td-related-title,.wpb_tabs .wpb_tabs_nav,.vc_tta-container .vc_tta-color-grey.vc_tta-tabs-position-top.vc_tta-style-classic .vc_tta-tabs-container{border-color:#008d7f}.td_block_wrap .td-subcat-item a.td-cur-simple-item{color:#008d7f}.td-grid-style-4 .entry-title{background-color:rgba(0,141,127,0.7)}.td-menu-background:before,.td-search-background:before{background:rgba(16,29,33,0.8);background:-moz-linear-gradient(top,rgba(16,29,33,0.8) 0%,rgba(11,86,89,0.8) 100%);background:-webkit-gradient(left top,left bottom,color-stop(0%,rgba(16,29,33,0.8)),color-stop(100%,rgba(11,86,89,0.8)));background:-webkit-linear-gradient(top,rgba(16,29,33,0.8) 0%,rgba(11,86,89,0.8) 100%);background:-o-linear-gradient(top,rgba(16,29,33,0.8) 0%,rgba(11,86,89,0.8) 100%);background:-ms-linear-gradient(top,rgba(16,29,33,0.8) 0%,rgba(11,86,89,0.8) 100%);background:linear-gradient(to bottom,rgba(16,29,33,0.8) 0%,rgba(11,86,89,0.8) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(16,29,33,0.8)',endColorstr='rgba(11,86,89,0.8)',GradientType=0)}.td-mobile-content .current-menu-item>a,.td-mobile-content .current-menu-ancestor>a,.td-mobile-content .current-category-ancestor>a,#td-mobile-nav .td-menu-login-section a:hover,#td-mobile-nav .td-register-section a:hover,#td-mobile-nav .td-menu-socials-wrap a:hover i,.td-search-close a:hover i{color:#00a392}.td-menu-background,.td-search-background{background-image:url('http://reviewboard.com/wp-content/uploads/2022/08/mob.jpg')}</style>


<!-- Button style compiled by theme -->

<style>.tdm-btn-style1{background-color:#008d7f}.tdm-btn-style2:before{border-color:#008d7f}.tdm-btn-style2{color:#008d7f}.tdm-btn-style3{-webkit-box-shadow:0 2px 16px #008d7f;-moz-box-shadow:0 2px 16px #008d7f;box-shadow:0 2px 16px #008d7f}.tdm-btn-style3:hover{-webkit-box-shadow:0 4px 26px #008d7f;-moz-box-shadow:0 4px 26px #008d7f;box-shadow:0 4px 26px #008d7f}</style>

	<style id="tdw-css-placeholder"></style></head>

<body class="home wp-singular page-template-default page page-id-163 wp-theme-Newspaper td-standard-pack global-block-template-1 tdb-template  tdc-header-template  tdc-footer-template td-animation-stack-type0 td-boxed-layout" itemscope="itemscope" itemtype="https://schema.org/WebPage">

<div class="td-scroll-up" data-style="style1"><i class="td-icon-menu-up"></i></div>
    <div class="td-menu-background" style="visibility:hidden"></div>
<div id="td-mobile-nav" style="visibility:hidden">
    <div class="td-mobile-container">
        <!-- mobile menu top section -->
        <div class="td-menu-socials-wrap">
            <!-- socials -->
            <div class="td-menu-socials">
                            </div>
            <!-- close button -->
            <div class="td-mobile-close">
                <span><i class="td-icon-close-mobile"></i></span>
            </div>
        </div>

        <!-- login section -->
        
        <!-- menu section -->
        <div class="td-mobile-content">
            <div class="menu-td-demo-header-menu-container"><ul id="menu-td-demo-header-menu-2" class="td-mobile-main-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-163 current_page_item menu-item-first menu-item-167"><a href="https://reviewboard.com/"><i class="tdc-font-tdmp tdc-font-tdmp-home"></i> Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-168"><a href="https://reviewboard.com/category/global/"><i class="tdc-font-tdmp tdc-font-tdmp-globe"></i> Global</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-169"><a href="https://reviewboard.com/category/lifestyle/"><i class="tdc-font-tdmp tdc-font-tdmp-bicycle"></i> Lifestyle<i class="td-icon-menu-right td-element-after"></i></a>
<ul class="sub-menu">
	<li class="menu-item-0"><a href="https://reviewboard.com/category/lifestyle/music/">Music</a></li>
	<li class="menu-item-0"><a href="https://reviewboard.com/category/lifestyle/receipes/">Receipes</a></li>
	<li class="menu-item-0"><a href="https://reviewboard.com/category/lifestyle/travel/">Travel</a></li>
	<li class="menu-item-0"><a href="https://reviewboard.com/category/lifestyle/whats-hot/">What&#8217;s Hot</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-170"><a href="https://reviewboard.com/category/fashion/"><i class="tdc-font-tdmp tdc-font-tdmp-lotus"></i> Fashion</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-171"><a href="https://reviewboard.com/category/gaming/"><i class="tdc-font-tdmp tdc-font-tdmp-chip"></i> Gaming</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-172"><a href="https://reviewboard.com/category/fitness/"><i class="tdc-font-tdmp tdc-font-tdmp-pulse"></i> Fitness</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-173"><a href="https://reviewboard.com/category/video/"><i class="tdc-font-tdmp tdc-font-tdmp-apperture"></i> Video</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-174"><a href="#">More<i class="td-icon-menu-right td-element-after"></i></a>
<ul class="sub-menu">
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-175"><a href="https://reviewboard.com/category/photography/"><i class="tdc-font-tdmp tdc-font-tdmp-photo"></i> Photography</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-176"><a href="https://reviewboard.com/category/showbiz/"><i class="tdc-font-tdmp tdc-font-tdmp-bulb-idea"></i> Showbiz</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-177"><a href="https://reviewboard.com/category/gadgets/"><i class="tdc-font-tdmp tdc-font-tdmp-responsive-devices"></i> Gadgets</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-178"><a href="https://reviewboard.com/category/facts/"><i class="tdc-font-tdmp tdc-font-tdmp-megaphone"></i> Facts</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-179"><a href="https://reviewboard.com/category/style/"><i class="tdc-font-tdmp tdc-font-tdmp-leves"></i> Style</a></li>
</ul>
</li>
</ul></div>        </div>
    </div>

    <!-- register/login section -->
    </div><div class="td-search-background" style="visibility:hidden"></div>
<div class="td-search-wrap-mob" style="visibility:hidden">
	<div class="td-drop-down-search">
		<form method="get" class="td-search-form" action="https://reviewboard.com/">
			<!-- close button -->
			<div class="td-search-close">
				<span><i class="td-icon-close-mobile"></i></span>
			</div>
			<div role="search" class="td-search-input">
				<span>Search</span>
				<input id="td-header-search-mob" type="text" value="" name="s" autocomplete="off" />
			</div>
		</form>
		<div id="td-aj-search-mob" class="td-ajax-search-flex"></div>
	</div>
</div>

    <div id="td-outer-wrap" class="td-theme-wrap">
    
                    <div class="td-header-template-wrap" style="position: relative">
                                    <div class="td-header-mobile-wrap ">
                        <div id="tdi_1" class="tdc-zone"><div class="tdc_zone tdi_2  wpb_row td-pb-row tdc-element-style"  >
<style scoped>.tdi_2{min-height:0}.tdi_2>.td-element-style:after{content:''!important;width:100%!important;height:100%!important;position:absolute!important;top:0!important;left:0!important;z-index:0!important;display:block!important;background-color:#ffffff!important}.td-header-mobile-wrap{position:relative;width:100%}@media (max-width:767px){.tdi_2:before{content:'';display:block;width:100vw;height:100%;position:absolute;left:50%;transform:translateX(-50%);box-shadow:none;z-index:20;pointer-events:none}@media (max-width:767px){.tdi_2:before{width:100%}}}</style>
<div class="tdi_1_rand_style td-element-style" ></div><div id="tdi_3" class="tdc-row"><div class="vc_row tdi_4  wpb_row td-pb-row tdc-element-style" >
<style scoped>.tdi_4,.tdi_4 .tdc-columns{min-height:0}.tdi_4,.tdi_4 .tdc-columns{display:block}.tdi_4 .tdc-columns{width:100%}.tdi_4:before,.tdi_4:after{display:table}@media (max-width:767px){@media (min-width:768px){.tdi_4{margin-left:-0px;margin-right:-0px}.tdi_4 .tdc-row-video-background-error,.tdi_4>.vc_column,.tdi_4>.tdc-columns>.vc_column{padding-left:0px;padding-right:0px}}}@media (max-width:767px){.tdi_4{position:relative}}</style>
<div class="tdi_3_rand_style td-element-style" ><div class="td-element-style-before"><style>@media (max-width:767px){.tdi_3_rand_style>.td-element-style-before{content:''!important;width:100%!important;height:100%!important;position:absolute!important;top:0!important;left:0!important;display:block!important;z-index:0!important;background-image:url("http://reviewboard.com/wp-content/uploads/2022/08/bghd.jpg")!important;opacity:0.2!important;background-size:cover!important;background-position:center top!important}}</style></div><style>@media (max-width:767px){.tdi_3_rand_style{background-color:#232d35!important}}</style></div><div class="vc_column tdi_6  wpb_column vc_column_container tdc-column td-pb-span4">
<style scoped>.tdi_6{vertical-align:baseline}.tdi_6>.wpb_wrapper,.tdi_6>.wpb_wrapper>.tdc-elements{display:block}.tdi_6>.wpb_wrapper>.tdc-elements{width:100%}.tdi_6>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_6>.wpb_wrapper{width:auto;height:auto}@media (max-width:767px){.tdi_6{vertical-align:middle}}@media (max-width:767px){.tdi_6{width:20%!important;display:inline-block!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_mobile_menu tdi_7 td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_7" >
<style>@media (max-width:767px){.tdi_7{margin-left:-16px!important}}</style>
<style>.tdb-header-align{vertical-align:middle}.tdb_mobile_menu{margin-bottom:0;clear:none}.tdb_mobile_menu a{display:inline-block!important;position:relative;text-align:center;color:var(--td_theme_color,#4db2ec)}.tdb_mobile_menu a>span{display:flex;align-items:center;justify-content:center}.tdb_mobile_menu svg{height:auto}.tdb_mobile_menu svg,.tdb_mobile_menu svg *{fill:var(--td_theme_color,#4db2ec)}#tdc-live-iframe .tdb_mobile_menu a{pointer-events:none}.td-menu-mob-open-menu{overflow:hidden}.td-menu-mob-open-menu #td-outer-wrap{position:static}.tdi_7{display:inline-block}.tdi_7 .tdb-mobile-menu-button i{font-size:22px;width:55px;height:55px;line-height:55px}.tdi_7 .tdb-mobile-menu-button svg{width:22px}.tdi_7 .tdb-mobile-menu-button .tdb-mobile-menu-icon-svg{width:55px;height:55px}.tdi_7 .tdb-mobile-menu-button{color:#ffffff}.tdi_7 .tdb-mobile-menu-button svg,.tdi_7 .tdb-mobile-menu-button svg *{fill:#ffffff}@media (max-width:767px){.tdi_7 .tdb-mobile-menu-button i{font-size:27px;width:54px;height:54px;line-height:54px}.tdi_7 .tdb-mobile-menu-button svg{width:27px}.tdi_7 .tdb-mobile-menu-button .tdb-mobile-menu-icon-svg{width:54px;height:54px}}</style><div class="tdb-block-inner td-fix-index"><span class="tdb-mobile-menu-button"><span class="tdb-mobile-menu-icon tdb-mobile-menu-icon-svg" ><svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024"><path d="M903.864 490.013h-783.749c-17.172 0-31.109 13.937-31.109 31.109 0 17.234 13.937 31.15 31.109 31.15h783.739c17.213 0 31.13-13.916 31.13-31.15 0.010-17.162-13.916-31.109-31.119-31.109zM903.864 226.835h-783.749c-17.172 0-31.109 13.916-31.109 31.16 0 17.213 13.937 31.109 31.109 31.109h783.739c17.213 0 31.13-13.896 31.13-31.109 0.010-17.234-13.916-31.16-31.119-31.16zM903.864 753.181h-783.749c-17.172 0-31.109 13.916-31.109 31.099 0 17.244 13.937 31.16 31.109 31.16h783.739c17.213 0 31.13-13.916 31.13-31.16 0.010-17.172-13.916-31.099-31.119-31.099z"></path></svg></span></span></div></div> <!-- ./block --></div></div><div class="vc_column tdi_9  wpb_column vc_column_container tdc-column td-pb-span4">
<style scoped>.tdi_9{vertical-align:baseline}.tdi_9>.wpb_wrapper,.tdi_9>.wpb_wrapper>.tdc-elements{display:block}.tdi_9>.wpb_wrapper>.tdc-elements{width:100%}.tdi_9>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_9>.wpb_wrapper{width:auto;height:auto}@media (max-width:767px){.tdi_9{vertical-align:middle}}@media (max-width:767px){.tdi_9{width:60%!important;display:inline-block!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_header_logo tdi_10 td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_10" >
<style>.tdb_header_logo{margin-bottom:0;clear:none}.tdb_header_logo .tdb-logo-a,.tdb_header_logo h1{display:flex;pointer-events:auto;align-items:flex-start}.tdb_header_logo h1{margin:0;line-height:0}.tdb_header_logo .tdb-logo-img-wrap img{display:block}.tdb_header_logo .tdb-logo-svg-wrap+.tdb-logo-img-wrap{display:none}.tdb_header_logo .tdb-logo-svg-wrap svg{width:50px;display:block;transition:fill .3s ease}.tdb_header_logo .tdb-logo-text-wrap{display:flex}.tdb_header_logo .tdb-logo-text-title,.tdb_header_logo .tdb-logo-text-tagline{-webkit-transition:all 0.2s ease;transition:all 0.2s ease}.tdb_header_logo .tdb-logo-text-title{background-size:cover;background-position:center center;font-size:75px;font-family:serif;line-height:1.1;color:#222;white-space:nowrap}.tdb_header_logo .tdb-logo-text-tagline{margin-top:2px;font-size:12px;font-family:serif;letter-spacing:1.8px;line-height:1;color:#767676}.tdb_header_logo .tdb-logo-icon{position:relative;font-size:46px;color:#000}.tdb_header_logo .tdb-logo-icon-svg{line-height:0}.tdb_header_logo .tdb-logo-icon-svg svg{width:46px;height:auto}.tdb_header_logo .tdb-logo-icon-svg svg,.tdb_header_logo .tdb-logo-icon-svg svg *{fill:#000}.tdi_10 .tdb-logo-a,.tdi_10 h1{align-items:flex-start;justify-content:center}.tdi_10 .tdb-logo-svg-wrap{display:block}.tdi_10 .tdb-logo-svg-wrap+.tdb-logo-img-wrap{display:none}.tdi_10 .tdb-logo-img-wrap{display:block}.tdi_10 .tdb-logo-text-tagline{margin-top:2px;margin-left:0;display:none}.tdi_10 .tdb-logo-text-title{display:none}.tdi_10 .tdb-logo-text-wrap{flex-direction:column;align-items:flex-start}.tdi_10 .tdb-logo-icon{top:0px;display:block}@media (max-width:767px){.tdb_header_logo .tdb-logo-text-title{font-size:36px}}@media (max-width:767px){.tdb_header_logo .tdb-logo-text-tagline{font-size:11px}}@media (max-width:767px){.tdi_10 .tdb-logo-img{max-width:160px}}</style><div class="tdb-block-inner td-fix-index"><a class="tdb-logo-a" href="https://reviewboard.com/"><h1><span class="tdb-logo-img-wrap"><img class="tdb-logo-img td-retina-data" data-retina="http://reviewboard.com/wp-content/uploads/2022/08/Retna-Reviewboard-Magazine-1-1-300x99.png" src="http://reviewboard.com/wp-content/uploads/2022/08/Regular-Reviewboard-Magazine-1.png" alt="Logo"  title=""  /></span><span class="tdb-logo-text-wrap"><span class="tdb-logo-text-title">Reviewboard Magazine</span><span class="tdb-logo-text-tagline">Reviews That Matter</span></span></h1></a></div></div> <!-- ./block --></div></div><div class="vc_column tdi_12  wpb_column vc_column_container tdc-column td-pb-span4">
<style scoped>.tdi_12{vertical-align:baseline}.tdi_12>.wpb_wrapper,.tdi_12>.wpb_wrapper>.tdc-elements{display:block}.tdi_12>.wpb_wrapper>.tdc-elements{width:100%}.tdi_12>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_12>.wpb_wrapper{width:auto;height:auto}@media (max-width:767px){.tdi_12{vertical-align:middle}}@media (max-width:767px){.tdi_12{width:20%!important;display:inline-block!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_mobile_search tdi_13 td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_13" >
<style>@media (max-width:767px){.tdi_13{margin-right:-18px!important;margin-bottom:0px!important}}</style>
<style>.tdb_mobile_search{margin-bottom:0;clear:none}.tdb_mobile_search a{display:inline-block!important;position:relative;text-align:center;color:var(--td_theme_color,#4db2ec)}.tdb_mobile_search a>span{display:flex;align-items:center;justify-content:center}.tdb_mobile_search svg{height:auto}.tdb_mobile_search svg,.tdb_mobile_search svg *{fill:var(--td_theme_color,#4db2ec)}#tdc-live-iframe .tdb_mobile_search a{pointer-events:none}.td-search-opened{overflow:hidden}.td-search-opened #td-outer-wrap{position:static}.td-search-opened .td-search-wrap-mob{position:fixed;height:calc(100% + 1px)}.td-search-opened .td-drop-down-search{height:calc(100% + 1px);overflow-y:scroll;overflow-x:hidden}.tdi_13{display:inline-block;float:right;clear:none}.tdi_13 .tdb-header-search-button-mob i{font-size:22px;width:55px;height:55px;line-height:55px}.tdi_13 .tdb-header-search-button-mob svg{width:22px}.tdi_13 .tdb-header-search-button-mob .tdb-mobile-search-icon-svg{width:55px;height:55px;display:flex;justify-content:center}.tdi_13 .tdb-header-search-button-mob{color:#ffffff}.tdi_13 .tdb-header-search-button-mob svg,.tdi_13 .tdb-header-search-button-mob svg *{fill:#ffffff}.td-search-wrap-mob .td-module-exclusive .td-module-title a:before{display:inline-block}@media (min-width:1019px) and (max-width:1140px){}@media (min-width:768px) and (max-width:1018px){}@media (max-width:767px){}</style><div class="tdb-block-inner td-fix-index"><span class="tdb-header-search-button-mob dropdown-toggle" data-toggle="dropdown"><span class="tdb-mobile-search-icon tdb-mobile-search-icon-svg" ><svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024"><path d="M958.484 910.161l-134.564-134.502c63.099-76.595 94.781-170.455 94.72-264.141 0.061-106.414-40.755-213.228-121.917-294.431-81.244-81.183-187.976-121.958-294.359-121.938-106.435-0.020-213.187 40.796-294.369 121.938-81.234 81.203-122.010 188.017-121.989 294.369-0.020 106.445 40.755 213.166 121.989 294.287 81.193 81.285 187.945 122.020 294.369 121.979 93.716 0.041 187.597-31.642 264.11-94.659l134.554 134.564 57.457-57.467zM265.431 748.348c-65.546-65.495-98.13-150.999-98.171-236.882 0.041-85.832 32.625-171.346 98.171-236.913 65.567-65.536 151.081-98.099 236.933-98.14 85.821 0.041 171.336 32.604 236.902 98.14 65.495 65.516 98.12 151.122 98.12 236.913 0 85.924-32.625 171.387-98.12 236.882-65.556 65.495-151.009 98.099-236.902 98.099-85.852 0-171.366-32.604-236.933-98.099zM505.385 272.864c-61.901 0.020-123.566 23.501-170.824 70.799-47.288 47.258-70.769 108.923-70.799 170.834-0.041 26.624 4.383 53.105 13.046 78.428-0.031-0.522-0.092-1.024-0.031-1.556 13.199-91.341 48.241-159.775 96.963-208.497v-0.020h0.031c48.712-48.722 117.135-83.763 208.486-96.963 0.522-0.061 1.024 0 1.536 0.041-25.313-8.684-51.794-13.087-78.408-13.066z"></path></svg></span></span></div></div> <!-- ./block --></div></div></div></div><div id="tdi_14" class="tdc-row"><div class="vc_row tdi_15  wpb_row td-pb-row" >
<style scoped>.tdi_15,.tdi_15 .tdc-columns{min-height:0}.tdi_15,.tdi_15 .tdc-columns{display:block}.tdi_15 .tdc-columns{width:100%}.tdi_15:before,.tdi_15:after{display:table}</style><div class="vc_column tdi_17  wpb_column vc_column_container tdc-column td-pb-span12">
<style scoped>.tdi_17{vertical-align:baseline}.tdi_17>.wpb_wrapper,.tdi_17>.wpb_wrapper>.tdc-elements{display:block}.tdi_17>.wpb_wrapper>.tdc-elements{width:100%}.tdi_17>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_17>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="wpb_wrapper td_block_separator td_block_wrap vc_separator tdi_19  td_separator_solid td_separator_center"><span style="border-color:#dd3333;border-width:3px;width:100%;"></span>
<style scoped>.td_block_separator{width:100%;align-items:center;margin-bottom:38px;padding-bottom:10px}.td_block_separator span{position:relative;display:block;margin:0 auto;width:100%;height:1px;border-top:1px solid #EBEBEB}.td_separator_align_left span{margin-left:0}.td_separator_align_right span{margin-right:0}.td_separator_dashed span{border-top-style:dashed}.td_separator_dotted span{border-top-style:dotted}.td_separator_double span{height:3px;border-bottom:1px solid #EBEBEB}.td_separator_shadow>span{position:relative;height:20px;overflow:hidden;border:0;color:#EBEBEB}.td_separator_shadow>span>span{position:absolute;top:-30px;left:0;right:0;margin:0 auto;height:13px;width:98%;border-radius:100%}html :where([style*='border-width']){border-style:none}.tdi_19{margin-right:-48px!important;margin-bottom:0px!important;margin-left:-48px!important;width:auto!important}@media (min-width:1019px) and (max-width:1140px){.tdi_19{margin-right:-24px!important;margin-left:-24px!important}}</style></div></div></div></div></div></div></div>                    </div>
                
                    <div class="td-header-mobile-sticky-wrap tdc-zone-sticky-invisible tdc-zone-sticky-inactive" style="display: none">
                        <div id="tdi_20" class="tdc-zone"><div class="tdc_zone tdi_21  wpb_row td-pb-row" data-sticky-offset="0" >
<style scoped>.tdi_21{min-height:0}.td-header-mobile-sticky-wrap.td-header-active{opacity:1}.td-header-mobile-sticky-wrap{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out}@media (max-width:767px){.tdi_21:before{content:'';display:block;width:100vw;height:100%;position:absolute;left:50%;transform:translateX(-50%);box-shadow:none;z-index:20;pointer-events:none}.td-header-mobile-sticky-wrap{transform:translateY(-120%);-webkit-transform:translateY(-120%);-moz-transform:translateY(-120%);-ms-transform:translateY(-120%);-o-transform:translateY(-120%)}.td-header-mobile-sticky-wrap.td-header-active{transform:translateY(0);-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0)}@media (max-width:767px){.tdi_21:before{width:100%}}}</style><div id="tdi_22" class="tdc-row"><div class="vc_row tdi_23  wpb_row td-pb-row tdc-element-style" >
<style scoped>.tdi_23,.tdi_23 .tdc-columns{min-height:0}.tdi_23,.tdi_23 .tdc-columns{display:block}.tdi_23 .tdc-columns{width:100%}.tdi_23:before,.tdi_23:after{display:table}@media (max-width:767px){@media (min-width:768px){.tdi_23{margin-left:-0px;margin-right:-0px}.tdi_23 .tdc-row-video-background-error,.tdi_23>.vc_column,.tdi_23>.tdc-columns>.vc_column{padding-left:0px;padding-right:0px}}}@media (max-width:767px){.tdi_23{position:relative}}</style>
<div class="tdi_22_rand_style td-element-style" ><div class="td-element-style-before"><style>@media (max-width:767px){.tdi_22_rand_style>.td-element-style-before{content:''!important;width:100%!important;height:100%!important;position:absolute!important;top:0!important;left:0!important;display:block!important;z-index:0!important;background-image:url("http://reviewboard.com/wp-content/uploads/2022/08/bghd.jpg")!important;opacity:0.2!important;background-size:cover!important;background-position:center top!important}}</style></div><style>@media (max-width:767px){.tdi_22_rand_style{background-color:#232d35!important}}</style></div><div class="vc_column tdi_25  wpb_column vc_column_container tdc-column td-pb-span4">
<style scoped>.tdi_25{vertical-align:baseline}.tdi_25>.wpb_wrapper,.tdi_25>.wpb_wrapper>.tdc-elements{display:block}.tdi_25>.wpb_wrapper>.tdc-elements{width:100%}.tdi_25>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_25>.wpb_wrapper{width:auto;height:auto}@media (max-width:767px){.tdi_25{vertical-align:middle}}@media (max-width:767px){.tdi_25{width:20%!important;display:inline-block!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_mobile_menu tdi_26 td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_26" >
<style>@media (max-width:767px){.tdi_26{margin-left:-16px!important}}</style>
<style>.tdi_26{display:inline-block}.tdi_26 .tdb-mobile-menu-button i{font-size:22px;width:55px;height:55px;line-height:55px}.tdi_26 .tdb-mobile-menu-button svg{width:22px}.tdi_26 .tdb-mobile-menu-button .tdb-mobile-menu-icon-svg{width:55px;height:55px}.tdi_26 .tdb-mobile-menu-button{color:#ffffff}.tdi_26 .tdb-mobile-menu-button svg,.tdi_26 .tdb-mobile-menu-button svg *{fill:#ffffff}@media (max-width:767px){.tdi_26 .tdb-mobile-menu-button i{font-size:27px;width:54px;height:54px;line-height:54px}.tdi_26 .tdb-mobile-menu-button svg{width:27px}.tdi_26 .tdb-mobile-menu-button .tdb-mobile-menu-icon-svg{width:54px;height:54px}}</style><div class="tdb-block-inner td-fix-index"><span class="tdb-mobile-menu-button"><span class="tdb-mobile-menu-icon tdb-mobile-menu-icon-svg" ><svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024"><path d="M903.864 490.013h-783.749c-17.172 0-31.109 13.937-31.109 31.109 0 17.234 13.937 31.15 31.109 31.15h783.739c17.213 0 31.13-13.916 31.13-31.15 0.010-17.162-13.916-31.109-31.119-31.109zM903.864 226.835h-783.749c-17.172 0-31.109 13.916-31.109 31.16 0 17.213 13.937 31.109 31.109 31.109h783.739c17.213 0 31.13-13.896 31.13-31.109 0.010-17.234-13.916-31.16-31.119-31.16zM903.864 753.181h-783.749c-17.172 0-31.109 13.916-31.109 31.099 0 17.244 13.937 31.16 31.109 31.16h783.739c17.213 0 31.13-13.916 31.13-31.16 0.010-17.172-13.916-31.099-31.119-31.099z"></path></svg></span></span></div></div> <!-- ./block --></div></div><div class="vc_column tdi_28  wpb_column vc_column_container tdc-column td-pb-span4">
<style scoped>.tdi_28{vertical-align:baseline}.tdi_28>.wpb_wrapper,.tdi_28>.wpb_wrapper>.tdc-elements{display:block}.tdi_28>.wpb_wrapper>.tdc-elements{width:100%}.tdi_28>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_28>.wpb_wrapper{width:auto;height:auto}@media (max-width:767px){.tdi_28{vertical-align:middle}}@media (max-width:767px){.tdi_28{width:60%!important;display:inline-block!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_header_logo tdi_29 td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_29" >
<style>.tdi_29 .tdb-logo-a,.tdi_29 h1{align-items:flex-start;justify-content:center}.tdi_29 .tdb-logo-svg-wrap{display:block}.tdi_29 .tdb-logo-svg-wrap+.tdb-logo-img-wrap{display:none}.tdi_29 .tdb-logo-img-wrap{display:block}.tdi_29 .tdb-logo-text-tagline{margin-top:2px;margin-left:0;display:none}.tdi_29 .tdb-logo-text-title{display:none}.tdi_29 .tdb-logo-text-wrap{flex-direction:column;align-items:flex-start}.tdi_29 .tdb-logo-icon{top:0px;display:block}@media (max-width:767px){.tdi_29 .tdb-logo-img{max-width:160px}}</style><div class="tdb-block-inner td-fix-index"><a class="tdb-logo-a" href="https://reviewboard.com/"><h1><span class="tdb-logo-img-wrap"><img class="tdb-logo-img td-retina-data" data-retina="http://reviewboard.com/wp-content/uploads/2022/08/Retna-Reviewboard-Magazine-1-1-300x99.png" src="http://reviewboard.com/wp-content/uploads/2022/08/Regular-Reviewboard-Magazine-1.png" alt="Logo"  title=""  /></span><span class="tdb-logo-text-wrap"><span class="tdb-logo-text-title">Reviewboard Magazine</span><span class="tdb-logo-text-tagline">Reviews That Matter</span></span></h1></a></div></div> <!-- ./block --></div></div><div class="vc_column tdi_31  wpb_column vc_column_container tdc-column td-pb-span4">
<style scoped>.tdi_31{vertical-align:baseline}.tdi_31>.wpb_wrapper,.tdi_31>.wpb_wrapper>.tdc-elements{display:block}.tdi_31>.wpb_wrapper>.tdc-elements{width:100%}.tdi_31>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_31>.wpb_wrapper{width:auto;height:auto}@media (max-width:767px){.tdi_31{vertical-align:middle}}@media (max-width:767px){.tdi_31{width:20%!important;display:inline-block!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_mobile_search tdi_32 td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_32" >
<style>@media (max-width:767px){.tdi_32{margin-right:-18px!important;margin-bottom:0px!important}}</style>
<style>.tdi_32{display:inline-block;float:right;clear:none}.tdi_32 .tdb-header-search-button-mob i{font-size:22px;width:55px;height:55px;line-height:55px}.tdi_32 .tdb-header-search-button-mob svg{width:22px}.tdi_32 .tdb-header-search-button-mob .tdb-mobile-search-icon-svg{width:55px;height:55px;display:flex;justify-content:center}.tdi_32 .tdb-header-search-button-mob{color:#ffffff}.tdi_32 .tdb-header-search-button-mob svg,.tdi_32 .tdb-header-search-button-mob svg *{fill:#ffffff}.td-search-wrap-mob .td-module-exclusive .td-module-title a:before{display:inline-block}@media (min-width:1019px) and (max-width:1140px){}@media (min-width:768px) and (max-width:1018px){}@media (max-width:767px){}</style><div class="tdb-block-inner td-fix-index"><span class="tdb-header-search-button-mob dropdown-toggle" data-toggle="dropdown"><span class="tdb-mobile-search-icon tdb-mobile-search-icon-svg" ><svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024"><path d="M958.484 910.161l-134.564-134.502c63.099-76.595 94.781-170.455 94.72-264.141 0.061-106.414-40.755-213.228-121.917-294.431-81.244-81.183-187.976-121.958-294.359-121.938-106.435-0.020-213.187 40.796-294.369 121.938-81.234 81.203-122.010 188.017-121.989 294.369-0.020 106.445 40.755 213.166 121.989 294.287 81.193 81.285 187.945 122.020 294.369 121.979 93.716 0.041 187.597-31.642 264.11-94.659l134.554 134.564 57.457-57.467zM265.431 748.348c-65.546-65.495-98.13-150.999-98.171-236.882 0.041-85.832 32.625-171.346 98.171-236.913 65.567-65.536 151.081-98.099 236.933-98.14 85.821 0.041 171.336 32.604 236.902 98.14 65.495 65.516 98.12 151.122 98.12 236.913 0 85.924-32.625 171.387-98.12 236.882-65.556 65.495-151.009 98.099-236.902 98.099-85.852 0-171.366-32.604-236.933-98.099zM505.385 272.864c-61.901 0.020-123.566 23.501-170.824 70.799-47.288 47.258-70.769 108.923-70.799 170.834-0.041 26.624 4.383 53.105 13.046 78.428-0.031-0.522-0.092-1.024-0.031-1.556 13.199-91.341 48.241-159.775 96.963-208.497v-0.020h0.031c48.712-48.722 117.135-83.763 208.486-96.963 0.522-0.061 1.024 0 1.536 0.041-25.313-8.684-51.794-13.087-78.408-13.066z"></path></svg></span></span></div></div> <!-- ./block --></div></div></div></div><div id="tdi_33" class="tdc-row"><div class="vc_row tdi_34  wpb_row td-pb-row" >
<style scoped>.tdi_34,.tdi_34 .tdc-columns{min-height:0}.tdi_34,.tdi_34 .tdc-columns{display:block}.tdi_34 .tdc-columns{width:100%}.tdi_34:before,.tdi_34:after{display:table}</style><div class="vc_column tdi_36  wpb_column vc_column_container tdc-column td-pb-span12">
<style scoped>.tdi_36{vertical-align:baseline}.tdi_36>.wpb_wrapper,.tdi_36>.wpb_wrapper>.tdc-elements{display:block}.tdi_36>.wpb_wrapper>.tdc-elements{width:100%}.tdi_36>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_36>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="wpb_wrapper td_block_separator td_block_wrap vc_separator tdi_38  td_separator_solid td_separator_center"><span style="border-color:#dd3333;border-width:3px;width:100%;"></span>
<style scoped>.tdi_38{margin-right:-48px!important;margin-bottom:0px!important;margin-left:-48px!important;width:auto!important}@media (min-width:1019px) and (max-width:1140px){.tdi_38{margin-right:-24px!important;margin-left:-24px!important}}</style></div></div></div></div></div></div></div>                    </div>

                
                    <div class="td-header-desktop-wrap ">
                        <!-- LOGIN MODAL -->

                <div id="login-form" class="white-popup-block mfp-hide mfp-with-anim td-login-modal-wrap">
                    <div class="td-login-wrap">
                        <a href="#" aria-label="Back" class="td-back-button"><i class="td-icon-modal-back"></i></a>
                        <div id="td-login-div" class="td-login-form-div td-display-block">
                            <div class="td-login-panel-title">Sign in</div>
                            <div class="td-login-panel-descr">Welcome! Log into your account</div>
                            <div class="td_display_err"></div>
                            <form id="loginForm" action="#" method="post">
                                <div class="td-login-inputs"><input class="td-login-input" autocomplete="username" type="text" name="login_email" id="login_email" value="" required><label for="login_email">your username</label></div>
                                <div class="td-login-inputs"><input class="td-login-input" autocomplete="current-password" type="password" name="login_pass" id="login_pass" value="" required><label for="login_pass">your password</label></div>
                                <input type="button"  name="login_button" id="login_button" class="wpb_button btn td-login-button" value="Login">
                                
                            </form>

                            

                            <div class="td-login-info-text"><a href="#" id="forgot-pass-link">Forgot your password? Get help</a></div>
                            
                            
                            <a id="register-link">Create an account</a>
                            
                        </div>

                        
                <div id="td-register-div" class="td-login-form-div td-display-none td-login-modal-wrap">
                    <div class="td-login-panel-title">Create an account</div>
                    <div class="td-login-panel-descr">Welcome! Register for an account</div>
                    <div class="td_display_err"></div>
                    <form id="registerForm" action="#" method="post">
                        <div class="td-login-inputs"><input class="td-login-input" type="email" name="register_email" id="register_email" value="" required><label for="register_email">your email</label></div>
                        <div class="td-login-inputs"><input class="td-login-input" type="text" name="register_user" id="register_user" value="" required><label for="register_user">your username</label></div>
                        <input type="button" name="register_button" id="register_button" class="wpb_button btn td-login-button" value="Register">
                        
                    </form>      

                    
                    
                    <div class="td-login-info-text">A password will be e-mailed to you.</div>
                    
                </div>

                         <div id="td-forgot-pass-div" class="td-login-form-div td-display-none">
                            <div class="td-login-panel-title">Password recovery</div>
                            <div class="td-login-panel-descr">Recover your password</div>
                            <div class="td_display_err"></div>
                            <form id="forgotpassForm" action="#" method="post">
                                <div class="td-login-inputs"><input class="td-login-input" type="text" name="forgot_email" id="forgot_email" value="" required><label for="forgot_email">your email</label></div>
                                <input type="button" name="forgot_button" id="forgot_button" class="wpb_button btn td-login-button" value="Send My Password">
                            </form>
                            <div class="td-login-info-text">A password will be e-mailed to you.</div>
                        </div>
                        
                        
                    </div>
                </div>
                <div id="tdi_39" class="tdc-zone"><div class="tdc_zone tdi_40  wpb_row td-pb-row tdc-element-style"  >
<style scoped>.tdi_40{min-height:0}.td-header-desktop-wrap{position:relative}.tdi_40{margin-right:auto!important;margin-left:auto!important;width:1164px!important;position:relative}@media (min-width:1019px) and (max-width:1140px){.tdi_40{width:100%!important}}@media (min-width:768px) and (max-width:1018px){.tdi_40{width:100%!important}}@media (max-width:767px){.tdi_40{width:100%!important}}</style>
<div class="tdi_39_rand_style td-element-style" ><style>.tdi_39_rand_style{background-color:#ffffff!important}</style></div><div id="tdi_41" class="tdc-row"><div class="vc_row tdi_42  wpb_row td-pb-row tdc-element-style tdc-row-content-vert-center" >
<style scoped>.tdi_42,.tdi_42 .tdc-columns{min-height:0}.tdi_42,.tdi_42 .tdc-columns{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center}.tdi_42 .tdc-columns{width:100%}.tdi_42:before,.tdi_42:after{display:none}@media (min-width:767px){.tdi_42.tdc-row-content-vert-center,.tdi_42.tdc-row-content-vert-center .tdc-columns{display:flex;align-items:center;flex:1}.tdi_42.tdc-row-content-vert-bottom,.tdi_42.tdc-row-content-vert-bottom .tdc-columns{display:flex;align-items:flex-end;flex:1}.tdi_42.tdc-row-content-vert-center .td_block_wrap{vertical-align:middle}.tdi_42.tdc-row-content-vert-bottom .td_block_wrap{vertical-align:bottom}}.tdi_42{margin-right:-24px!important;margin-left:-24px!important;padding-top:4px!important;padding-bottom:4px!important;position:relative}.tdi_42 .td_block_wrap{text-align:left}@media (min-width:768px) and (max-width:1018px){.tdi_42{margin-right:-10px!important;margin-left:-10px!important;padding-top:3px!important;padding-bottom:3px!important}}</style>
<div class="tdi_41_rand_style td-element-style" ><style>.tdi_41_rand_style{background-color:#f4f4f4!important}</style></div><div class="vc_column tdi_44  wpb_column vc_column_container tdc-column td-pb-span9">
<style scoped>.tdi_44{vertical-align:baseline}.tdi_44>.wpb_wrapper,.tdi_44>.wpb_wrapper>.tdc-elements{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center}.tdi_44>.wpb_wrapper>.tdc-elements{width:100%}.tdi_44>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_44>.wpb_wrapper{width:100%;height:100%}.tdi_44{width:80%!important}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_header_weather tdi_45 td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_45" >
<style>.tdi_45{margin-top:-4px!important;margin-right:30px!important}@media (min-width:768px) and (max-width:1018px){.tdi_45{margin-right:15px!important}}</style>
<style>.tdb_header_weather{margin-bottom:0;clear:none}.tdb_header_weather .tdb-block-inner{display:flex;align-items:baseline}.tdb_header_weather .td-icons{align-self:center;position:relative;background:none;margin-right:2px;font-size:18px}.tdb_header_weather .td-icons:before{display:block}.tdb_header_weather .tdb-weather-deg-wrap{user-select:none;margin-right:6px}.tdb_header_weather .tdb-weather-deg{font-size:11px;font-weight:600}.tdb_header_weather .tdb-weather-unit{position:relative;top:-6px;left:1px;font-size:8px;font-weight:300}.tdb_header_weather .tdb-weather-city{font-size:11px;font-weight:500}.tdi_45{display:inline-block}.tdi_45 .td-icons{top:0px;color:#000000}.tdi_45 .tdb-weather-deg-wrap{color:#000000}.tdi_45 .tdb-weather-unit{color:#000000;font-family:Rubik!important;font-size:9px!important;line-height:1!important;font-weight:500!important}.tdi_45 .tdb-weather-city{color:#000000;font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:500!important}.tdi_45 .tdb-weather-deg{font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:500!important}</style><div class="tdb-block-inner td-fix-index"><!-- td weather source: cache -->        <i class="td-icons broken-clouds-n"></i>
        <div class="tdb-weather-deg-wrap" data-block-uid="tdb_header_weather_uid">
            <span class="tdb-weather-deg">11</span>
            <span class="tdb-weather-unit">C</span>
        </div>
        <div class="tdb-weather-city">New York</div>
        </div></div> <!-- ./block --><div class="td_block_wrap tdb_header_date tdi_46 td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_46" >
<style>.tdi_46{margin-right:30px!important}@media (min-width:768px) and (max-width:1018px){.tdi_46{margin-right:15px!important}}</style>
<style>.tdb_header_date{margin-bottom:0;clear:none}.tdb_header_date .tdb-block-inner{display:flex;align-items:baseline}.tdb_header_date .tdb-head-date-txt{font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif);font-size:11px;line-height:1;color:#000}.tdi_46{display:inline-block}.tdi_46 .tdb-head-date-txt{color:#000000;font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:500!important}</style><div class="tdb-block-inner td-fix-index"><div class="tdb-head-date-txt">Sunday, November 16, 2025</div></div></div> <!-- ./block -->

<script>

var tdb_login_sing_in_shortcode="on";

</script>

<div class="td_block_wrap tdb_header_user tdi_47 td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_47" >
<style>.tdi_47{margin-right:20px!important}@media (min-width:768px) and (max-width:1018px){.tdi_47{margin-right:15px!important}}</style>
<style>.tdb_header_user{margin-bottom:0;clear:none}.tdb_header_user .tdb-block-inner{display:flex;align-items:center}.tdb_header_user .tdb-head-usr-item{font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif);font-size:11px;line-height:1;color:#000}.tdb_header_user .tdb-head-usr-item:hover{color:var(--td_theme_color,#4db2ec)}.tdb_header_user .tdb-head-usr-avatar{position:relative;width:20px;height:0;padding-bottom:20px;margin-right:6px;background-size:cover;background-position:center center}.tdb_header_user .tdb-head-usr-name{margin-right:16px;font-weight:700}.tdb_header_user .tdb-head-usr-log{display:flex;align-items:center}.tdb_header_user .tdb-head-usr-log i{font-size:10px}.tdb_header_user .tdb-head-usr-log-icon{position:relative}.tdb_header_user .tdb-head-usr-log-icon-svg{line-height:0}.tdb_header_user .tdb-head-usr-log-icon-svg svg{width:10px;height:auto}.tdi_47{display:inline-block}.tdi_47 .tdb-head-usr-log .tdb-head-usr-log-icon{margin-right:2px;top:0px}.tdi_47 .tdb-head-usr-name{color:#000000;font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:500!important}.tdi_47 .tdb-head-usr-log{color:#000000;font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:500!important}.tdi_47 .tdb-head-usr-log-icon-svg svg,.tdi_47 .tdb-head-usr-log-icon-svg svg *{fill:#000000;fill:#000000}.tdi_47 .tdb-head-usr-log i{color:#000000}</style><div class="tdb-block-inner td-fix-index"><a class="td-login-modal-js tdb-head-usr-item tdb-head-usr-log" href="#login-form" data-effect="mpf-td-login-effect"><span class="tdb-head-usr-log-txt">Sign in / Join</span></a></div></div> <!-- ./block --><div class="td_block_wrap tdb_mobile_horiz_menu tdi_48 td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_48"  style=" z-index: 999;">
<style>.tdi_48{margin-right:16px!important;margin-bottom:0px!important}@media (min-width:768px) and (max-width:1018px){.tdi_48{display:none!important}}</style>
<style>.tdb_mobile_horiz_menu{margin-bottom:0;clear:none}.tdb_mobile_horiz_menu.tdb-horiz-menu-singleline{width:100%}.tdb_mobile_horiz_menu.tdb-horiz-menu-singleline .tdb-horiz-menu{display:block;width:100%;overflow-x:auto;overflow-y:hidden;font-size:0;white-space:nowrap}.tdb_mobile_horiz_menu.tdb-horiz-menu-singleline .tdb-horiz-menu>li{position:static;display:inline-block;float:none}.tdb_mobile_horiz_menu.tdb-horiz-menu-singleline .tdb-horiz-menu ul{left:0;width:100%;z-index:-1}.tdb-horiz-menu{display:table;margin:0}.tdb-horiz-menu,.tdb-horiz-menu ul{list-style-type:none}.tdb-horiz-menu ul,.tdb-horiz-menu li{line-height:1}.tdb-horiz-menu li{margin:0;font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif)}.tdb-horiz-menu li.current-menu-item>a,.tdb-horiz-menu li.current-menu-ancestor>a,.tdb-horiz-menu li.current-category-ancestor>a,.tdb-horiz-menu li.current-page-ancestor>a,.tdb-horiz-menu li:hover>a,.tdb-horiz-menu li.tdb-hover>a{color:var(--td_theme_color,#4db2ec)}.tdb-horiz-menu li.current-menu-item>a .tdb-sub-menu-icon-svg,.tdb-horiz-menu li.current-menu-ancestor>a .tdb-sub-menu-icon-svg,.tdb-horiz-menu li.current-category-ancestor>a .tdb-sub-menu-icon-svg,.tdb-horiz-menu li.current-page-ancestor>a .tdb-sub-menu-icon-svg,.tdb-horiz-menu li:hover>a .tdb-sub-menu-icon-svg,.tdb-horiz-menu li.tdb-hover>a .tdb-sub-menu-icon-svg,.tdb-horiz-menu li.current-menu-item>a .tdb-sub-menu-icon-svg *,.tdb-horiz-menu li.current-menu-ancestor>a .tdb-sub-menu-icon-svg *,.tdb-horiz-menu li.current-category-ancestor>a .tdb-sub-menu-icon-svg *,.tdb-horiz-menu li.current-page-ancestor>a .tdb-sub-menu-icon-svg *,.tdb-horiz-menu li:hover>a .tdb-sub-menu-icon-svg *,.tdb-horiz-menu li.tdb-hover>a .tdb-sub-menu-icon-svg *{fill:var(--td_theme_color,#4db2ec)}.tdb-horiz-menu>li{position:relative;float:left;font-size:0}.tdb-horiz-menu>li:hover ul{visibility:visible;opacity:1}.tdb-horiz-menu>li>a{display:inline-block;padding:0 9px;font-weight:700;font-size:13px;line-height:41px;vertical-align:middle;-webkit-backface-visibility:hidden;color:#000}.tdb-horiz-menu>li>a>.tdb-menu-item-text{display:inline-block}.tdb-horiz-menu>li>a .tdb-sub-menu-icon{margin:0 0 0 6px}.tdb-horiz-menu>li>a .tdb-sub-menu-icon-svg svg{position:relative;top:-1px;width:13px}.tdb-horiz-menu>li .tdb-menu-sep{position:relative}.tdb-horiz-menu>li:last-child .tdb-menu-sep{display:none}.tdb-horiz-menu .tdb-sub-menu-icon-svg,.tdb-horiz-menu .tdb-menu-sep-svg{line-height:0}.tdb-horiz-menu .tdb-sub-menu-icon-svg svg,.tdb-horiz-menu .tdb-menu-sep-svg svg{height:auto}.tdb-horiz-menu .tdb-sub-menu-icon-svg svg,.tdb-horiz-menu .tdb-menu-sep-svg svg,.tdb-horiz-menu .tdb-sub-menu-icon-svg svg *,.tdb-horiz-menu .tdb-menu-sep-svg svg *{fill:#000}.tdb-horiz-menu .tdb-sub-menu-icon{vertical-align:middle;position:relative;top:0;padding-left:0}.tdb-horiz-menu .tdb-menu-sep{vertical-align:middle;font-size:12px}.tdb-horiz-menu .tdb-menu-sep-svg svg{width:12px}.tdb-horiz-menu ul{position:absolute;top:auto;left:-7px;padding:8px 0;background-color:#fff;visibility:hidden;opacity:0}.tdb-horiz-menu ul li>a{white-space:nowrap;display:block;padding:5px 18px;font-size:11px;line-height:18px;color:#111}.tdb-horiz-menu ul li>a .tdb-sub-menu-icon{float:right;font-size:7px;line-height:20px}.tdb-horiz-menu ul li>a .tdb-sub-menu-icon-svg svg{width:7px}.tdc-dragged .tdb-horiz-menu ul{visibility:hidden!important;opacity:0!important;-webkit-transition:all 0.3s ease;transition:all 0.3s ease}.tdi_48{display:inline-block}.tdi_48 .tdb-horiz-menu>li{margin-right:16px}.tdi_48 .tdb-horiz-menu>li:last-child{margin-right:0}.tdi_48 .tdb-horiz-menu>li>a{padding:0px;color:#000000;font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:500!important}.tdi_48 .tdb-horiz-menu>li .tdb-menu-sep{top:0px}.tdi_48 .tdb-horiz-menu>li>a .tdb-sub-menu-icon{top:0px}.tdi_48 .tdb-horiz-menu>li>a .tdb-sub-menu-icon-svg svg,.tdi_48 .tdb-horiz-menu>li>a .tdb-sub-menu-icon-svg svg *{fill:#000000}.tdi_48 .tdb-horiz-menu ul{box-shadow:1px 1px 4px 0px rgba(0,0,0,0.15)}.tdi_48 .tdb-horiz-menu ul li>a{font-family:Niramit!important;font-size:12px!important;font-weight:500!important}</style><div id=tdi_48 class="td_block_inner td-fix-index"><div class="menu-td-demo-custom-menu-container"><ul id="menu-td-demo-custom-menu" class="tdb-horiz-menu"><li id="menu-item-164" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164"><a href="https://demo.tagdiv.com/newspaper_magazine_pro/blog"><div class="tdb-menu-item-text">Blog</div></a></li>
<li id="menu-item-165" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-165"><a href="#"><div class="tdb-menu-item-text">About</div></a></li>
<li id="menu-item-166" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-166"><a href="#"><div class="tdb-menu-item-text">Contact</div></a></li>
</ul></div></div></div><div class="tdm_block td_block_wrap tdm_block_icon_box tdi_49 tdm-content-horiz-left tds_icon_box2_wrap td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_49" >
<style>.tdi_49{margin-bottom:-9px!important}@media(min-width:1141px){.tdi_49{display:inline-block!important}}</style>
<style>.tds_icon_box2_wrap .tds-icon-box{display:inline-block}.tds_icon_box2_wrap .tds-icon-box2:after{display:table;content:'';line-height:0;clear:both}.tds_icon_box2_wrap .tdm-col-icon,.tds_icon_box2_wrap .tdm-col-text{display:table-cell;vertical-align:top}.tds_icon_box2_wrap .icon_box_url_wrap{display:block;position:absolute;top:0;left:0;width:100%;height:100%}.tdi_50 .tdm-col-icon{padding-left:5px}.tdi_50 .tds-title{margin-top:-7px;margin-bottom:0px}.tdi_50 .tdm-descr{margin-bottom:0px}</style><div class="tds-icon-box tds-icon-box2 td-fix-index yes tdi_50"><div class="tdm-col-text">
<style>.tdi_52 .tdm-title{font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:500!important}</style><div class="tds-title tds-title1 td-fix-index tdi_52 "><h3 class="tdm-title tdm-title-sm">Buy now</h3></div><p class="tdm-descr td-fix-index"></p><a href="https://themeforest.net/item/newspaper/5489609" aria-label="icon_box" class="icon_box_url_wrap" > </a></div><div class="tdm-col-icon">
<style>.tdi_51{-webkit-transition:all 0.2s ease;-moz-transition:all 0.2s ease;-o-transition:all 0.2s ease;transition:all 0.2s ease}.tdi_51:before{-webkit-transition:all 0.2s ease;-moz-transition:all 0.2s ease;-o-transition:all 0.2s ease;transition:all 0.2s ease}@media (min-width:1019px) and (max-width:1140px){}@media (min-width:768px) and (max-width:1018px){}@media (max-width:767px){}</style><i class="tds-icon tdc-font-tdmp tdc-font-tdmp-arrow-right tdi_51 td-fix-index "></i></div></div><style>.tdm_block_icon_box .tds-icon-svg svg{
			        display: block;
			    }.tdm_block_icon_box .tdm-descr{
                  font-size: 14px;
                  line-height: 24px;
                  -webkit-transition: color 0.2s ease;
                  transition: color 0.2s ease;
                }.tdi_49 .tds-icon-box .tds-icon{
				    font-size: 17px;
				    text-align: center;
				
				    width: 17px;
				    height: 17px;
				    line-height: 17px;
				}</style></div></div></div><div class="vc_column tdi_54  wpb_column vc_column_container tdc-column td-pb-span3">
<style scoped>.tdi_54{vertical-align:baseline}.tdi_54>.wpb_wrapper,.tdi_54>.wpb_wrapper>.tdc-elements{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-end;align-items:center}.tdi_54>.wpb_wrapper>.tdc-elements{width:100%}.tdi_54>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_54>.wpb_wrapper{width:100%;height:100%}.tdi_54{width:20%!important;justify-content:flex-end!important;text-align:right!important}</style><div class="wpb_wrapper" ><div class="tdm_block td_block_wrap tdm_block_socials tdi_55 tdm-content-horiz-right td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_55" >
<style>.tdm_block.tdm_block_socials{margin-bottom:0}.tdm-social-wrapper{*zoom:1}.tdm-social-wrapper:before,.tdm-social-wrapper:after{display:table;content:'';line-height:0}.tdm-social-wrapper:after{clear:both}.tdm-social-item-wrap{display:inline-block}.tdm-social-item{position:relative;display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;-webkit-transition:all 0.2s;transition:all 0.2s;text-align:center;-webkit-transform:translateZ(0);transform:translateZ(0)}.tdm-social-item i{font-size:14px;color:var(--td_theme_color,#4db2ec);-webkit-transition:all 0.2s;transition:all 0.2s}.tdm-social-text{display:none;margin-top:-1px;vertical-align:middle;font-size:13px;color:var(--td_theme_color,#4db2ec);-webkit-transition:all 0.2s;transition:all 0.2s}.tdm-social-item-wrap:hover i,.tdm-social-item-wrap:hover .tdm-social-text{color:#000}.tdm-social-item-wrap:last-child .tdm-social-text{margin-right:0!important}</style>
<style>.tdi_56 .tdm-social-item i{font-size:12px;vertical-align:middle;line-height:24px}.tdi_56 .tdm-social-item i.td-icon-linkedin,.tdi_56 .tdm-social-item i.td-icon-pinterest,.tdi_56 .tdm-social-item i.td-icon-blogger,.tdi_56 .tdm-social-item i.td-icon-vimeo{font-size:9.6px}.tdi_56 .tdm-social-item{width:24px;height:24px;margin:0px 0px 0px 0}.tdi_56 .tdm-social-item-wrap:last-child .tdm-social-item{margin-right:0!important}.tdi_56 .tdm-social-item i,.tds-team-member2 .tdi_56.tds-social1 .tdm-social-item i{color:#000000}.tdi_56 .tdm-social-text{display:none;margin-left:2px;margin-right:18px}</style><div class="tdm-social-wrapper tds-social1 tdi_56"><div class="tdm-social-item-wrap"><a href="#"  title="Facebook" class="tdm-social-item"><i class="td-icon-font td-icon-facebook"></i><span style="display: none">Facebook</span></a></div><div class="tdm-social-item-wrap"><a href="#"  title="Instagram" class="tdm-social-item"><i class="td-icon-font td-icon-instagram"></i><span style="display: none">Instagram</span></a></div><div class="tdm-social-item-wrap"><a href="#"  title="Twitter" class="tdm-social-item"><i class="td-icon-font td-icon-twitter"></i><span style="display: none">Twitter</span></a></div><div class="tdm-social-item-wrap"><a href="#"  title="Vimeo" class="tdm-social-item"><i class="td-icon-font td-icon-vimeo"></i><span style="display: none">Vimeo</span></a></div><div class="tdm-social-item-wrap"><a href="#"  title="Youtube" class="tdm-social-item"><i class="td-icon-font td-icon-youtube"></i><span style="display: none">Youtube</span></a></div></div></div></div></div></div></div><div id="tdi_57" class="tdc-row"><div class="vc_row tdi_58  wpb_row td-pb-row tdc-row-content-vert-center" >
<style scoped>.tdi_58,.tdi_58 .tdc-columns{min-height:0}.tdi_58,.tdi_58 .tdc-columns{display:block}.tdi_58 .tdc-columns{width:100%}.tdi_58:before,.tdi_58:after{display:table}@media (min-width:767px){.tdi_58.tdc-row-content-vert-center,.tdi_58.tdc-row-content-vert-center .tdc-columns{display:flex;align-items:center;flex:1}.tdi_58.tdc-row-content-vert-bottom,.tdi_58.tdc-row-content-vert-bottom .tdc-columns{display:flex;align-items:flex-end;flex:1}.tdi_58.tdc-row-content-vert-center .td_block_wrap{vertical-align:middle}.tdi_58.tdc-row-content-vert-bottom .td_block_wrap{vertical-align:bottom}}.tdi_58{padding-top:20px!important;padding-bottom:20px!important}.tdi_58 .td_block_wrap{text-align:left}@media (min-width:768px) and (max-width:1018px){.tdi_58{padding-top:14px!important;padding-bottom:14px!important}}</style><div class="vc_column tdi_60  wpb_column vc_column_container tdc-column td-pb-span4">
<style scoped>.tdi_60{vertical-align:baseline}.tdi_60>.wpb_wrapper,.tdi_60>.wpb_wrapper>.tdc-elements{display:block}.tdi_60>.wpb_wrapper>.tdc-elements{width:100%}.tdi_60>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_60>.wpb_wrapper{width:auto;height:auto}.tdi_60{width:30%!important}@media (min-width:1019px) and (max-width:1140px){.tdi_60{width:24%!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_header_logo tdi_61 td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_61" >
<style>@media (min-width:1019px) and (max-width:1140px){.tdi_61{margin-right:-30px!important;margin-left:-20px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_61{margin-right:-10px!important;margin-left:-5px!important}}</style>
<style>.tdi_61 .tdb-logo-a,.tdi_61 h1{align-items:flex-start;justify-content:center}.tdi_61 .tdb-logo-svg-wrap{display:block}.tdi_61 .tdb-logo-svg-wrap+.tdb-logo-img-wrap{display:none}.tdi_61 .tdb-logo-img-wrap{display:block}.tdi_61 .tdb-logo-text-tagline{margin-top:2px;margin-left:0;display:none}.tdi_61 .tdb-logo-text-title{display:none}.tdi_61 .tdb-logo-text-wrap{flex-direction:column;align-items:flex-start}.tdi_61 .tdb-logo-icon{top:0px;display:block}</style><div class="tdb-block-inner td-fix-index"><a class="tdb-logo-a" href="https://reviewboard.com/"><h1><span class="tdb-logo-img-wrap"><img class="tdb-logo-img td-retina-data" data-retina="http://reviewboard.com/wp-content/uploads/2022/08/Retna-Reviewboard-Magazine-1-1-300x99.png" src="http://reviewboard.com/wp-content/uploads/2022/08/Regular-Reviewboard-Magazine-1.png" alt="Logo"  title=""  /></span><span class="tdb-logo-text-wrap"><span class="tdb-logo-text-title">Reviewboard Magazine</span><span class="tdb-logo-text-tagline">Reviews That Matter</span></span></h1></a></div></div> <!-- ./block --></div></div><div class="vc_column tdi_63  wpb_column vc_column_container tdc-column td-pb-span8">
<style scoped>.tdi_63{vertical-align:baseline}.tdi_63>.wpb_wrapper,.tdi_63>.wpb_wrapper>.tdc-elements{display:block}.tdi_63>.wpb_wrapper>.tdc-elements{width:100%}.tdi_63>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_63>.wpb_wrapper{width:auto;height:auto}.tdi_63{width:70%!important}@media (min-width:1019px) and (max-width:1140px){.tdi_63{width:76%!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap td-a-rec td-a-rec-id-custom-spot td-a-rec-img tdi_64 td_block_template_1">
<style>.tdi_64{margin-bottom:0px!important;padding-top:5px!important}</style>
<style>.tdi_64.td-a-rec{text-align:center}.tdi_64.td-a-rec:not(.td-a-rec-no-translate){transform:translateZ(0)}.tdi_64 .td-element-style{z-index:-1}.tdi_64 .td-spot-id-spot_img_hidden{display:none}.tdi_64 .td-adspot-title{display:block}.tdi_64.td-a-rec-img{text-align:right}.tdi_64.td-a-rec-img img{margin:0 0 0 auto}.tdi_64 .td_spot_img_all img,.tdi_64 .td_spot_img_tl img,.tdi_64 .td_spot_img_tp img,.tdi_64 .td_spot_img_mob img{border-style:none}@media (max-width:767px){.tdi_64.td-a-rec-img{text-align:center}}</style><div style="display: inline-block"><a href="" class="td_spot_img_all"><img src="https://www.reviewboard.com/wp-content/uploads/2022/08/rec728.png"  alt="spot_img" width="728"  height="90"  /></a></div></div></div></div></div></div><div id="tdi_65" class="tdc-row"><div class="vc_row tdi_66  wpb_row td-pb-row tdc-element-style tdc-row-content-vert-center" >
<style scoped>.tdi_66,.tdi_66 .tdc-columns{min-height:0}.tdi_66,.tdi_66 .tdc-columns{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;align-items:center}.tdi_66 .tdc-columns{width:100%}.tdi_66:before,.tdi_66:after{display:none}@media (min-width:767px){.tdi_66.tdc-row-content-vert-center,.tdi_66.tdc-row-content-vert-center .tdc-columns{display:flex;align-items:center;flex:1}.tdi_66.tdc-row-content-vert-bottom,.tdi_66.tdc-row-content-vert-bottom .tdc-columns{display:flex;align-items:flex-end;flex:1}.tdi_66.tdc-row-content-vert-center .td_block_wrap{vertical-align:middle}.tdi_66.tdc-row-content-vert-bottom .td_block_wrap{vertical-align:bottom}}.tdi_66{margin-right:-24px!important;margin-left:-24px!important;position:relative}.tdi_66 .td_block_wrap{text-align:left}@media (min-width:768px) and (max-width:1018px){.tdi_66{margin-right:-10px!important;margin-left:-10px!important}}</style>
<div class="tdi_65_rand_style td-element-style" ><div class="td-element-style-before"><style>.tdi_65_rand_style>.td-element-style-before{content:''!important;width:100%!important;height:100%!important;position:absolute!important;top:0!important;left:0!important;display:block!important;z-index:0!important;background-image:url("http://reviewboard.com/wp-content/uploads/2022/08/bghd.jpg")!important;opacity:0.2!important;background-size:cover!important;background-position:center top!important}</style></div><style>.tdi_65_rand_style{background-color:#232d35!important}</style></div><div class="vc_column tdi_68  wpb_column vc_column_container tdc-column td-pb-span9">
<style scoped>.tdi_68{vertical-align:baseline;flex-grow:1}.tdi_68>.wpb_wrapper,.tdi_68>.wpb_wrapper>.tdc-elements{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;align-items:center}.tdi_68>.wpb_wrapper>.tdc-elements{width:100%}.tdi_68>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_68>.wpb_wrapper{width:100%;height:100%}.tdi_68{width:90%!important}@media (min-width:768px) and (max-width:1018px){.tdi_68{width:92%!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_header_menu tdi_69 tds_menu_active3 tds_menu_sub_active1 tdb-mm-align-screen td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_69"  style=" z-index: 999;">
<style>.tdi_69{margin-left:-10px!important}</style>
<style>.tdb_header_menu{margin-bottom:0;z-index:999;clear:none}.tdb_header_menu .tdb-main-sub-icon-fake,.tdb_header_menu .tdb-sub-icon-fake{display:none}.rtl .tdb_header_menu .tdb-menu{display:flex}.tdb_header_menu .tdb-menu{display:inline-block;vertical-align:middle;margin:0}.tdb_header_menu .tdb-menu .tdb-mega-menu-inactive,.tdb_header_menu .tdb-menu .tdb-menu-item-inactive{pointer-events:none}.tdb_header_menu .tdb-menu .tdb-mega-menu-inactive>ul,.tdb_header_menu .tdb-menu .tdb-menu-item-inactive>ul{visibility:hidden;opacity:0}.tdb_header_menu .tdb-menu .sub-menu{font-size:14px;position:absolute;top:-999em;background-color:#fff;z-index:99}.tdb_header_menu .tdb-menu .sub-menu>li{list-style-type:none;margin:0;font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif)}.tdb_header_menu .tdb-menu>li{float:left;list-style-type:none;margin:0}.tdb_header_menu .tdb-menu>li>a{position:relative;display:inline-block;padding:0 14px;font-weight:700;font-size:14px;line-height:48px;vertical-align:middle;text-transform:uppercase;-webkit-backface-visibility:hidden;color:#000;font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif)}.tdb_header_menu .tdb-menu>li>a:after{content:'';position:absolute;bottom:0;left:0;right:0;margin:0 auto;width:0;height:3px;background-color:var(--td_theme_color,#4db2ec);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:width 0.2s ease;transition:width 0.2s ease}.tdb_header_menu .tdb-menu>li>a>.tdb-menu-item-text{display:inline-block}.tdb_header_menu .tdb-menu>li>a .tdb-menu-item-text,.tdb_header_menu .tdb-menu>li>a span{vertical-align:middle;float:left}.tdb_header_menu .tdb-menu>li>a .tdb-sub-menu-icon{margin:0 0 0 7px}.tdb_header_menu .tdb-menu>li>a .tdb-sub-menu-icon-svg{float:none;line-height:0}.tdb_header_menu .tdb-menu>li>a .tdb-sub-menu-icon-svg svg{width:14px;height:auto}.tdb_header_menu .tdb-menu>li>a .tdb-sub-menu-icon-svg svg,.tdb_header_menu .tdb-menu>li>a .tdb-sub-menu-icon-svg svg *{fill:#000}.tdb_header_menu .tdb-menu>li.current-menu-item>a:after,.tdb_header_menu .tdb-menu>li.current-menu-ancestor>a:after,.tdb_header_menu .tdb-menu>li.current-category-ancestor>a:after,.tdb_header_menu .tdb-menu>li.current-page-ancestor>a:after,.tdb_header_menu .tdb-menu>li:hover>a:after,.tdb_header_menu .tdb-menu>li.tdb-hover>a:after{width:100%}.tdb_header_menu .tdb-menu>li:hover>ul,.tdb_header_menu .tdb-menu>li.tdb-hover>ul{top:auto;display:block!important}.tdb_header_menu .tdb-menu>li.td-normal-menu>ul.sub-menu{top:auto;left:0;z-index:99}.tdb_header_menu .tdb-menu>li .tdb-menu-sep{position:relative;vertical-align:middle;font-size:14px}.tdb_header_menu .tdb-menu>li .tdb-menu-sep-svg{line-height:0}.tdb_header_menu .tdb-menu>li .tdb-menu-sep-svg svg{width:14px;height:auto}.tdb_header_menu .tdb-menu>li:last-child .tdb-menu-sep{display:none}.tdb_header_menu .tdb-menu-item-text{word-wrap:break-word}.tdb_header_menu .tdb-menu-item-text,.tdb_header_menu .tdb-sub-menu-icon,.tdb_header_menu .tdb-menu-more-subicon{vertical-align:middle}.tdb_header_menu .tdb-sub-menu-icon,.tdb_header_menu .tdb-menu-more-subicon{position:relative;top:0;padding-left:0}.tdb_header_menu .tdb-normal-menu{position:relative}.tdb_header_menu .tdb-normal-menu ul{left:0;padding:15px 0;text-align:left}.tdb_header_menu .tdb-normal-menu ul ul{margin-top:-15px}.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item{position:relative;list-style-type:none}.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item>a{position:relative;display:block;padding:7px 30px;font-size:12px;line-height:20px;color:#111}.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item>a .tdb-sub-menu-icon,.tdb_header_menu .td-pulldown-filter-list .tdb-menu-item>a .tdb-sub-menu-icon{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:0;padding-right:inherit;font-size:7px;line-height:20px}.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item>a .tdb-sub-menu-icon-svg,.tdb_header_menu .td-pulldown-filter-list .tdb-menu-item>a .tdb-sub-menu-icon-svg{line-height:0}.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item>a .tdb-sub-menu-icon-svg svg,.tdb_header_menu .td-pulldown-filter-list .tdb-menu-item>a .tdb-sub-menu-icon-svg svg{width:7px;height:auto}.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item>a .tdb-sub-menu-icon-svg svg,.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item>a .tdb-sub-menu-icon-svg svg *,.tdb_header_menu .td-pulldown-filter-list .tdb-menu-item>a .tdb-sub-menu-icon svg,.tdb_header_menu .td-pulldown-filter-list .tdb-menu-item>a .tdb-sub-menu-icon svg *{fill:#000}.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item:hover>ul,.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item.tdb-hover>ul{top:0;display:block!important}.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item.current-menu-item>a,.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item.current-menu-ancestor>a,.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item.current-category-ancestor>a,.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item.current-page-ancestor>a,.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item.tdb-hover>a,.tdb_header_menu .tdb-normal-menu ul .tdb-menu-item:hover>a{color:var(--td_theme_color,#4db2ec)}.tdb_header_menu .tdb-normal-menu>ul{left:-15px}.tdb_header_menu.tdb-menu-sub-inline .tdb-normal-menu ul,.tdb_header_menu.tdb-menu-sub-inline .td-pulldown-filter-list{width:100%!important}.tdb_header_menu.tdb-menu-sub-inline .tdb-normal-menu ul li,.tdb_header_menu.tdb-menu-sub-inline .td-pulldown-filter-list li{display:inline-block;width:auto!important}.tdb_header_menu.tdb-menu-sub-inline .tdb-normal-menu,.tdb_header_menu.tdb-menu-sub-inline .tdb-normal-menu .tdb-menu-item{position:static}.tdb_header_menu.tdb-menu-sub-inline .tdb-normal-menu ul ul{margin-top:0!important}.tdb_header_menu.tdb-menu-sub-inline .tdb-normal-menu>ul{left:0!important}.tdb_header_menu.tdb-menu-sub-inline .tdb-normal-menu .tdb-menu-item>a .tdb-sub-menu-icon{float:none;line-height:1}.tdb_header_menu.tdb-menu-sub-inline .tdb-normal-menu .tdb-menu-item:hover>ul,.tdb_header_menu.tdb-menu-sub-inline .tdb-normal-menu .tdb-menu-item.tdb-hover>ul{top:100%}.tdb_header_menu.tdb-menu-sub-inline .tdb-menu-items-dropdown{position:static}.tdb_header_menu.tdb-menu-sub-inline .td-pulldown-filter-list{left:0!important}.tdb-menu .tdb-mega-menu .sub-menu{-webkit-transition:opacity 0.3s ease;transition:opacity 0.3s ease;width:1114px!important}.tdb-menu .tdb-mega-menu .sub-menu,.tdb-menu .tdb-mega-menu .sub-menu>li{position:absolute;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tdb-menu .tdb-mega-menu .sub-menu>li{top:0;width:100%;max-width:1114px!important;height:auto;background-color:#fff;border:1px solid #eaeaea;overflow:hidden}.tdc-dragged .tdb-block-menu ul{visibility:hidden!important;opacity:0!important;-webkit-transition:all 0.3s ease;transition:all 0.3s ease}.tdb-mm-align-screen .tdb-menu .tdb-mega-menu .sub-menu{-webkit-transform:translateX(0);transform:translateX(0)}.tdb-mm-align-parent .tdb-menu .tdb-mega-menu{position:relative}.tdb-menu .tdb-mega-menu .tdc-row:not([class*='stretch_row_']),.tdb-menu .tdb-mega-menu .tdc-row-composer:not([class*='stretch_row_']){width:auto!important;max-width:1240px}.tdb-menu .tdb-mega-menu-page>.sub-menu>li .tdb-page-tpl-edit-btns{position:absolute;top:0;left:0;display:none;flex-wrap:wrap;gap:0 4px}.tdb-menu .tdb-mega-menu-page>.sub-menu>li:hover .tdb-page-tpl-edit-btns{display:flex}.tdb-menu .tdb-mega-menu-page>.sub-menu>li .tdb-page-tpl-edit-btn{background-color:#000;padding:1px 8px 2px;font-size:11px;color:#fff;z-index:100}.tdi_69 .td_block_inner{text-align:center}.tdi_69 .tdb-menu>li>a,.tdi_69 .td-subcat-more{padding:0 12px;color:#ffffff}.tdi_69 .tdb-menu>li .tdb-menu-sep,.tdi_69 .tdb-menu-items-dropdown .tdb-menu-sep{top:-1px}.tdi_69 .tdb-menu>li>a .tdb-sub-menu-icon,.tdi_69 .td-subcat-more .tdb-menu-more-subicon{font-size:10px;top:1px}.tdi_69 .td-subcat-more .tdb-menu-more-icon{top:0px}.tdi_69 .tdb-menu>li>a .tdb-sub-menu-icon-svg svg,.tdi_69 .tdb-menu>li>a .tdb-sub-menu-icon-svg svg *,.tdi_69 .td-subcat-more .tdb-menu-more-subicon-svg svg,.tdi_69 .td-subcat-more .tdb-menu-more-subicon-svg svg *,.tdi_69 .td-subcat-more .tdb-menu-more-icon-svg,.tdi_69 .td-subcat-more .tdb-menu-more-icon-svg *{fill:#ffffff}.tdi_69 .tdb-menu>li>a,.tdi_69 .td-subcat-more,.tdi_69 .td-subcat-more>.tdb-menu-item-text{font-family:Rubik!important;font-size:13px!important;line-height:48px!important;font-weight:400!important;text-transform:capitalize!important;letter-spacing:0.4px!important}.tdi_69 .tdb-menu>.tdb-normal-menu>ul,.tdi_69 .td-pulldown-filter-list{left:-15px}.tdi_69 .tdb-normal-menu ul ul,.tdi_69 .td-pulldown-filter-list .sub-menu{margin-top:-15px}.tdi_69 .tdb-menu .tdb-normal-menu ul,.tdi_69 .td-pulldown-filter-list,.tdi_69 .td-pulldown-filter-list .sub-menu{padding:10px 0 15px;box-shadow:0px 2px 10px 0px rgba(0,0,0,0.15)}.tdi_69 .tdb-menu .tdb-normal-menu ul .tdb-menu-item>a,.tdi_69 .tdb-menu-items-dropdown .td-pulldown-filter-list li>a{padding:5px 20px}.tdi_69 .tdb-normal-menu ul .tdb-menu-item>a .tdb-sub-menu-icon,.tdi_69 .td-pulldown-filter-list .tdb-menu-item>a .tdb-sub-menu-icon{right:0;margin-top:1px}.tdi_69 .tdb-menu .tdb-normal-menu ul .tdb-menu-item>a,.tdi_69 .tdb-menu-items-dropdown .td-pulldown-filter-list li a,.tdi_69 .tdb-menu-items-dropdown .td-pulldown-filter-list li a{color:#000000}.tdi_69 .tdb-menu .tdb-normal-menu ul .tdb-menu-item>a .tdb-sub-menu-icon-svg svg,.tdi_69 .tdb-menu .tdb-normal-menu ul .tdb-menu-item>a .tdb-sub-menu-icon-svg svg *,.tdi_69 .tdb-menu-items-dropdown .td-pulldown-filter-list li a .tdb-sub-menu-icon-svg svg,.tdi_69 .tdb-menu-items-dropdown .td-pulldown-filter-list li a .tdb-sub-menu-icon-svg svg *{fill:#000000}.tdi_69 .tdb-menu .tdb-normal-menu ul .tdb-menu-item>a,.tdi_69 .td-pulldown-filter-list li a{font-family:Rubik!important;font-size:12px!important;font-weight:500!important}.tdi_69:not(.tdb-mm-align-screen) .tdb-mega-menu .sub-menu,.tdi_69 .tdb-mega-menu .sub-menu>li{max-width:1164px!important}.tdi_69 .tdb-mega-menu-page>.sub-menu>li{padding:25px}.tdi_69 .tdb-menu .tdb-mega-menu .sub-menu>li{border-width:0px;box-shadow:0px 4px 20px 0px rgba(0,0,0,0.15)}@media (max-width:1140px){.tdb-menu .tdb-mega-menu .sub-menu>li{width:100%!important}}@media (max-width:1018px){.tdi_69 .td-pulldown-filter-list{left:auto;right:-15px}}@media (min-width:1019px) and (max-width:1140px){.tdi_69:not(.tdb-mm-align-screen) .tdb-mega-menu .sub-menu,.tdi_69 .tdb-mega-menu .sub-menu>li{max-width:100%!important}.tdi_69 .tdb-mega-menu-page>.sub-menu>li{padding:20px}}@media (min-width:768px) and (max-width:1018px){.tdi_69 .tdb-menu>li>a,.tdi_69 .td-subcat-more{padding:0 10px}.tdi_69 .tdb-menu>li>a .tdb-sub-menu-icon,.tdi_69 .td-subcat-more .tdb-menu-more-subicon{font-size:9px;margin-left:5px;top:0px}.tdi_69 .tdb-menu>li>a,.tdi_69 .td-subcat-more,.tdi_69 .td-subcat-more>.tdb-menu-item-text{font-size:10px!important;line-height:40px!important}.tdi_69:not(.tdb-mm-align-screen) .tdb-mega-menu .sub-menu,.tdi_69 .tdb-mega-menu .sub-menu>li{max-width:100%!important}.tdi_69 .tdb-mega-menu-page>.sub-menu>li{padding:15px}}</style>
<style>.tds_menu_active3 .tdb-menu>li>a:after{opacity:0;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease;height:100%;z-index:-1}.tds_menu_active3 .tdb-menu>li.current-menu-item>a:after,.tds_menu_active3 .tdb-menu>li.current-menu-ancestor>a:after,.tds_menu_active3 .tdb-menu>li.current-category-ancestor>a:after,.tds_menu_active3 .tdb-menu>li.current-page-ancestor>a:after,.tds_menu_active3 .tdb-menu>li:hover>a:after,.tds_menu_active3 .tdb-menu>li.tdb-hover>a:after{opacity:1}.tds_menu_active3 .tdb-menu-items-dropdown .td-subcat-more:after{opacity:0;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease;height:100%;z-index:-1}.tds_menu_active3 .tdb-menu-items-dropdown:hover .td-subcat-more:after{opacity:1}.tdi_69 .tdb-menu>li>a:after,.tdi_69 .tdb-menu-items-dropdown .td-subcat-more:after{background-color:#000000}</style>
<style>.tdi_69 .tdb-menu ul .tdb-normal-menu.current-menu-item>a,.tdi_69 .tdb-menu ul .tdb-normal-menu.current-menu-ancestor>a,.tdi_69 .tdb-menu ul .tdb-normal-menu.current-category-ancestor>a,.tdi_69 .tdb-menu ul .tdb-normal-menu.tdb-hover>a,.tdi_69 .tdb-menu ul .tdb-normal-menu:hover>a,.tdi_69 .tdb-menu-items-dropdown .td-pulldown-filter-list li:hover>a{color:#008d7f}.tdi_69 .tdb-menu ul .tdb-normal-menu.current-menu-item>a .tdb-sub-menu-icon-svg svg,.tdi_69 .tdb-menu ul .tdb-normal-menu.current-menu-item>a .tdb-sub-menu-icon-svg svg *,.tdi_69 .tdb-menu ul .tdb-normal-menu.current-menu-ancestor>a .tdb-sub-menu-icon-svg svg,.tdi_69 .tdb-menu ul .tdb-normal-menu.current-menu-ancestor>a .tdb-sub-menu-icon-svg svg *,.tdi_69 .tdb-menu ul .tdb-normal-menu.current-category-ancestor>a .tdb-sub-menu-icon-svg svg,.tdi_69 .tdb-menu ul .tdb-normal-menu.current-category-ancestor>a .tdb-sub-menu-icon-svg svg *,.tdi_69 .tdb-menu ul .tdb-normal-menu.tdb-hover>a .tdb-sub-menu-icon-svg svg,.tdi_69 .tdb-menu ul .tdb-normal-menu.tdb-hover>a .tdb-sub-menu-icon-svg svg *,.tdi_69 .tdb-menu ul .tdb-normal-menu:hover>a .tdb-sub-menu-icon-svg svg,.tdi_69 .tdb-menu ul .tdb-normal-menu:hover>a .tdb-sub-menu-icon-svg svg *,.tdi_69 .tdb-menu-items-dropdown .td-pulldown-filter-list li:hover>a .tdb-sub-menu-icon-svg svg,.tdi_69 .tdb-menu-items-dropdown .td-pulldown-filter-list li:hover>a .tdb-sub-menu-icon-svg svg *{fill:#008d7f}</style><div id=tdi_69 class="td_block_inner td-fix-index"><div class="tdb-main-sub-icon-fake"><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></div><div class="tdb-sub-icon-fake"><i class="tdb-sub-menu-icon td-icon-right-arrow"></i></div><ul id="menu-td-demo-header-menu-3" class="tdb-block-menu tdb-menu tdb-menu-items-visible"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-163 current_page_item menu-item-first tdb-menu-item-button tdb-menu-item tdb-normal-menu menu-item-167"><a href="https://reviewboard.com/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-home"></i> Home</div></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom tdb-menu-item-button tdb-menu-item tdb-mega-menu tdb-mega-menu-inactive tdb-mega-menu-cat tdb-mega-menu-first menu-item-168"><a href="https://reviewboard.com/category/global/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-globe"></i> Global</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item-0"><div class="tdb-menu-item-text"><div class="tdb_header_mega_menu tdi_72 td-no-subcats td_with_ajax_pagination td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_72" >
<style>.tdb_module_header{width:100%;padding-bottom:0}.tdb_module_header .td-module-container{display:flex;flex-direction:column;position:relative}.tdb_module_header .td-module-container:before{content:'';position:absolute;bottom:0;left:0;width:100%;height:1px}.tdb_module_header .td-image-wrap{display:block;position:relative;padding-bottom:70%}.tdb_module_header .td-image-container{position:relative;width:100%;flex:0 0 auto}.tdb_module_header .td-module-thumb{margin-bottom:0}.tdb_module_header .td-module-meta-info{width:100%;margin-bottom:0;padding:7px 0 0 0;z-index:1;border:0 solid #eaeaea;min-height:0}.tdb_module_header .entry-title{margin:0;font-size:13px;font-weight:500;line-height:18px}.tdb_module_header .td-post-author-name,.tdb_module_header .td-post-date,.tdb_module_header .td-module-comments{vertical-align:text-top}.tdb_module_header .td-post-author-name,.tdb_module_header .td-post-date{top:3px}.tdb_module_header .td-thumb-css{width:100%;height:100%;position:absolute;background-size:cover;background-position:center center}.tdb_module_header .td-category-pos-image .td-post-category:not(.td-post-extra-category),.tdb_module_header .td-post-vid-time{position:absolute;z-index:2;bottom:0}.tdb_module_header .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:0}.tdb_module_header .td-post-vid-time{right:0;background-color:#000;padding:3px 6px 4px;font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif);font-size:10px;font-weight:600;line-height:1;color:#fff}.tdb_module_header .td-excerpt{margin:20px 0 0;line-height:21px}.tdb_module_header .td-read-more{margin:20px 0 0}.tdb_header_mega_menu{display:flex;overflow:visible}.tdb_header_mega_menu .block-mega-child-cats{position:relative;padding:22px 0;width:200px;max-height:none;vertical-align:top;text-align:left;overflow:visible}.tdb_header_mega_menu .block-mega-child-cats:before{content:'';position:absolute;top:0;right:0;width:100vw;height:100%;background-color:#fafafa;z-index:-1}.tdb_header_mega_menu .block-mega-child-cats:after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;border-width:0 1px 0 0;border-style:solid;border-color:#eaeaea}.tdb_header_mega_menu .block-mega-child-cats a{display:block;font-size:13px;font-weight:600;color:#333;padding:5px 22px;position:relative;vertical-align:middle;border-width:1px 0;border-style:solid;border-color:transparent;z-index:99}.tdb_header_mega_menu .block-mega-child-cats .cur-sub-cat{background-color:#fff;color:var(--td_theme_color,#4db2ec);border-color:#eaeaea;z-index:99}.tdb_header_mega_menu .td-next-prev-wrap{text-align:left}.tdb_header_mega_menu .td-next-prev-wrap a{width:auto;height:auto;min-width:25px;min-height:25px}.td-js-loaded .tdb_header_mega_menu .td-audio-player{visibility:inherit}.tdb-mega-modules-wrap{flex:1;padding:22px;display:flex;flex-direction:column;justify-content:space-between}.tdb-mega-modules-wrap .td_block_inner{*zoom:1}.tdb-mega-modules-wrap .td_block_inner:before,.tdb-mega-modules-wrap .td_block_inner:after{display:table;content:'';line-height:0}.tdb-mega-modules-wrap .td_block_inner:after{clear:both}.tdb_module_mm .td-author-photo{display:inline-block}.tdb_module_mm .td-author-photo,.tdb_module_mm .td-author-photo img{vertical-align:middle}.tdb_module_mm .td-module-meta-info{text-align:left}.tdi_72 .tdb-mega-modules-wrap{padding:25px}.tdi_72 .block-mega-child-cats{width:100%;padding:5px 0 15px;width:100%;text-align:center}.tdi_72 .block-mega-child-cats:after{border-width:0px}.tdi_72{flex-direction:column-reverse}.tdi_72 .block-mega-child-cats:before{left:50%;transform:translateX(-50%);right:auto}.tdi_72 .block-mega-child-cats a{display:inline-block;padding:5px 15px;border-width:0px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important;font-weight:500!important}.tdi_72 .block-mega-child-cats .cur-sub-cat{border-width:0px;color:#008d7f}.tdi_72:not(.td-no-subcats) .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_72:not(.td-no-subcats) .td_module_wrap{margin-right:-1px}.tdi_72.td-no-subcats .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_72.td-no-subcats .td_module_wrap{margin-right:-1px}.tdi_72 .td_module_wrap:nth-child(5n+1){clear:both}.tdi_72 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0;padding-bottom:0}.tdi_72 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none}.tdi_72 .td_module_wrap{padding-left:7.5px;padding-right:7.5px;padding-bottom:0px;margin-bottom:0px;display:flex;flex-direction:column}.tdi_72 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px;display:flex;flex-wrap:wrap}.tdi_72 .td-module-container:before{bottom:-0px;border-color:#eaeaea}.tdi_72 .td-module-container{border-color:#eaeaea;flex-direction:column;flex:1;flex-basis:auto}.tdi_72 .entry-thumb{background-position:center 50%}.tdi_72 .td-image-container{display:block;order:0;margin-left:auto;margin-right:auto}.ie10 .tdi_72 .td-module-meta-info,.ie11 .tdi_72 .td-module-meta-info{flex:auto}.tdi_72 .td-post-vid-time{display:block}.tdi_72 .td-module-meta-info,.tdi_72 .td-next-prev-wrap{text-align:center}.tdi_72 .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_72.td-h-effect-up-shadow .td_module_wrap:hover .td-category-pos-image .td-post-category:not(.td-post-extra-category){transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_72 .td-module-meta-info{padding:15px 5px 0 5px;border-color:#eaeaea}.tdi_72 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_72 .td-excerpt{margin:0px;column-count:1;column-gap:48px;display:none}.tdi_72 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_72 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_72 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_72 .td-author-date{display:inline}.tdi_72 .td-post-author-name{display:none}.tdi_72 .td-post-date,.tdi_72 .td-post-author-name span{display:none}.tdi_72 .entry-review-stars{display:inline-block}.tdi_72 .td-icon-star,.tdi_72 .td-icon-star-empty,.tdi_72 .td-icon-star-half{font-size:15px}.tdi_72 .td-module-comments{display:none}.tdi_72 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_72:not(.td-no-subcats) .block-mega-child-cats:before{background-color:#ffffff}.tdi_72 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_72 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_72 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_72.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_72 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_72 .td-module-exclusive .td-module-title a:before{display:inline-block}html:not([class*='ie']) .tdi_72 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_72 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_72 .tdb-mega-modules-wrap{padding:20px}.tdi_72 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_72 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_72 .td_module_wrap .td-module-container:before{display:block!important}.tdi_72 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_72 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_72 .td-module-container:before{bottom:-0px}.tdi_72 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_72 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_72 .tdb-mega-modules-wrap{padding:15px}.tdi_72 .block-mega-child-cats{padding:3px 0 12px}.tdi_72 .block-mega-child-cats a{padding:3px 12px;font-size:11px!important}.tdi_72 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-left:3.5px;padding-right:3.5px;padding-bottom:0px;margin-bottom:0px}.tdi_72 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_72 .td_module_wrap .td-module-container:before{display:block!important}.tdi_72 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_72 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_72 .td_block_inner{margin-left:-3.5px;margin-right:-3.5px}.tdi_72 .td-module-container:before{bottom:-0px}.tdi_72 .td-module-meta-info{padding:12px 0 0 0}.tdi_72 .entry-title{margin:8px 0 0 0;font-size:11px!important}.tdi_72.td_with_ajax_pagination .td-next-prev-wrap a{font-size:6px}.tdi_72.td_with_ajax_pagination .td-next-prev-wrap .td-next-prev-icon-svg svg{width:6px;height:calc(6px + 1px)}.tdi_72 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_72 .td-post-category{font-size:11px!important}@media (min-width:768px){.tdi_72 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_72 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_72 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_72 .td_module_wrap .td-module-container:before{display:block!important}.tdi_72 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_72 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_72 .td-module-container:before{bottom:-0px}.tdi_72 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_72 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_72 = new tdBlock();
block_tdi_72.id = "tdi_72";
block_tdi_72.atts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_mega_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":3,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"td_category_ids_filter","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"next_prev","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","tdc_css_class":"tdi_72","tdc_css_class_style":"tdi_72_rand_style","context":"","category_id":"36","subcats_posts_limit":"5","child_cats_limit":"10","hide_all":"","tdc_css":"","class":"tdi_72"}';
block_tdi_72.td_column_number = "3";
block_tdi_72.block_type = "tdb_header_mega_menu";
block_tdi_72.post_count = "5";
block_tdi_72.found_posts = "10";
block_tdi_72.header_color = "";
block_tdi_72.ajax_pagination_infinite_stop = "";
block_tdi_72.max_num_pages = "2";
tdBlocksArray.push(block_tdi_72);
</script><div class="tdb-mega-modules-wrap"><div id=tdi_72 class="td_block_inner">
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" class="td-image-wrap " title="More and More People Stay Home as Coronavirus Spreads" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" title="More and More People Stay Home as Coronavirus Spreads">More and More People Stay Home as Coronavirus Spreads</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" class="td-image-wrap " title="The Real Economy Has Never Been Tested by a Pandemic" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" title="The Real Economy Has Never Been Tested by a Pandemic">The Real Economy Has Never Been Tested by a Pandemic</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" class="td-image-wrap " title="How to Think and Act in the Plummeting Stock Market" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" title="How to Think and Act in the Plummeting Stock Market">How to Think and Act in the Plummeting Stock Market</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" class="td-image-wrap " title="Companies Are Putting Profits Ahead of Public Health" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/80-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" title="Companies Are Putting Profits Ahead of Public Health">Companies Are Putting Profits Ahead of Public Health</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" class="td-image-wrap " title="Witnessing the Birth of the New Coronavirus Economy" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/79-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" title="Witnessing the Birth of the New Coronavirus Economy">Witnessing the Birth of the New Coronavirus Economy</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_72" data-td_block_id="tdi_72"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_72" data-td_block_id="tdi_72"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div> <!-- ./block1 --></div></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom tdb-menu-item-button tdb-menu-item tdb-mega-menu tdb-mega-menu-inactive tdb-mega-menu-cat tdb-mega-menu-cats-first menu-item-169"><a href="https://reviewboard.com/category/lifestyle/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-bicycle"></i> Lifestyle</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item-0"><div class="tdb-menu-item-text"><div class="tdb_header_mega_menu tdi_73 td_with_ajax_pagination td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_73" >
<style>.tdi_73 .tdb-mega-modules-wrap{padding:25px}.tdi_73 .block-mega-child-cats{width:100%;padding:5px 0 15px;width:100%;text-align:center}.tdi_73 .block-mega-child-cats:after{border-width:0px}.tdi_73{flex-direction:column-reverse}.tdi_73 .block-mega-child-cats:before{left:50%;transform:translateX(-50%);right:auto}.tdi_73 .block-mega-child-cats a{display:inline-block;padding:5px 15px;border-width:0px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important;font-weight:500!important}.tdi_73 .block-mega-child-cats .cur-sub-cat{border-width:0px;color:#008d7f}.tdi_73:not(.td-no-subcats) .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_73:not(.td-no-subcats) .td_module_wrap{margin-right:-1px}.tdi_73.td-no-subcats .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_73.td-no-subcats .td_module_wrap{margin-right:-1px}.tdi_73 .td_module_wrap:nth-child(5n+1){clear:both}.tdi_73 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0;padding-bottom:0}.tdi_73 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none}.tdi_73 .td_module_wrap{padding-left:7.5px;padding-right:7.5px;padding-bottom:0px;margin-bottom:0px;display:flex;flex-direction:column}.tdi_73 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px;display:flex;flex-wrap:wrap}.tdi_73 .td-module-container:before{bottom:-0px;border-color:#eaeaea}.tdi_73 .td-module-container{border-color:#eaeaea;flex-direction:column;flex:1;flex-basis:auto}.tdi_73 .entry-thumb{background-position:center 50%}.tdi_73 .td-image-container{display:block;order:0;margin-left:auto;margin-right:auto}.ie10 .tdi_73 .td-module-meta-info,.ie11 .tdi_73 .td-module-meta-info{flex:auto}.tdi_73 .td-post-vid-time{display:block}.tdi_73 .td-module-meta-info,.tdi_73 .td-next-prev-wrap{text-align:center}.tdi_73 .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_73.td-h-effect-up-shadow .td_module_wrap:hover .td-category-pos-image .td-post-category:not(.td-post-extra-category){transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_73 .td-module-meta-info{padding:15px 5px 0 5px;border-color:#eaeaea}.tdi_73 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_73 .td-excerpt{margin:0px;column-count:1;column-gap:48px;display:none}.tdi_73 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_73 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_73 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_73 .td-author-date{display:inline}.tdi_73 .td-post-author-name{display:none}.tdi_73 .td-post-date,.tdi_73 .td-post-author-name span{display:none}.tdi_73 .entry-review-stars{display:inline-block}.tdi_73 .td-icon-star,.tdi_73 .td-icon-star-empty,.tdi_73 .td-icon-star-half{font-size:15px}.tdi_73 .td-module-comments{display:none}.tdi_73 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_73:not(.td-no-subcats) .block-mega-child-cats:before{background-color:#ffffff}.tdi_73 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_73 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_73 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_73.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_73 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_73 .td-module-exclusive .td-module-title a:before{display:inline-block}html:not([class*='ie']) .tdi_73 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_73 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_73 .tdb-mega-modules-wrap{padding:20px}.tdi_73 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_73 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_73 .td_module_wrap .td-module-container:before{display:block!important}.tdi_73 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_73 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_73 .td-module-container:before{bottom:-0px}.tdi_73 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_73 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_73 .tdb-mega-modules-wrap{padding:15px}.tdi_73 .block-mega-child-cats{padding:3px 0 12px}.tdi_73 .block-mega-child-cats a{padding:3px 12px;font-size:11px!important}.tdi_73 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-left:3.5px;padding-right:3.5px;padding-bottom:0px;margin-bottom:0px}.tdi_73 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_73 .td_module_wrap .td-module-container:before{display:block!important}.tdi_73 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_73 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_73 .td_block_inner{margin-left:-3.5px;margin-right:-3.5px}.tdi_73 .td-module-container:before{bottom:-0px}.tdi_73 .td-module-meta-info{padding:12px 0 0 0}.tdi_73 .entry-title{margin:8px 0 0 0;font-size:11px!important}.tdi_73.td_with_ajax_pagination .td-next-prev-wrap a{font-size:6px}.tdi_73.td_with_ajax_pagination .td-next-prev-wrap .td-next-prev-icon-svg svg{width:6px;height:calc(6px + 1px)}.tdi_73 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_73 .td-post-category{font-size:11px!important}@media (min-width:768px){.tdi_73 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_73 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_73 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_73 .td_module_wrap .td-module-container:before{display:block!important}.tdi_73 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_73 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_73 .td-module-container:before{bottom:-0px}.tdi_73 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_73 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_73 = new tdBlock();
block_tdi_73.id = "tdi_73";
block_tdi_73.atts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_mega_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":3,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"td_category_ids_filter","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"next_prev","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","tdc_css_class":"tdi_73","tdc_css_class_style":"tdi_73_rand_style","context":"","category_id":"38","subcats_posts_limit":"5","child_cats_limit":"10","hide_all":"","tdc_css":"","class":"tdi_73"}';
block_tdi_73.td_column_number = "3";
block_tdi_73.block_type = "tdb_header_mega_menu";
block_tdi_73.post_count = "5";
block_tdi_73.found_posts = "25";
block_tdi_73.header_color = "";
block_tdi_73.ajax_pagination_infinite_stop = "";
block_tdi_73.max_num_pages = "5";
tdBlocksArray.push(block_tdi_73);
</script><div class="block-mega-child-cats"><a 
                        class="cur-sub-cat mega-menu-sub-cat-tdi_73" 
                        id="tdi_74" 
                        data-td_block_id="tdi_73" 
                        data-td_filter_value="" 
                        href="https://reviewboard.com/category/lifestyle/"
                    >All</a><a 
                        class="mega-menu-sub-cat-tdi_73" 
                        id="tdi_75" 
                        data-td_block_id="tdi_73" 
                        data-td_filter_value="39" 
                        href="https://reviewboard.com/category/lifestyle/music/"
                    >Music</a><a 
                        class="mega-menu-sub-cat-tdi_73" 
                        id="tdi_76" 
                        data-td_block_id="tdi_73" 
                        data-td_filter_value="41" 
                        href="https://reviewboard.com/category/lifestyle/receipes/"
                    >Receipes</a><a 
                        class="mega-menu-sub-cat-tdi_73" 
                        id="tdi_77" 
                        data-td_block_id="tdi_73" 
                        data-td_filter_value="44" 
                        href="https://reviewboard.com/category/lifestyle/travel/"
                    >Travel</a><a 
                        class="mega-menu-sub-cat-tdi_73" 
                        id="tdi_78" 
                        data-td_block_id="tdi_73" 
                        data-td_filter_value="46" 
                        href="https://reviewboard.com/category/lifestyle/whats-hot/"
                    >What's Hot</a></div><div class="tdb-mega-modules-wrap"><div id=tdi_73 class="td_block_inner">
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/your-home-premium-sound-systems-offer-astounding-quality/"  rel="bookmark" class="td-image-wrap " title="Your Home: Premium Sound Systems Offer Astounding Quality" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/1-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/lifestyle/music/" class="td-post-category" >Music</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/your-home-premium-sound-systems-offer-astounding-quality/"  rel="bookmark" title="Your Home: Premium Sound Systems Offer Astounding Quality">Your Home: Premium Sound Systems Offer Astounding Quality</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/these-guys-are-making-more-money-than-anybody-could-guess/"  rel="bookmark" class="td-image-wrap " title="These Guys Are Making More Money than Anybody Could Guess" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/2-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/lifestyle/music/" class="td-post-category" >Music</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/these-guys-are-making-more-money-than-anybody-could-guess/"  rel="bookmark" title="These Guys Are Making More Money than Anybody Could Guess">These Guys Are Making More Money than Anybody Could Guess</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/sarah-shows-off-her-stunning-body-in-concert-at-wembley-arena/"  rel="bookmark" class="td-image-wrap " title="Sarah Shows Off Her Stunning Body in Concert at Wembley Arena" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/83-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/lifestyle/music/" class="td-post-category" >Music</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/sarah-shows-off-her-stunning-body-in-concert-at-wembley-arena/"  rel="bookmark" title="Sarah Shows Off Her Stunning Body in Concert at Wembley Arena">Sarah Shows Off Her Stunning Body in Concert at Wembley Arena</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/josh-wins-grammys-newcommers-of-the-year-with-their-album/"  rel="bookmark" class="td-image-wrap " title="Josh Wins Grammys Newcommers of the Year With Their Album" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/82-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/lifestyle/music/" class="td-post-category" >Music</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/josh-wins-grammys-newcommers-of-the-year-with-their-album/"  rel="bookmark" title="Josh Wins Grammys Newcommers of the Year With Their Album">Josh Wins Grammys Newcommers of the Year With Their Album</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/concert-therapy-breathtaking-barbados-snorkeling-experience/"  rel="bookmark" class="td-image-wrap " title="Concert Therapy: Breathtaking Barbados Snorkeling Experience" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/81-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/lifestyle/music/" class="td-post-category" >Music</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/concert-therapy-breathtaking-barbados-snorkeling-experience/"  rel="bookmark" title="Concert Therapy: Breathtaking Barbados Snorkeling Experience">Concert Therapy: Breathtaking Barbados Snorkeling Experience</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_73" data-td_block_id="tdi_73"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_73" data-td_block_id="tdi_73"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div> <!-- ./block1 --></div></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom tdb-menu-item-button tdb-menu-item tdb-mega-menu tdb-mega-menu-inactive tdb-mega-menu-cat menu-item-170"><a href="https://reviewboard.com/category/fashion/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-lotus"></i> Fashion</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item-0"><div class="tdb-menu-item-text"><div class="tdb_header_mega_menu tdi_79 td-no-subcats td_with_ajax_pagination td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_79" >
<style>.tdi_79 .tdb-mega-modules-wrap{padding:25px}.tdi_79 .block-mega-child-cats{width:100%;padding:5px 0 15px;width:100%;text-align:center}.tdi_79 .block-mega-child-cats:after{border-width:0px}.tdi_79{flex-direction:column-reverse}.tdi_79 .block-mega-child-cats:before{left:50%;transform:translateX(-50%);right:auto}.tdi_79 .block-mega-child-cats a{display:inline-block;padding:5px 15px;border-width:0px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important;font-weight:500!important}.tdi_79 .block-mega-child-cats .cur-sub-cat{border-width:0px;color:#008d7f}.tdi_79:not(.td-no-subcats) .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_79:not(.td-no-subcats) .td_module_wrap{margin-right:-1px}.tdi_79.td-no-subcats .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_79.td-no-subcats .td_module_wrap{margin-right:-1px}.tdi_79 .td_module_wrap:nth-child(5n+1){clear:both}.tdi_79 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0;padding-bottom:0}.tdi_79 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none}.tdi_79 .td_module_wrap{padding-left:7.5px;padding-right:7.5px;padding-bottom:0px;margin-bottom:0px;display:flex;flex-direction:column}.tdi_79 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px;display:flex;flex-wrap:wrap}.tdi_79 .td-module-container:before{bottom:-0px;border-color:#eaeaea}.tdi_79 .td-module-container{border-color:#eaeaea;flex-direction:column;flex:1;flex-basis:auto}.tdi_79 .entry-thumb{background-position:center 50%}.tdi_79 .td-image-container{display:block;order:0;margin-left:auto;margin-right:auto}.ie10 .tdi_79 .td-module-meta-info,.ie11 .tdi_79 .td-module-meta-info{flex:auto}.tdi_79 .td-post-vid-time{display:block}.tdi_79 .td-module-meta-info,.tdi_79 .td-next-prev-wrap{text-align:center}.tdi_79 .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_79.td-h-effect-up-shadow .td_module_wrap:hover .td-category-pos-image .td-post-category:not(.td-post-extra-category){transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_79 .td-module-meta-info{padding:15px 5px 0 5px;border-color:#eaeaea}.tdi_79 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_79 .td-excerpt{margin:0px;column-count:1;column-gap:48px;display:none}.tdi_79 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_79 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_79 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_79 .td-author-date{display:inline}.tdi_79 .td-post-author-name{display:none}.tdi_79 .td-post-date,.tdi_79 .td-post-author-name span{display:none}.tdi_79 .entry-review-stars{display:inline-block}.tdi_79 .td-icon-star,.tdi_79 .td-icon-star-empty,.tdi_79 .td-icon-star-half{font-size:15px}.tdi_79 .td-module-comments{display:none}.tdi_79 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_79:not(.td-no-subcats) .block-mega-child-cats:before{background-color:#ffffff}.tdi_79 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_79 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_79 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_79.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_79 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_79 .td-module-exclusive .td-module-title a:before{display:inline-block}html:not([class*='ie']) .tdi_79 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_79 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_79 .tdb-mega-modules-wrap{padding:20px}.tdi_79 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_79 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_79 .td_module_wrap .td-module-container:before{display:block!important}.tdi_79 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_79 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_79 .td-module-container:before{bottom:-0px}.tdi_79 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_79 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_79 .tdb-mega-modules-wrap{padding:15px}.tdi_79 .block-mega-child-cats{padding:3px 0 12px}.tdi_79 .block-mega-child-cats a{padding:3px 12px;font-size:11px!important}.tdi_79 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-left:3.5px;padding-right:3.5px;padding-bottom:0px;margin-bottom:0px}.tdi_79 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_79 .td_module_wrap .td-module-container:before{display:block!important}.tdi_79 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_79 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_79 .td_block_inner{margin-left:-3.5px;margin-right:-3.5px}.tdi_79 .td-module-container:before{bottom:-0px}.tdi_79 .td-module-meta-info{padding:12px 0 0 0}.tdi_79 .entry-title{margin:8px 0 0 0;font-size:11px!important}.tdi_79.td_with_ajax_pagination .td-next-prev-wrap a{font-size:6px}.tdi_79.td_with_ajax_pagination .td-next-prev-wrap .td-next-prev-icon-svg svg{width:6px;height:calc(6px + 1px)}.tdi_79 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_79 .td-post-category{font-size:11px!important}@media (min-width:768px){.tdi_79 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_79 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_79 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_79 .td_module_wrap .td-module-container:before{display:block!important}.tdi_79 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_79 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_79 .td-module-container:before{bottom:-0px}.tdi_79 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_79 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_79 = new tdBlock();
block_tdi_79.id = "tdi_79";
block_tdi_79.atts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_mega_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":3,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"td_category_ids_filter","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"next_prev","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","tdc_css_class":"tdi_79","tdc_css_class_style":"tdi_79_rand_style","context":"","category_id":"32","subcats_posts_limit":"5","child_cats_limit":"10","hide_all":"","tdc_css":"","class":"tdi_79"}';
block_tdi_79.td_column_number = "3";
block_tdi_79.block_type = "tdb_header_mega_menu";
block_tdi_79.post_count = "5";
block_tdi_79.found_posts = "10";
block_tdi_79.header_color = "";
block_tdi_79.ajax_pagination_infinite_stop = "";
block_tdi_79.max_num_pages = "2";
tdBlocksArray.push(block_tdi_79);
</script><div class="tdb-mega-modules-wrap"><div id=tdi_79 class="td_block_inner">
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/amazing-model-on-site-in-ibiza-on-the-best-rated-photo-location/"  rel="bookmark" class="td-image-wrap " title="Amazing Model On Site in Ibiza, on the Best Rated Photo Location" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/1-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fashion/" class="td-post-category" >Fashion</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/amazing-model-on-site-in-ibiza-on-the-best-rated-photo-location/"  rel="bookmark" title="Amazing Model On Site in Ibiza, on the Best Rated Photo Location">Amazing Model On Site in Ibiza, on the Best Rated Photo Location</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/beauty-model-working-on-new-photoshoot-on-north-thailand-beach/"  rel="bookmark" class="td-image-wrap " title="Beauty Model Working on New Photoshoot on North Thailand Beach" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/2-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fashion/" class="td-post-category" >Fashion</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/beauty-model-working-on-new-photoshoot-on-north-thailand-beach/"  rel="bookmark" title="Beauty Model Working on New Photoshoot on North Thailand Beach">Beauty Model Working on New Photoshoot on North Thailand Beach</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/victorias-secret-afterparty-goes-off-with-a-bang-this-year/"  rel="bookmark" class="td-image-wrap " title="Victoria&#8217;s Secret Afterparty Goes Off with a Bang This Year" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/83-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fashion/" class="td-post-category" >Fashion</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/victorias-secret-afterparty-goes-off-with-a-bang-this-year/"  rel="bookmark" title="Victoria&#8217;s Secret Afterparty Goes Off with a Bang This Year">Victoria&#8217;s Secret Afterparty Goes Off with a Bang This Year</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/sisters-land-fashion-role-on-the-cover-of-bestseller-magazine/"  rel="bookmark" class="td-image-wrap " title="Sisters Land Fashion Role on the Cover of Bestseller Magazine" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/82-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fashion/" class="td-post-category" >Fashion</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/sisters-land-fashion-role-on-the-cover-of-bestseller-magazine/"  rel="bookmark" title="Sisters Land Fashion Role on the Cover of Bestseller Magazine">Sisters Land Fashion Role on the Cover of Bestseller Magazine</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/best-dressed-men-in-sports-industry-footballers-in-top-3-places/"  rel="bookmark" class="td-image-wrap " title="Best Dressed Men in Sports Industry: Footballers in Top 3 Places" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/81-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fashion/" class="td-post-category" >Fashion</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/best-dressed-men-in-sports-industry-footballers-in-top-3-places/"  rel="bookmark" title="Best Dressed Men in Sports Industry: Footballers in Top 3 Places">Best Dressed Men in Sports Industry: Footballers in Top 3 Places</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_79" data-td_block_id="tdi_79"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_79" data-td_block_id="tdi_79"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div> <!-- ./block1 --></div></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom tdb-menu-item-button tdb-menu-item tdb-mega-menu tdb-mega-menu-inactive tdb-mega-menu-cat menu-item-171"><a href="https://reviewboard.com/category/gaming/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-chip"></i> Gaming</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item-0"><div class="tdb-menu-item-text"><div class="tdb_header_mega_menu tdi_80 td-no-subcats td_with_ajax_pagination td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_80" >
<style>.tdi_80 .tdb-mega-modules-wrap{padding:25px}.tdi_80 .block-mega-child-cats{width:100%;padding:5px 0 15px;width:100%;text-align:center}.tdi_80 .block-mega-child-cats:after{border-width:0px}.tdi_80{flex-direction:column-reverse}.tdi_80 .block-mega-child-cats:before{left:50%;transform:translateX(-50%);right:auto}.tdi_80 .block-mega-child-cats a{display:inline-block;padding:5px 15px;border-width:0px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important;font-weight:500!important}.tdi_80 .block-mega-child-cats .cur-sub-cat{border-width:0px;color:#008d7f}.tdi_80:not(.td-no-subcats) .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_80:not(.td-no-subcats) .td_module_wrap{margin-right:-1px}.tdi_80.td-no-subcats .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_80.td-no-subcats .td_module_wrap{margin-right:-1px}.tdi_80 .td_module_wrap:nth-child(5n+1){clear:both}.tdi_80 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0;padding-bottom:0}.tdi_80 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none}.tdi_80 .td_module_wrap{padding-left:7.5px;padding-right:7.5px;padding-bottom:0px;margin-bottom:0px;display:flex;flex-direction:column}.tdi_80 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px;display:flex;flex-wrap:wrap}.tdi_80 .td-module-container:before{bottom:-0px;border-color:#eaeaea}.tdi_80 .td-module-container{border-color:#eaeaea;flex-direction:column;flex:1;flex-basis:auto}.tdi_80 .entry-thumb{background-position:center 50%}.tdi_80 .td-image-container{display:block;order:0;margin-left:auto;margin-right:auto}.ie10 .tdi_80 .td-module-meta-info,.ie11 .tdi_80 .td-module-meta-info{flex:auto}.tdi_80 .td-post-vid-time{display:block}.tdi_80 .td-module-meta-info,.tdi_80 .td-next-prev-wrap{text-align:center}.tdi_80 .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_80.td-h-effect-up-shadow .td_module_wrap:hover .td-category-pos-image .td-post-category:not(.td-post-extra-category){transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_80 .td-module-meta-info{padding:15px 5px 0 5px;border-color:#eaeaea}.tdi_80 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_80 .td-excerpt{margin:0px;column-count:1;column-gap:48px;display:none}.tdi_80 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_80 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_80 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_80 .td-author-date{display:inline}.tdi_80 .td-post-author-name{display:none}.tdi_80 .td-post-date,.tdi_80 .td-post-author-name span{display:none}.tdi_80 .entry-review-stars{display:inline-block}.tdi_80 .td-icon-star,.tdi_80 .td-icon-star-empty,.tdi_80 .td-icon-star-half{font-size:15px}.tdi_80 .td-module-comments{display:none}.tdi_80 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_80:not(.td-no-subcats) .block-mega-child-cats:before{background-color:#ffffff}.tdi_80 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_80 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_80 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_80.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_80 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_80 .td-module-exclusive .td-module-title a:before{display:inline-block}html:not([class*='ie']) .tdi_80 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_80 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_80 .tdb-mega-modules-wrap{padding:20px}.tdi_80 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_80 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_80 .td_module_wrap .td-module-container:before{display:block!important}.tdi_80 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_80 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_80 .td-module-container:before{bottom:-0px}.tdi_80 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_80 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_80 .tdb-mega-modules-wrap{padding:15px}.tdi_80 .block-mega-child-cats{padding:3px 0 12px}.tdi_80 .block-mega-child-cats a{padding:3px 12px;font-size:11px!important}.tdi_80 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-left:3.5px;padding-right:3.5px;padding-bottom:0px;margin-bottom:0px}.tdi_80 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_80 .td_module_wrap .td-module-container:before{display:block!important}.tdi_80 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_80 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_80 .td_block_inner{margin-left:-3.5px;margin-right:-3.5px}.tdi_80 .td-module-container:before{bottom:-0px}.tdi_80 .td-module-meta-info{padding:12px 0 0 0}.tdi_80 .entry-title{margin:8px 0 0 0;font-size:11px!important}.tdi_80.td_with_ajax_pagination .td-next-prev-wrap a{font-size:6px}.tdi_80.td_with_ajax_pagination .td-next-prev-wrap .td-next-prev-icon-svg svg{width:6px;height:calc(6px + 1px)}.tdi_80 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_80 .td-post-category{font-size:11px!important}@media (min-width:768px){.tdi_80 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_80 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_80 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_80 .td_module_wrap .td-module-container:before{display:block!important}.tdi_80 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_80 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_80 .td-module-container:before{bottom:-0px}.tdi_80 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_80 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_80 = new tdBlock();
block_tdi_80.id = "tdi_80";
block_tdi_80.atts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_mega_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":3,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"td_category_ids_filter","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"next_prev","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","tdc_css_class":"tdi_80","tdc_css_class_style":"tdi_80_rand_style","context":"","category_id":"35","subcats_posts_limit":"5","child_cats_limit":"10","hide_all":"","tdc_css":"","class":"tdi_80"}';
block_tdi_80.td_column_number = "3";
block_tdi_80.block_type = "tdb_header_mega_menu";
block_tdi_80.post_count = "5";
block_tdi_80.found_posts = "10";
block_tdi_80.header_color = "";
block_tdi_80.ajax_pagination_infinite_stop = "";
block_tdi_80.max_num_pages = "2";
tdBlocksArray.push(block_tdi_80);
</script><div class="tdb-mega-modules-wrap"><div id=tdi_80 class="td_block_inner">
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/microsoft-to-start-gaming-development-systems-in-march/"  rel="bookmark" class="td-image-wrap " title="Microsoft to Start Gaming Development Systems in March" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/80-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/gaming/" class="td-post-category" >Gaming</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/microsoft-to-start-gaming-development-systems-in-march/"  rel="bookmark" title="Microsoft to Start Gaming Development Systems in March">Microsoft to Start Gaming Development Systems in March</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/why-next-year-might-just-be-the-best-year-ever-for-gaming/"  rel="bookmark" class="td-image-wrap " title="Why Next Year Might Just Be the Best Year Ever for Gaming" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/79-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/gaming/" class="td-post-category" >Gaming</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/why-next-year-might-just-be-the-best-year-ever-for-gaming/"  rel="bookmark" title="Why Next Year Might Just Be the Best Year Ever for Gaming">Why Next Year Might Just Be the Best Year Ever for Gaming</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/ghost-racer-wants-to-be-the-most-ambitious-car-game/"  rel="bookmark" class="td-image-wrap " title="Ghost Racer Wants to Be the Most Ambitious Car Game" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/gaming/" class="td-post-category" >Gaming</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/ghost-racer-wants-to-be-the-most-ambitious-car-game/"  rel="bookmark" title="Ghost Racer Wants to Be the Most Ambitious Car Game">Ghost Racer Wants to Be the Most Ambitious Car Game</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/new-nintendo-wii-console-goes-on-sale-in-strategy-reboot/"  rel="bookmark" class="td-image-wrap " title="New Nintendo Wii Console Goes on Sale in Strategy Reboot" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/gaming/" class="td-post-category" >Gaming</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/new-nintendo-wii-console-goes-on-sale-in-strategy-reboot/"  rel="bookmark" title="New Nintendo Wii Console Goes on Sale in Strategy Reboot">New Nintendo Wii Console Goes on Sale in Strategy Reboot</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/you-and-your-kids-can-enjoy-this-news-gaming-console/"  rel="bookmark" class="td-image-wrap " title="You and Your Kids can Enjoy this News Gaming Console" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/gaming/" class="td-post-category" >Gaming</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/you-and-your-kids-can-enjoy-this-news-gaming-console/"  rel="bookmark" title="You and Your Kids can Enjoy this News Gaming Console">You and Your Kids can Enjoy this News Gaming Console</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_80" data-td_block_id="tdi_80"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_80" data-td_block_id="tdi_80"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div> <!-- ./block1 --></div></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom tdb-menu-item-button tdb-menu-item tdb-mega-menu tdb-mega-menu-inactive tdb-mega-menu-cat menu-item-172"><a href="https://reviewboard.com/category/fitness/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-pulse"></i> Fitness</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item-0"><div class="tdb-menu-item-text"><div class="tdb_header_mega_menu tdi_81 td-no-subcats td_with_ajax_pagination td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_81" >
<style>.tdi_81 .tdb-mega-modules-wrap{padding:25px}.tdi_81 .block-mega-child-cats{width:100%;padding:5px 0 15px;width:100%;text-align:center}.tdi_81 .block-mega-child-cats:after{border-width:0px}.tdi_81{flex-direction:column-reverse}.tdi_81 .block-mega-child-cats:before{left:50%;transform:translateX(-50%);right:auto}.tdi_81 .block-mega-child-cats a{display:inline-block;padding:5px 15px;border-width:0px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important;font-weight:500!important}.tdi_81 .block-mega-child-cats .cur-sub-cat{border-width:0px;color:#008d7f}.tdi_81:not(.td-no-subcats) .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_81:not(.td-no-subcats) .td_module_wrap{margin-right:-1px}.tdi_81.td-no-subcats .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_81.td-no-subcats .td_module_wrap{margin-right:-1px}.tdi_81 .td_module_wrap:nth-child(5n+1){clear:both}.tdi_81 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0;padding-bottom:0}.tdi_81 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none}.tdi_81 .td_module_wrap{padding-left:7.5px;padding-right:7.5px;padding-bottom:0px;margin-bottom:0px;display:flex;flex-direction:column}.tdi_81 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px;display:flex;flex-wrap:wrap}.tdi_81 .td-module-container:before{bottom:-0px;border-color:#eaeaea}.tdi_81 .td-module-container{border-color:#eaeaea;flex-direction:column;flex:1;flex-basis:auto}.tdi_81 .entry-thumb{background-position:center 50%}.tdi_81 .td-image-container{display:block;order:0;margin-left:auto;margin-right:auto}.ie10 .tdi_81 .td-module-meta-info,.ie11 .tdi_81 .td-module-meta-info{flex:auto}.tdi_81 .td-post-vid-time{display:block}.tdi_81 .td-module-meta-info,.tdi_81 .td-next-prev-wrap{text-align:center}.tdi_81 .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_81.td-h-effect-up-shadow .td_module_wrap:hover .td-category-pos-image .td-post-category:not(.td-post-extra-category){transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_81 .td-module-meta-info{padding:15px 5px 0 5px;border-color:#eaeaea}.tdi_81 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_81 .td-excerpt{margin:0px;column-count:1;column-gap:48px;display:none}.tdi_81 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_81 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_81 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_81 .td-author-date{display:inline}.tdi_81 .td-post-author-name{display:none}.tdi_81 .td-post-date,.tdi_81 .td-post-author-name span{display:none}.tdi_81 .entry-review-stars{display:inline-block}.tdi_81 .td-icon-star,.tdi_81 .td-icon-star-empty,.tdi_81 .td-icon-star-half{font-size:15px}.tdi_81 .td-module-comments{display:none}.tdi_81 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_81:not(.td-no-subcats) .block-mega-child-cats:before{background-color:#ffffff}.tdi_81 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_81 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_81 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_81.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_81 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_81 .td-module-exclusive .td-module-title a:before{display:inline-block}html:not([class*='ie']) .tdi_81 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_81 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_81 .tdb-mega-modules-wrap{padding:20px}.tdi_81 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_81 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_81 .td_module_wrap .td-module-container:before{display:block!important}.tdi_81 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_81 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_81 .td-module-container:before{bottom:-0px}.tdi_81 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_81 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_81 .tdb-mega-modules-wrap{padding:15px}.tdi_81 .block-mega-child-cats{padding:3px 0 12px}.tdi_81 .block-mega-child-cats a{padding:3px 12px;font-size:11px!important}.tdi_81 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-left:3.5px;padding-right:3.5px;padding-bottom:0px;margin-bottom:0px}.tdi_81 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_81 .td_module_wrap .td-module-container:before{display:block!important}.tdi_81 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_81 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_81 .td_block_inner{margin-left:-3.5px;margin-right:-3.5px}.tdi_81 .td-module-container:before{bottom:-0px}.tdi_81 .td-module-meta-info{padding:12px 0 0 0}.tdi_81 .entry-title{margin:8px 0 0 0;font-size:11px!important}.tdi_81.td_with_ajax_pagination .td-next-prev-wrap a{font-size:6px}.tdi_81.td_with_ajax_pagination .td-next-prev-wrap .td-next-prev-icon-svg svg{width:6px;height:calc(6px + 1px)}.tdi_81 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_81 .td-post-category{font-size:11px!important}@media (min-width:768px){.tdi_81 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_81 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_81 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_81 .td_module_wrap .td-module-container:before{display:block!important}.tdi_81 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_81 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_81 .td-module-container:before{bottom:-0px}.tdi_81 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_81 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_81 = new tdBlock();
block_tdi_81.id = "tdi_81";
block_tdi_81.atts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_mega_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":3,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"td_category_ids_filter","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"next_prev","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","tdc_css_class":"tdi_81","tdc_css_class_style":"tdi_81_rand_style","context":"","category_id":"33","subcats_posts_limit":"5","child_cats_limit":"10","hide_all":"","tdc_css":"","class":"tdi_81"}';
block_tdi_81.td_column_number = "3";
block_tdi_81.block_type = "tdb_header_mega_menu";
block_tdi_81.post_count = "5";
block_tdi_81.found_posts = "10";
block_tdi_81.header_color = "";
block_tdi_81.ajax_pagination_infinite_stop = "";
block_tdi_81.max_num_pages = "2";
tdBlocksArray.push(block_tdi_81);
</script><div class="tdb-mega-modules-wrap"><div id=tdi_81 class="td_block_inner">
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/british-study-daily-workouts-help-you-cope-better-with-stress/"  rel="bookmark" class="td-image-wrap " title="British Study: Daily Workouts Help you Cope Better with Stress" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/1-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fitness/" class="td-post-category" >Fitness</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/british-study-daily-workouts-help-you-cope-better-with-stress/"  rel="bookmark" title="British Study: Daily Workouts Help you Cope Better with Stress">British Study: Daily Workouts Help you Cope Better with Stress</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/10-steps-to-make-to-be-successful-in-bodybuilding-and-in-life/"  rel="bookmark" class="td-image-wrap " title="10 Steps to Make to be Successful in Bodybuilding and in Life" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/2-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fitness/" class="td-post-category" >Fitness</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/10-steps-to-make-to-be-successful-in-bodybuilding-and-in-life/"  rel="bookmark" title="10 Steps to Make to be Successful in Bodybuilding and in Life">10 Steps to Make to be Successful in Bodybuilding and in Life</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/discover-how-physical-exercises-make-your-brain-work-better/"  rel="bookmark" class="td-image-wrap " title="Discover How Physical Exercises Make your Brain Work Better" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/83-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fitness/" class="td-post-category" >Fitness</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/discover-how-physical-exercises-make-your-brain-work-better/"  rel="bookmark" title="Discover How Physical Exercises Make your Brain Work Better">Discover How Physical Exercises Make your Brain Work Better</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/how-to-transform-your-weight-loss-routine-into-a-lifestyle/"  rel="bookmark" class="td-image-wrap " title="How to Transform your Weight Loss Routine into a Lifestyle" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/82-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fitness/" class="td-post-category" >Fitness</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-transform-your-weight-loss-routine-into-a-lifestyle/"  rel="bookmark" title="How to Transform your Weight Loss Routine into a Lifestyle">How to Transform your Weight Loss Routine into a Lifestyle</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/be-aware-excessive-excersise-could-do-you-a-lot-of-damage/"  rel="bookmark" class="td-image-wrap " title="Be Aware: Excessive Excersise Could Do You a Lot of Damage" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/81-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fitness/" class="td-post-category" >Fitness</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/be-aware-excessive-excersise-could-do-you-a-lot-of-damage/"  rel="bookmark" title="Be Aware: Excessive Excersise Could Do You a Lot of Damage">Be Aware: Excessive Excersise Could Do You a Lot of Damage</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_81" data-td_block_id="tdi_81"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_81" data-td_block_id="tdi_81"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div> <!-- ./block1 --></div></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom tdb-menu-item-button tdb-menu-item tdb-mega-menu tdb-mega-menu-inactive tdb-mega-menu-cat menu-item-173"><a href="https://reviewboard.com/category/video/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-apperture"></i> Video</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item-0"><div class="tdb-menu-item-text"><div class="tdb_header_mega_menu tdi_82 td-no-subcats td_with_ajax_pagination td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_82" >
<style>.tdi_82 .tdb-mega-modules-wrap{padding:25px}.tdi_82 .block-mega-child-cats{width:100%;padding:5px 0 15px;width:100%;text-align:center}.tdi_82 .block-mega-child-cats:after{border-width:0px}.tdi_82{flex-direction:column-reverse}.tdi_82 .block-mega-child-cats:before{left:50%;transform:translateX(-50%);right:auto}.tdi_82 .block-mega-child-cats a{display:inline-block;padding:5px 15px;border-width:0px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important;font-weight:500!important}.tdi_82 .block-mega-child-cats .cur-sub-cat{border-width:0px;color:#008d7f}.tdi_82:not(.td-no-subcats) .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_82:not(.td-no-subcats) .td_module_wrap{margin-right:-1px}.tdi_82.td-no-subcats .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_82.td-no-subcats .td_module_wrap{margin-right:-1px}.tdi_82 .td_module_wrap:nth-child(5n+1){clear:both}.tdi_82 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0;padding-bottom:0}.tdi_82 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none}.tdi_82 .td_module_wrap{padding-left:7.5px;padding-right:7.5px;padding-bottom:0px;margin-bottom:0px;display:flex;flex-direction:column}.tdi_82 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px;display:flex;flex-wrap:wrap}.tdi_82 .td-module-container:before{bottom:-0px;border-color:#eaeaea}.tdi_82 .td-module-container{border-color:#eaeaea;flex-direction:column;flex:1;flex-basis:auto}.tdi_82 .entry-thumb{background-position:center 50%}.tdi_82 .td-image-container{display:block;order:0;margin-left:auto;margin-right:auto}.ie10 .tdi_82 .td-module-meta-info,.ie11 .tdi_82 .td-module-meta-info{flex:auto}.tdi_82 .td-post-vid-time{display:block}.tdi_82 .td-module-meta-info,.tdi_82 .td-next-prev-wrap{text-align:center}.tdi_82 .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_82.td-h-effect-up-shadow .td_module_wrap:hover .td-category-pos-image .td-post-category:not(.td-post-extra-category){transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_82 .td-module-meta-info{padding:15px 5px 0 5px;border-color:#eaeaea}.tdi_82 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_82 .td-excerpt{margin:0px;column-count:1;column-gap:48px;display:none}.tdi_82 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_82 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_82 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_82 .td-author-date{display:inline}.tdi_82 .td-post-author-name{display:none}.tdi_82 .td-post-date,.tdi_82 .td-post-author-name span{display:none}.tdi_82 .entry-review-stars{display:inline-block}.tdi_82 .td-icon-star,.tdi_82 .td-icon-star-empty,.tdi_82 .td-icon-star-half{font-size:15px}.tdi_82 .td-module-comments{display:none}.tdi_82 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_82:not(.td-no-subcats) .block-mega-child-cats:before{background-color:#ffffff}.tdi_82 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_82 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_82 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_82.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_82 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_82 .td-module-exclusive .td-module-title a:before{display:inline-block}html:not([class*='ie']) .tdi_82 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_82 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_82 .tdb-mega-modules-wrap{padding:20px}.tdi_82 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_82 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_82 .td_module_wrap .td-module-container:before{display:block!important}.tdi_82 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_82 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_82 .td-module-container:before{bottom:-0px}.tdi_82 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_82 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_82 .tdb-mega-modules-wrap{padding:15px}.tdi_82 .block-mega-child-cats{padding:3px 0 12px}.tdi_82 .block-mega-child-cats a{padding:3px 12px;font-size:11px!important}.tdi_82 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-left:3.5px;padding-right:3.5px;padding-bottom:0px;margin-bottom:0px}.tdi_82 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_82 .td_module_wrap .td-module-container:before{display:block!important}.tdi_82 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_82 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_82 .td_block_inner{margin-left:-3.5px;margin-right:-3.5px}.tdi_82 .td-module-container:before{bottom:-0px}.tdi_82 .td-module-meta-info{padding:12px 0 0 0}.tdi_82 .entry-title{margin:8px 0 0 0;font-size:11px!important}.tdi_82.td_with_ajax_pagination .td-next-prev-wrap a{font-size:6px}.tdi_82.td_with_ajax_pagination .td-next-prev-wrap .td-next-prev-icon-svg svg{width:6px;height:calc(6px + 1px)}.tdi_82 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_82 .td-post-category{font-size:11px!important}@media (min-width:768px){.tdi_82 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_82 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_82 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_82 .td_module_wrap .td-module-container:before{display:block!important}.tdi_82 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_82 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_82 .td-module-container:before{bottom:-0px}.tdi_82 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_82 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_82 = new tdBlock();
block_tdi_82.id = "tdi_82";
block_tdi_82.atts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_mega_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":3,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"td_category_ids_filter","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"next_prev","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","tdc_css_class":"tdi_82","tdc_css_class_style":"tdi_82_rand_style","context":"","category_id":"45","subcats_posts_limit":"5","child_cats_limit":"10","hide_all":"","tdc_css":"","class":"tdi_82"}';
block_tdi_82.td_column_number = "3";
block_tdi_82.block_type = "tdb_header_mega_menu";
block_tdi_82.post_count = "5";
block_tdi_82.found_posts = "10";
block_tdi_82.header_color = "";
block_tdi_82.ajax_pagination_infinite_stop = "";
block_tdi_82.max_num_pages = "2";
tdBlocksArray.push(block_tdi_82);
</script><div class="tdb-mega-modules-wrap"><div id=tdi_82 class="td_block_inner">
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/manufacturer-plans-to-stop-delivering-secondary-camera-parts/"  rel="bookmark" class="td-image-wrap " title="Manufacturer Plans to Stop Delivering Secondary Camera Parts" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/80-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/video/" class="td-post-category" >Video</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/manufacturer-plans-to-stop-delivering-secondary-camera-parts/"  rel="bookmark" title="Manufacturer Plans to Stop Delivering Secondary Camera Parts">Manufacturer Plans to Stop Delivering Secondary Camera Parts</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/apple-unveils-their-top-5-best-selling-movies-of-all-time/"  rel="bookmark" class="td-image-wrap " title="Apple Unveils their Top 5 Best Selling Movies of All-Time" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/79-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/video/" class="td-post-category" >Video</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/apple-unveils-their-top-5-best-selling-movies-of-all-time/"  rel="bookmark" title="Apple Unveils their Top 5 Best Selling Movies of All-Time">Apple Unveils their Top 5 Best Selling Movies of All-Time</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/virtual-reality-video-camera-will-be-launched-in-barcelona/"  rel="bookmark" class="td-image-wrap " title="Virtual Reality Video Camera Will be Launched in Barcelona" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/video/" class="td-post-category" >Video</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/virtual-reality-video-camera-will-be-launched-in-barcelona/"  rel="bookmark" title="Virtual Reality Video Camera Will be Launched in Barcelona">Virtual Reality Video Camera Will be Launched in Barcelona</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/virtual-reality-could-change-game-streaming-systems-forever/"  rel="bookmark" class="td-image-wrap " title="Virtual Reality Could Change Game Streaming Systems Forever" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/video/" class="td-post-category" >Video</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/virtual-reality-could-change-game-streaming-systems-forever/"  rel="bookmark" title="Virtual Reality Could Change Game Streaming Systems Forever">Virtual Reality Could Change Game Streaming Systems Forever</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/this-new-gear-vr-controller-feels-like-its-from-the-future/"  rel="bookmark" class="td-image-wrap " title="This New Gear VR Controller Feels Like it&#8217;s From the Future" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/video/" class="td-post-category" >Video</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/this-new-gear-vr-controller-feels-like-its-from-the-future/"  rel="bookmark" title="This New Gear VR Controller Feels Like it&#8217;s From the Future">This New Gear VR Controller Feels Like it&#8217;s From the Future</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_82" data-td_block_id="tdi_82"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_82" data-td_block_id="tdi_82"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div> <!-- ./block1 --></div></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children tdb-menu-item-button tdb-menu-item tdb-normal-menu menu-item-174 tdb-menu-item-inactive"><a href="#"><div class="tdb-menu-item-text">More</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category tdb-menu-item tdb-normal-menu menu-item-175"><a href="https://reviewboard.com/category/photography/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-photo"></i> Photography</div></a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category tdb-menu-item tdb-normal-menu menu-item-176"><a href="https://reviewboard.com/category/showbiz/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-bulb-idea"></i> Showbiz</div></a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category tdb-menu-item tdb-normal-menu menu-item-177"><a href="https://reviewboard.com/category/gadgets/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-responsive-devices"></i> Gadgets</div></a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category tdb-menu-item tdb-normal-menu menu-item-178"><a href="https://reviewboard.com/category/facts/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-megaphone"></i> Facts</div></a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category tdb-menu-item tdb-normal-menu menu-item-179"><a href="https://reviewboard.com/category/style/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-leves"></i> Style</div></a></li>
</ul>
</li>
</ul></div></div></div></div><div class="vc_column tdi_84  wpb_column vc_column_container tdc-column td-pb-span3">
<style scoped>.tdi_84{vertical-align:baseline}.tdi_84>.wpb_wrapper,.tdi_84>.wpb_wrapper>.tdc-elements{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-end;align-items:flex-start}.tdi_84>.wpb_wrapper>.tdc-elements{width:100%}.tdi_84>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_84>.wpb_wrapper{width:100%;height:100%}.tdi_84{width:10%!important}@media (min-width:768px) and (max-width:1018px){.tdi_84{width:8%!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_header_search tdi_85 tdb-header-search-trigger-enabled td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_85" >
<style>.tdb_module_search .tdb-author-photo{display:inline-block}.tdb_module_search .tdb-author-photo,.tdb_module_search .tdb-author-photo img{vertical-align:middle}.tdb_module_search .td-post-author-name{white-space:normal}.tdb_header_search{margin-bottom:0;clear:none}.tdb_header_search .tdb-block-inner{position:relative;display:inline-block;width:100%}.tdb_header_search .tdb-search-form{position:relative;padding:20px;border-width:3px 0 0;border-style:solid;border-color:var(--td_theme_color,#4db2ec);pointer-events:auto}.tdb_header_search .tdb-search-form:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:#fff}.tdb_header_search .tdb-search-form-inner{position:relative;display:flex;background-color:#fff}.tdb_header_search .tdb-search-form-inner:after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;border:1px solid #e1e1e1;pointer-events:none}.tdb_header_search .tdb-head-search-placeholder{position:absolute;top:50%;transform:translateY(-50%);padding:3px 9px;font-size:12px;line-height:21px;color:#999;-webkit-transition:all 0.3s ease;transition:all 0.3s ease;pointer-events:none}.tdb_header_search .tdb-head-search-form-input:focus+.tdb-head-search-placeholder,.tdb-head-search-form-input:not(:placeholder-shown)~.tdb-head-search-placeholder{opacity:0}.tdb_header_search .tdb-head-search-form-btn,.tdb_header_search .tdb-head-search-form-input{height:auto;min-height:32px}.tdb_header_search .tdb-head-search-form-input{color:#444;flex:1;background-color:transparent;border:0}.tdb_header_search .tdb-head-search-form-input.tdb-head-search-nofocus{color:transparent;text-shadow:0 0 0 #444}.tdb_header_search .tdb-head-search-form-btn{margin-bottom:0;padding:0 15px;background-color:#222222;font-family:var(--td_default_google_font_2,'Roboto',sans-serif);font-size:13px;font-weight:500;color:#fff;-webkit-transition:all 0.3s ease;transition:all 0.3s ease;z-index:1}.tdb_header_search .tdb-head-search-form-btn:hover{background-color:var(--td_theme_color,#4db2ec)}.tdb_header_search .tdb-head-search-form-btn i,.tdb_header_search .tdb-head-search-form-btn span{display:inline-block;vertical-align:middle}.tdb_header_search .tdb-head-search-form-btn i{font-size:12px}.tdb_header_search .tdb-head-search-form-btn .tdb-head-search-form-btn-icon{position:relative}.tdb_header_search .tdb-head-search-form-btn .tdb-head-search-form-btn-icon-svg{line-height:0}.tdb_header_search .tdb-head-search-form-btn svg{width:12px;height:auto}.tdb_header_search .tdb-head-search-form-btn svg,.tdb_header_search .tdb-head-search-form-btn svg *{fill:#fff;-webkit-transition:all 0.3s ease;transition:all 0.3s ease}.tdb_header_search .tdb-aj-search-results{padding:20px;background-color:rgba(144,144,144,0.02);border-width:1px 0;border-style:solid;border-color:#ededed;background-color:#fff}.tdb_header_search .tdb-aj-search-results .td_module_wrap:last-child{margin-bottom:0;padding-bottom:0}.tdb_header_search .tdb-aj-search-results .td_module_wrap:last-child .td-module-container:before{display:none}.tdb_header_search .tdb-aj-search-inner{display:flex;flex-wrap:wrap;*zoom:1}.tdb_header_search .tdb-aj-search-inner:before,.tdb_header_search .tdb-aj-search-inner:after{display:table;content:'';line-height:0}.tdb_header_search .tdb-aj-search-inner:after{clear:both}.tdb_header_search .result-msg{padding:4px 0 6px 0;font-family:var(--td_default_google_font_2,'Roboto',sans-serif);font-size:12px;font-style:italic;background-color:#fff}.tdb_header_search .result-msg a{color:#222}.tdb_header_search .result-msg a:hover{color:var(--td_theme_color,#4db2ec)}.tdb_header_search .td-module-meta-info,.tdb_header_search .td-next-prev-wrap{text-align:left}.tdb_header_search .td_module_wrap:hover .entry-title a{color:var(--td_theme_color,#4db2ec)}.tdb_header_search .tdb-aj-cur-element .entry-title a{color:var(--td_theme_color,#4db2ec)}.tdc-dragged .tdb-head-search-btn:after,.tdc-dragged .tdb-drop-down-search{visibility:hidden!important;opacity:0!important;-webkit-transition:all 0.3s ease;transition:all 0.3s ease}.tdb-header-search-trigger-enabled{z-index:1000}.tdb-header-search-trigger-enabled .tdb-head-search-btn{display:flex;align-items:center;position:relative;text-align:center;color:var(--td_theme_color,#4db2ec)}.tdb-header-search-trigger-enabled .tdb-head-search-btn:after{visibility:hidden;opacity:0;content:'';display:block;position:absolute;bottom:0;left:0;right:0;margin:0 auto;width:0;height:0;border-style:solid;border-width:0 6.5px 7px 6.5px;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0);-webkit-transition:all 0.4s ease;transition:all 0.4s ease;border-color:transparent transparent var(--td_theme_color,#4db2ec) transparent}.tdb-header-search-trigger-enabled .tdb-drop-down-search-open+.tdb-head-search-btn:after{visibility:visible;opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.tdb-header-search-trigger-enabled .tdb-search-icon,.tdb-header-search-trigger-enabled .tdb-search-txt,.tdb-header-search-trigger-enabled .tdb-search-icon-svg svg *{-webkit-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out}.tdb-header-search-trigger-enabled .tdb-search-icon-svg{display:flex;align-items:center;justify-content:center}.tdb-header-search-trigger-enabled .tdb-search-icon-svg svg{height:auto}.tdb-header-search-trigger-enabled .tdb-search-icon-svg svg,.tdb-header-search-trigger-enabled .tdb-search-icon-svg svg *{fill:var(--td_theme_color,#4db2ec)}.tdb-header-search-trigger-enabled .tdb-search-txt{position:relative;line-height:1}.tdb-header-search-trigger-enabled .tdb-drop-down-search{visibility:hidden;opacity:0;position:absolute;top:100%;left:0;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0);-webkit-transition:all 0.4s ease;transition:all 0.4s ease;pointer-events:none;z-index:10}.tdb-header-search-trigger-enabled .tdb-drop-down-search-open{visibility:visible;opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.tdb-header-search-trigger-enabled .tdb-drop-down-search-inner{position:relative;max-width:300px;pointer-events:all}.rtl .tdb-header-search-trigger-enabled .tdb-drop-down-search-inner{margin-left:0}.tdb_header_search .tdb-aj-srs-title{margin-bottom:10px;font-family:var(--td_default_google_font_2,'Roboto',sans-serif);font-weight:500;font-size:13px;line-height:1.3;color:#888}.tdb_header_search .tdb-aj-sr-taxonomies{display:flex;flex-direction:column}.tdb_header_search .tdb-aj-sr-taxonomy{font-family:var(--td_default_google_font_2,'Roboto',sans-serif);font-size:13px;font-weight:500;line-height:18px;color:#111}.tdb_header_search .tdb-aj-sr-taxonomy:not(:last-child){margin-bottom:5px}.tdb_header_search .tdb-aj-sr-taxonomy:hover{color:var(--td_theme_color,#4db2ec)}.tdi_85 .tdb-head-search-btn i{font-size:18px;width:46.8px;height:46.8px;line-height:46.8px;color:#ffffff}.tdi_85 .tdb-head-search-btn svg{width:18px}.tdi_85 .tdb-search-icon-svg{width:46.8px;height:46.8px}.tdi_85 .tdb-search-txt{top:0px}.tdi_85 .tdb-drop-down-search{left:auto;right:0}body .tdi_85 .tdb-drop-down-search-inner,.tdi_85 .tdb-search-form,.tdi_85 .tdb-aj-search{margin-left:auto;margin-right:0}.tdi_85 .tdb-head-search-form-btn-icon{top:0px}.tdi_85 .result-msg{text-align:center;font-family:Rubik!important;font-size:11px!important}.tdi_85 .tdb-head-search-btn svg,.tdi_85 .tdb-head-search-btn svg *{fill:#ffffff}.tdi_85 .tdb-search-form{border-color:#dd3333}.tdi_85 .tdb-head-search-btn:after{border-bottom-color:#dd3333}.tdi_85 .tdb-drop-down-search-inner{box-shadow:0px 2px 10px 0px rgba(0,0,0,0.12)}.tdi_85 .tdb-head-search-form-btn:hover{background-color:#008d7f}.tdi_85 .result-msg a:hover{color:#008d7f}.tdi_85 .tdb-head-search-form-input{font-family:Rubik!important;font-size:13px!important;font-weight:400!important}.tdi_85 .tdb-head-search-placeholder{font-family:Rubik!important;font-size:13px!important;font-weight:400!important}.tdi_85 .tdb-head-search-form-btn{font-family:Rubik!important;font-size:13px!important;font-weight:400!important}.tdi_85 .td_module_wrap{width:100%;float:left;padding-left:0px;padding-right:0px;padding-bottom:7.5px;margin-bottom:7.5px}.tdi_85 .td_module_wrap:nth-last-child(-n+1){margin-bottom:0;padding-bottom:0}.tdi_85 .td_module_wrap:nth-last-child(-n+1) .td-module-container:before{display:none}.tdi_85 .tdb-aj-search-inner{margin-left:-0px;margin-right:-0px}.tdi_85 .td-module-container:before{bottom:-7.5px;border-color:#eaeaea}.tdi_85 .td-module-container{border-color:#eaeaea;flex-direction:row;align-items:center}.tdi_85 .entry-thumb{background-position:center 50%}.tdi_85 .td-image-wrap{padding-bottom:80%}.tdi_85 .td-image-container{flex:0 0 30%;width:30%;display:block;order:0}.ie10 .tdi_85 .td-image-container,.ie11 .tdi_85 .td-image-container{flex:0 0 auto}.ie10 .tdi_85 .td-module-meta-info,.ie11 .tdi_85 .td-module-meta-info{flex:1}.tdi_85 .td-post-vid-time{display:block}.tdi_85 .td-module-meta-info{padding:0 0 0 15px;border-color:#eaeaea}.tdi_85 .entry-title{margin:0 0 5px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important}.tdi_85 .td-excerpt{column-count:1;column-gap:48px;display:none}.tdi_85 .td-post-category:not(.td-post-extra-category){display:none}.tdi_85 .td-read-more{display:none}.tdi_85 .td-author-date{display:inline}.tdi_85 .td-post-author-name{display:none}.tdi_85 .entry-review-stars{display:none}.tdi_85 .td-icon-star,.tdi_85 .td-icon-star-empty,.tdi_85 .td-icon-star-half{font-size:15px}.tdi_85 .td-module-comments{display:none}.tdi_85 .tdb-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}body .tdi_85 .td_module_wrap:hover .td-module-title a,.tdi_85 .tdb-aj-cur-element .entry-title a{color:#008d7f!important}.tdi_85 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_85 .td-editor-date,.tdi_85 .td-editor-date .td-post-author-name,.tdi_85 .td-module-comments a{font-family:Rubik!important;font-size:11px!important;line-height:1!important}.tdi_85 .td-module-exclusive .td-module-title a:before{display:inline-block}@media (min-width:768px){.tdi_85 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_85 .td_module_wrap{padding-bottom:7.5px!important;margin-bottom:7.5px!important;padding-bottom:7.5px;margin-bottom:7.5px}.tdi_85 .td_module_wrap:nth-last-child(-n+1){margin-bottom:0!important;padding-bottom:0!important}.tdi_85 .td_module_wrap .td-module-container:before{display:block!important}.tdi_85 .td_module_wrap:nth-last-child(-n+1) .td-module-container:before{display:none!important}.tdi_85 .td-module-container:before{bottom:-7.5px}.tdi_85 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_85 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_85 .tdb-head-search-btn i{font-size:14px;width:39.2px;height:39.2px;line-height:39.2px}.tdi_85 .tdb-head-search-btn svg{width:14px}.tdi_85 .tdb-search-icon-svg{width:39.2px;height:39.2px}.tdi_85 .td_module_wrap{padding-bottom:7.5px!important;margin-bottom:7.5px!important;padding-bottom:7.5px;margin-bottom:7.5px}.tdi_85 .td_module_wrap:nth-last-child(-n+1){margin-bottom:0!important;padding-bottom:0!important}.tdi_85 .td_module_wrap .td-module-container:before{display:block!important}.tdi_85 .td_module_wrap:nth-last-child(-n+1) .td-module-container:before{display:none!important}.tdi_85 .td-module-container:before{bottom:-7.5px}.tdi_85 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_85 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_85 .td_module_wrap{padding-bottom:7.5px!important;margin-bottom:7.5px!important;padding-bottom:7.5px;margin-bottom:7.5px}.tdi_85 .td_module_wrap:nth-last-child(-n+1){margin-bottom:0!important;padding-bottom:0!important}.tdi_85 .td_module_wrap .td-module-container:before{display:block!important}.tdi_85 .td_module_wrap:nth-last-child(-n+1) .td-module-container:before{display:none!important}.tdi_85 .td-module-container:before{bottom:-7.5px}.tdi_85 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_85 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><div class="tdb-block-inner td-fix-index"><div class="tdb-drop-down-search" aria-labelledby="td-header-search-button"><div class="tdb-drop-down-search-inner"><form method="get" class="tdb-search-form" action="https://reviewboard.com/"><div class="tdb-search-form-inner"><input class="tdb-head-search-form-input" placeholder=" " type="text" value="" name="s" autocomplete="off" /><button class="wpb_button wpb_btn-inverse btn tdb-head-search-form-btn" title="Search" type="submit" aria-label="Search"><span>Search</span></button></div></form><div class="tdb-aj-search"></div></div></div><a href="#" role="button" aria-label="Search" class="tdb-head-search-btn dropdown-toggle" data-toggle="dropdown"><span class="tdb-search-icon tdb-search-icon-svg" ><svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024"><path d="M958.484 910.161l-134.564-134.502c63.099-76.595 94.781-170.455 94.72-264.141 0.061-106.414-40.755-213.228-121.917-294.431-81.244-81.183-187.976-121.958-294.359-121.938-106.435-0.020-213.187 40.796-294.369 121.938-81.234 81.203-122.010 188.017-121.989 294.369-0.020 106.445 40.755 213.166 121.989 294.287 81.193 81.285 187.945 122.020 294.369 121.979 93.716 0.041 187.597-31.642 264.11-94.659l134.554 134.564 57.457-57.467zM265.431 748.348c-65.546-65.495-98.13-150.999-98.171-236.882 0.041-85.832 32.625-171.346 98.171-236.913 65.567-65.536 151.081-98.099 236.933-98.14 85.821 0.041 171.336 32.604 236.902 98.14 65.495 65.516 98.12 151.122 98.12 236.913 0 85.924-32.625 171.387-98.12 236.882-65.556 65.495-151.009 98.099-236.902 98.099-85.852 0-171.366-32.604-236.933-98.099zM505.385 272.864c-61.901 0.020-123.566 23.501-170.824 70.799-47.288 47.258-70.769 108.923-70.799 170.834-0.041 26.624 4.383 53.105 13.046 78.428-0.031-0.522-0.092-1.024-0.031-1.556 13.199-91.341 48.241-159.775 96.963-208.497v-0.020h0.031c48.712-48.722 117.135-83.763 208.486-96.963 0.522-0.061 1.024 0 1.536 0.041-25.313-8.684-51.794-13.087-78.408-13.066z"></path></svg></span></a></div></div> <!-- ./block --></div></div></div></div><div id="tdi_86" class="tdc-row"><div class="vc_row tdi_87  wpb_row td-pb-row" >
<style scoped>.tdi_87,.tdi_87 .tdc-columns{min-height:0}.tdi_87,.tdi_87 .tdc-columns{display:block}.tdi_87 .tdc-columns{width:100%}.tdi_87:before,.tdi_87:after{display:table}</style><div class="vc_column tdi_89  wpb_column vc_column_container tdc-column td-pb-span12">
<style scoped>.tdi_89{vertical-align:baseline}.tdi_89>.wpb_wrapper,.tdi_89>.wpb_wrapper>.tdc-elements{display:block}.tdi_89>.wpb_wrapper>.tdc-elements{width:100%}.tdi_89>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_89>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="wpb_wrapper td_block_separator td_block_wrap vc_separator tdi_91  td_separator_solid td_separator_center"><span style="border-color:#dd3333;border-width:3px;width:100%;"></span>
<style scoped>.tdi_91{margin-right:-48px!important;margin-bottom:0px!important;margin-left:-48px!important;width:auto!important}@media (min-width:1019px) and (max-width:1140px){.tdi_91{margin-right:-24px!important;margin-left:-24px!important}}</style></div><div class="td_block_wrap td_block_raw_css tdi_92 td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_92" ><div id=tdi_92 class="td_block_inner td-fix-index"><style>.menu-item .tdb-menu-item-text .tdc-font-tdmp {
  font-size: 24px;
  position: relative;
  top: 5px;
  left: -2px;
}
@media (min-width: 768px) and (max-width: 1018px) {
  .menu-item .tdb-menu-item-text .tdc-font-tdmp {
    font-size: 20px;
    top: 4px;
    left: -1px;
  }
}
.td-header-desktop-wrap .tdc_zone {
  box-shadow: 0 -13px 10px 3px rgba(0, 0, 0, 0.12);
}
.td-main-content-wrap {
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.12);
}
.td-footer-wrap .tdc_zone {
  box-shadow: 0 13px 10px 3px rgba(0, 0, 0, 0.12);
}
.td-main-page-wrap {
  overflow: visible !important;
}
.td_block_template_8 .td-block-title > *:before,
.td_block_template_8 .td-block-title > *:after {
  height: 3px;
  margin-top: -2px;
}
</style></div></div></div></div></div></div></div></div>                    </div>
                
                    <div class="td-header-desktop-sticky-wrap tdc-zone-sticky-invisible tdc-zone-sticky-inactive" style="display: none">
                        <div id="tdi_93" class="tdc-zone"><div class="tdc_zone tdi_94  wpb_row td-pb-row" data-sticky-offset="0" >
<style scoped>.tdi_94{min-height:0}.td-header-desktop-sticky-wrap.td-header-active{opacity:1;transform:translateY(0);-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0)}.td-header-desktop-sticky-wrap{transform:translateY(-120%);-webkit-transform:translateY(-120%);-moz-transform:translateY(-120%);-ms-transform:translateY(-120%);-o-transform:translateY(-120%);-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out}</style><div id="tdi_95" class="tdc-row"><div class="vc_row tdi_96  wpb_row td-pb-row tdc-element-style tdc-row-content-vert-center" >
<style scoped>.tdi_96,.tdi_96 .tdc-columns{min-height:0}.tdi_96,.tdi_96 .tdc-columns{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;align-items:center}.tdi_96 .tdc-columns{width:100%}.tdi_96:before,.tdi_96:after{display:none}@media (min-width:767px){.tdi_96.tdc-row-content-vert-center,.tdi_96.tdc-row-content-vert-center .tdc-columns{display:flex;align-items:center;flex:1}.tdi_96.tdc-row-content-vert-bottom,.tdi_96.tdc-row-content-vert-bottom .tdc-columns{display:flex;align-items:flex-end;flex:1}.tdi_96.tdc-row-content-vert-center .td_block_wrap{vertical-align:middle}.tdi_96.tdc-row-content-vert-bottom .td_block_wrap{vertical-align:bottom}}.tdi_96{margin-right:-24px!important;margin-left:-24px!important;position:relative}.tdi_96 .td_block_wrap{text-align:left}@media (min-width:768px) and (max-width:1018px){.tdi_96{margin-right:-10px!important;margin-left:-10px!important}}</style>
<div class="tdi_95_rand_style td-element-style" ><div class="td-element-style-before"><style>.tdi_95_rand_style>.td-element-style-before{content:''!important;width:100%!important;height:100%!important;position:absolute!important;top:0!important;left:0!important;display:block!important;z-index:0!important;background-image:url("http://reviewboard.com/wp-content/uploads/2022/08/bghd.jpg")!important;opacity:0.2!important;background-size:cover!important;background-position:center top!important}</style></div><style>.tdi_95_rand_style{background-color:#232d35!important}</style></div><div class="vc_column tdi_98  wpb_column vc_column_container tdc-column td-pb-span9">
<style scoped>.tdi_98{vertical-align:baseline;flex-grow:1}.tdi_98>.wpb_wrapper,.tdi_98>.wpb_wrapper>.tdc-elements{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;align-items:center}.tdi_98>.wpb_wrapper>.tdc-elements{width:100%}.tdi_98>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_98>.wpb_wrapper{width:100%;height:100%}.tdi_98{width:90%!important}@media (min-width:768px) and (max-width:1018px){.tdi_98{width:92%!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_header_menu tdi_99 tds_menu_active3 tds_menu_sub_active1 tdb-mm-align-screen td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_99"  style=" z-index: 999;">
<style>.tdi_99{margin-left:-10px!important}</style>
<style>.tdi_99 .td_block_inner{text-align:center}.tdi_99 .tdb-menu>li>a,.tdi_99 .td-subcat-more{padding:0 12px;color:#ffffff}.tdi_99 .tdb-menu>li .tdb-menu-sep,.tdi_99 .tdb-menu-items-dropdown .tdb-menu-sep{top:-1px}.tdi_99 .tdb-menu>li>a .tdb-sub-menu-icon,.tdi_99 .td-subcat-more .tdb-menu-more-subicon{font-size:10px;top:1px}.tdi_99 .td-subcat-more .tdb-menu-more-icon{top:0px}.tdi_99 .tdb-menu>li>a .tdb-sub-menu-icon-svg svg,.tdi_99 .tdb-menu>li>a .tdb-sub-menu-icon-svg svg *,.tdi_99 .td-subcat-more .tdb-menu-more-subicon-svg svg,.tdi_99 .td-subcat-more .tdb-menu-more-subicon-svg svg *,.tdi_99 .td-subcat-more .tdb-menu-more-icon-svg,.tdi_99 .td-subcat-more .tdb-menu-more-icon-svg *{fill:#ffffff}.tdi_99 .tdb-menu>li>a,.tdi_99 .td-subcat-more,.tdi_99 .td-subcat-more>.tdb-menu-item-text{font-family:Rubik!important;font-size:13px!important;line-height:48px!important;font-weight:400!important;text-transform:capitalize!important;letter-spacing:0.4px!important}.tdi_99 .tdb-menu>.tdb-normal-menu>ul,.tdi_99 .td-pulldown-filter-list{left:-15px}.tdi_99 .tdb-normal-menu ul ul,.tdi_99 .td-pulldown-filter-list .sub-menu{margin-top:-15px}.tdi_99 .tdb-menu .tdb-normal-menu ul,.tdi_99 .td-pulldown-filter-list,.tdi_99 .td-pulldown-filter-list .sub-menu{padding:10px 0 15px;box-shadow:0px 2px 10px 0px rgba(0,0,0,0.15)}.tdi_99 .tdb-menu .tdb-normal-menu ul .tdb-menu-item>a,.tdi_99 .tdb-menu-items-dropdown .td-pulldown-filter-list li>a{padding:5px 20px}.tdi_99 .tdb-normal-menu ul .tdb-menu-item>a .tdb-sub-menu-icon,.tdi_99 .td-pulldown-filter-list .tdb-menu-item>a .tdb-sub-menu-icon{right:0;margin-top:1px}.tdi_99 .tdb-menu .tdb-normal-menu ul .tdb-menu-item>a,.tdi_99 .tdb-menu-items-dropdown .td-pulldown-filter-list li a,.tdi_99 .tdb-menu-items-dropdown .td-pulldown-filter-list li a{color:#000000}.tdi_99 .tdb-menu .tdb-normal-menu ul .tdb-menu-item>a .tdb-sub-menu-icon-svg svg,.tdi_99 .tdb-menu .tdb-normal-menu ul .tdb-menu-item>a .tdb-sub-menu-icon-svg svg *,.tdi_99 .tdb-menu-items-dropdown .td-pulldown-filter-list li a .tdb-sub-menu-icon-svg svg,.tdi_99 .tdb-menu-items-dropdown .td-pulldown-filter-list li a .tdb-sub-menu-icon-svg svg *{fill:#000000}.tdi_99 .tdb-menu .tdb-normal-menu ul .tdb-menu-item>a,.tdi_99 .td-pulldown-filter-list li a{font-family:Rubik!important;font-size:12px!important;font-weight:500!important}.tdi_99:not(.tdb-mm-align-screen) .tdb-mega-menu .sub-menu,.tdi_99 .tdb-mega-menu .sub-menu>li{max-width:1164px!important}.tdi_99 .tdb-mega-menu-page>.sub-menu>li{padding:25px}.tdi_99 .tdb-menu .tdb-mega-menu .sub-menu>li{border-width:0px;box-shadow:0px 4px 20px 0px rgba(0,0,0,0.15)}@media (max-width:1018px){.tdi_99 .td-pulldown-filter-list{left:auto;right:-15px}}@media (min-width:1019px) and (max-width:1140px){.tdi_99:not(.tdb-mm-align-screen) .tdb-mega-menu .sub-menu,.tdi_99 .tdb-mega-menu .sub-menu>li{max-width:100%!important}.tdi_99 .tdb-mega-menu-page>.sub-menu>li{padding:20px}}@media (min-width:768px) and (max-width:1018px){.tdi_99 .tdb-menu>li>a,.tdi_99 .td-subcat-more{padding:0 10px}.tdi_99 .tdb-menu>li>a .tdb-sub-menu-icon,.tdi_99 .td-subcat-more .tdb-menu-more-subicon{font-size:9px;margin-left:5px;top:0px}.tdi_99 .tdb-menu>li>a,.tdi_99 .td-subcat-more,.tdi_99 .td-subcat-more>.tdb-menu-item-text{font-size:10px!important;line-height:40px!important}.tdi_99:not(.tdb-mm-align-screen) .tdb-mega-menu .sub-menu,.tdi_99 .tdb-mega-menu .sub-menu>li{max-width:100%!important}.tdi_99 .tdb-mega-menu-page>.sub-menu>li{padding:15px}}</style>
<style>.tdi_99 .tdb-menu>li>a:after,.tdi_99 .tdb-menu-items-dropdown .td-subcat-more:after{background-color:#000000}</style>
<style>.tdi_99 .tdb-menu ul .tdb-normal-menu.current-menu-item>a,.tdi_99 .tdb-menu ul .tdb-normal-menu.current-menu-ancestor>a,.tdi_99 .tdb-menu ul .tdb-normal-menu.current-category-ancestor>a,.tdi_99 .tdb-menu ul .tdb-normal-menu.tdb-hover>a,.tdi_99 .tdb-menu ul .tdb-normal-menu:hover>a,.tdi_99 .tdb-menu-items-dropdown .td-pulldown-filter-list li:hover>a{color:#008d7f}.tdi_99 .tdb-menu ul .tdb-normal-menu.current-menu-item>a .tdb-sub-menu-icon-svg svg,.tdi_99 .tdb-menu ul .tdb-normal-menu.current-menu-item>a .tdb-sub-menu-icon-svg svg *,.tdi_99 .tdb-menu ul .tdb-normal-menu.current-menu-ancestor>a .tdb-sub-menu-icon-svg svg,.tdi_99 .tdb-menu ul .tdb-normal-menu.current-menu-ancestor>a .tdb-sub-menu-icon-svg svg *,.tdi_99 .tdb-menu ul .tdb-normal-menu.current-category-ancestor>a .tdb-sub-menu-icon-svg svg,.tdi_99 .tdb-menu ul .tdb-normal-menu.current-category-ancestor>a .tdb-sub-menu-icon-svg svg *,.tdi_99 .tdb-menu ul .tdb-normal-menu.tdb-hover>a .tdb-sub-menu-icon-svg svg,.tdi_99 .tdb-menu ul .tdb-normal-menu.tdb-hover>a .tdb-sub-menu-icon-svg svg *,.tdi_99 .tdb-menu ul .tdb-normal-menu:hover>a .tdb-sub-menu-icon-svg svg,.tdi_99 .tdb-menu ul .tdb-normal-menu:hover>a .tdb-sub-menu-icon-svg svg *,.tdi_99 .tdb-menu-items-dropdown .td-pulldown-filter-list li:hover>a .tdb-sub-menu-icon-svg svg,.tdi_99 .tdb-menu-items-dropdown .td-pulldown-filter-list li:hover>a .tdb-sub-menu-icon-svg svg *{fill:#008d7f}</style><div id=tdi_99 class="td_block_inner td-fix-index"><div class="tdb-main-sub-icon-fake"><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></div><div class="tdb-sub-icon-fake"><i class="tdb-sub-menu-icon td-icon-right-arrow"></i></div><ul id="menu-td-demo-header-menu-4" class="tdb-block-menu tdb-menu tdb-menu-items-visible"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-163 current_page_item menu-item-first tdb-menu-item-button tdb-menu-item tdb-normal-menu menu-item-167"><a href="https://reviewboard.com/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-home"></i> Home</div></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom tdb-menu-item-button tdb-menu-item tdb-mega-menu tdb-mega-menu-inactive tdb-mega-menu-cat tdb-mega-menu-first menu-item-168"><a href="https://reviewboard.com/category/global/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-globe"></i> Global</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item-0"><div class="tdb-menu-item-text"><div class="tdb_header_mega_menu tdi_102 td-no-subcats td_with_ajax_pagination td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_102" >
<style>.tdi_102 .tdb-mega-modules-wrap{padding:25px}.tdi_102 .block-mega-child-cats{width:100%;padding:5px 0 15px;width:100%;text-align:center}.tdi_102 .block-mega-child-cats:after{border-width:0px}.tdi_102{flex-direction:column-reverse}.tdi_102 .block-mega-child-cats:before{left:50%;transform:translateX(-50%);right:auto}.tdi_102 .block-mega-child-cats a{display:inline-block;padding:5px 15px;border-width:0px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important;font-weight:500!important}.tdi_102 .block-mega-child-cats .cur-sub-cat{border-width:0px;color:#008d7f}.tdi_102:not(.td-no-subcats) .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_102:not(.td-no-subcats) .td_module_wrap{margin-right:-1px}.tdi_102.td-no-subcats .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_102.td-no-subcats .td_module_wrap{margin-right:-1px}.tdi_102 .td_module_wrap:nth-child(5n+1){clear:both}.tdi_102 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0;padding-bottom:0}.tdi_102 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none}.tdi_102 .td_module_wrap{padding-left:7.5px;padding-right:7.5px;padding-bottom:0px;margin-bottom:0px;display:flex;flex-direction:column}.tdi_102 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px;display:flex;flex-wrap:wrap}.tdi_102 .td-module-container:before{bottom:-0px;border-color:#eaeaea}.tdi_102 .td-module-container{border-color:#eaeaea;flex-direction:column;flex:1;flex-basis:auto}.tdi_102 .entry-thumb{background-position:center 50%}.tdi_102 .td-image-container{display:block;order:0;margin-left:auto;margin-right:auto}.ie10 .tdi_102 .td-module-meta-info,.ie11 .tdi_102 .td-module-meta-info{flex:auto}.tdi_102 .td-post-vid-time{display:block}.tdi_102 .td-module-meta-info,.tdi_102 .td-next-prev-wrap{text-align:center}.tdi_102 .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_102.td-h-effect-up-shadow .td_module_wrap:hover .td-category-pos-image .td-post-category:not(.td-post-extra-category){transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_102 .td-module-meta-info{padding:15px 5px 0 5px;border-color:#eaeaea}.tdi_102 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_102 .td-excerpt{margin:0px;column-count:1;column-gap:48px;display:none}.tdi_102 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_102 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_102 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_102 .td-author-date{display:inline}.tdi_102 .td-post-author-name{display:none}.tdi_102 .td-post-date,.tdi_102 .td-post-author-name span{display:none}.tdi_102 .entry-review-stars{display:inline-block}.tdi_102 .td-icon-star,.tdi_102 .td-icon-star-empty,.tdi_102 .td-icon-star-half{font-size:15px}.tdi_102 .td-module-comments{display:none}.tdi_102 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_102:not(.td-no-subcats) .block-mega-child-cats:before{background-color:#ffffff}.tdi_102 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_102 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_102 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_102.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_102 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_102 .td-module-exclusive .td-module-title a:before{display:inline-block}html:not([class*='ie']) .tdi_102 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_102 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_102 .tdb-mega-modules-wrap{padding:20px}.tdi_102 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_102 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_102 .td_module_wrap .td-module-container:before{display:block!important}.tdi_102 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_102 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_102 .td-module-container:before{bottom:-0px}.tdi_102 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_102 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_102 .tdb-mega-modules-wrap{padding:15px}.tdi_102 .block-mega-child-cats{padding:3px 0 12px}.tdi_102 .block-mega-child-cats a{padding:3px 12px;font-size:11px!important}.tdi_102 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-left:3.5px;padding-right:3.5px;padding-bottom:0px;margin-bottom:0px}.tdi_102 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_102 .td_module_wrap .td-module-container:before{display:block!important}.tdi_102 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_102 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_102 .td_block_inner{margin-left:-3.5px;margin-right:-3.5px}.tdi_102 .td-module-container:before{bottom:-0px}.tdi_102 .td-module-meta-info{padding:12px 0 0 0}.tdi_102 .entry-title{margin:8px 0 0 0;font-size:11px!important}.tdi_102.td_with_ajax_pagination .td-next-prev-wrap a{font-size:6px}.tdi_102.td_with_ajax_pagination .td-next-prev-wrap .td-next-prev-icon-svg svg{width:6px;height:calc(6px + 1px)}.tdi_102 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_102 .td-post-category{font-size:11px!important}@media (min-width:768px){.tdi_102 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_102 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_102 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_102 .td_module_wrap .td-module-container:before{display:block!important}.tdi_102 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_102 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_102 .td-module-container:before{bottom:-0px}.tdi_102 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_102 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_102 = new tdBlock();
block_tdi_102.id = "tdi_102";
block_tdi_102.atts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_mega_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":3,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"td_category_ids_filter","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"next_prev","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","tdc_css_class":"tdi_102","tdc_css_class_style":"tdi_102_rand_style","context":"","category_id":"36","subcats_posts_limit":"5","child_cats_limit":"10","hide_all":"","tdc_css":"","class":"tdi_102"}';
block_tdi_102.td_column_number = "3";
block_tdi_102.block_type = "tdb_header_mega_menu";
block_tdi_102.post_count = "5";
block_tdi_102.found_posts = "10";
block_tdi_102.header_color = "";
block_tdi_102.ajax_pagination_infinite_stop = "";
block_tdi_102.max_num_pages = "2";
tdBlocksArray.push(block_tdi_102);
</script><div class="tdb-mega-modules-wrap"><div id=tdi_102 class="td_block_inner">
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" class="td-image-wrap " title="More and More People Stay Home as Coronavirus Spreads" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" title="More and More People Stay Home as Coronavirus Spreads">More and More People Stay Home as Coronavirus Spreads</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" class="td-image-wrap " title="The Real Economy Has Never Been Tested by a Pandemic" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" title="The Real Economy Has Never Been Tested by a Pandemic">The Real Economy Has Never Been Tested by a Pandemic</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" class="td-image-wrap " title="How to Think and Act in the Plummeting Stock Market" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" title="How to Think and Act in the Plummeting Stock Market">How to Think and Act in the Plummeting Stock Market</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" class="td-image-wrap " title="Companies Are Putting Profits Ahead of Public Health" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/80-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" title="Companies Are Putting Profits Ahead of Public Health">Companies Are Putting Profits Ahead of Public Health</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" class="td-image-wrap " title="Witnessing the Birth of the New Coronavirus Economy" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/79-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" title="Witnessing the Birth of the New Coronavirus Economy">Witnessing the Birth of the New Coronavirus Economy</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_102" data-td_block_id="tdi_102"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_102" data-td_block_id="tdi_102"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div> <!-- ./block1 --></div></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom tdb-menu-item-button tdb-menu-item tdb-mega-menu tdb-mega-menu-inactive tdb-mega-menu-cat tdb-mega-menu-cats-first menu-item-169"><a href="https://reviewboard.com/category/lifestyle/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-bicycle"></i> Lifestyle</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item-0"><div class="tdb-menu-item-text"><div class="tdb_header_mega_menu tdi_103 td_with_ajax_pagination td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_103" >
<style>.tdi_103 .tdb-mega-modules-wrap{padding:25px}.tdi_103 .block-mega-child-cats{width:100%;padding:5px 0 15px;width:100%;text-align:center}.tdi_103 .block-mega-child-cats:after{border-width:0px}.tdi_103{flex-direction:column-reverse}.tdi_103 .block-mega-child-cats:before{left:50%;transform:translateX(-50%);right:auto}.tdi_103 .block-mega-child-cats a{display:inline-block;padding:5px 15px;border-width:0px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important;font-weight:500!important}.tdi_103 .block-mega-child-cats .cur-sub-cat{border-width:0px;color:#008d7f}.tdi_103:not(.td-no-subcats) .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_103:not(.td-no-subcats) .td_module_wrap{margin-right:-1px}.tdi_103.td-no-subcats .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_103.td-no-subcats .td_module_wrap{margin-right:-1px}.tdi_103 .td_module_wrap:nth-child(5n+1){clear:both}.tdi_103 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0;padding-bottom:0}.tdi_103 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none}.tdi_103 .td_module_wrap{padding-left:7.5px;padding-right:7.5px;padding-bottom:0px;margin-bottom:0px;display:flex;flex-direction:column}.tdi_103 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px;display:flex;flex-wrap:wrap}.tdi_103 .td-module-container:before{bottom:-0px;border-color:#eaeaea}.tdi_103 .td-module-container{border-color:#eaeaea;flex-direction:column;flex:1;flex-basis:auto}.tdi_103 .entry-thumb{background-position:center 50%}.tdi_103 .td-image-container{display:block;order:0;margin-left:auto;margin-right:auto}.ie10 .tdi_103 .td-module-meta-info,.ie11 .tdi_103 .td-module-meta-info{flex:auto}.tdi_103 .td-post-vid-time{display:block}.tdi_103 .td-module-meta-info,.tdi_103 .td-next-prev-wrap{text-align:center}.tdi_103 .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_103.td-h-effect-up-shadow .td_module_wrap:hover .td-category-pos-image .td-post-category:not(.td-post-extra-category){transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_103 .td-module-meta-info{padding:15px 5px 0 5px;border-color:#eaeaea}.tdi_103 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_103 .td-excerpt{margin:0px;column-count:1;column-gap:48px;display:none}.tdi_103 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_103 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_103 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_103 .td-author-date{display:inline}.tdi_103 .td-post-author-name{display:none}.tdi_103 .td-post-date,.tdi_103 .td-post-author-name span{display:none}.tdi_103 .entry-review-stars{display:inline-block}.tdi_103 .td-icon-star,.tdi_103 .td-icon-star-empty,.tdi_103 .td-icon-star-half{font-size:15px}.tdi_103 .td-module-comments{display:none}.tdi_103 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_103:not(.td-no-subcats) .block-mega-child-cats:before{background-color:#ffffff}.tdi_103 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_103 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_103 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_103.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_103 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_103 .td-module-exclusive .td-module-title a:before{display:inline-block}html:not([class*='ie']) .tdi_103 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_103 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_103 .tdb-mega-modules-wrap{padding:20px}.tdi_103 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_103 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_103 .td_module_wrap .td-module-container:before{display:block!important}.tdi_103 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_103 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_103 .td-module-container:before{bottom:-0px}.tdi_103 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_103 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_103 .tdb-mega-modules-wrap{padding:15px}.tdi_103 .block-mega-child-cats{padding:3px 0 12px}.tdi_103 .block-mega-child-cats a{padding:3px 12px;font-size:11px!important}.tdi_103 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-left:3.5px;padding-right:3.5px;padding-bottom:0px;margin-bottom:0px}.tdi_103 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_103 .td_module_wrap .td-module-container:before{display:block!important}.tdi_103 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_103 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_103 .td_block_inner{margin-left:-3.5px;margin-right:-3.5px}.tdi_103 .td-module-container:before{bottom:-0px}.tdi_103 .td-module-meta-info{padding:12px 0 0 0}.tdi_103 .entry-title{margin:8px 0 0 0;font-size:11px!important}.tdi_103.td_with_ajax_pagination .td-next-prev-wrap a{font-size:6px}.tdi_103.td_with_ajax_pagination .td-next-prev-wrap .td-next-prev-icon-svg svg{width:6px;height:calc(6px + 1px)}.tdi_103 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_103 .td-post-category{font-size:11px!important}@media (min-width:768px){.tdi_103 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_103 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_103 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_103 .td_module_wrap .td-module-container:before{display:block!important}.tdi_103 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_103 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_103 .td-module-container:before{bottom:-0px}.tdi_103 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_103 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_103 = new tdBlock();
block_tdi_103.id = "tdi_103";
block_tdi_103.atts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_mega_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":3,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"td_category_ids_filter","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"next_prev","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","tdc_css_class":"tdi_103","tdc_css_class_style":"tdi_103_rand_style","context":"","category_id":"38","subcats_posts_limit":"5","child_cats_limit":"10","hide_all":"","tdc_css":"","class":"tdi_103"}';
block_tdi_103.td_column_number = "3";
block_tdi_103.block_type = "tdb_header_mega_menu";
block_tdi_103.post_count = "5";
block_tdi_103.found_posts = "25";
block_tdi_103.header_color = "";
block_tdi_103.ajax_pagination_infinite_stop = "";
block_tdi_103.max_num_pages = "5";
tdBlocksArray.push(block_tdi_103);
</script><div class="block-mega-child-cats"><a 
                        class="cur-sub-cat mega-menu-sub-cat-tdi_103" 
                        id="tdi_104" 
                        data-td_block_id="tdi_103" 
                        data-td_filter_value="" 
                        href="https://reviewboard.com/category/lifestyle/"
                    >All</a><a 
                        class="mega-menu-sub-cat-tdi_103" 
                        id="tdi_105" 
                        data-td_block_id="tdi_103" 
                        data-td_filter_value="39" 
                        href="https://reviewboard.com/category/lifestyle/music/"
                    >Music</a><a 
                        class="mega-menu-sub-cat-tdi_103" 
                        id="tdi_106" 
                        data-td_block_id="tdi_103" 
                        data-td_filter_value="41" 
                        href="https://reviewboard.com/category/lifestyle/receipes/"
                    >Receipes</a><a 
                        class="mega-menu-sub-cat-tdi_103" 
                        id="tdi_107" 
                        data-td_block_id="tdi_103" 
                        data-td_filter_value="44" 
                        href="https://reviewboard.com/category/lifestyle/travel/"
                    >Travel</a><a 
                        class="mega-menu-sub-cat-tdi_103" 
                        id="tdi_108" 
                        data-td_block_id="tdi_103" 
                        data-td_filter_value="46" 
                        href="https://reviewboard.com/category/lifestyle/whats-hot/"
                    >What's Hot</a></div><div class="tdb-mega-modules-wrap"><div id=tdi_103 class="td_block_inner">
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/your-home-premium-sound-systems-offer-astounding-quality/"  rel="bookmark" class="td-image-wrap " title="Your Home: Premium Sound Systems Offer Astounding Quality" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/1-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/lifestyle/music/" class="td-post-category" >Music</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/your-home-premium-sound-systems-offer-astounding-quality/"  rel="bookmark" title="Your Home: Premium Sound Systems Offer Astounding Quality">Your Home: Premium Sound Systems Offer Astounding Quality</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/these-guys-are-making-more-money-than-anybody-could-guess/"  rel="bookmark" class="td-image-wrap " title="These Guys Are Making More Money than Anybody Could Guess" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/2-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/lifestyle/music/" class="td-post-category" >Music</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/these-guys-are-making-more-money-than-anybody-could-guess/"  rel="bookmark" title="These Guys Are Making More Money than Anybody Could Guess">These Guys Are Making More Money than Anybody Could Guess</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/sarah-shows-off-her-stunning-body-in-concert-at-wembley-arena/"  rel="bookmark" class="td-image-wrap " title="Sarah Shows Off Her Stunning Body in Concert at Wembley Arena" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/83-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/lifestyle/music/" class="td-post-category" >Music</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/sarah-shows-off-her-stunning-body-in-concert-at-wembley-arena/"  rel="bookmark" title="Sarah Shows Off Her Stunning Body in Concert at Wembley Arena">Sarah Shows Off Her Stunning Body in Concert at Wembley Arena</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/josh-wins-grammys-newcommers-of-the-year-with-their-album/"  rel="bookmark" class="td-image-wrap " title="Josh Wins Grammys Newcommers of the Year With Their Album" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/82-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/lifestyle/music/" class="td-post-category" >Music</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/josh-wins-grammys-newcommers-of-the-year-with-their-album/"  rel="bookmark" title="Josh Wins Grammys Newcommers of the Year With Their Album">Josh Wins Grammys Newcommers of the Year With Their Album</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/concert-therapy-breathtaking-barbados-snorkeling-experience/"  rel="bookmark" class="td-image-wrap " title="Concert Therapy: Breathtaking Barbados Snorkeling Experience" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/81-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/lifestyle/music/" class="td-post-category" >Music</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/concert-therapy-breathtaking-barbados-snorkeling-experience/"  rel="bookmark" title="Concert Therapy: Breathtaking Barbados Snorkeling Experience">Concert Therapy: Breathtaking Barbados Snorkeling Experience</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_103" data-td_block_id="tdi_103"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_103" data-td_block_id="tdi_103"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div> <!-- ./block1 --></div></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom tdb-menu-item-button tdb-menu-item tdb-mega-menu tdb-mega-menu-inactive tdb-mega-menu-cat menu-item-170"><a href="https://reviewboard.com/category/fashion/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-lotus"></i> Fashion</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item-0"><div class="tdb-menu-item-text"><div class="tdb_header_mega_menu tdi_109 td-no-subcats td_with_ajax_pagination td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_109" >
<style>.tdi_109 .tdb-mega-modules-wrap{padding:25px}.tdi_109 .block-mega-child-cats{width:100%;padding:5px 0 15px;width:100%;text-align:center}.tdi_109 .block-mega-child-cats:after{border-width:0px}.tdi_109{flex-direction:column-reverse}.tdi_109 .block-mega-child-cats:before{left:50%;transform:translateX(-50%);right:auto}.tdi_109 .block-mega-child-cats a{display:inline-block;padding:5px 15px;border-width:0px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important;font-weight:500!important}.tdi_109 .block-mega-child-cats .cur-sub-cat{border-width:0px;color:#008d7f}.tdi_109:not(.td-no-subcats) .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_109:not(.td-no-subcats) .td_module_wrap{margin-right:-1px}.tdi_109.td-no-subcats .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_109.td-no-subcats .td_module_wrap{margin-right:-1px}.tdi_109 .td_module_wrap:nth-child(5n+1){clear:both}.tdi_109 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0;padding-bottom:0}.tdi_109 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none}.tdi_109 .td_module_wrap{padding-left:7.5px;padding-right:7.5px;padding-bottom:0px;margin-bottom:0px;display:flex;flex-direction:column}.tdi_109 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px;display:flex;flex-wrap:wrap}.tdi_109 .td-module-container:before{bottom:-0px;border-color:#eaeaea}.tdi_109 .td-module-container{border-color:#eaeaea;flex-direction:column;flex:1;flex-basis:auto}.tdi_109 .entry-thumb{background-position:center 50%}.tdi_109 .td-image-container{display:block;order:0;margin-left:auto;margin-right:auto}.ie10 .tdi_109 .td-module-meta-info,.ie11 .tdi_109 .td-module-meta-info{flex:auto}.tdi_109 .td-post-vid-time{display:block}.tdi_109 .td-module-meta-info,.tdi_109 .td-next-prev-wrap{text-align:center}.tdi_109 .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_109.td-h-effect-up-shadow .td_module_wrap:hover .td-category-pos-image .td-post-category:not(.td-post-extra-category){transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_109 .td-module-meta-info{padding:15px 5px 0 5px;border-color:#eaeaea}.tdi_109 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_109 .td-excerpt{margin:0px;column-count:1;column-gap:48px;display:none}.tdi_109 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_109 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_109 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_109 .td-author-date{display:inline}.tdi_109 .td-post-author-name{display:none}.tdi_109 .td-post-date,.tdi_109 .td-post-author-name span{display:none}.tdi_109 .entry-review-stars{display:inline-block}.tdi_109 .td-icon-star,.tdi_109 .td-icon-star-empty,.tdi_109 .td-icon-star-half{font-size:15px}.tdi_109 .td-module-comments{display:none}.tdi_109 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_109:not(.td-no-subcats) .block-mega-child-cats:before{background-color:#ffffff}.tdi_109 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_109 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_109 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_109.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_109 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_109 .td-module-exclusive .td-module-title a:before{display:inline-block}html:not([class*='ie']) .tdi_109 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_109 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_109 .tdb-mega-modules-wrap{padding:20px}.tdi_109 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_109 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_109 .td_module_wrap .td-module-container:before{display:block!important}.tdi_109 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_109 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_109 .td-module-container:before{bottom:-0px}.tdi_109 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_109 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_109 .tdb-mega-modules-wrap{padding:15px}.tdi_109 .block-mega-child-cats{padding:3px 0 12px}.tdi_109 .block-mega-child-cats a{padding:3px 12px;font-size:11px!important}.tdi_109 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-left:3.5px;padding-right:3.5px;padding-bottom:0px;margin-bottom:0px}.tdi_109 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_109 .td_module_wrap .td-module-container:before{display:block!important}.tdi_109 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_109 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_109 .td_block_inner{margin-left:-3.5px;margin-right:-3.5px}.tdi_109 .td-module-container:before{bottom:-0px}.tdi_109 .td-module-meta-info{padding:12px 0 0 0}.tdi_109 .entry-title{margin:8px 0 0 0;font-size:11px!important}.tdi_109.td_with_ajax_pagination .td-next-prev-wrap a{font-size:6px}.tdi_109.td_with_ajax_pagination .td-next-prev-wrap .td-next-prev-icon-svg svg{width:6px;height:calc(6px + 1px)}.tdi_109 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_109 .td-post-category{font-size:11px!important}@media (min-width:768px){.tdi_109 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_109 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_109 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_109 .td_module_wrap .td-module-container:before{display:block!important}.tdi_109 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_109 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_109 .td-module-container:before{bottom:-0px}.tdi_109 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_109 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_109 = new tdBlock();
block_tdi_109.id = "tdi_109";
block_tdi_109.atts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_mega_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":3,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"td_category_ids_filter","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"next_prev","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","tdc_css_class":"tdi_109","tdc_css_class_style":"tdi_109_rand_style","context":"","category_id":"32","subcats_posts_limit":"5","child_cats_limit":"10","hide_all":"","tdc_css":"","class":"tdi_109"}';
block_tdi_109.td_column_number = "3";
block_tdi_109.block_type = "tdb_header_mega_menu";
block_tdi_109.post_count = "5";
block_tdi_109.found_posts = "10";
block_tdi_109.header_color = "";
block_tdi_109.ajax_pagination_infinite_stop = "";
block_tdi_109.max_num_pages = "2";
tdBlocksArray.push(block_tdi_109);
</script><div class="tdb-mega-modules-wrap"><div id=tdi_109 class="td_block_inner">
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/amazing-model-on-site-in-ibiza-on-the-best-rated-photo-location/"  rel="bookmark" class="td-image-wrap " title="Amazing Model On Site in Ibiza, on the Best Rated Photo Location" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/1-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fashion/" class="td-post-category" >Fashion</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/amazing-model-on-site-in-ibiza-on-the-best-rated-photo-location/"  rel="bookmark" title="Amazing Model On Site in Ibiza, on the Best Rated Photo Location">Amazing Model On Site in Ibiza, on the Best Rated Photo Location</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/beauty-model-working-on-new-photoshoot-on-north-thailand-beach/"  rel="bookmark" class="td-image-wrap " title="Beauty Model Working on New Photoshoot on North Thailand Beach" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/2-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fashion/" class="td-post-category" >Fashion</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/beauty-model-working-on-new-photoshoot-on-north-thailand-beach/"  rel="bookmark" title="Beauty Model Working on New Photoshoot on North Thailand Beach">Beauty Model Working on New Photoshoot on North Thailand Beach</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/victorias-secret-afterparty-goes-off-with-a-bang-this-year/"  rel="bookmark" class="td-image-wrap " title="Victoria&#8217;s Secret Afterparty Goes Off with a Bang This Year" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/83-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fashion/" class="td-post-category" >Fashion</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/victorias-secret-afterparty-goes-off-with-a-bang-this-year/"  rel="bookmark" title="Victoria&#8217;s Secret Afterparty Goes Off with a Bang This Year">Victoria&#8217;s Secret Afterparty Goes Off with a Bang This Year</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/sisters-land-fashion-role-on-the-cover-of-bestseller-magazine/"  rel="bookmark" class="td-image-wrap " title="Sisters Land Fashion Role on the Cover of Bestseller Magazine" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/82-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fashion/" class="td-post-category" >Fashion</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/sisters-land-fashion-role-on-the-cover-of-bestseller-magazine/"  rel="bookmark" title="Sisters Land Fashion Role on the Cover of Bestseller Magazine">Sisters Land Fashion Role on the Cover of Bestseller Magazine</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/best-dressed-men-in-sports-industry-footballers-in-top-3-places/"  rel="bookmark" class="td-image-wrap " title="Best Dressed Men in Sports Industry: Footballers in Top 3 Places" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/81-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fashion/" class="td-post-category" >Fashion</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/best-dressed-men-in-sports-industry-footballers-in-top-3-places/"  rel="bookmark" title="Best Dressed Men in Sports Industry: Footballers in Top 3 Places">Best Dressed Men in Sports Industry: Footballers in Top 3 Places</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_109" data-td_block_id="tdi_109"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_109" data-td_block_id="tdi_109"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div> <!-- ./block1 --></div></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom tdb-menu-item-button tdb-menu-item tdb-mega-menu tdb-mega-menu-inactive tdb-mega-menu-cat menu-item-171"><a href="https://reviewboard.com/category/gaming/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-chip"></i> Gaming</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item-0"><div class="tdb-menu-item-text"><div class="tdb_header_mega_menu tdi_110 td-no-subcats td_with_ajax_pagination td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_110" >
<style>.tdi_110 .tdb-mega-modules-wrap{padding:25px}.tdi_110 .block-mega-child-cats{width:100%;padding:5px 0 15px;width:100%;text-align:center}.tdi_110 .block-mega-child-cats:after{border-width:0px}.tdi_110{flex-direction:column-reverse}.tdi_110 .block-mega-child-cats:before{left:50%;transform:translateX(-50%);right:auto}.tdi_110 .block-mega-child-cats a{display:inline-block;padding:5px 15px;border-width:0px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important;font-weight:500!important}.tdi_110 .block-mega-child-cats .cur-sub-cat{border-width:0px;color:#008d7f}.tdi_110:not(.td-no-subcats) .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_110:not(.td-no-subcats) .td_module_wrap{margin-right:-1px}.tdi_110.td-no-subcats .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_110.td-no-subcats .td_module_wrap{margin-right:-1px}.tdi_110 .td_module_wrap:nth-child(5n+1){clear:both}.tdi_110 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0;padding-bottom:0}.tdi_110 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none}.tdi_110 .td_module_wrap{padding-left:7.5px;padding-right:7.5px;padding-bottom:0px;margin-bottom:0px;display:flex;flex-direction:column}.tdi_110 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px;display:flex;flex-wrap:wrap}.tdi_110 .td-module-container:before{bottom:-0px;border-color:#eaeaea}.tdi_110 .td-module-container{border-color:#eaeaea;flex-direction:column;flex:1;flex-basis:auto}.tdi_110 .entry-thumb{background-position:center 50%}.tdi_110 .td-image-container{display:block;order:0;margin-left:auto;margin-right:auto}.ie10 .tdi_110 .td-module-meta-info,.ie11 .tdi_110 .td-module-meta-info{flex:auto}.tdi_110 .td-post-vid-time{display:block}.tdi_110 .td-module-meta-info,.tdi_110 .td-next-prev-wrap{text-align:center}.tdi_110 .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_110.td-h-effect-up-shadow .td_module_wrap:hover .td-category-pos-image .td-post-category:not(.td-post-extra-category){transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_110 .td-module-meta-info{padding:15px 5px 0 5px;border-color:#eaeaea}.tdi_110 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_110 .td-excerpt{margin:0px;column-count:1;column-gap:48px;display:none}.tdi_110 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_110 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_110 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_110 .td-author-date{display:inline}.tdi_110 .td-post-author-name{display:none}.tdi_110 .td-post-date,.tdi_110 .td-post-author-name span{display:none}.tdi_110 .entry-review-stars{display:inline-block}.tdi_110 .td-icon-star,.tdi_110 .td-icon-star-empty,.tdi_110 .td-icon-star-half{font-size:15px}.tdi_110 .td-module-comments{display:none}.tdi_110 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_110:not(.td-no-subcats) .block-mega-child-cats:before{background-color:#ffffff}.tdi_110 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_110 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_110 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_110.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_110 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_110 .td-module-exclusive .td-module-title a:before{display:inline-block}html:not([class*='ie']) .tdi_110 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_110 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_110 .tdb-mega-modules-wrap{padding:20px}.tdi_110 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_110 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_110 .td_module_wrap .td-module-container:before{display:block!important}.tdi_110 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_110 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_110 .td-module-container:before{bottom:-0px}.tdi_110 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_110 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_110 .tdb-mega-modules-wrap{padding:15px}.tdi_110 .block-mega-child-cats{padding:3px 0 12px}.tdi_110 .block-mega-child-cats a{padding:3px 12px;font-size:11px!important}.tdi_110 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-left:3.5px;padding-right:3.5px;padding-bottom:0px;margin-bottom:0px}.tdi_110 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_110 .td_module_wrap .td-module-container:before{display:block!important}.tdi_110 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_110 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_110 .td_block_inner{margin-left:-3.5px;margin-right:-3.5px}.tdi_110 .td-module-container:before{bottom:-0px}.tdi_110 .td-module-meta-info{padding:12px 0 0 0}.tdi_110 .entry-title{margin:8px 0 0 0;font-size:11px!important}.tdi_110.td_with_ajax_pagination .td-next-prev-wrap a{font-size:6px}.tdi_110.td_with_ajax_pagination .td-next-prev-wrap .td-next-prev-icon-svg svg{width:6px;height:calc(6px + 1px)}.tdi_110 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_110 .td-post-category{font-size:11px!important}@media (min-width:768px){.tdi_110 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_110 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_110 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_110 .td_module_wrap .td-module-container:before{display:block!important}.tdi_110 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_110 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_110 .td-module-container:before{bottom:-0px}.tdi_110 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_110 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_110 = new tdBlock();
block_tdi_110.id = "tdi_110";
block_tdi_110.atts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_mega_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":3,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"td_category_ids_filter","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"next_prev","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","tdc_css_class":"tdi_110","tdc_css_class_style":"tdi_110_rand_style","context":"","category_id":"35","subcats_posts_limit":"5","child_cats_limit":"10","hide_all":"","tdc_css":"","class":"tdi_110"}';
block_tdi_110.td_column_number = "3";
block_tdi_110.block_type = "tdb_header_mega_menu";
block_tdi_110.post_count = "5";
block_tdi_110.found_posts = "10";
block_tdi_110.header_color = "";
block_tdi_110.ajax_pagination_infinite_stop = "";
block_tdi_110.max_num_pages = "2";
tdBlocksArray.push(block_tdi_110);
</script><div class="tdb-mega-modules-wrap"><div id=tdi_110 class="td_block_inner">
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/microsoft-to-start-gaming-development-systems-in-march/"  rel="bookmark" class="td-image-wrap " title="Microsoft to Start Gaming Development Systems in March" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/80-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/gaming/" class="td-post-category" >Gaming</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/microsoft-to-start-gaming-development-systems-in-march/"  rel="bookmark" title="Microsoft to Start Gaming Development Systems in March">Microsoft to Start Gaming Development Systems in March</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/why-next-year-might-just-be-the-best-year-ever-for-gaming/"  rel="bookmark" class="td-image-wrap " title="Why Next Year Might Just Be the Best Year Ever for Gaming" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/79-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/gaming/" class="td-post-category" >Gaming</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/why-next-year-might-just-be-the-best-year-ever-for-gaming/"  rel="bookmark" title="Why Next Year Might Just Be the Best Year Ever for Gaming">Why Next Year Might Just Be the Best Year Ever for Gaming</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/ghost-racer-wants-to-be-the-most-ambitious-car-game/"  rel="bookmark" class="td-image-wrap " title="Ghost Racer Wants to Be the Most Ambitious Car Game" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/gaming/" class="td-post-category" >Gaming</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/ghost-racer-wants-to-be-the-most-ambitious-car-game/"  rel="bookmark" title="Ghost Racer Wants to Be the Most Ambitious Car Game">Ghost Racer Wants to Be the Most Ambitious Car Game</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/new-nintendo-wii-console-goes-on-sale-in-strategy-reboot/"  rel="bookmark" class="td-image-wrap " title="New Nintendo Wii Console Goes on Sale in Strategy Reboot" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/gaming/" class="td-post-category" >Gaming</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/new-nintendo-wii-console-goes-on-sale-in-strategy-reboot/"  rel="bookmark" title="New Nintendo Wii Console Goes on Sale in Strategy Reboot">New Nintendo Wii Console Goes on Sale in Strategy Reboot</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/you-and-your-kids-can-enjoy-this-news-gaming-console/"  rel="bookmark" class="td-image-wrap " title="You and Your Kids can Enjoy this News Gaming Console" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/gaming/" class="td-post-category" >Gaming</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/you-and-your-kids-can-enjoy-this-news-gaming-console/"  rel="bookmark" title="You and Your Kids can Enjoy this News Gaming Console">You and Your Kids can Enjoy this News Gaming Console</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_110" data-td_block_id="tdi_110"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_110" data-td_block_id="tdi_110"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div> <!-- ./block1 --></div></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom tdb-menu-item-button tdb-menu-item tdb-mega-menu tdb-mega-menu-inactive tdb-mega-menu-cat menu-item-172"><a href="https://reviewboard.com/category/fitness/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-pulse"></i> Fitness</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item-0"><div class="tdb-menu-item-text"><div class="tdb_header_mega_menu tdi_111 td-no-subcats td_with_ajax_pagination td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_111" >
<style>.tdi_111 .tdb-mega-modules-wrap{padding:25px}.tdi_111 .block-mega-child-cats{width:100%;padding:5px 0 15px;width:100%;text-align:center}.tdi_111 .block-mega-child-cats:after{border-width:0px}.tdi_111{flex-direction:column-reverse}.tdi_111 .block-mega-child-cats:before{left:50%;transform:translateX(-50%);right:auto}.tdi_111 .block-mega-child-cats a{display:inline-block;padding:5px 15px;border-width:0px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important;font-weight:500!important}.tdi_111 .block-mega-child-cats .cur-sub-cat{border-width:0px;color:#008d7f}.tdi_111:not(.td-no-subcats) .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_111:not(.td-no-subcats) .td_module_wrap{margin-right:-1px}.tdi_111.td-no-subcats .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_111.td-no-subcats .td_module_wrap{margin-right:-1px}.tdi_111 .td_module_wrap:nth-child(5n+1){clear:both}.tdi_111 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0;padding-bottom:0}.tdi_111 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none}.tdi_111 .td_module_wrap{padding-left:7.5px;padding-right:7.5px;padding-bottom:0px;margin-bottom:0px;display:flex;flex-direction:column}.tdi_111 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px;display:flex;flex-wrap:wrap}.tdi_111 .td-module-container:before{bottom:-0px;border-color:#eaeaea}.tdi_111 .td-module-container{border-color:#eaeaea;flex-direction:column;flex:1;flex-basis:auto}.tdi_111 .entry-thumb{background-position:center 50%}.tdi_111 .td-image-container{display:block;order:0;margin-left:auto;margin-right:auto}.ie10 .tdi_111 .td-module-meta-info,.ie11 .tdi_111 .td-module-meta-info{flex:auto}.tdi_111 .td-post-vid-time{display:block}.tdi_111 .td-module-meta-info,.tdi_111 .td-next-prev-wrap{text-align:center}.tdi_111 .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_111.td-h-effect-up-shadow .td_module_wrap:hover .td-category-pos-image .td-post-category:not(.td-post-extra-category){transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_111 .td-module-meta-info{padding:15px 5px 0 5px;border-color:#eaeaea}.tdi_111 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_111 .td-excerpt{margin:0px;column-count:1;column-gap:48px;display:none}.tdi_111 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_111 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_111 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_111 .td-author-date{display:inline}.tdi_111 .td-post-author-name{display:none}.tdi_111 .td-post-date,.tdi_111 .td-post-author-name span{display:none}.tdi_111 .entry-review-stars{display:inline-block}.tdi_111 .td-icon-star,.tdi_111 .td-icon-star-empty,.tdi_111 .td-icon-star-half{font-size:15px}.tdi_111 .td-module-comments{display:none}.tdi_111 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_111:not(.td-no-subcats) .block-mega-child-cats:before{background-color:#ffffff}.tdi_111 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_111 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_111 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_111.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_111 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_111 .td-module-exclusive .td-module-title a:before{display:inline-block}html:not([class*='ie']) .tdi_111 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_111 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_111 .tdb-mega-modules-wrap{padding:20px}.tdi_111 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_111 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_111 .td_module_wrap .td-module-container:before{display:block!important}.tdi_111 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_111 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_111 .td-module-container:before{bottom:-0px}.tdi_111 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_111 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_111 .tdb-mega-modules-wrap{padding:15px}.tdi_111 .block-mega-child-cats{padding:3px 0 12px}.tdi_111 .block-mega-child-cats a{padding:3px 12px;font-size:11px!important}.tdi_111 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-left:3.5px;padding-right:3.5px;padding-bottom:0px;margin-bottom:0px}.tdi_111 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_111 .td_module_wrap .td-module-container:before{display:block!important}.tdi_111 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_111 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_111 .td_block_inner{margin-left:-3.5px;margin-right:-3.5px}.tdi_111 .td-module-container:before{bottom:-0px}.tdi_111 .td-module-meta-info{padding:12px 0 0 0}.tdi_111 .entry-title{margin:8px 0 0 0;font-size:11px!important}.tdi_111.td_with_ajax_pagination .td-next-prev-wrap a{font-size:6px}.tdi_111.td_with_ajax_pagination .td-next-prev-wrap .td-next-prev-icon-svg svg{width:6px;height:calc(6px + 1px)}.tdi_111 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_111 .td-post-category{font-size:11px!important}@media (min-width:768px){.tdi_111 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_111 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_111 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_111 .td_module_wrap .td-module-container:before{display:block!important}.tdi_111 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_111 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_111 .td-module-container:before{bottom:-0px}.tdi_111 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_111 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_111 = new tdBlock();
block_tdi_111.id = "tdi_111";
block_tdi_111.atts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_mega_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":3,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"td_category_ids_filter","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"next_prev","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","tdc_css_class":"tdi_111","tdc_css_class_style":"tdi_111_rand_style","context":"","category_id":"33","subcats_posts_limit":"5","child_cats_limit":"10","hide_all":"","tdc_css":"","class":"tdi_111"}';
block_tdi_111.td_column_number = "3";
block_tdi_111.block_type = "tdb_header_mega_menu";
block_tdi_111.post_count = "5";
block_tdi_111.found_posts = "10";
block_tdi_111.header_color = "";
block_tdi_111.ajax_pagination_infinite_stop = "";
block_tdi_111.max_num_pages = "2";
tdBlocksArray.push(block_tdi_111);
</script><div class="tdb-mega-modules-wrap"><div id=tdi_111 class="td_block_inner">
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/british-study-daily-workouts-help-you-cope-better-with-stress/"  rel="bookmark" class="td-image-wrap " title="British Study: Daily Workouts Help you Cope Better with Stress" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/1-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fitness/" class="td-post-category" >Fitness</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/british-study-daily-workouts-help-you-cope-better-with-stress/"  rel="bookmark" title="British Study: Daily Workouts Help you Cope Better with Stress">British Study: Daily Workouts Help you Cope Better with Stress</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/10-steps-to-make-to-be-successful-in-bodybuilding-and-in-life/"  rel="bookmark" class="td-image-wrap " title="10 Steps to Make to be Successful in Bodybuilding and in Life" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/2-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fitness/" class="td-post-category" >Fitness</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/10-steps-to-make-to-be-successful-in-bodybuilding-and-in-life/"  rel="bookmark" title="10 Steps to Make to be Successful in Bodybuilding and in Life">10 Steps to Make to be Successful in Bodybuilding and in Life</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/discover-how-physical-exercises-make-your-brain-work-better/"  rel="bookmark" class="td-image-wrap " title="Discover How Physical Exercises Make your Brain Work Better" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/83-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fitness/" class="td-post-category" >Fitness</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/discover-how-physical-exercises-make-your-brain-work-better/"  rel="bookmark" title="Discover How Physical Exercises Make your Brain Work Better">Discover How Physical Exercises Make your Brain Work Better</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/how-to-transform-your-weight-loss-routine-into-a-lifestyle/"  rel="bookmark" class="td-image-wrap " title="How to Transform your Weight Loss Routine into a Lifestyle" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/82-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fitness/" class="td-post-category" >Fitness</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-transform-your-weight-loss-routine-into-a-lifestyle/"  rel="bookmark" title="How to Transform your Weight Loss Routine into a Lifestyle">How to Transform your Weight Loss Routine into a Lifestyle</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/be-aware-excessive-excersise-could-do-you-a-lot-of-damage/"  rel="bookmark" class="td-image-wrap " title="Be Aware: Excessive Excersise Could Do You a Lot of Damage" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/81-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/fitness/" class="td-post-category" >Fitness</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/be-aware-excessive-excersise-could-do-you-a-lot-of-damage/"  rel="bookmark" title="Be Aware: Excessive Excersise Could Do You a Lot of Damage">Be Aware: Excessive Excersise Could Do You a Lot of Damage</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_111" data-td_block_id="tdi_111"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_111" data-td_block_id="tdi_111"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div> <!-- ./block1 --></div></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom tdb-menu-item-button tdb-menu-item tdb-mega-menu tdb-mega-menu-inactive tdb-mega-menu-cat menu-item-173"><a href="https://reviewboard.com/category/video/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-apperture"></i> Video</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item-0"><div class="tdb-menu-item-text"><div class="tdb_header_mega_menu tdi_112 td-no-subcats td_with_ajax_pagination td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_112" >
<style>.tdi_112 .tdb-mega-modules-wrap{padding:25px}.tdi_112 .block-mega-child-cats{width:100%;padding:5px 0 15px;width:100%;text-align:center}.tdi_112 .block-mega-child-cats:after{border-width:0px}.tdi_112{flex-direction:column-reverse}.tdi_112 .block-mega-child-cats:before{left:50%;transform:translateX(-50%);right:auto}.tdi_112 .block-mega-child-cats a{display:inline-block;padding:5px 15px;border-width:0px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important;font-weight:500!important}.tdi_112 .block-mega-child-cats .cur-sub-cat{border-width:0px;color:#008d7f}.tdi_112:not(.td-no-subcats) .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_112:not(.td-no-subcats) .td_module_wrap{margin-right:-1px}.tdi_112.td-no-subcats .td_module_wrap{width:20%;float:left}.td-md-is-safari .tdi_112.td-no-subcats .td_module_wrap{margin-right:-1px}.tdi_112 .td_module_wrap:nth-child(5n+1){clear:both}.tdi_112 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0;padding-bottom:0}.tdi_112 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none}.tdi_112 .td_module_wrap{padding-left:7.5px;padding-right:7.5px;padding-bottom:0px;margin-bottom:0px;display:flex;flex-direction:column}.tdi_112 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px;display:flex;flex-wrap:wrap}.tdi_112 .td-module-container:before{bottom:-0px;border-color:#eaeaea}.tdi_112 .td-module-container{border-color:#eaeaea;flex-direction:column;flex:1;flex-basis:auto}.tdi_112 .entry-thumb{background-position:center 50%}.tdi_112 .td-image-container{display:block;order:0;margin-left:auto;margin-right:auto}.ie10 .tdi_112 .td-module-meta-info,.ie11 .tdi_112 .td-module-meta-info{flex:auto}.tdi_112 .td-post-vid-time{display:block}.tdi_112 .td-module-meta-info,.tdi_112 .td-next-prev-wrap{text-align:center}.tdi_112 .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_112.td-h-effect-up-shadow .td_module_wrap:hover .td-category-pos-image .td-post-category:not(.td-post-extra-category){transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_112 .td-module-meta-info{padding:15px 5px 0 5px;border-color:#eaeaea}.tdi_112 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_112 .td-excerpt{margin:0px;column-count:1;column-gap:48px;display:none}.tdi_112 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_112 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_112 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_112 .td-author-date{display:inline}.tdi_112 .td-post-author-name{display:none}.tdi_112 .td-post-date,.tdi_112 .td-post-author-name span{display:none}.tdi_112 .entry-review-stars{display:inline-block}.tdi_112 .td-icon-star,.tdi_112 .td-icon-star-empty,.tdi_112 .td-icon-star-half{font-size:15px}.tdi_112 .td-module-comments{display:none}.tdi_112 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_112:not(.td-no-subcats) .block-mega-child-cats:before{background-color:#ffffff}.tdi_112 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_112 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_112 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_112.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_112 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_112 .td-module-exclusive .td-module-title a:before{display:inline-block}html:not([class*='ie']) .tdi_112 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_112 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_112 .tdb-mega-modules-wrap{padding:20px}.tdi_112 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_112 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_112 .td_module_wrap .td-module-container:before{display:block!important}.tdi_112 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_112 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_112 .td-module-container:before{bottom:-0px}.tdi_112 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_112 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_112 .tdb-mega-modules-wrap{padding:15px}.tdi_112 .block-mega-child-cats{padding:3px 0 12px}.tdi_112 .block-mega-child-cats a{padding:3px 12px;font-size:11px!important}.tdi_112 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-left:3.5px;padding-right:3.5px;padding-bottom:0px;margin-bottom:0px}.tdi_112 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_112 .td_module_wrap .td-module-container:before{display:block!important}.tdi_112 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_112 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_112 .td_block_inner{margin-left:-3.5px;margin-right:-3.5px}.tdi_112 .td-module-container:before{bottom:-0px}.tdi_112 .td-module-meta-info{padding:12px 0 0 0}.tdi_112 .entry-title{margin:8px 0 0 0;font-size:11px!important}.tdi_112.td_with_ajax_pagination .td-next-prev-wrap a{font-size:6px}.tdi_112.td_with_ajax_pagination .td-next-prev-wrap .td-next-prev-icon-svg svg{width:6px;height:calc(6px + 1px)}.tdi_112 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_112 .td-post-category{font-size:11px!important}@media (min-width:768px){.tdi_112 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_112 .td_module_wrap{padding-bottom:0px!important;margin-bottom:0px!important;clear:none!important;padding-bottom:0px;margin-bottom:0px}.tdi_112 .td_module_wrap:nth-last-child(-n+5){margin-bottom:0!important;padding-bottom:0!important}.tdi_112 .td_module_wrap .td-module-container:before{display:block!important}.tdi_112 .td_module_wrap:nth-last-child(-n+5) .td-module-container:before{display:none!important}.tdi_112 .td_module_wrap:nth-child(5n+1){clear:both!important}.tdi_112 .td-module-container:before{bottom:-0px}.tdi_112 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_112 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_112 = new tdBlock();
block_tdi_112.id = "tdi_112";
block_tdi_112.atts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_mega_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":3,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"td_category_ids_filter","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"next_prev","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","tdc_css_class":"tdi_112","tdc_css_class_style":"tdi_112_rand_style","context":"","category_id":"45","subcats_posts_limit":"5","child_cats_limit":"10","hide_all":"","tdc_css":"","class":"tdi_112"}';
block_tdi_112.td_column_number = "3";
block_tdi_112.block_type = "tdb_header_mega_menu";
block_tdi_112.post_count = "5";
block_tdi_112.found_posts = "10";
block_tdi_112.header_color = "";
block_tdi_112.ajax_pagination_infinite_stop = "";
block_tdi_112.max_num_pages = "2";
tdBlocksArray.push(block_tdi_112);
</script><div class="tdb-mega-modules-wrap"><div id=tdi_112 class="td_block_inner">
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/manufacturer-plans-to-stop-delivering-secondary-camera-parts/"  rel="bookmark" class="td-image-wrap " title="Manufacturer Plans to Stop Delivering Secondary Camera Parts" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/80-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/video/" class="td-post-category" >Video</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/manufacturer-plans-to-stop-delivering-secondary-camera-parts/"  rel="bookmark" title="Manufacturer Plans to Stop Delivering Secondary Camera Parts">Manufacturer Plans to Stop Delivering Secondary Camera Parts</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/apple-unveils-their-top-5-best-selling-movies-of-all-time/"  rel="bookmark" class="td-image-wrap " title="Apple Unveils their Top 5 Best Selling Movies of All-Time" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/79-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/video/" class="td-post-category" >Video</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/apple-unveils-their-top-5-best-selling-movies-of-all-time/"  rel="bookmark" title="Apple Unveils their Top 5 Best Selling Movies of All-Time">Apple Unveils their Top 5 Best Selling Movies of All-Time</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/virtual-reality-video-camera-will-be-launched-in-barcelona/"  rel="bookmark" class="td-image-wrap " title="Virtual Reality Video Camera Will be Launched in Barcelona" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/video/" class="td-post-category" >Video</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/virtual-reality-video-camera-will-be-launched-in-barcelona/"  rel="bookmark" title="Virtual Reality Video Camera Will be Launched in Barcelona">Virtual Reality Video Camera Will be Launched in Barcelona</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/virtual-reality-could-change-game-streaming-systems-forever/"  rel="bookmark" class="td-image-wrap " title="Virtual Reality Could Change Game Streaming Systems Forever" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/video/" class="td-post-category" >Video</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/virtual-reality-could-change-game-streaming-systems-forever/"  rel="bookmark" title="Virtual Reality Could Change Game Streaming Systems Forever">Virtual Reality Could Change Game Streaming Systems Forever</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_header tdb_module_mm td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/this-new-gear-vr-controller-feels-like-its-from-the-future/"  rel="bookmark" class="td-image-wrap " title="This New Gear VR Controller Feels Like it&#8217;s From the Future" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-324x400.jpg"  ></span></a></div>                                            </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/video/" class="td-post-category" >Video</a>
                    <p class="entry-title td-module-title"><a href="https://reviewboard.com/this-new-gear-vr-controller-feels-like-its-from-the-future/"  rel="bookmark" title="This New Gear VR Controller Feels Like it&#8217;s From the Future">This New Gear VR Controller Feels Like it&#8217;s From the Future</a></p>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_112" data-td_block_id="tdi_112"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_112" data-td_block_id="tdi_112"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div> <!-- ./block1 --></div></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children tdb-menu-item-button tdb-menu-item tdb-normal-menu menu-item-174 tdb-menu-item-inactive"><a href="#"><div class="tdb-menu-item-text">More</div><i class="tdb-sub-menu-icon td-icon-down tdb-main-sub-menu-icon"></i></a>
<ul class="sub-menu">
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category tdb-menu-item tdb-normal-menu menu-item-175"><a href="https://reviewboard.com/category/photography/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-photo"></i> Photography</div></a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category tdb-menu-item tdb-normal-menu menu-item-176"><a href="https://reviewboard.com/category/showbiz/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-bulb-idea"></i> Showbiz</div></a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category tdb-menu-item tdb-normal-menu menu-item-177"><a href="https://reviewboard.com/category/gadgets/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-responsive-devices"></i> Gadgets</div></a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category tdb-menu-item tdb-normal-menu menu-item-178"><a href="https://reviewboard.com/category/facts/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-megaphone"></i> Facts</div></a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category tdb-menu-item tdb-normal-menu menu-item-179"><a href="https://reviewboard.com/category/style/"><div class="tdb-menu-item-text"><i class="tdc-font-tdmp tdc-font-tdmp-leves"></i> Style</div></a></li>
</ul>
</li>
</ul></div></div></div></div><div class="vc_column tdi_114  wpb_column vc_column_container tdc-column td-pb-span3">
<style scoped>.tdi_114{vertical-align:baseline}.tdi_114>.wpb_wrapper,.tdi_114>.wpb_wrapper>.tdc-elements{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-end;align-items:flex-start}.tdi_114>.wpb_wrapper>.tdc-elements{width:100%}.tdi_114>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_114>.wpb_wrapper{width:100%;height:100%}.tdi_114{width:10%!important}@media (min-width:768px) and (max-width:1018px){.tdi_114{width:8%!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_header_search tdi_115 tdb-header-search-trigger-enabled td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_115" >
<style>.tdi_115 .tdb-head-search-btn i{font-size:18px;width:46.8px;height:46.8px;line-height:46.8px;color:#ffffff}.tdi_115 .tdb-head-search-btn svg{width:18px}.tdi_115 .tdb-search-icon-svg{width:46.8px;height:46.8px}.tdi_115 .tdb-search-txt{top:0px}.tdi_115 .tdb-drop-down-search{left:auto;right:0}body .tdi_115 .tdb-drop-down-search-inner,.tdi_115 .tdb-search-form,.tdi_115 .tdb-aj-search{margin-left:auto;margin-right:0}.tdi_115 .tdb-head-search-form-btn-icon{top:0px}.tdi_115 .result-msg{text-align:center;font-family:Rubik!important;font-size:11px!important}.tdi_115 .tdb-head-search-btn svg,.tdi_115 .tdb-head-search-btn svg *{fill:#ffffff}.tdi_115 .tdb-search-form{border-color:#dd3333}.tdi_115 .tdb-head-search-btn:after{border-bottom-color:#dd3333}.tdi_115 .tdb-drop-down-search-inner{box-shadow:0px 2px 10px 0px rgba(0,0,0,0.12)}.tdi_115 .tdb-head-search-form-btn:hover{background-color:#008d7f}.tdi_115 .result-msg a:hover{color:#008d7f}.tdi_115 .tdb-head-search-form-input{font-family:Rubik!important;font-size:13px!important;font-weight:400!important}.tdi_115 .tdb-head-search-placeholder{font-family:Rubik!important;font-size:13px!important;font-weight:400!important}.tdi_115 .tdb-head-search-form-btn{font-family:Rubik!important;font-size:13px!important;font-weight:400!important}.tdi_115 .td_module_wrap{width:100%;float:left;padding-left:0px;padding-right:0px;padding-bottom:7.5px;margin-bottom:7.5px}.tdi_115 .td_module_wrap:nth-last-child(-n+1){margin-bottom:0;padding-bottom:0}.tdi_115 .td_module_wrap:nth-last-child(-n+1) .td-module-container:before{display:none}.tdi_115 .tdb-aj-search-inner{margin-left:-0px;margin-right:-0px}.tdi_115 .td-module-container:before{bottom:-7.5px;border-color:#eaeaea}.tdi_115 .td-module-container{border-color:#eaeaea;flex-direction:row;align-items:center}.tdi_115 .entry-thumb{background-position:center 50%}.tdi_115 .td-image-wrap{padding-bottom:80%}.tdi_115 .td-image-container{flex:0 0 30%;width:30%;display:block;order:0}.ie10 .tdi_115 .td-image-container,.ie11 .tdi_115 .td-image-container{flex:0 0 auto}.ie10 .tdi_115 .td-module-meta-info,.ie11 .tdi_115 .td-module-meta-info{flex:1}.tdi_115 .td-post-vid-time{display:block}.tdi_115 .td-module-meta-info{padding:0 0 0 15px;border-color:#eaeaea}.tdi_115 .entry-title{margin:0 0 5px;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important}.tdi_115 .td-excerpt{column-count:1;column-gap:48px;display:none}.tdi_115 .td-post-category:not(.td-post-extra-category){display:none}.tdi_115 .td-read-more{display:none}.tdi_115 .td-author-date{display:inline}.tdi_115 .td-post-author-name{display:none}.tdi_115 .entry-review-stars{display:none}.tdi_115 .td-icon-star,.tdi_115 .td-icon-star-empty,.tdi_115 .td-icon-star-half{font-size:15px}.tdi_115 .td-module-comments{display:none}.tdi_115 .tdb-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}body .tdi_115 .td_module_wrap:hover .td-module-title a,.tdi_115 .tdb-aj-cur-element .entry-title a{color:#008d7f!important}.tdi_115 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_115 .td-editor-date,.tdi_115 .td-editor-date .td-post-author-name,.tdi_115 .td-module-comments a{font-family:Rubik!important;font-size:11px!important;line-height:1!important}.tdi_115 .td-module-exclusive .td-module-title a:before{display:inline-block}@media (min-width:768px){.tdi_115 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_115 .td_module_wrap{padding-bottom:7.5px!important;margin-bottom:7.5px!important;padding-bottom:7.5px;margin-bottom:7.5px}.tdi_115 .td_module_wrap:nth-last-child(-n+1){margin-bottom:0!important;padding-bottom:0!important}.tdi_115 .td_module_wrap .td-module-container:before{display:block!important}.tdi_115 .td_module_wrap:nth-last-child(-n+1) .td-module-container:before{display:none!important}.tdi_115 .td-module-container:before{bottom:-7.5px}.tdi_115 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_115 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_115 .tdb-head-search-btn i{font-size:14px;width:39.2px;height:39.2px;line-height:39.2px}.tdi_115 .tdb-head-search-btn svg{width:14px}.tdi_115 .tdb-search-icon-svg{width:39.2px;height:39.2px}.tdi_115 .td_module_wrap{padding-bottom:7.5px!important;margin-bottom:7.5px!important;padding-bottom:7.5px;margin-bottom:7.5px}.tdi_115 .td_module_wrap:nth-last-child(-n+1){margin-bottom:0!important;padding-bottom:0!important}.tdi_115 .td_module_wrap .td-module-container:before{display:block!important}.tdi_115 .td_module_wrap:nth-last-child(-n+1) .td-module-container:before{display:none!important}.tdi_115 .td-module-container:before{bottom:-7.5px}.tdi_115 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_115 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_115 .td_module_wrap{padding-bottom:7.5px!important;margin-bottom:7.5px!important;padding-bottom:7.5px;margin-bottom:7.5px}.tdi_115 .td_module_wrap:nth-last-child(-n+1){margin-bottom:0!important;padding-bottom:0!important}.tdi_115 .td_module_wrap .td-module-container:before{display:block!important}.tdi_115 .td_module_wrap:nth-last-child(-n+1) .td-module-container:before{display:none!important}.tdi_115 .td-module-container:before{bottom:-7.5px}.tdi_115 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_115 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><div class="tdb-block-inner td-fix-index"><div class="tdb-drop-down-search" aria-labelledby="td-header-search-button"><div class="tdb-drop-down-search-inner"><form method="get" class="tdb-search-form" action="https://reviewboard.com/"><div class="tdb-search-form-inner"><input class="tdb-head-search-form-input" placeholder=" " type="text" value="" name="s" autocomplete="off" /><button class="wpb_button wpb_btn-inverse btn tdb-head-search-form-btn" title="Search" type="submit" aria-label="Search"><span>Search</span></button></div></form><div class="tdb-aj-search"></div></div></div><a href="#" role="button" aria-label="Search" class="tdb-head-search-btn dropdown-toggle" data-toggle="dropdown"><span class="tdb-search-icon tdb-search-icon-svg" ><svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024"><path d="M958.484 910.161l-134.564-134.502c63.099-76.595 94.781-170.455 94.72-264.141 0.061-106.414-40.755-213.228-121.917-294.431-81.244-81.183-187.976-121.958-294.359-121.938-106.435-0.020-213.187 40.796-294.369 121.938-81.234 81.203-122.010 188.017-121.989 294.369-0.020 106.445 40.755 213.166 121.989 294.287 81.193 81.285 187.945 122.020 294.369 121.979 93.716 0.041 187.597-31.642 264.11-94.659l134.554 134.564 57.457-57.467zM265.431 748.348c-65.546-65.495-98.13-150.999-98.171-236.882 0.041-85.832 32.625-171.346 98.171-236.913 65.567-65.536 151.081-98.099 236.933-98.14 85.821 0.041 171.336 32.604 236.902 98.14 65.495 65.516 98.12 151.122 98.12 236.913 0 85.924-32.625 171.387-98.12 236.882-65.556 65.495-151.009 98.099-236.902 98.099-85.852 0-171.366-32.604-236.933-98.099zM505.385 272.864c-61.901 0.020-123.566 23.501-170.824 70.799-47.288 47.258-70.769 108.923-70.799 170.834-0.041 26.624 4.383 53.105 13.046 78.428-0.031-0.522-0.092-1.024-0.031-1.556 13.199-91.341 48.241-159.775 96.963-208.497v-0.020h0.031c48.712-48.722 117.135-83.763 208.486-96.963 0.522-0.061 1.024 0 1.536 0.041-25.313-8.684-51.794-13.087-78.408-13.066z"></path></svg></span></a></div></div> <!-- ./block --></div></div></div></div><div id="tdi_116" class="tdc-row"><div class="vc_row tdi_117  wpb_row td-pb-row" >
<style scoped>.tdi_117,.tdi_117 .tdc-columns{min-height:0}.tdi_117,.tdi_117 .tdc-columns{display:block}.tdi_117 .tdc-columns{width:100%}.tdi_117:before,.tdi_117:after{display:table}</style><div class="vc_column tdi_119  wpb_column vc_column_container tdc-column td-pb-span12">
<style scoped>.tdi_119{vertical-align:baseline}.tdi_119>.wpb_wrapper,.tdi_119>.wpb_wrapper>.tdc-elements{display:block}.tdi_119>.wpb_wrapper>.tdc-elements{width:100%}.tdi_119>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_119>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="wpb_wrapper td_block_separator td_block_wrap vc_separator tdi_121  td_separator_solid td_separator_center"><span style="border-color:#dd3333;border-width:3px;width:100%;"></span>
<style scoped>.tdi_121{margin-right:-48px!important;margin-bottom:0px!important;margin-left:-48px!important;width:auto!important}@media (min-width:1019px) and (max-width:1140px){.tdi_121{margin-right:-24px!important;margin-left:-24px!important}}</style></div></div></div></div></div></div></div>                    </div>

                            </div>
            
        
            <div class="td-main-content-wrap td-main-page-wrap td-container-wrap">
                <div class="tdc-content-wrap">
                    <div id="tdi_122" class="tdc-zone"><div class="tdc_zone tdi_123  wpb_row td-pb-row"  >
<style scoped>.tdi_123{min-height:0}</style><div id="tdi_124" class="tdc-row"><div class="vc_row tdi_125  wpb_row td-pb-row" >
<style scoped>.tdi_125,.tdi_125 .tdc-columns{min-height:0}.tdi_125,.tdi_125 .tdc-columns{display:block}.tdi_125 .tdc-columns{width:100%}.tdi_125:before,.tdi_125:after{display:table}</style><div class="vc_column tdi_127  wpb_column vc_column_container tdc-column td-pb-span12">
<style scoped>.tdi_127{vertical-align:baseline}.tdi_127>.wpb_wrapper,.tdi_127>.wpb_wrapper>.tdc-elements{display:block}.tdi_127>.wpb_wrapper>.tdc-elements{width:100%}.tdi_127>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_127>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="td_block_wrap td_block_trending_now tdi_128 td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_128" >
<style>.tdi_128{margin-top:0px!important;margin-bottom:24px!important;padding-top:14px!important}@media (max-width:767px){.tdi_128{margin-bottom:20px!important;padding-top:24px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_128{margin-bottom:20px!important;padding-top:10px!important}}</style>
<style>.td_block_trending_now{padding:0 18px}.td-trending-now-wrapper{display:flex;align-items:center;position:relative;-webkit-transform:translate3d(0px,0px,0px);transform:translate3d(0px,0px,0px);overflow:hidden}.td-trending-now-wrapper .td-next-prev-wrap{margin:0 0 0 auto;z-index:1}.td-trending-now-wrapper:hover .td-trending-now-title{background-color:var(--td_theme_color,#4db2ec)}.td-trending-now-wrapper .td-trending-now-nav-right{padding-left:2px}.td-trending-now-title{background-color:#222;font-family:var(--td_default_google_font_2,'Roboto',sans-serif);font-size:12px;text-transform:uppercase;color:#fff;padding:2px 10px 1px;display:inline-block;line-height:22px;-webkit-transition:background-color 0.3s;transition:background-color 0.3s;cursor:default;-webkit-user-select:none;user-select:none}@-moz-document url-prefix(){.td-trending-now-title{line-height:21px}}.td-trending-now-display-area{display:flex;align-items:center;vertical-align:top;padding:0 0 0 15px}.td-trending-now-display-area .entry-title{font-size:15px;line-height:25px;margin:0}.td-trending-now-post{opacity:0;position:absolute;top:0;padding-right:119px;overflow:hidden}.td-trending-now-post:first-child{opacity:1;z-index:1;opacity:1}.td-next-prev-wrap .td-trending-now-nav-right{margin-right:0}.td_block_trending_now.td-trending-style2{border:1px solid #eaeaea;padding-top:20px;padding-bottom:20px}body .tdi_128 .td-trending-now-title,.tdi_128 .td-trending-now-wrapper:hover .td-trending-now-title{background-color:#008d7f}.tdi_128 .td-next-prev-wrap a:hover{color:#fff}.tdi_128 .td-trending-now-title{font-family:Rubik!important;font-size:12px!important;font-weight:400!important;letter-spacing:0.6px!important}.tdi_128 .entry-title a{font-family:Rubik!important;font-size:13px!important;font-weight:500!important}@media (min-width:768px) and (max-width:1018px){.td_block_trending_now{padding:0 6px}}@media (min-width:768px) and (max-width:1018px){.td-trending-now-post{padding-right:107px}}@media (max-width:767px){.td_block_trending_now{padding:0}.td-trending-now-wrapper{flex-direction:column;text-align:center}.td-trending-now-wrapper .td-next-prev-wrap{display:none}.td-trending-now-title{padding:2px 10px 1px}.td-trending-now-display-area{width:100%;padding:0;display:block;height:26px;position:relative;top:10px}.td-trending-now-display-area .td_module_trending_now .entry-title{font-size:14px;line-height:16px}.td-trending-now-post{width:100%;padding-right:0}}</style><script>var block_tdi_128 = new tdBlock();
block_tdi_128.id = "tdi_128";
block_tdi_128.atts = '{"tdc_css":"eyJhbGwiOnsibWFyZ2luLXRvcCI6IjAiLCJtYXJnaW4tYm90dG9tIjoiMjQiLCJwYWRkaW5nLXRvcCI6IjE0IiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJwYWRkaW5nLXRvcCI6IjI0IiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjIwIiwicGFkZGluZy10b3AiOiIxMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=","f_title_font_family":"712","f_article_font_family":"712","f_title_font_size":"12","f_title_font_spacing":"0.6","f_title_font_weight":"400","f_article_font_size":"13","f_article_font_weight":"500","header_color":"#008d7f","mt_title_tag":"p","block_type":"td_block_trending_now","custom_title":"","title_padding":"","navigation":"","timer":3,"style":"","separator":"","mt_tl":"","post_ids":"","category_id":"","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","sort":"","popular_by_date":"","linked_posts":"","favourite_only":"","limit":"5","offset":"","open_in_new_window":"","review_source":"","el_class":"","header_text_color":"","articles_color":"","next_prev_color":"","next_prev_border_color":"","next_prev_hover_color":"","f_title_font_header":"","f_title_font_title":"Block title","f_title_font_settings":"","f_title_font_line_height":"","f_title_font_style":"","f_title_font_transform":"","f_title_":"","f_article_font_title":"Articles title","f_article_font_settings":"","f_article_font_line_height":"","f_article_font_style":"","f_article_font_transform":"","f_article_font_spacing":"","f_article_":"","css":"","block_template_id":"","td_column_number":3,"ajax_pagination_infinite_stop":"","td_ajax_preloading":"","td_ajax_filter_type":"","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"","ajax_pagination_next_prev_swipe":"","border_top":"","class":"tdi_128","tdc_css_class":"tdi_128","tdc_css_class_style":"tdi_128_rand_style"}';
block_tdi_128.td_column_number = "3";
block_tdi_128.block_type = "td_block_trending_now";
block_tdi_128.post_count = "5";
block_tdi_128.found_posts = "85";
block_tdi_128.header_color = "#008d7f";
block_tdi_128.ajax_pagination_infinite_stop = "";
block_tdi_128.max_num_pages = "17";
tdBlocksArray.push(block_tdi_128);
</script><div class="td_block_inner"><div class="td-trending-now-wrapper" id="tdi_128" data-start="" data-timer=""><div class="td-trending-now-title">Trending Now</div><div class="td-trending-now-display-area">
        <div class="td_module_trending_now td-trending-now-post-0 td-trending-now-post td-cpt-post">

            <p class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" title="How to Think and Act in the Plummeting Stock Market">How to Think and Act in the Plummeting Stock Market</a></p>
        </div>

        
        <div class="td_module_trending_now td-trending-now-post-1 td-trending-now-post td-cpt-post">

            <p class="entry-title td-module-title"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" title="The Real Economy Has Never Been Tested by a Pandemic">The Real Economy Has Never Been Tested by a Pandemic</a></p>
        </div>

        
        <div class="td_module_trending_now td-trending-now-post-2 td-trending-now-post td-cpt-post">

            <p class="entry-title td-module-title"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" title="More and More People Stay Home as Coronavirus Spreads">More and More People Stay Home as Coronavirus Spreads</a></p>
        </div>

        
        <div class="td_module_trending_now td-trending-now-post-3 td-trending-now-post td-cpt-post">

            <p class="entry-title td-module-title"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" title="Witnessing the Birth of the New Coronavirus Economy">Witnessing the Birth of the New Coronavirus Economy</a></p>
        </div>

        
        <div class="td_module_trending_now td-trending-now-post-4 td-trending-now-post td-cpt-post">

            <p class="entry-title td-module-title"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" title="Companies Are Putting Profits Ahead of Public Health">Companies Are Putting Profits Ahead of Public Health</a></p>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#"
                                  class="td_ajax-prev-pagex td-trending-now-nav-left" 
                                  aria-label="prev" 
                                  data-block-id="tdi_128"
                                  data-moving="left"
                                  data-control-start=""><i class="td-icon-menu-left"></i></a><a href="#"
                                  class="td_ajax-next-pagex td-trending-now-nav-right" 
                                  aria-label="next"
                                  data-block-id="tdi_128"
                                  data-moving="right"
                                  data-control-start=""><i class="td-icon-menu-right"></i></a></div></div></div></div></div></div></div></div><div id="tdi_129" class="tdc-row"><div class="vc_row tdi_130  wpb_row td-pb-row" >
<style scoped>.tdi_130,.tdi_130 .tdc-columns{min-height:0}.tdi_130,.tdi_130 .tdc-columns{display:block}.tdi_130 .tdc-columns{width:100%}.tdi_130:before,.tdi_130:after{display:table}</style><div class="vc_column tdi_132  wpb_column vc_column_container tdc-column td-pb-span12">
<style scoped>.tdi_132{vertical-align:baseline}.tdi_132>.wpb_wrapper,.tdi_132>.wpb_wrapper>.tdc-elements{display:block}.tdi_132>.wpb_wrapper>.tdc-elements{width:100%}.tdi_132>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_132>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="td-big-grid-flex td-big-grid-flex-scroll td_block_wrap td_block_big_grid_flex_2 tdi_133 td-pb-border-top td_block_template_1 td-big-grid-flex-posts" data-td-block-uid="tdi_133" >
<style>@media (max-width:767px){.tdi_133{margin-bottom:40px!important}}</style>
<style>.td-big-grid-flex{width:100%;padding-bottom:0}.td-big-grid-flex .td_block_inner:after,.td-big-grid-flex .td_block_inner .td-big-grid-flex-post:after{content:'';display:table;clear:both}.td-big-grid-flex .td-big-grid-flex-post{position:relative;float:left;padding-bottom:0}.td-big-grid-flex .td-image-container{position:relative;flex:0 0 100%;width:100%;height:100%}.td-big-grid-flex .td-image-wrap{position:relative;display:block;overflow:hidden}.td-big-grid-flex .td-image-wrap:before{position:absolute;bottom:0;left:0;width:100%;height:100%;-webkit-transition:background-color 0.3s ease;transition:background-color 0.3s ease;z-index:1}.td-big-grid-flex .td-module-thumb{position:relative;margin-bottom:0}.td-big-grid-flex .td-module-thumb:after{position:absolute;top:0;left:0;width:100%;height:100%}.td-big-grid-flex .td-thumb-css{width:100%;height:100%;position:absolute;background-size:cover;background-position:center center}.td-big-grid-flex .td-module-thumb .td-thumb-css{transition:opacity 0.3s,transform 0.3s;-webkit-transition:opacity 0.3s,transform 0.3s}.td-big-grid-flex .td-post-category{transition:background-color 0.2s ease;-webkit-transition:background-color 0.2s ease;padding:3px 7px;background-color:rgba(0,0,0,0.7);font-family:var(--td_default_google_font_2,'Roboto',sans-serif);line-height:13px;font-weight:500;text-transform:uppercase;pointer-events:auto}.td-big-grid-flex .td-module-meta-info{position:absolute;left:0;margin-bottom:0;width:100%;pointer-events:none;z-index:1}.td-big-grid-flex .td-module-title a,.td-big-grid-flex .td-post-author-name span,.td-big-grid-flex .td-module-container:hover .entry-title a,.td-big-grid-flex .td-post-author-name a,.td-big-grid-flex .td-post-date{color:#fff}.td-big-grid-flex .td-module-title{margin:0}.td-big-grid-flex .td-module-title a{text-shadow:1px 1px 3px rgba(0,0,0,0.2)}.td-big-grid-flex .td-editor-date{display:inline-block}.td-big-grid-flex .td-post-author-name a,.td-big-grid-flex .td-post-author-name span,.td-big-grid-flex .td-post-date{text-shadow:1px 1px 1px rgba(0,0,0,0.3)}.td-big-grid-flex .td-big-grid-flex-post-empty .td-image-wrap{background-color:#e5e5e5}.td-big-grid-flex .td-big-grid-flex-post-empty .td-image-wrap:before{display:none}.td_block_big_grid_flex_2 [class^='td_module_flex_6'] .td-module-meta-info{padding:22px 20px}.td_block_big_grid_flex_2 [class^='td_module_flex_6'] .entry-title{margin-bottom:9px;font-size:27px;font-weight:500;line-height:34px}.td_block_big_grid_flex_2 .td_module_flex_7 .entry-title{margin:0;font-size:16px;line-height:21px;font-weight:500}.td_block_big_grid_flex_2 .td_module_flex_6{width:50%}.td_block_big_grid_flex_2 .td_module_flex_6 .td-image-wrap{padding-bottom:400px}.td_block_big_grid_flex_2 .td_module_flex_7{width:25%}.td_block_big_grid_flex_2 .td_module_flex_7 .td-image-wrap{padding-bottom:198px}.td_block_big_grid_flex_2 .td_module_flex_7 .td-module-meta-info{padding:11px 17px}body .tdi_133 .td-module-meta-info{bottom:0}body .tdi_133 .td_module_flex_6 .entry-thumb{background-position:center 50%}body .tdi_133 .td_module_flex_7 .entry-thumb{background-position:center 50%}body .tdi_133 [class^='td_module_flex_6'] .td-image-wrap{padding-bottom:445px}body .tdi_133 .td_module_flex_7 .td-image-wrap{padding-bottom:220px}body .tdi_133 .td_module_flex_6 .td-video-play-ico{top:50%;left:50%;transform:translate(-50%,-50%)}body .tdi_133 .td_module_flex_7 .td-video-play-ico{top:50%;left:50%;transform:translate(-50%,-50%)}body .tdi_133 .td_module_flex_6 .td-module-meta-info{padding:24px}body .tdi_133 .td_module_flex_7 .td-module-meta-info{padding:15px}body .tdi_133 .td_module_flex_6 .tdb-module-title-wrap{margin:12px 0 8px}body .tdi_133 .td_module_flex_7 .tdb-module-title-wrap{margin:8px 0 0}body .tdi_133 .td_module_flex_6 .td-post-category{margin:0px;padding:0px;font-family:Rubik!important;font-size:13px!important;font-weight:400!important;text-transform:uppercase!important}body .tdi_133 .td_module_flex_7 .td-post-category{margin:0px;padding:0px;font-family:Rubik!important;font-size:11px!important;font-weight:400!important;text-transform:uppercase!important}body .tdi_133 .td_module_flex_6 .td-post-category:not(.td-post-extra-category){display:inline-block}body .tdi_133 .td_module_flex_6 .td-editor-date{display:inline-block}body .tdi_133 .td_module_flex_7 .td-editor-date{display:none}body .tdi_133 .td_module_flex_6 .td-post-author-name{display:inline-block;font-weight:400}body .tdi_133 .td_module_flex_7 .td-post-author-name{display:none;font-weight:400}body .tdi_133 .td_module_flex_6 .td-post-date,body .tdi_133 .td_module_flex_6 .td-post-author-name span{display:inline-block}body .tdi_133 .td_module_flex_7 .td-post-date,body .tdi_133 .td_module_flex_7 .td-post-author-name span{display:none}body .tdi_133 .td_module_flex_6 .entry-review-stars{display:none}body .tdi_133 .td_module_flex_6 .td-icon-star,body .tdi_133 .td_module_flex_6 .td-icon-star-empty,body .tdi_133 .td_module_flex_6 .td-icon-star-half{font-size:15px}body .tdi_133 .td_module_flex_7 .entry-review-stars{display:none}body .tdi_133 .td_module_flex_7 .td-icon-star,body .tdi_133 .td_module_flex_7 .td-icon-star-empty,body .tdi_133 .td_module_flex_7 .td-icon-star-half{font-size:15px}body .tdi_133 .td-image-wrap:before{content:'';background:-webkit-linear-gradient(0deg,rgba(0,0,0,0.6),rgba(0,0,0,0.2) 35%,rgba(0,0,0,0) 50%,rgba(0,0,0,0));background:linear-gradient(0deg,rgba(0,0,0,0.6),rgba(0,0,0,0.2) 35%,rgba(0,0,0,0) 50%,rgba(0,0,0,0))}body .tdi_133 .td-post-category{background-color:rgba(255,255,255,0)}body .tdi_133 .td-module-container:hover .td-post-category{background-color:rgba(255,255,255,0)}body .tdi_133 .entry-review-stars{color:#fff}body .tdi_133 .td_module_flex_6 .entry-title{font-family:Rubik!important;font-size:30px!important;line-height:1.2!important;font-weight:500!important}body .tdi_133 .td_module_flex_7 .entry-title{font-family:Rubik!important;font-size:17px!important;line-height:1.2!important;font-weight:500!important}body .tdi_133 .td_module_flex_6 .td-editor-date,body .tdi_133 .td_module_flex_6 .td-editor-date .entry-date,body .tdi_133 .td_module_flex_6 .td-module-comments a{font-family:Rubik!important;font-size:13px!important;font-weight:400!important;text-transform:capitalize!important}body .tdi_133 .td_module_flex_7 .td-editor-date,body .tdi_133 .td_module_flex_7 .td-editor-date .entry-date,body .tdi_133 .td_module_flex_7 .td-module-comments a{font-family:Rubik!important;font-size:11px!important;font-weight:400!important;text-transform:capitalize!important}html:not([class*='ie']) body .tdi_133 .entry-thumb:after{background:rgba(221,51,51,0.25)}.tdi_133 .td_module_flex_6.td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_133 .td_module_flex_7.td-module-exclusive .td-module-title a:before{display:inline-block}@media (max-width:767px){.td-big-grid-flex .td_block_inner{margin-left:-20px;margin-right:-20px}}@media (min-width:767px){.td-big-grid-flex-lightsky .td-image-wrap:after{content:'';position:absolute;top:0;left:0;width:160%;height:100%;background:rgba(255,255,255,0.2);transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);-webkit-transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);transition:transform 0.7s ease 0s;-webkit-transition:transform 0.7s ease 0s;z-index:1}.td-big-grid-flex-lightsky .td-module-container:hover .td-image-wrap:after{transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,146%,0);-webkit-transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,146%,0)}}@media (max-width:767px){div.td-big-grid-flex-scroll .td-big-grid-flex-post{float:none}div.td-big-grid-flex-scroll .td-big-grid-flex-scroll-holder{overflow-x:auto;overflow-y:hidden;white-space:nowrap;font-size:0;-webkit-overflow-scrolling:touch}div.td-big-grid-flex-scroll .td-big-grid-flex-scroll-holder .td-big-grid-flex-post{display:inline-block;vertical-align:top}div.td-big-grid-flex-scroll .td-module-title a{white-space:normal}}@media (min-width:1019px) and (max-width:1140px){.td_block_big_grid_flex_2 [class^='td_module_flex_6'] .entry-title{font-size:21px;line-height:28px}}@media (min-width:768px) and (max-width:1018px){.td_block_big_grid_flex_2 [class^='td_module_flex_6'] .entry-title{font-size:16px;line-height:20px}}@media (max-width:767px){.td_block_big_grid_flex_2 [class^='td_module_flex_6'] .entry-title{font-size:22px;line-height:28px}}@media (min-width:1019px) and (max-width:1140px){.td_block_big_grid_flex_2 .td_module_flex_7 .entry-title{font-size:14px;line-height:20px}}@media (min-width:768px) and (max-width:1018px){.td_block_big_grid_flex_2 .td_module_flex_7 .entry-title{font-size:13px;line-height:18px}}@media (min-width:767px){body .tdi_133 .td-big-grid-flex-post{border-width:0 2.5px;border-style:solid;border-color:transparent}body .tdi_133 .td_block_inner{margin-left:-2.5px;margin-right:-2.5px}}@media (min-width:767px){body .tdi_133 .td-big-grid-flex-post-1,body .tdi_133 .td-big-grid-flex-post-2{margin-bottom:5px}}@media (max-width:767px){body .tdi_133 .td-big-grid-flex-post-0{margin-bottom:5px}body .tdi_133 .td-big-grid-flex-scroll-holder .td-big-grid-flex-post{margin-right:5px}body .tdi_133 .td-big-grid-flex-scroll-holder .td-big-grid-flex-post:last-child{margin-right:0}}@media (min-width:1141px){html:not([class*='ie']) body .tdi_133 .entry-thumb:after{content:'';width:100%;height:100%;position:absolute;top:0;left:0;opacity:0;transition:opacity 1s ease;-webkit-transition:opacity 1s ease;mix-blend-mode:color}html:not([class*='ie']) body .tdi_133 .td-module-container:hover .entry-thumb:after{opacity:1}}@media (min-width:1019px) and (max-width:1140px){body .tdi_133 [class^='td_module_flex_6'] .td-image-wrap{padding-bottom:340px}body .tdi_133 .td_module_flex_7 .td-image-wrap{padding-bottom:168px}body .tdi_133 .td_module_flex_6 .td-module-meta-info{padding:20px}body .tdi_133 .td_module_flex_7 .td-module-meta-info{padding:12px}body .tdi_133 .td_module_flex_6 .tdb-module-title-wrap{margin:10px 0 6px}body .tdi_133 .td_module_flex_7 .tdb-module-title-wrap{margin:0px}body .tdi_133 .td_module_flex_7 .td-post-category:not(.td-post-extra-category){display:none}body .tdi_133 .td_module_flex_6 .entry-title{font-size:28px!important}body .tdi_133 .td_module_flex_7 .entry-title{font-size:15px!important}@media (min-width:767px){body .tdi_133 .td-big-grid-flex-post{border-width:0 2px;border-style:solid;border-color:transparent}body .tdi_133 .td_block_inner{margin-left:-2px;margin-right:-2px}}@media (min-width:767px){body .tdi_133 .td-big-grid-flex-post-1,body .tdi_133 .td-big-grid-flex-post-2{margin-bottom:4px}}@media (max-width:767px){body .tdi_133 .td-big-grid-flex-post-0{margin-bottom:4px}body .tdi_133 .td-big-grid-flex-scroll-holder .td-big-grid-flex-post{margin-right:4px}body .tdi_133 .td-big-grid-flex-scroll-holder .td-big-grid-flex-post:last-child{margin-right:0}}}@media (min-width:768px) and (max-width:1018px){body .tdi_133 [class^='td_module_flex_6'] .td-image-wrap{padding-bottom:263px}body .tdi_133 .td_module_flex_7 .td-image-wrap{padding-bottom:130px}body .tdi_133 .td_module_flex_6 .td-module-meta-info{padding:18px 14px}body .tdi_133 .td_module_flex_7 .td-module-meta-info{padding:10px}body .tdi_133 .td_module_flex_6 .tdb-module-title-wrap{margin:8px 0 4px}body .tdi_133 .td_module_flex_7 .tdb-module-title-wrap{margin:0px}body .tdi_133 .td_module_flex_7 .td-post-category:not(.td-post-extra-category){display:none}body .tdi_133 .td_module_flex_6 .entry-title{font-size:20px!important}body .tdi_133 .td_module_flex_7 .entry-title{font-size:13px!important}body .tdi_133 .td_module_flex_6 .td-post-category{font-size:11px!important}body .tdi_133 .td_module_flex_6 .td-editor-date,body .tdi_133 .td_module_flex_6 .td-editor-date .entry-date,body .tdi_133 .td_module_flex_6 .td-module-comments a{font-size:11px!important}@media (min-width:767px){body .tdi_133 .td-big-grid-flex-post{border-width:0 1.5px;border-style:solid;border-color:transparent}body .tdi_133 .td_block_inner{margin-left:-1.5px;margin-right:-1.5px}}@media (min-width:767px){body .tdi_133 .td-big-grid-flex-post-1,body .tdi_133 .td-big-grid-flex-post-2{margin-bottom:3px}}@media (max-width:767px){body .tdi_133 .td-big-grid-flex-post-0{margin-bottom:3px}body .tdi_133 .td-big-grid-flex-scroll-holder .td-big-grid-flex-post{margin-right:3px}body .tdi_133 .td-big-grid-flex-scroll-holder .td-big-grid-flex-post:last-child{margin-right:0}}}@media (max-width:767px){body .tdi_133 [class^='td_module_flex_6'] .td-image-wrap{padding-bottom:260px}body .tdi_133 .td_module_flex_7 .td-image-wrap{padding-bottom:165px}body .tdi_133 .td_module_flex_6{width:100%}body .tdi_133 .td_module_flex_7{width:80%}body .tdi_133 .td_module_flex_6 .td-module-meta-info{padding:18px 14px}body .tdi_133 .td_module_flex_7 .td-module-meta-info{padding:14px}body .tdi_133 .td_module_flex_6 .tdb-module-title-wrap{margin:10px 0 6px}body .tdi_133 .td_module_flex_7 .tdb-module-title-wrap{margin:0px}body .tdi_133 .td_module_flex_7 .td-post-category:not(.td-post-extra-category){display:none}body .tdi_133 .td_module_flex_6 .entry-title{font-size:22px!important}@media (min-width:767px){body .tdi_133 .td-big-grid-flex-post{border-width:0 1.5px;border-style:solid;border-color:transparent}body .tdi_133 .td_block_inner{margin-left:-1.5px;margin-right:-1.5px}}@media (min-width:767px){body .tdi_133 .td-big-grid-flex-post-1,body .tdi_133 .td-big-grid-flex-post-2{margin-bottom:3px}}@media (max-width:767px){body .tdi_133 .td-big-grid-flex-post-0{margin-bottom:3px}body .tdi_133 .td-big-grid-flex-scroll-holder .td-big-grid-flex-post{margin-right:3px}body .tdi_133 .td-big-grid-flex-scroll-holder .td-big-grid-flex-post:last-child{margin-right:0}}}</style><div id=tdi_133 class="td_block_inner">
        <div class="td_module_flex_6 td-animation-stack td-big-grid-flex-post td-big-grid-flex-post-0 td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                <div class="td-image-container">
                    <div class="td-module-thumb"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" class="td-image-wrap " title="How to Think and Act in the Plummeting Stock Market" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-1068x708.jpg"  ></span></a></div>                </div>

                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <div class="tdb-module-title-wrap">
                        <h2 class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" title="How to Think and Act in the Plummeting Stock Market">How to Think and Act in the Plummeting Stock Market</a></h2>                    </div>

                                        
                                            <div class="td-editor-date">
                            <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                    </div>
                                    </div>
            </div>
        </div>

        <div class="td-big-grid-flex-scroll-holder">
        <div class="td_module_flex_7 td-animation-stack td-big-grid-flex-post td-big-grid-flex-post-1 td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                <div class="td-image-container">
                    <div class="td-module-thumb"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" class="td-image-wrap " title="The Real Economy Has Never Been Tested by a Pandemic" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-696x464.jpg"  ></span></a></div>                </div>

                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <div class="tdb-module-title-wrap">
                        <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" title="The Real Economy Has Never Been Tested by a Pandemic">The Real Economy Has Never Been Tested by a Pandemic</a></h3>                    </div>

                                        
                                            <div class="td-editor-date">
                            <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                    </div>
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex_7 td-animation-stack td-big-grid-flex-post td-big-grid-flex-post-2 td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                <div class="td-image-container">
                    <div class="td-module-thumb"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" class="td-image-wrap " title="More and More People Stay Home as Coronavirus Spreads" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-696x464.jpg"  ></span></a></div>                </div>

                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <div class="tdb-module-title-wrap">
                        <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" title="More and More People Stay Home as Coronavirus Spreads">More and More People Stay Home as Coronavirus Spreads</a></h3>                    </div>

                                        
                                            <div class="td-editor-date">
                            <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                    </div>
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex_7 td-animation-stack td-big-grid-flex-post td-big-grid-flex-post-3 td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                <div class="td-image-container">
                    <div class="td-module-thumb"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" class="td-image-wrap " title="Witnessing the Birth of the New Coronavirus Economy" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/79-696x464.jpg"  ></span></a></div>                </div>

                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <div class="tdb-module-title-wrap">
                        <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" title="Witnessing the Birth of the New Coronavirus Economy">Witnessing the Birth of the New Coronavirus Economy</a></h3>                    </div>

                                        
                                            <div class="td-editor-date">
                            <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:49-04:00" >August 30, 2022</time></span>                                                    </div>
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex_7 td-animation-stack td-big-grid-flex-post td-big-grid-flex-post-4 td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                <div class="td-image-container">
                    <div class="td-module-thumb"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" class="td-image-wrap " title="Companies Are Putting Profits Ahead of Public Health" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/80-696x464.jpg"  ></span></a></div>                </div>

                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <div class="tdb-module-title-wrap">
                        <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" title="Companies Are Putting Profits Ahead of Public Health">Companies Are Putting Profits Ahead of Public Health</a></h3>                    </div>

                                        
                                            <div class="td-editor-date">
                            <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:49-04:00" >August 30, 2022</time></span>                                                    </div>
                                    </div>
            </div>
        </div>

        </div></div></div></div></div></div></div><div id="tdi_134" class="tdc-row"><div class="vc_row tdi_135  wpb_row td-pb-row" >
<style scoped>.tdi_135,.tdi_135 .tdc-columns{min-height:0}.tdi_135,.tdi_135 .tdc-columns{display:block}.tdi_135 .tdc-columns{width:100%}.tdi_135:before,.tdi_135:after{display:table}</style><div class="vc_column tdi_137  wpb_column vc_column_container tdc-column td-pb-span8">
<style scoped>.tdi_137{vertical-align:baseline}.tdi_137>.wpb_wrapper,.tdi_137>.wpb_wrapper>.tdc-elements{display:block}.tdi_137>.wpb_wrapper>.tdc-elements{width:100%}.tdi_137>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_137>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="td_block_wrap td_flex_block_3 tdi_138 td-pb-border-top td_block_template_8 td_ajax_preloading_preload td_flex_block"  data-td-block-uid="tdi_138" >
<style>.td_block_template_8.widget>ul>li{margin-left:0!important}.td_block_template_8 .td-block-title{font-size:20px;font-weight:800;margin-top:0;margin-bottom:18px;line-height:29px;position:relative;overflow:hidden;text-align:left}.td_block_template_8 .td-block-title>*{position:relative;padding-right:20px;color:var(--td_text_header_color,#000)}.td_block_template_8 .td-block-title>*:before,.td_block_template_8 .td-block-title>*:after{content:'';display:block;height:4px;position:absolute;top:50%;margin-top:-2px;width:2000px;background-color:#f5f5f5}.td_block_template_8 .td-block-title>*:before{left:100%}.td_block_template_8 .td-block-title>*:after{right:100%}@media (max-width:767px){.td_block_template_8 .td-related-title a{font-size:15px}}.td_block_template_8 .td-related-title a:before{display:none}.td_block_template_8 .td-related-title a:first-child:after{display:none}.td_block_template_8 .td-related-title a:last-child:after{left:100%;right:auto}.td_block_template_8 .td-related-title .td-cur-simple-item{color:var(--td_theme_color,#4db2ec)}.tdi_138 .td-block-title>*:before,.tdi_138 .td-block-title>*:after{background-color:#85a1b2!important}@media (max-width:767px){.tdi_138{margin-bottom:40px!important}}</style>
<style>.tdi_138 .td_module_flex_1{width:50%;float:left;padding-bottom:0px;margin-bottom:0px}.rtl .tdi_138 .td_module_flex_1{float:right}.tdi_138 .td_module_column{width:50%;float:left}.tdi_138 .td_module_flex_3{width:100%;float:left;padding-bottom:12px;margin-bottom:12px}.tdi_138 .td_module_wrap{padding-left:12px;padding-right:12px}.tdi_138 .td_block_inner{margin-left:-12px;margin-right:-12px}.tdi_138 .td_module_flex_1 .td-module-container:before{bottom:-0px;border-width:0 0 1px 0;border-style:none;border-color:#eaeaea;border-color:#eaeaea}.tdi_138 .td_module_flex_3 .td-module-container:before{bottom:-12px;border-width:0 0 1px 0;border-style:none;border-color:#eaeaea;border-color:#eaeaea}.tdi_138 .td_module_column:last-child .td_module_flex_3:last-child{margin-bottom:0!important;padding-bottom:0!important}.tdi_138 .td_module_flex_3:last-child .td-module-container:before{display:none}.tdi_138 .td_module_flex_3:nth-last-child(2){margin-bottom:12px!important;padding-bottom:12px!important}.tdi_138 .td_module_flex_3:nth-last-child(2) .td-module-container:before{display:block}.tdi_138 .td_module_flex_1 .td-module-container{border-color:#eaeaea;flex-direction:column}.tdi_138 .td_module_flex_3 .td-module-container{border-color:#eaeaea;align-items:center}.tdi_138 .td_module_flex_1 .entry-thumb{background-position:center 50%}.tdi_138 .td_module_flex_3 .entry-thumb{background-position:center 50%}.tdi_138 .td_module_flex_3 .td-image-container{flex:0 0 30%;width:30%}.tdi_138 .td_module_flex_1 .td-image-wrap{padding-bottom:66%}.ie10 .tdi_138 .td_module_flex_1 .td-image-container,.ie11 .tdi_138 .td_module_flex_1 .td-image-container{flex:0 0 auto}.tdi_138 .td_module_flex_3 .td-image-wrap{padding-bottom:75%}.ie10 .tdi_138 .td_module_flex_3 .td-image-container,.ie11 .tdi_138 .td_module_flex_3 .td-image-container{flex:0 0 auto}.tdi_138 .td_module_flex_3 .td-video-play-ico{width:20px;height:20px;font-size:20px}.tdi_138 .td_module_flex_1 .td-post-vid-time{display:block}.tdi_138 .td_module_flex_3 .td-post-vid-time{display:block}.tdi_138 .td_module_flex_1 .td-category-pos-image .td-post-category:not(.td-post-extra-category){top:auto;bottom:0}.tdi_138 .td_module_flex_1 .td-module-meta-info{padding:15px 0 0 0}.tdi_138 .td_module_flex_3 .td-module-meta-info{padding:0 0 0 15px}.tdi_138 .td_module_flex_1 .entry-title{margin:10px 0;font-family:Rubik!important;font-size:21px!important;line-height:1.2!important;font-weight:500!important}.tdi_138 .td_module_flex_1 .td-excerpt{margin:12px 0 0 0;display:block;font-family:Rubik!important;font-size:13px!important;line-height:1.6!important}.tdi_138 .td_module_flex_1 .td-audio-player{font-size:13px;opacity:1;visibility:visible;height:auto}.tdi_138 .td_module_flex_3 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_138 .td_module_flex_1 .td-post-category{padding:0px;font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_138 .td_module_flex_3 .td-post-category{padding:0px;font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_138 .td_module_flex_1 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_138 .td_module_flex_3 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_138 .td_module_flex_1 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_138 .td_module_flex_3 .td-post-category:not(.td-post-extra-category){display:none}.tdi_138 .td_module_flex_1 .td-author-date{display:inline}.tdi_138 .td_module_flex_3 .td-author-date{display:inline}.tdi_138 .td_module_flex_1 .td-post-author-name{display:inline-block}.tdi_138 .td_module_flex_3 .td-post-author-name{display:none}.tdi_138 .td_module_flex_1 .td-post-date,.tdi_138 .td_module_flex_1 .td-post-author-name span{display:inline-block}.tdi_138 .td_module_flex_3 .td-post-date,.tdi_138 .td_module_flex_3 .td-post-author-name span{display:inline-block}.tdi_138 .td_module_flex_1 .entry-review-stars{display:inline-block}.tdi_138 .td_module_flex_1 .td-icon-star,.tdi_138 .td_module_flex_1 .td-icon-star-empty,.tdi_138 .td_module_flex_1 .td-icon-star-half{font-size:15px}.tdi_138 .td_module_flex_3 .entry-review-stars{display:inline-block}.tdi_138 .td_module_flex_3 .td-icon-star,.tdi_138 .td_module_flex_3 .td-icon-star-empty,.tdi_138 .td_module_flex_3 .td-icon-star-half{font-size:15px}.tdi_138 .td_module_flex_1 .td-module-comments{display:none}.tdi_138 .td_module_flex_3 .td-module-comments{display:none}body .tdi_138 .td_module_flex_1 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}body .tdi_138 .td_module_flex_3 .td-favorite{font-size:36px}.tdi_138 .td-post-category{background-color:rgba(255,255,255,0);color:#000000}.tdi_138 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#85a1b2}.tdi_138 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_138 .td_module_wrap:hover .td-module-title a{color:#85a1b2!important}.tdi_138 .td-post-author-name a{color:#000000}.tdi_138 .td-post-author-name:hover a{color:#85a1b2}body .tdi_138 .td_module_flex_3 .td-favorite{box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_138 .td_module_flex_1.td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_138 .td_module_flex_3.td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_138 .td-block-title a,.tdi_138 .td-block-title span{font-family:Rubik!important;font-size:17px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_138 .td-subcat-list a,.tdi_138 .td-subcat-dropdown span,.tdi_138 .td-subcat-dropdown a{font-family:Rubik!important}.tdi_138 .td_module_flex_1 .td-editor-date,.tdi_138 .td_module_flex_1 .td-editor-date .td-post-author-name a,.tdi_138 .td_module_flex_1 .td-editor-date .entry-date,.tdi_138 .td_module_flex_1 .td-module-comments a{font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:capitalize!important}.tdi_138 .td_module_flex_3 .entry-title{font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_138 .td_module_flex_3 .td-editor-date,.tdi_138 .td_module_flex_3 .td-editor-date .td-post-author-name a,.tdi_138 .td_module_flex_3 .td-editor-date .entry-date,.tdi_138 .td_module_flex_3 .td-module-comments a{font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:400!important;text-transform:capitalize!important}html:not([class*='ie']) .tdi_138 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_138 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_138 .td_module_wrap{padding-left:10px;padding-right:10px}.tdi_138 .td_block_inner{margin-left:-10px;margin-right:-10px}.tdi_138 .td_module_flex_3{padding-bottom:10px;margin-bottom:10px}.tdi_138 .td_module_flex_3 .td-module-container:before{bottom:-10px}.tdi_138 .td_module_column:last-child .td_module_flex_3:last-child{margin-bottom:0!important;padding-bottom:0!important}.tdi_138 .td_module_flex_3:last-child .td-module-container:before{display:none}.tdi_138 .td_module_flex_3:nth-last-child(2){margin-bottom:10px!important;padding-bottom:10px!important}.tdi_138 .td_module_flex_3:nth-last-child(2) .td-module-container:before{display:block}.tdi_138 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_138 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_138 .td_module_wrap{padding-left:7.5px;padding-right:7.5px}.tdi_138 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px}.tdi_138 .td_module_flex_3{padding-bottom:7.5px;margin-bottom:7.5px}.tdi_138 .td_module_flex_3 .td-module-container:before{bottom:-7.5px}.tdi_138 .td_module_column:last-child .td_module_flex_3:last-child{margin-bottom:0!important;padding-bottom:0!important}.tdi_138 .td_module_flex_3:last-child .td-module-container:before{display:none}.tdi_138 .td_module_flex_3:nth-last-child(2){margin-bottom:7.5px!important;padding-bottom:7.5px!important}.tdi_138 .td_module_flex_3:nth-last-child(2) .td-module-container:before{display:block}.tdi_138 .td_module_flex_3 .td-image-container{flex:0 0 35%;width:35%}.tdi_138 .td_module_flex_1 .td-module-meta-info{padding:12px 0 0 0}.tdi_138 .td_module_flex_3 .td-module-meta-info{padding:0 0 0 12px}.tdi_138 .td_module_flex_1 .entry-title{margin:8px 0;font-size:17px!important}.tdi_138 .td_module_flex_3 .entry-title{margin:0 0 4px;font-size:11px!important}.tdi_138 .td_module_flex_1 .td-excerpt{margin:8px 0 0 0;font-size:11px!important}.tdi_138 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_138 .td-block-title a,.tdi_138 .td-block-title span{font-size:15px!important}.tdi_138 .td_module_flex_1 .td-post-category{font-size:11px!important}.tdi_138 .td_module_flex_1 .td-editor-date,.tdi_138 .td_module_flex_1 .td-editor-date .td-post-author-name a,.tdi_138 .td_module_flex_1 .td-editor-date .entry-date,.tdi_138 .td_module_flex_1 .td-module-comments a{font-size:11px!important}.tdi_138 .td_module_flex_3 .td-post-category{font-size:10px!important}.tdi_138 .td_module_flex_3 .td-editor-date,.tdi_138 .td_module_flex_3 .td-editor-date .td-post-author-name a,.tdi_138 .td_module_flex_3 .td-editor-date .entry-date,.tdi_138 .td_module_flex_3 .td-module-comments a{font-size:10px!important}@media (min-width:768px){.tdi_138 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_138 .td_module_flex_1{width:100%;float:left;padding-bottom:12px;margin-bottom:12px}.rtl .tdi_138 .td_module_flex_1{float:right}.tdi_138 .td_module_column{width:100%;float:left}.tdi_138 .td_module_flex_1 .td-module-container:before{bottom:-12px}.tdi_138 .td_module_flex_3{padding-bottom:10px;margin-bottom:10px}.tdi_138 .td_module_flex_3 .td-module-container:before{bottom:-10px}.tdi_138 .td_module_column:last-child .td_module_flex_3:last-child{margin-bottom:0!important;padding-bottom:0!important}.tdi_138 .td_module_flex_3:last-child .td-module-container:before{display:none}.tdi_138 .td_module_flex_3:nth-last-child(2){margin-bottom:10px!important;padding-bottom:10px!important}.tdi_138 .td_module_flex_3:nth-last-child(2) .td-module-container:before{display:block}.tdi_138 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_138 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_138 = new tdBlock();
block_tdi_138.id = "tdi_138";
block_tdi_138.atts = '{"modules_category":"above","modules_on_row":"eyJhbGwiOiI1MCUiLCJsYW5kc2NhcGUiOiIxMDAlIn0=","modules_category1":"image","show_cat2":"none","show_com2":"none","show_author2":"none","columns":"eyJhbGwiOiI1MCUiLCJwaG9uZSI6IjEwMCUifQ==","columns_gap":"eyJwb3J0cmFpdCI6IjE1IiwiYWxsIjoiMjQiLCJsYW5kc2NhcGUiOiIyMCJ9","image_width2":"eyJwb3J0cmFpdCI6IjM1In0=","modules_space1":"eyJhbGwiOiIwIiwicGhvbmUiOiIyNCJ9","hide_audio":"yes","custom_title":"Global News","block_template_id":"td_block_template_8","border_color":"#85a1b2","f_header_font_family":"712","f_header_font_weight":"500","f_header_font_size":"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTUifQ==","f_header_font_transform":"uppercase","td_ajax_filter_type":"","category_id":"","offset":"1","td_ajax_filter_ids":"","td_ajax_preloading":"preload","f_ajax_font_family":"712","f_title1_font_family":"712","f_title1_font_weight":"500","f_title1_font_size":"eyJhbGwiOiIyMSIsInBvcnRyYWl0IjoiMTcifQ==","f_title1_font_line_height":"1.2","show_com1":"none","image_height1":"66","modules_category_padding1":"0","meta_padding1":"eyJhbGwiOiIxNXB4IDAgMCAwIiwicG9ydHJhaXQiOiIxMnB4IDAgMCAwIn0=","art_title1":"eyJhbGwiOiIxMHB4IDAiLCJwb3J0cmFpdCI6IjhweCAwIn0=","art_excerpt1":"eyJhbGwiOiIxMnB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","f_title2_font_family":"712","f_title2_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title2_font_weight":"500","f_title2_font_line_height":"1.2","f_cat1_font_family":"712","f_meta1_font_family":"712","f_ex1_font_family":"712","f_cat2_font_family":"712","f_meta2_font_family":"712","f_cat1_font_weight":"400","f_cat1_font_transform":"uppercase","f_cat2_font_transform":"uppercase","f_cat2_font_weight":"400","f_ex1_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_ex1_font_line_height":"1.6","f_meta1_font_weight":"400","f_meta1_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat1_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_meta1_font_line_height":"1","f_cat1_font_line_height":"1","f_cat2_font_line_height":"1","f_meta2_font_line_height":"1","f_meta2_font_weight":"400","f_meta2_font_size":"eyJhbGwiOiIxMSIsInBvcnRyYWl0IjoiMTAifQ==","f_cat2_font_size":"eyJhbGwiOiIxMSIsInBvcnRyYWl0IjoiMTAifQ==","f_meta2_font_transform":"capitalize","f_meta1_font_transform":"capitalize","image_height2":"75","meta_info_align2":"center","meta_padding2":"eyJhbGwiOiIwIDAgMCAxNXB4IiwicG9ydHJhaXQiOiIwIDAgMCAxMnB4In0=","modules_category_padding2":"0","title_txt_hover":"#85a1b2","title_txt":"#000000","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#85a1b2","author_txt":"#000000","author_txt_hover":"#85a1b2","modules_space2":"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMTUiLCJwaG9uZSI6IjIwIiwibGFuZHNjYXBlIjoiMjAifQ==","art_title2":"eyJwb3J0cmFpdCI6IjAgMCA0cHgifQ==","tdc_css":"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==","block_type":"td_flex_block_3","separator":"","custom_url":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","mc3_tl":"","mc3_title_tag":"","post_ids":"","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","sort":"","popular_by_date":"","linked_posts":"","favourite_only":"","locked_only":"","limit":"5","open_in_new_window":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_source":"","el_class":"","td_query_cache":"","td_query_cache_expiration":"","td_filter_default_txt":"All","h_effect":"","modules_border_size1":"","modules_border_style1":"","modules_border_color1":"#eaeaea","modules_divider1":"","modules_divider_color1":"#eaeaea","image_size":"","image_alignment1":"50","image_radius1":"","hide_image":"","show_favourites":"","fav_size":"2","fav_space":"","fav_ico_color":"","fav_ico_color_h":"","fav_bg":"","fav_bg_h":"","fav_shadow_shadow_header":"","fav_shadow_shadow_title":"Shadow","fav_shadow_shadow_size":"","fav_shadow_shadow_offset_horizontal":"","fav_shadow_shadow_offset_vertical":"","fav_shadow_shadow_spread":"","fav_shadow_shadow_color":"","video_icon1":"","video_popup":"yes","video_rec":"","spot_header":"","video_rec_title":"","video_rec_color":"","video_rec_disable":"","autoplay_vid":"yes","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","video_title_color":"","video_title_color_h":"","video_bg":"","video_overlay":"","vid_t_color":"","vid_t_bg_color":"","f_vid_title_font_header":"","f_vid_title_font_title":"Video pop-up article title","f_vid_title_font_settings":"","f_vid_title_font_family":"","f_vid_title_font_size":"","f_vid_title_font_line_height":"","f_vid_title_font_style":"","f_vid_title_font_weight":"","f_vid_title_font_transform":"","f_vid_title_font_spacing":"","f_vid_title_":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show_1":"inline-block","excl_txt_1":"","excl_margin_1":"","excl_padd_1":"","all_excl_border_1":"","all_excl_border_style_1":"solid","excl_radius_1":"","excl_color_1":"","excl_color_h_1":"","excl_bg_1":"","excl_bg_h_1":"","all_excl_border_color_1":"","excl_border_color_h_1":"","f_excl_1_font_header":"","f_excl_1_font_title":"Label text","f_excl_1_font_settings":"","f_excl_1_font_family":"","f_excl_1_font_size":"","f_excl_1_font_line_height":"","f_excl_1_font_style":"","f_excl_1_font_weight":"","f_excl_1_font_transform":"","f_excl_1_font_spacing":"","f_excl_1_":"","meta_info_align1":"","meta_info_horiz1":"content-horiz-left","meta_width1":"","meta_margin1":"","meta_info_border_radius1":"","modules_category_margin1":"","modules_cat_border1":"","modules_category_radius1":"0","show_cat1":"inline-block","modules_extra_cat1":"","show_author1":"inline-block","author_photo":"","author_photo_size1":"","author_photo_space1":"","author_photo_radius1":"","show_date1":"inline-block","show_review1":"inline-block","review_space1":"","review_size1":"2.5","review_distance1":"","show_excerpt1":"block","excerpt_middle":"","show_audio1":"block","art_audio1":"","art_audio_size1":"1.5","modules_border_size2":"","modules_border_style2":"","modules_border_color2":"#eaeaea","modules_divider2":"","modules_divider_color2":"#eaeaea","image_size2":"","image_alignment2":"50","image_radius2":"","hide_image2":"","show_favourites2":"","fav_size2":"2","fav_space2":"","fav_ico_color2":"","fav_ico_color_h2":"","fav_bg2":"","fav_bg_h2":"","fav_shadow2_shadow_header":"","fav_shadow2_shadow_title":"Shadow","fav_shadow2_shadow_size":"","fav_shadow2_shadow_offset_horizontal":"","fav_shadow2_shadow_offset_vertical":"","fav_shadow2_shadow_spread":"","fav_shadow2_shadow_color":"","video_icon2":"","video_popup2":"yes","video_rec2":"","video_rec_title2":"","video_rec_color2":"","autoplay_vid2":"yes","show_vid_t2":"block","vid_t_margin2":"","vid_t_padding2":"","excl_show_2":"inline-block","excl_txt_2":"","excl_margin_2":"","excl_padd_2":"","all_excl_border_2":"","all_excl_border_style_2":"solid","excl_radius_2":"","excl_color_2":"","excl_color_h_2":"","excl_bg_2":"","excl_bg_h_2":"","all_excl_border_color_2":"","excl_border_color_h_2":"","f_excl_2_font_header":"","f_excl_2_font_title":"Label text","f_excl_2_font_settings":"","f_excl_2_font_family":"","f_excl_2_font_size":"","f_excl_2_font_line_height":"","f_excl_2_font_style":"","f_excl_2_font_weight":"","f_excl_2_font_transform":"","f_excl_2_font_spacing":"","f_excl_2_":"","meta_info_horiz2":"content-horiz-left","meta_width2":"","meta_margin2":"","meta_info_border_radius2":"","modules_category2":"","modules_category_margin2":"","modules_cat_border2":"","modules_category_radius2":"0","modules_extra_cat2":"","author_photo2":"","author_photo_size2":"","author_photo_space2":"","author_photo_radius2":"","show_date2":"inline-block","show_review2":"inline-block","review_space2":"","review_size2":"2.5","review_distance2":"","show_audio2":"block","hide_audio2":"","art_audio2":"","art_audio_size2":"1","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","pag_icons_size":"","f_header_font_header":"","f_header_font_title":"Block header","f_header_font_settings":"","f_header_font_line_height":"","f_header_font_style":"","f_header_font_spacing":"","f_header_":"","f_ajax_font_title":"Ajax categories","f_ajax_font_settings":"","f_ajax_font_size":"","f_ajax_font_line_height":"","f_ajax_font_style":"","f_ajax_font_weight":"","f_ajax_font_transform":"","f_ajax_font_spacing":"","f_ajax_":"","f_more_font_title":"Load more button","f_more_font_settings":"","f_more_font_family":"","f_more_font_size":"","f_more_font_line_height":"","f_more_font_style":"","f_more_font_weight":"","f_more_font_transform":"","f_more_font_spacing":"","f_more_":"","f_title1_font_header":"","f_title1_font_title":"Article title 1","f_title1_font_settings":"","f_title1_font_style":"","f_title1_font_transform":"","f_title1_font_spacing":"","f_title1_":"","f_cat1_font_title":"Article category tag 1","f_cat1_font_settings":"","f_cat1_font_style":"","f_cat1_font_spacing":"","f_cat1_":"","f_meta1_font_title":"Article meta info 1","f_meta1_font_settings":"","f_meta1_font_style":"","f_meta1_font_spacing":"","f_meta1_":"","f_ex1_font_title":"Article excerpt 1","f_ex1_font_settings":"","f_ex1_font_style":"","f_ex1_font_weight":"","f_ex1_font_transform":"","f_ex1_font_spacing":"","f_ex1_":"","f_title2_font_title":"Article title 2","f_title2_font_settings":"","f_title2_font_style":"","f_title2_font_transform":"","f_title2_font_spacing":"","f_title2_":"","f_cat2_font_title":"Article category tag 2","f_cat2_font_settings":"","f_cat2_font_style":"","f_cat2_font_spacing":"","f_cat2_":"","f_meta2_font_title":"Article meta info 2","f_meta2_font_settings":"","f_meta2_font_style":"","f_meta2_font_spacing":"","f_meta2_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","meta_bg":"","all_underline_height1":"","all_underline_height2":"","all_underline_color":"#000","cat_style":"","cat_border":"","cat_border_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_h_bg":"","pag_border":"","pag_h_border":"","btn_title":"","ajax_pagination":"","ajax_pagination_next_prev_swipe":"","ajax_pagination_infinite_stop":"","css":"","td_column_number":2,"header_color":"","color_preset":"","border_top":"","class":"tdi_138","tdc_css_class":"tdi_138","tdc_css_class_style":"tdi_138_rand_style"}';
block_tdi_138.td_column_number = "2";
block_tdi_138.block_type = "td_flex_block_3";
block_tdi_138.post_count = "5";
block_tdi_138.found_posts = "85";
block_tdi_138.header_color = "";
block_tdi_138.ajax_pagination_infinite_stop = "";
block_tdi_138.max_num_pages = "17";
tdBlocksArray.push(block_tdi_138);
</script><div class="td-block-title-wrap"><h4 class="td-block-title"><span>Global News</span></h4></div><div id=tdi_138 class="td_block_inner td-mc1-wrap">
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" class="td-image-wrap " title="The Real Economy Has Never Been Tested by a Pandemic" ><span class="entry-thumb td-thumb-css " style="background-image: url('https://www.reviewboard.com/wp-content/uploads/2022/08/77-696x464.jpg')" ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" title="The Real Economy Has Never Been Tested by a Pandemic">The Real Economy Has Never Been Tested by a Pandemic</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    <div class="td-excerpt">People live better in big houses and in big clothes. I try to contrast; life today is full of contrast. We have to change!...</div>
                    
                                    </div>
            </div>
        </div>

        <div class="td_module_column">
        <div class="td_module_flex td_module_flex_3 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" class="td-image-wrap " title="More and More People Stay Home as Coronavirus Spreads" ><span class="entry-thumb td-thumb-css " style="background-image: url('https://www.reviewboard.com/wp-content/uploads/2022/08/78-218x150.jpg')" ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" title="More and More People Stay Home as Coronavirus Spreads">More and More People Stay Home as Coronavirus Spreads</a></h3>
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                                                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_3 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" class="td-image-wrap " title="Witnessing the Birth of the New Coronavirus Economy" ><span class="entry-thumb td-thumb-css " style="background-image: url('https://www.reviewboard.com/wp-content/uploads/2022/08/79-218x150.jpg')" ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" title="Witnessing the Birth of the New Coronavirus Economy">Witnessing the Birth of the New Coronavirus Economy</a></h3>
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                                                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:49-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_3 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" class="td-image-wrap " title="Companies Are Putting Profits Ahead of Public Health" ><span class="entry-thumb td-thumb-css " style="background-image: url('https://www.reviewboard.com/wp-content/uploads/2022/08/80-218x150.jpg')" ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" title="Companies Are Putting Profits Ahead of Public Health">Companies Are Putting Profits Ahead of Public Health</a></h3>
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                                                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:49-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_3 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/duos-epic-win-will-be-commemorated-with-yacht-photoshoot/"  rel="bookmark" class="td-image-wrap " title="Duo&#8217;s Epic Win Will Be Commemorated with Yacht Photoshoot" ><span class="entry-thumb td-thumb-css " style="background-image: url('https://www.reviewboard.com/wp-content/uploads/2022/08/81-218x150.jpg')" ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/duos-epic-win-will-be-commemorated-with-yacht-photoshoot/"  rel="bookmark" title="Duo&#8217;s Epic Win Will Be Commemorated with Yacht Photoshoot">Duo&#8217;s Epic Win Will Be Commemorated with Yacht Photoshoot</a></h3>
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                                                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:49-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                                    </div>
            </div>
        </div>

        </div></div></div><div class="td_block_wrap td_flex_block_4 tdi_139 td_with_ajax_pagination td-pb-border-top td_block_template_8 td_flex_block"  data-td-block-uid="tdi_139" >
<style>.tdi_139 .td-block-title>*:before,.tdi_139 .td-block-title>*:after{background-color:#85c442!important}@media (max-width:767px){.tdi_139{margin-bottom:40px!important}}</style>
<style>.tdi_139 .td_module_wrap{padding-left:2.5px;padding-right:2.5px}.tdi_139 .td_block_inner{margin-left:-2.5px;margin-right:-2.5px}.tdi_139 .td_module_flex_1{padding-bottom:0px;margin-bottom:0px}.tdi_139 .td_module_flex_1 .td-module-container:before{bottom:-0px;border-width:0 0 1px 0;border-style:none;border-color:#eaeaea;border-color:#eaeaea}.tdi_139 .td_module_flex_4{padding-bottom:13px;margin-bottom:13px}.tdi_139 .td_module_flex_4 .td-module-container:before{bottom:-13px;border-width:0 0 1px 0;border-style:none;border-color:#eaeaea;border-color:#eaeaea}.tdi_139 .td_module_wrap:last-child{margin-bottom:0!important;padding-bottom:0!important}.tdi_139 .td_module_wrap:last-child .td-module-container:before{display:none}.tdi_139 .td_module_flex_1 .td-module-container{border-color:#eaeaea}.tdi_139 .td_module_flex_4 .td-module-container{border-color:#eaeaea}.tdi_139 .td_module_flex_1 .entry-thumb{background-position:center 50%}.tdi_139 .td_module_flex_4 .entry-thumb{background-position:center 50%}.tdi_139 .td_module_flex_4 .td-image-container{flex:0 0 30%;width:30%;display:block;order:0}.tdi_139 .td_module_flex_1 .td-image-wrap{padding-bottom:120%}.ie10 .tdi_139 .td_module_flex_1 .td-image-container,.ie11 .tdi_139 .td_module_flex_1 .td-image-container{flex:0 0 auto}.ie10 .tdi_139 .td_module_flex_4 .td-module-meta-info,.ie11 .tdi_139 .td_module_flex_4 .td-module-meta-info{flex:1}body .tdi_139 .td_module_flex_1 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}body .tdi_139 .td_module_flex_4 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_139 .td_module_flex_4 .td-video-play-ico{width:20px;height:20px;font-size:20px}.tdi_139 .td_module_flex_1 .td-video-play-ico{top:50%;left:50%;transform:translate(-50%,-50%)}.tdi_139 .td_module_flex_1 .td-post-vid-time{display:block}.tdi_139 .td_module_flex_4 .td-post-vid-time{display:block}.tdi_139 .td_module_flex_1 .td-module-meta-info{position:absolute;bottom:0;left:0;width:100%;text-align:center;padding:15px 10px}.tdi_139 .td_module_flex_1 .td-category-pos-image .td-post-category:not(.td-post-extra-category){top:auto;bottom:0;left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_139 .td_module_flex_1 .td-image-container{margin-left:auto;margin-right:auto}.tdi_139.td-h-effect-up-shadow .td_module_flex_1:hover .td-category-pos-image .td-post-category{transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_139 .td_module_flex_1 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_139 .td_module_flex_1 .td-audio-player{font-size:13px;opacity:1;visibility:visible;height:auto}.tdi_139 .td_module_flex_4 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_139 .td_module_flex_1 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#ffffff;font-family:Rubik!important;font-size:11px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_139 .td_module_flex_1 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_139 .td_module_flex_4 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_139 .td_module_flex_1 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_139 .td_module_flex_4 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_139 .td_module_flex_1 .td-excerpt{display:none}.tdi_139 .td_module_flex_4 .td-excerpt{display:none}.tdi_139 .td_module_flex_1 .td-author-date{display:none}.tdi_139 .td_module_flex_4 .td-author-date{display:none}.tdi_139 .td_module_flex_1 .td-post-author-name{display:none}.tdi_139 .td_module_flex_4 .td-post-author-name{display:none}.tdi_139 .td_module_flex_1 .td-post-date,.tdi_139 .td_module_flex_1 .td-post-author-name span{display:none}.tdi_139 .td_module_flex_4 .td-post-date,.tdi_139 .td_module_flex_4 .td-post-author-name span{display:none}.tdi_139 .td_module_flex_1 .entry-review-stars{display:none}.tdi_139 .td_module_flex_1 .td-icon-star,.tdi_139 .td_module_flex_1 .td-icon-star-empty,.tdi_139 .td_module_flex_1 .td-icon-star-half{font-size:15px}.tdi_139 .td_module_flex_4 .entry-review-stars{display:none}.tdi_139 .td_module_flex_4 .td-icon-star,.tdi_139 .td_module_flex_4 .td-icon-star-empty,.tdi_139 .td_module_flex_4 .td-icon-star-half{font-size:15px}.tdi_139 .td_module_flex_1 .td-module-comments{display:none}.tdi_139 .td_module_flex_4 .td-module-comments{display:none}.tdi_139 .td_module_flex_1 .td-module-thumb a:after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:-webkit-linear-gradient(0deg,rgba(0,0,0,0.7),rgba(0,0,0,0.3) 35%,rgba(0,0,0,0) 50%,rgba(0,0,0,0));background:linear-gradient(0deg,rgba(0,0,0,0.7),rgba(0,0,0,0.3) 35%,rgba(0,0,0,0) 50%,rgba(0,0,0,0))}.tdi_139 .td_module_flex_1 .td-module-title a{color:#ffffff}.tdi_139 .td_module_flex_1 .td-post-category:hover{background-color:rgba(255,255,255,0)!important}.tdi_139 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_139 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_139.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_139 .td-load-more-wrap a:hover{background-color:#85c442!important;border-color:#85c442!important;border-color:#85c442!important}.tdi_139 .td_module_flex_1.td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_139 .td_module_flex_4.td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_139 .td-block-title a,.tdi_139 .td-block-title span{font-family:Rubik!important;font-size:17px!important;font-weight:500!important;text-transform:uppercase!important}html:not([class*='ie']) .tdi_139 .entry-thumb:after{background:rgba(112,204,63,0.3)}@media (min-width:767px){.tdi_139 .td_module_wrap{width:33.33333333%;float:left}.rtl .tdi_139 .td_module_wrap{float:right}}@media (min-width:767px){.tdi_139 .td_module_wrap:nth-child(3n+1){clear:both}}@media (min-width:767px){.tdi_139 .td_module_wrap:nth-last-child(-n+3){margin-bottom:0!important;padding-bottom:0!important}.tdi_139 .td_module_wrap:nth-last-child(-n+3) .td-module-container:before{display:none}}@media (min-width:1141px){html:not([class*='ie']) .tdi_139 .entry-thumb:after{content:'';width:100%;height:100%;position:absolute;top:0;left:0;opacity:0;transition:opacity 1s ease;-webkit-transition:opacity 1s ease;mix-blend-mode:color}html:not([class*='ie']) .tdi_139 .td-module-container:hover .entry-thumb:after{opacity:1}}@media (min-width:1019px) and (max-width:1140px){.tdi_139 .td_module_wrap{padding-left:2px;padding-right:2px}.tdi_139 .td_block_inner{margin-left:-2px;margin-right:-2px}.tdi_139 .td_module_flex_1 .td-module-meta-info{padding:12px 8px}.tdi_139 .td_module_flex_1 .entry-title{margin:8px 0 0 0}.tdi_139 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_139 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}}@media (min-width:768px) and (max-width:1018px){.tdi_139 .td_module_wrap{padding-left:1.5px;padding-right:1.5px}.tdi_139 .td_block_inner{margin-left:-1.5px;margin-right:-1.5px}.tdi_139 .td_module_flex_1 .td-module-meta-info{padding:10px 5px}.tdi_139 .td_module_flex_1 .entry-title{margin:6px 0 0 0;font-size:11px!important}.tdi_139 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_139 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_139 .td-block-title a,.tdi_139 .td-block-title span{font-size:15px!important}}@media (max-width:767px){.tdi_139 .td_module_wrap{padding-left:0px;padding-right:0px}.tdi_139 .td_block_inner{margin-left:-0px;margin-right:-0px}.tdi_139 .td_module_flex_1{padding-bottom:1.5px;margin-bottom:1.5px}.tdi_139 .td_module_flex_1 .td-module-container:before{bottom:-1.5px}.tdi_139 .td_module_flex_1 .td-image-wrap{padding-bottom:110%}.ie10 .tdi_139 .td_module_flex_1 .td-image-container,.ie11 .tdi_139 .td_module_flex_1 .td-image-container{flex:0 0 auto}.tdi_139 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_139 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_139 .td_module_flex_1 .entry-title{font-size:17px!important}.tdi_139 .td_module_flex_1 .td-post-category{font-size:13px!important}}</style><script>var block_tdi_139 = new tdBlock();
block_tdi_139.id = "tdi_139";
block_tdi_139.atts = '{"image_align":"center","meta_info_align":"bottom","color_overlay":"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjcpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjMpIiwicGVyY2VudGFnZSI6MzV9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NTB9XSwiY3NzIjoiYmFja2dyb3VuZDogLXdlYmtpdC1saW5lYXItZ3JhZGllbnQoMGRlZyxyZ2JhKDAsMCwwLDAuNykscmdiYSgwLDAsMCwwLjMpIDM1JSxyZ2JhKDAsMCwwLDApIDUwJSxyZ2JhKDAsMCwwLDApKTtiYWNrZ3JvdW5kOiBsaW5lYXItZ3JhZGllbnQoMGRlZyxyZ2JhKDAsMCwwLDAuNykscmdiYSgwLDAsMCwwLjMpIDM1JSxyZ2JhKDAsMCwwLDApIDUwJSxyZ2JhKDAsMCwwLDApKTsiLCJjc3NQYXJhbXMiOiIwZGVnLHJnYmEoMCwwLDAsMC43KSxyZ2JhKDAsMCwwLDAuMykgMzUlLHJnYmEoMCwwLDAsMCkgNTAlLHJnYmEoMCwwLDAsMCkifQ==","image_margin":"0","modules_on_row":"33.33333333%","columns":"33.33333333%","meta_info_align1":"image","limit":"3","modules_category":"above","show_author2":"none","show_date2":"none","show_review2":"none","show_com2":"none","show_excerpt2":"none","show_excerpt1":"none","show_com1":"none","show_review1":"none","show_date1":"none","show_author1":"none","meta_info_horiz1":"content-horiz-center","modules_space1":"eyJhbGwiOiIwIiwicGhvbmUiOiIzIn0=","columns_gap":"eyJhbGwiOiI1IiwicG9ydHJhaXQiOiIzIiwibGFuZHNjYXBlIjoiNCIsInBob25lIjoiMCJ9","image_height1":"eyJhbGwiOiIxMjAiLCJwaG9uZSI6IjExMCJ9","meta_padding1":"eyJhbGwiOiIxNXB4IDEwcHgiLCJwb3J0cmFpdCI6IjEwcHggNXB4IiwibGFuZHNjYXBlIjoiMTJweCA4cHgifQ==","art_title1":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI2cHggMCAwIDAiLCJsYW5kc2NhcGUiOiI4cHggMCAwIDAifQ==","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","title_txt":"#ffffff","all_underline_color1":"","f_title1_font_family":"712","f_title1_font_line_height":"1.2","f_title1_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEiLCJwaG9uZSI6IjE3In0=","f_title1_font_weight":"500","f_title1_font_transform":"","f_cat1_font_transform":"uppercase","f_cat1_font_size":"eyJhbGwiOiIxMSIsInBob25lIjoiMTMifQ==","f_cat1_font_weight":"500","f_cat1_font_family":"712","modules_category_padding1":"0","category_id":"","ajax_pagination":"next_prev","f_more_font_family":"","f_more_font_transform":"","f_more_font_weight":"","sort":"","tdc_css":"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9","custom_title":"Travel Guides","block_template_id":"td_block_template_8","image_size":"","cat_txt":"#ffffff","offset":"1","border_color":"#85c442","f_header_font_family":"712","f_header_font_size":"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTUifQ==","f_header_font_transform":"uppercase","f_header_font_weight":"500","mix_type_h":"color","mix_color_h":"rgba(112,204,63,0.3)","pag_h_bg":"#85c442","pag_h_border":"#85c442","block_type":"td_flex_block_4","separator":"","custom_url":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","mc4_tl":"","mc4_title_tag":"","mc4_el":"","post_ids":"","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","popular_by_date":"","linked_posts":"","favourite_only":"","locked_only":"","open_in_new_window":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_source":"","el_class":"","td_query_cache":"","td_query_cache_expiration":"","td_ajax_filter_type":"","td_ajax_filter_ids":"","td_filter_default_txt":"All","td_ajax_preloading":"","h_effect":"","modules_border_size1":"","modules_border_style1":"","modules_border_color1":"#eaeaea","modules_divider1":"","modules_divider_color1":"#eaeaea","image_alignment1":"50","image_radius1":"","hide_image":"","show_favourites":"","fav_size":"2","fav_space":"","fav_ico_color":"","fav_ico_color_h":"","fav_bg":"","fav_bg_h":"","fav_shadow_shadow_header":"","fav_shadow_shadow_title":"Shadow","fav_shadow_shadow_size":"","fav_shadow_shadow_offset_horizontal":"","fav_shadow_shadow_offset_vertical":"","fav_shadow_shadow_spread":"","fav_shadow_shadow_color":"","video_icon1":"","video_icon_pos1":"center","video_popup":"yes","video_rec":"","spot_header":"","video_rec_title":"","video_rec_color":"","video_rec_disable":"","autoplay_vid":"yes","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","video_title_color":"","video_title_color_h":"","video_bg":"","video_overlay":"","vid_t_color":"","vid_t_bg_color":"","f_vid_title_font_header":"","f_vid_title_font_title":"Video pop-up article title","f_vid_title_font_settings":"","f_vid_title_font_family":"","f_vid_title_font_size":"","f_vid_title_font_line_height":"","f_vid_title_font_style":"","f_vid_title_font_weight":"","f_vid_title_font_transform":"","f_vid_title_font_spacing":"","f_vid_title_":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show_1":"inline-block","excl_txt_1":"","excl_margin_1":"","excl_padd_1":"","all_excl_border_1":"","all_excl_border_style_1":"solid","excl_radius_1":"","excl_color_1":"","excl_color_h_1":"","excl_bg_1":"","excl_bg_h_1":"","all_excl_border_color_1":"","excl_border_color_h_1":"","f_excl_1_font_header":"","f_excl_1_font_title":"Label text","f_excl_1_font_settings":"","f_excl_1_font_family":"","f_excl_1_font_size":"","f_excl_1_font_line_height":"","f_excl_1_font_style":"","f_excl_1_font_weight":"","f_excl_1_font_transform":"","f_excl_1_font_spacing":"","f_excl_1_":"","meta_width1":"","meta_margin1":"","meta_info_border_radius1":"","modules_category_margin1":"","modules_cat_border1":"","modules_category_radius1":"0","show_cat1":"inline-block","modules_extra_cat1":"","author_photo":"","author_photo_size1":"","author_photo_space1":"","author_photo_radius1":"","review_space1":"","review_size1":"2.5","review_distance1":"","art_excerpt1":"","excerpt_middle":"","show_audio1":"block","hide_audio":"","art_audio1":"","art_audio_size1":"1.5","m_padding2":"","modules_space2":"26","modules_border_size2":"","modules_border_style2":"","modules_border_color2":"#eaeaea","modules_divider2":"","modules_divider_color2":"#eaeaea","image_size3":"","image_alignment2":"50","image_width2":"","image_height2":"","image_floated2":"float_left","image_radius2":"","hide_image3":"","show_favourites2":"","fav_size2":"2","fav_space2":"","fav_ico_color2":"","fav_ico_color_h2":"","fav_bg2":"","fav_bg_h2":"","fav_shadow2_shadow_header":"","fav_shadow2_shadow_title":"Shadow","fav_shadow2_shadow_size":"","fav_shadow2_shadow_offset_horizontal":"","fav_shadow2_shadow_offset_vertical":"","fav_shadow2_shadow_spread":"","fav_shadow2_shadow_color":"","video_icon2":"","video_popup3":"yes","video_rec3":"","video_rec_title3":"","video_rec_color3":"","autoplay_vid3":"yes","show_vid_t3":"block","vid_t_margin3":"","vid_t_padding3":"","excl_show_2":"inline-block","excl_txt_2":"","excl_margin_2":"","excl_padd_2":"","all_excl_border_2":"","all_excl_border_style_2":"solid","excl_radius_2":"","excl_color_2":"","excl_color_h_2":"","excl_bg_2":"","excl_bg_h_2":"","all_excl_border_color_2":"","excl_border_color_h_2":"","f_excl_2_font_header":"","f_excl_2_font_title":"Label text","f_excl_2_font_settings":"","f_excl_2_font_family":"","f_excl_2_font_size":"","f_excl_2_font_line_height":"","f_excl_2_font_style":"","f_excl_2_font_weight":"","f_excl_2_font_transform":"","f_excl_2_font_spacing":"","f_excl_2_":"","meta_info_horiz2":"content-horiz-left","meta_width2":"","meta_margin2":"","meta_padding2":"","meta_info_border_radius2":"","art_title2":"","modules_category3":"","modules_category_margin2":"","modules_category_padding2":"","modules_cat_border2":"","modules_category_radius2":"0","show_cat2":"inline-block","modules_extra_cat2":"","author_photo3":"","author_photo_size2":"","author_photo_space2":"","author_photo_radius2":"","review_space2":"","review_size2":"2.5","review_distance2":"","art_excerpt2":"","excerpt_middle3":"","show_audio2":"block","hide_audio3":"","art_audio2":"","art_audio_size2":"1","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","pag_icons_size":"","f_header_font_header":"","f_header_font_title":"Block header","f_header_font_settings":"","f_header_font_line_height":"","f_header_font_style":"","f_header_font_spacing":"","f_header_":"","f_ajax_font_title":"Ajax categories","f_ajax_font_settings":"","f_ajax_font_family":"","f_ajax_font_size":"","f_ajax_font_line_height":"","f_ajax_font_style":"","f_ajax_font_weight":"","f_ajax_font_transform":"","f_ajax_font_spacing":"","f_ajax_":"","f_more_font_title":"Load more button","f_more_font_settings":"","f_more_font_size":"","f_more_font_line_height":"","f_more_font_style":"","f_more_font_spacing":"","f_more_":"","f_title1_font_header":"","f_title1_font_title":"Article title 1","f_title1_font_settings":"","f_title1_font_style":"","f_title1_font_spacing":"","f_title1_":"","f_cat1_font_title":"Article category tag 1","f_cat1_font_settings":"","f_cat1_font_line_height":"","f_cat1_font_style":"","f_cat1_font_spacing":"","f_cat1_":"","f_meta1_font_title":"Article meta info 1","f_meta1_font_settings":"","f_meta1_font_family":"","f_meta1_font_size":"","f_meta1_font_line_height":"","f_meta1_font_style":"","f_meta1_font_weight":"","f_meta1_font_transform":"","f_meta1_font_spacing":"","f_meta1_":"","f_ex1_font_title":"Article excerpt 1","f_ex1_font_settings":"","f_ex1_font_family":"","f_ex1_font_size":"","f_ex1_font_line_height":"","f_ex1_font_style":"","f_ex1_font_weight":"","f_ex1_font_transform":"","f_ex1_font_spacing":"","f_ex1_":"","f_title2_font_title":"Article title 2","f_title2_font_settings":"","f_title2_font_family":"","f_title2_font_size":"","f_title2_font_line_height":"","f_title2_font_style":"","f_title2_font_weight":"","f_title2_font_transform":"","f_title2_font_spacing":"","f_title2_":"","f_cat2_font_title":"Article category tag 2","f_cat2_font_settings":"","f_cat2_font_family":"","f_cat2_font_size":"","f_cat2_font_line_height":"","f_cat2_font_style":"","f_cat2_font_weight":"","f_cat2_font_transform":"","f_cat2_font_spacing":"","f_cat2_":"","f_meta2_font_title":"Article meta info 2","f_meta2_font_settings":"","f_meta2_font_family":"","f_meta2_font_size":"","f_meta2_font_line_height":"","f_meta2_font_style":"","f_meta2_font_weight":"","f_meta2_font_transform":"","f_meta2_font_spacing":"","f_meta2_":"","f_ex2_font_title":"Article excerpt 2","f_ex2_font_settings":"","f_ex2_font_family":"","f_ex2_font_size":"","f_ex2_font_line_height":"","f_ex2_font_style":"","f_ex2_font_weight":"","f_ex2_font_transform":"","f_ex2_font_spacing":"","f_ex2_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","meta_bg":"","title_txt_hover":"","all_underline_height1":"","cat_style":"","cat_txt_hover":"","cat_border1":"","cat_border_hover1":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","meta_bg2":"","title_txt2":"","title_txt_hover2":"","all_underline_height2":"","all_underline_color2":"#000","cat_bg2":"","cat_bg_hover2":"","cat_txt2":"","cat_txt_hover2":"","cat_border2":"","cat_border_hover2":"","author_txt2":"","author_txt_hover2":"","date_txt2":"","ex_txt2":"","com_bg2":"","com_txt2":"","rev_txt2":"","audio_btn_color2":"","audio_time_color2":"","audio_bar_color2":"","audio_bar_curr_color2":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","btn_title":"","ajax_pagination_next_prev_swipe":"","ajax_pagination_infinite_stop":"","css":"","td_column_number":2,"header_color":"","color_preset":"","border_top":"","class":"tdi_139","tdc_css_class":"tdi_139","tdc_css_class_style":"tdi_139_rand_style"}';
block_tdi_139.td_column_number = "2";
block_tdi_139.block_type = "td_flex_block_4";
block_tdi_139.post_count = "3";
block_tdi_139.found_posts = "85";
block_tdi_139.header_color = "";
block_tdi_139.ajax_pagination_infinite_stop = "";
block_tdi_139.max_num_pages = "28";
tdBlocksArray.push(block_tdi_139);
</script><div class="td-block-title-wrap"><h4 class="td-block-title"><span>Travel Guides</span></h4></div><div id=tdi_139 class="td_block_inner td-mc1-wrap">
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" class="td-image-wrap " title="The Real Economy Has Never Been Tested by a Pandemic" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-696x464.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" title="The Real Economy Has Never Been Tested by a Pandemic">The Real Economy Has Never Been Tested by a Pandemic</a></h3>
                    
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" class="td-image-wrap " title="More and More People Stay Home as Coronavirus Spreads" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-696x464.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" title="More and More People Stay Home as Coronavirus Spreads">More and More People Stay Home as Coronavirus Spreads</a></h3>
                    
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" class="td-image-wrap " title="Witnessing the Birth of the New Coronavirus Economy" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/79-696x464.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" title="Witnessing the Birth of the New Coronavirus Economy">Witnessing the Birth of the New Coronavirus Economy</a></h3>
                    
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_139" data-td_block_id="tdi_139"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_139" data-td_block_id="tdi_139"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div><div class="vc_row_inner tdi_141  vc_row vc_inner wpb_row td-pb-row" >
<style scoped>.tdi_141{position:relative!important;top:0;transform:none;-webkit-transform:none}.tdi_141,.tdi_141 .tdc-inner-columns{display:block}.tdi_141 .tdc-inner-columns{width:100%}@media (min-width:768px){.tdi_141{margin-left:-12px;margin-right:-12px}.tdi_141>.vc_column_inner,.tdi_141>.tdc-inner-columns>.vc_column_inner{padding-left:12px;padding-right:12px}}@media (min-width:1019px) and (max-width:1140px){@media (min-width:768px){.tdi_141{margin-left:-10px;margin-right:-10px}.tdi_141>.vc_column_inner,.tdi_141>.tdc-inner-columns>.vc_column_inner{padding-left:10px;padding-right:10px}}}@media (min-width:768px) and (max-width:1018px){@media (min-width:768px){.tdi_141{margin-left:-8px;margin-right:-8px}.tdi_141>.vc_column_inner,.tdi_141>.tdc-inner-columns>.vc_column_inner{padding-left:8px;padding-right:8px}}}</style><div class="vc_column_inner tdi_143  wpb_column vc_column_container tdc-inner-column td-pb-span6">
<style scoped>.tdi_143{vertical-align:baseline}.tdi_143 .vc_column-inner>.wpb_wrapper,.tdi_143 .vc_column-inner>.wpb_wrapper .tdc-elements{display:block}.tdi_143 .vc_column-inner>.wpb_wrapper .tdc-elements{width:100%}</style><div class="vc_column-inner"><div class="wpb_wrapper" ><div class="td_block_wrap td_flex_block_4 tdi_144 td_with_ajax_pagination td-pb-border-top td_block_template_8 td_flex_block"  data-td-block-uid="tdi_144" >
<style>.tdi_144 .td-block-title>*:before,.tdi_144 .td-block-title>*:after{background-color:#d44cef!important}@media (max-width:767px){.tdi_144{margin-bottom:40px!important}}</style>
<style>.tdi_144 .td_module_wrap{padding-left:12px;padding-right:12px}.tdi_144 .td_block_inner{margin-left:-12px;margin-right:-12px}.tdi_144 .td_module_flex_1{padding-bottom:12px;margin-bottom:12px}.tdi_144 .td_module_flex_1 .td-module-container:before{bottom:-12px;border-width:0 0 1px 0;border-style:none;border-color:#eaeaea;border-color:#eaeaea}.tdi_144 .td_module_flex_4{padding-bottom:13px;margin-bottom:13px}.tdi_144 .td_module_flex_4 .td-module-container:before{bottom:-13px;border-width:0 0 1px 0;border-style:none;border-color:#eaeaea;border-color:#eaeaea}.tdi_144 .td_module_wrap:last-child{margin-bottom:0!important;padding-bottom:0!important}.tdi_144 .td_module_wrap:last-child .td-module-container:before{display:none}.tdi_144 .td_module_flex_1 .td-module-container{border-color:#eaeaea;flex-direction:column}.tdi_144 .td_module_flex_4 .td-module-container{border-color:#eaeaea}.tdi_144 .td_module_flex_1 .entry-thumb{background-position:center 50%}.tdi_144 .td_module_flex_4 .entry-thumb{background-position:center 50%}.tdi_144 .td_module_flex_4 .td-image-container{flex:0 0 30%;width:30%;display:block;order:0}.tdi_144 .td_module_flex_1 .td-image-wrap{padding-bottom:60%}.ie10 .tdi_144 .td_module_flex_1 .td-image-container,.ie11 .tdi_144 .td_module_flex_1 .td-image-container{flex:0 0 auto}.tdi_144 .td_module_flex_4 .td-image-wrap{padding-bottom:75%}.ie10 .tdi_144 .td_module_flex_4 .td-image-container,.ie11 .tdi_144 .td_module_flex_4 .td-image-container{flex:0 0 auto}.ie10 .tdi_144 .td_module_flex_4 .td-module-meta-info,.ie11 .tdi_144 .td_module_flex_4 .td-module-meta-info{flex:1}body .tdi_144 .td_module_flex_1 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}body .tdi_144 .td_module_flex_4 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_144 .td_module_flex_4 .td-video-play-ico{width:20px;height:20px;font-size:20px}.tdi_144 .td_module_flex_1 .td-video-play-ico{top:50%;left:50%;transform:translate(-50%,-50%)}.tdi_144 .td_module_flex_1 .td-post-vid-time{display:block}.tdi_144 .td_module_flex_4 .td-post-vid-time{display:block}.tdi_144 .td_module_flex_1 .td-module-meta-info{position:relative;padding:15px 0 0 0}.tdi_144 .td_module_flex_1 .td-category-pos-image .td-post-category:not(.td-post-extra-category){top:auto;bottom:0}.tdi_144 .td_module_flex_4 .td-module-meta-info{padding:0 0 0 15px}.tdi_144 .td_module_flex_1 .entry-title{margin:10px 0;font-family:Rubik!important;font-size:21px!important;line-height:1.2!important;font-weight:500!important}.tdi_144 .td_module_flex_1 .td-excerpt{margin:12px 0 0 0;font-family:Rubik!important;font-size:13px!important;line-height:1.6!important}.tdi_144 .td_module_flex_4 .td-excerpt{margin:0px;display:none;font-family:Rubik!important}.tdi_144 .td_module_flex_1 .td-audio-player{font-size:13px;opacity:1;visibility:visible;height:auto}.tdi_144 .td_module_flex_4 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_144 .td_module_flex_1 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_144 .td_module_flex_4 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_144 .td_module_flex_1 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_144 .td_module_flex_4 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_144 .td_module_flex_1 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_144 .td_module_flex_4 .td-post-category:not(.td-post-extra-category){display:none}.tdi_144 .td_module_flex_1 .td-author-date{display:inline}.tdi_144 .td_module_flex_4 .td-author-date{display:inline}.tdi_144 .td_module_flex_1 .td-post-author-name{display:inline-block}.tdi_144 .td_module_flex_4 .td-post-author-name{display:none}.tdi_144 .td_module_flex_1 .td-post-date,.tdi_144 .td_module_flex_1 .td-post-author-name span{display:inline-block}.tdi_144 .td_module_flex_4 .td-post-date,.tdi_144 .td_module_flex_4 .td-post-author-name span{display:inline-block}.tdi_144 .td_module_flex_1 .entry-review-stars{display:inline-block}.tdi_144 .td_module_flex_1 .td-icon-star,.tdi_144 .td_module_flex_1 .td-icon-star-empty,.tdi_144 .td_module_flex_1 .td-icon-star-half{font-size:15px}.tdi_144 .td_module_flex_4 .entry-review-stars{display:inline-block}.tdi_144 .td_module_flex_4 .td-icon-star,.tdi_144 .td_module_flex_4 .td-icon-star-empty,.tdi_144 .td_module_flex_4 .td-icon-star-half{font-size:15px}.tdi_144 .td_module_flex_1 .td-module-comments{display:none}.tdi_144 .td_module_flex_4 .td-module-comments{display:none}.tdi_144 .td_module_flex_1 .td-module-title a{color:#000000}.tdi_144 .td_module_flex_1:hover .td-module-title a{color:#d44cef!important}.tdi_144 .td_module_flex_4 .td-module-title a{color:#000000}.tdi_144 .td_module_flex_4:hover .td-module-title a{color:#d44cef!important}.tdi_144 .td_module_flex_1 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#d44cef}.tdi_144 .td_module_flex_4 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#d44cef}.tdi_144 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_144 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_144 .td_module_flex_1 .td-post-author-name a{color:#000000}.tdi_144 .td_module_flex_4 .td-post-author-name a{color:#000000}.tdi_144 .td_module_flex_1 .td-post-author-name:hover a{color:#d44cef}.tdi_144 .td_module_flex_4 .td-post-author-name:hover a{color:#d44cef}.tdi_144.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_144 .td-load-more-wrap a:hover{background-color:#d44cef!important;border-color:#d44cef!important;border-color:#d44cef!important}.tdi_144 .td_module_flex_1.td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_144 .td_module_flex_4.td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_144 .td-block-title a,.tdi_144 .td-block-title span{font-family:Rubik!important;font-size:17px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_144 .td_module_flex_1 .td-editor-date,.tdi_144 .td_module_flex_1 .td-editor-date .td-post-author-name a,.tdi_144 .td_module_flex_1 .td-editor-date .entry-date,.tdi_144 .td_module_flex_1 .td-module-comments a{font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:capitalize!important}.tdi_144 .td_module_flex_4 .entry-title{font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_144 .td_module_flex_4 .td-editor-date,.tdi_144 .td_module_flex_4 .td-editor-date .td-post-author-name a,.tdi_144 .td_module_flex_4 .td-editor-date .entry-date,.tdi_144 .td_module_flex_4 .td-module-comments a{font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:400!important;text-transform:capitalize!important}html:not([class*='ie']) .tdi_144 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:767px){.tdi_144 .td_module_wrap{width:100%;float:left}.rtl .tdi_144 .td_module_wrap{float:right}}@media (min-width:1019px) and (max-width:1140px){.tdi_144 .td_module_wrap{padding-left:20px;padding-right:20px}.tdi_144 .td_block_inner{margin-left:-20px;margin-right:-20px}.tdi_144 .td_module_flex_1{padding-bottom:10px;margin-bottom:10px}.tdi_144 .td_module_flex_1 .td-module-container:before{bottom:-10px}.tdi_144 .td_module_flex_4{padding-bottom:10px;margin-bottom:10px}.tdi_144 .td_module_flex_4 .td-module-container:before{bottom:-10px}.tdi_144 .td_module_wrap:last-child{margin-bottom:0!important;padding-bottom:0!important}.tdi_144 .td_module_wrap:last-child .td-module-container:before{display:none}.tdi_144 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_144 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}}@media (min-width:768px) and (max-width:1018px){.tdi_144 .td_module_flex_1{padding-bottom:7.5px;margin-bottom:7.5px}.tdi_144 .td_module_flex_1 .td-module-container:before{bottom:-7.5px}.tdi_144 .td_module_flex_4{padding-bottom:7.5px;margin-bottom:7.5px}.tdi_144 .td_module_flex_4 .td-module-container:before{bottom:-7.5px}.tdi_144 .td_module_wrap:last-child{margin-bottom:0!important;padding-bottom:0!important}.tdi_144 .td_module_wrap:last-child .td-module-container:before{display:none}.tdi_144 .td_module_flex_4 .td-image-container{flex:0 0 35%;width:35%}.tdi_144 .td_module_flex_1 .entry-title{margin:8px 0;font-size:17px!important}.tdi_144 .td_module_flex_4 .entry-title{margin:0 0 4px;font-size:11px!important}.tdi_144 .td_module_flex_1 .td-excerpt{margin:8px 0 0 0;font-size:11px!important}.tdi_144 .td_module_flex_4 .td-excerpt{margin:8px 0 0 0}.tdi_144 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_144 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_144 .td-block-title a,.tdi_144 .td-block-title span{font-size:15px!important}.tdi_144 .td_module_flex_1 .td-post-category{font-size:11px!important}.tdi_144 .td_module_flex_1 .td-editor-date,.tdi_144 .td_module_flex_1 .td-editor-date .td-post-author-name a,.tdi_144 .td_module_flex_1 .td-editor-date .entry-date,.tdi_144 .td_module_flex_1 .td-module-comments a{font-size:11px!important}.tdi_144 .td_module_flex_4 .td-post-category{font-size:10px!important}.tdi_144 .td_module_flex_4 .td-editor-date,.tdi_144 .td_module_flex_4 .td-editor-date .td-post-author-name a,.tdi_144 .td_module_flex_4 .td-editor-date .entry-date,.tdi_144 .td_module_flex_4 .td-module-comments a{font-size:10px!important}}@media (max-width:767px){.tdi_144 .td_module_flex_1{padding-bottom:10.5px;margin-bottom:10.5px}.tdi_144 .td_module_flex_1 .td-module-container:before{bottom:-10.5px}.tdi_144 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_144 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}}</style><script>var block_tdi_144 = new tdBlock();
block_tdi_144.id = "tdi_144";
block_tdi_144.atts = '{"modules_category":"above","modules_on_row":"eyJhbGwiOiI1MCUiLCJsYW5kc2NhcGUiOiIxMDAlIn0=","modules_category1":"image","show_cat2":"none","show_com2":"none","show_author2":"none","columns":"100%","columns_gap":"eyJsYW5kc2NhcGUiOiI0MCIsImFsbCI6IjI0In0=","image_width2":"eyJwb3J0cmFpdCI6IjM1In0=","modules_space1":"eyJwaG9uZSI6IjIxIiwiYWxsIjoiMjQiLCJsYW5kc2NhcGUiOiIyMCIsInBvcnRyYWl0IjoiMTUifQ==","limit":"3","show_excerpt1":"","show_excerpt2":"none","hide_audio":"yes","art_title1":"eyJhbGwiOiIxMHB4IDAiLCJwb3J0cmFpdCI6IjhweCAwIn0=","art_title2":"eyJwb3J0cmFpdCI6IjAgMCA0cHgifQ==","f_title1_font_family":"712","f_title2_font_family":"712","f_title1_font_size":"eyJhbGwiOiIyMSIsInBvcnRyYWl0IjoiMTcifQ==","f_title2_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title1_font_line_height":"1.2","f_title2_font_line_height":"1.2","f_title1_font_weight":"500","f_title2_font_weight":"500","title_txt":"#000000","title_txt2":"#000000","title_txt_hover":"#d44cef","title_txt_hover2":"#d44cef","image_height1":"60","image_height2":"75","f_meta1_font_family":"712","f_meta2_font_family":"712","f_meta1_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_meta2_font_size":"eyJhbGwiOiIxMSIsInBvcnRyYWl0IjoiMTAifQ==","f_meta1_font_line_height":"1","f_meta2_font_line_height":"1","f_meta1_font_weight":"400","f_meta2_font_weight":"400","f_meta1_font_transform":"capitalize","f_meta2_font_transform":"capitalize","author_txt":"#000000","author_txt2":"#000000","author_txt_hover":"#d44cef","author_txt_hover2":"#d44cef","art_excerpt1":"eyJhbGwiOiIxMnB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt2":"eyJwb3J0cmFpdCI6IjhweCAwIDAgMCIsImFsbCI6IjAifQ==","f_ex1_font_family":"712","f_ex2_font_family":"712","f_ex1_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_ex1_font_line_height":"1.6","modules_category_padding1":"0","modules_category_padding2":"0","f_cat1_font_family":"712","f_cat2_font_family":"712","f_cat1_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat2_font_size":"eyJhbGwiOiIxMSIsInBvcnRyYWl0IjoiMTAifQ==","f_cat1_font_line_height":"1","f_cat2_font_line_height":"1","f_cat1_font_weight":"400","f_cat2_font_weight":"400","f_cat1_font_transform":"uppercase","f_cat2_font_transform":"uppercase","cat_bg":"rgba(255,255,255,0)","cat_bg2":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_bg_hover2":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt2":"#000000","cat_txt_hover":"#d44cef","cat_txt_hover2":"#d44cef","meta_padding1":"15px 0 0 0","ajax_pagination":"next_prev","meta_padding2":"0 0 0 15px","show_com1":"none","custom_title":"Gadgets","block_template_id":"td_block_template_8","border_color":"#d44cef","f_header_font_size":"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTUifQ==","f_header_font_weight":"500","f_header_font_family":"712","f_header_font_transform":"uppercase","category_id":"","pag_h_bg":"#d44cef","pag_h_border":"#d44cef","tdc_css":"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==","modules_space2":"eyJhbGwiOiIyNiIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","block_type":"td_flex_block_4","separator":"","custom_url":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","mc4_tl":"","mc4_title_tag":"","mc4_el":"","post_ids":"","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","sort":"","popular_by_date":"","linked_posts":"","favourite_only":"","locked_only":"","offset":"","open_in_new_window":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_source":"","el_class":"","td_query_cache":"","td_query_cache_expiration":"","td_ajax_filter_type":"","td_ajax_filter_ids":"","td_filter_default_txt":"All","td_ajax_preloading":"","h_effect":"","modules_border_size1":"","modules_border_style1":"","modules_border_color1":"#eaeaea","modules_divider1":"","modules_divider_color1":"#eaeaea","image_size":"","image_alignment1":"50","image_radius1":"","hide_image":"","show_favourites":"","fav_size":"2","fav_space":"","fav_ico_color":"","fav_ico_color_h":"","fav_bg":"","fav_bg_h":"","fav_shadow_shadow_header":"","fav_shadow_shadow_title":"Shadow","fav_shadow_shadow_size":"","fav_shadow_shadow_offset_horizontal":"","fav_shadow_shadow_offset_vertical":"","fav_shadow_shadow_spread":"","fav_shadow_shadow_color":"","video_icon1":"","video_icon_pos1":"center","video_popup":"yes","video_rec":"","spot_header":"","video_rec_title":"","video_rec_color":"","video_rec_disable":"","autoplay_vid":"yes","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","video_title_color":"","video_title_color_h":"","video_bg":"","video_overlay":"","vid_t_color":"","vid_t_bg_color":"","f_vid_title_font_header":"","f_vid_title_font_title":"Video pop-up article title","f_vid_title_font_settings":"","f_vid_title_font_family":"","f_vid_title_font_size":"","f_vid_title_font_line_height":"","f_vid_title_font_style":"","f_vid_title_font_weight":"","f_vid_title_font_transform":"","f_vid_title_font_spacing":"","f_vid_title_":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show_1":"inline-block","excl_txt_1":"","excl_margin_1":"","excl_padd_1":"","all_excl_border_1":"","all_excl_border_style_1":"solid","excl_radius_1":"","excl_color_1":"","excl_color_h_1":"","excl_bg_1":"","excl_bg_h_1":"","all_excl_border_color_1":"","excl_border_color_h_1":"","f_excl_1_font_header":"","f_excl_1_font_title":"Label text","f_excl_1_font_settings":"","f_excl_1_font_family":"","f_excl_1_font_size":"","f_excl_1_font_line_height":"","f_excl_1_font_style":"","f_excl_1_font_weight":"","f_excl_1_font_transform":"","f_excl_1_font_spacing":"","f_excl_1_":"","meta_info_align1":"","meta_info_horiz1":"content-horiz-left","meta_width1":"","meta_margin1":"","meta_info_border_radius1":"","modules_category_margin1":"","modules_cat_border1":"","modules_category_radius1":"0","show_cat1":"inline-block","modules_extra_cat1":"","show_author1":"inline-block","author_photo":"","author_photo_size1":"","author_photo_space1":"","author_photo_radius1":"","show_date1":"inline-block","show_review1":"inline-block","review_space1":"","review_size1":"2.5","review_distance1":"","excerpt_middle":"","show_audio1":"block","art_audio1":"","art_audio_size1":"1.5","m_padding2":"","modules_border_size2":"","modules_border_style2":"","modules_border_color2":"#eaeaea","modules_divider2":"","modules_divider_color2":"#eaeaea","image_size3":"","image_alignment2":"50","image_floated2":"float_left","image_radius2":"","hide_image3":"","show_favourites2":"","fav_size2":"2","fav_space2":"","fav_ico_color2":"","fav_ico_color_h2":"","fav_bg2":"","fav_bg_h2":"","fav_shadow2_shadow_header":"","fav_shadow2_shadow_title":"Shadow","fav_shadow2_shadow_size":"","fav_shadow2_shadow_offset_horizontal":"","fav_shadow2_shadow_offset_vertical":"","fav_shadow2_shadow_spread":"","fav_shadow2_shadow_color":"","video_icon2":"","video_popup3":"yes","video_rec3":"","video_rec_title3":"","video_rec_color3":"","autoplay_vid3":"yes","show_vid_t3":"block","vid_t_margin3":"","vid_t_padding3":"","excl_show_2":"inline-block","excl_txt_2":"","excl_margin_2":"","excl_padd_2":"","all_excl_border_2":"","all_excl_border_style_2":"solid","excl_radius_2":"","excl_color_2":"","excl_color_h_2":"","excl_bg_2":"","excl_bg_h_2":"","all_excl_border_color_2":"","excl_border_color_h_2":"","f_excl_2_font_header":"","f_excl_2_font_title":"Label text","f_excl_2_font_settings":"","f_excl_2_font_family":"","f_excl_2_font_size":"","f_excl_2_font_line_height":"","f_excl_2_font_style":"","f_excl_2_font_weight":"","f_excl_2_font_transform":"","f_excl_2_font_spacing":"","f_excl_2_":"","meta_info_horiz2":"content-horiz-left","meta_width2":"","meta_margin2":"","meta_info_border_radius2":"","modules_category3":"","modules_category_margin2":"","modules_cat_border2":"","modules_category_radius2":"0","modules_extra_cat2":"","author_photo3":"","author_photo_size2":"","author_photo_space2":"","author_photo_radius2":"","show_date2":"inline-block","show_review2":"inline-block","review_space2":"","review_size2":"2.5","review_distance2":"","excerpt_middle3":"","show_audio2":"block","hide_audio3":"","art_audio2":"","art_audio_size2":"1","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","pag_icons_size":"","f_header_font_header":"","f_header_font_title":"Block header","f_header_font_settings":"","f_header_font_line_height":"","f_header_font_style":"","f_header_font_spacing":"","f_header_":"","f_ajax_font_title":"Ajax categories","f_ajax_font_settings":"","f_ajax_font_family":"","f_ajax_font_size":"","f_ajax_font_line_height":"","f_ajax_font_style":"","f_ajax_font_weight":"","f_ajax_font_transform":"","f_ajax_font_spacing":"","f_ajax_":"","f_more_font_title":"Load more button","f_more_font_settings":"","f_more_font_family":"","f_more_font_size":"","f_more_font_line_height":"","f_more_font_style":"","f_more_font_weight":"","f_more_font_transform":"","f_more_font_spacing":"","f_more_":"","f_title1_font_header":"","f_title1_font_title":"Article title 1","f_title1_font_settings":"","f_title1_font_style":"","f_title1_font_transform":"","f_title1_font_spacing":"","f_title1_":"","f_cat1_font_title":"Article category tag 1","f_cat1_font_settings":"","f_cat1_font_style":"","f_cat1_font_spacing":"","f_cat1_":"","f_meta1_font_title":"Article meta info 1","f_meta1_font_settings":"","f_meta1_font_style":"","f_meta1_font_spacing":"","f_meta1_":"","f_ex1_font_title":"Article excerpt 1","f_ex1_font_settings":"","f_ex1_font_style":"","f_ex1_font_weight":"","f_ex1_font_transform":"","f_ex1_font_spacing":"","f_ex1_":"","f_title2_font_title":"Article title 2","f_title2_font_settings":"","f_title2_font_style":"","f_title2_font_transform":"","f_title2_font_spacing":"","f_title2_":"","f_cat2_font_title":"Article category tag 2","f_cat2_font_settings":"","f_cat2_font_style":"","f_cat2_font_spacing":"","f_cat2_":"","f_meta2_font_title":"Article meta info 2","f_meta2_font_settings":"","f_meta2_font_style":"","f_meta2_font_spacing":"","f_meta2_":"","f_ex2_font_title":"Article excerpt 2","f_ex2_font_settings":"","f_ex2_font_size":"","f_ex2_font_line_height":"","f_ex2_font_style":"","f_ex2_font_weight":"","f_ex2_font_transform":"","f_ex2_font_spacing":"","f_ex2_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","color_overlay":"","meta_bg":"","all_underline_height1":"","all_underline_color1":"#000","cat_style":"","cat_border1":"","cat_border_hover1":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","meta_bg2":"","all_underline_height2":"","all_underline_color2":"#000","cat_border2":"","cat_border_hover2":"","date_txt2":"","ex_txt2":"","com_bg2":"","com_txt2":"","rev_txt2":"","audio_btn_color2":"","audio_time_color2":"","audio_bar_color2":"","audio_bar_curr_color2":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","btn_title":"","ajax_pagination_next_prev_swipe":"","ajax_pagination_infinite_stop":"","css":"","td_column_number":1,"header_color":"","color_preset":"","border_top":"","class":"tdi_144","tdc_css_class":"tdi_144","tdc_css_class_style":"tdi_144_rand_style"}';
block_tdi_144.td_column_number = "1";
block_tdi_144.block_type = "td_flex_block_4";
block_tdi_144.post_count = "3";
block_tdi_144.found_posts = "85";
block_tdi_144.header_color = "";
block_tdi_144.ajax_pagination_infinite_stop = "";
block_tdi_144.max_num_pages = "29";
tdBlocksArray.push(block_tdi_144);
</script><div class="td-block-title-wrap"><h4 class="td-block-title"><span>Gadgets</span></h4></div><div id=tdi_144 class="td_block_inner td-mc1-wrap">
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" class="td-image-wrap " title="How to Think and Act in the Plummeting Stock Market" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-696x461.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" title="How to Think and Act in the Plummeting Stock Market">How to Think and Act in the Plummeting Stock Market</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    <div class="td-excerpt">People live better in big houses and in big clothes. I try to contrast; life today is full of contrast. We have to change!...</div>
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_4 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" class="td-image-wrap " title="The Real Economy Has Never Been Tested by a Pandemic" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-218x150.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" title="The Real Economy Has Never Been Tested by a Pandemic">The Real Economy Has Never Been Tested by a Pandemic</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                                                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_4 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" class="td-image-wrap " title="More and More People Stay Home as Coronavirus Spreads" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-218x150.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" title="More and More People Stay Home as Coronavirus Spreads">More and More People Stay Home as Coronavirus Spreads</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                                                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_144" data-td_block_id="tdi_144"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_144" data-td_block_id="tdi_144"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div></div></div><div class="vc_column_inner tdi_146  wpb_column vc_column_container tdc-inner-column td-pb-span6">
<style scoped>.tdi_146{vertical-align:baseline}.tdi_146 .vc_column-inner>.wpb_wrapper,.tdi_146 .vc_column-inner>.wpb_wrapper .tdc-elements{display:block}.tdi_146 .vc_column-inner>.wpb_wrapper .tdc-elements{width:100%}</style><div class="vc_column-inner"><div class="wpb_wrapper" ><div class="td_block_wrap td_flex_block_4 tdi_147 td_with_ajax_pagination td-pb-border-top td_block_template_8 td_flex_block"  data-td-block-uid="tdi_147" >
<style>.tdi_147 .td-block-title>*:before,.tdi_147 .td-block-title>*:after{background-color:#eab04b!important}@media (max-width:767px){.tdi_147{margin-bottom:40px!important}}</style>
<style>.tdi_147 .td_module_wrap{padding-left:12px;padding-right:12px}.tdi_147 .td_block_inner{margin-left:-12px;margin-right:-12px}.tdi_147 .td_module_flex_1{padding-bottom:12px;margin-bottom:12px}.tdi_147 .td_module_flex_1 .td-module-container:before{bottom:-12px;border-width:0 0 1px 0;border-style:none;border-color:#eaeaea;border-color:#eaeaea}.tdi_147 .td_module_flex_4{padding-bottom:13px;margin-bottom:13px}.tdi_147 .td_module_flex_4 .td-module-container:before{bottom:-13px;border-width:0 0 1px 0;border-style:none;border-color:#eaeaea;border-color:#eaeaea}.tdi_147 .td_module_wrap:last-child{margin-bottom:0!important;padding-bottom:0!important}.tdi_147 .td_module_wrap:last-child .td-module-container:before{display:none}.tdi_147 .td_module_flex_1 .td-module-container{border-color:#eaeaea;flex-direction:column}.tdi_147 .td_module_flex_4 .td-module-container{border-color:#eaeaea}.tdi_147 .td_module_flex_1 .entry-thumb{background-position:center 50%}.tdi_147 .td_module_flex_4 .entry-thumb{background-position:center 50%}.tdi_147 .td_module_flex_4 .td-image-container{flex:0 0 30%;width:30%;display:block;order:0}.tdi_147 .td_module_flex_1 .td-image-wrap{padding-bottom:60%}.ie10 .tdi_147 .td_module_flex_1 .td-image-container,.ie11 .tdi_147 .td_module_flex_1 .td-image-container{flex:0 0 auto}.tdi_147 .td_module_flex_4 .td-image-wrap{padding-bottom:75%}.ie10 .tdi_147 .td_module_flex_4 .td-image-container,.ie11 .tdi_147 .td_module_flex_4 .td-image-container{flex:0 0 auto}.ie10 .tdi_147 .td_module_flex_4 .td-module-meta-info,.ie11 .tdi_147 .td_module_flex_4 .td-module-meta-info{flex:1}body .tdi_147 .td_module_flex_1 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}body .tdi_147 .td_module_flex_4 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_147 .td_module_flex_4 .td-video-play-ico{width:20px;height:20px;font-size:20px}.tdi_147 .td_module_flex_1 .td-video-play-ico{top:50%;left:50%;transform:translate(-50%,-50%)}.tdi_147 .td_module_flex_1 .td-post-vid-time{display:block}.tdi_147 .td_module_flex_4 .td-post-vid-time{display:block}.tdi_147 .td_module_flex_1 .td-module-meta-info{position:relative;padding:15px 0 0 0}.tdi_147 .td_module_flex_1 .td-category-pos-image .td-post-category:not(.td-post-extra-category){top:auto;bottom:0}.tdi_147 .td_module_flex_4 .td-module-meta-info{padding:0 0 0 15px}.tdi_147 .td_module_flex_1 .entry-title{margin:10px 0;font-family:Rubik!important;font-size:21px!important;line-height:1.2!important;font-weight:500!important}.tdi_147 .td_module_flex_1 .td-excerpt{margin:12px 0 0 0;font-family:Rubik!important;font-size:13px!important;line-height:1.6!important}.tdi_147 .td_module_flex_4 .td-excerpt{margin:0px;display:none;font-family:Rubik!important}.tdi_147 .td_module_flex_1 .td-audio-player{font-size:13px;opacity:1;visibility:visible;height:auto}.tdi_147 .td_module_flex_4 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_147 .td_module_flex_1 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_147 .td_module_flex_4 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_147 .td_module_flex_1 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_147 .td_module_flex_4 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_147 .td_module_flex_1 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_147 .td_module_flex_4 .td-post-category:not(.td-post-extra-category){display:none}.tdi_147 .td_module_flex_1 .td-author-date{display:inline}.tdi_147 .td_module_flex_4 .td-author-date{display:inline}.tdi_147 .td_module_flex_1 .td-post-author-name{display:inline-block}.tdi_147 .td_module_flex_4 .td-post-author-name{display:none}.tdi_147 .td_module_flex_1 .td-post-date,.tdi_147 .td_module_flex_1 .td-post-author-name span{display:inline-block}.tdi_147 .td_module_flex_4 .td-post-date,.tdi_147 .td_module_flex_4 .td-post-author-name span{display:inline-block}.tdi_147 .td_module_flex_1 .entry-review-stars{display:inline-block}.tdi_147 .td_module_flex_1 .td-icon-star,.tdi_147 .td_module_flex_1 .td-icon-star-empty,.tdi_147 .td_module_flex_1 .td-icon-star-half{font-size:15px}.tdi_147 .td_module_flex_4 .entry-review-stars{display:inline-block}.tdi_147 .td_module_flex_4 .td-icon-star,.tdi_147 .td_module_flex_4 .td-icon-star-empty,.tdi_147 .td_module_flex_4 .td-icon-star-half{font-size:15px}.tdi_147 .td_module_flex_1 .td-module-comments{display:none}.tdi_147 .td_module_flex_4 .td-module-comments{display:none}.tdi_147 .td_module_flex_1 .td-module-title a{color:#000000}.tdi_147 .td_module_flex_1:hover .td-module-title a{color:#eab04b!important}.tdi_147 .td_module_flex_4 .td-module-title a{color:#000000}.tdi_147 .td_module_flex_4:hover .td-module-title a{color:#eab04b!important}.tdi_147 .td_module_flex_1 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#eab04b}.tdi_147 .td_module_flex_4 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#eab04b}.tdi_147 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_147 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_147 .td_module_flex_1 .td-post-author-name a{color:#000000}.tdi_147 .td_module_flex_4 .td-post-author-name a{color:#000000}.tdi_147 .td_module_flex_1 .td-post-author-name:hover a{color:#eab04b}.tdi_147 .td_module_flex_4 .td-post-author-name:hover a{color:#eab04b}.tdi_147.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_147 .td-load-more-wrap a:hover{background-color:#eab04b!important;border-color:#eab04b!important;border-color:#eab04b!important}.tdi_147 .td_module_flex_1.td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_147 .td_module_flex_4.td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_147 .td-block-title a,.tdi_147 .td-block-title span{font-family:Rubik!important;font-size:17px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_147 .td_module_flex_1 .td-editor-date,.tdi_147 .td_module_flex_1 .td-editor-date .td-post-author-name a,.tdi_147 .td_module_flex_1 .td-editor-date .entry-date,.tdi_147 .td_module_flex_1 .td-module-comments a{font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:capitalize!important}.tdi_147 .td_module_flex_4 .entry-title{font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_147 .td_module_flex_4 .td-editor-date,.tdi_147 .td_module_flex_4 .td-editor-date .td-post-author-name a,.tdi_147 .td_module_flex_4 .td-editor-date .entry-date,.tdi_147 .td_module_flex_4 .td-module-comments a{font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:400!important;text-transform:capitalize!important}html:not([class*='ie']) .tdi_147 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:767px){.tdi_147 .td_module_wrap{width:100%;float:left}.rtl .tdi_147 .td_module_wrap{float:right}}@media (min-width:1019px) and (max-width:1140px){.tdi_147 .td_module_wrap{padding-left:20px;padding-right:20px}.tdi_147 .td_block_inner{margin-left:-20px;margin-right:-20px}.tdi_147 .td_module_flex_1{padding-bottom:10px;margin-bottom:10px}.tdi_147 .td_module_flex_1 .td-module-container:before{bottom:-10px}.tdi_147 .td_module_flex_4{padding-bottom:10px;margin-bottom:10px}.tdi_147 .td_module_flex_4 .td-module-container:before{bottom:-10px}.tdi_147 .td_module_wrap:last-child{margin-bottom:0!important;padding-bottom:0!important}.tdi_147 .td_module_wrap:last-child .td-module-container:before{display:none}.tdi_147 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_147 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}}@media (min-width:768px) and (max-width:1018px){.tdi_147 .td_module_wrap{padding-left:14px;padding-right:14px}.tdi_147 .td_block_inner{margin-left:-14px;margin-right:-14px}.tdi_147 .td_module_flex_4{padding-bottom:7.5px;margin-bottom:7.5px}.tdi_147 .td_module_flex_4 .td-module-container:before{bottom:-7.5px}.tdi_147 .td_module_wrap:last-child{margin-bottom:0!important;padding-bottom:0!important}.tdi_147 .td_module_wrap:last-child .td-module-container:before{display:none}.tdi_147 .td_module_flex_4 .td-image-container{flex:0 0 35%;width:35%}.tdi_147 .td_module_flex_1 .entry-title{margin:8px 0;font-size:17px!important}.tdi_147 .td_module_flex_4 .entry-title{margin:0 0 4px;font-size:11px!important}.tdi_147 .td_module_flex_1 .td-excerpt{margin:8px 0 0 0;font-size:11px!important}.tdi_147 .td_module_flex_4 .td-excerpt{margin:8px 0 0 0}.tdi_147 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_147 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_147 .td-block-title a,.tdi_147 .td-block-title span{font-size:15px!important}.tdi_147 .td_module_flex_1 .td-post-category{font-size:11px!important}.tdi_147 .td_module_flex_1 .td-editor-date,.tdi_147 .td_module_flex_1 .td-editor-date .td-post-author-name a,.tdi_147 .td_module_flex_1 .td-editor-date .entry-date,.tdi_147 .td_module_flex_1 .td-module-comments a{font-size:11px!important}.tdi_147 .td_module_flex_4 .td-post-category{font-size:10px!important}.tdi_147 .td_module_flex_4 .td-editor-date,.tdi_147 .td_module_flex_4 .td-editor-date .td-post-author-name a,.tdi_147 .td_module_flex_4 .td-editor-date .entry-date,.tdi_147 .td_module_flex_4 .td-module-comments a{font-size:10px!important}}@media (max-width:767px){.tdi_147 .td_module_flex_1{padding-bottom:10.5px;margin-bottom:10.5px}.tdi_147 .td_module_flex_1 .td-module-container:before{bottom:-10.5px}.tdi_147 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_147 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}}</style><script>var block_tdi_147 = new tdBlock();
block_tdi_147.id = "tdi_147";
block_tdi_147.atts = '{"modules_category":"above","modules_on_row":"eyJhbGwiOiI1MCUiLCJsYW5kc2NhcGUiOiIxMDAlIn0=","modules_category1":"image","show_cat2":"none","show_com2":"none","show_author2":"none","columns":"100%","columns_gap":"eyJsYW5kc2NhcGUiOiI0MCIsInBvcnRyYWl0IjoiMjgiLCJhbGwiOiIyNCJ9","image_width2":"eyJwb3J0cmFpdCI6IjM1In0=","modules_space1":"eyJwaG9uZSI6IjIxIiwiYWxsIjoiMjQiLCJsYW5kc2NhcGUiOiIyMCJ9","limit":"3","show_excerpt1":"","show_excerpt2":"none","hide_audio":"yes","art_title1":"eyJhbGwiOiIxMHB4IDAiLCJwb3J0cmFpdCI6IjhweCAwIn0=","art_title2":"eyJwb3J0cmFpdCI6IjAgMCA0cHgifQ==","f_title1_font_family":"712","f_title2_font_family":"712","f_title1_font_size":"eyJhbGwiOiIyMSIsInBvcnRyYWl0IjoiMTcifQ==","f_title2_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title1_font_line_height":"1.2","f_title2_font_line_height":"1.2","f_title1_font_weight":"500","f_title2_font_weight":"500","title_txt":"#000000","title_txt2":"#000000","title_txt_hover":"#eab04b","title_txt_hover2":"#eab04b","image_height1":"60","image_height2":"75","f_meta1_font_family":"712","f_meta2_font_family":"712","f_meta1_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_meta2_font_size":"eyJhbGwiOiIxMSIsInBvcnRyYWl0IjoiMTAifQ==","f_meta1_font_line_height":"1","f_meta2_font_line_height":"1","f_meta1_font_weight":"400","f_meta2_font_weight":"400","f_meta1_font_transform":"capitalize","f_meta2_font_transform":"capitalize","author_txt":"#000000","author_txt2":"#000000","author_txt_hover":"#eab04b","author_txt_hover2":"#eab04b","art_excerpt1":"eyJhbGwiOiIxMnB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt2":"eyJwb3J0cmFpdCI6IjhweCAwIDAgMCIsImFsbCI6IjAifQ==","f_ex1_font_family":"712","f_ex2_font_family":"712","f_ex1_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_ex1_font_line_height":"1.6","modules_category_padding1":"0","modules_category_padding2":"0","f_cat1_font_family":"712","f_cat2_font_family":"712","f_cat1_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat2_font_size":"eyJhbGwiOiIxMSIsInBvcnRyYWl0IjoiMTAifQ==","f_cat1_font_line_height":"1","f_cat2_font_line_height":"1","f_cat1_font_weight":"400","f_cat2_font_weight":"400","f_cat1_font_transform":"uppercase","f_cat2_font_transform":"uppercase","cat_bg":"rgba(255,255,255,0)","cat_bg2":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_bg_hover2":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt2":"#000000","cat_txt_hover":"#eab04b","cat_txt_hover2":"#eab04b","meta_padding1":"15px 0 0 0","ajax_pagination":"next_prev","meta_padding2":"0 0 0 15px","show_com1":"none","custom_title":"Receipes","block_template_id":"td_block_template_8","border_color":"#eab04b","f_header_font_size":"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTUifQ==","f_header_font_weight":"500","f_header_font_family":"712","f_header_font_transform":"uppercase","category_id":"","pag_h_bg":"#eab04b","pag_h_border":"#eab04b","tdc_css":"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==","modules_space2":"eyJhbGwiOiIyNiIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","block_type":"td_flex_block_4","separator":"","custom_url":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","mc4_tl":"","mc4_title_tag":"","mc4_el":"","post_ids":"","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","sort":"","popular_by_date":"","linked_posts":"","favourite_only":"","locked_only":"","offset":"","open_in_new_window":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_source":"","el_class":"","td_query_cache":"","td_query_cache_expiration":"","td_ajax_filter_type":"","td_ajax_filter_ids":"","td_filter_default_txt":"All","td_ajax_preloading":"","h_effect":"","modules_border_size1":"","modules_border_style1":"","modules_border_color1":"#eaeaea","modules_divider1":"","modules_divider_color1":"#eaeaea","image_size":"","image_alignment1":"50","image_radius1":"","hide_image":"","show_favourites":"","fav_size":"2","fav_space":"","fav_ico_color":"","fav_ico_color_h":"","fav_bg":"","fav_bg_h":"","fav_shadow_shadow_header":"","fav_shadow_shadow_title":"Shadow","fav_shadow_shadow_size":"","fav_shadow_shadow_offset_horizontal":"","fav_shadow_shadow_offset_vertical":"","fav_shadow_shadow_spread":"","fav_shadow_shadow_color":"","video_icon1":"","video_icon_pos1":"center","video_popup":"yes","video_rec":"","spot_header":"","video_rec_title":"","video_rec_color":"","video_rec_disable":"","autoplay_vid":"yes","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","video_title_color":"","video_title_color_h":"","video_bg":"","video_overlay":"","vid_t_color":"","vid_t_bg_color":"","f_vid_title_font_header":"","f_vid_title_font_title":"Video pop-up article title","f_vid_title_font_settings":"","f_vid_title_font_family":"","f_vid_title_font_size":"","f_vid_title_font_line_height":"","f_vid_title_font_style":"","f_vid_title_font_weight":"","f_vid_title_font_transform":"","f_vid_title_font_spacing":"","f_vid_title_":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show_1":"inline-block","excl_txt_1":"","excl_margin_1":"","excl_padd_1":"","all_excl_border_1":"","all_excl_border_style_1":"solid","excl_radius_1":"","excl_color_1":"","excl_color_h_1":"","excl_bg_1":"","excl_bg_h_1":"","all_excl_border_color_1":"","excl_border_color_h_1":"","f_excl_1_font_header":"","f_excl_1_font_title":"Label text","f_excl_1_font_settings":"","f_excl_1_font_family":"","f_excl_1_font_size":"","f_excl_1_font_line_height":"","f_excl_1_font_style":"","f_excl_1_font_weight":"","f_excl_1_font_transform":"","f_excl_1_font_spacing":"","f_excl_1_":"","meta_info_align1":"","meta_info_horiz1":"content-horiz-left","meta_width1":"","meta_margin1":"","meta_info_border_radius1":"","modules_category_margin1":"","modules_cat_border1":"","modules_category_radius1":"0","show_cat1":"inline-block","modules_extra_cat1":"","show_author1":"inline-block","author_photo":"","author_photo_size1":"","author_photo_space1":"","author_photo_radius1":"","show_date1":"inline-block","show_review1":"inline-block","review_space1":"","review_size1":"2.5","review_distance1":"","excerpt_middle":"","show_audio1":"block","art_audio1":"","art_audio_size1":"1.5","m_padding2":"","modules_border_size2":"","modules_border_style2":"","modules_border_color2":"#eaeaea","modules_divider2":"","modules_divider_color2":"#eaeaea","image_size3":"","image_alignment2":"50","image_floated2":"float_left","image_radius2":"","hide_image3":"","show_favourites2":"","fav_size2":"2","fav_space2":"","fav_ico_color2":"","fav_ico_color_h2":"","fav_bg2":"","fav_bg_h2":"","fav_shadow2_shadow_header":"","fav_shadow2_shadow_title":"Shadow","fav_shadow2_shadow_size":"","fav_shadow2_shadow_offset_horizontal":"","fav_shadow2_shadow_offset_vertical":"","fav_shadow2_shadow_spread":"","fav_shadow2_shadow_color":"","video_icon2":"","video_popup3":"yes","video_rec3":"","video_rec_title3":"","video_rec_color3":"","autoplay_vid3":"yes","show_vid_t3":"block","vid_t_margin3":"","vid_t_padding3":"","excl_show_2":"inline-block","excl_txt_2":"","excl_margin_2":"","excl_padd_2":"","all_excl_border_2":"","all_excl_border_style_2":"solid","excl_radius_2":"","excl_color_2":"","excl_color_h_2":"","excl_bg_2":"","excl_bg_h_2":"","all_excl_border_color_2":"","excl_border_color_h_2":"","f_excl_2_font_header":"","f_excl_2_font_title":"Label text","f_excl_2_font_settings":"","f_excl_2_font_family":"","f_excl_2_font_size":"","f_excl_2_font_line_height":"","f_excl_2_font_style":"","f_excl_2_font_weight":"","f_excl_2_font_transform":"","f_excl_2_font_spacing":"","f_excl_2_":"","meta_info_horiz2":"content-horiz-left","meta_width2":"","meta_margin2":"","meta_info_border_radius2":"","modules_category3":"","modules_category_margin2":"","modules_cat_border2":"","modules_category_radius2":"0","modules_extra_cat2":"","author_photo3":"","author_photo_size2":"","author_photo_space2":"","author_photo_radius2":"","show_date2":"inline-block","show_review2":"inline-block","review_space2":"","review_size2":"2.5","review_distance2":"","excerpt_middle3":"","show_audio2":"block","hide_audio3":"","art_audio2":"","art_audio_size2":"1","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","pag_icons_size":"","f_header_font_header":"","f_header_font_title":"Block header","f_header_font_settings":"","f_header_font_line_height":"","f_header_font_style":"","f_header_font_spacing":"","f_header_":"","f_ajax_font_title":"Ajax categories","f_ajax_font_settings":"","f_ajax_font_family":"","f_ajax_font_size":"","f_ajax_font_line_height":"","f_ajax_font_style":"","f_ajax_font_weight":"","f_ajax_font_transform":"","f_ajax_font_spacing":"","f_ajax_":"","f_more_font_title":"Load more button","f_more_font_settings":"","f_more_font_family":"","f_more_font_size":"","f_more_font_line_height":"","f_more_font_style":"","f_more_font_weight":"","f_more_font_transform":"","f_more_font_spacing":"","f_more_":"","f_title1_font_header":"","f_title1_font_title":"Article title 1","f_title1_font_settings":"","f_title1_font_style":"","f_title1_font_transform":"","f_title1_font_spacing":"","f_title1_":"","f_cat1_font_title":"Article category tag 1","f_cat1_font_settings":"","f_cat1_font_style":"","f_cat1_font_spacing":"","f_cat1_":"","f_meta1_font_title":"Article meta info 1","f_meta1_font_settings":"","f_meta1_font_style":"","f_meta1_font_spacing":"","f_meta1_":"","f_ex1_font_title":"Article excerpt 1","f_ex1_font_settings":"","f_ex1_font_style":"","f_ex1_font_weight":"","f_ex1_font_transform":"","f_ex1_font_spacing":"","f_ex1_":"","f_title2_font_title":"Article title 2","f_title2_font_settings":"","f_title2_font_style":"","f_title2_font_transform":"","f_title2_font_spacing":"","f_title2_":"","f_cat2_font_title":"Article category tag 2","f_cat2_font_settings":"","f_cat2_font_style":"","f_cat2_font_spacing":"","f_cat2_":"","f_meta2_font_title":"Article meta info 2","f_meta2_font_settings":"","f_meta2_font_style":"","f_meta2_font_spacing":"","f_meta2_":"","f_ex2_font_title":"Article excerpt 2","f_ex2_font_settings":"","f_ex2_font_size":"","f_ex2_font_line_height":"","f_ex2_font_style":"","f_ex2_font_weight":"","f_ex2_font_transform":"","f_ex2_font_spacing":"","f_ex2_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","color_overlay":"","meta_bg":"","all_underline_height1":"","all_underline_color1":"#000","cat_style":"","cat_border1":"","cat_border_hover1":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","meta_bg2":"","all_underline_height2":"","all_underline_color2":"#000","cat_border2":"","cat_border_hover2":"","date_txt2":"","ex_txt2":"","com_bg2":"","com_txt2":"","rev_txt2":"","audio_btn_color2":"","audio_time_color2":"","audio_bar_color2":"","audio_bar_curr_color2":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","btn_title":"","ajax_pagination_next_prev_swipe":"","ajax_pagination_infinite_stop":"","css":"","td_column_number":1,"header_color":"","color_preset":"","border_top":"","class":"tdi_147","tdc_css_class":"tdi_147","tdc_css_class_style":"tdi_147_rand_style"}';
block_tdi_147.td_column_number = "1";
block_tdi_147.block_type = "td_flex_block_4";
block_tdi_147.post_count = "3";
block_tdi_147.found_posts = "85";
block_tdi_147.header_color = "";
block_tdi_147.ajax_pagination_infinite_stop = "";
block_tdi_147.max_num_pages = "29";
tdBlocksArray.push(block_tdi_147);
</script><div class="td-block-title-wrap"><h4 class="td-block-title"><span>Receipes</span></h4></div><div id=tdi_147 class="td_block_inner td-mc1-wrap">
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" class="td-image-wrap " title="How to Think and Act in the Plummeting Stock Market" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-696x461.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" title="How to Think and Act in the Plummeting Stock Market">How to Think and Act in the Plummeting Stock Market</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    <div class="td-excerpt">People live better in big houses and in big clothes. I try to contrast; life today is full of contrast. We have to change!...</div>
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_4 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" class="td-image-wrap " title="The Real Economy Has Never Been Tested by a Pandemic" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-218x150.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" title="The Real Economy Has Never Been Tested by a Pandemic">The Real Economy Has Never Been Tested by a Pandemic</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                                                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_4 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" class="td-image-wrap " title="More and More People Stay Home as Coronavirus Spreads" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-218x150.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" title="More and More People Stay Home as Coronavirus Spreads">More and More People Stay Home as Coronavirus Spreads</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                                                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_147" data-td_block_id="tdi_147"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_147" data-td_block_id="tdi_147"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div></div></div></div></div></div><div class="vc_column tdi_149  wpb_column vc_column_container tdc-column td-pb-span4 td-is-sticky">
<style scoped>.tdi_149{vertical-align:baseline}.tdi_149>.wpb_wrapper,.tdi_149>.wpb_wrapper>.tdc-elements{display:block}.tdi_149>.wpb_wrapper>.tdc-elements{width:100%}.tdi_149>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_149>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" data-sticky-enabled-on="W3RydWUsdHJ1ZSx0cnVlLHRydWVd" data-sticky-offset="20" data-sticky-is-width-auto="W2ZhbHNlLGZhbHNlLGZhbHNlLGZhbHNlXQ=="><div class="td_block_wrap td_block_social_counter tdi_150 td-social-style8 td-social-boxed td-social-font-icons td-pb-border-top td_block_template_1">
<style>.tdi_150{margin-bottom:38px!important}@media (min-width:768px) and (max-width:1018px){.tdi_150{margin-bottom:30px!important}}</style>
<style>.td_block_social_counter{font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif);font-weight:bold;font-size:11px;color:#fff;margin-bottom:47px}.td_block_social_counter .td-sp{position:relative}.td_block_social_counter .td-sp:after{content:'';width:1px;height:16px;background-color:rgba(255,255,255,0.1);position:absolute;right:-1px;top:8px}.td-social-list{*zoom:1}.td-social-list:before,.td-social-list:after{display:table;content:'';line-height:0}.td-social-list:after{clear:both}.td_social_type{width:100%;margin-bottom:10px;-webkit-transition:background-color 0.20s cubic-bezier(0,0,0.58,1) 0s;transition:background-color 0.20s cubic-bezier(0,0,0.58,1) 0s}.td_social_type:last-child{margin-bottom:0}.td_social_type:hover .td-social-box{background-color:#222}.td_social_type .td_social_info{padding:0 0 0 9px;position:relative;top:-12px}.td_social_type .td-social-box{height:32px;position:relative;overflow:hidden}.td_social_type .td-social-box .td-sp{display:inline-block}.td_social_type .td_social_number{border-left:1px solid rgba(255,255,255,0.1);padding-left:9px}.td_social_type .td_social_button{float:right;border-left:1px solid rgba(255,255,255,0.1);padding:0 14px;margin-top:8px;top:9px;height:16px;line-height:15px;text-transform:uppercase}.td_social_type .td_social_button a{color:#fff}.td_social_type .td_social_button a:after{content:'';display:block;height:32px;position:absolute;right:0;top:0;width:324px}.td_social_type .td_social_button a:hover{color:inherit;text-decoration:none!important}.td_social_type a{color:#fff}.td_social_facebook .td-social-box{background-color:#516eab}.td_social_rss .td-social-box{background-color:#ff6600}.td_social_soundcloud .td-social-box{background-color:#ff5419}.td_social_twitter .td-social-box{background-color:#29c5f6}.td_social_vimeo .td-social-box{background-color:#006599}.td_social_youtube .td-social-box{background-color:#e14e42}.td_social_instagram .td-social-box{background-color:#417096}.td_social_pinterest .td-social-box{background-color:#ca212a}.td_social_tiktok .td-social-box{background-color:#009191}.td_social_twitch .td-social-box{background-color:#9147FF}.td_social_steam .td-social-box{background-color:#c7d5e0}.td-social-boxed .td_social_type{text-align:center;width:33.3333%;margin:0;float:left}.td-social-boxed .td_social_type .td-social-box{height:100px}.td-social-boxed .td_social_type span{display:block;width:100%;padding:0}.td-social-boxed .td-sp{margin-top:10px}.td-social-boxed .td-sp::after{display:none}.td-social-boxed .td_social_info{font-size:17px;top:0}.td-social-boxed .td_social_info_name{font-size:13px;font-weight:normal}.td-social-boxed .td_social_button{opacity:0;position:absolute;height:100%;margin-top:0;top:0}.td-social-boxed .td_social_button a:after{width:100%;height:100%}.td-social-colored .td_social_facebook .td-sp{background-color:#516eab}.td-social-colored .td_social_rss .td-sp{background-color:#ff6600}.td-social-colored .td_social_soundcloud .td-sp{background-color:#ff5419}.td-social-colored .td_social_twitter .td-sp{background-color:#29c5f6}.td-social-colored .td_social_vimeo .td-sp{background-color:#006599}.td-social-colored .td_social_youtube .td-sp{background-color:#e14e42}.td-social-colored .td_social_instagram .td-sp{background-color:#417096}.td-social-colored .td_social_pinterest .td-sp{background-color:#ca212a}.td-social-colored .td_social_tiktok .td-sp{background-color:#009191}.td-social-colored .td_social_twitch .td-sp{background-color:#9147FF}.td-social-colored .td_social_steam .td-sp{background-color:#c7d5e0}.td-social-font-icons .td-sp{background:none;font-family:'newspaper',sans-serif;font-size:14px;text-align:center;font-weight:normal}.td-social-font-icons .td-sp:before{position:absolute;top:0;left:0;right:0;line-height:30px}.td-social-font-icons .td_social_facebook .td-sp:before{content:'\e818';color:#516eab}.td-social-font-icons .td_social_rss .td-sp:before{content:'\e828';color:#ff6600}.td-social-font-icons .td_social_soundcloud .td-sp:before{content:'\e82b';color:#ff5419}.td-social-font-icons .td_social_twitter .td-sp:before{content:'\e831';color:#000}.td-social-font-icons .td_social_vimeo .td-sp:before{content:'\e832';color:#006599}.td-social-font-icons .td_social_youtube .td-sp:before{content:'\e836';color:#e14e42}.td-social-font-icons .td_social_instagram .td-sp:before{content:'\e81d';color:#417096}.td-social-font-icons .td_social_pinterest .td-sp:before{content:'\e825';color:#ca212a}.td-social-font-icons .td_social_tiktok .td-sp:before{content:'\e9d6';color:#009191}.td-social-font-icons .td_social_twitch .td-sp:before{content:'\e909';color:#9147FF}.td-social-font-icons .td_social_steam .td-sp:before{content:'\e939';color:#1b2838}.td_block_social_counter.td-social-style8{color:#000}.td_block_social_counter.td-social-style8 .td-social-list{margin-left:-8px;margin-right:-8px}.td_block_social_counter.td-social-style8 .td_social_type .td-social-box{background-color:transparent;border:1px solid #ededed;margin:0 8px 16px}.td_block_social_counter.td-social-style8 .td_social_type .td_social_button{margin-top:7px}.td_block_social_counter.td-social-style8 .td_social_type a{color:#000}.td_block_social_counter.td-social-style8 .td_social_type:hover{color:#555}.td_block_social_counter.td-social-style8 .td_social_type:hover .td_social_type a{color:#555}.td_block_social_counter.td-social-style8 .td-sp{font-size:28px}.td_block_social_counter.td-social-style8 .td-sp:after{top:7px;background-color:#000;opacity:0.1}.td_block_social_counter.td-social-style8 .td-sp-twitter{font-size:22px}.td_block_social_counter.td-social-style8 .td_social_button{border-color:#ededed}@media (min-width:1019px) and (max-width:1140px){.td_social_type .td_social_button a:after{width:300px}}@media (min-width:768px) and (max-width:1018px){.td_social_type .td_social_button a:after{width:228px}}@media (max-width:767px){.td_social_type .td_social_button a:after{width:100%}}@media (min-width:768px) and (max-width:1018px){.td-social-boxed .td_social_type .td-social-box{height:70px}}@media (min-width:768px) and (max-width:1018px){.td-social-boxed .td-sp{margin-top:4px}}@media (min-width:768px) and (max-width:1018px){.td-social-boxed .td_social_info{font-size:13px;top:-12px}}@media (min-width:768px) and (max-width:1018px){.td-social-boxed .td_social_info_name{top:-17px;font-size:10px}}@media (max-width:767px){.td_block_social_counter.td-social-style8 .td-social-list{margin-left:-2px;margin-right:-2px}}@media (min-width:768px) and (max-width:1018px){.td_block_social_counter.td-social-style8 .td_social_type .td-social-box{margin:0 2px 4px}}@media (max-width:767px){.td_block_social_counter.td-social-style8 .td_social_type .td-social-box{margin:0 2px 4px}}@media (min-width:768px) and (max-width:1018px){.td_block_social_counter.td-social-style8 .td-sp{font-size:21px}}@media (max-width:767px){.td_block_social_counter.td-social-style8 .td-sp{font-size:28px}}@media (min-width:768px) and (max-width:1018px){.td_block_social_counter.td-social-style8 .td-sp-twitter{font-size:18px}}</style><div class="td-block-title-wrap"></div><div class="td-social-list"><div class="td_social_type td-pb-margin-side td_social_facebook"><div class="td-social-box"><div class="td-sp td-sp-facebook"></div><span class="td_social_info td_social_info_counter">0</span><span class="td_social_info td_social_info_name">Fans</span><span class="td_social_button"><a href="https://www.facebook.com/tagdiv"  >Like</a></span></div></div><div class="td_social_type td-pb-margin-side td_social_twitter"><div class="td-social-box"><div class="td-sp td-sp-twitter"></div><span class="td_social_info td_social_info_counter">3,912</span><span class="td_social_info td_social_info_name">Followers</span><span class="td_social_button"><a href="https://twitter.com/tagdivofficial"  >Follow</a></span></div></div><div class="td_social_type td-pb-margin-side td_social_youtube"><div class="td-social-box"><div class="td-sp td-sp-youtube"></div><span class="td_social_info td_social_info_counter">0</span><span class="td_social_info td_social_info_name">Subscribers</span><span class="td_social_button"><a href="https://www.youtube.com/tagdiv"  >Subscribe</a></span></div></div></div></div><div class="td_block_wrap td-a-rec td-a-rec-id-custom-spot td-a-rec-img tdi_151 td_block_template_1">
<style>.tdi_151{margin-bottom:40px!important}@media (min-width:768px) and (max-width:1018px){.tdi_151{margin-bottom:20px!important}}@media (max-width:767px){.tdi_151{margin-bottom:38px!important}}</style>
<style>.tdi_151.td-a-rec{text-align:center}.tdi_151.td-a-rec:not(.td-a-rec-no-translate){transform:translateZ(0)}.tdi_151 .td-element-style{z-index:-1}.tdi_151 .td-spot-id-spot_img_hidden{display:none}.tdi_151 .td-adspot-title{display:block}.tdi_151 .td_spot_img_all img,.tdi_151 .td_spot_img_tl img,.tdi_151 .td_spot_img_tp img,.tdi_151 .td_spot_img_mob img{border-style:none}</style><div style="display: inline-block"><span class="td-adspot-title">- Advertisement -</span><a href="#" class="td_spot_img_all"><img fetchpriority="high" decoding="async" src="https://www.reviewboard.com/wp-content/uploads/2022/08/rec300.png"  alt="spot_img" width="300"  height="250"  /></a></div></div><div class="td_block_wrap td_flex_block_1 tdi_152 td_with_ajax_pagination td-pb-border-top td_block_template_8 td_flex_block"  data-td-block-uid="tdi_152" >
<style>.tdi_152 .td-block-title>*:before,.tdi_152 .td-block-title>*:after{background-color:#dd3333!important}@media (max-width:767px){.tdi_152{margin-bottom:40px!important}}</style>
<style>.tdi_152 .td-image-wrap{padding-bottom:100%}.tdi_152 .entry-thumb{background-position:center 50%}.tdi_152 .td-image-container{flex:0 0 30%;width:30%;display:block;order:0}.ie10 .tdi_152 .td-image-container,.ie11 .tdi_152 .td-image-container{flex:0 0 auto}.tdi_152 .td-module-container{flex-direction:row;border-color:#eaeaea!important}.ie10 .tdi_152 .td-module-meta-info,.ie11 .tdi_152 .td-module-meta-info{flex:1}body .tdi_152 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_152 .td-module-meta-info{padding:0 0 0 15px;display:flex;flex-direction:column;justify-content:center;border-color:#eaeaea}.tdi_152 .td-category-pos-above .td-post-category{align-self:flex-start}.tdi_152 .td_module_wrap{padding-left:20px;padding-right:20px;padding-bottom:12px;margin-bottom:12px}.tdi_152 .td_block_inner{margin-left:-20px;margin-right:-20px}.tdi_152 .td-module-container:before{bottom:-12px;border-color:#eaeaea}.tdi_152 .entry-thumb,.tdi_152 .td-image-wrap:before,.tdi_152 .td-image-wrap:after,.tdi_152 .entry-thumb:before,.tdi_152 .entry-thumb:after{border-radius:100%}.tdi_152 .td-post-vid-time{display:block}.tdi_152 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_152 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_152 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_152 .td-excerpt{display:none;margin:0px;column-count:1;column-gap:48px}.tdi_152 .td-audio-player{opacity:1;visibility:visible;height:auto;font-size:13px}.tdi_152 .td-read-more{display:none}.tdi_152 .td-author-date{display:none}.tdi_152 .td-post-author-name{display:none}.tdi_152 .td-post-date,.tdi_152 .td-post-author-name span{display:none}.tdi_152 .entry-review-stars{display:none}.tdi_152 .td-icon-star,.tdi_152 .td-icon-star-empty,.tdi_152 .td-icon-star-half{font-size:15px}.tdi_152 .td-module-comments{display:none}.tdi_152 .td_module_wrap:nth-last-child(1){margin-bottom:0;padding-bottom:0}.tdi_152 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none}.tdi_152 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#dd3333}.tdi_152 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_152 .td_module_wrap:hover .td-module-title a{color:#dd3333!important}.tdi_152.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_152 .td-load-more-wrap a:hover{background-color:#dd3333!important;border-color:#dd3333!important;border-color:#dd3333!important}.tdi_152 .td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_152 .entry-title{margin:8px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_152 .td-block-title a,.tdi_152 .td-block-title span{font-family:Rubik!important;font-size:17px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_152 .td-editor-date,.tdi_152 .td-editor-date .td-post-author-name a,.tdi_152 .td-editor-date .entry-date,.tdi_152 .td-module-comments a{font-family:Rubik!important}html:not([class*='ie']) .tdi_152 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_152 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_152 .td_module_wrap{padding-bottom:10px;margin-bottom:10px;padding-bottom:10px!important;margin-bottom:10px!important}.tdi_152 .td-module-container:before{bottom:-10px}.tdi_152 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_152 .td_module_wrap .td-module-container:before{display:block!important}.tdi_152 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_152 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_152 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_152 .td-module-meta-info{padding:0 0 0 10px}.tdi_152 .td_module_wrap{padding-bottom:7.5px;margin-bottom:7.5px;padding-bottom:7.5px!important;margin-bottom:7.5px!important}.tdi_152 .td-module-container:before{bottom:-7.5px}.tdi_152 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_152 .td_module_wrap .td-module-container:before{display:block!important}.tdi_152 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_152 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_152 .entry-title{margin:5px 0 0 0;font-size:11px!important}.tdi_152 .td-block-title a,.tdi_152 .td-block-title span{font-size:15px!important}@media (min-width:768px){.tdi_152 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_152 .td_module_wrap{width:100%;float:left;padding-bottom:12px;margin-bottom:12px;padding-bottom:12px!important;margin-bottom:12px!important}.rtl .tdi_152 .td_module_wrap{float:right}.tdi_152 .td-module-container:before{bottom:-12px}.tdi_152 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_152 .td_module_wrap .td-module-container:before{display:block!important}.tdi_152 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_152 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_152 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_152 = new tdBlock();
block_tdi_152.id = "tdi_152";
block_tdi_152.atts = '{"modules_on_row":"eyJwaG9uZSI6IjEwMCUifQ==","image_floated":"float_left","image_width":"30","image_height":"100","show_btn":"none","show_excerpt":"none","modules_category":"above","show_date":"none","show_review":"none","show_com":"none","show_author":"none","meta_padding":"eyJhbGwiOiIwIDAgMCAxNXB4IiwicG9ydHJhaXQiOiIwIDAgMCAxMHB4In0=","art_title":"eyJhbGwiOiI4cHggMCAwIDAiLCJwb3J0cmFpdCI6IjVweCAwIDAgMCJ9","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_weight":"500","f_title_font_line_height":"1.2","title_txt":"#000000","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","f_cat_font_family":"712","f_cat_font_transform":"uppercase","f_cat_font_weight":"400","f_cat_font_size":"11","modules_category_padding":"0","all_modules_space":"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMTUiLCJsYW5kc2NhcGUiOiIyMCJ9","category_id":"","ajax_pagination":"next_prev","sort":"","title_txt_hover":"#dd3333","tdc_css":"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJhbGwiOnsiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9","cat_txt":"#000000","cat_txt_hover":"#dd3333","f_more_font_weight":"","f_more_font_transform":"","f_more_font_family":"","image_size":"td_150x0","f_meta_font_family":"712","custom_title":"Most Popular","block_template_id":"td_block_template_8","border_color":"#dd3333","art_excerpt":"0","meta_info_align":"center","f_cat_font_line_height":"1","pag_h_bg":"#dd3333","image_radius":"100%","td_ajax_filter_type":"","td_ajax_filter_ids":"","f_header_font_size":"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTUifQ==","f_header_font_weight":"500","f_header_font_transform":"uppercase","f_header_font_family":"712","pag_h_border":"#dd3333","block_type":"td_flex_block_1","separator":"","custom_url":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","post_ids":"","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","popular_by_date":"","linked_posts":"","favourite_only":"","locked_only":"","limit":"5","offset":"","open_in_new_window":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_source":"","el_class":"","td_query_cache":"","td_query_cache_expiration":"","td_filter_default_txt":"All","td_ajax_preloading":"","container_width":"","modules_gap":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_border_radius":"","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","hide_image":"","show_favourites":"","fav_size":"2","fav_space":"","fav_ico_color":"","fav_ico_color_h":"","fav_bg":"","fav_bg_h":"","fav_shadow_shadow_header":"","fav_shadow_shadow_title":"Shadow","fav_shadow_shadow_size":"","fav_shadow_shadow_offset_horizontal":"","fav_shadow_shadow_offset_vertical":"","fav_shadow_shadow_spread":"","fav_shadow_shadow_color":"","video_icon":"","video_popup":"yes","video_rec":"","spot_header":"","video_rec_title":"","video_rec_color":"","video_rec_disable":"","autoplay_vid":"yes","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","video_title_color":"","video_title_color_h":"","video_bg":"","video_overlay":"","vid_t_color":"","vid_t_bg_color":"","f_vid_title_font_header":"","f_vid_title_font_title":"Video pop-up article title","f_vid_title_font_settings":"","f_vid_title_font_family":"","f_vid_title_font_size":"","f_vid_title_font_line_height":"","f_vid_title_font_style":"","f_vid_title_font_weight":"","f_vid_title_font_transform":"","f_vid_title_font_spacing":"","f_vid_title_":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","meta_info_horiz":"layout-default","meta_width":"","meta_margin":"","meta_space":"","art_btn":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","meta_info_border_radius":"","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","review_space":"","review_size":"2.5","review_distance":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","excerpt_inline":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1.5","btn_title":"","btn_margin":"","btn_padding":"","btn_border_width":"","btn_radius":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","pag_icons_size":"","f_header_font_header":"","f_header_font_title":"Block header","f_header_font_settings":"","f_header_font_line_height":"","f_header_font_style":"","f_header_font_spacing":"","f_header_":"","f_ajax_font_title":"Ajax categories","f_ajax_font_settings":"","f_ajax_font_family":"","f_ajax_font_size":"","f_ajax_font_line_height":"","f_ajax_font_style":"","f_ajax_font_weight":"","f_ajax_font_transform":"","f_ajax_font_spacing":"","f_ajax_":"","f_more_font_title":"Load more button","f_more_font_settings":"","f_more_font_size":"","f_more_font_line_height":"","f_more_font_style":"","f_more_font_spacing":"","f_more_":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","f_btn_font_title":"Article read more button","f_btn_font_settings":"","f_btn_font_family":"","f_btn_font_size":"","f_btn_font_line_height":"","f_btn_font_style":"","f_btn_font_weight":"","f_btn_font_transform":"","f_btn_font_spacing":"","f_btn_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"","cat_style":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","btn_bg":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border":"","btn_border_hover":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","ajax_pagination_next_prev_swipe":"","ajax_pagination_infinite_stop":"","css":"","td_column_number":1,"header_color":"","color_preset":"","border_top":"","class":"tdi_152","tdc_css_class":"tdi_152","tdc_css_class_style":"tdi_152_rand_style"}';
block_tdi_152.td_column_number = "1";
block_tdi_152.block_type = "td_flex_block_1";
block_tdi_152.post_count = "5";
block_tdi_152.found_posts = "85";
block_tdi_152.header_color = "";
block_tdi_152.ajax_pagination_infinite_stop = "";
block_tdi_152.max_num_pages = "17";
tdBlocksArray.push(block_tdi_152);
</script><div class="td-block-title-wrap"><h4 class="td-block-title"><span>Most Popular</span></h4></div><div id=tdi_152 class="td_block_inner td-mc1-wrap">
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" class="td-image-wrap " title="How to Think and Act in the Plummeting Stock Market" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-150x99.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" title="How to Think and Act in the Plummeting Stock Market">How to Think and Act in the Plummeting Stock Market</a></h3>
                    
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" class="td-image-wrap " title="The Real Economy Has Never Been Tested by a Pandemic" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-150x100.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" title="The Real Economy Has Never Been Tested by a Pandemic">The Real Economy Has Never Been Tested by a Pandemic</a></h3>
                    
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" class="td-image-wrap " title="More and More People Stay Home as Coronavirus Spreads" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-150x100.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" title="More and More People Stay Home as Coronavirus Spreads">More and More People Stay Home as Coronavirus Spreads</a></h3>
                    
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" class="td-image-wrap " title="Witnessing the Birth of the New Coronavirus Economy" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/79-150x100.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" title="Witnessing the Birth of the New Coronavirus Economy">Witnessing the Birth of the New Coronavirus Economy</a></h3>
                    
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" class="td-image-wrap " title="Companies Are Putting Profits Ahead of Public Health" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/80-150x100.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" title="Companies Are Putting Profits Ahead of Public Health">Companies Are Putting Profits Ahead of Public Health</a></h3>
                    
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_152" data-td_block_id="tdi_152"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_152" data-td_block_id="tdi_152"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div></div></div></div><div id="tdi_153" class="tdc-row"><div class="vc_row tdi_154  wpb_row td-pb-row" >
<style scoped>.tdi_154,.tdi_154 .tdc-columns{min-height:0}.tdi_154,.tdi_154 .tdc-columns{display:block}.tdi_154 .tdc-columns{width:100%}.tdi_154:before,.tdi_154:after{display:table}</style><div class="vc_column tdi_156  wpb_column vc_column_container tdc-column td-pb-span12">
<style scoped>.tdi_156{vertical-align:baseline}.tdi_156>.wpb_wrapper,.tdi_156>.wpb_wrapper>.tdc-elements{display:block}.tdi_156>.wpb_wrapper>.tdc-elements{width:100%}.tdi_156>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_156>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="td-big-grid-flex td_block_wrap td_block_big_grid_flex_1 tdi_158 td-pb-border-top td_block_template_1 td-big-grid-flex-posts" data-td-block-uid="tdi_158" >
<style>@media (max-width:767px){.tdi_158{margin-bottom:40px!important}}</style>
<style>.td_block_big_grid_flex_1 .td-module-container{position:relative}.td_block_big_grid_flex_1 .td-image-wrap{padding-bottom:75%}.td_block_big_grid_flex_1 .td-module-meta-info{padding:22px 20px}.td_block_big_grid_flex_1 .td-module-title{font-family:var(--td_default_google_font_2,'Roboto',sans-serif);font-size:27px;font-weight:500;line-height:34px;margin:0 0 9px 0}.td_block_big_grid_flex_1 .td-editor-date{display:inline-block}body .tdi_158 .entry-thumb{background-position:center 50%}body .tdi_158 .td-image-wrap{padding-bottom:120%}body .tdi_158 .td-video-play-ico{top:50%;left:50%;transform:translate(-50%,-50%)}body .tdi_158 .td-module-meta-info{text-align:center;right:0;margin:0 auto;top:50%;transform:translateY(-50%);padding:15px}.tdi_158 .td-module-exclusive .td-module-title a:before{display:inline-block}body .tdi_158 .td-post-category{margin:0px;padding:0px;background-color:rgba(255,255,255,0);font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}body .tdi_158 .td-post-category:not(.td-post-extra-category){display:inline-block}body .tdi_158 .td-module-title a{box-shadow:inset 0 0 0 0 #000}body .tdi_158 .td-editor-date{display:inline}body .tdi_158 .td-post-author-name{display:inline-block}body .tdi_158 .td-post-date,body .tdi_158 .td-post-author-name span{display:inline-block}body .tdi_158 .entry-review-stars{display:inline-block;color:#fff}body .tdi_158 .td-icon-star,body .tdi_158 .td-icon-star-empty,body .tdi_158 .td-icon-star-half{font-size:15px}body .tdi_158 .td-big-grid-flex-post:nth-child(4n+1){clear:both}body .tdi_158 .td-image-wrap:before{content:'';background-color:rgba(0,0,0,0.32)}body .tdi_158 .td-module-container:hover .td-post-category{background-color:rgba(255,255,255,0)}body .tdi_158 .entry-title{margin:12px 0 20px;font-family:Rubik!important;font-size:19px!important;line-height:1.2!important}body .tdi_158 .td-editor-date,body .tdi_158 .td-editor-date .entry-date,body .tdi_158 .td-module-comments a{font-family:Rubik!important;font-size:13px!important;font-weight:400!important;text-transform:capitalize!important}body .tdi_158 .td-post-author-name a{font-weight:400}html:not([class*='ie']) body .tdi_158 .entry-thumb:after{background-color:#008d7f;}@media (max-width:767px){.td_block_big_grid_flex_1 .td-big-grid-flex-post{width:100%}}@media (min-width:767px){body .tdi_158 .td-big-grid-flex-post{width:25%}}@media (min-width:767px){body .tdi_158 .td-big-grid-flex-post{padding-left:2.5px;padding-right:2.5px}body .tdi_158 .td_block_inner{margin-left:-2.5px;margin-right:-2.5px}}@media (max-width:767px){body .tdi_158 .td-big-grid-flex-post{margin-bottom:5px}body .tdi_158 .td-big-grid-flex-post:last-child{margin-bottom:0}}@media (min-width:768px){body .tdi_158 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:767px){body .tdi_158 .td-big-grid-flex-post:nth-last-child(-n+4){margin-bottom:0!important;padding-bottom:0!important}body .tdi_158 .td-big-grid-flex-post .td-module-container:before{display:block!important}body .tdi_158 .td-big-grid-flex-post:nth-last-child(-n+4) .td-module-container:before{display:none!important}}@media (min-width:1141px){html:not([class*='ie']) body .tdi_158 .entry-thumb:after{content:'';width:100%;height:100%;position:absolute;top:0;left:0;opacity:0;transition:opacity 1s ease;-webkit-transition:opacity 1s ease;mix-blend-mode:color}html:not([class*='ie']) body .tdi_158 .td-module-container:hover .entry-thumb:after{opacity:1}}@media (min-width:1019px) and (max-width:1140px){body .tdi_158 .td-module-meta-info{padding:12px}body .tdi_158 .td-module-title a{box-shadow:inset 0 0 0 0 #000}body .tdi_158 .td-big-grid-flex-post{clear:none!important}body .tdi_158 .td-big-grid-flex-post:nth-child(4n+1){clear:both!important}body .tdi_158 .entry-title{margin:10px 0 15px;font-size:17px!important}@media (min-width:767px){body .tdi_158 .td-big-grid-flex-post{padding-left:2px;padding-right:2px}body .tdi_158 .td_block_inner{margin-left:-2px;margin-right:-2px}}@media (max-width:767px){body .tdi_158 .td-big-grid-flex-post{margin-bottom:4px}body .tdi_158 .td-big-grid-flex-post:last-child{margin-bottom:0}}@media (min-width:768px){body .tdi_158 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){body .tdi_158 .td-module-meta-info{padding:10px}body .tdi_158 .td-module-title a{box-shadow:inset 0 0 0 0 #000}body .tdi_158 .td-big-grid-flex-post{clear:none!important}body .tdi_158 .td-big-grid-flex-post:nth-child(4n+1){clear:both!important}body .tdi_158 .entry-title{margin:8px 0 15px;font-size:15px!important}body .tdi_158 .td-post-category{font-size:11px!important}body .tdi_158 .td-editor-date,body .tdi_158 .td-editor-date .entry-date,body .tdi_158 .td-module-comments a{font-size:11px!important}@media (min-width:767px){body .tdi_158 .td-big-grid-flex-post{padding-left:1.5px;padding-right:1.5px}body .tdi_158 .td_block_inner{margin-left:-1.5px;margin-right:-1.5px}}@media (max-width:767px){body .tdi_158 .td-big-grid-flex-post{margin-bottom:3px}body .tdi_158 .td-big-grid-flex-post:last-child{margin-bottom:0}}@media (min-width:768px){body .tdi_158 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){body .tdi_158 .td-module-meta-info{padding:20px}body .tdi_158 .td-module-title a{box-shadow:inset 0 0 0 0 #000}body .tdi_158 .td-big-grid-flex-post{clear:none!important}body .tdi_158 .td-big-grid-flex-post:nth-child(4n+1){clear:both!important}body .tdi_158 .entry-title{margin:15px 0 25px;font-size:21px!important}body .tdi_158 .td-post-category{font-size:15px!important}body .tdi_158 .td-editor-date,body .tdi_158 .td-editor-date .entry-date,body .tdi_158 .td-module-comments a{font-size:15px!important}@media (min-width:767px){body .tdi_158 .td-big-grid-flex-post{padding-left:1.5px;padding-right:1.5px}body .tdi_158 .td_block_inner{margin-left:-1.5px;margin-right:-1.5px}}@media (max-width:767px){body .tdi_158 .td-big-grid-flex-post{margin-bottom:3px}body .tdi_158 .td-big-grid-flex-post:last-child{margin-bottom:0}}@media (min-width:768px){body .tdi_158 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><div id=tdi_158 class="td_block_inner">
        <div class="td_module_flex_6 td-animation-stack td-big-grid-flex-post td-big-grid-flex-post-0 td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                <div class="td-image-container">
                    <div class="td-module-thumb"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" class="td-image-wrap " title="How to Think and Act in the Plummeting Stock Market" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-696x461.jpg"  ></span></a></div>                </div>

                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <div class="tdb-module-title-wrap">
                        <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" title="How to Think and Act in the Plummeting Stock Market">How to Think and Act in the Plummeting Stock Market</a></h3>                    </div>

                                        
                                            <div class="td-editor-date">
                            <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                    </div>
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex_6 td-animation-stack td-big-grid-flex-post td-big-grid-flex-post-1 td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                <div class="td-image-container">
                    <div class="td-module-thumb"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" class="td-image-wrap " title="The Real Economy Has Never Been Tested by a Pandemic" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-696x464.jpg"  ></span></a></div>                </div>

                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <div class="tdb-module-title-wrap">
                        <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" title="The Real Economy Has Never Been Tested by a Pandemic">The Real Economy Has Never Been Tested by a Pandemic</a></h3>                    </div>

                                        
                                            <div class="td-editor-date">
                            <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                    </div>
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex_6 td-animation-stack td-big-grid-flex-post td-big-grid-flex-post-2 td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                <div class="td-image-container">
                    <div class="td-module-thumb"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" class="td-image-wrap " title="More and More People Stay Home as Coronavirus Spreads" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-696x464.jpg"  ></span></a></div>                </div>

                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <div class="tdb-module-title-wrap">
                        <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" title="More and More People Stay Home as Coronavirus Spreads">More and More People Stay Home as Coronavirus Spreads</a></h3>                    </div>

                                        
                                            <div class="td-editor-date">
                            <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                    </div>
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex_6 td-animation-stack td-big-grid-flex-post td-big-grid-flex-post-3 td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                <div class="td-image-container">
                    <div class="td-module-thumb"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" class="td-image-wrap " title="Witnessing the Birth of the New Coronavirus Economy" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/79-696x464.jpg"  ></span></a></div>                </div>

                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <div class="tdb-module-title-wrap">
                        <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" title="Witnessing the Birth of the New Coronavirus Economy">Witnessing the Birth of the New Coronavirus Economy</a></h3>                    </div>

                                        
                                            <div class="td-editor-date">
                            <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                            <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:49-04:00" >August 30, 2022</time></span>                                                    </div>
                                    </div>
            </div>
        </div>

        </div></div></div></div></div></div><div id="tdi_159" class="tdc-row"><div class="vc_row tdi_160  wpb_row td-pb-row" >
<style scoped>.tdi_160,.tdi_160 .tdc-columns{min-height:0}.tdi_160,.tdi_160 .tdc-columns{display:block}.tdi_160 .tdc-columns{width:100%}.tdi_160:before,.tdi_160:after{display:table}</style><div class="vc_column tdi_162  wpb_column vc_column_container tdc-column td-pb-span8">
<style scoped>.tdi_162{vertical-align:baseline}.tdi_162>.wpb_wrapper,.tdi_162>.wpb_wrapper>.tdc-elements{display:block}.tdi_162>.wpb_wrapper>.tdc-elements{width:100%}.tdi_162>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_162>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="td_block_wrap td_flex_block_1 tdi_163 td_with_ajax_pagination td-pb-border-top td_block_template_8 td_flex_block"  data-td-block-uid="tdi_163" >
<style>.tdi_163 .td-block-title>*:before,.tdi_163 .td-block-title>*:after{background-color:#478fe0!important}@media (max-width:767px){.tdi_163{margin-bottom:40px!important}}</style>
<style>.tdi_163 .td-image-wrap{padding-bottom:70%}.tdi_163 .entry-thumb{background-position:center 50%}.tdi_163 .td-image-container{flex:0 0 30%;width:30%;display:block;order:0}.ie10 .tdi_163 .td-image-container,.ie11 .tdi_163 .td-image-container{flex:0 0 auto}.tdi_163 .td-module-container{flex-direction:row;border-color:#eaeaea!important}.ie10 .tdi_163 .td-module-meta-info,.ie11 .tdi_163 .td-module-meta-info{flex:1}body .tdi_163 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_163 .td-module-meta-info{padding:0 0 0 15px;display:flex;flex-direction:column;justify-content:center;border-color:#eaeaea}.tdi_163 .td-category-pos-above .td-post-category{align-self:flex-start}.tdi_163 .td_module_wrap{padding-left:20px;padding-right:20px;padding-bottom:12px;margin-bottom:12px}.tdi_163 .td_block_inner{margin-left:-20px;margin-right:-20px}.tdi_163 .td-module-container:before{bottom:-12px;border-color:#eaeaea}.tdi_163 .td-post-vid-time{display:block}.tdi_163 .td-post-category{margin:2px 8px 0 0;padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_163 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_163 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_163 .td-audio-player{opacity:1;visibility:visible;height:auto;font-size:13px}.tdi_163 .td-read-more{display:none}.tdi_163 .td-author-date{display:inline}.tdi_163 .entry-review-stars{display:none}.tdi_163 .td-icon-star,.tdi_163 .td-icon-star-empty,.tdi_163 .td-icon-star-half{font-size:15px}.tdi_163 .td-module-comments{display:none}.tdi_163 .td_module_wrap:nth-last-child(1){margin-bottom:0;padding-bottom:0}.tdi_163 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none}.tdi_163 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#478fe0}.tdi_163 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_163 .td_module_wrap:hover .td-module-title a{color:#478fe0!important}.tdi_163 .td-post-author-name:hover a{color:#478fe0}.tdi_163.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_163 .td-load-more-wrap a:hover{background-color:#478fe0!important;border-color:#478fe0!important;border-color:#478fe0!important}.tdi_163 .td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_163 .entry-title{margin:0 0 10px;font-family:Rubik!important;font-size:20px!important;line-height:1.2!important;font-weight:500!important}.tdi_163 .td-excerpt{margin:10px 0 0;column-count:1;column-gap:48px;font-family:Rubik!important;font-size:13px!important;line-height:1.6!important;font-weight:400!important}.tdi_163 .td-editor-date{margin:0px}.tdi_163 .td-block-title a,.tdi_163 .td-block-title span{font-family:Rubik!important;font-size:17px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_163 .td-editor-date,.tdi_163 .td-editor-date .td-post-author-name a,.tdi_163 .td-editor-date .entry-date,.tdi_163 .td-module-comments a{font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:capitalize!important}html:not([class*='ie']) .tdi_163 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_163 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_163 .td_module_wrap{padding-left:15px;padding-right:15px;padding-bottom:10px;margin-bottom:10px;padding-bottom:10px!important;margin-bottom:10px!important}.tdi_163 .td_block_inner{margin-left:-15px;margin-right:-15px}.tdi_163 .td-module-container:before{bottom:-10px}.tdi_163 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_163 .td_module_wrap .td-module-container:before{display:block!important}.tdi_163 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_163 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_163 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_163 .td_module_wrap{padding-bottom:7.5px;margin-bottom:7.5px;padding-bottom:7.5px!important;margin-bottom:7.5px!important}.tdi_163 .td-module-container:before{bottom:-7.5px}.tdi_163 .td-post-category{margin:2px 5px 0 0;font-size:11px!important}.tdi_163 .td-excerpt{display:none;font-size:11px!important}.tdi_163 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_163 .td_module_wrap .td-module-container:before{display:block!important}.tdi_163 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_163 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_163 .td-block-title a,.tdi_163 .td-block-title span{font-size:15px!important}.tdi_163 .entry-title{font-size:17px!important}.tdi_163 .td-editor-date,.tdi_163 .td-editor-date .td-post-author-name a,.tdi_163 .td-editor-date .entry-date,.tdi_163 .td-module-comments a{font-size:11px!important}@media (min-width:768px){.tdi_163 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_163 .td-image-wrap{padding-bottom:60%}.tdi_163 .td-image-container{flex:0 0 100%;width:100%;display:block;order:0}.ie10 .tdi_163 .td-image-container,.ie11 .tdi_163 .td-image-container{flex:0 0 auto}.tdi_163 .td-module-container{flex-direction:column}.ie10 .tdi_163 .td-module-meta-info,.ie11 .tdi_163 .td-module-meta-info{flex:auto}.tdi_163 .td-module-meta-info{padding:15px 0 0 0}.tdi_163 .td_module_wrap{width:100%;float:left;padding-bottom:12px;margin-bottom:12px;padding-bottom:12px!important;margin-bottom:12px!important}.rtl .tdi_163 .td_module_wrap{float:right}.tdi_163 .td-module-container:before{bottom:-12px}.tdi_163 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_163 .td_module_wrap .td-module-container:before{display:block!important}.tdi_163 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_163 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_163 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_163 = new tdBlock();
block_tdi_163.id = "tdi_163";
block_tdi_163.atts = '{"modules_on_row":"eyJwaG9uZSI6IjEwMCUifQ==","image_floated":"eyJhbGwiOiJmbG9hdF9sZWZ0IiwicGhvbmUiOiJub19mbG9hdCJ9","image_width":"eyJhbGwiOiIzMCIsInBob25lIjoiMTAwIn0=","show_btn":"none","show_excerpt":"eyJwb3J0cmFpdCI6Im5vbmUifQ==","modules_category":"","show_date":"","show_review":"none","show_com":"none","show_author":"","meta_padding":"eyJhbGwiOiIwIDAgMCAxNXB4IiwicGhvbmUiOiIxNXB4IDAgMCAwIn0=","art_title":"0 0 10px","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTcifQ==","f_title_font_weight":"500","f_title_font_line_height":"1.2","title_txt":"#000000","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","f_cat_font_family":"712","f_cat_font_transform":"uppercase","f_cat_font_weight":"400","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","modules_category_padding":"0","all_modules_space":"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMTUiLCJsYW5kc2NhcGUiOiIyMCJ9","category_id":"","ajax_pagination":"next_prev","sort":"","title_txt_hover":"#478fe0","tdc_css":"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJhbGwiOnsiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9","cat_txt":"#000000","cat_txt_hover":"#478fe0","modules_gap":"eyJsYW5kc2NhcGUiOiIzMCJ9","f_more_font_weight":"","f_more_font_transform":"","f_more_font_family":"","image_size":"","f_meta_font_family":"712","custom_title":"Fitness","block_template_id":"td_block_template_8","border_color":"#478fe0","meta_info_align":"center","pag_h_bg":"#478fe0","td_ajax_filter_type":"","f_header_font_size":"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTUifQ==","f_header_font_weight":"500","f_header_font_transform":"uppercase","f_header_font_family":"712","pag_h_border":"#478fe0","image_height":"eyJhbGwiOiI3MCIsInBob25lIjoiNjAifQ==","td_ajax_filter_ids":"","art_excerpt":"10px 0 0","f_meta_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_meta_font_weight":"400","f_meta_font_transform":"capitalize","f_cat_font_line_height":"1","f_meta_font_line_height":"1","meta_space":"0","modules_category_margin":"eyJhbGwiOiIycHggOHB4IDAgMCIsInBvcnRyYWl0IjoiMnB4IDVweCAwIDAifQ==","f_ex_font_family":"712","f_ex_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_ex_font_line_height":"1.6","f_ex_font_weight":"400","author_txt_hover":"#478fe0","block_type":"td_flex_block_1","separator":"","custom_url":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","post_ids":"","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","popular_by_date":"","linked_posts":"","favourite_only":"","locked_only":"","limit":"5","offset":"","open_in_new_window":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_source":"","el_class":"","td_query_cache":"","td_query_cache_expiration":"","td_filter_default_txt":"All","td_ajax_preloading":"","container_width":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_border_radius":"","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_radius":"","hide_image":"","show_favourites":"","fav_size":"2","fav_space":"","fav_ico_color":"","fav_ico_color_h":"","fav_bg":"","fav_bg_h":"","fav_shadow_shadow_header":"","fav_shadow_shadow_title":"Shadow","fav_shadow_shadow_size":"","fav_shadow_shadow_offset_horizontal":"","fav_shadow_shadow_offset_vertical":"","fav_shadow_shadow_spread":"","fav_shadow_shadow_color":"","video_icon":"","video_popup":"yes","video_rec":"","spot_header":"","video_rec_title":"","video_rec_color":"","video_rec_disable":"","autoplay_vid":"yes","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","video_title_color":"","video_title_color_h":"","video_bg":"","video_overlay":"","vid_t_color":"","vid_t_bg_color":"","f_vid_title_font_header":"","f_vid_title_font_title":"Video pop-up article title","f_vid_title_font_settings":"","f_vid_title_font_family":"","f_vid_title_font_size":"","f_vid_title_font_line_height":"","f_vid_title_font_style":"","f_vid_title_font_weight":"","f_vid_title_font_transform":"","f_vid_title_font_spacing":"","f_vid_title_":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","meta_info_horiz":"layout-default","meta_width":"","meta_margin":"","art_btn":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","meta_info_border_radius":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","review_space":"","review_size":"2.5","review_distance":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","excerpt_inline":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1.5","btn_title":"","btn_margin":"","btn_padding":"","btn_border_width":"","btn_radius":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","pag_icons_size":"","f_header_font_header":"","f_header_font_title":"Block header","f_header_font_settings":"","f_header_font_line_height":"","f_header_font_style":"","f_header_font_spacing":"","f_header_":"","f_ajax_font_title":"Ajax categories","f_ajax_font_settings":"","f_ajax_font_family":"","f_ajax_font_size":"","f_ajax_font_line_height":"","f_ajax_font_style":"","f_ajax_font_weight":"","f_ajax_font_transform":"","f_ajax_font_spacing":"","f_ajax_":"","f_more_font_title":"Load more button","f_more_font_settings":"","f_more_font_size":"","f_more_font_line_height":"","f_more_font_style":"","f_more_font_spacing":"","f_more_":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_style":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_style":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","f_btn_font_title":"Article read more button","f_btn_font_settings":"","f_btn_font_family":"","f_btn_font_size":"","f_btn_font_line_height":"","f_btn_font_style":"","f_btn_font_weight":"","f_btn_font_transform":"","f_btn_font_spacing":"","f_btn_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"","cat_style":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","btn_bg":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border":"","btn_border_hover":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","ajax_pagination_next_prev_swipe":"","ajax_pagination_infinite_stop":"","css":"","td_column_number":2,"header_color":"","color_preset":"","border_top":"","class":"tdi_163","tdc_css_class":"tdi_163","tdc_css_class_style":"tdi_163_rand_style"}';
block_tdi_163.td_column_number = "2";
block_tdi_163.block_type = "td_flex_block_1";
block_tdi_163.post_count = "5";
block_tdi_163.found_posts = "85";
block_tdi_163.header_color = "";
block_tdi_163.ajax_pagination_infinite_stop = "";
block_tdi_163.max_num_pages = "17";
tdBlocksArray.push(block_tdi_163);
</script><div class="td-block-title-wrap"><h4 class="td-block-title"><span>Fitness</span></h4></div><div id=tdi_163 class="td_block_inner td-mc1-wrap">
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" class="td-image-wrap " title="How to Think and Act in the Plummeting Stock Market" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-696x461.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" title="How to Think and Act in the Plummeting Stock Market">How to Think and Act in the Plummeting Stock Market</a></h3>
                    
                                            <div class="td-editor-date">
                                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    <div class="td-excerpt">People live better in big houses and in big clothes. I try to contrast; life today is full of contrast. We have to change!...</div>
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" class="td-image-wrap " title="The Real Economy Has Never Been Tested by a Pandemic" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-696x464.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" title="The Real Economy Has Never Been Tested by a Pandemic">The Real Economy Has Never Been Tested by a Pandemic</a></h3>
                    
                                            <div class="td-editor-date">
                                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    <div class="td-excerpt">People live better in big houses and in big clothes. I try to contrast; life today is full of contrast. We have to change!...</div>
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" class="td-image-wrap " title="More and More People Stay Home as Coronavirus Spreads" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-696x464.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" title="More and More People Stay Home as Coronavirus Spreads">More and More People Stay Home as Coronavirus Spreads</a></h3>
                    
                                            <div class="td-editor-date">
                                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    <div class="td-excerpt">People live better in big houses and in big clothes. I try to contrast; life today is full of contrast. We have to change!...</div>
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" class="td-image-wrap " title="Witnessing the Birth of the New Coronavirus Economy" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/79-696x464.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" title="Witnessing the Birth of the New Coronavirus Economy">Witnessing the Birth of the New Coronavirus Economy</a></h3>
                    
                                            <div class="td-editor-date">
                                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:49-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    <div class="td-excerpt">People live better in big houses and in big clothes. I try to contrast; life today is full of contrast. We have to change!...</div>
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" class="td-image-wrap " title="Companies Are Putting Profits Ahead of Public Health" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/80-696x464.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" title="Companies Are Putting Profits Ahead of Public Health">Companies Are Putting Profits Ahead of Public Health</a></h3>
                    
                                            <div class="td-editor-date">
                                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:49-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    <div class="td-excerpt">People live better in big houses and in big clothes. I try to contrast; life today is full of contrast. We have to change!...</div>
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_163" data-td_block_id="tdi_163"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_163" data-td_block_id="tdi_163"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div></div><div class="vc_column tdi_165  wpb_column vc_column_container tdc-column td-pb-span4 td-is-sticky">
<style scoped>.tdi_165{vertical-align:baseline}.tdi_165>.wpb_wrapper,.tdi_165>.wpb_wrapper>.tdc-elements{display:block}.tdi_165>.wpb_wrapper>.tdc-elements{width:100%}.tdi_165>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_165>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" data-sticky-enabled-on="W3RydWUsdHJ1ZSx0cnVlLHRydWVd" data-sticky-offset="20" data-sticky-is-width-auto="W2ZhbHNlLGZhbHNlLGZhbHNlLGZhbHNlXQ=="><div class="td_block_wrap td_flex_block_1 tdi_166 td_with_ajax_pagination td-pb-border-top td_block_template_8 td_flex_block"  data-td-block-uid="tdi_166" >
<style>.tdi_166 .td-block-title>*:before,.tdi_166 .td-block-title>*:after{background-color:#e86aa1!important}@media (max-width:767px){.tdi_166{margin-bottom:40px!important}}</style>
<style>.tdi_166 .td-image-wrap{padding-bottom:60%}.tdi_166 .entry-thumb{background-position:center 50%}.tdi_166 .td-image-container{flex:0 0 100%;width:100%;display:block;order:0}.ie10 .tdi_166 .td-image-container,.ie11 .tdi_166 .td-image-container{flex:0 0 auto}.tdi_166 .td-module-container{flex-direction:column;border-color:#eaeaea!important}.ie10 .tdi_166 .td-module-meta-info,.ie11 .tdi_166 .td-module-meta-info{flex:auto}body .tdi_166 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_166 .td-module-meta-info{padding:15px 0 0 0;display:flex;flex-direction:column;justify-content:center;border-color:#eaeaea}.tdi_166 .td-category-pos-above .td-post-category{align-self:flex-start}.tdi_166 .td_module_wrap{padding-left:20px;padding-right:20px;padding-bottom:12px;margin-bottom:12px}.tdi_166 .td_block_inner{margin-left:-20px;margin-right:-20px}.tdi_166 .td-module-container:before{bottom:-12px;border-color:#eaeaea}.tdi_166 .td-post-vid-time{display:block}.tdi_166 .td-post-category{margin:2px 8px 0 0;padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_166 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_166 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_166 .td-audio-player{opacity:1;visibility:visible;height:auto;font-size:13px}.tdi_166 .td-read-more{display:none}.tdi_166 .td-author-date{display:inline}.tdi_166 .entry-review-stars{display:none}.tdi_166 .td-icon-star,.tdi_166 .td-icon-star-empty,.tdi_166 .td-icon-star-half{font-size:15px}.tdi_166 .td-module-comments{display:none}.tdi_166 .td_module_wrap:nth-last-child(1){margin-bottom:0;padding-bottom:0}.tdi_166 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none}.tdi_166 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#e86aa1}.tdi_166 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_166 .td_module_wrap:hover .td-module-title a{color:#e86aa1!important}.tdi_166 .td-post-author-name:hover a{color:#e86aa1}.tdi_166.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_166 .td-load-more-wrap a:hover{background-color:#e86aa1!important;border-color:#e86aa1!important;border-color:#e86aa1!important}.tdi_166 .td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_166 .entry-title{margin:0 0 10px;font-family:Rubik!important;font-size:20px!important;line-height:1.2!important;font-weight:500!important}.tdi_166 .td-excerpt{margin:10px 0 0;column-count:1;column-gap:48px;font-family:Rubik!important;font-size:13px!important;line-height:1.6!important;font-weight:400!important}.tdi_166 .td-editor-date{margin:0px}.tdi_166 .td-block-title a,.tdi_166 .td-block-title span{font-family:Rubik!important;font-size:17px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_166 .td-editor-date,.tdi_166 .td-editor-date .td-post-author-name a,.tdi_166 .td-editor-date .entry-date,.tdi_166 .td-module-comments a{font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:capitalize!important}html:not([class*='ie']) .tdi_166 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_166 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_166 .td_module_wrap{padding-left:15px;padding-right:15px;padding-bottom:10px;margin-bottom:10px;padding-bottom:10px!important;margin-bottom:10px!important}.tdi_166 .td_block_inner{margin-left:-15px;margin-right:-15px}.tdi_166 .td-module-container:before{bottom:-10px}.tdi_166 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_166 .td_module_wrap .td-module-container:before{display:block!important}.tdi_166 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_166 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_166 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_166 .td-module-meta-info{padding:12px 0 0 0}.tdi_166 .td_module_wrap{padding-bottom:7.5px;margin-bottom:7.5px;padding-bottom:7.5px!important;margin-bottom:7.5px!important}.tdi_166 .td-module-container:before{bottom:-7.5px}.tdi_166 .td-post-category{margin:2px 5px 0 0;font-size:11px!important}.tdi_166 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_166 .td_module_wrap .td-module-container:before{display:block!important}.tdi_166 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_166 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_166 .td-block-title a,.tdi_166 .td-block-title span{font-size:15px!important}.tdi_166 .entry-title{font-size:15px!important}.tdi_166 .td-editor-date,.tdi_166 .td-editor-date .td-post-author-name a,.tdi_166 .td-editor-date .entry-date,.tdi_166 .td-module-comments a{font-size:11px!important}.tdi_166 .td-excerpt{font-size:11px!important}@media (min-width:768px){.tdi_166 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_166 .td_module_wrap{width:100%;float:left;padding-bottom:12px;margin-bottom:12px;padding-bottom:12px!important;margin-bottom:12px!important}.rtl .tdi_166 .td_module_wrap{float:right}.tdi_166 .td-module-container:before{bottom:-12px}.tdi_166 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_166 .td_module_wrap .td-module-container:before{display:block!important}.tdi_166 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_166 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_166 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_166 = new tdBlock();
block_tdi_166.id = "tdi_166";
block_tdi_166.atts = '{"modules_on_row":"eyJwaG9uZSI6IjEwMCUifQ==","image_floated":"eyJwaG9uZSI6Im5vX2Zsb2F0In0=","image_width":"eyJhbGwiOiIxMDAiLCJwaG9uZSI6IjEwMCJ9","show_btn":"none","show_excerpt":"","modules_category":"","show_date":"","show_review":"none","show_com":"none","show_author":"","meta_padding":"eyJhbGwiOiIxNXB4IDAgMCAwIiwicGhvbmUiOiIxNXB4IDAgMCAwIiwicG9ydHJhaXQiOiIxMnB4IDAgMCAwIn0=","art_title":"0 0 10px","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTUifQ==","f_title_font_weight":"500","f_title_font_line_height":"1.2","title_txt":"#000000","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","f_cat_font_family":"712","f_cat_font_transform":"uppercase","f_cat_font_weight":"400","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","modules_category_padding":"0","all_modules_space":"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMTUiLCJsYW5kc2NhcGUiOiIyMCJ9","category_id":"","ajax_pagination":"next_prev","sort":"","title_txt_hover":"#e86aa1","tdc_css":"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJhbGwiOnsiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9","cat_txt":"#000000","cat_txt_hover":"#e86aa1","modules_gap":"eyJsYW5kc2NhcGUiOiIzMCJ9","f_more_font_weight":"","f_more_font_transform":"","f_more_font_family":"","image_size":"","f_meta_font_family":"712","custom_title":"Gaming","block_template_id":"td_block_template_8","border_color":"#e86aa1","meta_info_align":"center","pag_h_bg":"#e86aa1","td_ajax_filter_type":"","f_header_font_size":"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTUifQ==","f_header_font_weight":"500","f_header_font_transform":"uppercase","f_header_font_family":"712","pag_h_border":"#e86aa1","image_height":"eyJhbGwiOiI2MCIsInBob25lIjoiNjAifQ==","td_ajax_filter_ids":"","art_excerpt":"10px 0 0","f_meta_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_meta_font_weight":"400","f_meta_font_transform":"capitalize","f_cat_font_line_height":"1","f_meta_font_line_height":"1","meta_space":"0","modules_category_margin":"eyJhbGwiOiIycHggOHB4IDAgMCIsInBvcnRyYWl0IjoiMnB4IDVweCAwIDAifQ==","f_ex_font_family":"712","f_ex_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_ex_font_line_height":"1.6","f_ex_font_weight":"400","limit":"1","author_txt_hover":"#e86aa1","block_type":"td_flex_block_1","separator":"","custom_url":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","post_ids":"","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","popular_by_date":"","linked_posts":"","favourite_only":"","locked_only":"","offset":"","open_in_new_window":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_source":"","el_class":"","td_query_cache":"","td_query_cache_expiration":"","td_filter_default_txt":"All","td_ajax_preloading":"","container_width":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_border_radius":"","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_radius":"","hide_image":"","show_favourites":"","fav_size":"2","fav_space":"","fav_ico_color":"","fav_ico_color_h":"","fav_bg":"","fav_bg_h":"","fav_shadow_shadow_header":"","fav_shadow_shadow_title":"Shadow","fav_shadow_shadow_size":"","fav_shadow_shadow_offset_horizontal":"","fav_shadow_shadow_offset_vertical":"","fav_shadow_shadow_spread":"","fav_shadow_shadow_color":"","video_icon":"","video_popup":"yes","video_rec":"","spot_header":"","video_rec_title":"","video_rec_color":"","video_rec_disable":"","autoplay_vid":"yes","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","video_title_color":"","video_title_color_h":"","video_bg":"","video_overlay":"","vid_t_color":"","vid_t_bg_color":"","f_vid_title_font_header":"","f_vid_title_font_title":"Video pop-up article title","f_vid_title_font_settings":"","f_vid_title_font_family":"","f_vid_title_font_size":"","f_vid_title_font_line_height":"","f_vid_title_font_style":"","f_vid_title_font_weight":"","f_vid_title_font_transform":"","f_vid_title_font_spacing":"","f_vid_title_":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","meta_info_horiz":"layout-default","meta_width":"","meta_margin":"","art_btn":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","meta_info_border_radius":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","review_space":"","review_size":"2.5","review_distance":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","excerpt_inline":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1.5","btn_title":"","btn_margin":"","btn_padding":"","btn_border_width":"","btn_radius":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","pag_icons_size":"","f_header_font_header":"","f_header_font_title":"Block header","f_header_font_settings":"","f_header_font_line_height":"","f_header_font_style":"","f_header_font_spacing":"","f_header_":"","f_ajax_font_title":"Ajax categories","f_ajax_font_settings":"","f_ajax_font_family":"","f_ajax_font_size":"","f_ajax_font_line_height":"","f_ajax_font_style":"","f_ajax_font_weight":"","f_ajax_font_transform":"","f_ajax_font_spacing":"","f_ajax_":"","f_more_font_title":"Load more button","f_more_font_settings":"","f_more_font_size":"","f_more_font_line_height":"","f_more_font_style":"","f_more_font_spacing":"","f_more_":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_style":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_style":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","f_btn_font_title":"Article read more button","f_btn_font_settings":"","f_btn_font_family":"","f_btn_font_size":"","f_btn_font_line_height":"","f_btn_font_style":"","f_btn_font_weight":"","f_btn_font_transform":"","f_btn_font_spacing":"","f_btn_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"","cat_style":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","btn_bg":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border":"","btn_border_hover":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","ajax_pagination_next_prev_swipe":"","ajax_pagination_infinite_stop":"","css":"","td_column_number":1,"header_color":"","color_preset":"","border_top":"","class":"tdi_166","tdc_css_class":"tdi_166","tdc_css_class_style":"tdi_166_rand_style"}';
block_tdi_166.td_column_number = "1";
block_tdi_166.block_type = "td_flex_block_1";
block_tdi_166.post_count = "1";
block_tdi_166.found_posts = "85";
block_tdi_166.header_color = "";
block_tdi_166.ajax_pagination_infinite_stop = "";
block_tdi_166.max_num_pages = "85";
tdBlocksArray.push(block_tdi_166);
</script><div class="td-block-title-wrap"><h4 class="td-block-title"><span>Gaming</span></h4></div><div id=tdi_166 class="td_block_inner td-mc1-wrap">
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" class="td-image-wrap " title="How to Think and Act in the Plummeting Stock Market" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-696x461.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" title="How to Think and Act in the Plummeting Stock Market">How to Think and Act in the Plummeting Stock Market</a></h3>
                    
                                            <div class="td-editor-date">
                                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    <div class="td-excerpt">People live better in big houses and in big clothes. I try to contrast; life today is full of contrast. We have to change!...</div>
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_166" data-td_block_id="tdi_166"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_166" data-td_block_id="tdi_166"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div></div></div></div></div><div id="tdi_167" class="tdc-row"><div class="vc_row tdi_168  wpb_row td-pb-row" >
<style scoped>.tdi_168,.tdi_168 .tdc-columns{min-height:0}.tdi_168,.tdi_168 .tdc-columns{display:block}.tdi_168 .tdc-columns{width:100%}.tdi_168:before,.tdi_168:after{display:table}</style><div class="vc_column tdi_170  wpb_column vc_column_container tdc-column td-pb-span12">
<style scoped>.tdi_170{vertical-align:baseline}.tdi_170>.wpb_wrapper,.tdi_170>.wpb_wrapper>.tdc-elements{display:block}.tdi_170>.wpb_wrapper>.tdc-elements{width:100%}.tdi_170>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_170>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="td_block_video_playlist td_block_wrap  tdi_171">
<style>.td_video_playlist_title{position:relative;z-index:1;background-color:#222}.td_video_playlist_title .td_video_title_text{font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif);font-weight:bold;font-size:15px;color:#ffffff;margin-left:17px;margin-right:17px;vertical-align:middle;line-height:24px;padding:10px 0 10px 0}.td_wrapper_video_playlist{z-index:1;position:relative;display:flex}.td_wrapper_video_playlist .td_video_controls_playlist_wrapper{background-color:@td_theme_color;position:relative}.td_wrapper_video_playlist .td_video_controls_playlist_wrapper:before{content:'';background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAGBAMAAADwPukCAAAAElBMVEUAAAAAAAAAAAAAAAAAAAAAAADgKxmiAAAABnRSTlM9KRgMBADiSB2HAAAAFElEQVR4XmNgYBBgUGAwYHBgCAAAA3wA8fpXm6EAAAAASUVORK5CYII=) repeat-x;width:100%;height:6px;position:absolute;bottom:-6px;z-index:1}.td_wrapper_video_playlist .td_video_stop_play_control{position:relative;width:65px;height:65px;outline:0!important}.td_wrapper_video_playlist .td_video_stop_play_control:after{content:'';width:1px;height:37px;background-color:rgba(255,255,255,0.2);position:absolute;top:14px;right:0}.td_wrapper_video_playlist .td_youtube_control,.td_wrapper_video_playlist .td_vimeo_control{position:relative;top:12px;left:11px;cursor:pointer}.td_wrapper_video_playlist .td_video_title_playing{position:absolute;top:13px;left:80px;font-family:Verdana,Geneva,sans-serif;font-size:13px;line-height:19px;font-weight:bold;color:#ffffff;padding-right:7px;max-height:37px;overflow:hidden}.td_wrapper_video_playlist .td_video_time_playing{position:absolute;bottom:0;right:5px;font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif);font-size:10px;font-style:italic;color:#ffffff;line-height:17px;padding-right:1px}.td_wrapper_video_playlist .td_video_currently_playing{background-color:#404040}.td_wrapper_video_playlist .td_video_currently_playing:after{content:'';position:absolute;top:0;left:0;border-left:3px solid #4db2ec!important;width:3px;height:inherit}.td_wrapper_video_playlist .td_click_video{height:60px;display:block;width:100%;position:relative}.td_wrapper_video_playlist .td_click_video:hover{background-color:#333333;cursor:pointer}.td_wrapper_video_playlist .td_video_thumb{position:relative;top:10px;width:72px;height:40px;overflow:hidden;margin-left:16px}.td_wrapper_video_playlist .td_video_thumb img{position:relative;top:-6px}.td_wrapper_video_playlist .td_video_title_and_time{position:absolute;top:10px;width:100%;padding:0 30px 0 103px}.td_wrapper_video_playlist .td_video_title_and_time .td_video_title{font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif);font-size:12px;color:#ffffff;line-height:15px;max-height:30px;overflow:hidden}.td_wrapper_video_playlist .td_video_time{font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif);font-size:10px;font-style:italic;color:#cacaca;line-height:13px}.td_wrapper_video_playlist .td_wrapper_player{background-color:#000;overflow:hidden}.td_wrapper_video_playlist .td_wrapper_player iframe{width:100%;height:100%!important}.td_wrapper_video_playlist .td_container_video_playlist{display:flex;flex-direction:column;background-color:#222;vertical-align:top;overflow:hidden}.td_wrapper_video_playlist .td_playlist_clickable{overflow-y:auto;overflow-x:hidden}.td_video_playlist_column_3 .td_wrapper_player,.td_video_playlist_column_3 .td_container_video_playlist{height:409px}.td_video_playlist_column_3 .td_wrapper_player{display:block;flex:1}.td_video_playlist_column_3 .td_container_video_playlist{width:341px}.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist::-webkit-scrollbar-track{background-color:#383838}.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist::-webkit-scrollbar{width:6px;background-color:#F5F5F5}.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist::-webkit-scrollbar-thumb{background-color:#919191;border-radius:10px}.td_video_playlist_column_2 .td_wrapper_video_playlist{flex-direction:column}.td_video_playlist_column_2 .td_video_title_playing{max-height:20px;top:23px}.td_video_playlist_column_2 .td_wrapper_player{display:block;height:391px}.td_video_playlist_column_2 .td_container_video_playlist{height:305px}.td_video_playlist_column_2 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile::-webkit-scrollbar,.td_video_playlist_column_2 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist::-webkit-scrollbar-track{background-color:#383838}.td_video_playlist_column_2 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile::-webkit-scrollbar,.td_video_playlist_column_2 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist::-webkit-scrollbar{width:6px;background-color:#F5F5F5}.td_video_playlist_column_2 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile::-webkit-scrollbar-thumb,.td_video_playlist_column_2 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist::-webkit-scrollbar-thumb{background-color:#919191;border-radius:10px}.td_video_playlist_column_1 .td_wrapper_video_playlist{flex-direction:column}.td_video_playlist_column_1 .td_wrapper_player{display:block;height:182px}.td_video_playlist_column_1 .td_container_video_playlist{height:412px}.td_video_playlist_column_1 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile::-webkit-scrollbar,.td_video_playlist_column_1 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist::-webkit-scrollbar-track{background-color:#383838}.td_video_playlist_column_1 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile::-webkit-scrollbar,.td_video_playlist_column_1 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist::-webkit-scrollbar{width:6px;background-color:#F5F5F5}.td_video_playlist_column_1 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile::-webkit-scrollbar-thumb,.td_video_playlist_column_1 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist::-webkit-scrollbar-thumb{background-color:#919191;border-radius:10px}.wp-video-shortcode:focus{outline:0!important}body .tdi_171 .td_wrapper_video_playlist .td_video_controls_playlist_wrapper{background-color:#dd3333}body .tdi_171 .td_wrapper_video_playlist .td_video_currently_playing:after{border-left-color:#dd3333!important}@media (max-width:767px){.td_video_playlist_title .td_video_title_text{text-align:center}}@media (min-width:481px) and (max-width:1018px){.td_wrapper_video_playlist .td_video_title_playing{max-height:20px;top:23px}}@media (max-width:480px){.td_wrapper_video_playlist .td_video_title_playing{max-height:37px;top:13px}}@media (max-width:1018px){.td_wrapper_video_playlist .td_wrapper_player{flex:auto!important}}@media (max-width:767px){.td_wrapper_video_playlist .td_wrapper_player{margin-bottom:-5px}}@media (max-width:1018px){.td_video_playlist_column_3 .td_wrapper_video_playlist{flex-direction:column}}@media (min-width:1019px) and (max-width:1140px){.td_video_playlist_column_3 .td_wrapper_player,.td_video_playlist_column_3 .td_container_video_playlist{height:365px}}@media (min-width:768px) and (max-width:1018px){.td_video_playlist_column_3 .td_wrapper_player{width:100%;height:416px}}@media (max-width:767px){.td_video_playlist_column_3 .td_wrapper_player{width:100%;height:260px}}@media (min-width:1019px) and (max-width:1140px){.td_video_playlist_column_3 .td_container_video_playlist{width:331px}}@media (max-width:1018px){.td_video_playlist_column_3 .td_container_video_playlist{width:100%;height:305px}}@media screen and (-webkit-min-device-pixel-ratio:0) and (min-width:768px) and (max-width:1018px){.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile{margin-right:10px}}@media screen and (-webkit-min-device-pixel-ratio:0) and (max-width:767px){.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile{margin-right:10px}}@media (min-width:768px) and (max-width:1018px){.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile{overflow-x:hidden;overflow-y:auto}.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile::-webkit-scrollbar-track{background-color:#383838}.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile::-webkit-scrollbar{width:6px;background-color:#F5F5F5}.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile::-webkit-scrollbar-thumb{background-color:#919191;border-radius:10px}}@media (max-width:767px){.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile{overflow-x:hidden;overflow-y:auto}.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile::-webkit-scrollbar-track{background-color:#383838}.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile::-webkit-scrollbar{width:6px;background-color:#F5F5F5}.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile::-webkit-scrollbar-thumb{background-color:#919191;border-radius:10px}}@media screen and (-webkit-min-device-pixel-ratio:0){.td_video_playlist_column_3 .td_playlist_clickable.td_add_scrollbar_to_playlist{margin-right:10px}}@media (max-width:480px){.td_video_playlist_column_2 .td_video_title_playing{max-height:37px;top:13px}}@media (min-width:1019px) and (max-width:1140px){.td_video_playlist_column_2 .td_wrapper_player{height:360px}}@media (min-width:768px) and (max-width:1018px){.td_video_playlist_column_2 .td_wrapper_player{height:272px}}@media (max-width:767px){.td_video_playlist_column_2 .td_wrapper_player{display:block;height:auto}}@media (max-width:480px){.td_video_playlist_column_2 .td_container_video_playlist{height:245px}}@media screen and (-webkit-min-device-pixel-ratio:0){.td_video_playlist_column_2 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile,.td_video_playlist_column_2 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist{margin-right:10px}}@media (min-width:1019px) and (max-width:1140px){.td_video_playlist_column_1 .td_wrapper_player{height:169px}}@media (min-width:768px) and (max-width:1018px){.td_video_playlist_column_1 .td_wrapper_player{height:128px}}@media (max-width:767px){.td_video_playlist_column_1 .td_wrapper_player{display:block;width:100%;height:auto}}@media (max-width:480px){.td_video_playlist_column_1 .td_container_video_playlist{height:245px}}@media screen and (-webkit-min-device-pixel-ratio:0){.td_video_playlist_column_1 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist_for_mobile,.td_video_playlist_column_1 .td_container_video_playlist .td_playlist_clickable.td_add_scrollbar_to_playlist{margin-right:10px}}</style><div class="td_block_inner"></div></div> <!-- ./block_video_playlist --></div></div></div></div><div id="tdi_172" class="tdc-row"><div class="vc_row tdi_173  wpb_row td-pb-row" >
<style scoped>.tdi_173,.tdi_173 .tdc-columns{min-height:0}.tdi_173,.tdi_173 .tdc-columns{display:block}.tdi_173 .tdc-columns{width:100%}.tdi_173:before,.tdi_173:after{display:table}</style><div class="vc_column tdi_175  wpb_column vc_column_container tdc-column td-pb-span8">
<style scoped>.tdi_175{vertical-align:baseline}.tdi_175>.wpb_wrapper,.tdi_175>.wpb_wrapper>.tdc-elements{display:block}.tdi_175>.wpb_wrapper>.tdc-elements{width:100%}.tdi_175>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_175>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_loop tdi_176 tdb-numbered-pagination td_with_ajax_pagination td-pb-border-top td_block_template_8 tdb-category-loop-posts"  data-td-block-uid="tdi_176" >
<style>.tdi_176 .td-block-title>*:before,.tdi_176 .td-block-title>*:after{background-color:#008d7f!important}.tdi_176{margin-bottom:48px!important}@media (max-width:767px){.tdi_176{margin-bottom:40px!important}}</style>
<style>[class*="tdb_module_loop"] .td-module-container{display:flex;flex-direction:column;position:relative}[class*="tdb_module_loop"] .td-module-container:before{content:'';position:absolute;bottom:0;left:0;width:100%;height:1px}[class*="tdb_module_loop"] .td-image-wrap{display:block;position:relative;padding-bottom:50%}[class*="tdb_module_loop"] .td-image-container{position:relative;flex:0 0 auto;width:100%;height:100%}[class*="tdb_module_loop"] .td-module-thumb{margin-bottom:0}[class*="tdb_module_loop"] .td-module-meta-info{width:100%;padding:13px 0 0 0;margin-bottom:0;z-index:1;border:0 solid #eaeaea}[class*="tdb_module_loop"] .td-thumb-css{width:100%;height:100%;position:absolute;background-size:cover;background-position:center center}[class*="tdb_module_loop"] .td-category-pos-image .td-post-category:not(.td-post-extra-category),[class*="tdb_module_loop"] .td-post-vid-time{position:absolute;z-index:2;bottom:0}[class*="tdb_module_loop"] .td-category-pos-image .td-post-category:not(.td-post-extra-category){left:0}[class*="tdb_module_loop"] .td-post-vid-time{right:0;background-color:#000;padding:3px 6px 4px;font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif);font-size:10px;font-weight:600;line-height:1;color:#fff}[class*="tdb_module_loop"] .td-excerpt{margin:20px 0 0;line-height:21px}.tdb_loop .tdb-block-inner{display:flex;flex-wrap:wrap}.tdb_loop .td_module_wrap{padding-bottom:0}.tdb_loop .tdb_module_rec{text-align:center}.tdb_loop .tdb-author-photo{display:inline-block}.tdb_loop .tdb-author-photo,.tdb_loop .tdb-author-photo img{vertical-align:middle}.tdb_loop .td-post-author-name,.tdb_loop .td-post-date,.tdb_loop .td-module-comments{vertical-align:text-top}.tdb_loop .entry-review-stars{margin-left:6px;vertical-align:text-bottom}.tdb_loop .td-load-more-wrap,.tdb_loop .td-next-prev-wrap{margin:20px 0 0}.tdb_loop .page-nav{position:relative;margin:54px 0 0}.tdb_loop .page-nav a,.tdb_loop .page-nav span{margin-top:8px;margin-bottom:0}.tdb_loop .td-next-prev-wrap a{width:auto;height:auto;min-width:25px;min-height:25px}.tdb_loop{display:inline-block;width:100%;margin-bottom:78px;padding-bottom:0;overflow:visible!important}.tdb_loop .td-module-title{font-family:var(--td_default_google_font_2,'Roboto',sans-serif);font-weight:400;font-size:21px;line-height:25px;margin:0 0 6px 0}.tdb_loop .td-spot-id-loop .tdc-placeholder-title:before{content:'Posts Loop Ad'!important}.tdb_loop.tdc-no-posts .td_block_inner{margin-left:0!important;margin-right:0!important}.tdb_loop.tdc-no-posts .td_block_inner .no-results h2{font-size:13px;font-weight:normal;text-align:left;padding:20px;border:1px solid rgba(190,190,190,0.35);color:rgba(125,125,125,0.8)}.tdi_176 .entry-thumb{background-position:center 50%}.tdi_176 .td-image-wrap{padding-bottom:60%}.tdi_176 .td-module-container{flex-direction:column;border-color:#eaeaea}.tdi_176 .td-image-container{display:block;order:0}.ie10 .tdi_176 .td-module-meta-info,.ie11 .tdi_176 .td-module-meta-info{flex:auto}.tdi_176 .td-module-meta-info{padding:20px 0 0 0;border-color:#eaeaea}body .tdi_176 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_176 .td_module_wrap:not(.tdb_module_rec){width:50%}.tdi_176 .tdb_module_rec{width:100%}.tdi_176 .td_module_wrap{padding-left:12px;padding-right:12px}.tdi_176 .tdb-block-inner{margin-left:-12px;margin-right:-12px;row-gap:calc(18px * 2)}.tdi_176 .td-module-container:before{bottom:-18px;border-color:#eaeaea}.tdi_176 .td_module_wrap:nth-last-child(-n+2) .td-module-container:before{display:none}.tdi_176 .td-post-vid-time{display:block}.tdi_176 .td-post-category{margin:0px;padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_176 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_176 .tdb-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_176 .td-excerpt{display:none;margin:10px 0 0;column-count:1;column-gap:48px;font-family:Rubik!important;font-size:13px!important;line-height:1.6!important;font-weight:400!important}.tdi_176 .td-audio-player{opacity:1;visibility:visible;height:auto;font-size:13px}.tdi_176 .td-read-more{display:none}.tdi_176 .td-author-date{display:inline}.tdi_176 .td-post-author-name{display:inline-block}.tdi_176 .td-post-date,.tdi_176 .td-post-author-name span{display:inline-block}.tdi_176 .entry-review-stars{display:inline-block}.tdi_176 .td-icon-star,.tdi_176 .td-icon-star-empty,.tdi_176 .td-icon-star-half{font-size:15px}.tdi_176 .td-module-comments{display:none}.tdi_176 .td-post-category:hover{background-color:rgba(255,255,255,0);color:#008d7f}.tdi_176 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_176 .td_module_wrap:hover .td-module-title a{color:#008d7f}.tdi_176 .td-post-author-name:hover a{color:#008d7f}.tdi_176 .page-nav .current{background-color:#008d7f;border-color:#008d7f}.tdi_176.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_176 .page-nav a:hover,.tdi_176 .td-load-more-wrap a:hover{background-color:#008d7f;border-color:#008d7f}.tdi_176 .entry-title{margin:10px 0;font-family:Rubik!important;font-size:19px!important;line-height:1.2!important;font-weight:500!important}.tdi_176 .td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_176 .td-block-title a,.tdi_176 .td-block-title span{font-size:17px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_176 .td-author-date,.tdi_176 .tdb-author-photo,.tdi_176 .td-post-author-name a,.tdi_176 .td-author-date .entry-date,.tdi_176 .td-module-comments a{font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:capitalize!important}html:not([class*='ie']) .tdi_176 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px) and (max-width:1018px){.tdb_loop .td-module-title{font-size:17px;line-height:22px}}@media (min-width:768px){.tdi_176 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_176 .td_module_wrap{padding-left:10px;padding-right:10px}.tdi_176 .tdb-block-inner{margin-left:-10px;margin-right:-10px;row-gap:calc(16px * 2)}.tdi_176 .td-module-container:before{bottom:-16px}.tdi_176 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_176 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_176 .td-module-meta-info{padding:15px 0 0 0}.tdi_176 .td_module_wrap{padding-left:7.5px;padding-right:7.5px}.tdi_176 .tdb-block-inner{margin-left:-7.5px;margin-right:-7.5px;row-gap:calc(12px * 2)}.tdi_176 .td-module-container:before{bottom:-12px}.tdi_176 .td-post-category{margin:2px 5px 0 0;font-size:11px!important}.tdi_176 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_176 .td-block-title a,.tdi_176 .td-block-title span{font-size:15px!important}.tdi_176 .entry-title{font-size:17px!important}.tdi_176 .td-author-date,.tdi_176 .tdb-author-photo,.tdi_176 .td-post-author-name a,.tdi_176 .td-author-date .entry-date,.tdi_176 .td-module-comments a{font-size:11px!important}.tdi_176 .td-excerpt{font-size:11px!important}@media (min-width:768px){.tdi_176 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_176 .td_module_wrap:not(.tdb_module_rec){width:100%}.tdi_176 .td_module_wrap{padding-left:0px;padding-right:0px}.tdi_176 .tdb-block-inner{margin-left:-0px;margin-right:-0px;row-gap:calc(18px * 2)}.tdi_176 .td-module-container:before{bottom:-18px}.tdi_176 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none}.tdi_176 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_176 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_176 = new tdBlock();
block_tdi_176.id = "tdi_176";
block_tdi_176.atts = '{"custom_title":"Latest Articles","modules_on_row":"eyJhbGwiOiI1MCUiLCJwaG9uZSI6IjEwMCUifQ==","modules_gap":"eyJsYW5kc2NhcGUiOiIyMCIsInBvcnRyYWl0IjoiMTUiLCJhbGwiOiIyNCIsInBob25lIjoiMCJ9","modules_category":"above","show_excerpt":"none","show_btn":"none","ajax_pagination":"numbered","hide_audio":"yes","art_title":"10px 0","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxOSIsInBvcnRyYWl0IjoiMTcifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","title_txt":"#000000","title_txt_hover":"#008d7f","image_height":"eyJhbGwiOiI2MCIsInBob25lIjoiNjAifQ==","modules_category_margin":"eyJhbGwiOiIwIiwicG9ydHJhaXQiOiIycHggNXB4IDAgMCJ9","modules_category_padding":"0","f_cat_font_family":"712","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","f_meta_font_family":"712","f_meta_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_meta_font_line_height":"1","f_meta_font_weight":"400","f_meta_font_transform":"capitalize","art_excerpt":"10px 0 0","f_ex_font_family":"712","f_ex_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_ex_font_line_height":"1.6","f_ex_font_weight":"400","block_template_id":"td_block_template_8","show_com":"none","meta_padding":"eyJhbGwiOiIyMHB4IDAgMCAwIiwicG9ydHJhaXQiOiIxNXB4IDAgMCAwIn0=","all_modules_space":"eyJhbGwiOiIzNiIsImxhbmRzY2FwZSI6IjMyIiwicG9ydHJhaXQiOiIyNCJ9","f_header_font_size":"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTUifQ==","f_header_font_weight":"500","f_header_font_transform":"uppercase","border_color":"#008d7f","pag_h_bg":"#008d7f","pag_a_bg":"#008d7f","pag_h_border":"#008d7f","pag_a_border":"#008d7f","tdc_css":"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQ4IiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==","limit":"6","author_txt_hover":"#008d7f","block_type":"tdb_loop","separator":"","custom_url":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","offset":"","open_in_new_window":"","post_ids":"","include_cf_posts":"","exclude_cf_posts":"","sort":"","installed_post_types":"","ajax_pagination_next_prev_swipe":"","ajax_pagination_infinite_stop":"","locked_only":"","review_source":"","container_width":"","m_padding":"","m_radius":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_size":"","image_alignment":"50","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","show_favourites":"","fav_size":"2","fav_space":"","fav_ico_color":"","fav_ico_color_h":"","fav_bg":"","fav_bg_h":"","fav_shadow_shadow_header":"","fav_shadow_shadow_title":"Shadow","fav_shadow_shadow_size":"","fav_shadow_shadow_offset_horizontal":"","fav_shadow_shadow_offset_vertical":"","fav_shadow_shadow_spread":"","fav_shadow_shadow_color":"","video_icon":"","video_popup":"yes","video_rec":"","spot_header":"","video_rec_title":"- Advertisement -","video_rec_color":"","video_rec_disable":"","autoplay_vid":"yes","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","video_title_color":"","video_title_color_h":"","video_bg":"","video_overlay":"","vid_t_color":"","vid_t_bg_color":"","f_vid_title_font_header":"","f_vid_title_font_title":"Video pop-up article title","f_vid_title_font_settings":"","f_vid_title_font_family":"","f_vid_title_font_size":"","f_vid_title_font_line_height":"","f_vid_title_font_style":"","f_vid_title_font_weight":"","f_vid_title_font_transform":"","f_vid_title_font_spacing":"","f_vid_title_":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","meta_info_align":"","meta_info_horiz":"content-horiz-left","meta_width":"","meta_margin":"","meta_space":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","meta_info_border_radius":"","art_btn":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","show_author":"inline-block","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_date":"inline-block","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","excerpt_inline":"","show_audio":"block","art_audio":"","art_audio_size":"1.5","btn_title":"","btn_margin":"","btn_padding":"","btn_border_width":"","btn_radius":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","pag_icons_size":"","f_header_font_header":"","f_header_font_title":"Block header","f_header_font_settings":"","f_header_font_family":"","f_header_font_line_height":"","f_header_font_style":"","f_header_font_spacing":"","f_header_":"","f_pag_font_title":"Pagination text","f_pag_font_settings":"","f_pag_font_family":"","f_pag_font_size":"","f_pag_font_line_height":"","f_pag_font_style":"","f_pag_font_weight":"","f_pag_font_transform":"","f_pag_font_spacing":"","f_pag_":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_style":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_style":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","f_btn_font_title":"Article read more button","f_btn_font_settings":"","f_btn_font_family":"","f_btn_font_size":"","f_btn_font_line_height":"","f_btn_font_style":"","f_btn_font_weight":"","f_btn_font_transform":"","f_btn_font_spacing":"","f_btn_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","m_bg":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_style":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","btn_bg":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border":"","btn_border_hover":"","nextprev_border_h":"","pag_text":"","pag_h_text":"","pag_a_text":"","pag_bg":"","pag_border":"","ad_loop":"","ad_loop_title":"- Advertisement -","ad_loop_repeat":"","ad_loop_color":"","ad_loop_full":"yes","f_ad_font_header":"","f_ad_font_title":"Ad title text","f_ad_font_settings":"","f_ad_font_family":"","f_ad_font_size":"","f_ad_font_line_height":"","f_ad_font_style":"","f_ad_font_weight":"","f_ad_font_transform":"","f_ad_font_spacing":"","f_ad_":"","ad_loop_disable":"","el_class":"","td_column_number":2,"header_color":"","td_ajax_preloading":"","td_ajax_filter_type":"","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","border_top":"","css":"","class":"tdi_176","tdc_css_class":"tdi_176","tdc_css_class_style":"tdi_176_rand_style"}';
block_tdi_176.td_column_number = "2";
block_tdi_176.block_type = "tdb_loop";
block_tdi_176.post_count = "6";
block_tdi_176.found_posts = "85";
block_tdi_176.header_color = "";
block_tdi_176.ajax_pagination_infinite_stop = "";
block_tdi_176.max_num_pages = "15";
tdBlocksArray.push(block_tdi_176);
</script><div class="td-block-title-wrap"><h4 class="td-block-title"><span>Latest Articles</span></h4></div><div id=tdi_176 class="td_block_inner tdb-block-inner td-fix-index">
        <div class="tdb_module_loop td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" class="td-image-wrap " title="How to Think and Act in the Plummeting Stock Market" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-696x461.jpg" ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" title="How to Think and Act in the Plummeting Stock Market">How to Think and Act in the Plummeting Stock Market</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_loop td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" class="td-image-wrap " title="The Real Economy Has Never Been Tested by a Pandemic" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-696x464.jpg" ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" title="The Real Economy Has Never Been Tested by a Pandemic">The Real Economy Has Never Been Tested by a Pandemic</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_loop td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" class="td-image-wrap " title="More and More People Stay Home as Coronavirus Spreads" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-696x464.jpg" ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" title="More and More People Stay Home as Coronavirus Spreads">More and More People Stay Home as Coronavirus Spreads</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_loop td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" class="td-image-wrap " title="Witnessing the Birth of the New Coronavirus Economy" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/79-696x464.jpg" ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" title="Witnessing the Birth of the New Coronavirus Economy">Witnessing the Birth of the New Coronavirus Economy</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:49-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_loop td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" class="td-image-wrap " title="Companies Are Putting Profits Ahead of Public Health" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/80-696x464.jpg" ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" title="Companies Are Putting Profits Ahead of Public Health">Companies Are Putting Profits Ahead of Public Health</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:49-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="tdb_module_loop td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/duos-epic-win-will-be-commemorated-with-yacht-photoshoot/"  rel="bookmark" class="td-image-wrap " title="Duo&#8217;s Epic Win Will Be Commemorated with Yacht Photoshoot" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/81-696x806.jpg" ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/arts/" class="td-post-category" >Arts</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/duos-epic-win-will-be-commemorated-with-yacht-photoshoot/"  rel="bookmark" title="Duo&#8217;s Epic Win Will Be Commemorated with Yacht Photoshoot">Duo&#8217;s Epic Win Will Be Commemorated with Yacht Photoshoot</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:49-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="page-nav td-pb-padding-side"><span class="current">1</span><a href="https://reviewboard.com/page/2/?option=com_ninjarsssyndicator&#038;feed_id=2&#038;format=raw" class="page" title="2">2</a><a href="https://reviewboard.com/page/3/?option=com_ninjarsssyndicator&#038;feed_id=2&#038;format=raw" class="page" title="3">3</a><span class="extend">...</span><a href="https://reviewboard.com/page/15/?option=com_ninjarsssyndicator&#038;feed_id=2&#038;format=raw" class="last" title="15">15</a><a href="https://reviewboard.com/page/2/?option=com_ninjarsssyndicator&#038;feed_id=2&#038;format=raw"  aria-label="next-page" ><i class="page-nav-icon td-icon-menu-right"></i></a><span class="pages">Page 1 of 15</span><div class="clearfix"></div></div></div></div></div><div class="vc_column tdi_178  wpb_column vc_column_container tdc-column td-pb-span4 td-is-sticky">
<style scoped>.tdi_178{vertical-align:baseline}.tdi_178>.wpb_wrapper,.tdi_178>.wpb_wrapper>.tdc-elements{display:block}.tdi_178>.wpb_wrapper>.tdc-elements{width:100%}.tdi_178>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_178>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" data-sticky-enabled-on="W3RydWUsdHJ1ZSx0cnVlLHRydWVd" data-sticky-offset="20" data-sticky-is-width-auto="W2ZhbHNlLGZhbHNlLGZhbHNlLGZhbHNlXQ=="><div class="td_block_wrap td_flex_block_1 tdi_179 td_with_ajax_pagination td-pb-border-top td_block_template_8 td_flex_block"  data-td-block-uid="tdi_179" >
<style>.tdi_179 .td-block-title>*:before,.tdi_179 .td-block-title>*:after{background-color:#008d7f!important}@media (max-width:767px){.tdi_179{margin-bottom:40px!important}}</style>
<style>.tdi_179 .td-image-wrap{padding-bottom:100%}.tdi_179 .entry-thumb{background-position:center 50%;background-image:none!important}.tdi_179 .td-image-container{flex:0 0 30%;width:30%;display:none}.ie10 .tdi_179 .td-image-container,.ie11 .tdi_179 .td-image-container{flex:0 0 auto}body .tdi_179 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_179 .td-module-meta-info{padding:0px;display:flex;flex-direction:column;justify-content:center;border-color:#eaeaea}.tdi_179 .td-category-pos-above .td-post-category{align-self:flex-start}.tdi_179 .td_module_wrap{padding-left:20px;padding-right:20px;padding-bottom:12px;margin-bottom:12px}.tdi_179 .td_block_inner{margin-left:-20px;margin-right:-20px}.tdi_179 .td-module-container:before{bottom:-12px;border-color:#eaeaea}.tdi_179 .td-module-container{border-color:#eaeaea!important}.tdi_179 .td-post-vid-time{display:block}.tdi_179 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-family:Rubik!important;font-size:13px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_179 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_179 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_179 .td-excerpt{display:none;margin:0px;column-count:1;column-gap:48px}.tdi_179 .td-audio-player{opacity:1;visibility:visible;height:auto;font-size:13px}.tdi_179 .td-read-more{display:none}.tdi_179 .td-author-date{display:inline}.tdi_179 .entry-review-stars{display:none}.tdi_179 .td-icon-star,.tdi_179 .td-icon-star-empty,.tdi_179 .td-icon-star-half{font-size:15px}.tdi_179 .td-module-comments{display:none}.tdi_179 .td_module_wrap:nth-last-child(1){margin-bottom:0;padding-bottom:0}.tdi_179 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none}.tdi_179 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_179 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_179 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_179 .td-post-author-name:hover a{color:#008d7f}.tdi_179.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_179 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_179 .td-module-exclusive .td-module-title a:before{display:inline-block}.tdi_179 .entry-title{margin:10px 0;font-family:Rubik!important;font-size:17px!important;line-height:1.2!important;font-weight:500!important}.tdi_179 .td-block-title a,.tdi_179 .td-block-title span{font-family:Rubik!important;font-size:17px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_179 .td-editor-date,.tdi_179 .td-editor-date .td-post-author-name a,.tdi_179 .td-editor-date .entry-date,.tdi_179 .td-module-comments a{font-family:Rubik!important;font-size:11px!important;font-weight:400!important;text-transform:capitalize!important}html:not([class*='ie']) .tdi_179 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_179 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_179 .td-image-container{display:none}.tdi_179 .td_module_wrap{padding-bottom:8px;margin-bottom:8px;padding-bottom:8px!important;margin-bottom:8px!important}.tdi_179 .td-module-container:before{bottom:-8px}.tdi_179 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_179 .td_module_wrap .td-module-container:before{display:block!important}.tdi_179 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_179 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_179 .entry-title{margin:8px 0;font-size:15px!important}@media (min-width:768px){.tdi_179 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_179 .td-image-container{display:none}.tdi_179 .td_module_wrap{padding-bottom:7.5px;margin-bottom:7.5px;padding-bottom:7.5px!important;margin-bottom:7.5px!important}.tdi_179 .td-module-container:before{bottom:-7.5px}.tdi_179 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_179 .td_module_wrap .td-module-container:before{display:block!important}.tdi_179 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_179 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_179 .entry-title{margin:5px 0;font-size:13px!important}.tdi_179 .td-block-title a,.tdi_179 .td-block-title span{font-size:15px!important}.tdi_179 .td-post-category{font-size:11px!important}@media (min-width:768px){.tdi_179 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_179 .td-image-container{display:none}.tdi_179 .td_module_wrap{width:100%;float:left;padding-bottom:12px;margin-bottom:12px;padding-bottom:12px!important;margin-bottom:12px!important}.rtl .tdi_179 .td_module_wrap{float:right}.tdi_179 .td-module-container:before{bottom:-12px}.tdi_179 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_179 .td_module_wrap .td-module-container:before{display:block!important}.tdi_179 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_179 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_179 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_179 = new tdBlock();
block_tdi_179.id = "tdi_179";
block_tdi_179.atts = '{"modules_on_row":"eyJwaG9uZSI6IjEwMCUifQ==","image_floated":"hidden","image_width":"30","image_height":"100","show_btn":"none","show_excerpt":"none","modules_category":"above","show_date":"","show_review":"none","show_com":"none","show_author":"","meta_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAiLCJwb3J0cmFpdCI6IjVweCAwIiwibGFuZHNjYXBlIjoiOHB4IDAifQ==","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTMiLCJsYW5kc2NhcGUiOiIxNSJ9","f_title_font_weight":"500","f_title_font_line_height":"1.2","title_txt":"#000000","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","f_cat_font_family":"712","f_cat_font_transform":"uppercase","f_cat_font_weight":"400","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","modules_category_padding":"0","all_modules_space":"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMTUiLCJsYW5kc2NhcGUiOiIxNiJ9","category_id":"","ajax_pagination":"next_prev","sort":"","title_txt_hover":"#008d7f","tdc_css":"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJhbGwiOnsiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9","cat_txt":"#000000","cat_txt_hover":"#008d7f","f_more_font_weight":"","f_more_font_transform":"","f_more_font_family":"","image_size":"","f_meta_font_family":"712","custom_title":"Must Read","block_template_id":"td_block_template_8","border_color":"#008d7f","art_excerpt":"0","meta_info_align":"center","f_cat_font_line_height":"1","pag_h_bg":"#008d7f","td_ajax_filter_type":"","td_ajax_filter_ids":"","f_header_font_size":"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTUifQ==","f_header_font_weight":"500","f_header_font_transform":"uppercase","f_header_font_family":"712","pag_h_border":"#008d7f","f_meta_font_size":"11","f_meta_font_weight":"400","f_meta_font_transform":"capitalize","author_txt_hover":"#008d7f","block_type":"td_flex_block_1","separator":"","custom_url":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","post_ids":"","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","popular_by_date":"","linked_posts":"","favourite_only":"","locked_only":"","limit":"5","offset":"","open_in_new_window":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_source":"","el_class":"","td_query_cache":"","td_query_cache_expiration":"","td_filter_default_txt":"All","td_ajax_preloading":"","container_width":"","modules_gap":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_border_radius":"","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_radius":"","hide_image":"","show_favourites":"","fav_size":"2","fav_space":"","fav_ico_color":"","fav_ico_color_h":"","fav_bg":"","fav_bg_h":"","fav_shadow_shadow_header":"","fav_shadow_shadow_title":"Shadow","fav_shadow_shadow_size":"","fav_shadow_shadow_offset_horizontal":"","fav_shadow_shadow_offset_vertical":"","fav_shadow_shadow_spread":"","fav_shadow_shadow_color":"","video_icon":"","video_popup":"yes","video_rec":"","spot_header":"","video_rec_title":"","video_rec_color":"","video_rec_disable":"","autoplay_vid":"yes","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","video_title_color":"","video_title_color_h":"","video_bg":"","video_overlay":"","vid_t_color":"","vid_t_bg_color":"","f_vid_title_font_header":"","f_vid_title_font_title":"Video pop-up article title","f_vid_title_font_settings":"","f_vid_title_font_family":"","f_vid_title_font_size":"","f_vid_title_font_line_height":"","f_vid_title_font_style":"","f_vid_title_font_weight":"","f_vid_title_font_transform":"","f_vid_title_font_spacing":"","f_vid_title_":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","meta_info_horiz":"layout-default","meta_width":"","meta_margin":"","meta_space":"","art_btn":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","meta_info_border_radius":"","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","review_space":"","review_size":"2.5","review_distance":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","excerpt_inline":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1.5","btn_title":"","btn_margin":"","btn_padding":"","btn_border_width":"","btn_radius":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","pag_icons_size":"","f_header_font_header":"","f_header_font_title":"Block header","f_header_font_settings":"","f_header_font_line_height":"","f_header_font_style":"","f_header_font_spacing":"","f_header_":"","f_ajax_font_title":"Ajax categories","f_ajax_font_settings":"","f_ajax_font_family":"","f_ajax_font_size":"","f_ajax_font_line_height":"","f_ajax_font_style":"","f_ajax_font_weight":"","f_ajax_font_transform":"","f_ajax_font_spacing":"","f_ajax_":"","f_more_font_title":"Load more button","f_more_font_settings":"","f_more_font_size":"","f_more_font_line_height":"","f_more_font_style":"","f_more_font_spacing":"","f_more_":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","f_btn_font_title":"Article read more button","f_btn_font_settings":"","f_btn_font_family":"","f_btn_font_size":"","f_btn_font_line_height":"","f_btn_font_style":"","f_btn_font_weight":"","f_btn_font_transform":"","f_btn_font_spacing":"","f_btn_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"","cat_style":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","btn_bg":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border":"","btn_border_hover":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","ajax_pagination_next_prev_swipe":"","ajax_pagination_infinite_stop":"","css":"","td_column_number":1,"header_color":"","color_preset":"","border_top":"","class":"tdi_179","tdc_css_class":"tdi_179","tdc_css_class_style":"tdi_179_rand_style"}';
block_tdi_179.td_column_number = "1";
block_tdi_179.block_type = "td_flex_block_1";
block_tdi_179.post_count = "5";
block_tdi_179.found_posts = "85";
block_tdi_179.header_color = "";
block_tdi_179.ajax_pagination_infinite_stop = "";
block_tdi_179.max_num_pages = "17";
tdBlocksArray.push(block_tdi_179);
</script><div class="td-block-title-wrap"><h4 class="td-block-title"><span>Must Read</span></h4></div><div id=tdi_179 class="td_block_inner td-mc1-wrap">
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" class="td-image-wrap " title="How to Think and Act in the Plummeting Stock Market" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/76-696x461.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/how-to-think-and-act-in-the-plummeting-stock-market/"  rel="bookmark" title="How to Think and Act in the Plummeting Stock Market">How to Think and Act in the Plummeting Stock Market</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" class="td-image-wrap " title="The Real Economy Has Never Been Tested by a Pandemic" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/77-696x464.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/the-real-economy-has-never-been-tested-by-a-pandemic/"  rel="bookmark" title="The Real Economy Has Never Been Tested by a Pandemic">The Real Economy Has Never Been Tested by a Pandemic</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" class="td-image-wrap " title="More and More People Stay Home as Coronavirus Spreads" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/78-696x464.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/more-and-more-people-stay-home-as-coronavirus-spreads/"  rel="bookmark" title="More and More People Stay Home as Coronavirus Spreads">More and More People Stay Home as Coronavirus Spreads</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:50-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" class="td-image-wrap " title="Witnessing the Birth of the New Coronavirus Economy" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/79-696x464.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/witnessing-the-birth-of-the-new-coronavirus-economy/"  rel="bookmark" title="Witnessing the Birth of the New Coronavirus Economy">Witnessing the Birth of the New Coronavirus Economy</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:49-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                    
                                    </div>
            </div>
        </div>

        
        <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post">
            <div class="td-module-container td-category-pos-above">
                                    <div class="td-image-container">
                                                <div class="td-module-thumb"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" class="td-image-wrap " title="Companies Are Putting Profits Ahead of Public Health" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.reviewboard.com/wp-content/uploads/2022/08/80-696x464.jpg"  ></span></a></div>                                                                    </div>
                
                <div class="td-module-meta-info">
                                        <a href="https://reviewboard.com/category/global/" class="td-post-category" >Global</a>
                    <h3 class="entry-title td-module-title"><a href="https://reviewboard.com/companies-are-putting-profits-ahead-of-public-health/"  rel="bookmark" title="Companies Are Putting Profits Ahead of Public Health">Companies Are Putting Profits Ahead of Public Health</a></h3>
                    
                                            <div class="td-editor-date">
                                                        
                                                            <span class="td-author-date">
                                                                        <span class="td-post-author-name"><a href="https://reviewboard.com/author/editor/">editor</a> <span>-</span> </span>                                    <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2022-08-30T10:36:49-04:00" >August 30, 2022</time></span>                                                                                                        </span>
                                                    </div>
                    
                    
                    
                                    </div>
            </div>
        </div>

        </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_179" data-td_block_id="tdi_179"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#"  class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_179" data-td_block_id="tdi_179"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div><div class="td_block_wrap td_block_popular_categories tdi_180 widget widget_categories td-pb-border-top td_block_template_8"  data-td-block-uid="tdi_180" >
<style>
.tdi_180 .td-block-title > *:before,
            .tdi_180 .td-block-title > *:after {
                background-color: #008d7f !important;
            }
</style>
<style>.td_block_popular_categories{padding-bottom:0}.tdi_180 .td-cat-name{color:#000000}.tdi_180 .td-cat-no{color:#000000;font-family:Rubik!important;font-size:13px!important;font-weight:500!important}.tdi_180 li:hover .td-cat-name{color:#008d7f}.tdi_180 li:hover .td-cat-no{color:#008d7f}.tdi_180 .td-block-title a,.tdi_180 .td-block-title span{font-family:Rubik!important;font-size:17px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_180 li{font-family:Rubik!important;font-size:15px!important;font-weight:500!important}@media (min-width:768px) and (max-width:1018px){.tdi_180 .td-block-title a,.tdi_180 .td-block-title span{font-size:15px!important}.tdi_180 li{font-size:13px!important}.tdi_180 .td-cat-no{font-size:11px!important}}</style><div class="td-block-title-wrap"><h4 class="td-block-title"><span>Categories</span></h4></div><ul class="td-pb-padding-side"><li><a href="https://reviewboard.com/category/gaming/"><span class="td-cat-name">Gaming</span><span class="td-cat-no">10</span></a></li><li><a href="https://reviewboard.com/category/lifestyle/whats-hot/"><span class="td-cat-name">What's Hot</span><span class="td-cat-no">10</span></a></li><li><a href="https://reviewboard.com/category/video/"><span class="td-cat-name">Video</span><span class="td-cat-no">10</span></a></li><li><a href="https://reviewboard.com/category/lifestyle/travel/"><span class="td-cat-name">Travel</span><span class="td-cat-no">10</span></a></li><li><a href="https://reviewboard.com/category/style/"><span class="td-cat-name">Style</span><span class="td-cat-no">10</span></a></li><li><a href="https://reviewboard.com/category/showbiz/"><span class="td-cat-name">Showbiz</span><span class="td-cat-no">10</span></a></li></ul></div></div></div></div></div></div></div>
                </div>
                            </div> <!-- /.td-main-content-wrap -->


                <div class="td-footer-template-wrap" style="position: relative">
                <div class="td-footer-wrap ">
            <div id="tdi_181" class="tdc-zone"><div class="tdc_zone tdi_182  wpb_row td-pb-row"  >
<style scoped>.tdi_182{min-height:0}.tdi_182{margin-right:auto!important;margin-left:auto!important;width:1164px!important}@media (min-width:1019px) and (max-width:1140px){.tdi_182{width:100%!important}}@media (min-width:768px) and (max-width:1018px){.tdi_182{width:100%!important}}@media (max-width:767px){.tdi_182{width:100%!important}}</style><div id="tdi_183" class="tdc-row"><div class="vc_row tdi_184  wpb_row td-pb-row tdc-element-style" >
<style scoped>.tdi_184,.tdi_184 .tdc-columns{min-height:0}.tdi_184,.tdi_184 .tdc-columns{display:block}.tdi_184 .tdc-columns{width:100%}.tdi_184:before,.tdi_184:after{display:table}.tdi_184{padding-top:60px!important;padding-bottom:60px!important;position:relative}.tdi_184 .td_block_wrap{text-align:left}@media (max-width:767px){.tdi_184{padding-top:40px!important;padding-bottom:40px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_184{padding-top:40px!important;padding-bottom:40px!important}}</style>
<div class="tdi_183_rand_style td-element-style" ><div class="td-element-style-before"><style>.tdi_183_rand_style>.td-element-style-before{content:''!important;width:100%!important;height:100%!important;position:absolute!important;top:0!important;left:0!important;display:block!important;z-index:0!important;background-image:url("http://reviewboard.com/wp-content/uploads/2022/08/3.jpg")!important;background-position:center center!important;opacity:0.2!important;background-size:cover!important}</style></div><style>.tdi_183_rand_style{background-color:#232d35!important}</style></div><div class="vc_column tdi_186  wpb_column vc_column_container tdc-column td-pb-span12">
<style scoped>.tdi_186{vertical-align:baseline}.tdi_186>.wpb_wrapper,.tdi_186>.wpb_wrapper>.tdc-elements{display:block}.tdi_186>.wpb_wrapper>.tdc-elements{width:100%}.tdi_186>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_186>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_header_logo tdi_187 td-pb-border-top td_block_template_1 tdb-header-align"  data-td-block-uid="tdi_187" >
<style>.tdi_187{margin-bottom:40px!important}@media (min-width:768px) and (max-width:1018px){.tdi_187{margin-bottom:30px!important}}@media (max-width:767px){.tdi_187{margin-bottom:25px!important}}</style>
<style>.tdi_187 .tdb-logo-a,.tdi_187 h1{align-items:flex-start;justify-content:center}.tdi_187 .tdb-logo-svg-wrap{display:block}.tdi_187 .tdb-logo-svg-wrap+.tdb-logo-img-wrap{display:none}.tdi_187 .tdb-logo-img-wrap{display:block}.tdi_187 .tdb-logo-text-tagline{margin-top:2px;margin-left:0;display:none}.tdi_187 .tdb-logo-text-title{display:none}.tdi_187 .tdb-logo-text-wrap{flex-direction:column;align-items:flex-start}.tdi_187 .tdb-logo-icon{top:0px;display:block}</style><div class="tdb-block-inner td-fix-index"><a class="tdb-logo-a" href="https://reviewboard.com/"><span class="tdb-logo-img-wrap"><img class="tdb-logo-img td-retina-data" data-retina="http://reviewboard.com/wp-content/uploads/2022/08/Retna-Reviewboard-Magazine-1-1-300x99.png" src="http://reviewboard.com/wp-content/uploads/2022/08/Regular-Reviewboard-Magazine-1.png" alt="Logo"  title=""  /></span><span class="tdb-logo-text-wrap"><span class="tdb-logo-text-title">Reviewboard Magazine</span><span class="tdb-logo-text-tagline">Reviews That Matter</span></span></a></div></div> <!-- ./block --><div class="tdm_block td_block_wrap tdm_block_inline_text tdi_188 td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_188" >
<style>.tdi_188{width:72%!important}@media (max-width:767px){.tdi_188{width:100%!important}}@media (min-width:768px) and (max-width:1018px){.tdi_188{width:80%!important}}@media (min-width:1019px) and (max-width:1140px){.tdi_188{width:78%!important}}</style>
<style>.tdm_block.tdm_block_inline_text{margin-bottom:0;vertical-align:top}.tdm_block.tdm_block_inline_text .tdm-descr{margin-bottom:0;-webkit-transform:translateZ(0);transform:translateZ(0)}.tdc-row-content-vert-center .tdm-inline-text-yes{vertical-align:middle}.tdc-row-content-vert-bottom .tdm-inline-text-yes{vertical-align:bottom}.tdi_188{text-align:center!important;margin-right:auto;margin-left:auto}.tdi_188 .tdm-descr{color:#eaeaea;font-family:Rubik!important;font-size:13px!important;line-height:1.6!important;font-weight:400!important}@media (min-width:768px) and (max-width:1018px){.tdi_188 .tdm-descr{font-size:11px!important}}</style><p class="tdm-descr">Newspaper is your news, entertainment, music fashion website. We provide you with the latest breaking news and videos straight from the entertainment industry. Fashion fades, only style remains the same. Fashion never stops. There are always projects, opportunities. Clothes mean nothing until someone lives in them.</p></div><div class="tdm_block td_block_wrap tdm_block_inline_text tdi_189 td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_189" >
<style>.tdi_189{margin-top:20px!important;margin-bottom:15px!important;padding-right:10%!important;padding-left:10%!important}@media (min-width:768px) and (max-width:1018px){.tdi_189{margin-top:15px!important;margin-bottom:10px!important}}</style>
<style>.tdi_189{text-align:center!important;margin-right:auto;margin-left:auto}.tdi_189 .tdm-descr{color:#eaeaea;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important}.tdi_189 .tdm-descr a{color:#008d7f}</style><p class="tdm-descr">Contact us: <a href="mailto:contact@yoursite.com">contact@yoursite.com</a></p></div><div class="tdm_block td_block_wrap tdm_block_socials tdi_190 tdm-content-horiz-center td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_190" >
<style>.tdi_191 .tdm-social-item i{font-size:14px;vertical-align:middle;line-height:39.2px}.tdi_191 .tdm-social-item i.td-icon-linkedin,.tdi_191 .tdm-social-item i.td-icon-pinterest,.tdi_191 .tdm-social-item i.td-icon-blogger,.tdi_191 .tdm-social-item i.td-icon-vimeo{font-size:11.2px}.tdi_191 .tdm-social-item{width:39.2px;height:39.2px;margin:7px 14px 7px 0;background:rgba(255,255,255,0.03)}.tdi_191 .tdm-social-item-wrap:last-child .tdm-social-item{margin-right:0!important}.tdi_191 .tdm-social-item i,.tds-team-member2 .tdi_191.tds-social4 .tdm-social-item i{color:#ffffff}body .tdi_191 .tdm-social-item{border:1px solid rgba(203,149,88,0.03)}.tdi_191 .tdm-social-text{display:none;margin-left:2px;margin-right:18px}@media (min-width:1019px) and (max-width:1140px){body .tdi_191 .tdm-social-item{border:1px solid rgba(203,149,88,0.03)}}@media (min-width:768px) and (max-width:1018px){body .tdi_191 .tdm-social-item{border:1px solid rgba(203,149,88,0.03)}}@media (max-width:767px){body .tdi_191 .tdm-social-item{border:1px solid rgba(203,149,88,0.03)}}</style><div class="tdm-social-wrapper tds-social4 tdi_191"><div class="tdm-social-item-wrap"><a href="#"  title="Facebook" class="tdm-social-item"><i class="td-icon-font td-icon-facebook"></i><span style="display: none">Facebook</span></a></div><div class="tdm-social-item-wrap"><a href="#"  title="Instagram" class="tdm-social-item"><i class="td-icon-font td-icon-instagram"></i><span style="display: none">Instagram</span></a></div><div class="tdm-social-item-wrap"><a href="#"  title="Linkedin" class="tdm-social-item"><i class="td-icon-font td-icon-linkedin"></i><span style="display: none">Linkedin</span></a></div><div class="tdm-social-item-wrap"><a href="#"  title="Pinterest" class="tdm-social-item"><i class="td-icon-font td-icon-pinterest"></i><span style="display: none">Pinterest</span></a></div><div class="tdm-social-item-wrap"><a href="#"  title="Tumblr" class="tdm-social-item"><i class="td-icon-font td-icon-tumblr"></i><span style="display: none">Tumblr</span></a></div><div class="tdm-social-item-wrap"><a href="#"  title="Twitter" class="tdm-social-item"><i class="td-icon-font td-icon-twitter"></i><span style="display: none">Twitter</span></a></div></div></div></div></div></div></div><div id="tdi_192" class="tdc-row"><div class="vc_row tdi_193  wpb_row td-pb-row tdc-element-style tdc-row-content-vert-center" >
<style scoped>.tdi_193,.tdi_193 .tdc-columns{min-height:0}.tdi_193,.tdi_193 .tdc-columns{display:block}.tdi_193 .tdc-columns{width:100%}.tdi_193:before,.tdi_193:after{display:table}@media (min-width:767px){.tdi_193.tdc-row-content-vert-center,.tdi_193.tdc-row-content-vert-center .tdc-columns{display:flex;align-items:center;flex:1}.tdi_193.tdc-row-content-vert-bottom,.tdi_193.tdc-row-content-vert-bottom .tdc-columns{display:flex;align-items:flex-end;flex:1}.tdi_193.tdc-row-content-vert-center .td_block_wrap{vertical-align:middle}.tdi_193.tdc-row-content-vert-bottom .td_block_wrap{vertical-align:bottom}}.tdi_193{padding-top:8px!important;padding-bottom:8px!important;position:relative}.tdi_193 .td_block_wrap{text-align:left}@media (max-width:767px){.tdi_193{padding-top:10px!important;padding-bottom:5px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_193{padding-top:6px!important;padding-bottom:6px!important}}</style>
<div class="tdi_192_rand_style td-element-style" ><style>.tdi_192_rand_style{background-color:#11171c!important}</style></div><div class="vc_column tdi_195  wpb_column vc_column_container tdc-column td-pb-span6">
<style scoped>.tdi_195{vertical-align:baseline}.tdi_195>.wpb_wrapper,.tdi_195>.wpb_wrapper>.tdc-elements{display:block}.tdi_195>.wpb_wrapper>.tdc-elements{width:100%}.tdi_195>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_195>.wpb_wrapper{width:auto;height:auto}@media (max-width:767px){.tdi_195{margin-bottom:8px!important}}</style><div class="wpb_wrapper" ><div class="tdm_block td_block_wrap tdm_block_inline_text tdi_196 td-pb-border-top td_block_template_1"  data-td-block-uid="tdi_196" >
<style>@media (max-width:767px){.tdi_196{margin-top:0px!important;justify-content:center!important;text-align:center!important}}</style>
<style>.tdi_196{text-align:left!important}.tdi_196 .tdm-descr{color:#cccccc;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important}@media (min-width:768px) and (max-width:1018px){.tdi_196 .tdm-descr{font-size:11px!important}}</style><p class="tdm-descr">&copy; Copyright - Newspaper WordPress Theme by TagDiv</p></div></div></div><div class="vc_column tdi_198  wpb_column vc_column_container tdc-column td-pb-span6">
<style scoped>.tdi_198{vertical-align:baseline}.tdi_198>.wpb_wrapper,.tdi_198>.wpb_wrapper>.tdc-elements{display:block}.tdi_198>.wpb_wrapper>.tdc-elements{width:100%}.tdi_198>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_198>.wpb_wrapper{width:auto;height:auto}.tdi_198{justify-content:flex-end!important;text-align:right!important}@media (max-width:767px){.tdi_198{justify-content:center!important;text-align:center!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap td_block_list_menu tdi_199 td-blm-display-horizontal td-pb-border-top td_block_template_1 widget"  data-td-block-uid="tdi_199" >
<style>.tdi_199{margin-bottom:0px!important}@media(min-width:1141px){.tdi_199{display:inline-table!important}}@media (max-width:767px){.tdi_199{display:inline-block!important}}@media (min-width:768px) and (max-width:1018px){.tdi_199{display:inline-table!important}}@media (min-width:1019px) and (max-width:1140px){.tdi_199{display:inline-table!important}}</style>
<style>.td_block_list_menu ul{flex-wrap:wrap;margin-left:12px}.td_block_list_menu ul li{margin-left:0}.td_block_list_menu ul li a{display:flex;margin-left:0}.td_block_list_menu .td-blm-menu-item-txt{display:flex;align-items:center;flex-grow:1}.td_block_list_menu .sub-menu{padding-left:22px}.td_block_list_menu .sub-menu li{font-size:13px}.td_block_list_menu li.current-menu-item>a,.td_block_list_menu li.current-menu-ancestor>a,.td_block_list_menu li.current-category-ancestor>a,.td_block_list_menu li.current-page-ancestor>a{color:var(--td_theme_color,#4db2ec)}.td_block_list_menu .td-blm-sub-icon{display:flex;align-items:center;justify-content:center;margin-left:.6em;padding:0 .6em;transition:transform .2s ease-in-out}.td_block_list_menu .td-blm-sub-icon svg{display:block;width:1em;height:auto}.td_block_list_menu .td-blm-sub-icon svg,.td_block_list_menu .td-blm-sub-icon svg *{fill:currentColor}.td_block_list_menu.td-blm-display-accordion .menu-item-has-children ul{display:none}.td_block_list_menu.td-blm-display-accordion .menu-item-has-children-open>a>.td-blm-sub-icon{transform:rotate(180deg)}.td_block_list_menu.td-blm-display-horizontal ul{display:flex}body .tdi_199 ul{text-align:left;justify-content:flex-start;margin:0px}body .tdi_199 ul li a{justify-content:flex-start}body .tdi_199 .td-blm-menu-item-txt{flex-grow:1}body .tdi_199 ul li{margin-right:16px}body .tdi_199 ul li:last-child{margin-right:0}body .tdi_199 a,body .tdi_199 .td-blm-sub-icon{color:#cccccc}body .tdi_199 li.current-menu-item>a,body .tdi_199 li.current-menu-ancestor>a,body .tdi_199 li.current-category-ancestor>a,body .tdi_199 li.current-page-ancestor>a,body .tdi_199 a:hover,body .tdi_199 li.current-menu-item>a>.td-blm-sub-icon,body .tdi_199 li.current-menu-ancestor>a>.td-blm-sub-icon,body .tdi_199 li.current-category-ancestor>a>.td-blm-sub-icon,body .tdi_199 li.current-page-ancestor>a>.td-blm-sub-icon,body .tdi_199 a:hover>.td-blm-sub-icon{color:#ffffff}body .tdi_199 li{font-family:Rubik!important;font-size:13px!important;line-height:1.2!important}@media (min-width:768px) and (max-width:1018px){body .tdi_199 li{font-size:11px!important}}</style><div class="td-block-title-wrap"></div><div id=tdi_199 class="td_block_inner td-fix-index"><div class="menu-td-demo-custom-menu-container"><ul id="menu-td-demo-custom-menu-1" class="menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164"><a href="https://demo.tagdiv.com/newspaper_magazine_pro/blog"><span class="td-blm-menu-item-txt">Blog</span></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-165"><a href="#"><span class="td-blm-menu-item-txt">About</span></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-166"><a href="#"><span class="td-blm-menu-item-txt">Contact</span></a></li>
</ul></div></div></div></div></div></div></div></div></div>        </div>

    </div>
    

</div><!--close td-outer-wrap-->


<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/Newspaper\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>


    <!--

        Theme: Newspaper by tagDiv.com 2025
        Version: 12.7.3 (rara)
        Deploy mode: deploy
        
        uid: 6919c4318ae24
    -->

    
<!-- Custom css from theme panel -->
<style type="text/css" media="screen">.tdc-font-tdmp{font-family:td-multipurpose}</style>

<style id='core-block-supports-inline-css' type='text/css'>
/**
 * Core styles: block-supports
 */

</style>
<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tagdiv_theme.min.js?ver=12.7.3" id="td-site-min-js"></script>
<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdPostImages.js?ver=12.7.3" id="tdPostImages-js"></script>
<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdSocialSharing.js?ver=12.7.3" id="tdSocialSharing-js"></script>
<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdModalPostImages.js?ver=12.7.3" id="tdModalPostImages-js"></script>
<script type="text/javascript" src="https://www.reviewboard.com/wp-includes/js/comment-reply.js?ver=6.8.3" id="comment-reply-js" async="async" data-wp-strategy="async"></script>
<script type="text/javascript" src="https://www.reviewboard.com/wp-includes/js/underscore.min.js?ver=1.13.7" id="underscore-js"></script>
<script type="text/javascript" id="tds_js_files_for_front-js-extra">
/* <![CDATA[ */
var tds_js_globals = {"wpRestNonce":"1a9527c892","wpRestUrl":"https:\/\/reviewboard.com\/wp-json\/","permalinkStructure":"\/%postname%\/"};
/* ]]> */
</script>
<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-subscription/assets/js/js_files_for_front.min.js?ver=1.7.3" id="tds_js_files_for_front-js"></script>
<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-cloud-library/assets/js/js_files_for_front.min.js?ver=6127d3b6131f900b2e62bb855b13dc3b" id="tdb_js_files_for_front-js"></script>


<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdLoadingBox.js?ver=12.7.3" id="tdLoadingBox-js"></script>

<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdToTop.js?ver=12.7.3" id="tdToTop-js"></script>

<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdAjaxSearch.js?ver=12.7.3" id="tdDatei18n-js"></script>

<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdDatei18n.js?ver=12.7.3" id="tdDatei18n-js"></script>

<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdAnimationSprite.js?ver=12.7.3" id="tdAnimationSprite-js"></script>

<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdWeather.js?ver=12.7.3" id="tdWeather-js"></script>

<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdLogin.js?ver=12.7.3" id="tdLogin-js"></script>

<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-cloud-library/assets/js/tdbMenu.js?ver=6127d3b6131f900b2e62bb855b13dc3b" id="tdbMenu-js"></script>

<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-cloud-library/assets/js/tdbSearch.js?ver=6127d3b6131f900b2e62bb855b13dc3b" id="tdbSearch-js"></script>

<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdTrendingNow.js?ver=12.7.3" id="tdTrendingNow-js"></script>

<script type="text/javascript" src="https://www.reviewboard.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdSmartSidebar.js?ver=12.7.3" id="tdSmartSidebar-js"></script>
<!-- JS generated by theme -->

<script type="text/javascript" id="td-generated-footer-js">
    

			
				jQuery().ready(function () {
					tdWeather.addItem({"block_uid":"tdb_header_weather_uid","location":"New York","api_location":"New York","api_language":"en","api_key":"c396e133ca2ab7dfa7cffcf66e07ca35","today_icon":"broken-clouds-n","today_icon_text":"overcast clouds","today_temp":[11,51.9],"today_humidity":84,"today_wind_speed":[5.7,3.5],"today_min":[10,49.9],"today_max":[12,53.5],"today_clouds":100,"current_unit":0,"forecast":[{"timestamp":1763294400,"day_name":"Sun","day_temp":[14,56],"owm_day_index":0},{"timestamp":1763337600,"day_name":"Mon","day_temp":[7,44],"owm_day_index":4},{"timestamp":1763424000,"day_name":"Tue","day_temp":[8,46],"owm_day_index":12},{"timestamp":1763510400,"day_name":"Wed","day_temp":[9,48],"owm_day_index":20},{"timestamp":1763596800,"day_name":"Thu","day_temp":[9,48],"owm_day_index":28}]});
				});
			
			

            
                jQuery().ready(function () {

                    var blockClass = '.tdi_48';

                    jQuery(blockClass + '.tdb-horiz-menu-singleline > .menu-item-has-children a').click(function (e) {
                        e.preventDefault();
                    })

                });
            
            

                
                    /* global jQuery:{} */
                    jQuery(document).ready( function () {

                        var tdbMenuItem = new tdbMenu.item();
                        tdbMenuItem.blockUid = 'tdi_69';
                        tdbMenuItem.jqueryObj = jQuery('.tdi_69');

                        tdbMenuItem.blockAtts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","tdc_css":"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiItMTAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":1,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","class":"tdi_69","tdc_css_class":"tdi_69","tdc_css_class_style":"tdi_69_rand_style","context":""}';

                        
                        tdbMenuItem.isMegaMenuFull = true;

                        
                        
                        tdbMenuItem.megaMenuLoadType = '';

                        
                        tdbMenu.addItem(tdbMenuItem);

                    });
                
                

        
            jQuery().ready(function () {

                var tdbSearchItem = new tdbSearch.item();

                //block unique ID
                tdbSearchItem.blockUid = 'tdi_85';
                tdbSearchItem.blockAtts = '{"results_msg_align":"content-horiz-center","image_floated":"float_left","image_width":"30","image_size":"td_324x400","show_cat":"none","show_btn":"none","show_date":"","show_review":"none","show_com":"none","show_excerpt":"none","show_author":"none","meta_padding":"0 0 0 15px","art_title":"0 0 5px","all_modules_space":"15","tdc_css":"eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ==","form_align":"content-horiz-right","icon_color":"#ffffff","icon_size":"eyJhbGwiOiIxOCIsInBvcnRyYWl0IjoiMTQifQ==","icon_padding":"eyJhbGwiOjIuNiwicG9ydHJhaXQiOiIyLjgifQ==","tdicon":"td-icon-magnifier-medium-short-light","show_form":"yes","form_border_color":"#dd3333","arrow_color":"#dd3333","form_shadow_shadow_size":"10","form_shadow_shadow_color":"rgba(0,0,0,0.12)","f_input_font_family":"712","f_input_font_weight":"400","f_btn_font_family":"712","f_btn_font_weight":"400","f_input_font_size":"13","f_placeholder_font_family":"712","f_placeholder_font_weight":"400","f_placeholder_font_size":"13","f_btn_font_size":"13","f_results_msg_font_family":"712","f_results_msg_font_size":"11","f_title_font_family":"712","f_title_font_size":"13","f_title_font_line_height":"1.2","f_meta_font_family":"712","f_meta_font_size":"11","f_meta_font_line_height":"1","title_txt_hover":"#008d7f","btn_bg_h":"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiIjMDA4ZDdmIiwiY29sb3IyIjoiIzAwOGQ3ZiIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogIzAwOGQ3ZjsiLCJjc3NQYXJhbXMiOiIwZGVnLCMwMDhkN2YsIzAwOGQ3ZiJ9","modules_gap":"0","image_height":"80","meta_info_align":"center","results_msg_color_h":"#008d7f","block_type":"tdb_header_search","post_type":"","disable_trigger":"","show_results":"yes","separator":"","disable_live_search":"","exclude_pages":"","exclude_posts":"","search_section_header":"","results_section_1_title":"","results_section_1_taxonomies":"","results_section_1_level":"","results_section_2_title":"","results_section_2_taxonomies":"","results_section_2_level":"","results_section_3_title":"","results_section_3_taxonomies":"","results_section_3_level":"","results_section_search_query_terms":"","results_section_search_query_terms_title":"","results_section_search_query_terms_taxonomies":"","sec_title_space":"","sec_title_color":"","tax_space":"","tax_title_color":"","tax_title_color_h":"","f_sec_title_font_header":"","f_sec_title_font_title":"Section title text","f_sec_title_font_settings":"","f_sec_title_font_family":"","f_sec_title_font_size":"","f_sec_title_font_line_height":"","f_sec_title_font_style":"","f_sec_title_font_weight":"","f_sec_title_font_transform":"","f_sec_title_font_spacing":"","f_sec_title_":"","f_tax_title_font_title":"Taxonomy title text","f_tax_title_font_settings":"","f_tax_title_font_family":"","f_tax_title_font_size":"","f_tax_title_font_line_height":"","f_tax_title_font_style":"","f_tax_title_font_weight":"","f_tax_title_font_transform":"","f_tax_title_font_spacing":"","f_tax_title_":"","toggle_txt":"","toggle_txt_pos":"","toggle_txt_align":"0","toggle_txt_space":"","aria_label":"Search","toggle_horiz_align":"content-horiz-left","inline":"","float_block":"","form_offset":"","form_offset_left":"","form_width":"","form_content_width":"","form_padding":"","form_border":"","form_align_screen":"","input_placeholder":"","placeholder_travel":"0","input_padding":"","input_border":"","input_radius":"","btn_text":"Search","btn_aria_label":"Search","btn_tdicon":"","btn_icon_pos":"","btn_icon_size":"","btn_icon_space":"","btn_icon_align":"0","btn_margin":"","btn_padding":"","btn_border":"","btn_radius":"","results_padding":"","results_border":"","results_msg_padding":"","results_msg_border":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","results_limit":"","open_in_new_window":"","modules_on_row":"100%","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","meta_info_horiz":"content-horiz-left","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","art_btn":"","modules_category":"","modules_category_margin":"","modules_category_padding":"","modules_cat_border":"","modules_category_radius":"0","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_space":"","review_size":"2.5","review_distance":"","art_excerpt":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","btn_title":"","btn_border_width":"","form_general_bg":"","icon_color_h":"","toggle_txt_color":"","toggle_txt_color_h":"","f_toggle_txt_font_header":"","f_toggle_txt_font_title":"Text","f_toggle_txt_font_settings":"","f_toggle_txt_font_family":"","f_toggle_txt_font_size":"","f_toggle_txt_font_line_height":"","f_toggle_txt_font_style":"","f_toggle_txt_font_weight":"","f_toggle_txt_font_transform":"","f_toggle_txt_font_spacing":"","f_toggle_txt_":"","form_bg":"","form_shadow_shadow_header":"","form_shadow_shadow_title":"Shadow","form_shadow_shadow_offset_horizontal":"","form_shadow_shadow_offset_vertical":"","form_shadow_shadow_spread":"","input_color":"","placeholder_color":"","placeholder_opacity":"0","input_bg":"","input_border_color":"","input_shadow_shadow_header":"","input_shadow_shadow_title":"Input shadow","input_shadow_shadow_size":"","input_shadow_shadow_offset_horizontal":"","input_shadow_shadow_offset_vertical":"","input_shadow_shadow_spread":"","input_shadow_shadow_color":"","btn_color":"","btn_color_h":"","btn_icon_color":"","btn_icon_color_h":"","btn_bg":"","btn_border_color":"","btn_border_color_h":"","btn_shadow_shadow_header":"","btn_shadow_shadow_title":"Button shadow","btn_shadow_shadow_size":"","btn_shadow_shadow_offset_horizontal":"","btn_shadow_shadow_offset_vertical":"","btn_shadow_shadow_spread":"","btn_shadow_shadow_color":"","f_input_font_header":"","f_input_font_title":"Input text","f_input_font_settings":"","f_input_font_line_height":"","f_input_font_style":"","f_input_font_transform":"","f_input_font_spacing":"","f_input_":"","f_placeholder_font_title":"Placeholder text","f_placeholder_font_settings":"","f_placeholder_font_line_height":"","f_placeholder_font_style":"","f_placeholder_font_transform":"","f_placeholder_font_spacing":"","f_placeholder_":"","f_btn_font_title":"Button text","f_btn_font_settings":"","f_btn_font_line_height":"","f_btn_font_style":"","f_btn_font_transform":"","f_btn_font_spacing":"","f_btn_":"","results_bg":"","results_border_color":"","results_msg_color":"","results_msg_bg":"","results_msg_border_color":"","f_results_msg_font_header":"","f_results_msg_font_title":"Text","f_results_msg_font_settings":"","f_results_msg_font_line_height":"","f_results_msg_font_style":"","f_results_msg_font_weight":"","f_results_msg_font_transform":"","f_results_msg_font_spacing":"","f_results_msg_":"","m_bg":"","color_overlay":"","shadow_module_shadow_header":"","shadow_module_shadow_title":"Module Shadow","shadow_module_shadow_size":"","shadow_module_shadow_offset_horizontal":"","shadow_module_shadow_offset_vertical":"","shadow_module_shadow_spread":"","shadow_module_shadow_color":"","title_txt":"","all_underline_height":"","all_underline_color":"#000","cat_bg":"","cat_bg_hover":"","cat_txt":"","cat_txt_hover":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_meta_shadow_header":"","shadow_meta_shadow_title":"Meta info shadow","shadow_meta_shadow_size":"","shadow_meta_shadow_offset_horizontal":"","shadow_meta_shadow_offset_vertical":"","shadow_meta_shadow_spread":"","shadow_meta_shadow_color":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border_hover":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_weight":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_size":"","f_cat_font_line_height":"","f_cat_font_style":"","f_cat_font_weight":"","f_cat_font_transform":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","el_class":"","block_template_id":"","td_column_number":1,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","class":"tdi_85","tdc_css_class":"tdi_85","tdc_css_class_style":"tdi_85_rand_style"}';
                tdbSearchItem.jqueryObj = jQuery('.tdi_85');
                tdbSearchItem._openSearchFormClass = 'tdb-drop-down-search-open';
                tdbSearchItem._resultsLimit = '4';

                
	            
                
                tdbSearch.addItem( tdbSearchItem );

            });
        
        

                
                    /* global jQuery:{} */
                    jQuery(document).ready( function () {

                        var tdbMenuItem = new tdbMenu.item();
                        tdbMenuItem.blockUid = 'tdi_99';
                        tdbMenuItem.jqueryObj = jQuery('.tdi_99');

                        tdbMenuItem.blockAtts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"47","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","tdc_css":"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiItMTAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":1,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","class":"tdi_99","tdc_css_class":"tdi_99","tdc_css_class_style":"tdi_99_rand_style","context":""}';

                        
                        tdbMenuItem.isMegaMenuFull = true;

                        
                        
                        tdbMenuItem.megaMenuLoadType = '';

                        
                        tdbMenu.addItem(tdbMenuItem);

                    });
                
                

        
            jQuery().ready(function () {

                var tdbSearchItem = new tdbSearch.item();

                //block unique ID
                tdbSearchItem.blockUid = 'tdi_115';
                tdbSearchItem.blockAtts = '{"results_msg_align":"content-horiz-center","image_floated":"float_left","image_width":"30","image_size":"td_324x400","show_cat":"none","show_btn":"none","show_date":"","show_review":"none","show_com":"none","show_excerpt":"none","show_author":"none","meta_padding":"0 0 0 15px","art_title":"0 0 5px","all_modules_space":"15","tdc_css":"eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ==","form_align":"content-horiz-right","icon_color":"#ffffff","icon_size":"eyJhbGwiOiIxOCIsInBvcnRyYWl0IjoiMTQifQ==","icon_padding":"eyJhbGwiOjIuNiwicG9ydHJhaXQiOiIyLjgifQ==","tdicon":"td-icon-magnifier-medium-short-light","show_form":"yes","form_border_color":"#dd3333","arrow_color":"#dd3333","form_shadow_shadow_size":"10","form_shadow_shadow_color":"rgba(0,0,0,0.12)","f_input_font_family":"712","f_input_font_weight":"400","f_btn_font_family":"712","f_btn_font_weight":"400","f_input_font_size":"13","f_placeholder_font_family":"712","f_placeholder_font_weight":"400","f_placeholder_font_size":"13","f_btn_font_size":"13","f_results_msg_font_family":"712","f_results_msg_font_size":"11","f_title_font_family":"712","f_title_font_size":"13","f_title_font_line_height":"1.2","f_meta_font_family":"712","f_meta_font_size":"11","f_meta_font_line_height":"1","title_txt_hover":"#008d7f","btn_bg_h":"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiIjMDA4ZDdmIiwiY29sb3IyIjoiIzAwOGQ3ZiIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogIzAwOGQ3ZjsiLCJjc3NQYXJhbXMiOiIwZGVnLCMwMDhkN2YsIzAwOGQ3ZiJ9","modules_gap":"0","image_height":"80","meta_info_align":"center","results_msg_color_h":"#008d7f","block_type":"tdb_header_search","post_type":"","disable_trigger":"","show_results":"yes","separator":"","disable_live_search":"","exclude_pages":"","exclude_posts":"","search_section_header":"","results_section_1_title":"","results_section_1_taxonomies":"","results_section_1_level":"","results_section_2_title":"","results_section_2_taxonomies":"","results_section_2_level":"","results_section_3_title":"","results_section_3_taxonomies":"","results_section_3_level":"","results_section_search_query_terms":"","results_section_search_query_terms_title":"","results_section_search_query_terms_taxonomies":"","sec_title_space":"","sec_title_color":"","tax_space":"","tax_title_color":"","tax_title_color_h":"","f_sec_title_font_header":"","f_sec_title_font_title":"Section title text","f_sec_title_font_settings":"","f_sec_title_font_family":"","f_sec_title_font_size":"","f_sec_title_font_line_height":"","f_sec_title_font_style":"","f_sec_title_font_weight":"","f_sec_title_font_transform":"","f_sec_title_font_spacing":"","f_sec_title_":"","f_tax_title_font_title":"Taxonomy title text","f_tax_title_font_settings":"","f_tax_title_font_family":"","f_tax_title_font_size":"","f_tax_title_font_line_height":"","f_tax_title_font_style":"","f_tax_title_font_weight":"","f_tax_title_font_transform":"","f_tax_title_font_spacing":"","f_tax_title_":"","toggle_txt":"","toggle_txt_pos":"","toggle_txt_align":"0","toggle_txt_space":"","aria_label":"Search","toggle_horiz_align":"content-horiz-left","inline":"","float_block":"","form_offset":"","form_offset_left":"","form_width":"","form_content_width":"","form_padding":"","form_border":"","form_align_screen":"","input_placeholder":"","placeholder_travel":"0","input_padding":"","input_border":"","input_radius":"","btn_text":"Search","btn_aria_label":"Search","btn_tdicon":"","btn_icon_pos":"","btn_icon_size":"","btn_icon_space":"","btn_icon_align":"0","btn_margin":"","btn_padding":"","btn_border":"","btn_radius":"","results_padding":"","results_border":"","results_msg_padding":"","results_msg_border":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","results_limit":"","open_in_new_window":"","modules_on_row":"100%","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","excl_txt":"","excl_margin":"","excl_padd":"","all_excl_border":"","all_excl_border_style":"solid","excl_radius":"","excl_color":"","excl_color_h":"","excl_bg":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_family":"","f_excl_font_size":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_weight":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","meta_info_horiz":"content-horiz-left","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","art_btn":"","modules_category":"","modules_category_margin":"","modules_category_padding":"","modules_cat_border":"","modules_category_radius":"0","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_space":"","review_size":"2.5","review_distance":"","art_excerpt":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","btn_title":"","btn_border_width":"","form_general_bg":"","icon_color_h":"","toggle_txt_color":"","toggle_txt_color_h":"","f_toggle_txt_font_header":"","f_toggle_txt_font_title":"Text","f_toggle_txt_font_settings":"","f_toggle_txt_font_family":"","f_toggle_txt_font_size":"","f_toggle_txt_font_line_height":"","f_toggle_txt_font_style":"","f_toggle_txt_font_weight":"","f_toggle_txt_font_transform":"","f_toggle_txt_font_spacing":"","f_toggle_txt_":"","form_bg":"","form_shadow_shadow_header":"","form_shadow_shadow_title":"Shadow","form_shadow_shadow_offset_horizontal":"","form_shadow_shadow_offset_vertical":"","form_shadow_shadow_spread":"","input_color":"","placeholder_color":"","placeholder_opacity":"0","input_bg":"","input_border_color":"","input_shadow_shadow_header":"","input_shadow_shadow_title":"Input shadow","input_shadow_shadow_size":"","input_shadow_shadow_offset_horizontal":"","input_shadow_shadow_offset_vertical":"","input_shadow_shadow_spread":"","input_shadow_shadow_color":"","btn_color":"","btn_color_h":"","btn_icon_color":"","btn_icon_color_h":"","btn_bg":"","btn_border_color":"","btn_border_color_h":"","btn_shadow_shadow_header":"","btn_shadow_shadow_title":"Button shadow","btn_shadow_shadow_size":"","btn_shadow_shadow_offset_horizontal":"","btn_shadow_shadow_offset_vertical":"","btn_shadow_shadow_spread":"","btn_shadow_shadow_color":"","f_input_font_header":"","f_input_font_title":"Input text","f_input_font_settings":"","f_input_font_line_height":"","f_input_font_style":"","f_input_font_transform":"","f_input_font_spacing":"","f_input_":"","f_placeholder_font_title":"Placeholder text","f_placeholder_font_settings":"","f_placeholder_font_line_height":"","f_placeholder_font_style":"","f_placeholder_font_transform":"","f_placeholder_font_spacing":"","f_placeholder_":"","f_btn_font_title":"Button text","f_btn_font_settings":"","f_btn_font_line_height":"","f_btn_font_style":"","f_btn_font_transform":"","f_btn_font_spacing":"","f_btn_":"","results_bg":"","results_border_color":"","results_msg_color":"","results_msg_bg":"","results_msg_border_color":"","f_results_msg_font_header":"","f_results_msg_font_title":"Text","f_results_msg_font_settings":"","f_results_msg_font_line_height":"","f_results_msg_font_style":"","f_results_msg_font_weight":"","f_results_msg_font_transform":"","f_results_msg_font_spacing":"","f_results_msg_":"","m_bg":"","color_overlay":"","shadow_module_shadow_header":"","shadow_module_shadow_title":"Module Shadow","shadow_module_shadow_size":"","shadow_module_shadow_offset_horizontal":"","shadow_module_shadow_offset_vertical":"","shadow_module_shadow_spread":"","shadow_module_shadow_color":"","title_txt":"","all_underline_height":"","all_underline_color":"#000","cat_bg":"","cat_bg_hover":"","cat_txt":"","cat_txt_hover":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_meta_shadow_header":"","shadow_meta_shadow_title":"Meta info shadow","shadow_meta_shadow_size":"","shadow_meta_shadow_offset_horizontal":"","shadow_meta_shadow_offset_vertical":"","shadow_meta_shadow_spread":"","shadow_meta_shadow_color":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border_hover":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_weight":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_size":"","f_cat_font_line_height":"","f_cat_font_style":"","f_cat_font_weight":"","f_cat_font_transform":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","el_class":"","block_template_id":"","td_column_number":1,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","class":"tdi_115","tdc_css_class":"tdi_115","tdc_css_class_style":"tdi_115_rand_style"}';
                tdbSearchItem.jqueryObj = jQuery('.tdi_115');
                tdbSearchItem._openSearchFormClass = 'tdb-drop-down-search-open';
                tdbSearchItem._resultsLimit = '4';

                
	            
                
                tdbSearch.addItem( tdbSearchItem );

            });
        
        
</script>


<script>var td_res_context_registered_atts=["style_general_mobile_menu","style_general_header_align","style_general_header_logo","style_general_mobile_search","style_general_separator","style_general_header_weather","style_general_header_date","style_general_header_user","style_general_mobile_horiz_menu","style_general_icon_box2","style_general_icon_box","style_general_socials","style_general_header_menu","style_general_menu_active3","style_general_header_mega_menu","style_general_module_header","style_general_header_search","style_general_header_search_trigger_enabled","style_general_trending_now","style_general_bgf","style_general_bgf_2_specific","style_general_bgf_1_specific","style_general_video","style_general_loop","style_general_module_loop","style_general_popular_categories","style_general_inline_text","style_general_list_menu","style_specific_list_menu_vertical","style_specific_list_menu_accordion","style_specific_list_menu_horizontal"];</script>

</body>
</html>