<!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 – Ensuring Choices for a Dignified Death</title>
<meta name='robots' content='max-image-preview:large' />
<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
<!-- 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 » Feed" href="https://wfrtds.org/feed/" />
<link rel="alternate" type="application/rss+xml" title="The World Federation of Right to Die Societies » 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.7.2","twemoji":"https:\/\/wfrtds.org\/wp-includes\/js\/twemoji.js?ver=6.7.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.7.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.7.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.7.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.7.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.7.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.7.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.7.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.22.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.22.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/5eb17ed.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/c402598.css?ver=4.7.8' 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.25.11' type='text/css' media='all' />
<link rel='stylesheet' id='widget-social-icons-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=3.25.11' type='text/css' media='all' />
<link rel='stylesheet' id='e-apple-webkit-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css?ver=3.25.11' type='text/css' media='all' />
<link rel='stylesheet' id='e-animations-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/lib/animations/animations.min.css?ver=3.25.11' type='text/css' media='all' />
<link rel='stylesheet' id='widget-heading-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=3.25.11' type='text/css' media='all' />
<link rel='stylesheet' id='widget-menu-anchor-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/css/widget-menu-anchor.min.css?ver=3.25.11' type='text/css' media='all' />
<link rel='stylesheet' id='widget-icon-list-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=3.25.11' 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.34.0' 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='e-swiper-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.css?ver=3.25.11' 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.7.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=1735649922' type='text/css' media='all' />
<link rel='stylesheet' id='e-popup-style-css' href='https://wfrtds.org/wp-content/plugins/elementor-pro/assets/css/conditionals/popup.css?ver=3.25.4' 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='e-animation-fadeInDown-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInDown.css?ver=3.25.11' type='text/css' media='all' />
<link rel='stylesheet' id='widget-slides-css' href='https://wfrtds.org/wp-content/plugins/elementor-pro/assets/css/widget-slides.min.css?ver=3.25.4' type='text/css' media='all' />
<link rel='stylesheet' id='widget-posts-css' href='https://wfrtds.org/wp-content/plugins/elementor-pro/assets/css/widget-posts.min.css?ver=3.25.4' type='text/css' media='all' />
<link rel='stylesheet' id='widget-spacer-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/css/widget-spacer.min.css?ver=3.25.11' type='text/css' media='all' />
<link rel='stylesheet' id='widget-call-to-action-css' href='https://wfrtds.org/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css?ver=3.25.4' type='text/css' media='all' />
<link rel='stylesheet' id='e-transitions-css' href='https://wfrtds.org/wp-content/plugins/elementor-pro/assets/css/conditionals/transitions.min.css?ver=3.25.4' type='text/css' media='all' />
<link rel='stylesheet' id='widget-text-editor-css' href='https://wfrtds.org/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver=3.25.11' 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=1739187676' 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=1735649923' 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=1735649923' 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&display=auto&ver=6.7.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":"8e8ece93c3","current_year":"2025","current_month":"03","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.22.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.22.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.22.1" id="give-stripe-onpage-js-js"></script>
<script type="text/javascript" src="https://wfrtds.org/wp-includes/js/dist/hooks.js?ver=5b4ec27a7b82f601224a" 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":"b7ec735d24","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.22.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":"b70711ea53","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=9cbf3d9eb5dd62d5" 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.7.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&format=xml" />
<meta name="generator" content="Give v3.22.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.25.11; features: additional_custom_breakpoints, e_optimized_control_loading; 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="{"breakpoint":"767.98","behavior":""}" 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="{"jet_parallax_layout_list":[{"_id":"9a9d3fe","jet_parallax_layout_image":{"url":"","id":"","size":""},"jet_parallax_layout_image_tablet":{"url":"","id":"","size":""},"jet_parallax_layout_image_mobile":{"url":"","id":"","size":""},"jet_parallax_layout_speed":{"unit":"%","size":50,"sizes":[]},"jet_parallax_layout_type":"scroll","jet_parallax_layout_direction":null,"jet_parallax_layout_fx_direction":null,"jet_parallax_layout_z_index":"","jet_parallax_layout_bg_x":50,"jet_parallax_layout_bg_x_tablet":"","jet_parallax_layout_bg_x_mobile":"","jet_parallax_layout_bg_y":50,"jet_parallax_layout_bg_y_tablet":"","jet_parallax_layout_bg_y_mobile":"","jet_parallax_layout_bg_size":"auto","jet_parallax_layout_bg_size_tablet":"","jet_parallax_layout_bg_size_mobile":"","jet_parallax_layout_animation_prop":"transform","jet_parallax_layout_on":["desktop","tablet"]}],"background_background":"classic"}">
<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="{"background_background":"classic"}">
<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="{"background_background":"classic"}">
<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="{"_skin":"classic"}" 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="{"background_background":"classic"}">
<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="{"background_background":"classic"}">
<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="{"_animation":"none","_animation_delay":0,"turn_to_popup_action_button":"no"}" 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="{"background_background":"classic"}">
<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="{"turn_to_popup_action_button":"no"}" 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="{"jet_parallax_layout_list":[{"jet_parallax_layout_image":{"url":"","id":"","size":"","alt":"","source":"library"},"_id":"dd3ee1d","jet_parallax_layout_image_tablet":{"url":"","id":"","size":""},"jet_parallax_layout_image_mobile":{"url":"","id":"","size":""},"jet_parallax_layout_speed":{"unit":"%","size":50,"sizes":[]},"jet_parallax_layout_type":"scroll","jet_parallax_layout_direction":null,"jet_parallax_layout_fx_direction":null,"jet_parallax_layout_z_index":"","jet_parallax_layout_bg_x":50,"jet_parallax_layout_bg_x_tablet":"","jet_parallax_layout_bg_x_mobile":"","jet_parallax_layout_bg_y":50,"jet_parallax_layout_bg_y_tablet":"","jet_parallax_layout_bg_y_mobile":"","jet_parallax_layout_bg_size":"auto","jet_parallax_layout_bg_size_tablet":"","jet_parallax_layout_bg_size_mobile":"","jet_parallax_layout_animation_prop":"transform","jet_parallax_layout_on":["desktop","tablet"]}],"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-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="{"submenu_icon":"<svg 0=\"fas fa-chevron-down\" class=\"e-font-icon-svg e-fas-chevron-down\">\r\n\t\t\t\t\t<use xlink:href=\"#fas-chevron-down\">\r\n\t\t\t\t\t\t<symbol id=\"fas-chevron-down\" viewBox=\"0 0 448 512\">\r\n\t\t\t\t\t\t\t<path d=\"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\"><\/path>\r\n\t\t\t\t\t\t<\/symbol>\r\n\t\t\t\t\t<\/use>\r\n\t\t\t\t<\/svg>","full_width":"stretch","mobile_layout":"dropdown","submenu_space_between":{"unit":"px","size":"","sizes":[]},"submenu_opening_position":"bottom"}" 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 & 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>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2146 current_page_item menu-item-18961"><a href="https://wfrtds.org/" aria-current="page" class="raven-menu-item raven-link-item raven-menu-item-active">Research</a></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 & 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>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2146 current_page_item menu-item-18961"><a href="https://wfrtds.org/" aria-current="page" class="raven-menu-item raven-link-item raven-menu-item-active">Research</a></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="{"jet_parallax_layout_list":[{"jet_parallax_layout_image":{"url":"","id":"","size":"","alt":"","source":"library"},"_id":"528f253","jet_parallax_layout_speed":{"unit":"%","size":43,"sizes":[]},"jet_parallax_layout_bg_x":45,"jet_parallax_layout_bg_y":"50","jet_parallax_layout_type":"none","jet_parallax_layout_image_tablet":{"url":"","id":"","size":""},"jet_parallax_layout_image_mobile":{"url":"","id":"","size":""},"jet_parallax_layout_direction":null,"jet_parallax_layout_fx_direction":null,"jet_parallax_layout_z_index":"","jet_parallax_layout_bg_x_tablet":"","jet_parallax_layout_bg_x_mobile":"","jet_parallax_layout_bg_y_tablet":"","jet_parallax_layout_bg_y_mobile":"","jet_parallax_layout_bg_size":"auto","jet_parallax_layout_bg_size_tablet":"","jet_parallax_layout_bg_size_mobile":"","jet_parallax_layout_animation_prop":null,"jet_parallax_layout_on":["desktop","tablet"]}],"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-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="{"navigation":"both","autoplay":"yes","pause_on_hover":"yes","pause_on_interaction":"yes","autoplay_speed":5000,"infinite":"yes","transition":"slide","transition_speed":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 class="elementor-repeater-item-df91a49 swiper-slide"><div class="swiper-slide-bg" role="img"></div><div class="swiper-slide-inner" ><div class="swiper-slide-contents"><div class="elementor-slide-heading">Dementia - A Year to Remember </div><div class="elementor-slide-description">Links to recordings of recordings in the series</div><a href="https://studio.youtube.com/channel/UC0JPT1Pvn6YWfG6aj5ebJdg/videos/upload?filter=%5B%5D&sort=%7B%22columnType%22%3A%22date%22%2C%22sortOrder%22%3A%22DESCENDING%22%7D" class="elementor-button elementor-slide-button elementor-size-sm">Click Here</a></div></div></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="{"jet_parallax_layout_list":[]}">
<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="{"jet_parallax_layout_list":[{"jet_parallax_layout_image":{"url":"","id":"","size":""},"_id":"557be6a","jet_parallax_layout_image_tablet":{"url":"","id":"","size":""},"jet_parallax_layout_image_mobile":{"url":"","id":"","size":""},"jet_parallax_layout_speed":{"unit":"%","size":50,"sizes":[]},"jet_parallax_layout_type":"scroll","jet_parallax_layout_direction":null,"jet_parallax_layout_fx_direction":null,"jet_parallax_layout_z_index":"","jet_parallax_layout_bg_x":50,"jet_parallax_layout_bg_x_tablet":"","jet_parallax_layout_bg_x_mobile":"","jet_parallax_layout_bg_y":50,"jet_parallax_layout_bg_y_tablet":"","jet_parallax_layout_bg_y_mobile":"","jet_parallax_layout_bg_size":"auto","jet_parallax_layout_bg_size_tablet":"","jet_parallax_layout_bg_size_mobile":"","jet_parallax_layout_animation_prop":"transform","jet_parallax_layout_on":["desktop","tablet"]}],"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-08922b7" data-id="08922b7" data-element_type="column" data-settings="{"background_background":"classic"}">
<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="{"cards_columns":"4","cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap":{"unit":"px","size":35,"sizes":[]},"cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" 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-19052 post type-post status-publish format-standard has-post-thumbnail hentry category-publications category-podcasts-and-webinars category-australia category-webinars">
<div class="elementor-post__card">
<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/who-can-apply-for-voluntary-assisted-dying-in-australia-your-questions-answered/" tabindex="-1" ><div class="elementor-post__thumbnail"><img decoding="async" width="300" height="161" src="https://wfrtds.org/wp-content/uploads/2021/01/Go-Gentle-Australia-300x161.png" class="attachment-medium size-medium wp-image-7370" alt="" srcset="https://wfrtds.org/wp-content/uploads/2021/01/Go-Gentle-Australia-300x161.png 300w, https://wfrtds.org/wp-content/uploads/2021/01/Go-Gentle-Australia.png 626w" sizes="(max-width: 300px) 100vw, 300px" /></div></a>
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://wfrtds.org/who-can-apply-for-voluntary-assisted-dying-in-australia-your-questions-answered/" >
Who can apply for voluntary assisted dying in Australia? Your questions answered. </a>
</h3>
<div class="elementor-post__excerpt">
<p>VAD is now available in all six Australian states. However many people are unsure about the application process and what’s involved. Hosted by Go Gentle’s</p>
</div>
</div>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
March 21, 2025 </span>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-19029 post type-post status-publish format-standard has-post-thumbnail hentry category-publications category-belgium category-press-release category-reports">
<div class="elementor-post__card">
<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/euthanasia-publication-of-the-2024-figures-for-euthanasia-in-belgium/" tabindex="-1" ><div class="elementor-post__thumbnail"><img fetchpriority="high" decoding="async" width="300" height="300" src="https://wfrtds.org/wp-content/uploads/2021/05/belgium-1489362_1920-300x300.png" class="attachment-medium size-medium wp-image-10028" alt="" srcset="https://wfrtds.org/wp-content/uploads/2021/05/belgium-1489362_1920-300x300.png 300w, https://wfrtds.org/wp-content/uploads/2021/05/belgium-1489362_1920-1024x1024.png 1024w, https://wfrtds.org/wp-content/uploads/2021/05/belgium-1489362_1920-150x150.png 150w, https://wfrtds.org/wp-content/uploads/2021/05/belgium-1489362_1920-768x768.png 768w, https://wfrtds.org/wp-content/uploads/2021/05/belgium-1489362_1920-1536x1536.png 1536w, https://wfrtds.org/wp-content/uploads/2021/05/belgium-1489362_1920-500x500.png 500w, https://wfrtds.org/wp-content/uploads/2021/05/belgium-1489362_1920.png 1920w" sizes="(max-width: 300px) 100vw, 300px" /></div></a>
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://wfrtds.org/euthanasia-publication-of-the-2024-figures-for-euthanasia-in-belgium/" >
EUTHANASIA – Publication of the 2024 figures for euthanasia in Belgium </a>
</h3>
<div class="elementor-post__excerpt">
<p>The Federal Commission for the Control and Evaluation of Euthanasia has today published the figures for reported euthanasia cases in Belgium in 2024. In 2024,</p>
</div>
</div>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
March 20, 2025 </span>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-19024 post type-post status-publish format-standard has-post-thumbnail hentry category-publications category-delaware category-press-release category-reports category-united-states-of-america">
<div class="elementor-post__card">
<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/delaware-house-passes-end-of-life-option-bill-for-terminally-ill-adults/" tabindex="-1" ><div class="elementor-post__thumbnail"><img decoding="async" width="181" height="181" src="https://wfrtds.org/wp-content/uploads/2025/03/download.jpg" class="attachment-medium size-medium wp-image-19027" alt="" srcset="https://wfrtds.org/wp-content/uploads/2025/03/download.jpg 181w, https://wfrtds.org/wp-content/uploads/2025/03/download-150x150.jpg 150w" sizes="(max-width: 181px) 100vw, 181px" /></div></a>
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://wfrtds.org/delaware-house-passes-end-of-life-option-bill-for-terminally-ill-adults/" >
Delaware House passes end-of-life option bill for terminally ill adults </a>
</h3>
<div class="elementor-post__excerpt">
<p>Report from 6abc News 20th March 2025 https://6abc.com/post/delaware-house-representatives-passes-end-life-option-bill-terminally-ill-adults/16049349 A controversial bill in Delaware on “end-of-life” options is moving forward in the state’s legislature. DOVER, Del.</p>
</div>
</div>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
March 20, 2025 </span>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-19016 post type-post status-publish format-standard has-post-thumbnail hentry category-publications category-press-release category-reports">
<div class="elementor-post__card">
<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/barcelona-court-rejects-fathers-appeal-against-daughters-assisted-dying-request/" tabindex="-1" ><div class="elementor-post__thumbnail"><img loading="lazy" decoding="async" width="300" height="300" src="https://wfrtds.org/wp-content/uploads/2025/03/image-2-300x300.jpg" class="attachment-medium size-medium wp-image-19018" alt="" srcset="https://wfrtds.org/wp-content/uploads/2025/03/image-2-300x300.jpg 300w, https://wfrtds.org/wp-content/uploads/2025/03/image-2-150x150.jpg 150w, https://wfrtds.org/wp-content/uploads/2025/03/image-2.jpg 400w" sizes="(max-width: 300px) 100vw, 300px" /></div></a>
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://wfrtds.org/barcelona-court-rejects-fathers-appeal-against-daughters-assisted-dying-request/" >
Barcelona court rejects father’s appeal against daughter’s assisted dying request </a>
</h3>
<div class="elementor-post__excerpt">
<p>Man says he will appeal and take criminal action against individuals who granted approval for his 24-year-old daughter’s euthanasia (photo) José María Fernández, Christian Lawyers Foundation</p>
</div>
</div>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
March 18, 2025 </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="{"action-type":"link"}" 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="{"jet_parallax_layout_list":[{"jet_parallax_layout_image":{"url":"","id":"","size":""},"_id":"557be6a","jet_parallax_layout_image_tablet":{"url":"","id":"","size":""},"jet_parallax_layout_image_mobile":{"url":"","id":"","size":""},"jet_parallax_layout_speed":{"unit":"%","size":50,"sizes":[]},"jet_parallax_layout_type":"scroll","jet_parallax_layout_direction":null,"jet_parallax_layout_fx_direction":null,"jet_parallax_layout_z_index":"","jet_parallax_layout_bg_x":50,"jet_parallax_layout_bg_x_tablet":"","jet_parallax_layout_bg_x_mobile":"","jet_parallax_layout_bg_y":50,"jet_parallax_layout_bg_y_tablet":"","jet_parallax_layout_bg_y_mobile":"","jet_parallax_layout_bg_size":"auto","jet_parallax_layout_bg_size_tablet":"","jet_parallax_layout_bg_size_mobile":"","jet_parallax_layout_animation_prop":"transform","jet_parallax_layout_on":["desktop","tablet"]}],"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-690f439" data-id="690f439" data-element_type="column" data-settings="{"background_background":"classic"}">
<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="{"cards_columns":"4","cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap":{"unit":"px","size":35,"sizes":[]},"cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" 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-19059 post type-post status-publish format-standard has-post-thumbnail hentry category-publications category-australia category-new-south-wales category-newsletter">
<div class="elementor-post__card">
<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/special-event-prof-felicia-hupperts-vad-journey-webinar-on-wed-9-april-at-5pm/" tabindex="-1" ><div class="elementor-post__thumbnail"><img loading="lazy" decoding="async" width="300" height="80" src="https://wfrtds.org/wp-content/uploads/2025/03/cosmicimg-prod.services.web_.outlook-300x80.png" class="attachment-medium size-medium wp-image-19060" alt="" srcset="https://wfrtds.org/wp-content/uploads/2025/03/cosmicimg-prod.services.web_.outlook-300x80.png 300w, https://wfrtds.org/wp-content/uploads/2025/03/cosmicimg-prod.services.web_.outlook.png 370w" sizes="(max-width: 300px) 100vw, 300px" /></div></a>
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://wfrtds.org/special-event-prof-felicia-hupperts-vad-journey-webinar-on-wed-9-april-at-5pm/" >
Special Event – Prof Felicia Huppert’s VAD Journey Webinar on Wed 9 April at 5pm </a>
</h3>
<div class="elementor-post__excerpt">
<p>We have a very special event for the first of our EOL webinars for 2025. Professor Felicia Huppert was a pioneering psychologist, world renowned for her</p>
</div>
</div>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
March 21, 2025 </span>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-19055 post type-post status-publish format-standard has-post-thumbnail hentry category-publications category-end-of-life-washington-eolwa category-newsletter category-united-states-of-america category-washington">
<div class="elementor-post__card">
<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/end-of-life-washington-publish-hospice-map-tool/" tabindex="-1" ><div class="elementor-post__thumbnail"><img loading="lazy" decoding="async" width="300" height="290" src="https://wfrtds.org/wp-content/uploads/2020/11/eolwa-regular-logo-2-1-300x290.jpg" class="attachment-medium size-medium wp-image-8049" alt="" srcset="https://wfrtds.org/wp-content/uploads/2020/11/eolwa-regular-logo-2-1-300x290.jpg 300w, https://wfrtds.org/wp-content/uploads/2020/11/eolwa-regular-logo-2-1.jpg 466w" sizes="(max-width: 300px) 100vw, 300px" /></div></a>
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://wfrtds.org/end-of-life-washington-publish-hospice-map-tool/" >
End of Life Washington publish Hospice Map tool </a>
</h3>
<div class="elementor-post__excerpt">
<p>We are thrilled to announce that our long-awaited Hospice Map is officially live and ready for you to use! After years of planning and dedicated work, this</p>
</div>
</div>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
March 21, 2025 </span>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-19006 post type-post status-publish format-standard has-post-thumbnail hentry category-publications category-death-with-dignity-national-center category-newsletter category-united-states-of-america">
<div class="elementor-post__card">
<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/death-with-dignity-publish-their-latest-bulletin/" tabindex="-1" ><div class="elementor-post__thumbnail"><img loading="lazy" 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-publish-their-latest-bulletin/" >
Death With Dignity publish their latest bulletin </a>
</h3>
<div class="elementor-post__excerpt">
<p>Brighter Days Ahead for Death with Dignity It has been a dark and turbulent year in politics, but amid the chaos, the Death with Dignity</p>
</div>
</div>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
March 16, 2025 </span>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-18949 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">
<div class="elementor-post__card">
<a class="elementor-post__thumbnail__link" href="https://wfrtds.org/admd-belgium-publish-their-bulletin-170-171/" tabindex="-1" ><div class="elementor-post__thumbnail"><img loading="lazy" decoding="async" width="300" height="83" src="https://wfrtds.org/wp-content/uploads/2021/06/logo_ADMD-300x83.jpg" class="attachment-medium size-medium wp-image-10948" alt="" srcset="https://wfrtds.org/wp-content/uploads/2021/06/logo_ADMD-300x83.jpg 300w, https://wfrtds.org/wp-content/uploads/2021/06/logo_ADMD-1024x282.jpg 1024w, https://wfrtds.org/wp-content/uploads/2021/06/logo_ADMD-768x212.jpg 768w, https://wfrtds.org/wp-content/uploads/2021/06/logo_ADMD-1536x424.jpg 1536w, https://wfrtds.org/wp-content/uploads/2021/06/logo_ADMD-2048x565.jpg 2048w" sizes="(max-width: 300px) 100vw, 300px" /></div></a>
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://wfrtds.org/admd-belgium-publish-their-bulletin-170-171/" >
ADMD Belgium publish their bulletin 170-171 </a>
</h3>
<div class="elementor-post__excerpt">
<p>ADMD Belgium share their latest publication.</p>
</div>
</div>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
March 8, 2025 </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="{"action-type":"link"}" 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="{"jet_parallax_layout_list":[{"jet_parallax_layout_image":{"url":"","id":"","size":""},"_id":"13add73","jet_parallax_layout_image_tablet":{"url":"","id":"","size":""},"jet_parallax_layout_image_mobile":{"url":"","id":"","size":""},"jet_parallax_layout_speed":{"unit":"%","size":50,"sizes":[]},"jet_parallax_layout_type":"scroll","jet_parallax_layout_direction":null,"jet_parallax_layout_fx_direction":null,"jet_parallax_layout_z_index":"","jet_parallax_layout_bg_x":50,"jet_parallax_layout_bg_x_tablet":"","jet_parallax_layout_bg_x_mobile":"","jet_parallax_layout_bg_y":50,"jet_parallax_layout_bg_y_tablet":"","jet_parallax_layout_bg_y_mobile":"","jet_parallax_layout_bg_size":"auto","jet_parallax_layout_bg_size_tablet":"","jet_parallax_layout_bg_size_mobile":"","jet_parallax_layout_animation_prop":"transform","jet_parallax_layout_on":["desktop","tablet"]}],"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-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="{"jet_parallax_layout_list":[{"jet_parallax_layout_image":{"url":"","id":"","size":""},"_id":"1ffbacf","jet_parallax_layout_speed":{"unit":"%","size":"50","sizes":[]},"jet_parallax_layout_bg_x":"50","jet_parallax_layout_bg_y":"50","jet_parallax_layout_image_tablet":{"url":"","id":"","size":""},"jet_parallax_layout_image_mobile":{"url":"","id":"","size":""},"jet_parallax_layout_type":"scroll","jet_parallax_layout_direction":null,"jet_parallax_layout_fx_direction":null,"jet_parallax_layout_z_index":"","jet_parallax_layout_bg_x_tablet":"","jet_parallax_layout_bg_x_mobile":"","jet_parallax_layout_bg_y_tablet":"","jet_parallax_layout_bg_y_mobile":"","jet_parallax_layout_bg_size":"auto","jet_parallax_layout_bg_size_tablet":"","jet_parallax_layout_bg_size_mobile":"","jet_parallax_layout_animation_prop":"transform","jet_parallax_layout_on":["desktop","tablet"]}],"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0cd4e60" data-id="0cd4e60" data-element_type="column" data-settings="{"background_background":"classic"}">
<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="{"jet_parallax_layout_list":[{"jet_parallax_layout_image":{"url":"","id":"","size":""},"_id":"2e98183","jet_parallax_layout_speed":{"unit":"%","size":"50","sizes":[]},"jet_parallax_layout_bg_x":"50","jet_parallax_layout_bg_y":"50","jet_parallax_layout_image_tablet":{"url":"","id":"","size":""},"jet_parallax_layout_image_mobile":{"url":"","id":"","size":""},"jet_parallax_layout_type":"scroll","jet_parallax_layout_direction":null,"jet_parallax_layout_fx_direction":null,"jet_parallax_layout_z_index":"","jet_parallax_layout_bg_x_tablet":"","jet_parallax_layout_bg_x_mobile":"","jet_parallax_layout_bg_y_tablet":"","jet_parallax_layout_bg_y_mobile":"","jet_parallax_layout_bg_size":"auto","jet_parallax_layout_bg_size_tablet":"","jet_parallax_layout_bg_size_mobile":"","jet_parallax_layout_animation_prop":"transform","jet_parallax_layout_on":["desktop","tablet"]}],"background_background":"classic"}">
<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="{"jet_parallax_layout_list":[{"jet_parallax_layout_image":{"url":"","id":"","size":""},"_id":"32fa0c4","jet_parallax_layout_speed":{"unit":"%","size":"50","sizes":[]},"jet_parallax_layout_bg_x":"50","jet_parallax_layout_bg_y":"50","jet_parallax_layout_image_tablet":{"url":"","id":"","size":""},"jet_parallax_layout_image_mobile":{"url":"","id":"","size":""},"jet_parallax_layout_type":"scroll","jet_parallax_layout_direction":null,"jet_parallax_layout_fx_direction":null,"jet_parallax_layout_z_index":"","jet_parallax_layout_bg_x_tablet":"","jet_parallax_layout_bg_x_mobile":"","jet_parallax_layout_bg_y_tablet":"","jet_parallax_layout_bg_y_mobile":"","jet_parallax_layout_bg_size":"auto","jet_parallax_layout_bg_size_tablet":"","jet_parallax_layout_bg_size_mobile":"","jet_parallax_layout_animation_prop":"transform","jet_parallax_layout_on":["desktop","tablet"]}],"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-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="{"fields":[{"type":"email","placeholder":"E-mail address","required":"true","_id":"d0aa693","acceptance_text":null,"rows":null,"width":"","width_mobile":"66","step_previous_button":null,"step_next_button":null,"field_custom_id":"d0aa693","label":"","recaptcha_badge":null,"recaptcha_theme":null,"recaptcha_size":null,"checked_by_default":null,"min_time":null,"max_time":null,"min_date":null,"max_date":null,"localization":null,"min":null,"max":null,"field_options":null,"inline_list":null,"field_html":null,"native_html5":null,"multiple_selection":null,"iti_tel":null,"iti_tel_tel_type":null,"iti_tel_require_area":null,"iti_tel_allow_dropdown":null,"iti_tel_country_include":null,"iti_tel_ip_detect":null,"iti_tel_internationalize":null,"file_sizes":null,"file_types":null,"allow_multiple_upload":null,"max_files":null,"step_icon":null,"field_value":""}],"mailchimp_list":"064d10c6f8","_animation":"none","steps_type":"number","steps_icon_shape":"circle"}" 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" d