<!doctype html>
<html class="no-js" lang="fr-FR" prefix="og: https://ogp.me/ns#">

<head>
  <meta charset="utf-8">
<script>
//----------------------------------------------------------
//------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------
//----------------------------------------------------------

if ( ! gform ) {
	document.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );
	document.addEventListener( 'gform/theme/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );
	window.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );

	var gform = {
		domLoaded: false,
		scriptsLoaded: false,
		themeScriptsLoaded: false,
		isFormEditor: () => typeof InitializeEditor === 'function',

		/**
		 * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.
		 * @remove-in 4.0 this function will not check for gform.isFormEditor().
		 */
		callIfLoaded: function ( fn ) {
			if ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {
				if ( gform.isFormEditor() ) {
					console.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );
				}
				fn();
				return true;
			}
			return false;
		},

		/**
		 * Call a function when all scripts are loaded
		 *
		 * @param function fn the callback function to call when all scripts are loaded
		 *
		 * @returns void
		 */
		initializeOnLoaded: function( fn ) {
			if ( ! gform.callIfLoaded( fn ) ) {
				document.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );
				document.addEventListener( 'gform/theme/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );
				window.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );
			}
		},

		hooks: { action: {}, filter: {} },
		addAction: function( action, callable, priority, tag ) {
			gform.addHook( 'action', action, callable, priority, tag );
		},
		addFilter: function( action, callable, priority, tag ) {
			gform.addHook( 'filter', action, callable, priority, tag );
		},
		doAction: function( action ) {
			gform.doHook( 'action', action, arguments );
		},
		applyFilters: function( action ) {
			return gform.doHook( 'filter', action, arguments );
		},
		removeAction: function( action, tag ) {
			gform.removeHook( 'action', action, tag );
		},
		removeFilter: function( action, priority, tag ) {
			gform.removeHook( 'filter', action, priority, tag );
		},
		addHook: function( hookType, action, callable, priority, tag ) {
			if ( undefined == gform.hooks[hookType][action] ) {
				gform.hooks[hookType][action] = [];
			}
			var hooks = gform.hooks[hookType][action];
			if ( undefined == tag ) {
				tag = action + '_' + hooks.length;
			}
			if( priority == undefined ){
				priority = 10;
			}

			gform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );
		},
		doHook: function( hookType, action, args ) {

			// splice args from object into array and remove first index which is the hook name
			args = Array.prototype.slice.call(args, 1);

			if ( undefined != gform.hooks[hookType][action] ) {
				var hooks = gform.hooks[hookType][action], hook;
				//sort by priority
				hooks.sort(function(a,b){return a["priority"]-b["priority"]});

				hooks.forEach( function( hookItem ) {
					hook = hookItem.callable;

					if(typeof hook != 'function')
						hook = window[hook];
					if ( 'action' == hookType ) {
						hook.apply(null, args);
					} else {
						args[0] = hook.apply(null, args);
					}
				} );
			}
			if ( 'filter'==hookType ) {
				return args[0];
			}
		},
		removeHook: function( hookType, action, priority, tag ) {
			if ( undefined != gform.hooks[hookType][action] ) {
				var hooks = gform.hooks[hookType][action];
				hooks = hooks.filter( function(hook, index, arr) {
					var removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);
					return !removeHook;
				} );
				gform.hooks[hookType][action] = hooks;
			}
		}
	};
}
</script>

  <meta http-equiv="x-ua-compatible" content="ie=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

  <!-- Favicon -->
  
    <link rel="icon" type="image/png" href="https://fsd.ch/wp-content/themes/toolkit/static/images/favicon/favicon-96x96.png" sizes="96x96" />
    <link rel="icon" type="image/svg+xml" href="https://fsd.ch/wp-content/themes/toolkit/static/images/favicon/favicon.svg" />
    <link rel="shortcut icon" href="https://fsd.ch/wp-content/themes/toolkit/static/images/favicon/favicon.ico" />
    <link rel="apple-touch-icon" sizes="180x180" href="https://fsd.ch/wp-content/themes/toolkit/static/images/favicon/apple-touch-icon.png" />
    <link rel="manifest" href="https://fsd.ch/wp-content/themes/toolkit/static/images/favicon/site.webmanifest">
    <meta name="apple-mobile-web-app-title" content="Transparency and Truth" />
    <meta name="theme-color" content="#ffffff">

  <!-- JSON-LD -->
  

    <script type="application/ld+json">
        {"@context":"http:\/\/schema.org","@type":"WebSite","headline":"Accueil","image":[false],"url":"https:\/\/fsd.ch\/fr\/","name":"Fondation suisse de d\u00e9minage","countryOfOrigin":"Switzerland","inLanguage":"\"fr-FR\" prefix=\"og: https:\/\/ogp.me\/ns#\"","author":{"@type":"Person","name":"Fondation suisse de d\u00e9minage"},"publisher":{"@type":"Organization","name":"Fondation suisse de d\u00e9minage","logo":{"@type":"ImageObject","url":"https:\/\/fsd.ch\/wp-content\/themes\/toolkit\/static\/images\/logo.jpg"}},"potentialAction":{"@type":"SearchAction","target":"https:\/\/fsd.ch\/fr\/\/?s={search_term_string}","query-input":"required name=search_term_string"},"datePublished":"2025-07-07T09:55:45+02:00","description":""}    </script>
  <!-- JavaScript -->
  <script nonce="Xap9asgm9YPB4unI+Un94Q==">
  window.baseUrl = "https://fsd.ch/fr/";
  window.appName = "fondation-suisse-de-deminage";
  window.apiUrl = "https://fsd.ch/fr/wp-json/";
  window.themeUrl = "https://fsd.ch/wp-content/themes/toolkit";
  window.mapTranslations = {
    readMore: "En savoir plus"
  };
  </script>

  <link rel="alternate" hreflang="fr" href="https://fsd.ch/fr/" />
<link rel="alternate" hreflang="en" href="https://fsd.ch/en/" />
<link rel="alternate" hreflang="de" href="https://fsd.ch/de/" />
<link rel="alternate" hreflang="x-default" href="https://fsd.ch/fr/" />

            <script data-no-defer="1" data-ezscrex="false" data-cfasync="false" data-pagespeed-no-defer data-cookieconsent="ignore">
                var ctPublicFunctions = {"_ajax_nonce":"cab29e63e4","_rest_nonce":"b22c3c1e0b","_ajax_url":"\/wp-admin\/admin-ajax.php","_rest_url":"https:\/\/fsd.ch\/fr\/wp-json\/","data__cookies_type":"none","data__ajax_type":"rest","bot_detector_enabled":true,"data__frontend_data_log_enabled":1,"cookiePrefix":"","wprocket_detected":false,"host_url":"fsd.ch","text__ee_click_to_select":"Click to select the whole data","text__ee_original_email":"The complete one is","text__ee_got_it":"Got it","text__ee_blocked":"Blocked","text__ee_cannot_connect":"Cannot connect","text__ee_cannot_decode":"Can not decode email. Unknown reason","text__ee_email_decoder":"CleanTalk email decoder","text__ee_wait_for_decoding":"The magic is on the way!","text__ee_decoding_process":"Please wait a few seconds while we decode the contact data."}
            </script>
        
            <script data-no-defer="1" data-ezscrex="false" data-cfasync="false" data-pagespeed-no-defer data-cookieconsent="ignore">
                var ctPublic = {"_ajax_nonce":"cab29e63e4","settings__forms__check_internal":"0","settings__forms__check_external":"0","settings__forms__force_protection":"0","settings__forms__search_test":"1","settings__forms__wc_add_to_cart":"0","bot_detector_enabled":true,"settings__sfw__anti_crawler":0,"blog_home":"https:\/\/fsd.ch\/fr\/\/","pixel__setting":"3","pixel__enabled":true,"pixel__url":null,"data__email_check_before_post":"1","data__email_check_exist_post":"1","data__cookies_type":"none","data__key_is_ok":true,"data__visible_fields_required":true,"wl_brandname":"Anti-Spam by CleanTalk","wl_brandname_short":"CleanTalk","ct_checkjs_key":"8c49409aa8e539a01d5622165423ad5ca3152bb42a1b4329321030637fd062ed","emailEncoderPassKey":"ae634a6a4a89ef73e64aaa6f6a279233","bot_detector_forms_excluded":"W10=","advancedCacheExists":false,"varnishCacheExists":false,"wc_ajax_add_to_cart":false,"theRealPerson":{"phrases":{"trpHeading":"The Real Person Badge!","trpContent1":"Verified as a real person and not a bot. The comment was approved without pre-moderation.","trpContent2":" Anti-Spam by CleanTalk","trpContentLearnMore":"En savoir plus"},"trpContentLink":"https:\/\/cleantalk.org\/help\/the-real-person?utm_id=&amp;utm_term=&amp;utm_source=admin_side&amp;utm_medium=trp_badge&amp;utm_content=trp_badge_link_click&amp;utm_campaign=apbct_links","imgPersonUrl":"https:\/\/fsd.ch\/wp-content\/plugins\/cleantalk-spam-protect\/css\/images\/real_user.svg","imgShieldUrl":"https:\/\/fsd.ch\/wp-content\/plugins\/cleantalk-spam-protect\/css\/images\/shield.svg"}}
            </script>
        
<!-- Optimisation des moteurs de recherche par Rank Math - https://rankmath.com/ -->
<title>FSD - Fondation suisse de déminage</title>
<meta name="description" content="La FSD protège les populations civiles des mines et restes explosifs de guerre dans des régions touchées par les conflits armés et l&#039;instabilité."/>
<meta name="robots" content="index, follow, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/>
<link rel="canonical" href="https://fsd.ch/fr/" />
<meta property="og:locale" content="fr_FR" />
<meta property="og:type" content="website" />
<meta property="og:title" content="FSD - Fondation suisse de déminage" />
<meta property="og:description" content="La FSD protège les populations civiles des mines et restes explosifs de guerre dans des régions touchées par les conflits armés et l&#039;instabilité." />
<meta property="og:url" content="https://fsd.ch/fr/" />
<meta property="og:site_name" content="Fondation suisse de déminage" />
<meta property="og:updated_time" content="2026-06-02T18:30:34+02:00" />
<meta property="article:published_time" content="2025-07-07T09:55:45+02:00" />
<meta property="article:modified_time" content="2026-06-02T18:30:34+02:00" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="FSD - Fondation suisse de déminage" />
<meta name="twitter:description" content="La FSD protège les populations civiles des mines et restes explosifs de guerre dans des régions touchées par les conflits armés et l&#039;instabilité." />
<meta name="twitter:label1" content="Écrit par" />
<meta name="twitter:data1" content="hawaii" />
<meta name="twitter:label2" content="Temps de lecture" />
<meta name="twitter:data2" content="Moins d’une minute" />
<script type="application/ld+json" class="rank-math-schema">{"@context":"https://schema.org","@graph":[{"@type":["Person","Organization"],"@id":"https://fsd.ch/fr/#person/","name":"Fondation suisse de d\u00e9minage"},{"@type":"WebSite","@id":"https://fsd.ch/fr/#website/","url":"https://fsd.ch/fr/","name":"Fondation suisse de d\u00e9minage","publisher":{"@id":"https://fsd.ch/fr/#person/"},"inLanguage":"fr-FR","potentialAction":{"@type":"SearchAction","target":"https://fsd.ch/fr/?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"WebPage","@id":"https://fsd.ch/fr/#webpage","url":"https://fsd.ch/fr/","name":"FSD - Fondation suisse de d\u00e9minage","datePublished":"2025-07-07T09:55:45+02:00","dateModified":"2026-06-02T18:30:34+02:00","about":{"@id":"https://fsd.ch/fr/#person/"},"isPartOf":{"@id":"https://fsd.ch/fr/#website/"},"inLanguage":"fr-FR"},{"@type":"Person","@id":"https://fsd.ch/fr/author/hawaii/","name":"hawaii","url":"https://fsd.ch/fr/author/hawaii/","image":{"@type":"ImageObject","@id":"https://secure.gravatar.com/avatar/91cd4b5de5f561936bc7ee96e620ce6b3f5d18760f8e0fd24746c4f3d0757376?s=96&amp;d=mm&amp;r=g","url":"https://secure.gravatar.com/avatar/91cd4b5de5f561936bc7ee96e620ce6b3f5d18760f8e0fd24746c4f3d0757376?s=96&amp;d=mm&amp;r=g","caption":"hawaii","inLanguage":"fr-FR"},"sameAs":["https://fsd.ch"]},{"@type":"Article","headline":"FSD - Fondation suisse de d\u00e9minage","keywords":"fsd","datePublished":"2025-07-07T09:55:45+02:00","dateModified":"2026-06-02T18:30:34+02:00","author":{"@id":"https://fsd.ch/fr/author/hawaii/","name":"hawaii"},"publisher":{"@id":"https://fsd.ch/fr/#person/"},"description":"La FSD prot\u00e8ge les populations civiles des mines et restes explosifs de guerre dans des r\u00e9gions touch\u00e9es par les conflits arm\u00e9s et l&#039;instabilit\u00e9.","name":"FSD - Fondation suisse de d\u00e9minage","@id":"https://fsd.ch/fr/#richSnippet","isPartOf":{"@id":"https://fsd.ch/fr/#webpage"},"inLanguage":"fr-FR","mainEntityOfPage":{"@id":"https://fsd.ch/fr/#webpage"}}]}</script>
<!-- /Extension Rank Math WordPress SEO -->

<link rel='dns-prefetch' href='//fd.cleantalk.org' />
<link rel='dns-prefetch' href='//www.googletagmanager.com' />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://fsd.ch/fr/wp-json/oembed/1.0/embed?url=https%3A%2F%2Ffsd.ch%2Ffr%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://fsd.ch/fr/wp-json/oembed/1.0/embed?url=https%3A%2F%2Ffsd.ch%2Ffr%2F&#038;format=xml" />
<link rel="stylesheet" href="https://fsd.ch/wp-content/themes/toolkit/public/css/app.CIMnxLSg.css">
<script>window.toolkitConfig = {"ajaxUrl":"https:\/\/fsd.ch\/wp-admin\/admin-ajax.php","nonce":"970d5b4fda","debug":false};</script>
<script type="module" src="https://fsd.ch/wp-content/themes/toolkit/public/js/app.B_InhLPL.js"></script>
<style id="wp-img-auto-sizes-contain-inline-css">
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<style id="wp-block-paragraph-inline-css">
/**
 * SCSS Variables.
 *
 * Please use variables from this sheet to ensure consistency across the UI.
 * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
 * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
 */
/**
 * Colors
 */
/**
 * Fonts & basic variables.
 */
/**
 * Typography
 */
/**
 * Grid System.
 * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
 */
/**
 * Radius scale.
 */
/**
 * Elevation scale.
 */
/**
 * Dimensions.
 */
/**
 * Mobile specific styles
 */
/**
 * Editor styles.
 */
/**
 * Block & Editor UI.
 */
/**
 * Block paddings.
 */
/**
 * React Native specific.
 * These variables do not appear to be used anywhere else.
 */
.is-small-text {
  font-size: 0.875em;
}

.is-regular-text {
  font-size: 1em;
}

.is-large-text {
  font-size: 2.25em;
}

.is-larger-text {
  font-size: 3em;
}

.has-drop-cap:not(:focus)::first-letter {
  float: left;
  font-size: 8.4em;
  line-height: 0.68;
  font-weight: 100;
  margin: 0.05em 0.1em 0 0;
  text-transform: uppercase;
  font-style: normal;
}

body.rtl .has-drop-cap:not(:focus)::first-letter {
  float: initial;
  margin-left: 0.1em;
}

p.has-drop-cap.has-background {
  overflow: hidden;
}

:root :where(p.has-background) {
  padding: 1.25em 2.375em;
}

:where(p.has-text-color:not(.has-link-color)) a {
  color: inherit;
}

p.has-text-align-right[style*="writing-mode:vertical-rl"],
p.has-text-align-left[style*="writing-mode:vertical-lr"] {
  rotate: 180deg;
}
/*# sourceURL=https://fsd.ch/wp-includes/blocks/paragraph/style.css */
</style>
<style id="wp-block-library-inline-css">
/**
 * Colors
 */
/**
 * Typography
 */
/**
 * SCSS Variables.
 *
 * Please use variables from this sheet to ensure consistency across the UI.
 * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
 * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
 */
/**
 * Fonts & basic variables.
 */
/**
 * Typography
 */
/**
 * Grid System.
 * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
 */
/**
 * Radius scale.
 */
/**
 * Elevation scale.
 */
/**
 * Dimensions.
 */
/**
 * Mobile specific styles
 */
/**
 * Editor styles.
 */
/**
 * Block & Editor UI.
 */
/**
 * Block paddings.
 */
/**
 * React Native specific.
 * These variables do not appear to be used anywhere else.
 */
/**
 * Breakpoints & Media Queries
 */
/**
*  Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
 * Long content fade mixin
 *
 * Creates a fading overlay to signify that the content is longer
 * than the space allows.
 */
/**
 * Breakpoint mixins
 */
/**
 * Focus styles.
 */
/**
 * Applies editor left position to the selector passed as argument
 */
/**
 * Styles that are reused verbatim in a few places
 */
/**
 * Allows users to opt-out of animations via OS-level preferences.
 */
/**
 * Reset default styles for JavaScript UI based pages.
 * This is a WP-admin agnostic reset
 */
/**
 * Reset the WP Admin page styles for Gutenberg-like pages.
 */
/**
 * Creates a checkerboard pattern background to indicate transparency.
 * @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
 */
:root {
  --wp-block-synced-color: #7a00df;
  --wp-block-synced-color--rgb: 122, 0, 223;
  --wp-bound-block-color: var(--wp-block-synced-color);
  --wp-editor-canvas-background: #ddd;
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color--rgb: 0, 124, 186;
  --wp-admin-theme-color-darker-10: rgb(0, 107, 160.5);
  --wp-admin-theme-color-darker-10--rgb: 0, 107, 160.5;
  --wp-admin-theme-color-darker-20: #005a87;
  --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
  --wp-admin-border-width-focus: 2px;
}
@media (min-resolution: 192dpi) {
  :root {
    --wp-admin-border-width-focus: 1.5px;
  }
}

/**
 * Element styles.
 */
.wp-element-button {
  cursor: pointer;
}

:root .has-very-light-gray-background-color {
  background-color: #eee;
}
:root .has-very-dark-gray-background-color {
  background-color: #313131;
}
:root .has-very-light-gray-color {
  color: #eee;
}
:root .has-very-dark-gray-color {
  color: #313131;
}
:root {
  /* stylelint-disable @stylistic/function-comma-space-after -- We can not use spacing because of WP multi site kses rule. */
}
:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
  background: linear-gradient(135deg, rgb(0, 208, 132) 0%, rgb(6, 147, 227) 100%);
}
:root .has-purple-crush-gradient-background {
  background: linear-gradient(135deg, rgb(52, 226, 228) 0%, rgb(71, 33, 251) 50%, rgb(171, 29, 254) 100%);
}
:root .has-hazy-dawn-gradient-background {
  background: linear-gradient(135deg, rgb(250, 172, 168) 0%, rgb(218, 208, 236) 100%);
}
:root .has-subdued-olive-gradient-background {
  background: linear-gradient(135deg, rgb(250, 250, 225) 0%, rgb(103, 166, 113) 100%);
}
:root .has-atomic-cream-gradient-background {
  background: linear-gradient(135deg, rgb(253, 215, 154) 0%, rgb(0, 74, 89) 100%);
}
:root .has-nightshade-gradient-background {
  background: linear-gradient(135deg, rgb(51, 9, 104) 0%, rgb(49, 205, 207) 100%);
}
:root .has-midnight-gradient-background {
  background: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
}
:root {
  /* stylelint-enable @stylistic/function-comma-space-after */
  --wp--preset--font-size--normal: 16px;
  --wp--preset--font-size--huge: 42px;
}

.has-regular-font-size {
  font-size: 1em;
}

.has-larger-font-size {
  font-size: 2.625em;
}

.has-normal-font-size {
  font-size: var(--wp--preset--font-size--normal);
}

.has-huge-font-size {
  font-size: var(--wp--preset--font-size--huge);
}

:root .has-text-align-center {
  text-align: center;
}

:root .has-text-align-left {
  /*rtl:ignore*/
  text-align: left;
}

:root .has-text-align-right {
  /*rtl:ignore*/
  text-align: right;
}

.has-fit-text {
  white-space: nowrap !important;
}

#end-resizable-editor-section {
  display: none;
}

.aligncenter {
  clear: both;
}

.items-justified-left {
  justify-content: flex-start;
}

.items-justified-center {
  justify-content: center;
}

.items-justified-right {
  justify-content: flex-end;
}

.items-justified-space-between {
  justify-content: space-between;
}

.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #ddd;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/**
 * The following provide a simple means of applying a default border style when
 * a user first makes a selection in the border block support panel.
 * This prevents issues such as where the user could set a border width
 * and see no border due there being no border style set.
 *
 * This is intended to be removed once intelligent defaults can be set while
 * making border selections via the block support.
 *
 * See: https://github.com/WordPress/gutenberg/pull/33743
 */
html :where(.has-border-color) {
  border-style: solid;
}

html :where([style*=border-color]) {
  border-style: solid;
}

html :where([style*=border-top-color]) {
  border-top-style: solid;
}

html :where([style*=border-right-color]) {
  /*rtl:ignore*/
  border-right-style: solid;
}

html :where([style*=border-bottom-color]) {
  border-bottom-style: solid;
}

html :where([style*=border-left-color]) {
  /*rtl:ignore*/
  border-left-style: solid;
}

html :where([style*=border-width]) {
  border-style: solid;
}

html :where([style*=border-top-width]) {
  border-top-style: solid;
}

html :where([style*=border-right-width]) {
  /*rtl:ignore*/
  border-right-style: solid;
}

html :where([style*=border-bottom-width]) {
  border-bottom-style: solid;
}

html :where([style*=border-left-width]) {
  /*rtl:ignore*/
  border-left-style: solid;
}

/**
 * Provide baseline responsiveness for images.
 */
html :where(img[class*=wp-image-]) {
  height: auto;
  max-width: 100%;
}

/**
 * Reset user agent styles for figure element margins.
 */
:where(figure) {
  margin: 0 0 1em 0;
}

html :where(.is-position-sticky) {
  /* stylelint-disable length-zero-no-unit -- 0px is set explicitly so that it can be used in a calc value. */
  --wp-admin--admin-bar--position-offset: var(--wp-admin--admin-bar--height, 0px);
  /* stylelint-enable length-zero-no-unit */
}

@media screen and (max-width: 600px) {
  html :where(.is-position-sticky) {
    /* stylelint-disable length-zero-no-unit -- 0px is set explicitly so that it can be used in a calc value. */
    --wp-admin--admin-bar--position-offset: 0px;
    /* stylelint-enable length-zero-no-unit */
  }
}

/*# sourceURL=/wp-includes/css/dist/block-library/common.css */
</style>
<style id="classic-theme-styles-inline-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;
}

/*# sourceURL=/wp-includes/css/classic-themes.css */
</style>

<style id="global-styles-inline-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,rgb(6,147,227) 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,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 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 rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }: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;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.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;}
/*# sourceURL=global-styles-inline-css */
</style>

<link rel='stylesheet' id='cleantalk-public-css-css' href='https://fsd.ch/wp-content/plugins/cleantalk-spam-protect/css/cleantalk-public.min.css?6.80_1780300018' media='all' />
<link rel='stylesheet' id='cleantalk-email-decoder-css-css' href='https://fsd.ch/wp-content/plugins/cleantalk-spam-protect/css/cleantalk-email-decoder.min.css?6.80_1780300018' media='all' />
<link rel='stylesheet' id='cleantalk-trp-css-css' href='https://fsd.ch/wp-content/plugins/cleantalk-spam-protect/css/cleantalk-trp.min.css?6.80_1780300018' media='all' />
<style id="local-fonts-1-inline-css">
@font-face {
    font-family: "bierstadt";
    src:
        url("https://fsd.ch/wp-content/themes/toolkit/static/assets/fonts/bierstadt-regular.ttf") format("ttf"),
        url("https://fsd.ch/wp-content/themes/toolkit/static/assets/fonts/bierstadt-regular.woff") format("woff"),
        url("https://fsd.ch/wp-content/themes/toolkit/static/assets/fonts/bierstadt-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "bierstadt";
    src:
        url("https://fsd.ch/wp-content/themes/toolkit/static/assets/fonts/bierstadt-italic.ttf") format("ttf"),
        url("https://fsd.ch/wp-content/themes/toolkit/static/assets/fonts/bierstadt-italic.woff") format("woff"),
        url("https://fsd.ch/wp-content/themes/toolkit/static/assets/fonts/bierstadt-italic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "bierstadt";
    src:
        url("https://fsd.ch/wp-content/themes/toolkit/static/assets/fonts/bierstadt-bold.ttf") format("ttf"),
        url("https://fsd.ch/wp-content/themes/toolkit/static/assets/fonts/bierstadt-bold.woff") format("woff"),
        url("https://fsd.ch/wp-content/themes/toolkit/static/assets/fonts/bierstadt-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}


/*# sourceURL=local-fonts-1-inline-css */
</style>
<script id="wpml-cookie-js-extra">
var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"/"}};
var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"/"}};
//# sourceURL=wpml-cookie-js-extra
</script>
<script data-wp-strategy="defer" defer id="wpml-cookie-js" src="https://fsd.ch/wp-content/plugins/sitepress-multilingual-cms/res/js/cookies/language-cookie.js?494000"></script>
<script id="apbct-public-bundle.min-js-js" src="https://fsd.ch/wp-content/plugins/cleantalk-spam-protect/js/apbct-public-bundle.min.js?6.80_1780300018"></script>
<script async data-wp-strategy="async" id="ct_bot_detector-js" src="https://fd.cleantalk.org/ct-bot-detector-wrapper.js?6.80"></script>
<link rel="https://api.w.org/" href="https://fsd.ch/fr/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://fsd.ch/fr/wp-json/wp/v2/pages/178" /><meta name="generator" content="WPML ver:4.9.4 stt:1,4,3;" />
<meta name="generator" content="Site Kit by Google 1.180.0" /><!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5XW3M28');</script>
<!-- End Google Tag Manager --> <style id="wp-custom-css">
body.postid-9824 .title-container,
body.page-id-9824 .title-container {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}
</style>
<style id="core-block-supports-inline-css">
/**
 * Core styles: block-supports
 */

/*# sourceURL=core-block-supports-inline-css */
</style>

</head>

<body data-rsssl=1 class="home wp-singular page-template-default page page-id-178 wp-theme-toolkit">

    <header class="header header--horizontal header--home" id="header">
        <div class="inner border-radius--20">
            <div id="logo">
                <a href="https://fsd.ch/fr/">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 312 85.45">
    <g id="logo_fsd">
        <path fill="#007bd3" d="M42.67 34.32c.2-.03.41-.08.6-.16.27-.12.51-.29.71-.5L64.2 13.45c.23-.23.4-.5.51-.8.11-.3.15-.63.11-.95-.03-.32-.14-.63-.31-.9-.17-.27-.4-.5-.67-.67-.81-.5-1.68-1.01-2.52-1.49-.44-.21-.79-.56-1-1-.21-.44-.27-.93-.17-1.41l.48-1.74c.14-.51.09-1.06-.16-1.53-.24-.47-.65-.83-1.15-1.01-2.19-.79-4.42-1.42-6.69-1.9-.53-.1-1.07 0-1.53.29-.45.29-.78.74-.92 1.26l-.4 1.5c-.13.5-.44.94-.86 1.23-.43.29-.94.41-1.45.35-1.59-.21-3.19-.33-4.79-.36-1.6.03-3.2.15-4.79.36-.51.07-1.03-.06-1.45-.35-.43-.29-.73-.73-.86-1.23l-.4-1.5c-.14-.52-.46-.97-.92-1.26-.45-.29-1-.39-1.53-.29-2.27.48-4.51 1.11-6.69 1.9-.5.18-.91.54-1.15 1.01-.24.47-.3 1.02-.16 1.53l.48 1.74c.1.48.04.97-.17 1.41-.21.44-.57.79-1 1-.84.48-1.71.98-2.52 1.49-.27.17-.5.4-.67.67-.17.27-.28.58-.31.9-.03.32 0 .64.11.95.11.3.28.58.51.8l20.22 20.21c.2.21.44.39.71.5.19.08.39.14.6.16Z"/>
        <path fill="#05c293" d="M42.78 51.13c-.2.03-.41.08-.6.16-.27.12-.51.29-.71.5L21.25 72c-.23.23-.4.5-.51.8s-.15.63-.11.95c.03.32.14.63.31.9.17.27.4.5.67.68.81.5 1.68 1.01 2.52 1.49.44.21.79.56 1 1 .21.44.27.93.17 1.41l-.48 1.74c-.14.51-.09 1.06.16 1.53.24.47.65.83 1.15 1.01 2.19.79 4.42 1.42 6.69 1.9.53.1 1.07 0 1.53-.29.45-.29.78-.74.92-1.26l.4-1.5c.13-.5.44-.94.86-1.23s.94-.41 1.45-.35c1.59.21 3.19.33 4.79.36 1.6-.03 3.2-.15 4.79-.36.51-.07 1.03.06 1.45.35s.73.73.86 1.23l.4 1.5c.14.52.46.97.92 1.26.45.29 1 .39 1.53.29 2.27-.48 4.51-1.11 6.69-1.9.5-.18.91-.54 1.15-1.01.24-.47.3-1.02.16-1.53l-.48-1.74c-.1-.48-.04-.97.17-1.41.21-.44.57-.79 1-1 .84-.48 1.71-.98 2.52-1.49.27-.17.5-.4.67-.68.17-.27.28-.58.31-.9.03-.32 0-.64-.11-.95s-.28-.58-.51-.8L44.07 51.79c-.2-.21-.44-.39-.71-.5-.19-.08-.39-.14-.6-.16Z"/>
        <path fill="#06d6d6" d="M51.13 42.67c.03.2.08.41.16.6.12.27.29.51.5.71L72 64.2c.23.23.5.4.8.51.3.11.63.15.95.11.32-.03.63-.14.9-.31.27-.17.5-.4.68-.67.5-.81 1.01-1.68 1.49-2.52.21-.44.56-.79 1-1 .44-.21.93-.27 1.41-.17l1.74.48c.51.14 1.06.09 1.53-.16.47-.24.83-.65 1.01-1.15.79-2.19 1.42-4.42 1.9-6.69.1-.53 0-1.07-.29-1.53-.29-.45-.74-.78-1.26-.92l-1.5-.4c-.5-.13-.94-.44-1.23-.86-.29-.43-.41-.94-.35-1.45.21-1.59.33-3.19.36-4.79-.03-1.6-.15-3.2-.36-4.79-.07-.51.06-1.03.35-1.45.29-.43.73-.73 1.23-.86l1.5-.4c.52-.14.97-.46 1.26-.92.29-.45.39-1 .29-1.53-.48-2.27-1.11-4.51-1.9-6.69-.18-.5-.54-.91-1.01-1.15-.47-.24-1.02-.3-1.53-.16l-1.74.48c-.48.1-.97.04-1.41-.17-.44-.21-.79-.57-1-1-.48-.84-.98-1.71-1.49-2.52-.17-.27-.4-.5-.68-.67-.27-.17-.58-.28-.9-.31-.32-.03-.64 0-.95.11-.3.11-.58.28-.8.51L51.79 41.38c-.21.2-.39.44-.5.71-.08.19-.14.39-.16.6Z"/>
        <path fill="#0fbaff" d="M34.32 42.78c-.03-.2-.08-.41-.16-.6-.12-.27-.29-.51-.5-.71L13.44 21.25c-.23-.23-.5-.4-.8-.51-.3-.11-.63-.15-.95-.11-.32.03-.63.14-.9.31-.27.17-.5.4-.68.67-.5.81-1.01 1.68-1.49 2.52-.21.44-.56.79-1 1-.44.21-.93.27-1.41.17l-1.74-.48c-.51-.14-1.06-.09-1.53.16-.47.24-.83.65-1.01 1.15-.79 2.19-1.42 4.42-1.9 6.69-.1.53 0 1.07.29 1.53.29.45.74.78 1.26.92l1.5.4c.5.13.94.44 1.23.86.29.43.41.94.35 1.45-.21 1.59-.33 3.19-.36 4.79.03 1.6.15 3.2.36 4.79.07.51-.06 1.03-.35 1.45-.29.43-.73.73-1.23.86l-1.5.4c-.52.14-.97.46-1.26.92-.29.45-.39 1-.29 1.53.48 2.27 1.11 4.51 1.9 6.69.18.5.54.91 1.01 1.15.47.24 1.02.3 1.53.16l1.74-.48c.48-.1.97-.04 1.41.17.44.21.79.57 1 1 .48.84.98 1.71 1.49 2.52.17.27.4.5.68.67.27.17.58.28.9.31.32.03.64 0 .95-.11.3-.11.58-.28.8-.51l20.21-20.22c.21-.2.39-.44.5-.71.08-.19.14-.39.16-.6Z"/>
    </g>
    <g id="fsd">
        <path d="M120 5.11h49.38v13.44H136.1v17.4h29.87v12.88H136.1v32.31h-16.11V5.11Zm86.4 77.04c-5.93 0-11.19-.85-15.77-2.54-4.55-1.69-8.15-4.35-10.79-7.96-2.61-3.61-3.88-8.21-3.8-13.78h16.44c.15 4.07 1.45 6.98 3.91 8.75 2.46 1.73 5.89 2.6 10.29 2.6 4.06 0 7.29-.72 9.68-2.15 2.42-1.47 3.63-3.63 3.63-6.5 0-2-.49-3.65-1.45-4.97-.97-1.32-2.65-2.5-5.03-3.56-2.35-1.05-5.82-2.24-10.4-3.56-5.74-1.62-10.4-3.33-13.98-5.14-3.58-1.81-6.38-4.14-8.39-7-1.98-2.9-2.96-6.57-2.96-11.01 0-7.12 2.5-12.43 7.49-15.93 5.03-3.5 11.82-5.25 20.36-5.25 5.37 0 10.2.81 14.49 2.43 4.29 1.62 7.68 4.09 10.18 7.4 2.54 3.28 3.8 7.32 3.8 12.14h-16.44c.15-3.01-.95-5.33-3.3-6.95-2.31-1.62-5.24-2.43-8.78-2.43s-6.19.64-8.28 1.92c-2.09 1.24-3.13 3.09-3.13 5.54 0 1.54.47 2.88 1.4 4.01.97 1.09 2.68 2.18 5.15 3.28 2.5 1.09 6.15 2.33 10.96 3.73 6.15 1.81 10.94 3.65 14.37 5.54 3.47 1.88 6.06 4.29 7.77 7.23 1.72 2.94 2.57 6.8 2.57 11.58 0 7.64-2.72 13.33-8.17 17.06-5.44 3.69-12.71 5.54-21.81 5.54Zm67.12-77.04c8.05 0 14.95 1.51 20.69 4.52 5.78 2.97 10.18 7.3 13.2 12.99 3.06 5.65 4.59 12.41 4.59 20.28s-1.55 15.06-4.64 20.78c-3.06 5.72-7.48 10.07-13.26 13.05-5.74 2.94-12.6 4.41-20.58 4.41h-28.24V5.11h28.24Zm-1.62 62.46c7.9 0 13.8-2.03 17.67-6.1s5.82-10.28 5.82-18.64c0-7.87-2.05-13.88-6.15-18.02-4.1-4.14-9.88-6.21-17.34-6.21h-10.51v48.97h10.51Z" style="fill:#fff"/>
    </g>
</svg>
                </a>
            </div>

            <div class="menu--wrapper">
                <div class="grid--menu">
                    <nav  id="menu-langues">
                        <ul  class="lang_menu menu">
                                                                <li class="current_lang active lg">
                                        <a href="https://fsd.ch/fr/">fr</a>
                                    </li>
                                                                                            <li class="lg">
                                    <a href="https://fsd.ch/en/">en </a>
                                </li>
                                                            <li class="lg">
                                    <a href="https://fsd.ch/de/">de </a>
                                </li>
                                                    </ul>
                    </nav>
                    <nav class="main-nav"><ul id="menu-menu-principal" class="menu"><li id="menu-item-150" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-150 menu-item--depth-0"><a href="https://fsd.ch/fr/a-propos/">À propos</a>
	<ul class="sub-menu sub-menu--auto-generated sub-menu--level-1">
	<li class="menu-item menu-item-auto menu-item-type-page menu-item-62 menu-item--depth-1"><a href="https://fsd.ch/fr/a-propos/equipe/" title="Notre équipe">Notre équipe</a></li>
	<li class="menu-item menu-item-auto menu-item-type-page menu-item-60 menu-item--depth-1"><a href="https://fsd.ch/fr/a-propos/histoire/" title="Notre histoire">Notre histoire</a></li>
	<li class="menu-item menu-item-auto menu-item-type-page menu-item-64 menu-item--depth-1"><a href="https://fsd.ch/fr/a-propos/finances/" title="Finances">Finances</a></li>
	<li class="menu-item menu-item-auto menu-item-type-page menu-item-68 menu-item--depth-1"><a href="https://fsd.ch/fr/a-propos/rapports-annuels/" title="Rapports annuels">Rapports annuels</a></li>
	<li class="menu-item menu-item-auto menu-item-type-page menu-item-82 menu-item--depth-1"><a href="https://fsd.ch/fr/a-propos/emplois/" title="Offres d’emploi">Offres d’emploi</a></li>
	</ul>
</li>
<li id="menu-item-1848" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1848 menu-item--depth-0"><a href="https://fsd.ch/fr/notre-expertise/">Notre action</a></li>
<li id="menu-item-154" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-154 menu-item--depth-0"><a href="https://fsd.ch/fr/operations/">Où nous travaillons</a></li>
<li id="menu-item-151" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-151 menu-item--depth-0"><a href="https://fsd.ch/fr/agir/">Agir</a>
	<ul class="sub-menu sub-menu--auto-generated sub-menu--level-1">
	<li class="menu-item menu-item-auto menu-item-type-page menu-item-1616 menu-item--depth-1"><a href="https://fsd.ch/fr/agir/donateurs-prives/" title="Donateurs privés">Donateurs privés</a></li>
	<li class="menu-item menu-item-auto menu-item-type-page menu-item-1614 menu-item--depth-1"><a href="https://fsd.ch/fr/agir/entreprises/" title="Entreprises">Entreprises</a></li>
	<li class="menu-item menu-item-auto menu-item-type-page menu-item-280 menu-item--depth-1"><a href="https://fsd.ch/fr/agir/cantons-communes/" title="Cantons &amp; communes">Cantons &amp; communes</a></li>
	<li class="menu-item menu-item-auto menu-item-type-page menu-item-1612 menu-item--depth-1"><a href="https://fsd.ch/fr/agir/fondations-et-trusts/" title="Fondations &amp; trusts">Fondations &amp; trusts</a></li>
	<li class="menu-item menu-item-auto menu-item-type-page menu-item-396 menu-item--depth-1"><a href="https://fsd.ch/fr/agir/legs-testaments/" title="Legs &amp; héritages">Legs &amp; héritages</a></li>
	<li class="menu-item menu-item-auto menu-item-type-page menu-item-2956 menu-item--depth-1"><a href="https://fsd.ch/fr/agir/aider-autrement/" title="Aider autrement">Aider autrement</a></li>
	</ul>
</li>
<li id="menu-item-153" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-153 menu-item--depth-0"><a href="https://fsd.ch/fr/actualites/">Actualités</a></li>
</ul></nav>                                            <a href="https://fsd.ch/dons/" class="btn--primary">Faire un don<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <!-- <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/> -->
  <path fill="#FCFCFC" fill-rule="evenodd" d="M19.2306 9.30689c-1.7399-2.08715-5.2012-1.55992-6.2309.76941-1.0292-2.32932-4.49095-2.85666-6.2309-.76941-.63906.73891-.89763 1.70201-.70794 2.63461.1959 1.0299.86545 2.012 1.71177 2.7772.59673.5173 1.22448 1.0025 1.8805 1.4541 1.08787.7789 2.23787 1.603 3.19587 2.7588.0367.0437.0926.0689.1519.0684.0598-.0005.1152-.0263.1507-.0705.9586-1.1536 2.1074-1.9778 3.1947-2.7561.656-.451 1.2838-.9368 1.8805-1.4547.8463-.7647 1.5159-1.7467 1.7124-2.7772.1897-.933-.0695-1.8956-.7086-2.63461Z" clip-rule="evenodd"/>
</svg>
</a>
                                    </div>
            </div>

            <div class="hamburger">
                <span></span>
                <span></span>
                <span></span>
            </div>
            
    <div id="submenu-wrapper" class="submenu--wrapper">
                                <nav id="menu-parent-item-150"  class="page__nav subnav menu-parent-item-150 page-parent-item-58" data-parent-id="150">
                <div class="subnav__wrapper">
                    <ul class="subnav__list">
                                                    <li class="subnav__item">
                                <a href="https://fsd.ch/fr/a-propos/equipe/">Notre équipe</a>
                            </li>
                                                    <li class="subnav__item">
                                <a href="https://fsd.ch/fr/a-propos/histoire/">Notre histoire</a>
                            </li>
                                                    <li class="subnav__item">
                                <a href="https://fsd.ch/fr/a-propos/finances/">Finances</a>
                            </li>
                                                    <li class="subnav__item">
                                <a href="https://fsd.ch/fr/a-propos/rapports-annuels/">Rapports annuels</a>
                            </li>
                                                    <li class="subnav__item">
                                <a href="https://fsd.ch/fr/a-propos/emplois/">Offres d’emploi</a>
                            </li>
                                            </ul>
                </div>
            </nav>
                                                                                <nav id="menu-parent-item-151"  class="page__nav subnav menu-parent-item-151 page-parent-item-78" data-parent-id="151">
                <div class="subnav__wrapper">
                    <ul class="subnav__list">
                                                    <li class="subnav__item">
                                <a href="https://fsd.ch/fr/agir/donateurs-prives/">Donateurs privés</a>
                            </li>
                                                    <li class="subnav__item">
                                <a href="https://fsd.ch/fr/agir/entreprises/">Entreprises</a>
                            </li>
                                                    <li class="subnav__item">
                                <a href="https://fsd.ch/fr/agir/cantons-communes/">Cantons &amp; communes</a>
                            </li>
                                                    <li class="subnav__item">
                                <a href="https://fsd.ch/fr/agir/fondations-et-trusts/">Fondations &amp; trusts</a>
                            </li>
                                                    <li class="subnav__item">
                                <a href="https://fsd.ch/fr/agir/legs-testaments/">Legs &amp; héritages</a>
                            </li>
                                                    <li class="subnav__item">
                                <a href="https://fsd.ch/fr/agir/aider-autrement/">Aider autrement</a>
                            </li>
                                            </ul>
                </div>
            </nav>
                                    </div>

        </div>
    </header>




  <main class="main">


    <section class="page-content">
        <div class="home-slides">
            <div class="swiper-wrapper">
                                    <div class="swiper-slide">
                                                                                    <picture>
                                    <source media="(min-width: 1920px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8293/Deminer-clearing-a-field-with-a-metal-detector-Ukraine-2021-scaled-1920x99999.webp 1920w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8293/Deminer-clearing-a-field-with-a-metal-detector-Ukraine-2021-scaled-3840x99999.webp 3840w"
                                            sizes="100vw">
                                    <source media="(min-width: 1281px) and (max-width: 1919px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8293/Deminer-clearing-a-field-with-a-metal-detector-Ukraine-2021-scaled-1280x99999.webp 1280w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8293/Deminer-clearing-a-field-with-a-metal-detector-Ukraine-2021-scaled-2560x99999.webp 2560w"
                                            sizes="100vw">
                                    <source media="(min-width: 861px) and (max-width: 1280px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8293/Deminer-clearing-a-field-with-a-metal-detector-Ukraine-2021-scaled-1280x99999.webp 1280w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8293/Deminer-clearing-a-field-with-a-metal-detector-Ukraine-2021-scaled-2560x99999.webp 2560w"
                                            sizes="100vw">
                                    <source media="(min-width: 401px) and (max-width: 860px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8293/Deminer-clearing-a-field-with-a-metal-detector-Ukraine-2021-scaled-860x99999.webp 860w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8293/Deminer-clearing-a-field-with-a-metal-detector-Ukraine-2021-scaled-1720x99999.webp 1720w"
                                            sizes="100vw">
                                    <source media="(max-width: 400px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8293/Deminer-clearing-a-field-with-a-metal-detector-Ukraine-2021-scaled-400x99999.webp 400w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8293/Deminer-clearing-a-field-with-a-metal-detector-Ukraine-2021-scaled-800x99999.webp 800w"
                                            sizes="100vw">
                                    <img src="https://fsd.ch/wp-content/uploads/fly-images/8293/Deminer-clearing-a-field-with-a-metal-detector-Ukraine-2021-scaled-1920x99999.webp"
                                        alt=""
                                        loading="lazy"
                                        decoding="async">
                                </picture>
                            <!-- backdrop-filter: blur(10px); -->
                            <div class="card-wrapper">
                                                                    <div class="card">
                                                                                <h1 class="slide-title">Protéger les civils des restes explosifs de guerre</h1>
                                        <div class="slide-description"><p>Depuis près de 30 ans, la FSD débarrasse les terres des mines et des restes d’engins explosifs laissés par les guerres, pour que les familles puissent rentrer chez elles et reconstruire leur vie en sécurité.</p>
</div>
                                        <a class="btn--primary" href="https://fsd.ch/a-propos/">
                                            En savoir plus                                            <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <!-- <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/> -->
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
                                        </a>
                                    </div>
                                                            </div>
                                            </div>
                                    <div class="swiper-slide">
                                                                                    <picture>
                                    <source media="(min-width: 1920px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8298/Community-development-for-women-through-shea-nut-course-CAR-2023-scaled-1920x99999.webp 1920w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8298/Community-development-for-women-through-shea-nut-course-CAR-2023-scaled-3840x99999.webp 3840w"
                                            sizes="100vw">
                                    <source media="(min-width: 1281px) and (max-width: 1919px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8298/Community-development-for-women-through-shea-nut-course-CAR-2023-scaled-1280x99999.webp 1280w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8298/Community-development-for-women-through-shea-nut-course-CAR-2023-scaled-2560x99999.webp 2560w"
                                            sizes="100vw">
                                    <source media="(min-width: 861px) and (max-width: 1280px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8298/Community-development-for-women-through-shea-nut-course-CAR-2023-scaled-1280x99999.webp 1280w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8298/Community-development-for-women-through-shea-nut-course-CAR-2023-scaled-2560x99999.webp 2560w"
                                            sizes="100vw">
                                    <source media="(min-width: 401px) and (max-width: 860px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8298/Community-development-for-women-through-shea-nut-course-CAR-2023-scaled-860x99999.webp 860w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8298/Community-development-for-women-through-shea-nut-course-CAR-2023-scaled-1720x99999.webp 1720w"
                                            sizes="100vw">
                                    <source media="(max-width: 400px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8298/Community-development-for-women-through-shea-nut-course-CAR-2023-scaled-400x99999.webp 400w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8298/Community-development-for-women-through-shea-nut-course-CAR-2023-scaled-800x99999.webp 800w"
                                            sizes="100vw">
                                    <img src="https://fsd.ch/wp-content/uploads/fly-images/8298/Community-development-for-women-through-shea-nut-course-CAR-2023-scaled-1920x99999.webp"
                                        alt=""
                                        loading="lazy"
                                        decoding="async">
                                </picture>
                            <!-- backdrop-filter: blur(10px); -->
                            <div class="card-wrapper">
                                                                    <div class="card">
                                                                                <h2 class="slide-title">Sécuriser, reconstruire et cultiver une paix durable</h2>
                                        <div class="slide-description"><p>Au-delà du déminage, la FSD accompagne les communautés touchées pour réhabiliter les terres, les infrastructures et les moyens de subsistance, posant les fondations d&rsquo;un avenir stable et serein.</p>
</div>
                                        <a class="btn--primary" href="https://fsd.ch/notre-expertise/">
                                            Nos activités                                            <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <!-- <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/> -->
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
                                        </a>
                                    </div>
                                                            </div>
                                            </div>
                                    <div class="swiper-slide">
                                                                                    <picture>
                                    <source media="(min-width: 1920px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8307/MV-10-machine-in-Kharkiv-Ukraine-2023-scaled-1920x99999.webp 1920w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8307/MV-10-machine-in-Kharkiv-Ukraine-2023-scaled-3840x99999.webp 3840w"
                                            sizes="100vw">
                                    <source media="(min-width: 1281px) and (max-width: 1919px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8307/MV-10-machine-in-Kharkiv-Ukraine-2023-scaled-1280x99999.webp 1280w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8307/MV-10-machine-in-Kharkiv-Ukraine-2023-scaled-2560x99999.webp 2560w"
                                            sizes="100vw">
                                    <source media="(min-width: 861px) and (max-width: 1280px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8307/MV-10-machine-in-Kharkiv-Ukraine-2023-scaled-1280x99999.webp 1280w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8307/MV-10-machine-in-Kharkiv-Ukraine-2023-scaled-2560x99999.webp 2560w"
                                            sizes="100vw">
                                    <source media="(min-width: 401px) and (max-width: 860px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8307/MV-10-machine-in-Kharkiv-Ukraine-2023-scaled-860x99999.webp 860w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8307/MV-10-machine-in-Kharkiv-Ukraine-2023-scaled-1720x99999.webp 1720w"
                                            sizes="100vw">
                                    <source media="(max-width: 400px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8307/MV-10-machine-in-Kharkiv-Ukraine-2023-scaled-400x99999.webp 400w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8307/MV-10-machine-in-Kharkiv-Ukraine-2023-scaled-800x99999.webp 800w"
                                            sizes="100vw">
                                    <img src="https://fsd.ch/wp-content/uploads/fly-images/8307/MV-10-machine-in-Kharkiv-Ukraine-2023-scaled-1920x99999.webp"
                                        alt=""
                                        loading="lazy"
                                        decoding="async">
                                </picture>
                            <!-- backdrop-filter: blur(10px); -->
                            <div class="card-wrapper">
                                                                    <div class="card">
                                                                                <h2 class="slide-title">Près d'un pays sur trois abrite des restes explosifs de guerre</h2>
                                        <div class="slide-description"><p data-pm-slice="1 1 []">De l&rsquo;Ukraine à la Colombie, la FSD intervient sur quatre continents dans des zones affectées par des conflits armés pour aider les populations à retrouver sécurité, stabilité et espoir.</p>
</div>
                                        <a class="btn--primary" href="https://fsd.ch/operations/">
                                            Découvrez nos opérations                                            <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <!-- <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/> -->
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
                                        </a>
                                    </div>
                                                            </div>
                                            </div>
                                    <div class="swiper-slide">
                                                                                    <picture>
                                    <source media="(min-width: 1920px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8313/UCHP-EORE-session-in-the-International-French-School-in-Kyiv-Ukraine-2025-scaled-1920x99999.webp 1920w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8313/UCHP-EORE-session-in-the-International-French-School-in-Kyiv-Ukraine-2025-scaled-3840x99999.webp 3840w"
                                            sizes="100vw">
                                    <source media="(min-width: 1281px) and (max-width: 1919px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8313/UCHP-EORE-session-in-the-International-French-School-in-Kyiv-Ukraine-2025-scaled-1280x99999.webp 1280w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8313/UCHP-EORE-session-in-the-International-French-School-in-Kyiv-Ukraine-2025-scaled-2560x99999.webp 2560w"
                                            sizes="100vw">
                                    <source media="(min-width: 861px) and (max-width: 1280px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8313/UCHP-EORE-session-in-the-International-French-School-in-Kyiv-Ukraine-2025-scaled-1280x99999.webp 1280w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8313/UCHP-EORE-session-in-the-International-French-School-in-Kyiv-Ukraine-2025-scaled-2560x99999.webp 2560w"
                                            sizes="100vw">
                                    <source media="(min-width: 401px) and (max-width: 860px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8313/UCHP-EORE-session-in-the-International-French-School-in-Kyiv-Ukraine-2025-scaled-860x99999.webp 860w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8313/UCHP-EORE-session-in-the-International-French-School-in-Kyiv-Ukraine-2025-scaled-1720x99999.webp 1720w"
                                            sizes="100vw">
                                    <source media="(max-width: 400px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8313/UCHP-EORE-session-in-the-International-French-School-in-Kyiv-Ukraine-2025-scaled-400x99999.webp 400w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8313/UCHP-EORE-session-in-the-International-French-School-in-Kyiv-Ukraine-2025-scaled-800x99999.webp 800w"
                                            sizes="100vw">
                                    <img src="https://fsd.ch/wp-content/uploads/fly-images/8313/UCHP-EORE-session-in-the-International-French-School-in-Kyiv-Ukraine-2025-scaled-1920x99999.webp"
                                        alt=""
                                        loading="lazy"
                                        decoding="async">
                                </picture>
                            <!-- backdrop-filter: blur(10px); -->
                            <div class="card-wrapper">
                                                                    <div class="card">
                                                                                <h2 class="slide-title">Sauver des vies et déminer les terres en Ukraine</h2>
                                        <div class="slide-description"><p>Plus de 450 employés de la FSD sont à l&rsquo;œuvre à travers le pays pour sécuriser les millions d&rsquo;hectares jonchés de mines et de munitions non-explosées.</p>
</div>
                                        <a class="btn--primary" href="https://fsd.ch/pays/ukraine-2/">
                                            Nos opérations en Ukraine                                            <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <!-- <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/> -->
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
                                        </a>
                                    </div>
                                                            </div>
                                            </div>
                                    <div class="swiper-slide">
                                                                                    <picture>
                                    <source media="(min-width: 1920px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8443/Step-by-Step-documentary-Nadiia-demining-Ukraine-2023-scaled-1920x99999.webp 1920w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8443/Step-by-Step-documentary-Nadiia-demining-Ukraine-2023-scaled-3840x99999.webp 3840w"
                                            sizes="100vw">
                                    <source media="(min-width: 1281px) and (max-width: 1919px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8443/Step-by-Step-documentary-Nadiia-demining-Ukraine-2023-scaled-1280x99999.webp 1280w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8443/Step-by-Step-documentary-Nadiia-demining-Ukraine-2023-scaled-2560x99999.webp 2560w"
                                            sizes="100vw">
                                    <source media="(min-width: 861px) and (max-width: 1280px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8443/Step-by-Step-documentary-Nadiia-demining-Ukraine-2023-scaled-1280x99999.webp 1280w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8443/Step-by-Step-documentary-Nadiia-demining-Ukraine-2023-scaled-2560x99999.webp 2560w"
                                            sizes="100vw">
                                    <source media="(min-width: 401px) and (max-width: 860px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8443/Step-by-Step-documentary-Nadiia-demining-Ukraine-2023-scaled-860x99999.webp 860w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8443/Step-by-Step-documentary-Nadiia-demining-Ukraine-2023-scaled-1720x99999.webp 1720w"
                                            sizes="100vw">
                                    <source media="(max-width: 400px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8443/Step-by-Step-documentary-Nadiia-demining-Ukraine-2023-scaled-400x99999.webp 400w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8443/Step-by-Step-documentary-Nadiia-demining-Ukraine-2023-scaled-800x99999.webp 800w"
                                            sizes="100vw">
                                    <img src="https://fsd.ch/wp-content/uploads/fly-images/8443/Step-by-Step-documentary-Nadiia-demining-Ukraine-2023-scaled-1920x99999.webp"
                                        alt=""
                                        loading="lazy"
                                        decoding="async">
                                </picture>
                            <!-- backdrop-filter: blur(10px); -->
                            <div class="card-wrapper">
                                                                    <div class="card">
                                                                                <h2 class="slide-title">« S’il n’y avait pas de guerre, je ne serais jamais devenue démineuse. »</h2>
                                        <div class="slide-description"><p><span data-teams="true">Suivez Nadia dans le monde du déminage en Ukraine avec <i>Step by Step</i>, un film signé Quentin Curzon.</span></p>
</div>
                                        <a class="btn--primary" href="https://fsd.ch/fr/step-by-step-documentaire-sur-le-deminage-en-ukraine/">
                                            Voir le documentaire                                            <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <!-- <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/> -->
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
                                        </a>
                                    </div>
                                                            </div>
                                            </div>
                                    <div class="swiper-slide">
                                                                                    <picture>
                                    <source media="(min-width: 1920px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8319/Dog-handler-with-mine-detection-dog-during-training-Ukraine-2025-scaled-1920x99999.webp 1920w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8319/Dog-handler-with-mine-detection-dog-during-training-Ukraine-2025-scaled-3840x99999.webp 3840w"
                                            sizes="100vw">
                                    <source media="(min-width: 1281px) and (max-width: 1919px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8319/Dog-handler-with-mine-detection-dog-during-training-Ukraine-2025-scaled-1280x99999.webp 1280w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8319/Dog-handler-with-mine-detection-dog-during-training-Ukraine-2025-scaled-2560x99999.webp 2560w"
                                            sizes="100vw">
                                    <source media="(min-width: 861px) and (max-width: 1280px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8319/Dog-handler-with-mine-detection-dog-during-training-Ukraine-2025-scaled-1280x99999.webp 1280w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8319/Dog-handler-with-mine-detection-dog-during-training-Ukraine-2025-scaled-2560x99999.webp 2560w"
                                            sizes="100vw">
                                    <source media="(min-width: 401px) and (max-width: 860px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8319/Dog-handler-with-mine-detection-dog-during-training-Ukraine-2025-scaled-860x99999.webp 860w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8319/Dog-handler-with-mine-detection-dog-during-training-Ukraine-2025-scaled-1720x99999.webp 1720w"
                                            sizes="100vw">
                                    <source media="(max-width: 400px)"
                                            srcset="https://fsd.ch/wp-content/uploads/fly-images/8319/Dog-handler-with-mine-detection-dog-during-training-Ukraine-2025-scaled-400x99999.webp 400w,
                                                    https://fsd.ch/wp-content/uploads/fly-images/8319/Dog-handler-with-mine-detection-dog-during-training-Ukraine-2025-scaled-800x99999.webp 800w"
                                            sizes="100vw">
                                    <img src="https://fsd.ch/wp-content/uploads/fly-images/8319/Dog-handler-with-mine-detection-dog-during-training-Ukraine-2025-scaled-1920x99999.webp"
                                        alt=""
                                        loading="lazy"
                                        decoding="async">
                                </picture>
                            <!-- backdrop-filter: blur(10px); -->
                            <div class="card-wrapper">
                                                                    <div class="card">
                                                                                <h2 class="slide-title">Rencontrez nos démineurs à quatre pattes</h2>
                                        <div class="slide-description"><p data-pm-slice="1 1 []">Grâce à leur flair exceptionnel, nos chiens détecteurs de mines accélèrent la sécurisation des sols, permettant aux enfants de retourner à l’école et aux agriculteurs de cultiver à nouveau en toute sécurité.</p>
</div>
                                        <a class="btn--primary" href="https://fsd.ch/renforts-en-ukraine-nos-nouvelles-recrues-a-quatre-pattes-sont-arrivees/">
                                            Nos chiens démineurs                                            <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <!-- <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/> -->
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
                                        </a>
                                    </div>
                                                            </div>
                                            </div>
                            </div>
            <div class="button-wrapper">
                <div class="container">
                    <div class="button-prev">
                        <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/>
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
                    </div>
                    <div class="button-next">
                        <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/>
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <section class="the-content">
        
<div class="block card numbers-block turquoise border-radius--20">
            <svg class="pattern" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 400 400">
  <path d="M199.744 160.66c.959-.119 1.898-.377 2.787-.767 1.255-.549 2.385-1.35 3.321-2.353l94.657-94.6166c1.073-1.0541 1.894-2.3399 2.401-3.7601.506-1.4207.685-2.9382.523-4.4389-.163-1.5007-.662-2.9452-1.461-4.2245-.798-1.2788-1.875-2.3592-3.149-3.1596-3.807-2.362-7.859-4.7251-11.789-6.964-2.043-.9856-3.697-2.6331-4.696-4.6773-.999-2.0441-1.285-4.366-.812-6.5919l2.232-8.1516c.67-2.391.41-4.9496-.727-7.1574-1.136-2.2077-3.065-3.89934-5.395-4.73198-10.232-3.67824-20.703-6.64729-31.337-8.886423-2.47-.477882-5.027.005589-7.153 1.352483-2.127 1.34693-3.664 3.45656-4.3 5.90172l-1.86 7.0402c-.604 2.3458-2.037 4.3891-4.032 5.7475-1.995 1.3584-4.415 1.9388-6.806 1.6325-7.437-.9742-14.916-1.53-22.404-1.6663-7.487.1364-14.967.6921-22.403 1.6663-2.391.3063-4.811-.2741-6.806-1.6325s-3.428-3.4016-4.032-5.7474l-1.86-7.04026c-.637-2.44511-2.173-4.55479-4.3-5.90171C158.217.185356 155.66-.298138 153.19.179762 142.555 2.41888 132.085 5.38797 121.852 9.06617c-2.329.83264-4.258 2.52423-5.394 4.73203-1.137 2.2077-1.397 4.7664-.727 7.1574l2.232 8.1516c.473 2.2259.186 4.5477-.812 6.5919-1 2.0442-2.654 3.6917-4.696 4.6773-3.93 2.2389-7.983 4.6019-11.789 6.9639-1.2742.8004-2.3513 1.8808-3.1498 3.1596-.7986 1.2793-1.2976 2.7238-1.46 4.2245-.1624 1.5007.0164 3.0182.5229 4.4389.5064 1.4202 1.3275 2.706 2.4008 3.7601L193.637 157.54c.936 1.003 2.066 1.804 3.32 2.353.89.39 1.829.648 2.787.767ZM200.254 239.343c-.959.12-1.898.377-2.787.767-1.255.549-2.385 1.35-3.321 2.353L99.489 337.08c-1.0734 1.054-1.8944 2.34-2.4008 3.76-.5065 1.42-.6849 2.938-.5229 4.439.1624 1.5.6619 2.945 1.4604 4.224.7986 1.279 1.8756 2.359 3.1493 3.159 3.807 2.363 7.859 4.726 11.789 6.965 2.043.985 3.697 2.633 4.696 4.677.999 2.044 1.285 4.366.812 6.592l-2.232 8.152c-.669 2.391-.41 4.949.727 7.157 1.136 2.208 3.065 3.899 5.395 4.732 10.232 3.678 20.703 6.647 31.337 8.886 2.47.478 5.027-.005 7.154-1.352 2.126-1.347 3.663-3.457 4.299-5.902l1.86-7.04c.604-2.346 2.037-4.389 4.032-5.747 1.995-1.359 4.415-1.939 6.807-1.633 7.436.974 14.915 1.53 22.403 1.666 7.487-.136 14.967-.692 22.403-1.666 2.392-.306 4.811.274 6.806 1.632 1.995 1.359 3.428 3.402 4.032 5.748l1.86 7.04c.636 2.445 2.173 4.555 4.3 5.902 2.126 1.347 4.683 1.83 7.153 1.352 10.635-2.239 21.105-5.208 31.337-8.886 2.33-.833 4.259-2.524 5.396-4.732 1.136-2.208 1.396-4.767.726-7.158l-2.232-8.151c-.473-2.226-.187-4.548.812-6.592 1-2.044 2.653-3.692 4.696-4.677 3.93-2.239 7.982-4.602 11.789-6.965 1.274-.8 2.351-1.88 3.15-3.159.798-1.279 1.298-2.724 1.46-4.224.162-1.501-.017-3.019-.523-4.439s-1.327-2.706-2.401-3.76l-94.656-94.617c-.937-1.003-2.067-1.804-3.322-2.353-.889-.39-1.827-.647-2.786-.767ZM239.341 199.746c.119.959.377 1.898.767 2.787.549 1.255 1.35 2.385 2.353 3.321l94.616 94.657c1.054 1.074 2.34 1.895 3.76 2.401 1.421.507 2.938.685 4.439.523 1.501-.162 2.945-.662 4.224-1.46 1.279-.798 2.359-1.876 3.16-3.15 2.362-3.806 4.725-7.859 6.964-11.789.985-2.042 2.633-3.696 4.677-4.695 2.044-.999 4.366-1.286 6.592-.813l8.152 2.232c2.391.67 4.949.41 7.157-.727 2.208-1.136 3.899-3.065 4.732-5.394 3.678-10.233 6.647-20.703 8.886-31.338.478-2.47-.006-5.027-1.352-7.153-1.347-2.127-3.457-3.664-5.902-4.3l-7.04-1.86c-2.346-.604-4.389-2.037-5.747-4.032-1.359-1.995-1.939-4.415-1.633-6.807.974-7.436 1.53-14.915 1.666-22.403-.136-7.487-.692-14.967-1.666-22.403-.306-2.391.274-4.811 1.633-6.806 1.358-1.995 3.401-3.429 5.747-4.032l7.04-1.861c2.445-.636 4.555-2.173 5.902-4.299 1.346-2.127 1.83-4.684 1.352-7.154-2.239-10.635-5.208-21.105-8.886-31.337-.833-2.33-2.524-4.258-4.732-5.395-2.208-1.137-4.766-1.397-7.157-.726l-8.152 2.231c-2.226.473-4.548.187-6.592-.812-2.044-.999-3.692-2.653-4.677-4.696-2.239-3.93-4.602-7.982-6.965-11.789-.8-1.274-1.88-2.351-3.159-3.1496-1.279-.7981-2.723-1.2975-4.224-1.46-1.501-.1624-3.019.0164-4.439.5229-1.42.5065-2.706 1.3275-3.76 2.4008l-94.616 94.6579c-1.003.936-1.804 2.066-2.353 3.32-.39.89-.648 1.829-.767 2.787ZM160.659 200.256c-.119-.959-.377-1.898-.767-2.787-.549-1.255-1.35-2.385-2.353-3.321L62.9231 99.4904c-1.0542-1.0733-2.34-1.8944-3.7602-2.4008-1.4206-.5065-2.9382-.6853-4.4388-.5229-1.5007.1624-2.9452.6619-4.2245 1.4605-1.2788.7985-2.3592 1.8751-3.1596 3.1488-2.362 3.807-4.725 7.86-6.9639 11.79-.9856 2.042-2.6331 3.696-4.6772 4.695-2.0442 1-4.3661 1.286-6.5919.813l-8.1516-2.232c-2.3909-.67-4.9496-.411-7.1573.726-2.2078 1.137-3.89943 3.065-4.73206 5.395-3.67818 10.233-6.64724 20.703-8.886346 31.338-.477876 2.469.005591 5.027 1.352486 7.153 1.3469 2.127 3.45654 3.664 5.90169 4.3l7.04023 1.86c2.3457.604 4.3889 2.037 5.7474 4.032 1.3583 1.995 1.9387 4.415 1.6325 6.807-.9742 7.435-1.53 14.915-1.6663 22.403.1363 7.488.6921 14.967 1.6663 22.403.3063 2.392-.2741 4.811-1.6325 6.806s-3.4017 3.428-5.7474 4.032l-7.04023 1.861c-2.4451.636-4.55476 2.172-5.90165 4.299-1.346877 2.126-1.830368 4.684-1.352469 7.153 2.239089 10.635 5.208159 21.105 8.886339 31.338.83263 2.33 2.52421 4.258 4.73201 5.395 2.2077 1.137 4.7664 1.396 7.1574.727l8.1515-2.233c2.2259-.473 4.5477-.186 6.5919.813 2.0441.999 3.6916 2.653 4.6772 4.695 2.239 3.93 4.602 7.983 6.9639 11.79.8004 1.274 1.8808 2.351 3.1596 3.149 1.2793.799 2.7238 1.298 4.2245 1.46 1.5006.163 3.0182-.016 4.4388-.523 1.4202-.506 2.706-1.327 3.7602-2.4l94.6159-94.657c1.003-.937 1.804-2.067 2.353-3.321.39-.89.648-1.828.767-2.787Z"/>
</svg>
        <span class="block--title numbers-block__headline">
        La FSD en quelques chiffres    </span>

   <div class="numbers-block__numbers">
                    <div class="numbers-block__item">
                <div class="numbers-block__number" data-target="+ 474">
                    <!-- Content will be dynamically generated by JavaScript -->
                    + 474                </div>
                <div class="numbers-block__description">
                    kilomètres carrés déminés                </div>
            </div>
                    <div class="numbers-block__item">
                <div class="numbers-block__number" data-target="+ 1'400'000">
                    <!-- Content will be dynamically generated by JavaScript -->
                    + 1&rsquo;400&rsquo;000                </div>
                <div class="numbers-block__description">
                    mines et restes explosifs de guerre neutralisés                </div>
            </div>
           </div>
</div>



<div class="block card featured-page-block darker-blue border-radius--20">
            <span class="featured-page-block__headline headline border-radius--20">
            Soutenir notre action        </span>
        <div class="featured-page-block__description">
        <p><h2>Autrefois jonchés de munitions non explosées, des champs nourrissent aujourd&rsquo;hui les communautés locales. Les enfants jouent dehors sans crainte, les villages se reconstruisent petit à petit.</h2>
</p>
    </div>
            <a class="btn--primary" href="https://fsd.ch/dons/">
            Faire un don                             <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <!-- <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/> -->
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
                    </a>
                <svg class="icon-mine" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 160 160">
  <path fill="$current-color" fill-rule="evenodd" d="m120.411 25.17-.442.4325c5.488 4.1718 10.302 9.1598 14.278 14.785l.582-.5906c.418-.4302.93-.7581 1.511-.9604.558-.2023 1.163-.2744 1.768-.2093.604.0651 1.186.2651 1.697.5837.512.3186.93.7511 1.256 1.2603.953 1.5232 1.883 3.144 2.79 4.716.396.8162 1.047 1.479 1.861 1.8766.814.4 1.744.5139 2.651.3256l3.255-.893c.954-.2674 1.977-.1628 2.861.2907.883.4558 1.558 1.2255 1.883 2.158 1.488 4.0927 2.674 8.2808 3.558 12.5363.209.986 0 2.0092-.535 2.8603-.535.8511-1.372 1.4651-2.348 1.7209l-2.837.7441c-.93.2395-1.745.8139-2.279 1.6115-.558.7976-.791 1.765-.675 2.7231.395 2.9742.628 5.9647.675 8.9598-.047 2.9952-.28 5.988-.675 8.9622-.116.9557.117 1.9254.675 2.7231.534.7976 1.349 1.3697 2.279 1.6115l2.837.7441c.976.2558 1.813.8697 2.348 1.7208.535.8512.744 1.872.535 2.8603-.884 4.2559-2.07 8.4439-3.558 12.5369-.325.93-1 1.702-1.883 2.158-.884.453-1.907.558-2.861.29l-3.255-.893c-.907-.19-1.837-.074-2.651.323-.814.4-1.465 1.063-1.861 1.879-.907 1.572-1.837 3.193-2.79 4.716-.326.51-.744.94-1.256 1.261-.511.318-1.093.518-1.697.583-.605.066-1.21-.007-1.768-.209-.581-.202-1.093-.53-1.511-.96l-1.279-1.289c-4.07 5.551-8.976 10.456-14.534 14.532l1.186 1.181c.442.421.767.935.953 1.502.21.57.279 1.177.21 1.777-.047.6-.256 1.179-.582 1.691-.326.511-.744.942-1.256 1.262-1.511.945-3.139 1.891-4.72 2.786-.814.393-1.465 1.054-1.86 1.87-.419.819-.535 1.746-.326 2.637l.884 3.263c.256.955.162 1.979-.303 2.862-.441.882-1.209 1.558-2.139 1.893-4.093 1.47-8.279 2.658-12.5343 3.553-1 .191-2.0232-.002-2.8603-.539-.8605-.54-1.4648-1.384-1.7206-2.363l-.7441-2.816c-.2558-.937-.8141-1.756-1.628-2.297-.7906-.545-1.7674-.777-2.7208-.654-2.9766.391-5.953.612-8.9528.668-2.9998-.056-5.9996-.277-8.9762-.668-.9534-.123-1.907.109-2.7209.654-.7906.541-1.372 1.36-1.6045 2.297l-.7441 2.816c-.2558.979-.8602 1.823-1.7206 2.363-.8604.537-1.8836.73-2.8603.539-4.2555-.895-8.4413-2.083-12.5341-3.553-.9301-.335-1.6976-1.011-2.1627-1.893-.4418-.883-.5579-1.907-.2789-2.865l.8836-3.26c.186-.891.0696-1.818-.3258-2.637-.3953-.816-1.0695-1.477-1.8834-1.87-1.5581-.895-3.1858-1.841-4.6973-2.786-.5116-.32-.9536-.751-1.2792-1.262-.3023-.512-.5114-1.091-.5812-1.691-.0697-.6.0233-1.207.2094-1.777.2093-.567.5346-1.081.9765-1.502l.5347-.539c-5.6275-3.988-10.6038-8.814-14.7663-14.295l-.2094.207c-.4186.428-.9301.758-1.4882.961-.5813.202-1.1858.274-1.7904.209-.6047-.065-1.1629-.265-1.6745-.586-.5116-.319-.9533-.749-1.2788-1.258-.9302-1.523-1.8839-3.144-2.7908-4.716-.3953-.819-1.0465-1.479-1.8604-1.879-.8139-.4-1.7438-.514-2.6275-.325l-3.27899.892c-.95343.27-1.97664.166-2.86031-.29-.88366-.454-1.55789-1.226-1.88345-2.158-1.46502-4.093-2.650984-8.281-3.557901-12.5342-.186034-.9883-.000116-2.0115.534732-2.8626.534849-.8488 1.395379-1.465 2.372059-1.7185l2.81382-.7441c.93017-.2419 1.74404-.8139 2.30215-1.6139.53485-.7976.76739-1.7649.65111-2.7207-.39532-2.9742-.60477-5.9671-.67453-8.9622.06976-2.9952.27921-5.9856.67453-8.9599.11628-.958-.11626-1.9254-.65111-2.723-.55811-.7976-1.37198-1.372-2.30215-1.6139l-2.81382-.7441c-.97668-.2534-1.83721-.8697-2.372059-1.7185-.534848-.8511-.720766-1.8743-.534732-2.8626.906917-4.2532 2.092881-8.4413 3.557901-12.534.32556-.9325.99979-1.7046 1.88345-2.158.88367-.4558 1.90688-.5581 2.86031-.2907l3.27899.8929c.8837.1884 1.8136.0745 2.6275-.3255.8139-.4 1.4651-1.0604 1.8604-1.8789.9069-1.572 1.8606-3.1929 2.7908-4.716.3255-.5093.7672-.9395 1.2788-1.2581.5116-.3209 1.0698-.5208 1.6745-.5836.6046-.0651 1.2091.0046 1.7904.2069.4186.1512.8138.3698 1.1394.6488 4.116-5.5554 9.0461-10.4598 14.6038-14.5292-.2325-.3279-.442-.693-.5815-1.086-.2093-.5674-.2788-1.1743-.209-1.7743.0697-.6023.2556-1.179.5812-1.6906.3255-.5116.7441-.9441 1.2557-1.265 1.5348-.9441 3.1394-1.8882 4.7207-2.7835.8139-.3954 1.4882-1.0534 1.8835-1.872.3953-.8185.5118-1.7464.3257-2.6371l-.9069-3.2602c-.2558-.95574-.1628-1.97894.3023-2.8626.4418-.88366 1.2325-1.56036 2.1627-1.89289 4.0927-1.472 8.2785-2.66026 12.5341-3.555549.9767-.190685 1.9995.002285 2.8599.541784.8372.539495 1.4652 1.383665 1.721 2.360335l.744 2.81608c.2326.93947.814 1.75569 1.6046 2.29984.7906.54183 1.7674.77439 2.7209.65347 2.9765-.39067 5.9763-.61395 8.9761-.66744 2.9766.05349 5.9763.27677 8.9528.66744.9534.12092 1.9302-.11164 2.7209-.65347.7906-.54415 1.372-1.36037 1.6045-2.29984l.7441-2.81608c.2558-.97667.8838-1.82084 1.7209-2.360335.8605-.539499 1.8837-.732469 2.8603-.541784C102.97.969275 107.156 2.15521 111.249 3.62721c.93.33253 1.721 1.00923 2.162 1.89289.465.88366.559 1.90686.303 2.8626l-.907 3.2602c-.186.8907-.07 1.8186.325 2.6371.396.8186 1.07 1.4766 1.884 1.872 1.581.8953 3.186 1.8394 4.721 2.7835.511.3209.93.7534 1.255 1.265.326.5116.512 1.0883.582 1.6906.07.6 0 1.2069-.209 1.7743-.21.5674-.535 1.0837-.954 1.5046ZM79.2975 128.5c-27.1843 0-49.2295-22.033-49.2295-49.2128 0-27.1795 22.0452-49.2129 49.2295-49.2129 27.1605 0 49.2055 22.0334 49.2055 49.2129 0 27.1798-22.045 49.2128-49.2055 49.2128Z" clip-rule="evenodd"/>
</svg>
        <svg class="icon-mine" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 160 160">
  <path fill="$current-color" fill-rule="evenodd" d="m120.411 25.17-.442.4325c5.488 4.1718 10.302 9.1598 14.278 14.785l.582-.5906c.418-.4302.93-.7581 1.511-.9604.558-.2023 1.163-.2744 1.768-.2093.604.0651 1.186.2651 1.697.5837.512.3186.93.7511 1.256 1.2603.953 1.5232 1.883 3.144 2.79 4.716.396.8162 1.047 1.479 1.861 1.8766.814.4 1.744.5139 2.651.3256l3.255-.893c.954-.2674 1.977-.1628 2.861.2907.883.4558 1.558 1.2255 1.883 2.158 1.488 4.0927 2.674 8.2808 3.558 12.5363.209.986 0 2.0092-.535 2.8603-.535.8511-1.372 1.4651-2.348 1.7209l-2.837.7441c-.93.2395-1.745.8139-2.279 1.6115-.558.7976-.791 1.765-.675 2.7231.395 2.9742.628 5.9647.675 8.9598-.047 2.9952-.28 5.988-.675 8.9622-.116.9557.117 1.9254.675 2.7231.534.7976 1.349 1.3697 2.279 1.6115l2.837.7441c.976.2558 1.813.8697 2.348 1.7208.535.8512.744 1.872.535 2.8603-.884 4.2559-2.07 8.4439-3.558 12.5369-.325.93-1 1.702-1.883 2.158-.884.453-1.907.558-2.861.29l-3.255-.893c-.907-.19-1.837-.074-2.651.323-.814.4-1.465 1.063-1.861 1.879-.907 1.572-1.837 3.193-2.79 4.716-.326.51-.744.94-1.256 1.261-.511.318-1.093.518-1.697.583-.605.066-1.21-.007-1.768-.209-.581-.202-1.093-.53-1.511-.96l-1.279-1.289c-4.07 5.551-8.976 10.456-14.534 14.532l1.186 1.181c.442.421.767.935.953 1.502.21.57.279 1.177.21 1.777-.047.6-.256 1.179-.582 1.691-.326.511-.744.942-1.256 1.262-1.511.945-3.139 1.891-4.72 2.786-.814.393-1.465 1.054-1.86 1.87-.419.819-.535 1.746-.326 2.637l.884 3.263c.256.955.162 1.979-.303 2.862-.441.882-1.209 1.558-2.139 1.893-4.093 1.47-8.279 2.658-12.5343 3.553-1 .191-2.0232-.002-2.8603-.539-.8605-.54-1.4648-1.384-1.7206-2.363l-.7441-2.816c-.2558-.937-.8141-1.756-1.628-2.297-.7906-.545-1.7674-.777-2.7208-.654-2.9766.391-5.953.612-8.9528.668-2.9998-.056-5.9996-.277-8.9762-.668-.9534-.123-1.907.109-2.7209.654-.7906.541-1.372 1.36-1.6045 2.297l-.7441 2.816c-.2558.979-.8602 1.823-1.7206 2.363-.8604.537-1.8836.73-2.8603.539-4.2555-.895-8.4413-2.083-12.5341-3.553-.9301-.335-1.6976-1.011-2.1627-1.893-.4418-.883-.5579-1.907-.2789-2.865l.8836-3.26c.186-.891.0696-1.818-.3258-2.637-.3953-.816-1.0695-1.477-1.8834-1.87-1.5581-.895-3.1858-1.841-4.6973-2.786-.5116-.32-.9536-.751-1.2792-1.262-.3023-.512-.5114-1.091-.5812-1.691-.0697-.6.0233-1.207.2094-1.777.2093-.567.5346-1.081.9765-1.502l.5347-.539c-5.6275-3.988-10.6038-8.814-14.7663-14.295l-.2094.207c-.4186.428-.9301.758-1.4882.961-.5813.202-1.1858.274-1.7904.209-.6047-.065-1.1629-.265-1.6745-.586-.5116-.319-.9533-.749-1.2788-1.258-.9302-1.523-1.8839-3.144-2.7908-4.716-.3953-.819-1.0465-1.479-1.8604-1.879-.8139-.4-1.7438-.514-2.6275-.325l-3.27899.892c-.95343.27-1.97664.166-2.86031-.29-.88366-.454-1.55789-1.226-1.88345-2.158-1.46502-4.093-2.650984-8.281-3.557901-12.5342-.186034-.9883-.000116-2.0115.534732-2.8626.534849-.8488 1.395379-1.465 2.372059-1.7185l2.81382-.7441c.93017-.2419 1.74404-.8139 2.30215-1.6139.53485-.7976.76739-1.7649.65111-2.7207-.39532-2.9742-.60477-5.9671-.67453-8.9622.06976-2.9952.27921-5.9856.67453-8.9599.11628-.958-.11626-1.9254-.65111-2.723-.55811-.7976-1.37198-1.372-2.30215-1.6139l-2.81382-.7441c-.97668-.2534-1.83721-.8697-2.372059-1.7185-.534848-.8511-.720766-1.8743-.534732-2.8626.906917-4.2532 2.092881-8.4413 3.557901-12.534.32556-.9325.99979-1.7046 1.88345-2.158.88367-.4558 1.90688-.5581 2.86031-.2907l3.27899.8929c.8837.1884 1.8136.0745 2.6275-.3255.8139-.4 1.4651-1.0604 1.8604-1.8789.9069-1.572 1.8606-3.1929 2.7908-4.716.3255-.5093.7672-.9395 1.2788-1.2581.5116-.3209 1.0698-.5208 1.6745-.5836.6046-.0651 1.2091.0046 1.7904.2069.4186.1512.8138.3698 1.1394.6488 4.116-5.5554 9.0461-10.4598 14.6038-14.5292-.2325-.3279-.442-.693-.5815-1.086-.2093-.5674-.2788-1.1743-.209-1.7743.0697-.6023.2556-1.179.5812-1.6906.3255-.5116.7441-.9441 1.2557-1.265 1.5348-.9441 3.1394-1.8882 4.7207-2.7835.8139-.3954 1.4882-1.0534 1.8835-1.872.3953-.8185.5118-1.7464.3257-2.6371l-.9069-3.2602c-.2558-.95574-.1628-1.97894.3023-2.8626.4418-.88366 1.2325-1.56036 2.1627-1.89289 4.0927-1.472 8.2785-2.66026 12.5341-3.555549.9767-.190685 1.9995.002285 2.8599.541784.8372.539495 1.4652 1.383665 1.721 2.360335l.744 2.81608c.2326.93947.814 1.75569 1.6046 2.29984.7906.54183 1.7674.77439 2.7209.65347 2.9765-.39067 5.9763-.61395 8.9761-.66744 2.9766.05349 5.9763.27677 8.9528.66744.9534.12092 1.9302-.11164 2.7209-.65347.7906-.54415 1.372-1.36037 1.6045-2.29984l.7441-2.81608c.2558-.97667.8838-1.82084 1.7209-2.360335.8605-.539499 1.8837-.732469 2.8603-.541784C102.97.969275 107.156 2.15521 111.249 3.62721c.93.33253 1.721 1.00923 2.162 1.89289.465.88366.559 1.90686.303 2.8626l-.907 3.2602c-.186.8907-.07 1.8186.325 2.6371.396.8186 1.07 1.4766 1.884 1.872 1.581.8953 3.186 1.8394 4.721 2.7835.511.3209.93.7534 1.255 1.265.326.5116.512 1.0883.582 1.6906.07.6 0 1.2069-.209 1.7743-.21.5674-.535 1.0837-.954 1.5046ZM79.2975 128.5c-27.1843 0-49.2295-22.033-49.2295-49.2128 0-27.1795 22.0452-49.2129 49.2295-49.2129 27.1605 0 49.2055 22.0334 49.2055 49.2129 0 27.1798-22.045 49.2128-49.2055 49.2128Z" clip-rule="evenodd"/>
</svg>
    </div>



<div class="block card featured-page-block minth border-radius--20">
            <span class="featured-page-block__headline headline border-radius--20">
            Devenez bénévole        </span>
        <div class="featured-page-block__description">
        <p><h2><span data-teams="true">Parlez-en autour de vous. Sensibilisez à nos côtés. Car chaque mine ignorée met des vies en danger.</span></h2>
</p>
    </div>
            <a class="btn--primary" href="https://www.benevolatgeneve.ch/annonce/fsd/soutien-a-un-evenement-public_1698" target="_blank" rel="noopener">
            Plus d&#039;info                            <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <!-- <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/> -->
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
                    </a>
                <svg class="icon-mine" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 160 160">
  <path fill="$current-color" fill-rule="evenodd" d="m120.411 25.17-.442.4325c5.488 4.1718 10.302 9.1598 14.278 14.785l.582-.5906c.418-.4302.93-.7581 1.511-.9604.558-.2023 1.163-.2744 1.768-.2093.604.0651 1.186.2651 1.697.5837.512.3186.93.7511 1.256 1.2603.953 1.5232 1.883 3.144 2.79 4.716.396.8162 1.047 1.479 1.861 1.8766.814.4 1.744.5139 2.651.3256l3.255-.893c.954-.2674 1.977-.1628 2.861.2907.883.4558 1.558 1.2255 1.883 2.158 1.488 4.0927 2.674 8.2808 3.558 12.5363.209.986 0 2.0092-.535 2.8603-.535.8511-1.372 1.4651-2.348 1.7209l-2.837.7441c-.93.2395-1.745.8139-2.279 1.6115-.558.7976-.791 1.765-.675 2.7231.395 2.9742.628 5.9647.675 8.9598-.047 2.9952-.28 5.988-.675 8.9622-.116.9557.117 1.9254.675 2.7231.534.7976 1.349 1.3697 2.279 1.6115l2.837.7441c.976.2558 1.813.8697 2.348 1.7208.535.8512.744 1.872.535 2.8603-.884 4.2559-2.07 8.4439-3.558 12.5369-.325.93-1 1.702-1.883 2.158-.884.453-1.907.558-2.861.29l-3.255-.893c-.907-.19-1.837-.074-2.651.323-.814.4-1.465 1.063-1.861 1.879-.907 1.572-1.837 3.193-2.79 4.716-.326.51-.744.94-1.256 1.261-.511.318-1.093.518-1.697.583-.605.066-1.21-.007-1.768-.209-.581-.202-1.093-.53-1.511-.96l-1.279-1.289c-4.07 5.551-8.976 10.456-14.534 14.532l1.186 1.181c.442.421.767.935.953 1.502.21.57.279 1.177.21 1.777-.047.6-.256 1.179-.582 1.691-.326.511-.744.942-1.256 1.262-1.511.945-3.139 1.891-4.72 2.786-.814.393-1.465 1.054-1.86 1.87-.419.819-.535 1.746-.326 2.637l.884 3.263c.256.955.162 1.979-.303 2.862-.441.882-1.209 1.558-2.139 1.893-4.093 1.47-8.279 2.658-12.5343 3.553-1 .191-2.0232-.002-2.8603-.539-.8605-.54-1.4648-1.384-1.7206-2.363l-.7441-2.816c-.2558-.937-.8141-1.756-1.628-2.297-.7906-.545-1.7674-.777-2.7208-.654-2.9766.391-5.953.612-8.9528.668-2.9998-.056-5.9996-.277-8.9762-.668-.9534-.123-1.907.109-2.7209.654-.7906.541-1.372 1.36-1.6045 2.297l-.7441 2.816c-.2558.979-.8602 1.823-1.7206 2.363-.8604.537-1.8836.73-2.8603.539-4.2555-.895-8.4413-2.083-12.5341-3.553-.9301-.335-1.6976-1.011-2.1627-1.893-.4418-.883-.5579-1.907-.2789-2.865l.8836-3.26c.186-.891.0696-1.818-.3258-2.637-.3953-.816-1.0695-1.477-1.8834-1.87-1.5581-.895-3.1858-1.841-4.6973-2.786-.5116-.32-.9536-.751-1.2792-1.262-.3023-.512-.5114-1.091-.5812-1.691-.0697-.6.0233-1.207.2094-1.777.2093-.567.5346-1.081.9765-1.502l.5347-.539c-5.6275-3.988-10.6038-8.814-14.7663-14.295l-.2094.207c-.4186.428-.9301.758-1.4882.961-.5813.202-1.1858.274-1.7904.209-.6047-.065-1.1629-.265-1.6745-.586-.5116-.319-.9533-.749-1.2788-1.258-.9302-1.523-1.8839-3.144-2.7908-4.716-.3953-.819-1.0465-1.479-1.8604-1.879-.8139-.4-1.7438-.514-2.6275-.325l-3.27899.892c-.95343.27-1.97664.166-2.86031-.29-.88366-.454-1.55789-1.226-1.88345-2.158-1.46502-4.093-2.650984-8.281-3.557901-12.5342-.186034-.9883-.000116-2.0115.534732-2.8626.534849-.8488 1.395379-1.465 2.372059-1.7185l2.81382-.7441c.93017-.2419 1.74404-.8139 2.30215-1.6139.53485-.7976.76739-1.7649.65111-2.7207-.39532-2.9742-.60477-5.9671-.67453-8.9622.06976-2.9952.27921-5.9856.67453-8.9599.11628-.958-.11626-1.9254-.65111-2.723-.55811-.7976-1.37198-1.372-2.30215-1.6139l-2.81382-.7441c-.97668-.2534-1.83721-.8697-2.372059-1.7185-.534848-.8511-.720766-1.8743-.534732-2.8626.906917-4.2532 2.092881-8.4413 3.557901-12.534.32556-.9325.99979-1.7046 1.88345-2.158.88367-.4558 1.90688-.5581 2.86031-.2907l3.27899.8929c.8837.1884 1.8136.0745 2.6275-.3255.8139-.4 1.4651-1.0604 1.8604-1.8789.9069-1.572 1.8606-3.1929 2.7908-4.716.3255-.5093.7672-.9395 1.2788-1.2581.5116-.3209 1.0698-.5208 1.6745-.5836.6046-.0651 1.2091.0046 1.7904.2069.4186.1512.8138.3698 1.1394.6488 4.116-5.5554 9.0461-10.4598 14.6038-14.5292-.2325-.3279-.442-.693-.5815-1.086-.2093-.5674-.2788-1.1743-.209-1.7743.0697-.6023.2556-1.179.5812-1.6906.3255-.5116.7441-.9441 1.2557-1.265 1.5348-.9441 3.1394-1.8882 4.7207-2.7835.8139-.3954 1.4882-1.0534 1.8835-1.872.3953-.8185.5118-1.7464.3257-2.6371l-.9069-3.2602c-.2558-.95574-.1628-1.97894.3023-2.8626.4418-.88366 1.2325-1.56036 2.1627-1.89289 4.0927-1.472 8.2785-2.66026 12.5341-3.555549.9767-.190685 1.9995.002285 2.8599.541784.8372.539495 1.4652 1.383665 1.721 2.360335l.744 2.81608c.2326.93947.814 1.75569 1.6046 2.29984.7906.54183 1.7674.77439 2.7209.65347 2.9765-.39067 5.9763-.61395 8.9761-.66744 2.9766.05349 5.9763.27677 8.9528.66744.9534.12092 1.9302-.11164 2.7209-.65347.7906-.54415 1.372-1.36037 1.6045-2.29984l.7441-2.81608c.2558-.97667.8838-1.82084 1.7209-2.360335.8605-.539499 1.8837-.732469 2.8603-.541784C102.97.969275 107.156 2.15521 111.249 3.62721c.93.33253 1.721 1.00923 2.162 1.89289.465.88366.559 1.90686.303 2.8626l-.907 3.2602c-.186.8907-.07 1.8186.325 2.6371.396.8186 1.07 1.4766 1.884 1.872 1.581.8953 3.186 1.8394 4.721 2.7835.511.3209.93.7534 1.255 1.265.326.5116.512 1.0883.582 1.6906.07.6 0 1.2069-.209 1.7743-.21.5674-.535 1.0837-.954 1.5046ZM79.2975 128.5c-27.1843 0-49.2295-22.033-49.2295-49.2128 0-27.1795 22.0452-49.2129 49.2295-49.2129 27.1605 0 49.2055 22.0334 49.2055 49.2129 0 27.1798-22.045 49.2128-49.2055 49.2128Z" clip-rule="evenodd"/>
</svg>
        <svg class="icon-mine" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 160 160">
  <path fill="$current-color" fill-rule="evenodd" d="m120.411 25.17-.442.4325c5.488 4.1718 10.302 9.1598 14.278 14.785l.582-.5906c.418-.4302.93-.7581 1.511-.9604.558-.2023 1.163-.2744 1.768-.2093.604.0651 1.186.2651 1.697.5837.512.3186.93.7511 1.256 1.2603.953 1.5232 1.883 3.144 2.79 4.716.396.8162 1.047 1.479 1.861 1.8766.814.4 1.744.5139 2.651.3256l3.255-.893c.954-.2674 1.977-.1628 2.861.2907.883.4558 1.558 1.2255 1.883 2.158 1.488 4.0927 2.674 8.2808 3.558 12.5363.209.986 0 2.0092-.535 2.8603-.535.8511-1.372 1.4651-2.348 1.7209l-2.837.7441c-.93.2395-1.745.8139-2.279 1.6115-.558.7976-.791 1.765-.675 2.7231.395 2.9742.628 5.9647.675 8.9598-.047 2.9952-.28 5.988-.675 8.9622-.116.9557.117 1.9254.675 2.7231.534.7976 1.349 1.3697 2.279 1.6115l2.837.7441c.976.2558 1.813.8697 2.348 1.7208.535.8512.744 1.872.535 2.8603-.884 4.2559-2.07 8.4439-3.558 12.5369-.325.93-1 1.702-1.883 2.158-.884.453-1.907.558-2.861.29l-3.255-.893c-.907-.19-1.837-.074-2.651.323-.814.4-1.465 1.063-1.861 1.879-.907 1.572-1.837 3.193-2.79 4.716-.326.51-.744.94-1.256 1.261-.511.318-1.093.518-1.697.583-.605.066-1.21-.007-1.768-.209-.581-.202-1.093-.53-1.511-.96l-1.279-1.289c-4.07 5.551-8.976 10.456-14.534 14.532l1.186 1.181c.442.421.767.935.953 1.502.21.57.279 1.177.21 1.777-.047.6-.256 1.179-.582 1.691-.326.511-.744.942-1.256 1.262-1.511.945-3.139 1.891-4.72 2.786-.814.393-1.465 1.054-1.86 1.87-.419.819-.535 1.746-.326 2.637l.884 3.263c.256.955.162 1.979-.303 2.862-.441.882-1.209 1.558-2.139 1.893-4.093 1.47-8.279 2.658-12.5343 3.553-1 .191-2.0232-.002-2.8603-.539-.8605-.54-1.4648-1.384-1.7206-2.363l-.7441-2.816c-.2558-.937-.8141-1.756-1.628-2.297-.7906-.545-1.7674-.777-2.7208-.654-2.9766.391-5.953.612-8.9528.668-2.9998-.056-5.9996-.277-8.9762-.668-.9534-.123-1.907.109-2.7209.654-.7906.541-1.372 1.36-1.6045 2.297l-.7441 2.816c-.2558.979-.8602 1.823-1.7206 2.363-.8604.537-1.8836.73-2.8603.539-4.2555-.895-8.4413-2.083-12.5341-3.553-.9301-.335-1.6976-1.011-2.1627-1.893-.4418-.883-.5579-1.907-.2789-2.865l.8836-3.26c.186-.891.0696-1.818-.3258-2.637-.3953-.816-1.0695-1.477-1.8834-1.87-1.5581-.895-3.1858-1.841-4.6973-2.786-.5116-.32-.9536-.751-1.2792-1.262-.3023-.512-.5114-1.091-.5812-1.691-.0697-.6.0233-1.207.2094-1.777.2093-.567.5346-1.081.9765-1.502l.5347-.539c-5.6275-3.988-10.6038-8.814-14.7663-14.295l-.2094.207c-.4186.428-.9301.758-1.4882.961-.5813.202-1.1858.274-1.7904.209-.6047-.065-1.1629-.265-1.6745-.586-.5116-.319-.9533-.749-1.2788-1.258-.9302-1.523-1.8839-3.144-2.7908-4.716-.3953-.819-1.0465-1.479-1.8604-1.879-.8139-.4-1.7438-.514-2.6275-.325l-3.27899.892c-.95343.27-1.97664.166-2.86031-.29-.88366-.454-1.55789-1.226-1.88345-2.158-1.46502-4.093-2.650984-8.281-3.557901-12.5342-.186034-.9883-.000116-2.0115.534732-2.8626.534849-.8488 1.395379-1.465 2.372059-1.7185l2.81382-.7441c.93017-.2419 1.74404-.8139 2.30215-1.6139.53485-.7976.76739-1.7649.65111-2.7207-.39532-2.9742-.60477-5.9671-.67453-8.9622.06976-2.9952.27921-5.9856.67453-8.9599.11628-.958-.11626-1.9254-.65111-2.723-.55811-.7976-1.37198-1.372-2.30215-1.6139l-2.81382-.7441c-.97668-.2534-1.83721-.8697-2.372059-1.7185-.534848-.8511-.720766-1.8743-.534732-2.8626.906917-4.2532 2.092881-8.4413 3.557901-12.534.32556-.9325.99979-1.7046 1.88345-2.158.88367-.4558 1.90688-.5581 2.86031-.2907l3.27899.8929c.8837.1884 1.8136.0745 2.6275-.3255.8139-.4 1.4651-1.0604 1.8604-1.8789.9069-1.572 1.8606-3.1929 2.7908-4.716.3255-.5093.7672-.9395 1.2788-1.2581.5116-.3209 1.0698-.5208 1.6745-.5836.6046-.0651 1.2091.0046 1.7904.2069.4186.1512.8138.3698 1.1394.6488 4.116-5.5554 9.0461-10.4598 14.6038-14.5292-.2325-.3279-.442-.693-.5815-1.086-.2093-.5674-.2788-1.1743-.209-1.7743.0697-.6023.2556-1.179.5812-1.6906.3255-.5116.7441-.9441 1.2557-1.265 1.5348-.9441 3.1394-1.8882 4.7207-2.7835.8139-.3954 1.4882-1.0534 1.8835-1.872.3953-.8185.5118-1.7464.3257-2.6371l-.9069-3.2602c-.2558-.95574-.1628-1.97894.3023-2.8626.4418-.88366 1.2325-1.56036 2.1627-1.89289 4.0927-1.472 8.2785-2.66026 12.5341-3.555549.9767-.190685 1.9995.002285 2.8599.541784.8372.539495 1.4652 1.383665 1.721 2.360335l.744 2.81608c.2326.93947.814 1.75569 1.6046 2.29984.7906.54183 1.7674.77439 2.7209.65347 2.9765-.39067 5.9763-.61395 8.9761-.66744 2.9766.05349 5.9763.27677 8.9528.66744.9534.12092 1.9302-.11164 2.7209-.65347.7906-.54415 1.372-1.36037 1.6045-2.29984l.7441-2.81608c.2558-.97667.8838-1.82084 1.7209-2.360335.8605-.539499 1.8837-.732469 2.8603-.541784C102.97.969275 107.156 2.15521 111.249 3.62721c.93.33253 1.721 1.00923 2.162 1.89289.465.88366.559 1.90686.303 2.8626l-.907 3.2602c-.186.8907-.07 1.8186.325 2.6371.396.8186 1.07 1.4766 1.884 1.872 1.581.8953 3.186 1.8394 4.721 2.7835.511.3209.93.7534 1.255 1.265.326.5116.512 1.0883.582 1.6906.07.6 0 1.2069-.209 1.7743-.21.5674-.535 1.0837-.954 1.5046ZM79.2975 128.5c-27.1843 0-49.2295-22.033-49.2295-49.2128 0-27.1795 22.0452-49.2129 49.2295-49.2129 27.1605 0 49.2055 22.0334 49.2055 49.2129 0 27.1798-22.045 49.2128-49.2055 49.2128Z" clip-rule="evenodd"/>
</svg>
    </div>



        <div class="video-wrapper">
                    <div class="video-cover" style="background-image: url('https://fsd.ch/wp-content/uploads/2025/07/recap-WS-FR.jpg');">
                <button class="play-button" aria-label="Play video"></button>
            </div>
            <div class="video-player">
                <iframe title="A year of demining across the world" width="640" height="360" src="https://www.youtube.com/embed/oS8uEFx1BXQ?feature=oembed&#038;enablejsapi=1" frameborder="0" allow="autoplay; picture-in-picture; fullscreen" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>            </div>
            </div>



<div class="block card newsletter-block border-radius--20 dark-turquoise">
    <div class="newsletter-block__content">
        <h2 class="block--title">Nous protégeons les civil·es des menaces explosives. Faites partie de notre action.
</h2>
        <p>Abonnez-vous à notre newsletter pour suivre nos actualités et progrès sur le terrain. </p>
        <!-- Gravity Form -->
        <!--Get current language from WPML-->
        
                <div class='gf_browser_unknown gform_wrapper gform-theme gform-theme--foundation gform-theme--framework gform-theme--orbital' data-form-theme='orbital' data-form-index='0' id='gform_wrapper_1' ><style>#gform_wrapper_1[data-form-index="0"].gform-theme,[data-parent-form="1_0"]{--gf-color-primary: #204ce5;--gf-color-primary-rgb: 32, 76, 229;--gf-color-primary-contrast: #fff;--gf-color-primary-contrast-rgb: 255, 255, 255;--gf-color-primary-darker: #001AB3;--gf-color-primary-lighter: #527EFF;--gf-color-secondary: #fff;--gf-color-secondary-rgb: 255, 255, 255;--gf-color-secondary-contrast: #112337;--gf-color-secondary-contrast-rgb: 17, 35, 55;--gf-color-secondary-darker: #F5F5F5;--gf-color-secondary-lighter: #FFFFFF;--gf-color-out-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-out-ctrl-light-rgb: 17, 35, 55;--gf-color-out-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-out-ctrl-light-lighter: #F5F5F5;--gf-color-out-ctrl-dark: #585e6a;--gf-color-out-ctrl-dark-rgb: 88, 94, 106;--gf-color-out-ctrl-dark-darker: #112337;--gf-color-out-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-color-in-ctrl: #fff;--gf-color-in-ctrl-rgb: 255, 255, 255;--gf-color-in-ctrl-contrast: #112337;--gf-color-in-ctrl-contrast-rgb: 17, 35, 55;--gf-color-in-ctrl-darker: #F5F5F5;--gf-color-in-ctrl-lighter: #FFFFFF;--gf-color-in-ctrl-primary: #204ce5;--gf-color-in-ctrl-primary-rgb: 32, 76, 229;--gf-color-in-ctrl-primary-contrast: #fff;--gf-color-in-ctrl-primary-contrast-rgb: 255, 255, 255;--gf-color-in-ctrl-primary-darker: #001AB3;--gf-color-in-ctrl-primary-lighter: #527EFF;--gf-color-in-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-in-ctrl-light-rgb: 17, 35, 55;--gf-color-in-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-in-ctrl-light-lighter: #F5F5F5;--gf-color-in-ctrl-dark: #585e6a;--gf-color-in-ctrl-dark-rgb: 88, 94, 106;--gf-color-in-ctrl-dark-darker: #112337;--gf-color-in-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-radius: 3px;--gf-font-size-secondary: 14px;--gf-font-size-tertiary: 13px;--gf-icon-ctrl-number: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z' fill='rgba(17, 35, 55, 0.65)'/%3E%3C/svg%3E");--gf-icon-ctrl-select: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='rgba(17, 35, 55, 0.65)'/%3E%3C/svg%3E");--gf-icon-ctrl-search: url("data:image/svg+xml,%3Csvg width='640' height='640' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M256 128c-70.692 0-128 57.308-128 128 0 70.691 57.308 128 128 128 70.691 0 128-57.309 128-128 0-70.692-57.309-128-128-128zM64 256c0-106.039 85.961-192 192-192s192 85.961 192 192c0 41.466-13.146 79.863-35.498 111.248l154.125 154.125c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0L367.248 412.502C335.862 434.854 297.467 448 256 448c-106.039 0-192-85.962-192-192z' fill='rgba(17, 35, 55, 0.65)'/%3E%3C/svg%3E");--gf-label-space-y-secondary: var(--gf-label-space-y-md-secondary);--gf-ctrl-border-color: #686e77;--gf-ctrl-size: var(--gf-ctrl-size-md);--gf-ctrl-label-color-primary: #112337;--gf-ctrl-label-color-secondary: #112337;--gf-ctrl-choice-size: var(--gf-ctrl-choice-size-md);--gf-ctrl-checkbox-check-size: var(--gf-ctrl-checkbox-check-size-md);--gf-ctrl-radio-check-size: var(--gf-ctrl-radio-check-size-md);--gf-ctrl-btn-font-size: var(--gf-ctrl-btn-font-size-md);--gf-ctrl-btn-padding-x: var(--gf-ctrl-btn-padding-x-md);--gf-ctrl-btn-size: var(--gf-ctrl-btn-size-md);--gf-ctrl-btn-border-color-secondary: #686e77;--gf-ctrl-file-btn-bg-color-hover: #EBEBEB;--gf-field-img-choice-size: var(--gf-field-img-choice-size-md);--gf-field-img-choice-card-space: var(--gf-field-img-choice-card-space-md);--gf-field-img-choice-check-ind-size: var(--gf-field-img-choice-check-ind-size-md);--gf-field-img-choice-check-ind-icon-size: var(--gf-field-img-choice-check-ind-icon-size-md);--gf-field-pg-steps-number-color: rgba(17, 35, 55, 0.8);}</style><div id='gf_1' class='gform_anchor' tabindex='-1'></div>
                        <div class='gform_heading'>
							<p class='gform_required_legend'>« <span class="gfield_required gfield_required_asterisk">*</span> » indique les champs nécessaires</p>
                        </div><form method='post' enctype='multipart/form-data' target='gform_ajax_frame_1' id='gform_1'  action='/fr/?format=feed&#038;type=rss#gf_1' data-formid='1' novalidate>
                        <div class='gform-body gform_body'><div id='gform_fields_1' class='gform_fields top_label form_sublabel_above description_below validation_below'><div id="field_1_1" class="gfield gfield--type-email gfield--input-type-email gfield_contains_required field_sublabel_above gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible"  ><label class='gfield_label gform-field-label' for='input_1_1'>E-mail<span class="gfield_required"><span class="gfield_required gfield_required_asterisk">*</span></span></label><div class='ginput_container ginput_container_email'>
                            <input name='input_1' id='input_1_1' type='email' value='' class='large' tabindex='10'  placeholder='E-mail' aria-required="true" aria-invalid="false"  />
                        </div></div></div></div>
        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_1' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='S&#039;inscrire' tabindex='11' /> <input type='hidden' name='gform_ajax' value='form_id=1&amp;title=&amp;description=&amp;tabindex=10&amp;theme=orbital&amp;hash=b5484e07601bf6dbf87fe34c27929e50' />
            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_1' value='iframe' />
            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_1' id='gform_theme_1' value='orbital' />
            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_1' id='gform_style_settings_1' value='' />
            <input type='hidden' class='gform_hidden' name='is_submit_1' value='1' />
            <input type='hidden' class='gform_hidden' name='gform_submit' value='1' />
            
            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='CHF' value='3tYbbejIg6kSnX3BO8B2+eiSWsjimNVlj1WB+BrtCfqxxElax1h1bzV7elS9t1KcWT0TXNme3pz8Ukp1SLvNUvutki0HrAxPv1TRi0dTU7k/Pt0=' />
            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' />
            <input type='hidden' class='gform_hidden' name='state_1' value='WyJbXSIsIjc3NGRmZDU3NzI4MGIyNzA2N2FjNmQ5Y2NmNDNkMTU2Il0=' />
            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_1' id='gform_target_page_number_1' value='0' />
            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_1' id='gform_source_page_number_1' value='1' />
            <input type='hidden' name='gform_field_values' value='' />
            
        </div>
                        <input type="hidden" id="ct_checkjs_8d317bdcf4aafcfc22149d77babee96d" name="ct_checkjs" value="0" /><script >setTimeout(function(){var ct_input_name = "ct_checkjs_8d317bdcf4aafcfc22149d77babee96d";if (document.getElementById(ct_input_name) !== null) {var ct_input_value = document.getElementById(ct_input_name).value;document.getElementById(ct_input_name).value = document.getElementById(ct_input_name).value.replace(ct_input_value, '8c49409aa8e539a01d5622165423ad5ca3152bb42a1b4329321030637fd062ed');}}, 1000);</script><input
                    class="apbct_special_field apbct_email_id__gravity_form"
                    name="apbct__email_id__gravity_form"
                    aria-label="apbct__label_id__gravity_form"
                    type="text" size="30" maxlength="200" autocomplete="off"
                    value=""
                /></form>
                        </div>
		                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_1' id='gform_ajax_frame_1' title='Cette iframe contient la logique nécessaire pour manipuler Gravity Forms avec Ajax.'></iframe>
		                <script>
gform.initializeOnLoaded( function() {gformInitSpinner( 1, 'https://fsd.ch/wp-content/plugins/gravityforms/images/spinner.svg', false );jQuery('#gform_ajax_frame_1').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_1');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_1').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_1').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_1').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_1').removeClass('gform_validation_error');}setTimeout( function() { /* delay the scroll by 50 milliseconds to fix a bug in chrome */ jQuery(document).scrollTop(jQuery('#gform_wrapper_1').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_1').val();gformInitSpinner( 1, 'https://fsd.ch/wp-content/plugins/gravityforms/images/spinner.svg', false );jQuery(document).trigger('gform_page_loaded', [1, current_page]);window['gf_submitting_1'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_1').replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_1').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [1]);window['gf_submitting_1'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_1').text());}else{jQuery('#gform_1').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger("gform_pre_post_render", [{ formId: "1", currentPage: "current_page", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( "gform_wrapper_1" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( "span" );            visibilitySpan.id = "gform_visibility_test_1";            gformWrapperDiv.insertAdjacentElement( "afterend", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( "gform_visibility_test_1" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 1, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );
</script>
    </div>
    <div class="newsletter-block__bg"></div>
</div>



<div class="block last-posts-block">
    <h2 class="block--title"></h2>
            <a class="btn--secondary" href="https://fsd.ch/fr/actualites">
            Tout voir            <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <!-- <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/> -->
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
        </a>
        <div class="last-posts-list">
                    <a class="last-posts-item" href="https://fsd.ch/fr/deminer-terrain-de-football/">
                                                           <div class="last-posts-item__thumbnail">
                                                            <img wpfc-lazyload-disable="true" decoding="async" src="https://fsd.ch/wp-content/uploads/fly-images/9515/Des-enfants-jouant-au-football-dans-une-ecole-en-Irak-1-380x260.webp" srcset="https://fsd.ch/wp-content/uploads/fly-images/9515/Des-enfants-jouant-au-football-dans-une-ecole-en-Irak-1-380x260.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/9515/Des-enfants-jouant-au-football-dans-une-ecole-en-Irak-1-760x520.webp 2x" alt="">
                                                    </div>
                                                    <div class="last-posts-item__content">
                    <h3 class="last-posts-item__title">Déminer les terrains de foot: pourquoi c&rsquo;est important</h3>
                    <p class="last-posts-item__excerpt">Des lieux où les enfants retournent spontanément Après la fin des hostilités, les enfants retournent naturellement vers leurs terrains de&#8230;</p>
                                            <p class="last-posts-item__categories">
                                                            <span>Mines et restes explosifs</span>
                                                            <span>Enfants</span>
                                                                                        <span>Irak</span>
                                                            <span>Ukraine</span>
                                                            <span>Tadjikistan</span>
                                                    </p>
                                    </div>
            </a>
                    <a class="last-posts-item" href="https://fsd.ch/fr/journee-internationale-de-sensibilisation-mines/">
                                                           <div class="last-posts-item__thumbnail">
                                                            <img wpfc-lazyload-disable="true" decoding="async" src="https://fsd.ch/wp-content/uploads/fly-images/8868/Deminers-carrying-out-clearance-in-a-field-with-marking-Ukraine-2025-scaled-380x260.webp" srcset="https://fsd.ch/wp-content/uploads/fly-images/8868/Deminers-carrying-out-clearance-in-a-field-with-marking-Ukraine-2025-scaled-380x260.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8868/Deminers-carrying-out-clearance-in-a-field-with-marking-Ukraine-2025-scaled-760x520.webp 2x" alt="">
                                                    </div>
                                                    <div class="last-posts-item__content">
                    <h3 class="last-posts-item__title">Journée internationale de la sensibilisation au problème des mines &#8211; 4 avril 2026</h3>
                    <p class="last-posts-item__excerpt">PDF déclaration conjointe complète (mars 2026) Investir dans la paix, investir dans la lutte antimines Genève, le 31 mars 2026&#8230;</p>
                                            <p class="last-posts-item__categories">
                                                            <span>Mines et restes explosifs</span>
                                                            <span>Déminage humanitaire</span>
                                                                                </p>
                                    </div>
            </a>
                    <a class="last-posts-item" href="https://fsd.ch/fr/fsd-ukraine-actualites/">
                                                           <div class="last-posts-item__thumbnail">
                                                            <img wpfc-lazyload-disable="true" decoding="async" src="https://fsd.ch/wp-content/uploads/fly-images/6751/FSD-Ukraine-Risk-education-session-in-Kyiv-March-2025-scaled-380x260.webp" srcset="https://fsd.ch/wp-content/uploads/fly-images/6751/FSD-Ukraine-Risk-education-session-in-Kyiv-March-2025-scaled-380x260.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/6751/FSD-Ukraine-Risk-education-session-in-Kyiv-March-2025-scaled-760x520.webp 2x" alt="">
                                                    </div>
                                                    <div class="last-posts-item__content">
                    <h3 class="last-posts-item__title">Notre programme de lutte antimines en Ukraine</h3>
                    <p class="last-posts-item__excerpt">PDF brochure Ukraine complète (mars 2026) Nos opérations en cours &#8211; mars 2026 En mars 2026, plus de 450 employé·es&#8230;</p>
                                            <p class="last-posts-item__categories">
                                                            <span>Déminage humanitaire</span>
                                                                                        <span>Ukraine</span>
                                                    </p>
                                    </div>
            </a>
            </div>
</div>



<section class="block swiper-block-container">
           <div class="btn-wrapper">
            <div class="button-prev">
                <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/>
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
            </div>
            <div class="button-next">
                <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/>
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
            </div>
       </div>
       <div class="swiper-breakout">
       <div class="swiper swiper-block">
            <div class="swiper-wrapper">
                                    <div class="swiper-block__item swiper-slide">
                        <div class="swiper-zoom-container">
                            <figure>
                                <picture>
                                    <source
                                        media="(min-width: 1281px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8085/Clearance-team-working-in-high-grass-Ukraine-2022-1920x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8085/Clearance-team-working-in-high-grass-Ukraine-2022-3840x99999.webp 2x">
                                    <source
                                        media="(max-width: 1280px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8085/Clearance-team-working-in-high-grass-Ukraine-2022-1280x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8085/Clearance-team-working-in-high-grass-Ukraine-2022-2560x99999.webp 2x">
                                    <source
                                        media="(max-width: 860px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8085/Clearance-team-working-in-high-grass-Ukraine-2022-860x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8085/Clearance-team-working-in-high-grass-Ukraine-2022-1720x99999.webp 2x">
                                    <source
                                        media="(max-width: 400px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8085/Clearance-team-working-in-high-grass-Ukraine-2022-400x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8085/Clearance-team-working-in-high-grass-Ukraine-2022-800x99999.webp 2x">
                                    <img wpfc-lazyload-disable="true" fetchpriority="high"
                                        class="ofi-image"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8085/Clearance-team-working-in-high-grass-Ukraine-2022-1280x99999.webp 1280w, https://fsd.ch/wp-content/uploads/fly-images/8085/Clearance-team-working-in-high-grass-Ukraine-2022-1920x99999.webp 1920w"
                                        src="https://fsd.ch/wp-content/uploads/fly-images/8085/Clearance-team-working-in-high-grass-Ukraine-2022-1920x99999.webp"
                                        alt=""
                                        loading="eager"
                                        decoding="async"
                                        width="1920"
                                        height="1080">
                                </picture>
                            </figure>
                        </div>
                    </div>
                                    <div class="swiper-block__item swiper-slide">
                        <div class="swiper-zoom-container">
                            <figure>
                                <picture>
                                    <source
                                        media="(min-width: 1281px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8090/EORE-session-with-children-Philippines-2023-1920x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8090/EORE-session-with-children-Philippines-2023-3840x99999.webp 2x">
                                    <source
                                        media="(max-width: 1280px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8090/EORE-session-with-children-Philippines-2023-1280x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8090/EORE-session-with-children-Philippines-2023-2560x99999.webp 2x">
                                    <source
                                        media="(max-width: 860px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8090/EORE-session-with-children-Philippines-2023-860x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8090/EORE-session-with-children-Philippines-2023-1720x99999.webp 2x">
                                    <source
                                        media="(max-width: 400px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8090/EORE-session-with-children-Philippines-2023-400x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8090/EORE-session-with-children-Philippines-2023-800x99999.webp 2x">
                                    <img wpfc-lazyload-disable="true"                                         class="ofi-image"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8090/EORE-session-with-children-Philippines-2023-1280x99999.webp 1280w, https://fsd.ch/wp-content/uploads/fly-images/8090/EORE-session-with-children-Philippines-2023-1920x99999.webp 1920w"
                                        src="https://fsd.ch/wp-content/uploads/fly-images/8090/EORE-session-with-children-Philippines-2023-1920x99999.webp"
                                        alt=""
                                        loading="lazy"
                                        decoding="async"
                                        width="1920"
                                        height="1080">
                                </picture>
                            </figure>
                        </div>
                    </div>
                                    <div class="swiper-block__item swiper-slide">
                        <div class="swiper-zoom-container">
                            <figure>
                                <picture>
                                    <source
                                        media="(min-width: 1281px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8099/Handlers-with-mine-detection-dogs-during-training-Ukraine-2025-1920x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8099/Handlers-with-mine-detection-dogs-during-training-Ukraine-2025-3840x99999.webp 2x">
                                    <source
                                        media="(max-width: 1280px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8099/Handlers-with-mine-detection-dogs-during-training-Ukraine-2025-1280x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8099/Handlers-with-mine-detection-dogs-during-training-Ukraine-2025-2560x99999.webp 2x">
                                    <source
                                        media="(max-width: 860px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8099/Handlers-with-mine-detection-dogs-during-training-Ukraine-2025-860x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8099/Handlers-with-mine-detection-dogs-during-training-Ukraine-2025-1720x99999.webp 2x">
                                    <source
                                        media="(max-width: 400px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8099/Handlers-with-mine-detection-dogs-during-training-Ukraine-2025-400x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8099/Handlers-with-mine-detection-dogs-during-training-Ukraine-2025-800x99999.webp 2x">
                                    <img wpfc-lazyload-disable="true"                                         class="ofi-image"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8099/Handlers-with-mine-detection-dogs-during-training-Ukraine-2025-1280x99999.webp 1280w, https://fsd.ch/wp-content/uploads/fly-images/8099/Handlers-with-mine-detection-dogs-during-training-Ukraine-2025-1920x99999.webp 1920w"
                                        src="https://fsd.ch/wp-content/uploads/fly-images/8099/Handlers-with-mine-detection-dogs-during-training-Ukraine-2025-1920x99999.webp"
                                        alt=""
                                        loading="lazy"
                                        decoding="async"
                                        width="1920"
                                        height="1080">
                                </picture>
                            </figure>
                        </div>
                    </div>
                                    <div class="swiper-block__item swiper-slide">
                        <div class="swiper-zoom-container">
                            <figure>
                                <picture>
                                    <source
                                        media="(min-width: 1281px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8089/Deminer-working-in-minefield-Tajikistan-2023-1920x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8089/Deminer-working-in-minefield-Tajikistan-2023-3840x99999.webp 2x">
                                    <source
                                        media="(max-width: 1280px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8089/Deminer-working-in-minefield-Tajikistan-2023-1280x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8089/Deminer-working-in-minefield-Tajikistan-2023-2560x99999.webp 2x">
                                    <source
                                        media="(max-width: 860px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8089/Deminer-working-in-minefield-Tajikistan-2023-860x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8089/Deminer-working-in-minefield-Tajikistan-2023-1720x99999.webp 2x">
                                    <source
                                        media="(max-width: 400px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8089/Deminer-working-in-minefield-Tajikistan-2023-400x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8089/Deminer-working-in-minefield-Tajikistan-2023-800x99999.webp 2x">
                                    <img wpfc-lazyload-disable="true"                                         class="ofi-image"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8089/Deminer-working-in-minefield-Tajikistan-2023-1280x99999.webp 1280w, https://fsd.ch/wp-content/uploads/fly-images/8089/Deminer-working-in-minefield-Tajikistan-2023-1920x99999.webp 1920w"
                                        src="https://fsd.ch/wp-content/uploads/fly-images/8089/Deminer-working-in-minefield-Tajikistan-2023-1920x99999.webp"
                                        alt=""
                                        loading="lazy"
                                        decoding="async"
                                        width="1920"
                                        height="1080">
                                </picture>
                            </figure>
                        </div>
                    </div>
                                    <div class="swiper-block__item swiper-slide">
                        <div class="swiper-zoom-container">
                            <figure>
                                <picture>
                                    <source
                                        media="(min-width: 1281px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8083/Clearance-team-walking-to-the-hazardeous-area-Iraq-2024-1920x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8083/Clearance-team-walking-to-the-hazardeous-area-Iraq-2024-3840x99999.webp 2x">
                                    <source
                                        media="(max-width: 1280px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8083/Clearance-team-walking-to-the-hazardeous-area-Iraq-2024-1280x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8083/Clearance-team-walking-to-the-hazardeous-area-Iraq-2024-2560x99999.webp 2x">
                                    <source
                                        media="(max-width: 860px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8083/Clearance-team-walking-to-the-hazardeous-area-Iraq-2024-860x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8083/Clearance-team-walking-to-the-hazardeous-area-Iraq-2024-1720x99999.webp 2x">
                                    <source
                                        media="(max-width: 400px)"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8083/Clearance-team-walking-to-the-hazardeous-area-Iraq-2024-400x99999.webp 1x, https://fsd.ch/wp-content/uploads/fly-images/8083/Clearance-team-walking-to-the-hazardeous-area-Iraq-2024-800x99999.webp 2x">
                                    <img wpfc-lazyload-disable="true"                                         class="ofi-image"
                                        srcset="https://fsd.ch/wp-content/uploads/fly-images/8083/Clearance-team-walking-to-the-hazardeous-area-Iraq-2024-1280x99999.webp 1280w, https://fsd.ch/wp-content/uploads/fly-images/8083/Clearance-team-walking-to-the-hazardeous-area-Iraq-2024-1920x99999.webp 1920w"
                                        src="https://fsd.ch/wp-content/uploads/fly-images/8083/Clearance-team-walking-to-the-hazardeous-area-Iraq-2024-1920x99999.webp"
                                        alt=""
                                        loading="lazy"
                                        decoding="async"
                                        width="1920"
                                        height="1080">
                                </picture>
                            </figure>
                        </div>
                    </div>
                            </div>
       </div>
   </div>
</section>



<div class="block card featured-page-block light-blue border-radius--20">
            <span class="featured-page-block__headline headline border-radius--20">
            QUIZ        </span>
        <div class="featured-page-block__description">
        <p><h2>Et vous? Pourriez vous être démineur·euse?</h2>
<p><span data-teams="true">Avez-vous les qualités requises pour exercer ce métier? Faites le test pour le découvrir.</span></p>
</p>
    </div>
            <a class="btn--primary" href="https://fsd.ch/quiz/pourriez-vous-etre-demineur%c2%b7euse/">
            À vous de jouer                            <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <!-- <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/> -->
  <path fill="#FCFCFC" d="M13.5833 17.6046c.2393.0014.4686-.0946.6377-.2637l4.1846-4.1831c.3511-.3525.3511-.9244 0-1.2769l-4.2207-4.22225c-.1691-.17054-.3998-.26656-.6391-.26656-.2394 0-.4701.09602-.6378.26656-.3525.35255-.3525.92296 0 1.27694l2.7101 2.71011H7.23299c-.48441.02-.86847.4185-.86847.9028 0 .4859.38406.8843.86847.9043h8.32091l-2.614 2.6112c-.258.258-.3354.6464-.195.9846.1391.3368.4687.5574.8341.556h.0043Z"/>
</svg>
                    </a>
                <svg class="icon-mine" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 160 160">
  <path fill="$current-color" fill-rule="evenodd" d="m120.411 25.17-.442.4325c5.488 4.1718 10.302 9.1598 14.278 14.785l.582-.5906c.418-.4302.93-.7581 1.511-.9604.558-.2023 1.163-.2744 1.768-.2093.604.0651 1.186.2651 1.697.5837.512.3186.93.7511 1.256 1.2603.953 1.5232 1.883 3.144 2.79 4.716.396.8162 1.047 1.479 1.861 1.8766.814.4 1.744.5139 2.651.3256l3.255-.893c.954-.2674 1.977-.1628 2.861.2907.883.4558 1.558 1.2255 1.883 2.158 1.488 4.0927 2.674 8.2808 3.558 12.5363.209.986 0 2.0092-.535 2.8603-.535.8511-1.372 1.4651-2.348 1.7209l-2.837.7441c-.93.2395-1.745.8139-2.279 1.6115-.558.7976-.791 1.765-.675 2.7231.395 2.9742.628 5.9647.675 8.9598-.047 2.9952-.28 5.988-.675 8.9622-.116.9557.117 1.9254.675 2.7231.534.7976 1.349 1.3697 2.279 1.6115l2.837.7441c.976.2558 1.813.8697 2.348 1.7208.535.8512.744 1.872.535 2.8603-.884 4.2559-2.07 8.4439-3.558 12.5369-.325.93-1 1.702-1.883 2.158-.884.453-1.907.558-2.861.29l-3.255-.893c-.907-.19-1.837-.074-2.651.323-.814.4-1.465 1.063-1.861 1.879-.907 1.572-1.837 3.193-2.79 4.716-.326.51-.744.94-1.256 1.261-.511.318-1.093.518-1.697.583-.605.066-1.21-.007-1.768-.209-.581-.202-1.093-.53-1.511-.96l-1.279-1.289c-4.07 5.551-8.976 10.456-14.534 14.532l1.186 1.181c.442.421.767.935.953 1.502.21.57.279 1.177.21 1.777-.047.6-.256 1.179-.582 1.691-.326.511-.744.942-1.256 1.262-1.511.945-3.139 1.891-4.72 2.786-.814.393-1.465 1.054-1.86 1.87-.419.819-.535 1.746-.326 2.637l.884 3.263c.256.955.162 1.979-.303 2.862-.441.882-1.209 1.558-2.139 1.893-4.093 1.47-8.279 2.658-12.5343 3.553-1 .191-2.0232-.002-2.8603-.539-.8605-.54-1.4648-1.384-1.7206-2.363l-.7441-2.816c-.2558-.937-.8141-1.756-1.628-2.297-.7906-.545-1.7674-.777-2.7208-.654-2.9766.391-5.953.612-8.9528.668-2.9998-.056-5.9996-.277-8.9762-.668-.9534-.123-1.907.109-2.7209.654-.7906.541-1.372 1.36-1.6045 2.297l-.7441 2.816c-.2558.979-.8602 1.823-1.7206 2.363-.8604.537-1.8836.73-2.8603.539-4.2555-.895-8.4413-2.083-12.5341-3.553-.9301-.335-1.6976-1.011-2.1627-1.893-.4418-.883-.5579-1.907-.2789-2.865l.8836-3.26c.186-.891.0696-1.818-.3258-2.637-.3953-.816-1.0695-1.477-1.8834-1.87-1.5581-.895-3.1858-1.841-4.6973-2.786-.5116-.32-.9536-.751-1.2792-1.262-.3023-.512-.5114-1.091-.5812-1.691-.0697-.6.0233-1.207.2094-1.777.2093-.567.5346-1.081.9765-1.502l.5347-.539c-5.6275-3.988-10.6038-8.814-14.7663-14.295l-.2094.207c-.4186.428-.9301.758-1.4882.961-.5813.202-1.1858.274-1.7904.209-.6047-.065-1.1629-.265-1.6745-.586-.5116-.319-.9533-.749-1.2788-1.258-.9302-1.523-1.8839-3.144-2.7908-4.716-.3953-.819-1.0465-1.479-1.8604-1.879-.8139-.4-1.7438-.514-2.6275-.325l-3.27899.892c-.95343.27-1.97664.166-2.86031-.29-.88366-.454-1.55789-1.226-1.88345-2.158-1.46502-4.093-2.650984-8.281-3.557901-12.5342-.186034-.9883-.000116-2.0115.534732-2.8626.534849-.8488 1.395379-1.465 2.372059-1.7185l2.81382-.7441c.93017-.2419 1.74404-.8139 2.30215-1.6139.53485-.7976.76739-1.7649.65111-2.7207-.39532-2.9742-.60477-5.9671-.67453-8.9622.06976-2.9952.27921-5.9856.67453-8.9599.11628-.958-.11626-1.9254-.65111-2.723-.55811-.7976-1.37198-1.372-2.30215-1.6139l-2.81382-.7441c-.97668-.2534-1.83721-.8697-2.372059-1.7185-.534848-.8511-.720766-1.8743-.534732-2.8626.906917-4.2532 2.092881-8.4413 3.557901-12.534.32556-.9325.99979-1.7046 1.88345-2.158.88367-.4558 1.90688-.5581 2.86031-.2907l3.27899.8929c.8837.1884 1.8136.0745 2.6275-.3255.8139-.4 1.4651-1.0604 1.8604-1.8789.9069-1.572 1.8606-3.1929 2.7908-4.716.3255-.5093.7672-.9395 1.2788-1.2581.5116-.3209 1.0698-.5208 1.6745-.5836.6046-.0651 1.2091.0046 1.7904.2069.4186.1512.8138.3698 1.1394.6488 4.116-5.5554 9.0461-10.4598 14.6038-14.5292-.2325-.3279-.442-.693-.5815-1.086-.2093-.5674-.2788-1.1743-.209-1.7743.0697-.6023.2556-1.179.5812-1.6906.3255-.5116.7441-.9441 1.2557-1.265 1.5348-.9441 3.1394-1.8882 4.7207-2.7835.8139-.3954 1.4882-1.0534 1.8835-1.872.3953-.8185.5118-1.7464.3257-2.6371l-.9069-3.2602c-.2558-.95574-.1628-1.97894.3023-2.8626.4418-.88366 1.2325-1.56036 2.1627-1.89289 4.0927-1.472 8.2785-2.66026 12.5341-3.555549.9767-.190685 1.9995.002285 2.8599.541784.8372.539495 1.4652 1.383665 1.721 2.360335l.744 2.81608c.2326.93947.814 1.75569 1.6046 2.29984.7906.54183 1.7674.77439 2.7209.65347 2.9765-.39067 5.9763-.61395 8.9761-.66744 2.9766.05349 5.9763.27677 8.9528.66744.9534.12092 1.9302-.11164 2.7209-.65347.7906-.54415 1.372-1.36037 1.6045-2.29984l.7441-2.81608c.2558-.97667.8838-1.82084 1.7209-2.360335.8605-.539499 1.8837-.732469 2.8603-.541784C102.97.969275 107.156 2.15521 111.249 3.62721c.93.33253 1.721 1.00923 2.162 1.89289.465.88366.559 1.90686.303 2.8626l-.907 3.2602c-.186.8907-.07 1.8186.325 2.6371.396.8186 1.07 1.4766 1.884 1.872 1.581.8953 3.186 1.8394 4.721 2.7835.511.3209.93.7534 1.255 1.265.326.5116.512 1.0883.582 1.6906.07.6 0 1.2069-.209 1.7743-.21.5674-.535 1.0837-.954 1.5046ZM79.2975 128.5c-27.1843 0-49.2295-22.033-49.2295-49.2128 0-27.1795 22.0452-49.2129 49.2295-49.2129 27.1605 0 49.2055 22.0334 49.2055 49.2129 0 27.1798-22.045 49.2128-49.2055 49.2128Z" clip-rule="evenodd"/>
</svg>
        <svg class="icon-mine" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 160 160">
  <path fill="$current-color" fill-rule="evenodd" d="m120.411 25.17-.442.4325c5.488 4.1718 10.302 9.1598 14.278 14.785l.582-.5906c.418-.4302.93-.7581 1.511-.9604.558-.2023 1.163-.2744 1.768-.2093.604.0651 1.186.2651 1.697.5837.512.3186.93.7511 1.256 1.2603.953 1.5232 1.883 3.144 2.79 4.716.396.8162 1.047 1.479 1.861 1.8766.814.4 1.744.5139 2.651.3256l3.255-.893c.954-.2674 1.977-.1628 2.861.2907.883.4558 1.558 1.2255 1.883 2.158 1.488 4.0927 2.674 8.2808 3.558 12.5363.209.986 0 2.0092-.535 2.8603-.535.8511-1.372 1.4651-2.348 1.7209l-2.837.7441c-.93.2395-1.745.8139-2.279 1.6115-.558.7976-.791 1.765-.675 2.7231.395 2.9742.628 5.9647.675 8.9598-.047 2.9952-.28 5.988-.675 8.9622-.116.9557.117 1.9254.675 2.7231.534.7976 1.349 1.3697 2.279 1.6115l2.837.7441c.976.2558 1.813.8697 2.348 1.7208.535.8512.744 1.872.535 2.8603-.884 4.2559-2.07 8.4439-3.558 12.5369-.325.93-1 1.702-1.883 2.158-.884.453-1.907.558-2.861.29l-3.255-.893c-.907-.19-1.837-.074-2.651.323-.814.4-1.465 1.063-1.861 1.879-.907 1.572-1.837 3.193-2.79 4.716-.326.51-.744.94-1.256 1.261-.511.318-1.093.518-1.697.583-.605.066-1.21-.007-1.768-.209-.581-.202-1.093-.53-1.511-.96l-1.279-1.289c-4.07 5.551-8.976 10.456-14.534 14.532l1.186 1.181c.442.421.767.935.953 1.502.21.57.279 1.177.21 1.777-.047.6-.256 1.179-.582 1.691-.326.511-.744.942-1.256 1.262-1.511.945-3.139 1.891-4.72 2.786-.814.393-1.465 1.054-1.86 1.87-.419.819-.535 1.746-.326 2.637l.884 3.263c.256.955.162 1.979-.303 2.862-.441.882-1.209 1.558-2.139 1.893-4.093 1.47-8.279 2.658-12.5343 3.553-1 .191-2.0232-.002-2.8603-.539-.8605-.54-1.4648-1.384-1.7206-2.363l-.7441-2.816c-.2558-.937-.8141-1.756-1.628-2.297-.7906-.545-1.7674-.777-2.7208-.654-2.9766.391-5.953.612-8.9528.668-2.9998-.056-5.9996-.277-8.9762-.668-.9534-.123-1.907.109-2.7209.654-.7906.541-1.372 1.36-1.6045 2.297l-.7441 2.816c-.2558.979-.8602 1.823-1.7206 2.363-.8604.537-1.8836.73-2.8603.539-4.2555-.895-8.4413-2.083-12.5341-3.553-.9301-.335-1.6976-1.011-2.1627-1.893-.4418-.883-.5579-1.907-.2789-2.865l.8836-3.26c.186-.891.0696-1.818-.3258-2.637-.3953-.816-1.0695-1.477-1.8834-1.87-1.5581-.895-3.1858-1.841-4.6973-2.786-.5116-.32-.9536-.751-1.2792-1.262-.3023-.512-.5114-1.091-.5812-1.691-.0697-.6.0233-1.207.2094-1.777.2093-.567.5346-1.081.9765-1.502l.5347-.539c-5.6275-3.988-10.6038-8.814-14.7663-14.295l-.2094.207c-.4186.428-.9301.758-1.4882.961-.5813.202-1.1858.274-1.7904.209-.6047-.065-1.1629-.265-1.6745-.586-.5116-.319-.9533-.749-1.2788-1.258-.9302-1.523-1.8839-3.144-2.7908-4.716-.3953-.819-1.0465-1.479-1.8604-1.879-.8139-.4-1.7438-.514-2.6275-.325l-3.27899.892c-.95343.27-1.97664.166-2.86031-.29-.88366-.454-1.55789-1.226-1.88345-2.158-1.46502-4.093-2.650984-8.281-3.557901-12.5342-.186034-.9883-.000116-2.0115.534732-2.8626.534849-.8488 1.395379-1.465 2.372059-1.7185l2.81382-.7441c.93017-.2419 1.74404-.8139 2.30215-1.6139.53485-.7976.76739-1.7649.65111-2.7207-.39532-2.9742-.60477-5.9671-.67453-8.9622.06976-2.9952.27921-5.9856.67453-8.9599.11628-.958-.11626-1.9254-.65111-2.723-.55811-.7976-1.37198-1.372-2.30215-1.6139l-2.81382-.7441c-.97668-.2534-1.83721-.8697-2.372059-1.7185-.534848-.8511-.720766-1.8743-.534732-2.8626.906917-4.2532 2.092881-8.4413 3.557901-12.534.32556-.9325.99979-1.7046 1.88345-2.158.88367-.4558 1.90688-.5581 2.86031-.2907l3.27899.8929c.8837.1884 1.8136.0745 2.6275-.3255.8139-.4 1.4651-1.0604 1.8604-1.8789.9069-1.572 1.8606-3.1929 2.7908-4.716.3255-.5093.7672-.9395 1.2788-1.2581.5116-.3209 1.0698-.5208 1.6745-.5836.6046-.0651 1.2091.0046 1.7904.2069.4186.1512.8138.3698 1.1394.6488 4.116-5.5554 9.0461-10.4598 14.6038-14.5292-.2325-.3279-.442-.693-.5815-1.086-.2093-.5674-.2788-1.1743-.209-1.7743.0697-.6023.2556-1.179.5812-1.6906.3255-.5116.7441-.9441 1.2557-1.265 1.5348-.9441 3.1394-1.8882 4.7207-2.7835.8139-.3954 1.4882-1.0534 1.8835-1.872.3953-.8185.5118-1.7464.3257-2.6371l-.9069-3.2602c-.2558-.95574-.1628-1.97894.3023-2.8626.4418-.88366 1.2325-1.56036 2.1627-1.89289 4.0927-1.472 8.2785-2.66026 12.5341-3.555549.9767-.190685 1.9995.002285 2.8599.541784.8372.539495 1.4652 1.383665 1.721 2.360335l.744 2.81608c.2326.93947.814 1.75569 1.6046 2.29984.7906.54183 1.7674.77439 2.7209.65347 2.9765-.39067 5.9763-.61395 8.9761-.66744 2.9766.05349 5.9763.27677 8.9528.66744.9534.12092 1.9302-.11164 2.7209-.65347.7906-.54415 1.372-1.36037 1.6045-2.29984l.7441-2.81608c.2558-.97667.8838-1.82084 1.7209-2.360335.8605-.539499 1.8837-.732469 2.8603-.541784C102.97.969275 107.156 2.15521 111.249 3.62721c.93.33253 1.721 1.00923 2.162 1.89289.465.88366.559 1.90686.303 2.8626l-.907 3.2602c-.186.8907-.07 1.8186.325 2.6371.396.8186 1.07 1.4766 1.884 1.872 1.581.8953 3.186 1.8394 4.721 2.7835.511.3209.93.7534 1.255 1.265.326.5116.512 1.0883.582 1.6906.07.6 0 1.2069-.209 1.7743-.21.5674-.535 1.0837-.954 1.5046ZM79.2975 128.5c-27.1843 0-49.2295-22.033-49.2295-49.2128 0-27.1795 22.0452-49.2129 49.2295-49.2129 27.1605 0 49.2055 22.0334 49.2055 49.2129 0 27.1798-22.045 49.2128-49.2055 49.2128Z" clip-rule="evenodd"/>
</svg>
    </div>



<p class="wp-block-paragraph"></p>
    </section>



</main>

<footer class="footer">
    <div class="grid--footer">
        <div class="contact">
            <a href="https://fsd.ch/fr/" class="logo"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 312 85.45">
    <g id="logo_fsd">
        <path fill="#007bd3" d="M42.67 34.32c.2-.03.41-.08.6-.16.27-.12.51-.29.71-.5L64.2 13.45c.23-.23.4-.5.51-.8.11-.3.15-.63.11-.95-.03-.32-.14-.63-.31-.9-.17-.27-.4-.5-.67-.67-.81-.5-1.68-1.01-2.52-1.49-.44-.21-.79-.56-1-1-.21-.44-.27-.93-.17-1.41l.48-1.74c.14-.51.09-1.06-.16-1.53-.24-.47-.65-.83-1.15-1.01-2.19-.79-4.42-1.42-6.69-1.9-.53-.1-1.07 0-1.53.29-.45.29-.78.74-.92 1.26l-.4 1.5c-.13.5-.44.94-.86 1.23-.43.29-.94.41-1.45.35-1.59-.21-3.19-.33-4.79-.36-1.6.03-3.2.15-4.79.36-.51.07-1.03-.06-1.45-.35-.43-.29-.73-.73-.86-1.23l-.4-1.5c-.14-.52-.46-.97-.92-1.26-.45-.29-1-.39-1.53-.29-2.27.48-4.51 1.11-6.69 1.9-.5.18-.91.54-1.15 1.01-.24.47-.3 1.02-.16 1.53l.48 1.74c.1.48.04.97-.17 1.41-.21.44-.57.79-1 1-.84.48-1.71.98-2.52 1.49-.27.17-.5.4-.67.67-.17.27-.28.58-.31.9-.03.32 0 .64.11.95.11.3.28.58.51.8l20.22 20.21c.2.21.44.39.71.5.19.08.39.14.6.16Z"/>
        <path fill="#05c293" d="M42.78 51.13c-.2.03-.41.08-.6.16-.27.12-.51.29-.71.5L21.25 72c-.23.23-.4.5-.51.8s-.15.63-.11.95c.03.32.14.63.31.9.17.27.4.5.67.68.81.5 1.68 1.01 2.52 1.49.44.21.79.56 1 1 .21.44.27.93.17 1.41l-.48 1.74c-.14.51-.09 1.06.16 1.53.24.47.65.83 1.15 1.01 2.19.79 4.42 1.42 6.69 1.9.53.1 1.07 0 1.53-.29.45-.29.78-.74.92-1.26l.4-1.5c.13-.5.44-.94.86-1.23s.94-.41 1.45-.35c1.59.21 3.19.33 4.79.36 1.6-.03 3.2-.15 4.79-.36.51-.07 1.03.06 1.45.35s.73.73.86 1.23l.4 1.5c.14.52.46.97.92 1.26.45.29 1 .39 1.53.29 2.27-.48 4.51-1.11 6.69-1.9.5-.18.91-.54 1.15-1.01.24-.47.3-1.02.16-1.53l-.48-1.74c-.1-.48-.04-.97.17-1.41.21-.44.57-.79 1-1 .84-.48 1.71-.98 2.52-1.49.27-.17.5-.4.67-.68.17-.27.28-.58.31-.9.03-.32 0-.64-.11-.95s-.28-.58-.51-.8L44.07 51.79c-.2-.21-.44-.39-.71-.5-.19-.08-.39-.14-.6-.16Z"/>
        <path fill="#06d6d6" d="M51.13 42.67c.03.2.08.41.16.6.12.27.29.51.5.71L72 64.2c.23.23.5.4.8.51.3.11.63.15.95.11.32-.03.63-.14.9-.31.27-.17.5-.4.68-.67.5-.81 1.01-1.68 1.49-2.52.21-.44.56-.79 1-1 .44-.21.93-.27 1.41-.17l1.74.48c.51.14 1.06.09 1.53-.16.47-.24.83-.65 1.01-1.15.79-2.19 1.42-4.42 1.9-6.69.1-.53 0-1.07-.29-1.53-.29-.45-.74-.78-1.26-.92l-1.5-.4c-.5-.13-.94-.44-1.23-.86-.29-.43-.41-.94-.35-1.45.21-1.59.33-3.19.36-4.79-.03-1.6-.15-3.2-.36-4.79-.07-.51.06-1.03.35-1.45.29-.43.73-.73 1.23-.86l1.5-.4c.52-.14.97-.46 1.26-.92.29-.45.39-1 .29-1.53-.48-2.27-1.11-4.51-1.9-6.69-.18-.5-.54-.91-1.01-1.15-.47-.24-1.02-.3-1.53-.16l-1.74.48c-.48.1-.97.04-1.41-.17-.44-.21-.79-.57-1-1-.48-.84-.98-1.71-1.49-2.52-.17-.27-.4-.5-.68-.67-.27-.17-.58-.28-.9-.31-.32-.03-.64 0-.95.11-.3.11-.58.28-.8.51L51.79 41.38c-.21.2-.39.44-.5.71-.08.19-.14.39-.16.6Z"/>
        <path fill="#0fbaff" d="M34.32 42.78c-.03-.2-.08-.41-.16-.6-.12-.27-.29-.51-.5-.71L13.44 21.25c-.23-.23-.5-.4-.8-.51-.3-.11-.63-.15-.95-.11-.32.03-.63.14-.9.31-.27.17-.5.4-.68.67-.5.81-1.01 1.68-1.49 2.52-.21.44-.56.79-1 1-.44.21-.93.27-1.41.17l-1.74-.48c-.51-.14-1.06-.09-1.53.16-.47.24-.83.65-1.01 1.15-.79 2.19-1.42 4.42-1.9 6.69-.1.53 0 1.07.29 1.53.29.45.74.78 1.26.92l1.5.4c.5.13.94.44 1.23.86.29.43.41.94.35 1.45-.21 1.59-.33 3.19-.36 4.79.03 1.6.15 3.2.36 4.79.07.51-.06 1.03-.35 1.45-.29.43-.73.73-1.23.86l-1.5.4c-.52.14-.97.46-1.26.92-.29.45-.39 1-.29 1.53.48 2.27 1.11 4.51 1.9 6.69.18.5.54.91 1.01 1.15.47.24 1.02.3 1.53.16l1.74-.48c.48-.1.97-.04 1.41.17.44.21.79.57 1 1 .48.84.98 1.71 1.49 2.52.17.27.4.5.68.67.27.17.58.28.9.31.32.03.64 0 .95-.11.3-.11.58-.28.8-.51l20.21-20.22c.21-.2.39-.44.5-.71.08-.19.14-.39.16-.6Z"/>
    </g>
    <g id="fsd">
        <path d="M120 5.11h49.38v13.44H136.1v17.4h29.87v12.88H136.1v32.31h-16.11V5.11Zm86.4 77.04c-5.93 0-11.19-.85-15.77-2.54-4.55-1.69-8.15-4.35-10.79-7.96-2.61-3.61-3.88-8.21-3.8-13.78h16.44c.15 4.07 1.45 6.98 3.91 8.75 2.46 1.73 5.89 2.6 10.29 2.6 4.06 0 7.29-.72 9.68-2.15 2.42-1.47 3.63-3.63 3.63-6.5 0-2-.49-3.65-1.45-4.97-.97-1.32-2.65-2.5-5.03-3.56-2.35-1.05-5.82-2.24-10.4-3.56-5.74-1.62-10.4-3.33-13.98-5.14-3.58-1.81-6.38-4.14-8.39-7-1.98-2.9-2.96-6.57-2.96-11.01 0-7.12 2.5-12.43 7.49-15.93 5.03-3.5 11.82-5.25 20.36-5.25 5.37 0 10.2.81 14.49 2.43 4.29 1.62 7.68 4.09 10.18 7.4 2.54 3.28 3.8 7.32 3.8 12.14h-16.44c.15-3.01-.95-5.33-3.3-6.95-2.31-1.62-5.24-2.43-8.78-2.43s-6.19.64-8.28 1.92c-2.09 1.24-3.13 3.09-3.13 5.54 0 1.54.47 2.88 1.4 4.01.97 1.09 2.68 2.18 5.15 3.28 2.5 1.09 6.15 2.33 10.96 3.73 6.15 1.81 10.94 3.65 14.37 5.54 3.47 1.88 6.06 4.29 7.77 7.23 1.72 2.94 2.57 6.8 2.57 11.58 0 7.64-2.72 13.33-8.17 17.06-5.44 3.69-12.71 5.54-21.81 5.54Zm67.12-77.04c8.05 0 14.95 1.51 20.69 4.52 5.78 2.97 10.18 7.3 13.2 12.99 3.06 5.65 4.59 12.41 4.59 20.28s-1.55 15.06-4.64 20.78c-3.06 5.72-7.48 10.07-13.26 13.05-5.74 2.94-12.6 4.41-20.58 4.41h-28.24V5.11h28.24Zm-1.62 62.46c7.9 0 13.8-2.03 17.67-6.1s5.82-10.28 5.82-18.64c0-7.87-2.05-13.88-6.15-18.02-4.1-4.14-9.88-6.21-17.34-6.21h-10.51v48.97h10.51Z" style="fill:#fff"/>
    </g>
</svg>
</a>
            <p>FSD (Fondation suisse de déminage)<br />
Avenue Giuseppe-Motta 14b<br />
1202 Genève, Suisse<br />
<a href="mailto:info@fsd.ch">info@fsd.ch</a></p>
            <p>Relation donateurs<br />
+41 22 562 41 92<br />
10h-13h / 14h-17h<br />
<a href="mailto:donors@fsd.ch">donors@fsd.ch</a></p>
            <div class="certifications">
                <a href="#" target="_blank" rel="noopener">
                    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 65 43">
  <path fill="#FCFCFC" d="m36.6525.5 11.1677 27.7088h-7.4456l-2.3101-6.6584-10.3656-.03-2.7148 6.6899h-5.7983L30.0664.5h6.5861Zm-.1434 17.0525L32.5717 7.46214 28.9214 17.5525h7.5877ZM65 .5v4.26312H52.6873v7.38848h9.5936v4.1219h-9.5936v11.9353h-4.2228l-2.9229-7.1874L45.5287.5H65ZM16.4652.5c1.5684.326506 3.3935.218146 4.8686 1.06507v4.04924C16.8986 4.25839 11.4245 3.6567 8.70971 8.21923c-1.92704 3.23797-1.96578 9.69257.10762 12.87207 2.56847 3.9394 7.89327 3.121 11.80047 2.0018l-1.9328 4.9731c-.1033.1597-.264.1298-.4219.1498-1.1091.1368-3.2744.0556-4.4538 0C3.67329 27.7241-.667219 21.9268.144923 12.0831.683002 5.57582 6.42108.99475 12.7417.5h3.7235ZM17.8972 35.7399h1.719l.0703.71c.8897-1.192 3.1754-1.3217 3.7982.1411h.2109c.5998-1.2903 3.062-1.4329 3.7766-.1939.0574.0984.3056.7814.3056.8341v5.0445h-1.7175V37.515c0-.5333-.9729-.7343-1.4407-.5775-.3673.1226-.8494.9624-.8494 1.2889v4.0493h-1.7176v-4.6182c0-.643-1.1565-1.0593-1.7935-.5018-.0962.0841-.4965.7371-.4965.7856v4.3344h-1.8611v-6.5373l-.0043.0015ZM15.0332 42.2771l-.6414-1.8492-3.7063-.1212-.82645 1.9504-1.84095.0186 3.6446-8.9625 1.9227.027 3.4523 8.9355h-2.0045v.0014Zm-3.8655-3.4105h2.577c-.3602-1.0351-.6357-2.2827-1.079-3.2693-.0775-.1725.0129-.3436-.2784-.2838l-1.2182 3.5531h-.0014ZM64.8579 30.483H0v.4263h64.8579v-.4263ZM35.364 39.5767h-4.725c.396 2.1158 2.666 1.9005 4.1511.9952l-.0187 1.3302c-2.0404 1.2219-5.3521.5989-5.6922-2.1273-.2726-2.1914.6099-4.206 3.0621-4.2374 2.5698-.0328 3.1596 1.8407 3.2213 4.0407l.0014-.0014Zm-1.719-1.279c-.1564-2.0816-2.6717-2.0004-3.006 0h3.006ZM56.2673 42.2771l-1.4406-.0613-.2052-.7927c-1.3602 2.2499-5.619.5974-4.0592-2.0375.7662-1.2946 2.8224-1.1192 4.1295-1.2305-.2425-1.9904-2.3273-1.4828-3.5771-.71-.3516-1.2989-.297-1.5213.9915-1.7851 1.1838-.2424 3.0017-.2609 3.7063.8854.1722.2795.4534 1.1193.4534 1.3973v4.3344h.0014Zm-1.5755-2.9828c-.7935.0029-2.4579-.2167-2.6904.8128-.2783 1.229 1.0288 1.3844 1.8826.8711.66-.3978.6658-1.0037.8078-1.6824v-.0015ZM49.5263 35.7527l-.132 1.2661c-4.1741-1.306-3.8785 5.5976.142 3.8354l.1248 1.4015c-3.227.8313-5.3879-.576-4.9919-4.0307.2827-2.4609 2.755-3.1096 4.8571-2.4737v.0014ZM36.6525 35.7399h1.5755l.0703 1.1377c.3329-.884 1.2326-1.6154 2.2011-1.2604l.0173 1.6853c-.9471-.5731-2.1466.3921-2.1466 1.3502v3.623h-1.7176v-6.5373.0015ZM43.3807 35.7399h-1.8611v6.5372h1.8611v-6.5372ZM43.3821 34.4623h-1.8625l.0632-1.5726 1.6644-.0713.1349 1.6439Z"/>
</svg>                </a>
                <a href="https://zewo.ch/fr/" target="_blank" rel="noopener">
                    <svg fill="#FFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49.1 52.9">
  <path d="M31.3 35.7c-.3-.1-.6-.2-.9-.2-.9 0-1.7.6-2.1 1.4-.2.3-.2.7-.2 1.1 0 .8.5 1.6 1.2 2 .3.1.6.2.9.2.9 0 1.7-.6 2.1-1.4.2-.3.2-.7.2-1.1 0-.9-.5-1.7-1.2-2Zm13-30c-1.5-.7-3.1-1.2-4.7-1.3v.1c.1.4.2.8.2 1.2 0 .9-.3 1.8-.8 2.6-.5 1.3-1.5 2.3-2.8 2.8-.4.1-.8.2-1.2.2-.2 0-.5 0-.7-.1-3.6 5.7-6.8 11.6-9.7 17.6-.8 1.7-1.5 3.4-2.2 5-.2-.5-.8-1.6-.9-1.8-1.8-4-1.3-3.2-2.9-7.2-.2-.4-3.5-2-4.5-1.1-.3.3-.3.8-.1 1.2 3.1 5.4 4.7 9.1 8.1 14.4.6.7 1.7.8 2.4.2l.3-.3 1-1.9C31.7 27.1 37.3 17.9 44 7.7c.1-.2 1-1.4.3-2Zm-37 5.1.4.3.6 3.5L9.7 13l.3.3-1.8 2-.3-.3-.6-3.5-1.5 1.6-.3-.3 1.8-2Zm-2.7 3.1L7.7 16l-1.4 2.1-.3-.3 1.1-1.7-1-.6-1 1.5-.4-.2 1-1.5-1.1-.7-1.1 1.7-.2-.3 1.3-2.1Zm-2.9 5.4h1.7l.4-.9-1.4-.6.2-.4L6 18.8l-.6 1.3c-.1.3-.4.6-.7.7-.3.1-.6.1-.8 0-.3-.1-.5-.3-.6-.6-.1-.2-.1-.3-.1-.5H1.5l.2-.4Zm3.3.6.4-.9-1.2-.5-.4.9c-.2.4-.1.8.3 1s.7-.1.9-.5Zm-1.1 3.2-3.2-.9.1-.5 3.2.9.3-1.1.4.1-.7 2.7-.4-.1.3-1.1ZM.3 24.6l3.7.5-.1.5-3.7-.5.1-.5Zm3 2.7H2.1L2 29h-.4v-1.7H0v-.5l3.7.1-.1 2.4h-.3v-2ZM.1 30.4l3.7-.4v.5l-3.7.4v-.5Zm.2 1.9.5-.1L4 33.7l-.5-2.1.4-.1.6 2.6-.5.1-3.2-1.5.5 2.1-.4.2-.6-2.7Zm1 4L4.8 35l.2.5-3.5 1.2-.2-.4Zm.7 2 3.4-1.7 1.1 2.2-.4.2-.9-1.8-1 .5.8 1.6-.4.2-.8-1.6-1.2.6.9 1.8-.4.2L2 38.3Zm3.2 5.2L6 42l-.6-.8-1.3.9-.3-.4 3-2.2.9 1.2c.3.3.4.6.3 1 0 .3-.2.5-.5.7-.2.2-.5.2-.8.2-.2 0-.3-.1-.5-.2L5.3 44l-.1-.5Zm2.2-2.6-.6-.8-1.1.8.6.8c.3.4.6.5 1 .2s.4-.6.1-1Zm2.2 2.6-2.3 2.3-.3-.3 2.3-2.3-.8-.8.3-.3 1.9 1.9-.3.3-.8-.8Zm4.1 6.6c-.4.1-.7 0-1.1-.1-.3-.2-.6-.5-.7-.8-.1-1.1.5-2.2 1.5-2.7.8-.2 1.5.3 1.8 1 .1.3.1.6-.1.9l-.4-.2c.1-.2.1-.4.1-.5-.1-.2-.2-.5-.5-.6-.2-.1-.5-.1-.7-.1-.4.2-.7.5-.9.9s-.4.8-.3 1.2c.1.2.2.5.5.6.2.1.5.2.7.1.2-.1.3-.2.4-.4l.4.2c-.1.2-.4.4-.7.5Zm1.4 1 1.3-3.5 2.4.8-.1.4-1.9-.7-.4 1.1 1.7.6-.1.4-1.7-.6-.4 1.2 1.9.7-.1.4-2.6-.8Zm5.9 1.6-.4-1.7-1-.2-.3 1.5-.5-.1.7-3.7 1.4.3c.3 0 .7.2.9.5.2.2.2.5.1.8 0 .3-.2.5-.4.7-.1.2-.3.2-.4.2l.4 1.8-.5-.1Zm-.1-3.4-1-.2-.2 1.3 1 .2c.4.1.8 0 .9-.5s-.3-.7-.7-.8Zm3.3.3-.1 3.3h-.5l.1-3.3h-1.1v-.4l2.7.1v.4l-1.1-.1Zm2.3 3.2-.3-3.7h.5l.3 3.7h-.5Zm1.9-3.5.2 1.2 1.7-.4.1.4-1.7.4.3 1.6-.5.1-.6-3.6 2.4-.5.1.4-2 .4Zm3.9 2.4-1.2-3.5.5-.2 1.2 3.5-.5.2Zm2-.7-1.6-3.4 2.2-1.1.2.4-1.8.9.5 1 1.6-.8.2.4-1.6.8.6 1.2 1.8-.9.2.4-2.3 1.1Zm-1-4-.3-.2.5-1 .4.2-.6 1Zm8.4-1.5c-.1.8-.7 1.4-1.5 1.4-1.1-.3-1.9-1.2-2.1-2.3 0-.4.2-.7.5-1s.6-.4 1-.4c.3 0 .6.2.9.4l-.4.3c-.1-.1-.3-.2-.5-.2-.3 0-.5.1-.7.2-.2.2-.3.4-.3.7 0 .4.3.8.6 1.1.2.3.6.6 1 .7.3 0 .5-.1.7-.2.2-.2.3-.4.3-.7 0-.2-.1-.4-.2-.5l.4-.3c.2.2.3.5.3.8Zm1.4-1-2.9-2.3 1.5-2 .3.3-1.2 1.5.9.7 1.1-1.4.4.3-1.1 1.4 1 .8 1.3-1.6.3.3-1.6 2Zm3.4-5.1-1.7-.1-.5.9 1.4.8-.2.4-3.3-1.8.7-1.3c.1-.3.4-.6.8-.7.3-.1.6 0 .8.1.4.2.6.7.5 1.1l1.8.1-.3.5Zm-3.2-.9-.5.9 1.2.6.5-.9c.2-.4.2-.8-.2-1s-.8 0-1 .4Zm1.3-3.1 3.1 1.1-.1.5-3.1-1.1-.4 1-.4-.1.9-2.5.4.1-.4 1Zm3.8-1.2-3.6-.9.1-.5 3.6.9-.1.5Zm-2.8-2.9 1.2.1.2-1.7h.4l-.2 1.7 1.6.2v.5l-3.7-.4.3-2.4h.4l-.2 2Zm3.5-2.9h-3.7V28h3.7v.4Zm-.6-4.3c.6.5.7 1.4.3 2-.4.4-.9.7-1.5.7-.5.1-1.1 0-1.6-.3-.6-.5-.7-1.4-.3-2 .2-.3.5-.4.8-.5l.1.5c-.2 0-.4.1-.5.3-.2.2-.2.5-.2.7 0 .3.2.5.4.6.4.2.8.3 1.2.2.4 0 .8-.2 1.2-.5.2-.2.2-.5.2-.7 0-.3-.2-.5-.4-.6s-.4-.2-.6-.1l-.1-.5c.4-.1.7 0 1 .2Zm-.7-4-.8.6.5 1.5h.9l.1.5-4-.2-.1-.5 3.2-2.4.2.5Zm-2.8 2 2 .1-.4-1.2-1.6 1.1Zm-1.2-3 3-1.4.2.4-3 1.4.5 1-.5.3-1.1-2.4.4-.2.5.9Zm.3-5.1c.4.1.7.3.9.6s.3.7.2 1.1c-.1.5-.5 1-1 1.3-.4.4-1 .5-1.5.5-.4-.1-.7-.3-.9-.6-.2-.3-.3-.7-.2-1.1.4-1.1 1.4-1.8 2.5-1.8ZM42 15.8c0 .3 0 .5.1.7s.4.4.6.4c.9-.1 1.6-.6 2-1.4.1-.2 0-.5-.1-.7s-.4-.4-.6-.4c-.8.1-1.6.6-2 1.4Z" />
  <path d="M38.3 18.8c5.4 7.7 3.5 18.2-4.2 23.6s-18.2 3.5-23.6-4.2C5.2 30.5 7.1 20 14.8 14.6c5-3.5 11.5-4 17-1.4.4-.7.8-1.4 1.3-2.1-9.6-4.7-21.1-.8-25.9 8.7-4.7 9.5-.8 21.1 8.7 25.9 9.5 4.7 21.1.8 25.9-8.7 3.3-6.6 2.5-14.6-2-20.4l-1.5 2.2Zm-26.1-7.3-.6-1.2L12.8 4 9.3 6l-.6-1.1 5-2.7.6 1.2L13 9.6l3.6-2 .6 1.1-5 2.8Z" />
  <path d="m18 8.5-1.4-7.3 5.2-1 .2 1.2-3.9.8.3 1.7 3.4-.7.2 1.2-3.4.7.4 2 3.9-.8.2 1.2-5.1 1Zm12.2-.4L28.8 8l-.9-5.3-2.2 4.9-1.4-.2-.5-7.4h1.3l.4 5.3L27.6.5l1.1.1.9 5.2 1.7-5 1.2.3-2.3 7Zm5.8 2c-.8.2-1.6.2-2.3-.2-.7-.3-1.3-1-1.5-1.7-.3-2.2.8-4.3 2.7-5.4.8-.2 1.6-.2 2.3.2.7.3 1.3 1 1.5 1.7.3 2.2-.7 4.4-2.7 5.4Zm1.5-5c-.3-.9-1.2-1.3-2.1-1-1.2.9-2 2.3-1.9 3.8.3.9 1.2 1.3 2.1 1.1.7-.4 1.2-1 1.4-1.7.4-.6.6-1.4.5-2.2Z" />
</svg>
                </a>
                <a href="https://www.sgs.com/en-ch/certified-clients-and-products/certified-client-directory" target="_blank" rel="noopener">
                    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 67 65">
  <path fill="#FCFCFC" d="M32.2672.019084c16.2.614338 29.4773 13.617216 30.108 29.893516.149 3.826.0291 7.87.0563 11.7196.0128 1.774-.0145 3.5479-.0018 5.3219H56.17V30.2543C55.5048 14.7414 41.0552 3.54516 25.7803 6.87494 19.2389 8.30173 13.4227 12.4876 9.93663 18.1729c-2.2865 3.7279-3.53698 8.01-3.67512 12.3976H0c.181757-9.7494 5.0492-18.9426 12.9011-24.62434C17.9085 2.32376 23.9755.24628 30.1625.019084c.6707-.025445 1.4341-.025445 2.1047 0ZM30.3897 5.13917h.9106V3.60332c.0781-.00545.1545-.00727.2272.02908.1836.08906.5216 1.3032.6252 1.56493h.967c-.22-.58889-.3036-1.29956-.7961-1.73578.5798-.21992.6979-.86334.6216-1.4177-.1618-1.175963-1.6267-.60888-2.4137-.83063l-.1436 3.92595h.0018Zm-.6816-3.86778c-.7034.08724-1.5013.05271-2.1902.17085-.0636.0109-.1127.02181-.1363.08906l.3908 3.81143 2.2756-.20538-.0545-.85062-1.4795.1145-.0491-.70339.0854-.08543 1.216-.06543-.0564-.79791c-.2399-.07452-1.225.17085-1.3413.00363l-.0219-.51255 1.4196-.11632-.0564-.85426-.0018.00182Zm6.4869.39804-2.5919-.28717-.1381.9106.8524.11632-.2871 2.93355.7979.07816.3526-2.8045c.0618-.19994.7107.06543.9015.01999l.1145-.96695h-.0018Zm-10.073 1.365.7325-.36897c-.3399-.75429-.8179-1.18324-1.6758-.88515-1.5594.53981-.787 3.70965.4144 3.91503 1.0506.17994 1.6867-.55799 1.545-1.57219l-.7598-.17994c-.0618.00363.1127 1.00148-.6143.84335-.478-.1036-.678-1.48132-.5253-1.86664.1927-.49256.7961-.36351.8833.11451Zm10.6855-1.25049-.8124 3.86233.8633.18175.8125-3.86232-.8634-.18176Zm3.7133.96695-2.052-.54709-1.0797 3.73146.8543.22901.3999-1.53584 1.0814.28536.1672-.7034-.9578-.32716.1108-.61434 1.2433.27627.2326-.79064v-.00363Zm-17.305 3.5806-1.3614-3.66967-1.0215.41077.3944 2.23924-1.1941-1.90844c-.1127-.07088-.8852.28718-1.056.37078l1.3486 3.57879c.0855.05453.6507-.1654.6616-.24719l-.896-2.41918 1.3922 2.2247c.0964.06725.5726-.14177.5944-.21265l-.4508-2.63729.9379 2.39192c.1454.15631.4671-.1345.6525-.11815l-.0018-.00363Zm17.9393-3.35341L39.801 6.6641l.8289.30354 1.354-3.68603-.8288-.30353Zm3.4625 2.7318c.2235-.83426-.1418-1.66307-1.0597-1.75758-1.2523-.12905-2.1356 1.80484-2.0084 2.86084.1.82154 1.0833 1.30865 1.8103.91242.1545-.08361.6871-.54163.6035-.70521l-.4653-.51074c-.1436-.02545-.4126.66341-.8961.38714-.4835-.27627.0763-1.47404.3635-1.78485.4799-.518 1.007-.1454.8543.47984l.7961.11632.0018.00182Zm-26.0693-.80155-.3654-.787-2.0066 1.10326 1.7849 3.38976 2.072-1.02874-.3762-.79973-1.2578.62161c-.1527.01636-.4126-.57254-.3908-.61797l1.1051-.65978-.2817-.64342-1.2141.56163-.2654-.53073 1.196-.60707v-.00182Zm26.9744 3.766c.0509.07089-.249.49801-.1399.67432.0327.05271.827.6216.787.21629l1.0051-3.55334c.0091-.24719-.5562-.40168-.7198-.58162L43.538 8.1854c-.0291.12905.5634.3617.6634.47257l.5089-.44167.8124.45621v.00182ZM17.016 9.2923l-1.5867-2.42645.6652-.55799-.5016-.7452-2.1556 1.34863c-.0836.14177.4289.65251.4525.84335l.7925-.42713 1.5431 2.35739c.16.09451.5943-.37442.7888-.3926h.0018Zm31.3912-2.61366-.5398.75793.6107.56526-1.6849 2.28647c.0037.0455.6416.6253.7525.4253l1.6994-2.21194.6816.44531.5398-.70704-2.0611-1.56129h.0018ZM14.1534 10.4719c-.2254.2745-.678.0982-.8652-.1527l-.5707.6235c.5853.5616 1.1651.7361 1.8466.1944 1.0215-.8124.1582-2.46459-1.0905-2.28465-.2308.03272-1.3741.61797-1.1705-.08724.1054-.36351.5289-.15631.7507-.05089l.547-.53073c-.5489-.59798-1.1741-.62888-1.7575-.05089-.8525.84698.0054 2.1265 1.1468 1.943.2327-.0382.6507-.28357.8543-.25994.2817.03272.4998.42354.309.65434v.0018Zm36.8111-1.8521-2.59 2.9499.6725.5907 2.59-2.94989-.6725-.59071Zm-40.379 2.4937-1.28138-.4544-.65251.6525c.0309.0545.08724.0654.13813.0909.5889.2854 1.62306.4289 2.15746.7434.1908.1127 1.1214 1.1287 1.2032 1.1287l.5962-.5962-1.1596-1.1705-.8306-2.32647-.6798.70885.5089 1.22502v-.0018Zm41.5877-.8397c-1.1923.1436-2.9208 1.992-1.8939 3.1716 1.1596 1.3341 3.4552-.687 3.3298-2.0211-.0618-.6543-.7834-1.2305-1.4359-1.1523v.0018ZM8.70432 13.1019c.06907-.349.64705-.5907.17449-.8233-.69068-.3417-1.37227.0163-1.62127.7124-.24901.6962.35624 1.5068 1.08327 1.5359.59616.0254.94876-.4944 1.33227-.5471.53982-.0727.67252.7652.08906.7779-.22719.0037-.34534-.1181-.54163-.1763l-.39987.7379c.3926.1745.70704.3527 1.16324.2818.34352-.0546.78882-.5398.90332-.8597.3363-.9488-.7197-1.9957-1.66669-1.6667-.41441.1435-1.01784.8451-1.25594.2799.01636-.4653.40895-.4072.73793-.2545l.00182.0018ZM54.178 15.0394c-.0873-.0927.9469-1.6994.9669-1.9666.0146-.2163-.3344-.5507-.4834-.7052l-3.0426 2.3665.4816.6434 1.6213-1.2468-.967 2.0247c-.0072.1291.3635.6525.4835.6507l3.0426-2.3101-.4817-.6452-1.6212 1.1886Z"/>
  <path fill="#FCFCFC" d="M35.0914 27.8186c-1.1541 1.1651-2.3119 2.3338-3.4788 3.4916l-5.2636-5.2891-.1036 8.039 5.3363 5.2746 15.4221-15.3602c.4471 1.1178.8942 2.2356 1.1668 3.4134 2.8954 12.4794-8.4698 23.601-20.882 20.364-9.6167-2.5083-15.0785-12.8084-11.6996-22.2125 3.8041-10.5891 16.7797-14.6678 25.9693-8.0391.2709.1963 2.0575 1.5958 2.0266 1.774-2.8426 2.839-5.6708 5.6944-8.4971 8.548l.0036-.0037ZM62.8273 49.4586v12.9138h3.6424v.4544h-3.6424v2.0757c-.1109.1326-.3526.1272-.4544 0v-2.0757H33.748v-.4544h8.8207l-1.0124-.2108c-.5107-.0764-1.3214-1.0524-1.3214-1.5232v-1.5649h2.3338c.0636.5889-.1254 1.4341.5307 1.7176 1.0851.469 2.0557-.1072 1.8467-1.3341-.04-.2363-.3199-.5889-.498-.7543-.8997-.8415-3.1717-1.7503-3.6897-2.739-.8452-1.6104-.1672-3.7824 1.6522-4.3022 1.6521-.4708 4.6547-.0891 4.6547 2.1502v.8542l-.0854.0855h-1.992c-.2836-.5017.0218-1.3723-.7071-1.5686-.9233-.249-1.634.2708-1.534 1.2487.0582.5779.4071.7906.8288 1.105 1.6431 1.2196 3.557 1.2378 3.5497 3.8533-.0036 1.2505-.249 2.112-1.4322 2.6645l-.9597.3199h5.4055l-.758-.2944c-1.2159-.7507-1.5395-1.9721-1.6885-3.3189-.3726-3.3789-.0582-7.8573 4.5167-7.1903 1.0959.16 2.5391.9779 2.5391 2.2411v1.0233l-.0854.0854h-1.9357c-.2454-.5017.0599-1.1596-.4253-1.5649-.698-.5817-1.7704-.3617-2.1102.5107-.4163 1.0724-.4835 4.8275-.1873 5.938.1037.3908.4908 1.0487.9143 1.1341.5107.1036 1.2632-.0254 1.7794-.0999v-2.361l-.0854-.0855h-1.1669v-1.6503h3.4152v5.5745h-1.0251v.0563h3.9259l-.7852-.1545c-.7088-.0781-1.5485-1.0687-1.5485-1.7521v-1.3941h2.3337c.1691.8125-.1872 1.5522.8416 1.803.5434.1327 1.2014.08 1.4631-.4943.3326-.7307.0672-1.2524-.4835-1.7358-1.7594-1.5486-4.2185-1.6885-3.9205-4.6566.2727-2.7064 4.1895-3.1644 5.938-1.7412.7252.5907.6053 1.5194.7161 2.3573.0019.0473-.0581.1436-.089.1436h-1.9921c-.0163 0-.1327-.0581-.1454-.0963-.0072-.3581-.0345-1.0833-.3108-1.3268-.3017-.2672-1.016-.2472-1.3577-.0473-.5616.329-.5707 1.3904-.1527 1.843 1.2705 1.3832 3.8587 1.3796 4.0459 3.7497.1182 1.4994-.1163 2.7408-1.654 3.3007l-.6816.1999h2.3901V49.4568h.4544l.0037.0018ZM5.16779 38.6642c1.33409-.1599 2.4937.2527 2.78632 1.6776.59617 2.9027-5.73805 4.8366-6.01614 1.1796-.12177-1.5958 1.85937-2.6918 3.22982-2.8572Zm1.18687 1.5395c-.53982-.5216-2.19199.1109-2.68273.5507-.60343.5417-.30899 1.4214.51074 1.425.51437.0018 1.80484-.478 2.15745-.8633.28899-.3163.33625-.8016.01454-1.1124ZM5.29595 38.0207l-.34534-1.216c.00364-.0436.51256-.149.60162-.4271.22719-.7107-.57435-.9906-.78519-.5016-.13813.3199-.11814.9833-.24174 1.4068-.24537.8415-.8179 1.2941-1.70487 1.3686-1.54493.129-2.342843-.9433-2.191986-2.4192.085426-.8415.934226-1.3959 1.710326-1.4849l.33625 1.225c-.52891.1181-1.04328.4944-.76701 1.0851.21266.4526.84335.4071 1.06509-.0182.20721-.398.15268-1.0433.34352-1.534.15813-.4053.50529-.7961.91424-.9633 2.53187-1.0451 3.65876 3.0371 1.06873 3.4788h-.00364ZM14.1006 50.1566c.8216-.1181 1.8467.5816 1.8885 1.4432.0599 1.2268-1.9957 3.7423-3.159 4.0568-.9215.249-1.9775-.6017-1.9648-1.5613.0164-1.1778 2.0503-3.7678 3.2335-3.9387h.0018Zm.169 1.1923c-.4707.0982-1.6903 1.6413-1.9429 2.0957-.2363.4271-.5217 1.2141.3108.9924.4925-.1309 2.0375-2.0721 2.1356-2.5864.0745-.3835-.109-.5835-.5035-.5017ZM29.9773 56.1854c2.4828-.3362 2.2792 3.7896 1.6358 5.2201-.6434 1.4304-2.5464 1.1923-3.0299-.2708-.4217-1.2778-.4126-4.7039 1.3941-4.9475v-.0018Zm.1108 1.136c-.0908.0273-.1781.1509-.2217.2326-.2726.5108-.3417 2.79-.1054 3.3153.0636.1418.2072.3162.3744.3144.1381.0037.2326-.1054.3126-.2054.3726-.4634.3872-2.5064.2726-3.1153-.0636-.3344-.2399-.6579-.6288-.5416h-.0037Z"/>
  <path fill="#FCFCFC" d="M32.9144 56.4763c.4962-.4962 1.4977-.6234 2.0811-.2163 1.0451.7289 1.385 4.0532.847 5.1056-.4726.9269-1.9266 1.0596-2.6064.2944-.8052-.9069-1.2323-4.2749-.3217-5.1837Zm1.0451.6725c-.1654.0473-.2981.3163-.3199.4799-.089.6252.08 2.4264.3508 2.9953.289.6035.7888.4617.8797-.1708.0909-.6325-.1036-2.4865-.4089-3.0317-.1055-.1891-.2672-.3399-.5017-.2727ZM25.993 55.7875c2.5954-.4362 2.1683 2.7045 1.7067 4.2658-.289.9742-.7143 1.8939-1.8921 1.8103-1.9939-.1418-1.6304-2.5591-1.3069-3.9277.1854-.7834.5689-1.9921 1.4941-2.1484h-.0018Zm.398 1.076c-.518.0818-.7579 1.5231-.8288 1.963-.0654.4071-.329 1.7975.2599 1.8884.6325.0963.9197-1.8721.9742-2.3028.0436-.3417.2236-1.6468-.4053-1.5468v-.0018ZM11.3688 47.4812c.8506-.1036 1.8594.7306 1.8376 1.6049-.0327 1.2595-2.6209 3.6315-3.85871 3.6569-.85062.0182-1.68488-.9251-1.59946-1.7703.11633-1.1669 2.48827-3.3516 3.62237-3.4897l-.0018-.0018Zm-1.3195 2.2374c-.32537.2981-1.30141 1.1141-1.07239 1.6031.25264.5416 1.16509-.1927 1.43949-.4126.3853-.3072 1.4504-1.2905 1.5668-1.734.0327-.129.0418-.2035-.0164-.329-.3144-.6706-1.6394.618-1.9157.8725h-.0018ZM7.79747 47.6374l-.6216-.26c-1.53948-1.394 1.10144-3.5569 2.57912-2.919.59251.2563 1.06151 1.0833.99601 1.7231-.1472 1.4286-2.92626 3.2007-4.29125 3.0499-1.3341-.1454-1.9757-1.9757-.84517-2.8409l.87243.8779c-.24355.1927-.5489.578-.1654.7925.41441.2326 1.09054-.2636 1.47405-.4235h.00181Zm1.7485-2.0339c-.4453-.4726-2.03385.5362-1.60491 1.1778.3726.5543 1.5522-.169 1.66308-.6634.02908-.1291.03089-.4162-.05998-.5144h.00181ZM21.6251 59.2989c.4744.1945 1.1178.2945 1.5668.5108.0727.0345.1508.06.1817.1436l-.4671 1.2159-3.3879-1.1305c.1835-.7379.787-1.3341 1.4049-1.7521.5598-.3781 2.8881-1.2233 2.1157-2.1938-.3835-.4817-.8797.1617-1.0433.5198l-1.1069-.5271c.4199-.8761.9088-1.5086 1.9884-1.3123 2.1466.389 1.8594 2.6791.2999 3.6606-.5035.3162-1.1142.4598-1.554.8633l.0018.0018ZM16.0999 58.2738c-.0454.0327-.8851-.4453-.9833-.5162-.0454-.0327-.1017-.0491-.0854-.1236l1.9284-3.2807-1.4213.0563.6253-1.1668c.5834-.0437.9833.0272 1.5303-.2345.2054-.0981.4962-.3853.6907-.3399.0854.02.718.4144.7343.4689l-3.0153 5.1365h-.0037ZM6.19271 32.2274l-5.967124.3891.09211 1.4128 5.967124-.389-.09211-1.4129ZM19.4625 58.1067l-.7143 1.534-1.1632-.5107c.0818-.2036.607-1.5049.7161-1.5304l1.1614.5089v-.0018ZM18.7285 56.7345l.6253-1.5304 1.1687.5107c.0527.0836-.6017 1.525-.6871 1.5304l-1.1069-.5107Z"/>
  <path fill="#003154" d="M23.216 6.3315c-.1854-.01636-.5071.27445-.6525.11814l-.9379-2.39191.4508 2.63729c-.0237.07088-.4981.2799-.5944.21265l-1.3922-2.2247.896 2.41918c-.0127.08179-.5762.2999-.6616.24719l-1.3486-3.57879c.1708-.08361.9433-.44167 1.056-.37078l1.1941 1.90844-.3944-2.23924 1.0215-.41077 1.3613 3.66967.0019.00363ZM54.1783 15.0395l1.6212-1.1887.4817.6452-3.0426 2.3102c-.12 0-.4908-.5217-.4835-.6507l.967-2.0248-1.6213 1.2469-.4817-.6435 3.0426-2.3664c.1473.1563.4981.4889.4835.7052-.0182.2672-1.0542 1.8739-.9669 1.9666ZM30.3896 5.13908l.1436-3.92595c.787.22175 2.2502-.345333 2.4138.83063.0763.55436-.04 1.19778-.6216 1.4177.4925.43622.5761 1.14689.796 1.73578h-.9669c-.1036-.25991-.4417-1.47405-.6252-1.56493-.0746-.03635-.1491-.03271-.2272-.02908v1.53585h-.9125Zm.967-3.07169-.0327.74338c.9542.29263 1.1069-.93604.0327-.74338ZM52.1727 10.2738c.6525-.0782 1.3741.4961 1.4359 1.1523.1254 1.3341-2.1702 3.3552-3.3298 2.0211-1.0269-1.1814.7016-3.028 1.8939-3.1716v-.0018Zm.3944 1.0269c-.4526-.4526-1.5013.5234-1.6467.9669-.229.6943.3399.9106.8852.5453.3689-.2454 1.2214-1.0506.7615-1.5104v-.0018ZM29.7082 1.27148l.0563.85426-1.4195.11632.0218.51256c.1163.16721 1.0996-.07816 1.3414-.00364l.0563.79791-1.2159.06544-.0854.08542.049.7034 1.4795-.11451.0546.85062-2.2756.20539-.3908-3.81144c.0236-.06725.0727-.07815.1363-.08906.6889-.11996 1.4886-.0836 2.1902-.17085l.0018-.00182ZM18.5487 4.90845l-1.196.60707.2654.53073 1.2141-.56163.2817.64342-1.105.65977c-.0218.04544.2381.63434.3907.61798l1.2578-.62161.3762.79973-2.072 1.02874-1.7848-3.38976 2.0065-1.10326.3654.787v.00182ZM14.1533 10.4719c.1908-.2308-.0273-.62161-.309-.65433-.2036-.02363-.6216.22173-.8542.25993-1.1415.1836-1.9994-1.09601-1.1469-1.943.5816-.57798 1.2068-.5489 1.7576.0509l-.5471.53073c-.22-.10542-.6453-.31263-.7507.05089-.2036.7034.9379.11996 1.1705.08724 1.2487-.17994 2.112 1.47224 1.0906 2.28464-.6816.5417-1.2614.369-1.8467-.1944l.5707-.6235c.1872.2509.638.4272.8652.1527v-.0018ZM8.7043 13.102c-.32898-.1509-.72157-.209-.73793.2544.2381.5653.84153-.1363 1.25594-.2799.94699-.329 2.00299.718 1.66669 1.6667-.1145.3217-.5598.8052-.90332.8597-.45621.0727-.76883-.1054-1.16324-.2817l.39987-.7379c.19448.0581.31443.1799.54163.1763.58346-.0109.45076-.8506-.08906-.7779-.38169.0509-.73611.5707-1.33228.5471-.72702-.0309-1.33591-.8252-1.08326-1.5359.25264-.7107.93059-1.0542 1.62126-.7125.47075.2327-.10723.4744-.17448.8234l-.00182-.0018ZM45.5229 8.67442l-.8124-.45621-.5089.44167c-.0982-.11087-.6925-.34352-.6635-.47257l2.9172-2.75543c.1636.17994.7289.33444.7198.58163L46.17 9.56685c.04.40531-.7543-.16359-.787-.2163-.1091-.1763.189-.60343.1399-.67431v-.00182Zm-.1636-1.03419c.14-.02363.3926.29989.4799.17267l.3708-1.19415c-.1982.22538-.6507.59617-.7998.82154-.0436.06725-.0745.11451-.0509.19994ZM26.1218 3.03444c-.089-.47984-.6906-.60707-.8833-.11451-.1509.38714.0473 1.76304.5253 1.86664.727.15813.5525-.83972.6143-.84335l.7598.17994c.1435 1.0142-.4926 1.75213-1.545 1.57219-1.2014-.20538-1.9739-3.37522-.4144-3.91503.8579-.29627 1.3359.13268 1.6758.88515l-.7325.36897ZM44.6178 5.70991l-.7961-.11632c.1527-.62524-.3744-.99966-.8542-.47984-.2872.31081-.8652 1.49949-.3636 1.78485.5017.28536.7525-.41259.8961-.38714l.4653.51074c.0818.16358-.4508.6216-.6034.70521-.7271.39623-1.7104-.09088-1.8103-.91242-.1291-1.056.7543-2.98989 2.0084-2.86084.9179.09451 1.2832.92332 1.0596 1.75758l-.0018-.00182ZM40.5203 2.75094l-.2344.79246-1.2414-.27627-.1127.61434.9578.32716-.1672.7034-1.0814-.28354-.3981 1.53584-.8542-.22901 1.0796-3.73146 2.052.54708ZM10.5853 11.1136l-.509-1.22506.6798-.70885.8306 2.32651 1.1596 1.1705-.5961.5961c-.0818 0-1.0124-1.016-1.2032-1.1287-.5344-.3162-1.56861-.458-2.1575-.7433-.05089-.0255-.10723-.0346-.13813-.0909l.6525-.6525 1.28143.4544v.0018ZM17.0159 9.29239c-.1945.01636-.6271.48711-.7889.39259L14.6839 7.3276l-.7924.42713c-.0237-.19085-.5362-.70158-.4526-.84335l2.1556-1.34864.5017.74521-.6653.55799 1.5868 2.42645h-.0018ZM36.1947 1.6695l-.1145.96694c-.1909.04726-.8397-.21992-.9015-.01999l-.3526 2.8045-.7979-.07815.2871-2.93355-.8524-.11633.1381-.9106 2.5919.28718h.0018ZM48.4071 6.67871 50.4682 8.24l-.5398.70703-.6816-.4453-1.6994 2.21197c-.1109.1999-.7507-.378-.7525-.4253l1.6849-2.2865-.6107-.56526.5398-.75793h-.0018ZM41.1548 2.97743l-1.353 3.68541.8275.30381 1.353-3.68541-.8275-.30381ZM36.8094 1.78409l-.8123 3.86142.8626.18147.8123-3.86142-.8626-.18147ZM50.9661 8.6217 48.376 11.572l.672.59 2.5901-2.95034-.672-.58996ZM6.35431 40.2037c.32171.3108.27264.7961-.01454 1.1124-.35079.3871-1.64308.8651-2.15745.8633-.81972-.0036-1.11417-.8851-.51073-1.425.49074-.4398 2.1429-1.0723 2.68272-.5507ZM14.2695 51.349c.3944-.0818.5779.1164.5034.5017-.0999.5162-1.6449 2.4555-2.1356 2.5864-.8325.2217-.5471-.5653-.3108-.9924.2526-.4562 1.4722-1.9975 1.943-2.0957ZM30.088 57.3215c.3907-.1163.567.2072.6288.5417.1145.6089.1 2.65-.2726 3.1153-.08.0999-.1745.209-.3126.2054-.1654 0-.309-.1727-.3744-.3145-.2345-.5252-.1673-2.8045.1054-3.3152.0436-.0818.1308-.2054.2217-.2327h.0037ZM33.959 57.1487c.2345-.069.3963.0837.5017.2727.3053.5453.4998 2.4083.4089 3.0317-.0908.6234-.5925.7743-.8797.1708-.2708-.5689-.4398-2.3701-.3507-2.9953.0236-.1618.1563-.4308.3198-.4799ZM26.3915 56.8634c.6289-.0981.4489 1.2051.4053 1.5468-.0545.4325-.3435 2.401-.9742 2.3028-.5889-.0909-.3254-1.4813-.2599-1.8884.0709-.4399.3108-1.8812.8288-1.963v.0018ZM10.0495 49.7187c.2781-.2563 1.6031-1.5432 1.9157-.8725.0582.1254.0491.2.0164.329-.1163.4453-1.1814 1.4268-1.5667 1.734-.2745.2181-1.1851.9542-1.43956.4125-.22719-.4889.74884-1.3031 1.07236-1.603h.0018ZM9.54598 45.6037c.09088.0963.08906.3835.05998.5143-.11087.4944-1.29229 1.2196-1.66307.6635-.42895-.6416 1.1596-1.6504 1.60491-1.1778h-.00182Z"/>
  <path fill="#FCFCFC" d="M31.3569 2.06759c1.0724-.19448.9215 1.03601-.0327.74338l.0327-.74338ZM52.5676 11.3007c.4599.4598-.3926 1.265-.7615 1.5104-.5471.3653-1.116.149-.8852-.5453.1472-.4435 1.196-1.4195 1.6467-.9669v.0018ZM45.3588 7.64012c-.0237-.0836.0072-.13268.0508-.19993.1473-.22538.6017-.59798.7998-.82154l-.3708 1.19414c-.0873.12723-.3399-.19629-.4798-.17267Z"/>
</svg>                </a>
            </div>
        </div>
        <ul id="menu-menu-pied-de-page" class="menu"><li id="menu-item-2075" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2075"><a href="https://fsd.ch/fr/contact/">Contact</a></li>
<li id="menu-item-2081" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2081"><a href="https://fsd.ch/fr/questions-frequentes/">Questions fréquentes</a></li>
<li id="menu-item-2080" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2080"><a href="https://fsd.ch/fr/presse/">Presse</a></li>
<li id="menu-item-2076" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2076"><a href="https://fsd.ch/fr/nos-quiz/">Nos quiz</a></li>
<li id="menu-item-2074" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2074"><a href="https://fsd.ch/fr/appels-offres/">Appels d’offres</a></li>
<li id="menu-item-7593" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7593"><a href="https://fsd.ch/fr/newsletter-deminage/">S’abonner à la newsletter de la FSD</a></li>
<li id="menu-item-7705" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7705"><a href="https://fsd.ch/fr/step-by-step-documentaire-sur-le-deminage-en-ukraine/">« Step by Step – Premiers pas comme démineurs »</a></li>
</ul>        <div class="links">
                            <a href="https://fsd.ch/dons/" class="btn--primary">Faire un don                    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25">
  <!-- <path fill="#FCFCFC" d="M12.5-.000001c-3.31479 0-6.49516 1.316941-8.83985 3.660151C1.31696 6.00478-.00001 9.18521-.00001 12.5c.002867 3.3148 1.32185 6.4918 3.66504 8.835h-.00098C6.00724 23.6783 9.18521 24.9972 12.5 25l.3105-.0039c3.0989-.077 6.0603-1.3033 8.3067-3.4395l.2226-.2168c2.27-2.2713 3.5768-5.3269 3.6563-8.5293L25 12.5c0-3.31479-1.3169-6.49516-3.6602-8.83985C18.9952 1.31697 15.8148 0 12.5-.000001ZM24 12.5c0 3.0495-1.2115 5.9757-3.3672 8.1328l-.4131.3926c-2.1099 1.9094-4.86 2.9734-7.7187 2.9736-3.04964-.0025-5.97297-1.2151-8.12894-3.3711C2.21631 18.4722 1.00286 15.5494.99999 12.5l.01367-.5703c.13165-2.65275 1.17869-5.18002 2.96094-7.14943l.39258-.41309C6.52438 2.21146 9.45049.999998 12.5.999999 15.3591 1 18.1096 2.06504 20.2197 3.97461l.4131.39258C22.7885 6.52438 24 9.45049 24 12.5Z"/> -->
  <path fill="#FCFCFC" fill-rule="evenodd" d="M19.2306 9.30689c-1.7399-2.08715-5.2012-1.55992-6.2309.76941-1.0292-2.32932-4.49095-2.85666-6.2309-.76941-.63906.73891-.89763 1.70201-.70794 2.63461.1959 1.0299.86545 2.012 1.71177 2.7772.59673.5173 1.22448 1.0025 1.8805 1.4541 1.08787.7789 2.23787 1.603 3.19587 2.7588.0367.0437.0926.0689.1519.0684.0598-.0005.1152-.0263.1507-.0705.9586-1.1536 2.1074-1.9778 3.1947-2.7561.656-.451 1.2838-.9368 1.8805-1.4547.8463-.7647 1.5159-1.7467 1.7124-2.7772.1897-.933-.0695-1.8956-.7086-2.63461Z" clip-rule="evenodd"/>
</svg>
                </a>
                        <span class="socials">
                <a href="https://twitter.com/fsd__ch" target="_blank" rel="noopener">
                    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
  <path fill="#FCFCFC" d="M14.2737 10.1635 23.2023 0h-2.1151l-7.7559 8.82305L7.14125 0H0l9.3626 13.3433L0 24h2.11504l8.18516-9.3194L16.8388 24H23.98M2.8784 1.5619h3.24929L21.0856 22.5148h-3.2501"/>
</svg>                </a>
                <a href="https://www.instagram.com/fsd.ch/" target="_blank" rel="noopener">
                    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 24">
  <g clip-path="url(#a)">
    <path fill="#FCFCFC" d="M12.9805 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.20403 0-3.58403-.012-4.84903-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.84903-.069Zm0-2.163C9.72147 0 9.31347.014 8.03347.072c-4.358.2-6.78 2.618-6.98 6.98C.994469 8.333.980469 8.741.980469 12c0 3.259.014 3.668.072001 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.94803.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073Zm0 5.838c-3.40303 0-6.16203 2.759-6.16203 6.162s2.759 6.163 6.16203 6.163c3.403 0 6.162-2.759 6.162-6.163 0-3.403-2.759-6.162-6.162-6.162Zm0 10.162c-2.209 0-4.00003-1.79-4.00003-4 0-2.209 1.79103-4 4.00003-4 2.209 0 4 1.791 4 4 0 2.21-1.791 4-4 4Zm6.406-11.845c-.796 0-1.441.645-1.441 1.44 0 .795.645 1.44 1.441 1.44.795 0 1.439-.645 1.439-1.44 0-.795-.644-1.44-1.439-1.44Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <path fill="#fff" d="M.980469 0h24v24h-24z"/>
    </clipPath>
  </defs>
</svg>                </a>
                <a href="https://www.youtube.com/c/fondationsuissededeminage" target="_blank" rel="noopener">
                    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 18">
  <path fill="#FCFCFC" d="M20.5955.183881c-3.604-.246-11.63103-.245-15.23003 0-3.897.266-4.356 2.619999-4.385001 8.815999.029001 6.18502.484001 8.54902 4.385001 8.81602 3.6.245 11.62603.246 15.23003 0 3.897-.266 4.356-2.62 4.385-8.81602-.029-6.185-.484-8.548999-4.385-8.815999ZM9.98047 12.9999V4.99988l8.00003 3.993-8.00003 4.00702Z"/>
</svg>                </a>
                <a href="https://www.linkedin.com/company/swiss-foundation-for-mine-action-fsd/mycompany/?viewAsMember=true" target="_blank" rel="noopener">
                    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 24">
  <path fill="#FCFCFC" d="M19.9805 0H5.98047C3.21947 0 .980469 2.239.980469 5v14c0 2.761 2.239001 5 5.000001 5H19.9805c2.762 0 5-2.239 5-5V5c0-2.761-2.238-5-5-5ZM8.98047 19h-3V8h3v11Zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764ZM20.9805 19h-3v-5.604c0-3.368-4-3.113-4 0V19h-3V8h3v1.765c1.396-2.586 7-2.777 7 2.476V19Z"/>
</svg>                </a>
                <a href="https://www.facebook.com/fsd.ch" target="_blank" rel="noopener">
                    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 24">
  <path fill="#FCFCFC" d="M24.9805 12c0-6.62742-5.3726-12-12-12C6.35305 0 .980469 5.37258.980469 12c0 5.9895 4.388201 10.954 10.125031 11.8542v-8.3854H8.05859V12h3.04691V9.35625c0-3.0075 1.7916-4.66875 4.5326-4.66875 1.3125 0 2.6862.23438 2.6862.23438V7.875h-1.5132c-1.4906 0-1.9556.92508-1.9556 1.875V12h3.3281l-.532 3.4688h-2.7961v8.3854c5.7368-.9002 10.125-5.8647 10.125-11.8542Z"/>
</svg>                </a>
                <a href="https://tiktok.com/@fsd.ch" target="_blank" rel="noopener">
                    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 22 24">
  <path fill="#FCFCFC" d="M16.053 0h-4.0447v16.3478c0 1.9479-1.5556 3.5479-3.49157 3.5479-1.93592 0-3.49157-1.6-3.49157-3.5479 0-1.913 1.52108-3.4783 3.38788-3.5478V8.69567C4.29919 8.7652.980469 12.1391.980469 16.3478.980469 20.5913 4.36833 24 8.55132 24c4.18298 0 7.57078-3.4435 7.57078-7.6522V7.9652c1.5211 1.11307 3.3879 1.77393 5.3584 1.80873V5.66957C18.4384 5.56522 16.053 3.06087 16.053 0Z"/>
</svg>                </a>
                <a href="https://bsky.app/profile/fsd.ch" target="_blank" rel="noopener">
                    <svg fill="#FFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 530">
  <path d="M135.72 44.03C202.216 93.951 273.74 195.17 300 249.49c26.262-54.316 97.782-155.54 164.28-205.46C512.26 8.009 590-19.862 590 68.825c0 17.712-10.155 148.79-16.111 170.07-20.703 73.984-96.144 92.854-163.25 81.433 117.3 19.964 147.14 86.092 82.697 152.22-122.39 125.59-175.91-31.511-189.63-71.766-2.514-7.38-3.69-10.832-3.708-7.896-.017-2.936-1.193.516-3.707 7.896-13.714 40.255-67.233 197.36-189.63 71.766-64.444-66.128-34.605-132.26 82.697-152.22-67.108 11.421-142.55-7.45-163.25-81.433C20.15 217.613 9.997 86.535 9.997 68.825c0-88.687 77.742-60.816 125.72-24.795z"/>
  <script/>
</svg>
                </a>
            </span>
        </div>


    </div>
    <div class="sub-footer">
        <ul id="menu-sous-menu-pied-de-page" class="menu"><li id="menu-item-1857" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-1857"><a rel="privacy-policy" href="https://fsd.ch/fr/politique-de-confidentialite/">Politique de confidentialité</a></li>
<li id="menu-item-1858" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1858"><a href="https://fsd.ch/fr/mentions-legales/">Mentions légales</a></li>
<li id="menu-item-2082" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2082"><a href="https://fsd.ch/fr/plaintes-denonciations/">Signalement &amp; Plaintes</a></li>
</ul>        <a href="#" class="footer__cookies js-gtm-consent-open">
            Gérer mes cookies        </a>
    </div>
</footer>

<div id="gtm-consent-banner" class="gtm-consent-banner">
  <div class="gtm-consent__inner">

    <button
      type="button"
      id="gtm-consent-close"
      class="gtm-consent__close"
      aria-label="Fermer et refuser tous les services"
    >
      ✕
    </button>

    <div class="gtm-consent__content" id="gtm-consent-content">

      <div class="gtm-consent__summary" id="gtm-consent-summary">
        <p class="gtm-consent__summary-text">
          Ce site utilise des cookies pour vous garantir une meilleure expérience et mesurer l'efficacité de nos campagnes.          <a href="/fr/politique-de-confidentialite/" target="_blank" rel="noopener">
            Plus d'informations          </a>.
        </p>

        <div class="gtm-consent__buttons">
          <button id="gtm-consent-accept-all"
                  class="gtm-consent__button gtm-consent__button--primary">
              Tout accepter          </button>

          <button id="gtm-consent-reject-all"
                  class="gtm-consent__button gtm-consent__button--secondary">
              Tout refuser          </button>

          <button id="gtm-consent-customize"
                  class="gtm-consent__button gtm-consent__button--accent">
              Personnaliser          </button>
        </div>
      </div>

      <div class="gtm-consent__details" id="gtm-consent-details" aria-hidden="true">
        <div class="gtm-consent__section">
          <div class="gtm-consent__section-content">
            <strong class="gtm-consent__section-title">Mesure d'audience</strong>
            <p class="gtm-consent__section-text">
              Nous utilisons des outils de mesure d'audience (comme Google Analytics 4 et Clarity), via Google Tag Manager,
              pour comprendre l'utilisation du site et l'améliorer. Les données sont utilisées à des fins statistiques
              et ne servent pas à la publicité ciblée.            </p>
          </div>
          <label class="gtm-consent__toggle">
            <input type="checkbox" id="toggle-analytics" class="gtm-consent__toggle-input" checked>
            <span class="gtm-consent__toggle-label">Activer</span>
          </label>
        </div>

        <div class="gtm-consent__section">
          <div class="gtm-consent__section-content">
            <strong class="gtm-consent__section-title">Publicité &amp; mesure des campagnes</strong>
            <p class="gtm-consent__section-text">
              Nous utilisons également des balises liées à Google Ads afin de mesurer la performance de nos campagnes et,
              le cas échéant, de vous proposer des publicités plus pertinentes.            </p>
          </div>
          <label class="gtm-consent__toggle">
            <input type="checkbox" id="toggle-ads" class="gtm-consent__toggle-input" checked>
            <span class="gtm-consent__toggle-label">Activer</span>
          </label>
        </div>

        <div class="gtm-consent__buttons">
          <button id="gtm-consent-save"
                  class="gtm-consent__button gtm-consent__button--primary">
              Enregistrer mes choix          </button>

          <button id="gtm-consent-back"
                  class="gtm-consent__button gtm-consent__button--secondary">
              Retour          </button>
        </div>
      </div>
    </div>

    <!-- Scroll indicator -->
    <div class="gtm-consent__scroll-indicator" id="gtm-scroll-indicator">
      <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
        <path d="M12 5V19M12 19L5 12M12 19L19 12" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
      <span>Faire défiler pour plus d'options</span>
    </div>
  </div>
</div>

<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/fr/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/toolkit/*","/fr/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe sandbox="allow-scripts allow-same-origin" src="https://www.googletagmanager.com/ns.html?id=GTM-5XW3M28"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) --><script id="wp-dom-ready-js" src="https://fsd.ch/wp-includes/js/dist/dom-ready.js?a06281ae5cf5500e9317"></script>
<script id="wp-hooks-js" src="https://fsd.ch/wp-includes/js/dist/hooks.js?7496969728ca0f95732d"></script>
<script id="wp-i18n-js" src="https://fsd.ch/wp-includes/js/dist/i18n.js?781d11515ad3d91786ec"></script>
<script id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
//# sourceURL=wp-i18n-js-after
</script>
<script id="wp-a11y-js-translations">
( function( domain, translations ) {
	var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
	localeData[""].domain = domain;
	wp.i18n.setLocaleData( localeData, domain );
} )( "default", {"translation-revision-date":"2026-06-08 09:40:00+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}} );
//# sourceURL=wp-a11y-js-translations
</script>
<script id="wp-a11y-js" src="https://fsd.ch/wp-includes/js/dist/a11y.js?af934e5259bc51b8718e"></script>
<script id="jquery-core-js" src="https://fsd.ch/wp-includes/js/jquery/jquery.js?3.7.1"></script>
<script id="jquery-migrate-js" src="https://fsd.ch/wp-includes/js/jquery/jquery-migrate.js?3.4.1"></script>
<script id="gform_json-js" defer='defer' src="https://fsd.ch/wp-content/plugins/gravityforms/js/jquery.json.js?2.10.3"></script>
<script id="gform_gravityforms-js-extra">
var gform_i18n = {"datepicker":{"days":{"monday":"Lun","tuesday":"Mar","wednesday":"Mer","thursday":"Jeu","friday":"Ven","saturday":"Sam","sunday":"Dim"},"months":{"january":"Janvier","february":"F\u00e9vrier","march":"Mars","april":"Avril","may":"Mai","june":"Juin","july":"Juillet","august":"Ao\u00fbt","september":"Septembre","october":"Octobre","november":"Novembre","december":"D\u00e9cembre"},"firstDay":1,"iconText":"S\u00e9lectionner une date"}};
var gf_legacy_multi = [];
var gform_gravityforms = {"strings":{"invalid_file_extension":"Ce type de fichier n\u2019est pas autoris\u00e9. Seuls les formats suivants sont autoris\u00e9s\u00a0:","delete_file":"Supprimer ce fichier","in_progress":"en cours","file_exceeds_limit":"Le fichier d\u00e9passe la taille autoris\u00e9e.","illegal_extension":"Ce type de fichier n\u2019est pas autoris\u00e9.","max_reached":"Nombre de fichiers maximal atteint","unknown_error":"Une erreur s\u2019est produite lors de la sauvegarde du fichier sur le serveur","currently_uploading":"Veuillez attendre la fin du t\u00e9l\u00e9versement","cancel":"Annuler","cancel_upload":"Annuler ce t\u00e9l\u00e9versement","cancelled":"Annul\u00e9","error":"Erreur","message":"Message"},"vars":{"images_url":"https://fsd.ch/wp-content/plugins/gravityforms/images"}};
var gf_global = {"gf_currency_config":{"name":"Franc suisse","symbol_left":"CHF","symbol_right":"","symbol_padding":" ","thousand_separator":"'","decimal_separator":".","decimals":2,"symbol_old":"Fr.","code":"CHF"},"base_url":"https://fsd.ch/wp-content/plugins/gravityforms","number_formats":[],"spinnerUrl":"https://fsd.ch/wp-content/plugins/gravityforms/images/spinner.svg","version_hash":"820b3b57b9488810eca4d0e9c9e20ad9","strings":{"newRowAdded":"Nouvelle ligne ajout\u00e9e.","rowRemoved":"Rang\u00e9e supprim\u00e9e","formSaved":"Le formulaire a \u00e9t\u00e9 enregistr\u00e9. Le contenu contient le lien pour retourner et terminer le formulaire."}};
//# sourceURL=gform_gravityforms-js-extra
</script>
<script id="gform_gravityforms-js" defer='defer' src="https://fsd.ch/wp-content/plugins/gravityforms/js/gravityforms.js?2.10.3"></script>
<script id="gform_placeholder-js" defer='defer' src="https://fsd.ch/wp-content/plugins/gravityforms/js/placeholders.jquery.min.js?2.10.3"></script>
<script id="gform_gravityforms_utils-js" defer='defer' src="https://fsd.ch/wp-content/plugins/gravityforms/assets/js/dist/utils.min.js?3f278756f0a3032bed328ff6a9f6c01d"></script>
<script id="gform_gravityforms_theme_vendors-js" defer='defer' src="https://fsd.ch/wp-content/plugins/gravityforms/assets/js/dist/vendor-theme.min.js?7c651d0ba638ce98b9c65141edddd567"></script>
<script id="gform_gravityforms_theme-js-extra">
var gform_theme_config = {"common":{"form":{"honeypot":{"version_hash":"820b3b57b9488810eca4d0e9c9e20ad9"},"ajax":{"ajaxurl":"https://fsd.ch/wp-admin/admin-ajax.php","ajax_submission_nonce":"7559bc55bc","i18n":{"step_announcement":"\u00c9tape %1$s de %2$s, %3$s","unknown_error":"Une erreur inconnue s\u2018est produite lors du traitement de votre demande. Veuillez r\u00e9essayer.","error_403":"The request was blocked (403 error) for unknown security reasons. Remove any code-like text (scripts or DB queries) and try again."}}}},"hmr_dev":"","public_path":"https://fsd.ch/wp-content/plugins/gravityforms/assets/js/dist/","config_nonce":"e86d4a3050"};
//# sourceURL=gform_gravityforms_theme-js-extra
</script>
<script id="gform_gravityforms_theme-js" defer='defer' src="https://fsd.ch/wp-content/plugins/gravityforms/assets/js/dist/scripts-theme.min.js?301fdc9aa6144168f3b854c4c2c8f6d3"></script>
<script>
gform.initializeOnLoaded( function() { jQuery(document).on('gform_post_render', function(event, formId, currentPage){if(formId == 1) {if(typeof Placeholders != 'undefined'){
                        Placeholders.enable();
                    }} } );jQuery(document).on('gform_post_conditional_logic', function(event, formId, fields, isInit){} ) } );
</script>
<script>
gform.initializeOnLoaded( function() {jQuery(document).trigger("gform_pre_post_render", [{ formId: "1", currentPage: "1", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( "gform_wrapper_1" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( "span" );            visibilitySpan.id = "gform_visibility_test_1";            gformWrapperDiv.insertAdjacentElement( "afterend", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( "gform_visibility_test_1" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 1, 1 );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );
</script>
</body>

</html>
