DELETE FROM KEYWORDS WHERE ID_DOMAINE=44204DoneDoneDone
URL:www.fapil.net
Content-Length: 0
Location: https://www.fapil.fr/
Location => https://www.fapil.fr/
Status => 301
(vide) Tentative en https
<!doctype html>
<html lang="fr-FR" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" /><link rel="shortcut icon" href="https://www.fapil.fr/wp-content/uploads/2019/05/logo_fapil.png" /><title>Fapil – Fédération des Associations et des Acteurs pour la Promotion et l'Insertion par le Logement</title>
<meta name='robots' content='max-image-preview:large' />
<script type="text/javascript">
var jobsearch_sloc_country = '', jobsearch_sloc_state = '', jobsearch_sloc_city = '',
jobsearch_sloc_type = '', jobsearch_is_admin = '', jobsearch_is_post_page = '',
jobsearch_is_loc_editor = '';
</script>
<link rel='dns-prefetch' href='//widget.tagembed.com' />
<link rel='dns-prefetch' href='//static.addtoany.com' />
<link rel='dns-prefetch' href='//maps.googleapis.com' />
<link rel='dns-prefetch' href='//maxcdn.bootstrapcdn.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//api.tiles.mapbox.com' />
<link rel='dns-prefetch' href='//api.mapbox.com' />
<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin />
<link rel="alternate" type="application/rss+xml" title="Fapil » Flux" href="https://www.fapil.fr/feed" />
<link rel="alternate" type="application/rss+xml" title="Fapil » Flux des commentaires" href="https://www.fapil.fr/comments/feed" />
<script type="text/javascript">
/* <![CDATA[ */
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/www.fapil.fr\/wp-includes\/js\/wp-emoji.js?ver=6.6.2","twemoji":"https:\/\/www.fapil.fr\/wp-includes\/js\/twemoji.js?ver=6.6.2"}};
/**
* @output wp-includes/js/wp-emoji-loader.js
*/
/**
* Emoji Settings as exported in PHP via _print_emoji_detection_script().
* @typedef WPEmojiSettings
* @type {object}
* @property {?object} source
* @property {?string} source.concatemoji
* @property {?string} source.twemoji
* @property {?string} source.wpemoji
* @property {?boolean} DOMReady
* @property {?Function} readyCallback
*/
/**
* Support tests.
* @typedef SupportTests
* @type {object}
* @property {?boolean} flag
* @property {?boolean} emoji
*/
/**
* IIFE to detect emoji support and load Twemoji if needed.
*
* @param {Window} window
* @param {Document} document
* @param {WPEmojiSettings} settings
*/
( function wpEmojiLoader( window, document, settings ) {
if ( typeof Promise === 'undefined' ) {
return;
}
var sessionStorageKey = 'wpEmojiSettingsSupports';
var tests = [ 'flag', 'emoji' ];
/**
* Checks whether the browser supports offloading to a Worker.
*
* @since 6.3.0
*
* @private
*
* @returns {boolean}
*/
function supportsWorkerOffloading() {
return (
typeof Worker !== 'undefined' &&
typeof OffscreenCanvas !== 'undefined' &&
typeof URL !== 'undefined' &&
URL.createObjectURL &&
typeof Blob !== 'undefined'
);
}
/**
* @typedef SessionSupportTests
* @type {object}
* @property {number} timestamp
* @property {SupportTests} supportTests
*/
/**
* Get support tests from session.
*
* @since 6.3.0
*
* @private
*
* @returns {?SupportTests} Support tests, or null if not set or older than 1 week.
*/
function getSessionSupportTests() {
try {
/** @type {SessionSupportTests} */
var item = JSON.parse(
sessionStorage.getItem( sessionStorageKey )
);
if (
typeof item === 'object' &&
typeof item.timestamp === 'number' &&
new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
typeof item.supportTests === 'object'
) {
return item.supportTests;
}
} catch ( e ) {}
return null;
}
/**
* Persist the supports in session storage.
*
* @since 6.3.0
*
* @private
*
* @param {SupportTests} supportTests Support tests.
*/
function setSessionSupportTests( supportTests ) {
try {
/** @type {SessionSupportTests} */
var item = {
supportTests: supportTests,
timestamp: new Date().valueOf()
};
sessionStorage.setItem(
sessionStorageKey,
JSON.stringify( item )
);
} catch ( e ) {}
}
/**
* Checks if two sets of Emoji characters render the same visually.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be passed by parameters.
*
* @since 4.9.0
*
* @private
*
* @param {CanvasRenderingContext2D} context 2D Context.
* @param {string} set1 Set of Emoji to test.
* @param {string} set2 Set of Emoji to test.
*
* @return {boolean} True if the two sets render the same.
*/
function emojiSetsRenderIdentically( context, set1, set2 ) {
// Cleanup from previous test.
context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
context.fillText( set1, 0, 0 );
var rendered1 = new Uint32Array(
context.getImageData(
0,
0,
context.canvas.width,
context.canvas.height
).data
);
// Cleanup from previous test.
context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
context.fillText( set2, 0, 0 );
var rendered2 = new Uint32Array(
context.getImageData(
0,
0,
context.canvas.width,
context.canvas.height
).data
);
return rendered1.every( function ( rendered2Data, index ) {
return rendered2Data === rendered2[ index ];
} );
}
/**
* Determines if the browser properly renders Emoji that Twemoji can supplement.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be passed by parameters.
*
* @since 4.2.0
*
* @private
*
* @param {CanvasRenderingContext2D} context 2D Context.
* @param {string} type Whether to test for support of "flag" or "emoji".
* @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
*
* @return {boolean} True if the browser can render emoji, false if it cannot.
*/
function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) {
var isIdentical;
switch ( type ) {
case 'flag':
/*
* Test for Transgender flag compatibility. Added in Unicode 13.
*
* To test for support, we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly (white flag emoji + transgender symbol).
*/
isIdentical = emojiSetsRenderIdentically(
context,
'\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence
'\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space
);
if ( isIdentical ) {
return false;
}
/*
* Test for UN flag compatibility. This is the least supported of the letter locale flags,
* so gives us an easy test for full support.
*
* To test for support, we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly ([U] + [N]).
*/
isIdentical = emojiSetsRenderIdentically(
context,
'\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points
'\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space
);
if ( isIdentical ) {
return false;
}
/*
* Test for English flag compatibility. England is a country in the United Kingdom, it
* does not have a two letter locale code but rather a five letter sub-division code.
*
* To test for support, we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
*/
isIdentical = emojiSetsRenderIdentically(
context,
// as the flag sequence
'\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F',
// with each code point separated by a zero-width space
'\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F'
);
return ! isIdentical;
case 'emoji':
/*
* Four and twenty blackbirds baked in a pie.
*
* To test for Emoji 15.0 support, try to render a new emoji: Blackbird.
*
* The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square.,
*
* 0x1F426 (\uD83D\uDC26) == Bird
* 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or
* 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
* 0x2B1B == Large Black Square
*
* When updating this test for future Emoji releases, ensure that individual emoji that make up the
* sequence come from older emoji standards.
*/
isIdentical = emojiSetsRenderIdentically(
context,
'\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence
'\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space
);
return ! isIdentical;
}
return false;
}
/**
* Checks emoji support tests.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be passed by parameters.
*
* @since 6.3.0
*
* @private
*
* @param {string[]} tests Tests.
* @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification.
* @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
*
* @return {SupportTests} Support tests.
*/
function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) {
var canvas;
if (
typeof WorkerGlobalScope !== 'undefined' &&
self instanceof WorkerGlobalScope
) {
canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement.
} else {
canvas = document.createElement( 'canvas' );
}
var context = canvas.getContext( '2d', { willReadFrequently: true } );
/*
* Chrome on OS X added native emoji rendering in M41. Unfortunately,
* it doesn't work when the font is bolder than 500 weight. So, we
* check for bold rendering support to avoid invisible emoji in Chrome.
*/
context.textBaseline = 'top';
context.font = '600 32px Arial';
var supports = {};
tests.forEach( function ( test ) {
supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically );
} );
return supports;
}
/**
* Adds a script to the head of the document.
*
* @ignore
*
* @since 4.2.0
*
* @param {string} src The url where the script is located.
*
* @return {void}
*/
function addScript( src ) {
var script = document.createElement( 'script' );
script.src = src;
script.defer = true;
document.head.appendChild( script );
}
settings.supports = {
everything: true,
everythingExceptFlag: true
};
// Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired.
var domReadyPromise = new Promise( function ( resolve ) {
document.addEventListener( 'DOMContentLoaded', resolve, {
once: true
} );
} );
// Obtain the emoji support from the browser, asynchronously when possible.
new Promise( function ( resolve ) {
var supportTests = getSessionSupportTests();
if ( supportTests ) {
resolve( supportTests );
return;
}
if ( supportsWorkerOffloading() ) {
try {
// Note that the functions are being passed as arguments due to minification.
var workerScript =
'postMessage(' +
testEmojiSupports.toString() +
'(' +
[
JSON.stringify( tests ),
browserSupportsEmoji.toString(),
emojiSetsRenderIdentically.toString()
].join( ',' ) +
'));';
var blob = new Blob( [ workerScript ], {
type: 'text/javascript'
} );
var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } );
worker.onmessage = function ( event ) {
supportTests = event.data;
setSessionSupportTests( supportTests );
worker.terminate();
resolve( supportTests );
};
return;
} catch ( e ) {}
}
supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically );
setSessionSupportTests( supportTests );
resolve( supportTests );
} )
// Once the browser emoji support has been obtained from the session, finalize the settings.
.then( function ( supportTests ) {
/*
* Tests the browser support for flag emojis and other emojis, and adjusts the
* support settings accordingly.
*/
for ( var test in supportTests ) {
settings.supports[ test ] = supportTests[ test ];
settings.supports.everything =
settings.supports.everything && settings.supports[ test ];
if ( 'flag' !== test ) {
settings.supports.everythingExceptFlag =
settings.supports.everythingExceptFlag &&
settings.supports[ test ];
}
}
settings.supports.everythingExceptFlag =
settings.supports.everythingExceptFlag &&
! settings.supports.flag;
// Sets DOMReady to false and assigns a ready function to settings.
settings.DOMReady = false;
settings.readyCallback = function () {
settings.DOMReady = true;
};
} )
.then( function () {
return domReadyPromise;
} )
.then( function () {
// When the browser can not render everything we need to load a polyfill.
if ( ! settings.supports.everything ) {
settings.readyCallback();
var src = settings.source || {};
if ( src.concatemoji ) {
addScript( src.concatemoji );
} else if ( src.wpemoji && src.twemoji ) {
addScript( src.twemoji );
addScript( src.wpemoji );
}
}
} );
} )( window, document, window._wpemojiSettings );
/* ]]> */
</script>
<link rel='stylesheet' id='wpfd-wpbakery-style-css' href='https://www.fapil.fr/wp-content/plugins/wp-file-download/app/includes/wpbakery/assets/css/wpbakery.css?ver=9999999.100.100' type='text/css' media='all' />
<style id='wp-emoji-styles-inline-css' type='text/css'>
img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://www.fapil.fr/wp-includes/css/dist/block-library/style.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='Connections_Directory/Block/Carousel/Style-css' href='//www.fapil.fr/wp-content/plugins/connections/assets/dist/block/carousel/style.css?ver=1718377930' type='text/css' media='all' />
<link rel='stylesheet' id='Connections_Directory/Block/Team/Style-css' href='//www.fapil.fr/wp-content/plugins/connections/assets/dist/block/team/style.css?ver=1718377930' type='text/css' media='all' />
<style id='classic-theme-styles-inline-css' type='text/css'>
/**
* These rules are needed for backwards compatibility.
* They should match the button element rules in the base theme.json file.
*/
.wp-block-button__link {
color: #ffffff;
background-color: #32373c;
border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */
/* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */
box-shadow: none;
text-decoration: none;
/* The extra 2px are added to size solids the same as the outline versions.*/
padding: calc(0.667em + 2px) calc(1.333em + 2px);
font-size: 1.125em;
}
.wp-block-file__button {
background: #32373c;
color: #ffffff;
text-decoration: none;
}
</style>
<style id='global-styles-inline-css' type='text/css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='contact-form-7-css' href='https://www.fapil.fr/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='ctf_styles-css' href='https://www.fapil.fr/wp-content/plugins/custom-twitter-feeds/css/ctf-styles.min.css?ver=2.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='mailerlite_forms.css-css' href='https://www.fapil.fr/wp-content/plugins/official-mailerlite-sign-up-forms/assets/css/mailerlite_forms.css?ver=1.7.13' type='text/css' media='all' />
<link rel='stylesheet' id='salient-social-css' href='https://www.fapil.fr/wp-content/plugins/salient-social/css/style.css?ver=1.2' type='text/css' media='all' />
<style id='salient-social-inline-css' type='text/css'>
.sharing-default-minimal .nectar-love.loved,
body .nectar-social[data-color-override="override"].fixed > a:before,
body .nectar-social[data-color-override="override"].fixed .nectar-social-inner a,
.sharing-default-minimal .nectar-social[data-color-override="override"] .nectar-social-inner a:hover {
background-color: #ef3474;
}
.nectar-social.hover .nectar-love.loved,
.nectar-social.hover > .nectar-love-button a:hover,
.nectar-social[data-color-override="override"].hover > div a:hover,
#single-below-header .nectar-social[data-color-override="override"].hover > div a:hover,
.nectar-social[data-color-override="override"].hover .share-btn:hover,
.sharing-default-minimal .nectar-social[data-color-override="override"] .nectar-social-inner a {
border-color: #ef3474;
}
#single-below-header .nectar-social.hover .nectar-love.loved i,
#single-below-header .nectar-social.hover[data-color-override="override"] a:hover,
#single-below-header .nectar-social.hover[data-color-override="override"] a:hover i,
#single-below-header .nectar-social.hover .nectar-love-button a:hover i,
.nectar-love:hover i,
.hover .nectar-love:hover .total_loves,
.nectar-love.loved i,
.nectar-social.hover .nectar-love.loved .total_loves,
.nectar-social.hover .share-btn:hover,
.nectar-social[data-color-override="override"].hover .nectar-social-inner a:hover,
.nectar-social[data-color-override="override"].hover > div:hover span,
.sharing-default-minimal .nectar-social[data-color-override="override"] .nectar-social-inner a:not(:hover) i,
.sharing-default-minimal .nectar-social[data-color-override="override"] .nectar-social-inner a:not(:hover) {
color: #ef3474;
}
</style>
<link rel='stylesheet' id='dashicons-css' href='https://www.fapil.fr/wp-includes/css/dashicons.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='cff-css' href='https://www.fapil.fr/wp-content/plugins/custom-facebook-feed/assets/css/cff-style.min.css?ver=4.2.5' type='text/css' media='all' />
<link rel='stylesheet' id='sb-font-awesome-css' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-css' href='https://www.fapil.fr/wp-content/themes/fapilnew/css/font-awesome-legacy.min.css?ver=4.7.1' type='text/css' media='all' />
<link rel='stylesheet' id='salient-grid-system-css' href='https://www.fapil.fr/wp-content/themes/fapilnew/css/grid-system.css?ver=13.0.6' type='text/css' media='all' />
<link rel='stylesheet' id='main-styles-css' href='https://www.fapil.fr/wp-content/themes/fapilnew/css/style.css?ver=13.0.6' type='text/css' media='all' />
<style id='main-styles-inline-css' type='text/css'>
html body[data-header-resize="1"] .container-wrap, html body[data-header-format="left-header"][data-header-resize="0"] .container-wrap, html body[data-header-resize="0"] .container-wrap, body[data-header-format="left-header"][data-header-resize="0"] .container-wrap { padding-top: 0; } .main-content > .row > #breadcrumbs.yoast { padding: 20px 0; }
</style>
<link rel='stylesheet' id='nectar-element-recent-posts-css' href='https://www.fapil.fr/wp-content/themes/fapilnew/css/elements/element-recent-posts.css?ver=13.0.6' type='text/css' media='all' />
<link rel='stylesheet' id='nectar_default_font_open_sans-css' href='https://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C600%2C700&subset=latin%2Clatin-ext' type='text/css' media='all' />
<link rel='stylesheet' id='responsive-css' href='https://www.fapil.fr/wp-content/themes/fapilnew/css/responsive.css?ver=13.0.6' type='text/css' media='all' />
<link rel='stylesheet' id='skin-ascend-css' href='https://www.fapil.fr/wp-content/themes/fapilnew/css/ascend.css?ver=13.0.6' type='text/css' media='all' />
<link rel='stylesheet' id='salient-wp-menu-dynamic-css' href='https://www.fapil.fr/wp-content/uploads/salient/menu-dynamic.css?ver=35758' type='text/css' media='all' />
<link rel='stylesheet' id='cn-public-css' href='//www.fapil.fr/wp-content/plugins/connections/assets/dist/frontend/style.css?ver=10.4.65-1718377930' type='text/css' media='all' />
<link rel='stylesheet' id='cnt-slim-plus-css' href='//www.fapil.fr/wp-content/plugins/connections-slim-plus/slim-plus.css?ver=2.4' type='text/css' media='all' />
<link rel='stylesheet' id='cnt-profile-css' href='//www.fapil.fr/wp-content/plugins/connections/templates/profile/profile.css?ver=3.0' type='text/css' media='all' />
<link rel='stylesheet' id='js_composer_front-css' href='https://www.fapil.fr/wp-content/plugins/js_composer_salient/assets/css/js_composer.min.css?ver=6.6.0' type='text/css' media='all' />
<link rel='stylesheet' id='addtoany-css' href='https://www.fapil.fr/wp-content/plugins/add-to-any/addtoany.min.css?ver=1.16' type='text/css' media='all' />
<link rel='stylesheet' id='cf7cf-style-css' href='https://www.fapil.fr/wp-content/plugins/cf7-conditional-fields/style.css?ver=2.5' type='text/css' media='all' />
<link rel='stylesheet' id='dynamic-css-css' href='https://www.fapil.fr/wp-content/themes/fapilnew/css/salient-dynamic-styles.css?ver=39156' type='text/css' media='all' />
<style id='dynamic-css-inline-css' type='text/css'>
@media only screen and (min-width:1000px){body #ajax-content-wrap.no-scroll{min-height:calc(100vh - 92px);height:calc(100vh - 92px)!important;}}@media only screen and (min-width:1000px){#page-header-wrap.fullscreen-header,#page-header-wrap.fullscreen-header #page-header-bg,html:not(.nectar-box-roll-loaded) .nectar-box-roll > #page-header-bg.fullscreen-header,.nectar_fullscreen_zoom_recent_projects,#nectar_fullscreen_rows:not(.afterLoaded) > div{height:calc(100vh - 91px);}.wpb_row.vc_row-o-full-height.top-level,.wpb_row.vc_row-o-full-height.top-level > .col.span_12{min-height:calc(100vh - 91px);}html:not(.nectar-box-roll-loaded) .nectar-box-roll > #page-header-bg.fullscreen-header{top:92px;}.nectar-slider-wrap[data-fullscreen="true"]:not(.loaded),.nectar-slider-wrap[data-fullscreen="true"]:not(.loaded) .swiper-container{height:calc(100vh - 90px)!important;}.admin-bar .nectar-slider-wrap[data-fullscreen="true"]:not(.loaded),.admin-bar .nectar-slider-wrap[data-fullscreen="true"]:not(.loaded) .swiper-container{height:calc(100vh - 90px - 32px)!important;}}.img-with-aniamtion-wrap[data-border-radius="none"] .img-with-animation,.img-with-aniamtion-wrap[data-border-radius="none"] .hover-wrap{border-radius:none;}.img-with-aniamtion-wrap[data-max-width="150%"] .inner{width:150%;display:block;}.img-with-aniamtion-wrap[data-max-width="150%"] img{max-width:100%;width:auto;}.img-with-aniamtion-wrap[data-max-width="150%"][data-shadow*="depth"] img{max-width:none;width:100%;}.right.img-with-aniamtion-wrap[data-max-width="150%"] img{display:block;}.img-with-aniamtion-wrap.right[data-max-width="150%"] .inner{margin-left:-50%;}@media only screen and (max-width :999px){.img-with-aniamtion-wrap[data-max-width="150%"] .inner{max-width:100%;}.img-with-animation[data-max-width="150%"]{max-width:100%;margin-left:0;}}.screen-reader-text,.nectar-skip-to-content:not(:focus){border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;}
/* Header */
.jobsearch-icon{background: inherit !important;}
#header-outer header#top nav >ul.buttons[data-user-set-ocm="1"] li.slide-out-widget-area-toggle { display: none !important;}
.ascend #header-outer[data-full-width="true"] #top nav ul #search-btn a {border: none !important; padding-left: 12px;}
#top nav ul li a {color: #666;}
#menu-item-4540 {background: #F4F4F4;}
#menu-item-10785 {background: #ef3474;}
#menu-item-10785 a {color: #fff !important;}
#menu-item-10785 a:after {border-color: #fff !important;}
#menu-menu-2 li {list-style-type: square;}
.breadcrumbs {position: relative; z-index: 9999; border-bottom: 1px solid #eee; padding: 6px 0;}
.home .breadcrumbs, .page-id-3675 .breadcrumbs, .page-id-213 .breadcrumbs, .page-id-4625 .breadcrumbs {display: none;}
body.ascend #search-outer #search input[type="text"] {font-size: 5em !important; border: none !important;}
@media (max-width: 800px) {
body.ascend #search-outer #search input[type="text"] {font-size: 3em !important;}
}
/* Fonts */
.bold, strong, b {color: #444;}
/* Error pages */
.error404 .search-field, .widget_search .search-field {background: #fff !important; color: #666 !important;}
.error404 .search-form {margin: 20px auto; width: 50% !important;}
.error404 #error-404 h3 {color: #fff; font-size: 20px !important; line-height: 26px !important;}
.error404 #error-404 h4 {color: #fff; font-size: 90px !important; line-height: 100px !important;}
.error404 #error-404 h5 {color: #fff; font-size: 26px !important; line-height: 36px !important;}
/* General */
.relative {position: relative;}
body[data-bg-header="true"] .container-wrap {padding-bottom: 0 !important;}
.light-padding-par p {padding-bottom: 10px;}
.nectar-icon-list-item {margin-bottom: 20px;}
.nectar-icon-list-item h4 {font-size: 16px !important; line-height: 24px !important;}
ul li {list-style: square;}
.addtoany_header {display: inline-block; margin-right: 6px;}
.addtoany_content {float: right; position: relative; z-index: 9999; margin-top: -36px;}
.home .addtoany_content, .page-id-3675 .addtoany_content, .page-id-213 .addtoany_content {display: none;}
.post-content .addtoany_share_save_container {display: none;}
@media (max-width: 900px) {
.addtoany_content {clear: both; float: none; margin-top: 10px;}
}
.widget_search .search-form input[type=text] {background: none; border: none !important;}
body[data-form-style="minimal"] .widget_search .search-form .search-submit {top: 43px;}
#cn-page-nav .page-numbers, #cn-page-nav a {background: none; padding: 8px 14px; margin-right: 4px; font-weight: 400; font-family: "Lato";}
#cn-page-nav {margin: 30px 0 0 !important;}
#cn-page-nav .page-numbers.current {background: #EF3474; border-color: #EF3474; color: #fff !important;}
#cn-page-nav .page-numbers:hover {border-color: #EF3474 !important; color: #EF3474 !important;}
#cn-slim-plus h3 {pointer-events: none; color: #333 !important; padding: 16px 0 0px; border-color: #ccc !important;}
#cn-slim-plus h3 a {color: #333 !important;}
#cn-slim-plus .cn-sprite {pointer-events: auto;}
#cn-slim-plus .cn-sprite {background-color: #EF3474 !important;}
.screen-reader-text {display: none;}
#cn-list div.cn-alphaindex {background: #EF3474; border: none; padding: 4px 2px; font-size: 14px !important;}
#cn-list div.cn-alphaindex a {color: #fff;}
#cn-slim-plus .cn-search {display: none;}
#cn-list div.cn-alphaindex a {border-right: 1px solid #f786ac; margin: 0; padding: 0 15px;}
.rfbwp-popup-box, .rfbwp-shelf-box {padding-top: 90px;}
.rfbwp-shelf-box .rfbwp-close {top: 110px; right: 110px;}
/* Home */
.ei-title {width: 50% !important; left: 10% !important;}
/* Blog */
.meta-category, .meta-category a {pointer-events:none !important; display: none;}
.nectar-love, .meta-share-count .plural, .bottom_controls {display: none !important;}
.single-portfolio #sidebar {border: 1px solid #eee; padding: 40px; margin: 70px 0 0 -100px; background: #F7F7F7;}
.single-portfolio .main-content {padding-bottom: 80px;}
.grav-wrap a, .meta-author, .meta-comment-count {display: none !important;}
#actualite .meta-category {display: none;}
.masonry.material .masonry-blog-item .grav-wrap .text span {font-size: 14px;}
article.post .post-meta .date {margin-bottom: 0 !important;}
.home .grav-wrap, .home .grav-wrap a {display: block !important;}
.home .grav-wrap img, .home .grav-wrap .text span {display: none !important;}
.home .grav-wrap .text a span {display: block !important;}
.category .subheader {display: none;}
.category-actualite-du-reseau .meta-category, .category-actualite-du-reseau .article-content-wrap {background: #fff !important;}
.category-actualite-du-secteur .meta-category, .category-actualite-du-secteur .article-content-wrap {background: #f8fbe8 !important;}
.category-actualite-des-partenaires .meta-category, .category-actualite-des-partenaires .article-content-wrap {background: #eef9fd !important;}
.category-formation .meta-category {background: #ef3474 !important;}
.category-formation .meta-category a {background: #fff; padding: 5px 10px;}
.masonry .a-la-une {display: none !important;}
.blog_next_prev_buttons {display: none;}
/* Postes */
.company_logo {display: none !important;}
.name, .tagline {margin: 0 !important;}
.job-listing-meta li, .job_types li {list-style-type: none !important;}
.job-type {background: #cf1944 !important;}
ul.job_listings li.job_listing a div.position {padding: 0 !important;}
.job_listings .job-type {background: none !important; color: #cf1944 !important;}
.title a {font-style: normal;}
#slide-out-widget-area {background: #fff !important;}
#slide-out-widget-area .inner .off-canvas-menu-container li a {font-size: 20px !important; color: #333; font-style: normal !important;}
.slide_out_area_close .icon-salient-x:before {color: #333 !important;}
#single-below-header .meta-date {border-left: none !important; padding-left: 0 !important;}
.category-formation .post-meta {display: none;}
#gw_books li h2 {line-height: 20px; padding-top: 3px; padding-left: 10px; font-family: "Lato", Arial; font-size: 14px;}
.gw_menu_list li a {padding: 6px 0;}
#actualite .post-content a {color: #cf1944 !important;}
#actualite .post-content a:hover {color: #777 !important;}
.month {font-family: "Lato", Arial !important;}
.cn-categories {display: none;}
/* Formations */
#formations .meta-category {display: none;}
#formations .article-content-wrap {padding: 0 !important;}
#formations .post-header {background: #ef3474; padding: 20px 10px;}
#formations .post-header h3 {color: #fff;}
#formations .excerpt {padding: 16px 20px 26px;}
#formations .grav-wrap {padding: 0px 20px 20px; font-weight: bold;}
.bloc-formation {background: #fff; padding: 30px !important; border: 1px solid #ddd;}
/* Jobs */
#ajax-content-wrap {background: #fff;}
.jobsearch-plugin-default-container {padding: 30px 0 80px;}
.jobsearch-banner-transparent {background: #ef3474; opacity: 1;}
.jobsearch-top-searchbar {padding-top: 20px; margin-bottom: 40px;}
.jobsearch-select-style .selectize-control {margin-top: 35px !important;}
.jobsearch-search:before {position: relative; z-index: 999;}
.jobsearch-banner-search ul li i {top: 49px;}
.selectize-control.single .selectize-input {padding: 0 !important; border-color: #ddd;}
.selectize-input .minimal-form-input {padding-top: 0 !important;}
.selectize-input label span.text {margin-top: 0 !important;}
.filtration-tags li {line-height: 40px;}
.jobsearch-filterable .clear-tags {padding-top: 15px;}
.jobsearch-banner-search li:nth-child(2) {display: none;}
.jobsearch-banner-search li:first-child {width: 94% !important;}
.jobsearch-login-box form ul li input[type="text"], .jobsearch-login-box form ul li input[type="password"], .jobsearch-login-box form ul li input[type="email"], .jobsearch-employer-profile-form input[type="text"], .jobsearch-employer-profile-form select {background: transparent !important; border: none !important;}
.jobsearch-pagination-blog ul li:hover a, .jobsearch-pagination-blog ul li:hover span, .jobsearch-pagination-blog ul li span.current {background: #ef3474;}
.jobsearch-subheader-form .jobsearch-banner-search ul li input[type="text"] {border: none !important; position: relative; z-index: 999;}
#job-posting-form input[type="text"], #job-posting-form select, .jobsearch-typo-wrap .ui-widget.ui-widget-content {border: none !important; background: none !important;}
#job-posting-form input[type="submit"]:hover {color: #fff !important;}
.jobsearch-job-userlist .jobsearch-option-btn {min-width: 76px; margin-left: 6px;}
.urgntpkg-badge {padding: 0 10px 0 5px;}
.jobsearch-joblisting-classic figure {border: none !important;}
.jobsearch-banner-search {padding: 20px 45px !important;}
.jobsearch-banner-search ul {margin-left: 0 !important;}
.jobsearch-subheader-form .jobsearch-banner-search ul li:first-child input[type="text"] {border-left: none !important; border-right: none !important;}
.selectize-control.single .selectize-input {border-top: none; border-right: none;}
.jobsearch-sugges-search {padding: 0 15px 0 0;}
.jobsearch_searchloc_div {padding: 0 15px;}
.jobsearch-select-style {padding-left: 15px;}
.jobsearch-icon, .jobsearch-banner-submit {background: #ef3474;}
.jobsearch-joblisting-classic .jobsearch-job-like {padding-top: 0 !important;}
.jobsearch-applyjob-btn {background-color: #ef3474; border-color: #ef3474;}
.jobsearch-typo-wrap .jobsearch-applyjob-btn:hover, .widget_view_jobs_btn {color: #ef3474;}
.jobsearch-calendar, .jobsearch-view, .jobsearch-description ul li:before {color: #ef3474 !important;}
.jobsearch-sendmessage-btn {background-color: #041c39;}
.jobsearch-jobdetail-type, .jobsearch-option-btn {background-color: #ef3474;}
.jobsearch-option-btn:hover {color: #fff !important;}
.jobsearch-job-userlist .like-btn {display: none !important;}
.jobsearch-job-userlist .jobsearch-option-btn {margin-right: 0 !important;}
.jobsearch-search-filter-wrap {box-shadow: none !important;}
.jobsearch-user-options ul li.active i, .jobsearch-jobdetail-view {background-color: #ef3474;}
.jobsearch-user-options i {background-color: #c8a0ab;}
.jobsearch-user-form input[type="submit"] {border-color: #ef3474 !important;}
.jobsearch-login-submit-btn {font-size: 16px !important;}
.careerfy-jobdetail-btn, .jobsearch-send-email-popup-btn {color: #ef3474; border-color: #ef3474;}
.careerfy-jobdetail-btn {display: none !important;}
.jobsearch-jobdetail-postinfo, .widget_apply_job span {color: #444 !important;}
.jobsearch-typo-wrap {color: #444;}
.jobsearch-regfield-sector .selectize-control {margin-top: 0 !important;}
.jobsearch-regfield-sector .minimal-form-input label span.text {z-index: 999;}
.jobsearch-regto-link {display: none;}
.jobsearch-login-box .minimal-form-input {padding-top: 10px !important;}
.jobsearch-login-box button {margin: 15px 0 10px !important;}
.jobsearch-login-box .jobsearch-profile-select {padding-top: 17px;}
.jobsearch-login-box form ul li input[type="text"], .jobsearch-login-box form ul li input[type="password"], .jobsearch-login-box form ul li input[type="email"], .selectize-control.single .selectize-input {border: none !important;}
.jobsearch-sort-section {display: none !important;}
.jobsearch-map {display: none !important;}
.jobsearch-list-option ul li, .jobsearch-checkbox input[type="checkbox"] + label, .jobsearch-checkbox input[type="radio"] + label {font-size: 14px;}
.jobsearch-jobdetail-options li:nth-child(3), .jobsearch-jobdetail-options li:nth-child(4) {display: none;}
.apply-fields-list .minimal-form-input {padding-top: 0 !important;}
.apply-fields-list .minimal-form-input label {top: -20px !important;}
.jobsearch-upload-cv .jobsearch-disabled-input {width: 66%;}
.terms-priv-chek-con p {font-size: 15px; padding-bottom: 0 !important;}
.terms-priv-chek-con p input {margin-top: 5px !important;}
.jobsearch-applyjob-btn {margin-top: 20px;}
.jobsearch-user-form ul li {margin-bottom: 10px !important;}
.jobsearch-upload-cv {margin-bottom: 0 !important;}
.selectize-control.single .selectize-input {background: transparent;}
.selectize-control.single .selectize-input:after {display: none;}
#job-apply-external-url .minimal-form-input {top: 9px;}
.pt-register .terms-priv-chek-con p input {margin-top: 9px !important;}
/* Dashboard */
.jobsearch-employer-dashboard-nav h2 {padding: 0 0 25px 25px;}
.jobsearch-fileUpload .minimal-form-input {padding-top: 0 !important;}
.jobsearch-employer-dashboard-nav ul li:hover i, .jobsearch-employer-dashboard-nav ul li.active i, .jobsearch-employer-dashboard-nav ul li:hover a, .jobsearch-employer-dashboard-nav ul li.active a {color: #ef3474;}
.salary-input .minimal-form-input {margin-top: -36px !important;}
.jobsearch-profile-title h2 {color: #444; font-weight: 700;}
.salary-input span {top: -5px;}
/*.jobsearch-employer-profile-form .jobsearch-column-6 {display: none;}*/
.jobsearch-employer-search i {z-index: 999;}
.jobsearch-employer-search input {background: none !important; border: none !important;}
.jobsearch-employer-search .minimal-form-input {display: inline !important;}
.jobsearch-bgcolor {background: #ef3474;}
.job-company-name a {color: #ef3474 !important;}
.jobsearch-checkbox input[type="radio"]:checked + label span {border-color: #ef3474; background: #ef3474;}
.jobsearch-typo-wrap .jobsearch-findmap-btn, .jobsearch-employer-profile-form .jobsearch-findmap-btn {color: #ef3474; border-color: #ef3474;}
.jobsearch-typo-wrap .jobsearch-employer-profile-submit, .other-lang-translate-post {border-color: #fff;}
/* Presse */
.masonry.material .masonry-blog-item .meta-category a.dossier-de-presse {color: #017c8e !important;}
.masonry.material .masonry-blog-item .meta-category a.article-de-presse {color: #c8a0ab !important;}
.cookie-iframe{margin-bottom:0px !important;}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
.cookie-iframe iframe {height: 250px !important;}
}
/* Nos actions */
.ascend #sidebar .widget.widget_nav_menu #menu-menu-actions .current-menu-item a {border-left: 2px solid #EF3474 !important; padding-left: 10px !important; color: #676767;}
.ascend #sidebar .widget.widget_nav_menu #menu-menu-actions a {line-height: 1.7em;}
/* Les AIVS */
.number-aivs {font-size: 30px; font-weight: bold; background: #fff; border: 3px solid #EF3474; text-align: center; padding: 10px; position: absolute; left: 0; top: -38%;}
.mapsvg-popover .mapsvg-popover-content {line-height: 16px; padding: 20px; max-height: 350px; overflow: scroll;}
.mapsvg-controller-view-content {line-height: 2.6;}
.logo-aivs {width: 80px !important;}
.sep-line {margin-top: 20px; padding-bottom: 20px; border-top: 1px solid #ccc;}
/* Ressources */
.wp-caption-text {top: 8px !important; padding: 0 !important; box-shadow: none !important; line-height: 24px; border: none !important;}
/* Commandes */
.commande-feuillet p {margin-bottom: 0;}
.commande-feuillet .wpcf7-list-item-label {color: #666;}
/* File Manager */
.dd3-content a.t .title {color: #333 !important;}
.icon-open-close {background: none;}
.jaofiletree li.directory.expanded .icon-open-close:before, .jaofiletree li.directory.selected > .icon-open-close:before, .jaofiletree li.directory.selected > .zmdi-folder:before, .jaofiletree li.directory.selected > a {color: #ef3474 !important;}
.jaofiletree li.directory.collapsed .icon-open-close:before {color: #777 !important;}
ul.jaofiletree a {color: #333 !important;}
.box-search-filter .only-file {margin-bottom: 20px;}
.box-search-filter .only-file .minimal-form-input {background: #fff; padding-left: 20px;}
.box-search-filter .only-file .minimal-form-input {padding-top: 22px !important;}
.box-search-filter .only-file .minimal-form-input label {left: 20px !important;}
.box-search-filter .only-file .minimal-form-input label:before, .box-search-filter .minimal-form-input label:after {display: none !important;}
.box-search-filter .only-file .minimal-form-input label span.text {margin-top: 6px !important;}
.box-search-filter #btnsearch {background: #ef3474;}
.box-search-filter .feature .minimal-form-input {padding-top: 0 !important; width: 65%; height: auto !important;}
.box-search-filter .feature .minimal-form-input input {height: auto;}
.box-search-filter .feature .minimal-form-input #ufrom, .box-search-filter .feature .minimal-form-input #uto, .box-search-filter .feature .minimal-form-input #cfrom, .box-search-filter .feature .minimal-form-input #cto {border: none !important;}
.box-search-filter .tagit.ui-widget-content, .box-search-filter .input-date {border: none !important;}
.box-search-filter #filter_catid {margin-top: 12px;}
.box-search-filter .box-btngroup-below {margin: 35px 0 20px;}
.box-search-filter .feature {padding: 20px;}
.box-search-filter #btnsearchbelow {background: #ef3474 !important;}
.box-search-filter .input-date {top: 5px;}
.wpfd-flex-container {background: #F1F1F1;}
.wpfd-foldertree, .wpfd-container-default.with_foldertree {padding: 20px !important;}
.wpfd-foldertree-default {width: 35% !important;}
.wpfd-container-default {overflow: hidden !important;}
.wpfd-content .wpfdcategory {max-width: 100% !important; width: 46% !important;}
.wpfd-content .wpfdcategory > span {width: 88% !important;}
.backcategory {right: -36% !important;}
.wpfd-content-default .wpfd_list .file {min-width: 325px !important;}
.wpfd-content-default .file {clear: none; float: left;}
.wpfd-content-default .file .file-xinfo {font-size: 10px !important;}
.icon-date.icon-calendar{background: transparent;}
.wpfd-container .with_foldertree {flex-basis: auto !important; max-width: 100% !important;}
.wpfd-content .wpfdcategory {flex: 16% !important;}
#wp-admin-bar-wp-logo, #wp-admin-bar-new-content {display: none !important;}
body[data-form-style="minimal"] .main-content .post-password-form input[type=submit] {
top: 20px;
width: 150px;
margin: 0 auto !important;
display: block;
position: relative;
}
/* Twitter */
#ctf .ctf-item {width: 33%; float: left; padding: 0 3%; border: none !important;}
#ctf .ctf_more {display: none !important;}
@media only screen and (max-width: 768px) {
#ctf .ctf-item {width: 100%; float: none; margin-bottom: 20px;}
}
/* Mailerlite */
.mailerlite-form-field label {display: none !important;}
.mailerlite-form-field input {padding: 10px 0 !important; color: #fff;}
#sidebar .mailerlite-form-field input {padding: 10px 15px !important; color: #333;}
/* Espace adhérent */
.main-content>.row>form.post-password-form {padding: 9% 0;}
/* Commandes */
.commandes-cover .span_3 {padding: 10px;}
.commandes-cover .span_3 img {border: 1px solid #ddd;}
.commandes-cover .cover-text {padding-bottom: 0 !important;}
.wpcf7-checkbox .first {margin-left: 0;}
#wpcf7-f6647-p6645-o2 .wpcf7-form p span {color: #111 !important;}
@media only screen and (max-width: 991px){
.popup{padding: 30px !important;}
.popup img{display: none;}
}
@media only screen and (max-width: 639px){
.popup{padding: 25px !important;}
.popup h2{font-size: 20px !important; line-height: 26px !important;}
.popup p{font-size: 15px !important; line-height: 24px !important;}
.popup .btn{margin: 15px 0 0 0 !important;}
}
@media only screen and (max-width: 567px){
.popup{ padding: 15px !important;}
.popup h4 div{font-size: 18px !important; padding: 0 0 0 30px !important;}
.popup h4 div span{width: 20px !important; height: 20px !important; top: 50% !important; transform: translateY(-50%) !important;}
.popup h2{font-size: 18px !important; line-height: 25px !important;}
.popup p{font-size: 14px !important;}
.popup .btn{padding: 12px 20px 13px !important;}
}
@media only screen and (max-width: 413px){
.popup h4{margin: 0 0 10px 0 !important;}
.popup h2{font-size: 16px !important; line-height: 22px !important;}
.popup p{font-size: 13px !important; line-height: 20px !important;}
.popup .btn{font-size: 15px !important; padding: 10px 15px 12px !important;}
}
</style>
<link rel='stylesheet' id='jquery-ui-css' href='https://www.fapil.fr/wp-content/plugins/wp-jobsearch-14/admin/css/jquery-ui.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='wp-jobsearch-flaticon-css' href='https://www.fapil.fr/wp-content/plugins/wp-jobsearch-14/icon-picker/css/flaticon.css?ver=2.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='wp-jobsearch-font-awesome-css' href='https://www.fapil.fr/wp-content/plugins/wp-jobsearch-14/icon-picker/css/font-awesome.css?ver=2.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='wp-jobsearch-selectize-def-css' href='https://www.fapil.fr/wp-content/plugins/wp-jobsearch-14/css/selectize.default.css?ver=2.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='mapbox-style-css' href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.6.0/mapbox-gl.css?ver=2.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='mapbox-geocoder-style-css' href='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v4.4.2/mapbox-gl-geocoder.css?ver=2.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='mapbox-directions-style-css' href='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-directions/v4.0.2/mapbox-gl-directions.css?ver=2.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='jobsearch-intlTelInput-css' href='https://www.fapil.fr/wp-content/plugins/wp-jobsearch-14/css/intlTelInput.css?ver=2.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='wp-jobsearch-css-css' href='https://www.fapil.fr/wp-content/plugins/wp-jobsearch-14/css/plugin.css?ver=2.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='jobsearch-color-style-css' href='https://www.fapil.fr/wp-content/plugins/wp-jobsearch-14/css/color.css?ver=2.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='plugin-responsive-styles-css' href='https://www.fapil.fr/wp-content/plugins/wp-jobsearch-14/css/plugin-responsive.css?ver=2.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='jobsearch-patch-css' href='https://www.fapil.fr/wp-content/plugins/wp-jobsearch-14/css/patch.css?ver=2.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='datetimepicker-style-css' href='https://www.fapil.fr/wp-content/plugins/wp-jobsearch-14/css/jquery.datetimepicker.css?ver=2.2.1' type='text/css' media='all' />
<link rel='stylesheet' id='jobsearch-tag-it-css' href='https://www.fapil.fr/wp-content/plugins/wp-jobsearch-14/css/jquery.tagit.css?ver=2.2.1' type='text/css' media='all' />
<link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Lato:400&display=swap&ver=1727694113" /><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400&display=swap&ver=1727694113" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400&display=swap&ver=1727694113" /></noscript><link rel='stylesheet' id='cn-brandicons-css' href='//www.fapil.fr/wp-content/plugins/connections/assets/vendor/icomoon-brands/style.css?ver=10.4.65' type='text/css' media='all' />
<link rel='stylesheet' id='cn-chosen-css' href='//www.fapil.fr/wp-content/plugins/connections/assets/vendor/chosen/chosen.css?ver=1.8.7' type='text/css' media='all' />
<script type="text/javascript" id="jquery-core-js-extra">
/* <![CDATA[ */
var ctf = {"ajax_url":"https:\/\/www.fapil.fr\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type="text/javascript" src="https://www.fapil.fr/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script>
<script type="text/javascript" src="https://www.fapil.fr/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script>
<script type="text/javascript" id="addtoany-core-js-before">
/* <![CDATA[ */
window.a2a_config=window.a2a_config||{};a2a_config.callbacks=[];a2a_config.overlays=[];a2a_config.templates={};a2a_localize = {
Share: "Partager",
Save: "Enregistrer",
Subscribe: "S'abonner",
Email: "E-mail",
Bookmark: "Signet",
ShowAll: "Montrer tout",
ShowLess: "Montrer moins",
FindServices: "Trouver des service(s)",
FindAnyServiceToAddTo: "Trouver instantanément des services à ajouter à",
PoweredBy: "Propulsé par",
ShareViaEmail: "Partager par e-mail",
SubscribeViaEmail: "S’abonner par e-mail",
BookmarkInYourBrowser: "Ajouter un signet dans votre navigateur",
BookmarkInstructions: "Appuyez sur Ctrl+D ou \u2318+D pour mettre cette page en signet",
AddToYourFavorites: "Ajouter à vos favoris",
SendFromWebOrProgram: "Envoyer depuis n’importe quelle adresse e-mail ou logiciel e-mail",
EmailProgram: "Programme d’e-mail",
More: "Plus…",
ThanksForSharing: "Merci de partager !",
ThanksForFollowing: "Merci de nous suivre !"
};
a2a_config.icon_color="#ef3474";
/* ]]> */
</script>
<script type="text/javascript" defer src="https://static.addtoany.com/menu/page.js" id="addtoany-core-js"></script>
<script type="text/javascript" defer src="https://www.fapil.fr/wp-content/plugins/add-to-any/addtoany.min.js?ver=1.1" id="addtoany-jquery-js"></script>
<script type="text/javascript" src="https://www.fapil.fr/wp-includes/js/dist/hooks.js?ver=2e6d63e772894a800ba8" id="wp-hooks-js"></script>
<script type="text/javascript" src="https://www.fapil.fr/wp-content/plugins/easy-twitter-feeds/assets/js/widget.js?ver=1.2.6" id="widget-js-js"></script>
<script type="text/javascript" id="say-what-js-js-extra">
/* <![CDATA[ */
var say_what_data = {"replacements":{"|Suitable files are|":"Documents","salient|Next Post|":"Article suivant","|Sur|":"Oui","wp-jobsearch|r\u00e9|":"j","wp-jobsearch|Select State|":"S\u00e9lectionnez la r\u00e9gion","wp-jobsearch|Bretagne|":"Bretagne","salient|Start Typing...|":"Rechercher...","salient|Press enter to begin your search|":"Pressez entr\u00e9e pour lancer la recherche","salient|Search...|":"Rechercher...","salient|Search|":"Rechercher","salient|Results For|":"R\u00e9sultats pour","salient|Blog Post|":"Article","salient|Read Article|":"Lire l'article","salient|results found|":"r\u00e9sultats trouv\u00e9s","salient|Read Article |":"Lire l'article","salient|Page Not Found|":"Perdus dans le lotissement ?","salient|Back Home|":"Retour \u00e0 l'accueil","salient|Read More|":"Lire la suite","salient-core|Read Article|":"Lire l'article","salient-portfollio|All|":"Tous","salient-portfolli|All|":"Tous","salient-portfolio|All|":"Tous les documents","wpfd|All Categories|":"Toutes les cat\u00e9gories","wpfd|Search...|":"Rechercher..."}};
/* ]]> */
</script>
<script type="text/javascript" src="https://www.fapil.fr/wp-content/plugins/say-what/assets/build/frontend.js?ver=fd31684c45e4d85aeb4e" id="say-what-js-js"></script>
<script type="text/javascript" id="zxcvbn-async-js-extra">
/* <![CDATA[ */
var _zxcvbnSettings = {"src":"https:\/\/www.fapil.fr\/wp-includes\/js\/zxcvbn.min.js"};
/* ]]> */
</script>
<script type="text/javascript" src="https://www.fapil.fr/wp-includes/js/zxcvbn-async.js?ver=1.0" id="zxcvbn-async-js"></script>
<script type="text/javascript" src="https://www.fapil.fr/wp-content/plugins/wp-jobsearch-14/admin/js/jquery-ui.js?ver=2.2.1" id="jquery-ui-js"></script>
<link rel="https://api.w.org/" href="https://www.fapil.fr/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.fapil.fr/wp-json/wp/v2/pages/6" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.fapil.fr/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.6.2" />
<link rel="canonical" href="https://www.fapil.fr/" />
<link rel='shortlink' href='https://www.fapil.fr/' />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.fapil.fr/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.fapil.fr%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.fapil.fr/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.fapil.fr%2F&format=xml" />
<script type="text/javascript">
var ajaxurl = 'https://www.fapil.fr/wp-admin/admin-ajax.php';
</script>
<!-- MailerLite Universal -->
<script>
(function (m, a, i, l, e, r) {
m['MailerLiteObject'] = e;
function f() {
var c = {a: arguments, q: []};
var r = this.push(c);
return "number" != typeof r ? r : f.bind(c.q);
}
f.q = f.q || [];
m[e] = m[e] || f.bind(f.q);
m[e].q = m[e].q || f.q;
r = a.createElement(i);
var _ = a.getElementsByTagName(i)[0];
r.async = 1;
r.src = l + '?' + (~~(new Date().getTime() / 10000000));
_.parentNode.insertBefore(r, _);
})(window, document, 'script', 'https://static.mailerlite.com/js/universal.js', 'ml');
var ml_account = ml('accounts', '623625', 'y9o3i2l4w3', 'load');
</script>
<!-- End MailerLite Universal -->
<style>
[aria-label="Formulaire de contact"] .wpcf7-checkbox {
display: flex;
flex-direction: column;
}
[aria-label="Formulaire de contact"] .wpcf7-checkbox .wpcf7-list-item {
margin-left: 0 !important;
}
.file-xinfo .file-desc a:hover {
box-shadow: unset !important;
}
</style>
<meta name="framework" content="Redux 4.2.11" /><script type="text/javascript"> var root = document.getElementsByTagName( "html" )[0]; root.setAttribute( "class", "js" ); </script><!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//www.fapil.fr/piwik/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code --><meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/>
<style type="text/css" id="wp-custom-css">
body[data-form-style="minimal"] input[type="text"], body[data-form-style="minimal"] textarea, body[data-form-style="minimal"] input[type="email"], body[data-form-style="minimal"] .container-wrap .span_12.light input[type="email"], body[data-form-style="minimal"] input[type="password"], body[data-form-style="minimal"] input[type="tel"], body[data-form-style="minimal"] input[type="url"], body[data-form-style="minimal"] input[type="search"], body[data-form-style="minimal"] input[type="date"] {
float: left;
width: 100%;
height: 41px;
border: 1px solid #eceeef !important;
border-radius: 2px;
background-color: #ffffff;
padding: 6px 13px !important;
margin: 0px !important;
font-size: 12px !important;
color: #777777 !important;
}
.mapsvg-wrap .mapsvg{
overflow: visible;
}
.juicer-feed .referral {
display: none !important;
}
#Category_container {
display: none;
width: 76%;
margin: 0 auto;
}
#Category_container , #Category_container > .wpfd_tabcontainer {
display:block !important;
}
</style>
<style>
span.onoffswitch-inner:before{content:'Oui';}
span.onoffswitch-inner:after{content:'Non';}
span.chkunchk-onoffswitch-inner:before{content:'Oui';}
span.chkunchk-onoffswitch-inner:after{content:'Non';}
</style>
<style type="text/css" data-type="vc_custom-css">.grav-wrap {display: none !important;}
.nectar-recent-posts-single_featured .nectar-recent-post-slide .nectar-recent-post-bg:after {background: rgba(0,0,0, .01) !important;}
.post-ref-1 {background: rgba(0,0,0,.7); padding: 15px;}
.post-ref-1 {margin-bottom: 20px !important;}
.nectar-recent-posts-single_featured.multiple_featured > .container .controls {width: 40px !important;}
.nectar-recent-posts-single_featured.multiple_featured .controls li .title {display: none !important;}
.nectar-recent-posts-single_featured .grav-wrap .text a {background: #fff; color: #333; padding: 3px 10px;}</style><style type="text/css" data-type="vc_shortcodes-custom-css">.vc_custom_1562338659878{margin-right: -1px !important;}.vc_custom_1563460749018{margin-bottom: 20px !important;}.vc_custom_1561730593939{margin-top: 20px !important;margin-bottom: 5px !important;}.vc_custom_1563460406489{margin-top: 15px !important;}</style><noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript></head>
Fapil – Fédération des Associations et des Acteurs pour la Promotion et l'Insertion par le Logement
Recherche META Description de la page
Recherche META Keywords de la page
UPDATE DOMAINES SET server='',redirection='https://www.fapil.fr/',Status='200',err='',[TITRE]=N'Fapil – Fédération des Associations et des Acteurs pour la Promotion et l'Insertion par le Logement',[DESCRIPTION]=N'',[KEYWORDS]=N'' WHERE id=44204
0 Fapil – Fédération des Associations et des Acteurs pour la Promotion et l Insertion par le Logement
0. Fapil (5)--------->0
1. – (7)--------->0
2. Fédération (10)--------->0
3. des (3)--------->0
4. Associations (12)--------->0
5. et (2)--------->0
7. Acteurs (7)--------->0
9. pour (4)--------->0
10. la (2)--------->0
11. Promotion (9)--------->0
13. l (1)--------->0
14. Insertion (9)--------->0
15. par (3)--------->0
16. le (2)--------->0
17. Logement (8)--------->0
INSERT INTO KEYWORDS (keyword,id_domaine) VALUES (N'Fapil',44204),(N'–',44204),(N'Fédération',44204),(N'des',44204),(N'Associations',44204),(N'et',44204),(N'Acteurs',44204),(N'pour',44204),(N'la',44204),(N'Promotion',44204),(N'l',44204),(N'Insertion',44204),(N'par',44204),(N'le',44204),(N'Logement',44204)