OK
https://wfrtds.org/
Lesotho
Country
Network
November 20, 2024, 10:33 AM UTC
Date & Time
Websites
Websites
Runtime: 2.1s
On November 20, 2024, 10:33 AM UTC, https://wfrtds.org/ was accessible when tested on AS37057 in Lesotho.

Failures

HTTP Experiment
null
DNS Experiment
null
Control
null

DNS Queries

Resolver:
41.191.200.22
Query:
IN A wfrtds.org
Engine:
system
Name
Class
TTL
Type
DATA
@
IN
A
185.199.220.111

TCP Connections

Connection to 185.199.220.111:443 succeeded.

HTTP Requests

URL
GET https://wfrtds.org/
Response Headers
Alt-Svc:
h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"
Cache-Control:
no-store, no-cache, must-revalidate
Content-Type:
text/html; charset=UTF-8
Date:
Wed, 20 Nov 2024 10:33:47 GMT
Etag:
"2529-1731676671;;;"
Expires:
Thu, 19 Nov 1981 08:52:00 GMT
Link:
<https://wfrtds.org/wp-json/>; rel="https://api.w.org/"
Pragma:
no-cache
Server:
LiteSpeed
Vary:
User-Agent
X-Litespeed-Cache:
hit
Response Body
<!DOCTYPE html><html lang="en-US"><head >	<meta charset="UTF-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1" />
	<title>The World Federation of Right to Die Societies &#8211; Ensuring Choices for a Dignified Death</title>
<meta name='robots' content='max-image-preview:large' />

<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<script data-cfasync="false" data-pagespeed-no-defer>
	var gtm4wp_datalayer_name = "dataLayer";
	var dataLayer = dataLayer || [];
</script>
<!-- End Google Tag Manager for WordPress by gtm4wp.com --><link rel='dns-prefetch' href='//js.stripe.com' />
<link rel="alternate" type="application/rss+xml" title="The World Federation of Right to Die Societies &raquo; Feed" href="https://wfrtds.org/feed/" />
<link rel="alternate" type="application/rss+xml" title="The World Federation of Right to Die Societies &raquo; Comments Feed" href="https://wfrtds.org/comments/feed/" />
<script type="text/javascript">
/* <![CDATA[ */
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/wfrtds.org\/wp-includes\/js\/wp-emoji.js?ver=6.6.2","twemoji":"https:\/\/wfrtds.org\/wp-includes\/js\/twemoji.js?ver=6.6.2"}};
/**
 * @output wp-includes/js/wp-emoji-loader.js
 */

/**
 * Emoji Settings as exported in PHP via _print_emoji_detection_script().
 * @typedef WPEmojiSettings
 * @type {object}
 * @property {?object} source
 * @property {?string} source.concatemoji
 * @property {?string} source.twemoji
 * @property {?string} source.wpemoji
 * @property {?boolean} DOMReady
 * @property {?Function} readyCallback
 */

/**
 * Support tests.
 * @typedef SupportTests
 * @type {object}
 * @property {?boolean} flag
 * @property {?boolean} emoji
 */

/**
 * IIFE to detect emoji support and load Twemoji if needed.
 *
 * @param {Window} window
 * @param {Document} document
 * @param {WPEmojiSettings} settings
 */
( function wpEmojiLoader( window, document, settings ) {
	if ( typeof Promise === 'undefined' ) {
		return;
	}

	var sessionStorageKey = 'wpEmojiSettingsSupports';
	var tests = [ 'flag', 'emoji' ];

	/**
	 * Checks whether the browser supports offloading to a Worker.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @returns {boolean}
	 */
	function supportsWorkerOffloading() {
		return (
			typeof Worker !== 'undefined' &&
			typeof OffscreenCanvas !== 'undefined' &&
			typeof URL !== 'undefined' &&
			URL.createObjectURL &&
			typeof Blob !== 'undefined'
		);
	}

	/**
	 * @typedef SessionSupportTests
	 * @type {object}
	 * @property {number} timestamp
	 * @property {SupportTests} supportTests
	 */

	/**
	 * Get support tests from session.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @returns {?SupportTests} Support tests, or null if not set or older than 1 week.
	 */
	function getSessionSupportTests() {
		try {
			/** @type {SessionSupportTests} */
			var item = JSON.parse(
				sessionStorage.getItem( sessionStorageKey )
			);
			if (
				typeof item === 'object' &&
				typeof item.timestamp === 'number' &&
				new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
				typeof item.supportTests === 'object'
			) {
				return item.supportTests;
			}
		} catch ( e ) {}
		return null;
	}

	/**
	 * Persist the supports in session storage.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @param {SupportTests} supportTests Support tests.
	 */
	function setSessionSupportTests( supportTests ) {
		try {
			/** @type {SessionSupportTests} */
			var item = {
				supportTests: supportTests,
				timestamp: new Date().valueOf()
			};

			sessionStorage.setItem(
				sessionStorageKey,
				JSON.stringify( item )
			);
		} catch ( e ) {}
	}

	/**
	 * Checks if two sets of Emoji characters render the same visually.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 4.9.0
	 *
	 * @private
	 *
	 * @param {CanvasRenderingContext2D} context 2D Context.
	 * @param {string} set1 Set of Emoji to test.
	 * @param {string} set2 Set of Emoji to test.
	 *
	 * @return {boolean} True if the two sets render the same.
	 */
	function emojiSetsRenderIdentically( context, set1, set2 ) {
		// Cleanup from previous test.
		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
		context.fillText( set1, 0, 0 );
		var rendered1 = new Uint32Array(
			context.getImageData(
				0,
				0,
				context.canvas.width,
				context.canvas.height
			).data
		);

		// Cleanup from previous test.
		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
		context.fillText( set2, 0, 0 );
		var rendered2 = new Uint32Array(
			context.getImageData(
				0,
				0,
				context.canvas.width,
				context.canvas.height
			).data
		);

		return rendered1.every( function ( rendered2Data, index ) {
			return rendered2Data === rendered2[ index ];
		} );
	}

	/**
	 * Determines if the browser properly renders Emoji that Twemoji can supplement.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 4.2.0
	 *
	 * @private
	 *
	 * @param {CanvasRenderingContext2D} context 2D Context.
	 * @param {string} type Whether to test for support of "flag" or "emoji".
	 * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
	 *
	 * @return {boolean} True if the browser can render emoji, false if it cannot.
	 */
	function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) {
		var isIdentical;

		switch ( type ) {
			case 'flag':
				/*
				 * Test for Transgender flag compatibility. Added in Unicode 13.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly (white flag emoji + transgender symbol).
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					'\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence
					'\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * Test for UN flag compatibility. This is the least supported of the letter locale flags,
				 * so gives us an easy test for full support.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly ([U] + [N]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					'\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points
					'\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * Test for English flag compatibility. England is a country in the United Kingdom, it
				 * does not have a two letter locale code but rather a five letter sub-division code.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					// as the flag sequence
					'\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F',
					// with each code point separated by a zero-width space
					'\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F'
				);

				return ! isIdentical;
			case 'emoji':
				/*
				 * Four and twenty blackbirds baked in a pie.
				 *
				 * To test for Emoji 15.0 support, try to render a new emoji: Blackbird.
				 *
				 * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square.,
				 *
				 * 0x1F426 (\uD83D\uDC26) == Bird
				 * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or
				 * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
				 * 0x2B1B == Large Black Square
				 *
				 * When updating this test for future Emoji releases, ensure that individual emoji that make up the
				 * sequence come from older emoji standards.
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					'\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence
					'\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space
				);

				return ! isIdentical;
		}

		return false;
	}

	/**
	 * Checks emoji support tests.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @param {string[]} tests Tests.
	 * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification.
	 * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
	 *
	 * @return {SupportTests} Support tests.
	 */
	function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) {
		var canvas;
		if (
			typeof WorkerGlobalScope !== 'undefined' &&
			self instanceof WorkerGlobalScope
		) {
			canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement.
		} else {
			canvas = document.createElement( 'canvas' );
		}

		var context = canvas.getContext( '2d', { willReadFrequently: true } );

		/*
		 * Chrome on OS X added native emoji rendering in M41. Unfortunately,
		 * it doesn't work when the font is bolder than 500 weight. So, we
		 * check for bold rendering support to avoid invisible emoji in Chrome.
		 */
		context.textBaseline = 'top';
		context.font = '600 32px Arial';

		var supports = {};
		tests.forEach( function ( test ) {
			supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically );
		} );
		return supports;
	}

	/**
	 * Adds a script to the head of the document.
	 *
	 * @ignore
	 *
	 * @since 4.2.0
	 *
	 * @param {string} src The url where the script is located.
	 *
	 * @return {void}
	 */
	function addScript( src ) {
		var script = document.createElement( 'script' );
		script.src = src;
		script.defer = true;
		document.head.appendChild( script );
	}

	settings.supports = {
		everything: true,
		everythingExceptFlag: true
	};

	// Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired.
	var domReadyPromise = new Promise( function ( resolve ) {
		document.addEventListener( 'DOMContentLoaded', resolve, {
			once: true
		} );
	} );

	// Obtain the emoji support from the browser, asynchronously when possible.
	new Promise( function ( resolve ) {
		var supportTests = getSessionSupportTests();
		if ( supportTests ) {
			resolve( supportTests );
			return;
		}

		if ( supportsWorkerOffloading() ) {
			try {
				// Note that the functions are being passed as arguments due to minification.
				var workerScript =
					'postMessage(' +
					testEmojiSupports.toString() +
					'(' +
					[
						JSON.stringify( tests ),
						browserSupportsEmoji.toString(),
						emojiSetsRenderIdentically.toString()
					].join( ',' ) +
					'));';
				var blob = new Blob( [ workerScript ], {
					type: 'text/javascript'
				} );
				var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } );
				worker.onmessage = function ( event ) {
					supportTests = event.data;
					setSessionSupportTests( supportTests );
					worker.terminate();
					resolve( supportTests );
				};
				return;
			} catch ( e ) {}
		}

		supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically );
		setSessionSupportTests( supportTests );
		resolve( supportTests );
	} )
		// Once the browser emoji support has been obtained from the session, finalize the settings.
		.then( function ( supportTests ) {
			/*
			 * Tests the browser support for flag emojis and other emojis, and adjusts the
			 * support settings accordingly.
			 */
			for ( var test in supportTests ) {
				settings.supports[ test ] = supportTests[ test ];

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

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

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

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

				var src = settings.source || {};

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

/* ]]> */
</script>
<link rel='stylesheet' id='mec-select2-style-css' href='https://wfrtds.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/select2/select2.min.css?ver=6.5.1' type='text/css' media='all' />
<link rel='stylesheet' id='mec-font-icons-css' href='https://wfrtds.org/wp-content/plugins/modern-events-calendar-lite/assets/css/iconfonts.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='mec-frontend-style-css' href='https://wfrtds.org/wp-content/plugins/modern-events-calendar-lite/assets/css/frontend.min.css?ver=6.5.1' type='text/css' media='all' />
<link rel='stylesheet' id='mec-tooltip-style-css' href='https://wfrtds.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/tooltip/tooltip.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='mec-tooltip-shadow-style-css' href='https://wfrtds.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/tooltip/tooltipster-sideTip-shadow.min.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='featherlight-css' href='https://wfrtds.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/featherlight/featherlight.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='mec-lity-style-css' href='https://wfrtds.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/lity/lity.min.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='mec-general-calendar-style-css' href='https://wfrtds.org/wp-content/plugins/modern-events-calendar-lite/assets/css/mec-general-calendar.css?ver=6.6.2' type='text/css' media='all' />
<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>
<link rel='stylesheet' id='jet-engine-frontend-css' href='https://wfrtds.org/wp-content/plugins/jet-engine/assets/css/frontend.css?ver=3.5.6' type='text/css' media='all' />
<style id='classic-theme-styles-inline-css' type='text/css'>
/**
 * These rules are needed for backwards compatibility.
 * They should match the button element rules in the base theme.json file.
 */
.wp-block-button__link {
	color: #ffffff;
	background-color: #32373c;
	border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */

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

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

	font-size: 1.125em;
}

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

</style>
<style id='global-styles-inline-css' type='text/css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='flag-css' href='https://wfrtds.org/wp-content/plugins/country-flag/_inc/flag.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='give-styles-css' href='https://wfrtds.org/wp-content/plugins/give/assets/dist/css/give.css?ver=3.17.1' type='text/css' media='all' />
<link rel='stylesheet' id='give-donation-summary-style-frontend-css' href='https://wfrtds.org/wp-content/plugins/give/assets/dist/css/give-donation-summary.css?ver=3.17.1' type='text/css' media='all' />
<link rel='stylesheet' id='jupiterx-popups-animation-css' href='https://wfrtds.org/wp-content/plugins/jupiterx-core/includes/extensions/raven/assets/lib/animate/animate.css?ver=4.7.8' type='text/css' media='all' />
<link rel='stylesheet' id='jupiterx-css' href='https://wfrtds.org/wp-content/uploads/jupiterx/compiler/jupiterx/a0915b0.css?ver=4.7.8' type='text/css' media='all' />
<link rel='stylesheet' id='jet-popup-frontend-css' href='https://wfrtds.org/wp-content/plugins/jet-popup/assets/css/jet-popup-frontend.css?ver=2.0.6' type='text/css' media='all' />
<link rel='stylesheet' id='jupiterx-elements-dynamic-styles-css' href='https://wfrtds.org/wp-content/uploads/jupiterx/compiler/jupiterx-elements-dynamic-styles/d6ad03d.css?ver=4.7.8' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.css?ver=5.30.0' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-frontend-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/css/frontend.css?ver=3.23.4' type='text/css' media='all' />
<link rel='stylesheet' id='swiper-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.css?ver=8.4.5' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.css?ver=4.7.0' type='text/css' media='all' />
<link rel='stylesheet' id='jupiterx-core-raven-frontend-css' href='https://wfrtds.org/wp-content/plugins/jupiterx-core/includes/extensions/raven/assets/css/frontend.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-2126-css' href='https://wfrtds.org/wp-content/uploads/elementor/css/post-2126.css?ver=1729544264' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-pro-css' href='https://wfrtds.org/wp-content/plugins/elementor-pro/assets/css/frontend.css?ver=3.23.3' type='text/css' media='all' />
<link rel='stylesheet' id='jet-blog-css' href='https://wfrtds.org/wp-content/plugins/jet-blog/assets/css/jet-blog.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='jet-tabs-frontend-css' href='https://wfrtds.org/wp-content/plugins/jet-tabs/assets/css/jet-tabs-frontend.css?ver=2.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='flatpickr-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.css?ver=4.1.4' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-global-css' href='https://wfrtds.org/wp-content/uploads/elementor/css/global.css?ver=1729544267' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-2146-css' href='https://wfrtds.org/wp-content/uploads/elementor/css/post-2146.css?ver=1730985419' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-2178-css' href='https://wfrtds.org/wp-content/uploads/elementor/css/post-2178.css?ver=1729544267' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-2273-css' href='https://wfrtds.org/wp-content/uploads/elementor/css/post-2273.css?ver=1729544267' type='text/css' media='all' />
<link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Lato%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=auto&#038;ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css?ver=5.15.3' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css?ver=5.15.3' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-brands-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css?ver=5.15.3' type='text/css' media='all' />
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://wfrtds.org/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script>
<script type="text/javascript" src="https://wfrtds.org/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script>
<script type="text/javascript" src="https://wfrtds.org/wp-content/plugins/modern-events-calendar-lite/assets/js/mec-general-calendar.js?ver=6.5.1" id="mec-general-calendar-script-js"></script>
<script type="text/javascript" id="mec-frontend-script-js-extra">
/* <![CDATA[ */
var mecdata = {"day":"day","days":"days","hour":"hour","hours":"hours","minute":"minute","minutes":"minutes","second":"second","seconds":"seconds","elementor_edit_mode":"no","recapcha_key":"","ajax_url":"https:\/\/wfrtds.org\/wp-admin\/admin-ajax.php","fes_nonce":"1c5b96f4dc","current_year":"2024","current_month":"11","datepicker_format":"dd-mm-yy&d-m-Y"};
/* ]]> */
</script>
<script type="text/javascript" src="https://wfrtds.org/wp-content/plugins/modern-events-calendar-lite/assets/js/frontend.js?ver=6.5.1" id="mec-frontend-script-js"></script>
<script type="text/javascript" src="https://wfrtds.org/wp-content/plugins/modern-events-calendar-lite/assets/js/events.js?ver=6.5.1" id="mec-events-script-js"></script>
<script type="text/javascript" id="give-stripe-js-js-extra">
/* <![CDATA[ */
var give_stripe_vars = {"zero_based_currency":"","zero_based_currencies_list":["JPY","KRW","CLP","ISK","BIF","DJF","GNF","KHR","KPW","LAK","LKR","MGA","MZN","VUV"],"sitename":"The World Federation of Right to Die Societies","checkoutBtnTitle":"Donate","publishable_key":"pk_live_51HPSbRJZ3vF8AH5hOXp1tI5DxdQNXM5Vx3x75ZGRFWE77C1xsr8TkAZsiqivskWAo9v9z9dzCxRe7Hm7uXiBFQJm00MBlUN1bl","checkout_image":"","checkout_address":"","checkout_processing_text":"Donation Processing...","give_version":"3.17.1","cc_fields_format":"multi","card_number_placeholder_text":"Card Number","card_cvc_placeholder_text":"CVC","donate_button_text":"Donate Now","element_font_styles":{"cssSrc":false},"element_base_styles":{"color":"#32325D","fontWeight":500,"fontSize":"16px","fontSmoothing":"antialiased","::placeholder":{"color":"#222222"},":-webkit-autofill":{"color":"#e39f48"}},"element_complete_styles":{},"element_empty_styles":{},"element_invalid_styles":{},"float_labels":"","base_country":"CH","preferred_locale":"en"};
/* ]]> */
</script>
<script type="text/javascript" src="https://js.stripe.com/v3/?ver=3.17.1" id="give-stripe-js-js"></script>
<script type="text/javascript" src="https://wfrtds.org/wp-content/plugins/give/assets/dist/js/give-stripe.js?ver=3.17.1" id="give-stripe-onpage-js-js"></script>
<script type="text/javascript" src="https://wfrtds.org/wp-includes/js/dist/hooks.js?ver=2e6d63e772894a800ba8" id="wp-hooks-js"></script>
<script type="text/javascript" src="https://wfrtds.org/wp-includes/js/dist/i18n.js?ver=2aff907006e2aa00e26e" id="wp-i18n-js"></script>
<script type="text/javascript" id="wp-i18n-js-after">
/* <![CDATA[ */
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
/* ]]> */
</script>
<script type="text/javascript" id="give-js-extra">
/* <![CDATA[ */
var give_global_vars = {"ajaxurl":"https:\/\/wfrtds.org\/wp-admin\/admin-ajax.php","checkout_nonce":"10a69c7e00","currency":"USD","currency_sign":"$","currency_pos":"before","thousands_separator":",","decimal_separator":".","no_gateway":"Please select a payment method.","bad_minimum":"The minimum custom donation amount for this form is","bad_maximum":"The maximum custom donation amount for this form is","general_loading":"Loading...","purchase_loading":"Please Wait...","textForOverlayScreen":"<h3>Processing...<\/h3><p>This will only take a second!<\/p>","number_decimals":"2","is_test_mode":"","give_version":"3.17.1","magnific_options":{"main_class":"give-modal","close_on_bg_click":false},"form_translation":{"payment-mode":"Please select payment mode.","give_first":"Please enter your first name.","give_last":"Please enter your last name.","give_email":"Please enter a valid email address.","give_user_login":"Invalid email address or username.","give_user_pass":"Enter a password.","give_user_pass_confirm":"Enter the password confirmation.","give_agree_to_terms":"You must agree to the terms and conditions."},"confirm_email_sent_message":"Please check your email and click on the link to access your complete donation history.","ajax_vars":{"ajaxurl":"https:\/\/wfrtds.org\/wp-admin\/admin-ajax.php","ajaxNonce":"60e0296e91","loading":"Loading","select_option":"Please select an option","default_gateway":"stripe_checkout","permalinks":"1","number_decimals":2},"cookie_hash":"be2d81fbe129b8c1b040e6d46abfaf54","session_nonce_cookie_name":"wp-give_session_reset_nonce_be2d81fbe129b8c1b040e6d46abfaf54","session_cookie_name":"wp-give_session_be2d81fbe129b8c1b040e6d46abfaf54","delete_session_nonce_cookie":"0"};
var giveApiSettings = {"root":"https:\/\/wfrtds.org\/wp-json\/give-api\/v2\/","rest_base":"give-api\/v2"};
/* ]]> */
</script>
<script type="text/javascript" src="https://wfrtds.org/wp-content/plugins/give/assets/dist/js/give.js?ver=551bf44de7d34e92" id="give-js"></script>
<script type="text/javascript" src="https://wfrtds.org/wp-content/themes/jupiterx/lib/assets/dist/js/utils.js?ver=4.7.8" id="jupiterx-utils-js"></script>
<link rel="https://api.w.org/" href="https://wfrtds.org/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://wfrtds.org/wp-json/wp/v2/pages/2146" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://wfrtds.org/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.6.2" />
<link rel="canonical" href="https://wfrtds.org/" />
<link rel='shortlink' href='https://wfrtds.org/' />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://wfrtds.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwfrtds.org%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://wfrtds.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwfrtds.org%2F&#038;format=xml" />
<meta name="generator" content="Give v3.17.1" />

<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<!-- GTM Container placement set to footer -->
<script data-cfasync="false" data-pagespeed-no-defer type="text/javascript">
	var dataLayer_content = {"pageTitle":"","pagePostType":"frontpage","pagePostType2":"single-page","pagePostAuthor":"websitekid","pagePostDate":"August 21, 2019","pagePostDateYear":2019,"pagePostDateMonth":8,"pagePostDateDay":21,"pagePostDateDayName":"Wednesday","pagePostDateHour":10,"pagePostDateMinute":44,"pagePostDateIso":"2019-08-21T10:44:26+00:00","pagePostDateUnix":1566384266};
	dataLayer.push( dataLayer_content );
</script>
<script data-cfasync="false">
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-M4NR78W');
</script>
<!-- End Google Tag Manager for WordPress by gtm4wp.com --><meta name="generator" content="Elementor 3.23.4; features: additional_custom_breakpoints, e_lazyload; settings: css_print_method-external, google_font-enabled, font_display-auto">
			<style>
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
					background-image: none !important;
				}
				@media screen and (max-height: 1024px) {
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
				@media screen and (max-height: 640px) {
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
			</style>
			<link rel="icon" href="https://wfrtds.org/wp-content/uploads/2020/10/cropped-WFRtDS_favicon-32x32.png" sizes="32x32" />
<link rel="icon" href="https://wfrtds.org/wp-content/uploads/2020/10/cropped-WFRtDS_favicon-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://wfrtds.org/wp-content/uploads/2020/10/cropped-WFRtDS_favicon-180x180.png" />
<meta name="msapplication-TileImage" content="https://wfrtds.org/wp-content/uploads/2020/10/cropped-WFRtDS_favicon-270x270.png" />
<style type="text/css">.mec-wrap, .mec-wrap div:not([class^="elementor-"]), .lity-container, .mec-wrap h1, .mec-wrap h2, .mec-wrap h3, .mec-wrap h4, .mec-wrap h5, .mec-wrap h6, .entry-content .mec-wrap h1, .entry-content .mec-wrap h2, .entry-content .mec-wrap h3, .entry-content .mec-wrap h4, .entry-content .mec-wrap h5, .entry-content .mec-wrap h6, .mec-wrap .mec-totalcal-box input[type="submit"], .mec-wrap .mec-totalcal-box .mec-totalcal-view span, .mec-agenda-event-title a, .lity-content .mec-events-meta-group-booking select, .lity-content .mec-book-ticket-variation h5, .lity-content .mec-events-meta-group-booking input[type="number"], .lity-content .mec-events-meta-group-booking input[type="text"], .lity-content .mec-events-meta-group-booking input[type="email"],.mec-organizer-item a, .mec-single-event .mec-events-meta-group-booking ul.mec-book-tickets-container li.mec-book-ticket-container label { font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;}.mec-event-content p, .mec-search-bar-result .mec-event-detail{ font-family: Roboto, sans-serif;} .mec-wrap .mec-totalcal-box input, .mec-wrap .mec-totalcal-box select, .mec-checkboxes-search .mec-searchbar-category-wrap, .mec-wrap .mec-totalcal-box .mec-totalcal-view span { font-family: "Roboto", Helvetica, Arial, sans-serif; }.mec-event-grid-modern .event-grid-modern-head .mec-event-day, .mec-event-list-minimal .mec-time-details, .mec-event-list-minimal .mec-event-detail, .mec-event-list-modern .mec-event-detail, .mec-event-grid-minimal .mec-time-details, .mec-event-grid-minimal .mec-event-detail, .mec-event-grid-simple .mec-event-detail, .mec-event-cover-modern .mec-event-place, .mec-event-cover-clean .mec-event-place, .mec-calendar .mec-event-article .mec-localtime-details div, .mec-calendar .mec-event-article .mec-event-detail, .mec-calendar.mec-calendar-daily .mec-calendar-d-top h2, .mec-calendar.mec-calendar-daily .mec-calendar-d-top h3, .mec-toggle-item-col .mec-event-day, .mec-weather-summary-temp { font-family: "Roboto", sans-serif; } .mec-fes-form, .mec-fes-list, .mec-fes-form input, .mec-event-date .mec-tooltip .box, .mec-event-status .mec-tooltip .box, .ui-datepicker.ui-widget, .mec-fes-form button[type="submit"].mec-fes-sub-button, .mec-wrap .mec-timeline-events-container p, .mec-wrap .mec-timeline-events-container h4, .mec-wrap .mec-timeline-events-container div, .mec-wrap .mec-timeline-events-container a, .mec-wrap .mec-timeline-events-container span { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important; }.mec-event-grid-minimal .mec-modal-booking-button:hover, .mec-events-timeline-wrap .mec-organizer-item a, .mec-events-timeline-wrap .mec-organizer-item:after, .mec-events-timeline-wrap .mec-shortcode-organizers i, .mec-timeline-event .mec-modal-booking-button, .mec-wrap .mec-map-lightbox-wp.mec-event-list-classic .mec-event-date, .mec-timetable-t2-col .mec-modal-booking-button:hover, .mec-event-container-classic .mec-modal-booking-button:hover, .mec-calendar-events-side .mec-modal-booking-button:hover, .mec-event-grid-yearly  .mec-modal-booking-button, .mec-events-agenda .mec-modal-booking-button, .mec-event-grid-simple .mec-modal-booking-button, .mec-event-list-minimal  .mec-modal-booking-button:hover, .mec-timeline-month-divider,  .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span:hover,.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-wrap.colorskin-custom .mec-color, .mec-wrap.colorskin-custom .mec-event-sharing-wrap .mec-event-sharing > li:hover a, .mec-wrap.colorskin-custom .mec-color-hover:hover, .mec-wrap.colorskin-custom .mec-color-before *:before ,.mec-wrap.colorskin-custom .mec-widget .mec-event-grid-classic.owl-carousel .owl-nav i,.mec-wrap.colorskin-custom .mec-event-list-classic a.magicmore:hover,.mec-wrap.colorskin-custom .mec-event-grid-simple:hover .mec-event-title,.mec-wrap.colorskin-custom .mec-single-event .mec-event-meta dd.mec-events-event-categories:before,.mec-wrap.colorskin-custom .mec-single-event-date:before,.mec-wrap.colorskin-custom .mec-single-event-time:before,.mec-wrap.colorskin-custom .mec-events-meta-group.mec-events-meta-group-venue:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month i,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-wrap.colorskin-custom .mec-infowindow-wp h5 a:hover, .colorskin-custom .mec-events-meta-group-countdown .mec-end-counts h3,.mec-calendar .mec-calendar-side .mec-next-month i,.mec-wrap .mec-totalcal-box i,.mec-calendar .mec-event-article .mec-event-title a:hover,.mec-attendees-list-details .mec-attendee-profile-link a:hover,.mec-wrap.colorskin-custom .mec-next-event-details li i, .mec-next-event-details i:before, .mec-marker-infowindow-wp .mec-marker-infowindow-count, .mec-next-event-details a,.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected,.lity .mec-color,.lity .mec-color-before :before,.lity .mec-color-hover:hover,.lity .mec-wrap .mec-color,.lity .mec-wrap .mec-color-before :before,.lity .mec-wrap .mec-color-hover:hover,.leaflet-popup-content .mec-color,.leaflet-popup-content .mec-color-before :before,.leaflet-popup-content .mec-color-hover:hover,.leaflet-popup-content .mec-wrap .mec-color,.leaflet-popup-content .mec-wrap .mec-color-before :before,.leaflet-popup-content .mec-wrap .mec-color-hover:hover, .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active.mec-color, .mec-map-boxshow div .mec-map-view-event-detail.mec-event-detail i,.mec-map-boxshow div .mec-map-view-event-detail.mec-event-detail:hover,.mec-map-boxshow .mec-color,.mec-map-boxshow .mec-color-before :before,.mec-map-boxshow .mec-color-hover:hover,.mec-map-boxshow .mec-wrap .mec-color,.mec-map-boxshow .mec-wrap .mec-color-before :before,.mec-map-boxshow .mec-wrap .mec-color-hover:hover, .mec-choosen-time-message, .mec-booking-calendar-month-navigation .mec-next-month:hover, .mec-booking-calendar-month-navigation .mec-previous-month:hover, .mec-yearly-view-wrap .mec-agenda-event-title a:hover, .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i, .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i, .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover, .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover, .mec-av-spot .mec-av-spot-head .mec-av-spot-box span, .mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month:hover .mec-load-month-link, .mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month:hover .mec-load-month-link, .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover .mec-load-month-link, .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover .mec-load-month-link, .mec-skin-list-events-container .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul .mec-event-data-field-item a, .mec-booking-shortcode .mec-event-ticket-name, .mec-booking-shortcode .mec-event-ticket-price, .mec-booking-shortcode .mec-ticket-variation-name, .mec-booking-shortcode .mec-ticket-variation-price, .mec-booking-shortcode label, .mec-booking-shortcode .nice-select, .mec-booking-shortcode input, .mec-booking-shortcode span.mec-book-price-detail-description, .mec-booking-shortcode .mec-ticket-name, .mec-booking-shortcode label.wn-checkbox-label, .mec-wrap.mec-cart table tr td a {color: #00789d}.mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button:hover, .mec-wrap.colorskin-custom .mec-event-sharing .mec-event-share:hover .event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-grid-clean .mec-event-date,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing li:hover a i,.mec-wrap.colorskin-custom .mec-calendar:not(.mec-event-calendar-classic) .mec-selected-day,.mec-wrap.colorskin-custom .mec-calendar .mec-selected-day:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-row  dt.mec-has-event:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-has-event:after, .mec-wrap.colorskin-custom .mec-bg-color, .mec-wrap.colorskin-custom .mec-bg-color-hover:hover, .colorskin-custom .mec-event-sharing-wrap:hover > li, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .flip-clock-wrapper ul li a div div.inn,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel,.mec-event-countdown-style3 .mec-event-date,#wrap .mec-wrap article.mec-event-countdown-style1,.mec-event-countdown-style1 .mec-event-countdown-part3 a.mec-event-button,.mec-wrap .mec-event-countdown-style2,.mec-map-get-direction-btn-cnt input[type="submit"],.mec-booking button,span.mec-marker-wrap,.mec-wrap.colorskin-custom .mec-timeline-events-container .mec-timeline-event-date:before, .mec-has-event-for-booking.mec-active .mec-calendar-novel-selected-day, .mec-booking-tooltip.multiple-time .mec-booking-calendar-date.mec-active, .mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover, .mec-ongoing-normal-label, .mec-calendar .mec-has-event:after, .mec-event-list-modern .mec-event-sharing li:hover .telegram{background-color: #00789d;}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover, .mec-calendar-day.mec-active .mec-booking-tooltip.multiple-time .mec-booking-calendar-date.mec-active{ background-color: #00789d;}.mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button:hover, .mec-timeline-month-divider, .mec-wrap.colorskin-custom .mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-standard .mec-month-divider span:before,.mec-wrap.colorskin-custom .mec-single-event .mec-social-single:before,.mec-wrap.colorskin-custom .mec-single-event .mec-frontbox-title:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-events-side .mec-table-side-day, .mec-wrap.colorskin-custom .mec-border-color, .mec-wrap.colorskin-custom .mec-border-color-hover:hover, .colorskin-custom .mec-single-event .mec-frontbox-title:before, .colorskin-custom .mec-single-event .mec-wrap-checkout h4:before, .colorskin-custom .mec-single-event .mec-events-meta-group-booking form > h4:before, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel:after,.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected, .mec-marker-infowindow-wp .mec-marker-infowindow-count, .mec-wrap.colorskin-custom .mec-events-masonry-cats a:hover, .mec-has-event-for-booking .mec-calendar-novel-selected-day, .mec-booking-tooltip.multiple-time .mec-booking-calendar-date.mec-active, .mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover, .mec-virtual-event-history h3:before, .mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover, .mec-calendar-day.mec-active .mec-booking-tooltip.multiple-time .mec-booking-calendar-date.mec-active, .mec-rsvp-form-box form > h4:before, .mec-wrap .mec-box-title::before, .mec-box-title::before  {border-color: #00789d;}.mec-wrap.colorskin-custom .mec-event-countdown-style3 .mec-event-date:after,.mec-wrap.colorskin-custom .mec-month-divider span:before, .mec-calendar.mec-event-container-simple dl dt.mec-selected-day, .mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom-color:#00789d;}.mec-wrap.colorskin-custom  article.mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color: transparent transparent transparent #00789d;}.mec-wrap.colorskin-custom .mec-box-shadow-color { box-shadow: 0 4px 22px -7px #00789d;}.mec-events-timeline-wrap .mec-shortcode-organizers, .mec-timeline-event .mec-modal-booking-button, .mec-events-timeline-wrap:before, .mec-wrap.colorskin-custom .mec-timeline-event-local-time, .mec-wrap.colorskin-custom .mec-timeline-event-time ,.mec-wrap.colorskin-custom .mec-timeline-event-location,.mec-choosen-time-message { background: rgba(0,120,157,.11);}.mec-wrap.colorskin-custom .mec-timeline-events-container .mec-timeline-event-date:after{ background: rgba(0,120,157,.3);}.mec-booking-shortcode button { box-shadow: 0 2px 2px rgba(0 120 157 / 27%);}.mec-booking-shortcode button.mec-book-form-back-button{ background-color: rgba(0 120 157 / 40%);}.mec-events-meta-group-booking-shortcode{ background: rgba(0,120,157,.14);}.mec-booking-shortcode label.wn-checkbox-label, .mec-booking-shortcode .nice-select,.mec-booking-shortcode input, .mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before, .mec-booking-shortcode input[type=radio]:checked:before, .mec-booking-shortcode ul.mec-book-price-details li, .mec-booking-shortcode ul.mec-book-price-details{ border-color: rgba(0 120 157 / 27%) !important;}.mec-booking-shortcode input::-webkit-input-placeholder,.mec-booking-shortcode textarea::-webkit-input-placeholder{color: #00789d}.mec-booking-shortcode input::-moz-placeholder,.mec-booking-shortcode textarea::-moz-placeholder{color: #00789d}.mec-booking-shortcode input:-ms-input-placeholder,.mec-booking-shortcode textarea:-ms-input-placeholder {color: #00789d}.mec-booking-shortcode input:-moz-placeholder,.mec-booking-shortcode textarea:-moz-placeholder {color: #00789d}.mec-booking-shortcode label.wn-checkbox-label:after, .mec-booking-shortcode label.wn-checkbox-label:before, .mec-booking-shortcode input[type=radio]:checked:after{background-color: #00789d}.mec-wrap h1 a, .mec-wrap h2 a, .mec-wrap h3 a, .mec-wrap h4 a, .mec-wrap h5 a, .mec-wrap h6 a,.entry-content .mec-wrap h1 a, .entry-content .mec-wrap h2 a, .entry-content .mec-wrap h3 a,.entry-content  .mec-wrap h4 a, .entry-content .mec-wrap h5 a, .entry-content .mec-wrap h6 a {color: #00789d !important;}</style></head><body class="home page-template page-template-elementor_header_footer page page-id-2146 no-js elementor-default elementor-template-full-width elementor-kit-2126 elementor-page elementor-page-2146" itemscope="itemscope" itemtype="http://schema.org/WebPage"><a class="jupiterx-a11y jupiterx-a11y-skip-navigation-link" href="#jupiterx-main">Skip to content</a><div class="jupiterx-site"><header class="jupiterx-header" data-jupiterx-settings="{&quot;breakpoint&quot;:&quot;767.98&quot;,&quot;behavior&quot;:&quot;&quot;}" role="banner" itemscope="itemscope" itemtype="http://schema.org/WPHeader">		<div data-elementor-type="header" data-elementor-id="2178" class="elementor elementor-2178 elementor-location-header" data-elementor-post-type="elementor_library">
					<section class="elementor-section elementor-top-section elementor-element elementor-element-724c5a01 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="724c5a01" data-element_type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;_id&quot;:&quot;9a9d3fe&quot;,&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:null,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-default">
					<main class="raven-column-link elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-6cb41f14 raven-column-flex-horizontal" data-raven-link="www.wfrtds.org" data-raven-link-target="_self" data-id="6cb41f14" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-93f9552 elementor-widget elementor-widget-raven-site-logo" data-id="93f9552" data-element_type="widget" data-widget_type="raven-site-logo.default">
				<div class="elementor-widget-container">
					<div class="raven-widget-wrapper">
			<div class="raven-site-logo raven-site-logo-customizer">
									<a class="raven-site-logo-link" href="http://wfrtds.org">
								<picture><img srcset="https://wfrtds.org/wp-content/uploads/2020/10/WFRtDS_logo_.png 1x, https://wfrtds.org/wp-content/uploads/2020/10/WFRtDS_logo_.png 2x" src="https://wfrtds.org/wp-content/uploads/2020/10/WFRtDS_logo_.png" alt="The World Federation of Right to Die Societies" data-no-lazy="1" /></picture>									</a>
							</div>
		</div>
				</div>
				</div>
					</div>
		</main>
				<div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-35e7028" data-id="35e7028" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-d6ef1bc elementor-widget elementor-widget-raven-search-form" data-id="d6ef1bc" data-element_type="widget" data-settings="{&quot;_skin&quot;:&quot;classic&quot;}" data-widget_type="raven-search-form.classic">
				<div class="elementor-widget-container">
					<form class="raven-search-form raven-search-form-classic" method="get" action="https://wfrtds.org/" role="search">
			<div class="raven-search-form-container">
				<div class="raven-search-form-inner">
					<label class="elementor-screen-only" for="raven-search-form-input">Search</label>
					<input id="raven-search-form-input" class="raven-search-form-input" type="search" name="s" placeholder="Search..." />
																		<button class="raven-search-form-button raven-search-form-button-svg" type="submit" aria-label="Search">
									<i class="fas fa-search"></i>								</button>
																	</div>
			</div>
		</form>
				</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-0d0002f" data-id="0d0002f" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-cfd1336 e-grid-align-left elementor-shape-circle elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="cfd1336" data-element_type="widget" data-widget_type="social-icons.default">
				<div class="elementor-widget-container">
					<div class="elementor-social-icons-wrapper elementor-grid">
							<span class="elementor-grid-item">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-8013f6f" href="https://twitter.com/WFRtDS" target="_blank">
						<span class="elementor-screen-only">Twitter</span>
						<i class="fab fa-twitter"></i>					</a>
				</span>
							<span class="elementor-grid-item">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-4c5cfb2" href="https://www.linkedin.com/company/world-federation-for-right-to-die-societies-wfrtds-/" target="_blank">
						<span class="elementor-screen-only">Linkedin</span>
						<i class="fab fa-linkedin"></i>					</a>
				</span>
					</div>
				</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-985f519" data-id="985f519" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-ba218e5 elementor-align-right elementor-hidden-phone animated-slow elementor-widget elementor-widget-raven-button" data-id="ba218e5" data-element_type="widget" data-settings="{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:0,&quot;turn_to_popup_action_button&quot;:&quot;no&quot;}" data-widget_type="raven-button.default">
				<div class="elementor-widget-container">
					<div class="raven-widget-wrapper">
			<a class="raven-button raven-button-widget-normal-effect-none  raven-button-text-align-center raven-button-link elementor-animation-grow-rotate" href="https://wfrtds.org/newsletters-of-member-organizations/">				<div class="raven-button-overlay" ></div>
				<span class="raven-button-content">
					
					<div class="button-text-container">
												<div class="raven-button-texts-wrapper">
							<div class="button-text">
								<span class="raven-button-text">
									Newsletter								</span>
							</div>
													</div>
											</div>
					
									</span>
			</a>		</div>
				</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-766e8e9" data-id="766e8e9" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-5a09fa64 elementor-align-right elementor-hidden-phone elementor-widget elementor-widget-raven-button" data-id="5a09fa64" data-element_type="widget" data-settings="{&quot;turn_to_popup_action_button&quot;:&quot;no&quot;}" data-widget_type="raven-button.default">
				<div class="elementor-widget-container">
					<div class="raven-widget-wrapper">
			<a class="raven-button raven-button-widget-normal-effect-none  raven-button-text-align-center raven-button-link elementor-animation-grow-rotate" href="https://wfrtds.org/donate/" target="_blank">				<div class="raven-button-overlay" ></div>
				<span class="raven-button-content">
					
					<div class="button-text-container">
												<div class="raven-button-texts-wrapper">
							<div class="button-text">
								<span class="raven-button-text">
									Donate								</span>
							</div>
													</div>
											</div>
					
									</span>
			</a>		</div>
				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-8aec4ad elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="8aec4ad" data-element_type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;_id&quot;:&quot;dd3ee1d&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:null,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8bacdbb raven-column-flex-horizontal" data-id="8bacdbb" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-7b0a0c3c raven-breakpoint-tablet raven-nav-menu-align-center raven-tablet-nav-menu-align-center raven-nav-menu-stretch raven-mobile-nav-menu-align-left elementor-widget elementor-widget-raven-nav-menu" data-id="7b0a0c3c" data-element_type="widget" data-settings="{&quot;submenu_icon&quot;:&quot;&lt;svg 0=\&quot;fas fa-chevron-down\&quot; class=\&quot;e-font-icon-svg e-fas-chevron-down\&quot;&gt;\n\t\t\t\t\t&lt;use xlink:href=\&quot;#fas-chevron-down\&quot;&gt;\n\t\t\t\t\t\t&lt;symbol id=\&quot;fas-chevron-down\&quot; viewBox=\&quot;0 0 448 512\&quot;&gt;\n\t\t\t\t\t\t\t&lt;path d=\&quot;M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z\&quot;&gt;&lt;\/path&gt;\n\t\t\t\t\t\t&lt;\/symbol&gt;\n\t\t\t\t\t&lt;\/use&gt;\n\t\t\t\t&lt;\/svg&gt;&quot;,&quot;full_width&quot;:&quot;stretch&quot;,&quot;mobile_layout&quot;:&quot;dropdown&quot;,&quot;submenu_space_between&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;submenu_opening_position&quot;:&quot;bottom&quot;}" data-widget_type="raven-nav-menu.default">
				<div class="elementor-widget-container">
					<nav class="raven-nav-menu-main raven-nav-menu-horizontal raven-nav-menu-tablet- raven-nav-menu-mobile- raven-nav-icons-hidden-tablet raven-nav-icons-hidden-mobile">
			<ul id="menu-7b0a0c3c" class="raven-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-5715"><a class="raven-menu-item raven-link-item ">About us</a>
<ul class="0 sub-menu raven-submenu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2253"><a href="https://wfrtds.org/mission/" class="raven-submenu-item raven-link-item ">Mission, vision &#038; statutes</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3280"><a href="https://wfrtds.org/member-organizations/" class="raven-submenu-item raven-link-item ">Members</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8965"><a href="https://wfrtds.org/supporters/" class="raven-submenu-item raven-link-item ">Supporters</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2234"><a href="https://wfrtds.org/team/" class="raven-submenu-item raven-link-item ">Committee and staff</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2887"><a href="https://wfrtds.org/history/" class="raven-submenu-item raven-link-item ">History</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2677"><a href="https://wfrtds.org/conferences" class="raven-submenu-item raven-link-item ">Conferences</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14680"><a href="https://wfrtds.org/awards/" class="raven-submenu-item raven-link-item ">Awards</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6074"><a href="https://wfrtds.org/membership/" class="raven-submenu-item raven-link-item ">Membership</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2883"><a href="https://wfrtds.org/contact/" class="raven-submenu-item raven-link-item ">Contact</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-5876"><a class="raven-menu-item raven-link-item ">Information</a>
<ul class="0 sub-menu raven-submenu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12091"><a href="https://wfrtds.org/what-is-assisted-dying/" class="raven-submenu-item raven-link-item ">What is assisted dying?</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2264"><a href="https://wfrtds.org/worldmap/" class="raven-submenu-item raven-link-item ">Where is assisted dying allowed?</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5831"><a href="https://wfrtds.org/rtds/" class="raven-submenu-item raven-link-item ">Right to Die Societies</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3219"><a href="https://wfrtds.org/terms-and-definitions/" class="raven-submenu-item raven-link-item ">Terms and Definitions</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3221"><a href="https://wfrtds.org/questions-and-answers/" class="raven-submenu-item raven-link-item ">Questions and Answers</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9711"><a class="raven-menu-item raven-link-item ">Books, movies, podcasts</a>
<ul class="0 sub-menu raven-submenu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6742"><a href="https://wfrtds.org/movies-on-the-end-of-life/" class="raven-submenu-item raven-link-item ">Movies on assisted dying</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6018"><a href="https://wfrtds.org/podcasts/" class="raven-submenu-item raven-link-item ">Podcasts on assisted dying</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9710"><a href="https://wfrtds.org/novels-on-assisted-dying/" class="raven-submenu-item raven-link-item ">Novels on assisted dying</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15814"><a href="https://wfrtds.org/informative-books-on-assisted-dying/" class="raven-submenu-item raven-link-item ">Informative books on assisted dying</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12626"><a href="https://wfrtds.org/articles-on-assisted_dying/" class="raven-submenu-item raven-link-item ">Articles on assisted dying</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3734"><a href="https://wfrtds.org/all-news/" class="raven-menu-item raven-link-item ">News</a>
<ul class="0 sub-menu raven-submenu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2725"><a href="https://wfrtds.org/all-news/bills/" class="raven-submenu-item raven-link-item ">Bills</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2764"><a href="https://wfrtds.org/all-news/litigation/" class="raven-submenu-item raven-link-item ">Courtcases</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11856"><a href="https://wfrtds.org/all-news/reports/" class="raven-submenu-item raven-link-item ">Reports</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2768"><a href="https://wfrtds.org/all-news/advocacy/" class="raven-submenu-item raven-link-item ">Advocacy movements</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11478"><a href="https://wfrtds.org/newsletters-of-member-organizations/" class="raven-submenu-item raven-link-item ">Newsletters of Right to Die Societies</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18692"><a href="https://wfrtds.org/wrtdd2024/" class="raven-submenu-item raven-link-item ">WRTDD2024</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-10374"><a href="https://wfrtds.org/agenda/" class="raven-menu-item raven-link-item ">Agenda</a>
<ul class="0 sub-menu raven-submenu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10322"><a href="https://wfrtds.org/past-events/" class="raven-submenu-item raven-link-item ">Past events</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10323"><a href="https://wfrtds.org/upcoming-events/" class="raven-submenu-item raven-link-item ">Upcoming events</a></li>
</ul>
</li>
</ul>		</nav>

		<div class="raven-nav-menu-toggle">

						<div class="raven-nav-menu-toggle-button ">
								<span class="fa fa-bars"></span>
								</div>

		</div>
		<nav class="raven-nav-icons-hidden-tablet raven-nav-icons-hidden-mobile raven-nav-menu-mobile raven-nav-menu-dropdown">
									<div class="raven-container">
				<ul id="menu-mobile-7b0a0c3c" class="raven-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-5715"><a class="raven-menu-item raven-link-item ">About us</a>
<ul class="0 sub-menu raven-submenu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2253"><a href="https://wfrtds.org/mission/" class="raven-submenu-item raven-link-item ">Mission, vision &#038; statutes</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3280"><a href="https://wfrtds.org/member-organizations/" class="raven-submenu-item raven-link-item ">Members</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8965"><a href="https://wfrtds.org/supporters/" class="raven-submenu-item raven-link-item ">Supporters</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2234"><a href="https://wfrtds.org/team/" class="raven-submenu-item raven-link-item ">Committee and staff</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2887"><a href="https://wfrtds.org/history/" class="raven-submenu-item raven-link-item ">History</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2677"><a href="https://wfrtds.org/conferences" class="raven-submenu-item raven-link-item ">Conferences</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14680"><a href="https://wfrtds.org/awards/" class="raven-submenu-item raven-link-item ">Awards</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6074"><a href="https://wfrtds.org/membership/" class="raven-submenu-item raven-link-item ">Membership</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2883"><a href="https://wfrtds.org/contact/" class="raven-submenu-item raven-link-item ">Contact</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-5876"><a class="raven-menu-item raven-link-item ">Information</a>
<ul class="0 sub-menu raven-submenu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12091"><a href="https://wfrtds.org/what-is-assisted-dying/" class="raven-submenu-item raven-link-item ">What is assisted dying?</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2264"><a href="https://wfrtds.org/worldmap/" class="raven-submenu-item raven-link-item ">Where is assisted dying allowed?</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5831"><a href="https://wfrtds.org/rtds/" class="raven-submenu-item raven-link-item ">Right to Die Societies</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3219"><a href="https://wfrtds.org/terms-and-definitions/" class="raven-submenu-item raven-link-item ">Terms and Definitions</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3221"><a href="https://wfrtds.org/questions-and-answers/" class="raven-submenu-item raven-link-item ">Questions and Answers</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9711"><a class="raven-menu-item raven-link-item ">Books, movies, podcasts</a>
<ul class="0 sub-menu raven-submenu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6742"><a href="https://wfrtds.org/movies-on-the-end-of-life/" class="raven-submenu-item raven-link-item ">Movies on assisted dying</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6018"><a href="https://wfrtds.org/podcasts/" class="raven-submenu-item raven-link-item ">Podcasts on assisted dying</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9710"><a href="https://wfrtds.org/novels-on-assisted-dying/" class="raven-submenu-item raven-link-item ">Novels on assisted dying</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15814"><a href="https://wfrtds.org/informative-books-on-assisted-dying/" class="raven-submenu-item raven-link-item ">Informative books on assisted dying</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12626"><a href="https://wfrtds.org/articles-on-assisted_dying/" class="raven-submenu-item raven-link-item ">Articles on assisted dying</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3734"><a href="https://wfrtds.org/all-news/" class="raven-menu-item raven-link-item ">News</a>
<ul class="0 sub-menu raven-submenu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2725"><a href="https://wfrtds.org/all-news/bills/" class="raven-submenu-item raven-link-item ">Bills</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2764"><a href="https://wfrtds.org/all-news/litigation/" class="raven-submenu-item raven-link-item ">Courtcases</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11856"><a href="https://wfrtds.org/all-news/reports/" class="raven-submenu-item raven-link-item ">Reports</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2768"><a href="https://wfrtds.org/all-news/advocacy/" class="raven-submenu-item raven-link-item ">Advocacy movements</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11478"><a href="https://wfrtds.org/newsletters-of-member-organizations/" class="raven-submenu-item raven-link-item ">Newsletters of Right to Die Societies</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18692"><a href="https://wfrtds.org/wrtdd2024/" class="raven-submenu-item raven-link-item ">WRTDD2024</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-10374"><a href="https://wfrtds.org/agenda/" class="raven-menu-item raven-link-item ">Agenda</a>
<ul class="0 sub-menu raven-submenu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10322"><a href="https://wfrtds.org/past-events/" class="raven-submenu-item raven-link-item ">Past events</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10323"><a href="https://wfrtds.org/upcoming-events/" class="raven-submenu-item raven-link-item ">Upcoming events</a></li>
</ul>
</li>
</ul>			</div>
		</nav>
				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		</header><main id="jupiterx-main" class="jupiterx-main">		<div data-elementor-type="wp-post" data-elementor-id="2146" class="elementor elementor-2146" data-elementor-post-type="page">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-1ed9db3 elementor-section-full_width elementor-section-height-min-height elementor-section-content-space-between elementor-section-height-default elementor-section-items-middle" data-id="1ed9db3" data-element_type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;_id&quot;:&quot;528f253&quot;,&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:43,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_bg_x&quot;:45,&quot;jet_parallax_layout_bg_y&quot;:&quot;50&quot;,&quot;jet_parallax_layout_type&quot;:&quot;none&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_direction&quot;:null,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:null,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-fa292ba" data-id="fa292ba" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-8ac92b4 elementor--h-position-center elementor--v-position-middle elementor-arrows-position-inside elementor-pagination-position-inside elementor-widget elementor-widget-slides" data-id="8ac92b4" data-element_type="widget" data-settings="{&quot;navigation&quot;:&quot;both&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;yes&quot;,&quot;transition&quot;:&quot;slide&quot;,&quot;transition_speed&quot;:500}" data-widget_type="slides.default">
				<div class="elementor-widget-container">
					<div class="elementor-swiper">
			<div class="elementor-slides-wrapper elementor-main-swiper swiper" dir="ltr" data-animation="fadeInDown">
				<div class="swiper-wrapper elementor-slides">
										<div class="elementor-repeater-item-3626f83 swiper-slide"><div class="swiper-slide-bg" role="img"></div><a class="swiper-slide-inner" href="https://wfrtds.org/mission/"><div class="swiper-slide-contents"><div class="elementor-slide-heading">The WFRtDS</div><div class="elementor-slide-description">The World Federation of Right to Die Societies provides an international link for organizations working to secure or protect the rights of individuals to self-determination at the end of their lives. </div><div  class="elementor-button elementor-slide-button elementor-size-sm">Our vision and mission</div></div></a></div><div class="elementor-repeater-item-144b771 swiper-slide"><div class="swiper-slide-bg elementor-ken-burns elementor-ken-burns--in" role="img"></div><div class="elementor-background-overlay"></div><a class="swiper-slide-inner" href="https://wfrtds.org/world-of-champions/"><div class="swiper-slide-contents"><div class="elementor-slide-heading">"The world of Champions"</div><div  class="elementor-button elementor-slide-button elementor-size-sm">Click for more information</div></div></a></div><div class="elementor-repeater-item-b6c2563 swiper-slide"><div class="swiper-slide-bg" role="img"></div><a class="swiper-slide-inner" href="https://wfrtds.org/wrtdd2024/"><div class="swiper-slide-contents"><div class="elementor-slide-heading">WFRTDD2024</div><div class="elementor-slide-description">Our Webinars are now available to watch and share </div><div  class="elementor-button elementor-slide-button elementor-size-sm">Click Here</div></div></a></div><div class="elementor-repeater-item-f5b2997 swiper-slide"><div class="swiper-slide-bg" role="img"></div><a class="swiper-slide-inner" href="https://www.youtube.com/@eoli-endoflifeireland7271"><div class="swiper-slide-contents"><div class="elementor-slide-heading">WFRtDS Conference Videos now available </div><div class="elementor-slide-description">All of the sessions that were recorded now available on EOL Ireland YouTube Channel </div><div  class="elementor-button elementor-slide-button elementor-size-sm">Click Here</div></div></a></div>				</div>
															<div class="swiper-pagination"></div>
																<div class="elementor-swiper-button elementor-swiper-button-prev" role="button" tabindex="0">
							<i aria-hidden="true" class="eicon-chevron-left"></i>							<span class="elementor-screen-only">Previous slide</span>
						</div>
						<div class="elementor-swiper-button elementor-swiper-button-next" role="button" tabindex="0">
							<i aria-hidden="true" class="eicon-chevron-right"></i>							<span class="elementor-screen-only">Next slide</span>
						</div>
												</div>
		</div>
				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-52ce69b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="52ce69b" data-element_type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f580731" data-id="f580731" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
							</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-e018720 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e018720" data-element_type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;557be6a&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:null,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-08922b7" data-id="08922b7" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-e0d86a6 elementor-widget elementor-widget-heading" data-id="e0d86a6" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
			<h2 class="elementor-heading-title elementor-size-default">Latest country developments</h2>		</div>
				</div>
				<div class="elementor-element elementor-element-bf7fed4 elementor-grid-4 elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-posts--thumbnail-top elementor-posts__hover-gradient elementor-widget elementor-widget-posts" data-id="bf7fed4" data-element_type="widget" data-settings="{&quot;cards_columns&quot;:&quot;4&quot;,&quot;cards_columns_tablet&quot;:&quot;2&quot;,&quot;cards_columns_mobile&quot;:&quot;1&quot;,&quot;cards_row_gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:35,&quot;sizes&quot;:[]},&quot;cards_row_gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;cards_row_gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}" data-widget_type="posts.cards">
				<div class="elementor-widget-container">
					<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid">
				<article class="elementor-post elementor-grid-item post-18745 post type-post status-publish format-standard has-post-thumbnail hentry category-activity category-ireland">
			<div class="elementor-post__card">
				<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/end-of-life-ireland-share-all-presentations-recorded-at-the-recent-wfrtds-conference-held-in-dublin-september-2024/" tabindex="-1" ><div class="elementor-post__thumbnail"><img decoding="async" width="230" height="110" src="https://wfrtds.org/wp-content/uploads/2021/10/eoli-logo-e1675008724320.jpg" class="attachment-medium size-medium wp-image-12468" alt="" /></div></a>
				<div class="elementor-post__text">
				<h3 class="elementor-post__title">
			<a href="https://wfrtds.org/end-of-life-ireland-share-all-presentations-recorded-at-the-recent-wfrtds-conference-held-in-dublin-september-2024/" >
				End of Life Ireland  share all presentations recorded at the recent WFRtDS Conference held in Dublin, September 2024			</a>
		</h3>
				<div class="elementor-post__excerpt">
			<p>All the presentations can be accessed using THIS LINK</p>
		</div>
				</div>
				<div class="elementor-post__meta-data">
					<span class="elementor-post-date">
			November 7, 2024		</span>
				</div>
					</div>
		</article>
				<article class="elementor-post elementor-grid-item post-18732 post type-post status-publish format-standard has-post-thumbnail hentry category-publications category-articles category-canada category-quebec">
			<div class="elementor-post__card">
				<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/a-promise-that-helped-change-the-way-people-die-in-quebec/" tabindex="-1" ><div class="elementor-post__thumbnail"><img fetchpriority="high" decoding="async" width="275" height="183" src="https://wfrtds.org/wp-content/uploads/2023/06/Quebec-flag.jpg" class="attachment-medium size-medium wp-image-16829" alt="" /></div></a>
				<div class="elementor-post__text">
				<h3 class="elementor-post__title">
			<a href="https://wfrtds.org/a-promise-that-helped-change-the-way-people-die-in-quebec/" >
				A promise that helped change the way people die in Quebec			</a>
		</h3>
				<div class="elementor-post__excerpt">
			<p>An opinion piece first published in Ledevoir 22nd October 2024 authored by Yvon Bureau The author is a social worker. This letter is from a</p>
		</div>
				</div>
				<div class="elementor-post__meta-data">
					<span class="elementor-post-date">
			November 6, 2024		</span>
				</div>
					</div>
		</article>
				<article class="elementor-post elementor-grid-item post-18537 post type-post status-publish format-standard has-post-thumbnail hentry category-publications category-countries category-reports category-uncategorized category-united-states-of-america">
			<div class="elementor-post__card">
				<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/death-with-dignity-annual-report/" tabindex="-1" ><div class="elementor-post__thumbnail"><img decoding="async" width="300" height="158" src="https://wfrtds.org/wp-content/uploads/2024/10/download-300x158.png" class="attachment-medium size-medium wp-image-18533" alt="" srcset="https://wfrtds.org/wp-content/uploads/2024/10/download-300x158.png 300w, https://wfrtds.org/wp-content/uploads/2024/10/download.png 310w" sizes="(max-width: 300px) 100vw, 300px" /></div></a>
				<div class="elementor-post__text">
				<h3 class="elementor-post__title">
			<a href="https://wfrtds.org/death-with-dignity-annual-report/" >
				Death With Dignity Annual Report			</a>
		</h3>
				<div class="elementor-post__excerpt">
			<p>Death with Dignity publish their annual report. Please follow this link to read it HERE</p>
		</div>
				</div>
				<div class="elementor-post__meta-data">
					<span class="elementor-post-date">
			October 8, 2024		</span>
				</div>
					</div>
		</article>
				<article class="elementor-post elementor-grid-item post-18532 post type-post status-publish format-standard has-post-thumbnail hentry category-development category-countries category-press-release category-united-states-of-america">
			<div class="elementor-post__card">
				<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/west-virginias-legislature-placed-a-dangerous-constitutional-amendment-on-the-ballot-that-would-permanently-ban-death-with-dignity/" tabindex="-1" ><div class="elementor-post__thumbnail"><img loading="lazy" decoding="async" width="300" height="56" src="https://wfrtds.org/wp-content/uploads/2024/10/DWD_Yellow-300x56.png" class="attachment-medium size-medium wp-image-18534" alt="" srcset="https://wfrtds.org/wp-content/uploads/2024/10/DWD_Yellow-300x56.png 300w, https://wfrtds.org/wp-content/uploads/2024/10/DWD_Yellow-1024x192.png 1024w, https://wfrtds.org/wp-content/uploads/2024/10/DWD_Yellow-768x144.png 768w, https://wfrtds.org/wp-content/uploads/2024/10/DWD_Yellow-1536x288.png 1536w, https://wfrtds.org/wp-content/uploads/2024/10/DWD_Yellow-2048x384.png 2048w" sizes="(max-width: 300px) 100vw, 300px" /></div></a>
				<div class="elementor-post__text">
				<h3 class="elementor-post__title">
			<a href="https://wfrtds.org/west-virginias-legislature-placed-a-dangerous-constitutional-amendment-on-the-ballot-that-would-permanently-ban-death-with-dignity/" >
				West Virginia’s legislature placed a dangerous constitutional amendment on the ballot that would permanently ban Death with Dignity			</a>
		</h3>
				<div class="elementor-post__excerpt">
			<p>Late in the session, West Virginia’s legislature placed a dangerous constitutional amendment on the ballot that would permanently ban Death with Dignity – Amendment One.</p>
		</div>
				</div>
				<div class="elementor-post__meta-data">
					<span class="elementor-post-date">
			October 8, 2024		</span>
				</div>
					</div>
		</article>
				</div>
		
				</div>
				</div>
				<div class="elementor-element elementor-element-b8fb4dc elementor-widget elementor-widget-jet-popup-action-button" data-id="b8fb4dc" data-element_type="widget" data-widget_type="jet-popup-action-button.default">
				<div class="elementor-widget-container">
					<div class="jet-popup-action-button">
			<a class="jet-popup-action-button__instance jet-popup-action-button--icon-after" data-settings="{&quot;action-type&quot;:&quot;link&quot;}" href="https://wfrtds.org/all-news/"><span class="jet-popup-action-button__text">All the latest developments</span>			</a>
		</div>		</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-0a82a3a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="0a82a3a" data-element_type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;557be6a&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:null,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-690f439" data-id="690f439" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-f2ea51f elementor-widget elementor-widget-heading" data-id="f2ea51f" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
			<h2 class="elementor-heading-title elementor-size-default">News from our members</h2>		</div>
				</div>
				<div class="elementor-element elementor-element-e4c0f70 elementor-grid-4 elementor-posts--align-left elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-posts--thumbnail-top elementor-posts__hover-gradient elementor-widget elementor-widget-posts" data-id="e4c0f70" data-element_type="widget" data-settings="{&quot;cards_columns&quot;:&quot;4&quot;,&quot;cards_columns_tablet&quot;:&quot;2&quot;,&quot;cards_columns_mobile&quot;:&quot;1&quot;,&quot;cards_row_gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:35,&quot;sizes&quot;:[]},&quot;cards_row_gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;cards_row_gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}" data-widget_type="posts.cards">
				<div class="elementor-widget-container">
					<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid">
				<article class="elementor-post elementor-grid-item post-18750 post type-post status-publish format-standard has-post-thumbnail hentry category-publications category-austria category-newsletter">
			<div class="elementor-post__card">
				<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/oghl-produce-their-latest-newsletter/" tabindex="-1" ><div class="elementor-post__thumbnail"><img loading="lazy" decoding="async" width="300" height="178" src="https://wfrtds.org/wp-content/uploads/2020/01/oghl-1-300x178.png" class="attachment-medium size-medium wp-image-7696" alt="" srcset="https://wfrtds.org/wp-content/uploads/2020/01/oghl-1-300x178.png 300w, https://wfrtds.org/wp-content/uploads/2020/01/oghl-1.png 353w" sizes="(max-width: 300px) 100vw, 300px" /></div></a>
				<div class="elementor-post__text">
				<h3 class="elementor-post__title">
			<a href="https://wfrtds.org/oghl-produce-their-latest-newsletter/" >
				ÖGHL produce their latest newsletter			</a>
		</h3>
				<div class="elementor-post__excerpt">
			<p>The newsletter can be accessed here</p>
		</div>
				</div>
				<div class="elementor-post__meta-data">
					<span class="elementor-post-date">
			November 15, 2024		</span>
				</div>
					</div>
		</article>
				<article class="elementor-post elementor-grid-item post-18728 post type-post status-publish format-standard has-post-thumbnail hentry category-publications category-france category-le-choix-citoyens-pour-une-mort-choisie category-newsletter">
			<div class="elementor-post__card">
				<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/le-choix-publish-their-october-newswatch/" tabindex="-1" ><div class="elementor-post__thumbnail"><img loading="lazy" decoding="async" width="295" height="182" src="https://wfrtds.org/wp-content/uploads/2019/02/logo-le-choix-275x75-1-3.png" class="attachment-medium size-medium wp-image-7208" alt="" /></div></a>
				<div class="elementor-post__text">
				<h3 class="elementor-post__title">
			<a href="https://wfrtds.org/le-choix-publish-their-october-newswatch/" >
				Le Choix publish their October news watch			</a>
		</h3>
				<div class="elementor-post__excerpt">
			<p>Monthly press review, in French.</p>
		</div>
				</div>
				<div class="elementor-post__meta-data">
					<span class="elementor-post-date">
			November 6, 2024		</span>
				</div>
					</div>
		</article>
				<article class="elementor-post elementor-grid-item post-18724 post type-post status-publish format-standard has-post-thumbnail hentry category-publications category-association-pour-le-droit-de-mourir-dans-la-dignite-admd-b category-belgium category-newsletter category-uncategorized">
			<div class="elementor-post__card">
				<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/admd-belgium-newsletter-no-169/" tabindex="-1" ><div class="elementor-post__thumbnail"><img loading="lazy" decoding="async" width="265" height="300" src="https://wfrtds.org/wp-content/uploads/2011/08/logo_ADMD-small-265x300.jpg" class="attachment-medium size-medium wp-image-7135" alt="" srcset="https://wfrtds.org/wp-content/uploads/2011/08/logo_ADMD-small-265x300.jpg 265w, https://wfrtds.org/wp-content/uploads/2011/08/logo_ADMD-small-904x1024.jpg 904w, https://wfrtds.org/wp-content/uploads/2011/08/logo_ADMD-small-768x870.jpg 768w, https://wfrtds.org/wp-content/uploads/2011/08/logo_ADMD-small-1356x1536.jpg 1356w, https://wfrtds.org/wp-content/uploads/2011/08/logo_ADMD-small-1808x2048.jpg 1808w" sizes="(max-width: 265px) 100vw, 265px" /></div></a>
				<div class="elementor-post__text">
				<h3 class="elementor-post__title">
			<a href="https://wfrtds.org/admd-belgium-newsletter-no-169/" >
				ADMD-Belgium newsletter No. 169			</a>
		</h3>
				<div class="elementor-post__excerpt">
			<p>Our member society ADMD Belgium publish their latest newsletter</p>
		</div>
				</div>
				<div class="elementor-post__meta-data">
					<span class="elementor-post-date">
			November 6, 2024		</span>
				</div>
					</div>
		</article>
				<article class="elementor-post elementor-grid-item post-18599 post type-post status-publish format-standard has-post-thumbnail hentry category-publications category-australia category-newsletter category-victoria">
			<div class="elementor-post__card">
				<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/dying-with-dignity-victoria-publish-their-latest-newsletter/" tabindex="-1" ><div class="elementor-post__thumbnail"><img loading="lazy" decoding="async" width="300" height="106" src="https://wfrtds.org/wp-content/uploads/2021/06/dwd-victoria-300x106.png" class="attachment-medium size-medium wp-image-10615" alt="" srcset="https://wfrtds.org/wp-content/uploads/2021/06/dwd-victoria-300x106.png 300w, https://wfrtds.org/wp-content/uploads/2021/06/dwd-victoria.png 421w" sizes="(max-width: 300px) 100vw, 300px" /></div></a>
				<div class="elementor-post__text">
				<h3 class="elementor-post__title">
			<a href="https://wfrtds.org/dying-with-dignity-victoria-publish-their-latest-newsletter/" >
				Dying with Dignity Victoria publish their latest newsletter			</a>
		</h3>
				<div class="elementor-post__excerpt">
			<p>October 2024 can be accessed here</p>
		</div>
				</div>
				<div class="elementor-post__meta-data">
					<span class="elementor-post-date">
			October 22, 2024		</span>
				</div>
					</div>
		</article>
				</div>
		
				</div>
				</div>
				<div class="elementor-element elementor-element-2eb3714 elementor-widget elementor-widget-jet-popup-action-button" data-id="2eb3714" data-element_type="widget" data-widget_type="jet-popup-action-button.default">
				<div class="elementor-widget-container">
					<div class="jet-popup-action-button">
			<a class="jet-popup-action-button__instance jet-popup-action-button--icon-after" data-settings="{&quot;action-type&quot;:&quot;link&quot;}" href="https://wfrtds.org/newsletters-of-member-organizations/"><span class="jet-popup-action-button__text">More news from our members</span>			</a>
		</div>		</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-fbfc194 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="fbfc194" data-element_type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;13add73&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:null,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-696bbd0" data-id="696bbd0" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-65ea8c3 elementor-widget elementor-widget-spacer" data-id="65ea8c3" data-element_type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
					<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-4be83e7 elementor-section-content-top elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4be83e7" data-element_type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;1ffbacf&quot;,&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;50&quot;,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_bg_x&quot;:&quot;50&quot;,&quot;jet_parallax_layout_bg_y&quot;:&quot;50&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:null,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0cd4e60" data-id="0cd4e60" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-eec1335 elementor-mobile-align-center elementor-align-center elementor-widget elementor-widget-raven-heading" data-id="eec1335" data-element_type="widget" data-widget_type="raven-heading.default">
				<div class="elementor-widget-container">
					<div class="raven-widget-wrapper"><h1 class="raven-heading raven-heading-h1"><span class="raven-heading-title ">Developments by category</span></h1></div>
				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-811a325 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="811a325" data-element_type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;2e98183&quot;,&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;50&quot;,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_bg_x&quot;:&quot;50&quot;,&quot;jet_parallax_layout_bg_y&quot;:&quot;50&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:null,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-narrow">
					<div class="raven-column-link elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-2f40e7d" data-raven-link="https://wfrtds.org/bills/" data-raven-link-target="_self" data-id="2f40e7d" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-9521fdf elementor-cta--skin-cover elementor-cta--valign-bottom elementor-bg-transform elementor-bg-transform-zoom-out elementor-animated-content elementor-widget elementor-widget-call-to-action" data-id="9521fdf" data-element_type="widget" data-widget_type="call-to-action.default">
				<div class="elementor-widget-container">
					<div class="elementor-cta">
					<div class="elementor-cta__bg-wrapper">
				<div class="elementor-cta__bg elementor-bg" style="background-image: url(https://wfrtds.org/wp-content/uploads/2020/10/shutterstock_416789053-1024x683.jpg);" role="img" aria-label="bill"></div>
				<div class="elementor-cta__bg-overlay"></div>
			</div>
							<div class="elementor-cta__content">
				
									<h1 class="elementor-cta__title elementor-cta__content-item elementor-content-item elementor-animated-item--grow">
						BILLS					</h1>
				
									<div class="elementor-cta__description elementor-cta__content-item elementor-content-item elementor-animated-item--grow">
						Legislation in progress					</div>
				
							</div>
						</div>
				</div>
				</div>
					</div>
		</div>
				<div class="raven-column-link elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-57e1725" data-raven-link="https://wfrtds.org/elementor-2753/" data-raven-link-target="_self" data-id="57e1725" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-19b59e4 elementor-cta--skin-cover elementor-cta--valign-bottom elementor-bg-transform elementor-bg-transform-zoom-out elementor-animated-content elementor-widget elementor-widget-call-to-action" data-id="19b59e4" data-element_type="widget" data-widget_type="call-to-action.default">
				<div class="elementor-widget-container">
					<a class="elementor-cta" href="https://wfrtds.org/litigation/">
					<div class="elementor-cta__bg-wrapper">
				<div class="elementor-cta__bg elementor-bg" style="background-image: url();" role="img" aria-label=""></div>
				<div class="elementor-cta__bg-overlay"></div>
			</div>
							<div class="elementor-cta__content">
				
									<h1 class="elementor-cta__title elementor-cta__content-item elementor-content-item elementor-animated-item--grow">
						LITIGATION					</h1>
				
									<div class="elementor-cta__description elementor-cta__content-item elementor-content-item elementor-animated-item--grow">
						Courtcases in progress
					</div>
				
							</div>
						</a>
				</div>
				</div>
					</div>
		</div>
				<div class="raven-column-link elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-95ec76c" data-raven-link="https://wfrtds.org/elementor-2758/" data-raven-link-target="_self" data-id="95ec76c" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-b48e49d elementor-cta--skin-cover elementor-cta--valign-bottom elementor-bg-transform elementor-bg-transform-zoom-out elementor-animated-content elementor-widget elementor-widget-call-to-action" data-id="b48e49d" data-element_type="widget" data-widget_type="call-to-action.default">
				<div class="elementor-widget-container">
					<a class="elementor-cta" href="https://wfrtds.org/advocacy/">
					<div class="elementor-cta__bg-wrapper">
				<div class="elementor-cta__bg elementor-bg" style="background-image: url(https://wfrtds.org/wp-content/uploads/2020/09/pexels-sora-shimazaki-5926371-1024x683.jpg);" role="img" aria-label="pexels-sora-shimazaki-5926371"></div>
				<div class="elementor-cta__bg-overlay"></div>
			</div>
							<div class="elementor-cta__content">
				
									<h1 class="elementor-cta__title elementor-cta__content-item elementor-content-item elementor-animated-item--grow">
						ADVOCACY					</h1>
				
									<div class="elementor-cta__description elementor-cta__content-item elementor-content-item elementor-animated-item--grow">
						Campaigning, public affairs, statements...					</div>
				
							</div>
						</a>
				</div>
				</div>
					</div>
		</div>
				<div class="raven-column-link elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-68f4fd8" data-raven-link="https://wfrtds.org/activities%e2%80%8b/" data-raven-link-target="_self" data-id="68f4fd8" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-039e242 elementor-cta--skin-cover elementor-cta--valign-bottom elementor-bg-transform elementor-bg-transform-zoom-out elementor-animated-content elementor-widget elementor-widget-call-to-action" data-id="039e242" data-element_type="widget" data-widget_type="call-to-action.default">
				<div class="elementor-widget-container">
					<a class="elementor-cta" href="https://wfrtds.org/agenda/">
					<div class="elementor-cta__bg-wrapper">
				<div class="elementor-cta__bg elementor-bg" style="background-image: url(https://wfrtds.org/wp-content/uploads/2020/10/shutterstock_1483533266-1024x684.jpg);" role="img" aria-label="shutterstock_1483533266"></div>
				<div class="elementor-cta__bg-overlay"></div>
			</div>
							<div class="elementor-cta__content">
				
									<h1 class="elementor-cta__title elementor-cta__content-item elementor-content-item elementor-animated-item--grow">
						ACTIVITIES					</h1>
				
									<div class="elementor-cta__description elementor-cta__content-item elementor-content-item elementor-animated-item--grow">
						Referenda, seminars, webinars...
					</div>
				
							</div>
						</a>
				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-52bd08e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="52bd08e" data-element_type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;32fa0c4&quot;,&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;50&quot;,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_bg_x&quot;:&quot;50&quot;,&quot;jet_parallax_layout_bg_y&quot;:&quot;50&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:null,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5608b3a" data-id="5608b3a" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-9be3593 elementor-align-center elementor-widget elementor-widget-raven-heading" data-id="9be3593" data-element_type="widget" data-widget_type="raven-heading.default">
				<div class="elementor-widget-container">
					<div class="raven-widget-wrapper"><h3 class="raven-heading raven-heading-h3"><span class="raven-heading-title ">SIGN UP FOR</span></h3></div>
				</div>
				</div>
				<div class="elementor-element elementor-element-405b271 elementor-align-center elementor-widget elementor-widget-raven-heading" data-id="405b271" data-element_type="widget" data-widget_type="raven-heading.default">
				<div class="elementor-widget-container">
					<div class="raven-widget-wrapper"><h2 class="raven-heading raven-heading-h2"><span class="raven-heading-title ">Our Newsletter</span></h2></div>
				</div>
				</div>
				<div class="elementor-element elementor-element-d31d461 elementor-widget elementor-widget-text-editor" data-id="d31d461" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
							<p>Interested in more news on the Right to Die?</p>						</div>
				</div>
				<div class="elementor-element elementor-element-0a8e517 raven-mobile-form-button-align-center raven-form-button-align-spaced elementor-widget elementor-widget-raven-form" data-id="0a8e517" data-element_type="widget" data-settings="{&quot;fields&quot;:[{&quot;type&quot;:&quot;email&quot;,&quot;placeholder&quot;:&quot;E-mail address&quot;,&quot;required&quot;:&quot;true&quot;,&quot;_id&quot;:&quot;d0aa693&quot;,&quot;acceptance_text&quot;:null,&quot;rows&quot;:null,&quot;width&quot;:&quot;&quot;,&quot;width_mobile&quot;:&quot;66&quot;,&quot;step_previous_button&quot;:null,&quot;step_next_button&quot;:null,&quot;field_custom_id&quot;:&quot;d0aa693&quot;,&quot;label&quot;:&quot;&quot;,&quot;recaptcha_badge&quot;:null,&quot;recaptcha_theme&quot;:null,&quot;recaptcha_size&quot;:null,&quot;checked_by_default&quot;:null,&quot;min_time&quot;:null,&quot;max_time&quot;:null,&quot;min_date&quot;:null,&quot;max_date&quot;:null,&quot;localization&quot;:null,&quot;min&quot;:null,&quot;max&quot;:null,&quot;field_options&quot;:null,&quot;inline_list&quot;:null,&quot;field_html&quot;:null,&quot;native_html5&quot;:null,&quot;multiple_selection&quot;:null,&quot;iti_tel&quot;:null,&quot;iti_tel_tel_type&quot;:null,&quot;iti_tel_require_area&quot;:null,&quot;iti_tel_allow_dropdown&quot;:null,&quot;iti_tel_country_include&quot;:null,&quot;iti_tel_ip_detect&quot;:null,&quot;iti_tel_internationalize&quot;:null,&quot;file_sizes&quot;:null,&quot;file_types&quot;:null,&quot;allow_multiple_upload&quot;:null,&quot;max_files&quot;:null,&quot;step_icon&quot;:null,&quot;field_value&quot;:&quot;&quot;}],&quot;mailchimp_list&quot;:&quot;064d10c6f8&quot;,&quot;_animation&quot;:&quot;none&quot;,&quot;steps_type&quot;:&quot;number&quot;,&quot;steps_icon_shape&quot;:&quot;circle&quot;}" data-widget_type="raven-form.default">
				<div class="elementor-widget-container">
					<form class="raven-form raven-flex raven-flex-wrap raven-flex-bottom raven-hide-required-mark" method="post" name="New form">
			<input type="hidden" name="post_id" value="2146" />
			<input type="hidden" name="form_id" value="0a8e517" />
					<div id="raven-field-group-d0aa693" class="raven-flex-wrap raven-field-type-email raven-field-group elementor-column elementor-col- raven-field-required elementor-sm-66">
					<input
			oninput="onInvalidRavenFormField(event)"
			oninvalid="onInvalidRavenFormField(event)"
			type="email" name="fields[d0aa693]" id="form-field-d0aa693" class="raven-field" placeholder="E-mail address" data-type="email" required="required">
				</div>
							<div class="raven-field-group raven-field-type-submit-button elementor-column elementor-col- elementor-sm-33">
									<button class="raven-submit-button" type="submit">
						<span>SUBSCRIBE</span>
		</button>
							</div>
				</form>

						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		</main><footer class="jupiterx-footer" role="contentinfo" itemscope="itemscope" itemtype="http://schema.org/WPFooter">		<footer data-elementor-type="footer" data-elementor-id="2273" class="elementor elementor-2273 elementor-location-footer" data-elementor-post-type="elementor_library">
					<section class="elementor-section elementor-top-section elementor-element elementor-element-327f84cb elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="327f84cb" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[{&quot;_id&quot;:&quot;4f200c9&quot;,&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:null,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-5da06217" data-id="5da06217" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-751add7 elementor-widget elementor-widget-heading" data-id="751add7" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
			<h2 class="elementor-heading-title elementor-size-default">Sign up for our Newsletter</h2>		</div>
				</div>
				<div class="elementor-element elementor-element-fc519c0 elementor-widget elementor-widget-menu-anchor" data-id="fc519c0" data-element_type="widget" data-widget_type="menu-anchor.default">
				<div class="elementor-widget-container">
					<div class="elementor-menu-anchor" id="newsletter"></div>
				</div>
				</div>
				<div class="elementor-element elementor-element-9a5bfb1 raven-mobile-form-button-align-center raven-form-button-align-spaced elementor-widget elementor-widget-raven-form" data-id="9a5bfb1" data-element_type="widget" data-settings="{&quot;fields&quot;:[{&quot;type&quot;:&quot;email&quot;,&quot;placeholder&quot;:&quot;E-mail address&quot;,&quot;required&quot;:&quot;true&quot;,&quot;_id&quot;:&quot;d0aa693&quot;,&quot;acceptance_text&quot;:null,&quot;rows&quot;:null,&quot;width&quot;:&quot;&quot;,&quot;width_mobile&quot;:&quot;66&quot;,&quot;step_previous_button&quot;:null,&quot;step_next_button&quot;:null,&quot;field_custom_id&quot;:&quot;d0aa693&quot;,&quot;label&quot;:&quot;&quot;,&quot;recaptcha_badge&quot;:null,&quot;recaptcha_theme&quot;:null,&quot;recaptcha_size&quot;:null,&quot;checked_by_default&quot;:null,&quot;min_time&quot;:null,&quot;max_time&quot;:null,&quot;min_date&quot;:null,&quot;max_date&quot;:null,&quot;localization&quot;:null,&quot;min&quot;:null,&quot;max&quot;:null,&quot;field_options&quot;:null,&quot;inline_list&quot;:null,&quot;field_html&quot;:null,&quot;native_html5&quot;:null,&quot;multiple_selection&quot;:null,&quot;iti_tel&quot;:null,&quot;iti_tel_tel_type&quot;:null,&quot;iti_tel_require_area&quot;:null,&quot;iti_tel_allow_dropdown&quot;:null,&quot;iti_tel_country_include&quot;:null,&quot;iti_tel_ip_detect&quot;:null,&quot;iti_tel_internationalize&quot;:null,&quot;file_sizes&quot;:null,&quot;file_types&quot;:null,&quot;allow_multiple_upload&quot;:null,&quot;max_files&quot;:null,&quot;step_icon&quot;:null,&quot;field_value&quot;:&quot;&quot;}],&quot;mailchimp_list&quot;:&quot;064d10c6f8&quot;,&quot;_animation&quot;:&quot;none&quot;,&quot;steps_type&quot;:&quot;number&quot;,&quot;steps_icon_shape&quot;:&quot;circle&quot;}" data-widget_type="raven-form.default">
				<div class="elementor-widget-container">
					<form class="raven-form raven-flex raven-flex-wrap raven-flex-bottom raven-hide-required-mark" method="post" name="New form">
			<input type="hidden" name="post_id" value="2273" />
			<input type="hidden" name="form_id" value="9a5bfb1" />
					<div id="raven-field-group-d0aa693" class="raven-flex-wrap raven-field-type-email raven-field-group elementor-column elementor-col- raven-field-r

Resolver

Resolver ASN
AS37057
Resolver IP
41.191.200.22
Resolver Network Name
Vodacom Lesotho (Pty) Ltd
Report ID
20241120T102411Z_webconnectivity_LS_37057_n1_tEAZ6bTkuJYnVThK
Platform
android
Software Name
ooniprobe-android-unattended (4.0.0)
Measurement Engine
ooniprobe-engine (3.23.0)

Raw Measurement Data

Loading