@charset "UTF-8";
/*
    Fichier de style principal
    Intègre tous les styles du thème, les compile et les minifie dans le fichier style.min.css
    Compilation : lancer la command `gulp` en CLI depuis le dossier `web`
*/
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
@import "../css/animate.min.css";
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/****************************************************************************/
/* COULEURS
/****************************************************************************/
/****************************************************************************/
/* POLICES / CUSTOM FONTS
/****************************************************************************/
@font-face {
  font-family: "YanoneRegular";
  src: url("../fonts/yanone/YanoneKaffeesatz-Regular.eot");
  src: url("../fonts/yanone/YanoneKaffeesatz-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/yanone/YanoneKaffeesatz-Regular.woff2") format("woff2"), url("../fonts/yanone/YanoneKaffeesatz-Regular.woff") format("woff"), url("../fonts/yanone/YanoneKaffeesatz-Regular.ttf") format("truetype"), url("../fonts/yanone/YanoneKaffeesatz-Regular.svg#YanoneKaffeesatz-Medium") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YanoneLight";
  src: url("../fonts/yanone/YanoneKaffeesatz-Light.eot");
  src: url("../fonts/yanone/YanoneKaffeesatz-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/yanone/YanoneKaffeesatz-Light.woff2") format("woff2"), url("../fonts/yanone/YanoneKaffeesatz-Light.woff") format("woff"), url("../fonts/yanone/YanoneKaffeesatz-Light.ttf") format("truetype"), url("../fonts/yanone/YanoneKaffeesatz-Light.svg#YanoneKaffeesatz-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OverpassLight";
  src: url("../fonts/overpass/Overpass-Light.eot");
  src: url("../fonts/overpass/Overpass-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/overpass/Overpass-Light.woff2") format("woff2"), url("../fonts/overpass/Overpass-Light.woff") format("woff"), url("../fonts/overpass/Overpass-Light.ttf") format("truetype"), url("../fonts/overpass/Overpass-Light.svg#Overpass-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OverpassLightItalic";
  src: url("../fonts/overpass/Overpass-LightItalic.eot");
  src: url("../fonts/overpass/Overpass-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/overpass/Overpass-LightItalic.woff2") format("woff2"), url("../fonts/overpass/Overpass-LightItalic.woff") format("woff"), url("../fonts/overpass/Overpass-LightItalic.ttf") format("truetype"), url("../fonts/overpass/Overpass-LightItalic.svg#Overpass-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "OverpassSemiBold";
  src: url("../fonts/overpass/Overpass-SemiBold.eot");
  src: url("../fonts/overpass/Overpass-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/overpass/Overpass-SemiBold.woff2") format("woff2"), url("../fonts/overpass/Overpass-SemiBold.woff") format("woff"), url("../fonts/overpass/Overpass-SemiBold.ttf") format("truetype"), url("../fonts/overpass/Overpass-SemiBold.svg#Overpass-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AnybodyLight";
  src: url("../fonts/anybody/Anybody-Light.eot");
  src: url("../fonts/anybody/Anybody-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/anybody/Anybody-Light.woff2") format("woff2"), url("../fonts/anybody/Anybody-Light.woff") format("woff"), url("../fonts/anybody/Anybody-Light.ttf") format("truetype"), url("../fonts/anybody/Anybody-Light.svg#Anybody-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AnybodyRegular";
  src: url("../fonts/anybody/Anybody-Regular.eot");
  src: url("../fonts/anybody/Anybody-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/anybody/Anybody-Regular.woff2") format("woff2"), url("../fonts/anybody/Anybody-Regular.woff") format("woff"), url("../fonts/anybody/Anybody-Regular.ttf") format("truetype"), url("../fonts/anybody/Anybody-Regular.svg#Anybody-Regular") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AnybodyBold";
  src: url("../fonts/anybody/Anybody-Bold.eot");
  src: url("../fonts/anybody/Anybody-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/anybody/Anybody-Bold.woff2") format("woff2"), url("../fonts/anybody/Anybody-Bold.woff") format("woff"), url("../fonts/anybody/Anybody-Bold.ttf") format("truetype"), url("../fonts/anybody/Anybody-Bold.svg#Anybody-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RobotoLight";
  src: url("../fonts/roboto/roboto-light.eot");
  src: url("../fonts/roboto/roboto-light.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto/roboto-light.woff2") format("woff2"), url("../fonts/roboto/roboto-light.woff") format("woff"), url("../fonts/roboto/roboto-light.ttf") format("truetype"), url("../fonts/roboto/roboto-light.svg#Nexa-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RobotoItalic";
  src: url("../fonts/roboto/roboto-italic.eot");
  src: url("../fonts/roboto/roboto-italic.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto/roboto-italic.woff2") format("woff2"), url("../fonts/roboto/roboto-italic.woff") format("woff"), url("../fonts/roboto/roboto-italic.ttf") format("truetype"), url("../fonts/roboto/roboto-italic.svg#Nexa-Light") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "RobotoBold";
  src: url("../fonts/roboto/roboto-bold.eot");
  src: url("../fonts/roboto/roboto-bold.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto/roboto-bold.woff2") format("woff2"), url("../fonts/roboto/roboto-bold.woff") format("woff"), url("../fonts/roboto/roboto-bold.ttf") format("truetype"), url("../fonts/roboto/roboto-bold.svg#Nexa-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/****************************************************************************/
/* RESPONSIVE BREAKPOINTS
/****************************************************************************/
/****************************************************************************/
/* NEW DESIGN
/****************************************************************************/
@font-face {
  font-family: "Work Sans Regular";
  src: url("../fonts/worksans/WorkSans-Regular.ttf");
}
@font-face {
  font-family: "Work Sans Medium";
  src: url("../fonts/worksans/WorkSans-Medium.ttf");
}
@font-face {
  font-family: "Work Sans SemiBold";
  src: url("../fonts/worksans/WorkSans-SemiBold.ttf");
}
@font-face {
  font-family: "Work Sans Bold";
  src: url("../fonts/worksans/WorkSans-Bold.ttf");
}
/****************************************************************************/
/* CLASSES CSS GÉNÉRIQUES (Utilisables en HTML ou dans le BO WordPress)
/****************************************************************************/
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.textleft {
  text-align: left;
}

.textright {
  text-align: right;
}

.center {
  text-align: center;
}

.justify {
  text-align: justify;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.italic, em {
  font-style: italic;
}

.light {
  font-weight: 300;
}

.bold, strong {
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
}

.white {
  color: #ffffff;
}

.black {
  color: #27364B;
}

.maincolor {
  color: #2a98d9 !important;
}

.flex {
  display: flex;
}

.flex-reverse, .reverse {
  flex-flow: row-reverse;
}

.relative {
  position: relative;
}

.wrapper {
  max-width: 1480px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: auto;
  object-fit: cover;
}

.fullheight {
  height: 100vh;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

/* BO colors */
.has-light-blue-color {
  color: #2a98d9;
}

.has-dark-blue-color {
  color: #1B357D;
}

.has-orange-color {
  color: #FF8762;
}

.has-red-color {
  color: #ff1515;
}

.has-white-color {
  color: #ffffff;
}

.has-grey-color {
  color: #4b4b4b;
}

.has-black-color {
  color: #27364B;
}

.has-light-blue-background-color {
  background-color: #2a98d9;
}

.has-dark-blue-background-color {
  background-color: #1B357D;
}

.has-orange-background-color {
  background-color: #FF8762;
}

.has-red-background-color {
  background-color: #ff1515;
}

.has-white-background-color {
  background-color: #ffffff;
}

.has-grey-background-color {
  background-color: #4b4b4b;
}

.has-black-background-color {
  background-color: #27364B;
}

body.home .home-content {
  margin-top: 89px;
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  body.home .home-content {
    margin-top: 81px;
  }
}
body.home .home-content .container {
  padding: 35px 0;
}
@media (max-width: 991.98px) {
  body.home .home-content .container {
    padding: 0 15px;
  }
}
@media (max-width: 1379.98px) {
  body.home .home-content .container {
    padding-bottom: 50px;
  }
}
body.home .home-content .container h2 {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 42px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  body.home .home-content .container h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
body.home .home-content .container h2::after {
  display: none;
}
body.home .home-content .wp-block-spacer {
  display: none;
}
body.home .home-content .banner-home {
  background-image: url("../img/bg-banner-home.png");
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 575.98px) {
  body.home .home-content .banner-home {
    background-image: url("../img/pictos/bg-banner-home-mobile-version.png");
  }
}
body.home .home-content .banner-home .container {
  padding: 0;
}
@media (max-width: 991.98px) {
  body.home .home-content .banner-home .container {
    display: block !important;
    padding: 0 15px 200px;
  }
  body.home .home-content .banner-home .container .owl-stage-outer .owl-stage {
    padding-left: 0 !important;
  }
}
body.home .home-content .banner-home .container .owl-stage {
  display: flex;
  align-items: center;
}
body.home .home-content .banner-home .container .owl-stage .owl-item img {
  filter: brightness(0.6);
  max-width: 554px;
  border-radius: 20px;
  object-fit: cover;
  max-height: 370px;
  display: block;
}
@media (max-width: 991.98px) {
  body.home .home-content .banner-home .container .owl-stage .owl-item img {
    max-width: 100%;
  }
}
body.home .home-content .banner-home .container .owl-stage .owl-item.active img {
  width: 100%;
  filter: brightness(1);
  min-height: 420px;
  min-width: 560px;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  body.home .home-content .banner-home .container .owl-stage .owl-item.active img {
    width: 560px;
    height: 420px;
    min-width: unset;
    min-height: unset;
  }
}
@media (max-width: 575.98px) {
  body.home .home-content .banner-home .container .owl-stage .owl-item.active img {
    width: 350px;
    height: 268px;
    min-width: 100%;
    min-height: unset;
  }
}
body.home .home-content .banner-home .container .owl-stage .owl-item figure.wp-block-image.size-full {
  display: block;
}
body.home .home-content .banner-home .container .owl-stage .owl-item:first-child img {
  float: right;
}
body.home .home-content .banner-home .container .owl-stage .owl-item:last-child img {
  float: left;
}
body.home .home-content .banner-home .container figure.wp-block-image.size-full {
  display: none;
}
@media (max-width: 575.98px) {
  body.home .home-content .banner-home .container {
    padding: 0 15px 10px;
  }
}
body.home .home-content .banner-home .container h1 {
  font-size: 46px;
  font-family: "Work Sans SemiBold", sans-serif;
  color: #FFFFFF;
  line-height: 50px;
  width: 76%;
  margin-top: 120px;
}
@media (max-width: 991.98px) {
  body.home .home-content .banner-home .container h1 {
    font-size: 32px;
    margin-top: 25px;
    line-height: 35px;
  }
}
@media (max-width: 1379.98px) {
  body.home .home-content .banner-home .container h1 {
    width: revert;
  }
}
body.home .home-content .banner-home .container h1::after {
  display: none;
}
body.home .home-content .banner-home .container .block-icon {
  gap: 0;
  width: 85%;
}
@media (max-width: 1379.98px) {
  body.home .home-content .banner-home .container .block-icon {
    gap: 0.5rem;
  }
}
@media (max-width: 991.98px) {
  body.home .home-content .banner-home .container .block-icon {
    width: revert;
    gap: 0;
  }
}
body.home .home-content .banner-home .container .block-icon p {
  font-size: 15px;
  font-family: "Work Sans Regular", sans-serif;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}
body.home .home-content .banner-home .container .block-icon p::before {
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 5px;
}
body.home .home-content .banner-home .container .block-icon .icon-people p::before {
  background-image: url("../img/pictos/icon-people.svg");
}
body.home .home-content .banner-home .container .block-icon .icon-protect p::before {
  background-image: url("../img/pictos/icon-protect.svg");
}
body.home .home-content .banner-home .container .block-icon .icon-happy p::before {
  background-image: url("../img/pictos/icon-happy.svg");
}
body.home .home-content .banner-home .container .block-buttons .wp-block-buttons {
  justify-content: start;
}
body.home .home-content .banner-home .container .block-buttons .wp-block-buttons .button-blue .wp-element-button {
  border: 1px solid #ffffff;
}
@media (max-width: 991.98px) {
  body.home .home-content .banner-home .container .block-buttons .wp-block-buttons .wp-element-button {
    width: 220px !important;
    padding: 14px 0 14px 20px !important;
  }
}
body.home .home-content .banner-home .container .slider-image.owl-carousel {
  margin-top: 63px;
  margin-left: 95px;
}
body.home .home-content .banner-home .container .slider-image.owl-carousel .owl-stage-outer {
  position: absolute;
}
@media (max-width: 991.98px) {
  body.home .home-content .banner-home .container .slider-image.owl-carousel .owl-stage-outer {
    position: initial;
  }
}
body.home .home-content .banner-home .container .slider-image.owl-carousel .owl-stage-outer .owl-stage {
  padding-left: 0 !important;
}
@media (max-width: 1379.98px) {
  body.home .home-content .banner-home .container .slider-image.owl-carousel {
    margin-top: 20px;
    margin-left: 0;
  }
}
body.home .home-content .banner-home .container .slider-image.owl-carousel figure.wp-block-image {
  margin: 0;
}
body.home .home-content .banner-home .container .slider-image.owl-carousel .owl-stage .owl-item {
  margin-top: 15px;
}
@media (max-width: 991.98px) {
  body.home .home-content .banner-home .container .slider-image.owl-carousel .owl-stage .owl-item {
    width: 100% !important;
    margin-left: 0;
  }
}
body.home .home-content .banner-home .container .slider-image.owl-carousel .owl-stage .owl-item.active {
  margin-top: 0;
}
@media (max-width: 991.98px) {
  body.home .home-content .banner-home .container .slider-image.owl-carousel .owl-stage .owl-item.active {
    margin-right: 12px !important;
  }
}
body.home .home-content .banner-home .container .wp-block-columns .icon-people, body.home .home-content .banner-home .container .wp-block-columns .icon-happy, body.home .home-content .banner-home .container .wp-block-columns .icon-protect {
  flex-basis: unset !important;
}
body.home .home-content .block-gestion-depaie {
  background-color: #F5F6FC;
}
body.home .home-content .block-gestion-depaie .container h2 {
  padding-top: 35px;
  padding-right: 100px;
}
@media (max-width: 1379.98px) {
  body.home .home-content .block-gestion-depaie .container h2 {
    padding-right: 20px;
  }
}
@media (max-width: 991.98px) {
  body.home .home-content .block-gestion-depaie .container h2 {
    padding-right: 0;
    line-height: 32px;
  }
}
body.home .home-content .block-gestion-depaie .container .wp-block-column p {
  padding-top: 20px !important;
  padding-right: 100px !important;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-gestion-depaie .container .wp-block-column p {
    padding: 5px 0 !important;
  }
}
@media (max-width: 991.98px) {
  body.home .home-content .block-gestion-depaie .container {
    flex-direction: column-reverse;
  }
}
@media (max-width: 991.98px) {
  body.home .home-content .block-gestion-depaie .container h2 {
    padding-top: 35px;
    line-height: 32px;
  }
}
@media (max-width: 991.98px) {
  body.home .home-content .block-gestion-rh .container {
    flex-direction: column;
  }
}
body.home .home-content .block-gestion-rh .container h2 {
  padding-top: 35px;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-gestion-rh .container h2 {
    line-height: 32px;
  }
}
body.home .home-content .block-gestion-rh .container p {
  padding-top: 20px !important;
}
body.home .home-content .block-gestion-rh .container h2, body.home .home-content .block-gestion-rh .container ul, body.home .home-content .block-gestion-rh .container .wp-block-buttons, body.home .home-content .block-gestion-rh .container p {
  padding-left: 100px !important;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-gestion-rh .container h2, body.home .home-content .block-gestion-rh .container ul, body.home .home-content .block-gestion-rh .container .wp-block-buttons, body.home .home-content .block-gestion-rh .container p {
    padding-left: 0 !important;
    line-height: 32px;
  }
}
body.home .home-content .block-gestion .container {
  padding: 35px 0;
  gap: 0;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-gestion .container {
    padding: 35px 15px;
    gap: 0;
  }
}
body.home .home-content .block-gestion .container .wp-block-column figure.wp-block-image {
  margin: 0;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-gestion .container .wp-block-column figure.wp-block-image {
    margin: 0;
  }
}
body.home .home-content .block-gestion .container .wp-block-column p {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  list-style-type: none;
  padding: 5px 0;
}
body.home .home-content .block-gestion .container .wp-block-column ul li {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  list-style-type: none;
  padding: 5px 0;
  display: flex;
  align-items: start;
}
body.home .home-content .block-gestion .container .wp-block-column ul li:before {
  min-width: 16px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
  margin-top: 6px;
  background-image: url("../img/pictos/item-check.svg");
}
body.home .home-content .block-gestion .container .wp-block-column ul {
  padding: 0;
}
@media (max-width: 575.98px) {
  body.home .home-content .block-choisir-socialea .wp-block-column-is-layout-flow {
    padding: 0 15px;
  }
}
body.home .home-content .block-choisir-socialea .container {
  background-color: #222484;
  border-radius: 20px;
  padding-bottom: 50px;
  z-index: 1;
  position: relative;
}
@media (max-width: 575.98px) {
  body.home .home-content .block-choisir-socialea .container .wp-block-column-is-layout-flow {
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  body.home .home-content .block-choisir-socialea .container {
    padding-top: 50px;
  }
}
body.home .home-content .block-choisir-socialea .container:before {
  left: 0;
  top: 0;
  width: 200px;
  height: 200px;
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-image: url("../img/bg-left.png");
  z-index: -1;
}
body.home .home-content .block-choisir-socialea .container:after {
  right: 0;
  bottom: 0;
  background-position: bottom;
  width: 212px;
  height: 250px;
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-image: url("../img/bg-right.png");
  z-index: -1;
}
body.home .home-content .block-choisir-socialea .container h2 {
  color: #FFFFFF;
  margin-top: 20px;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-choisir-socialea .container h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
body.home .home-content .block-choisir-socialea .container p {
  color: #FFFFFF;
  font-size: 15px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 25px;
}
@media (max-width: 767.98px) {
  body.home .home-content .block-choisir-socialea .container p br {
    display: none;
  }
}
@media (max-width: 991.98px) {
  body.home .home-content .block-choisir-socialea .container p {
    font-size: 17px;
  }
}
body.home .home-content .block-choisir-socialea .container .text-description {
  margin-bottom: 55px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  body.home .home-content .block-choisir-socialea .container .text-description {
    max-width: 78%;
  }
}
body.home .home-content .block-choisir-socialea .container .block-introduce {
  max-width: 85%;
  margin: 0 auto;
  margin-bottom: 35px !important;
}
@media (max-width: 575.98px) {
  body.home .home-content .block-choisir-socialea .container .block-introduce {
    max-width: 100%;
  }
}
body.home .home-content .block-choisir-socialea .container .block-introduce .wp-block-columns {
  gap: 10px;
}
@media (max-width: 767.98px) {
  body.home .home-content .block-choisir-socialea .container .block-introduce .block-about .wp-block-columns-is-layout-flex {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 575.98px) {
  body.home .home-content .block-choisir-socialea .container .block-introduce .block-about {
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  body.home .home-content .block-choisir-socialea .container .block-introduce .wp-block-column-is-layout-flow {
    flex-basis: 0 !important;
  }
}
@media (max-width: 575.98px) {
  body.home .home-content .block-choisir-socialea .container .block-introduce .wp-block-column-is-layout-flow {
    padding: 0 !important;
  }
}
@media (max-width: 991.98px) {
  body.home .home-content .block-choisir-socialea .container .block-introduce {
    flex-direction: column;
  }
}
body.home .home-content .block-choisir-socialea .container .block-introduce p {
  font-size: 24px;
  margin-bottom: 0;
  padding-top: 20px;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-choisir-socialea .container .block-introduce p {
    font-size: 20px;
  }
}
body.home .home-content .block-choisir-socialea .container .block-introduce .circle {
  flex-basis: 13% !important;
  height: 60px;
  max-width: 60px;
  border-radius: 100%;
  background-color: #3E41F3;
  display: flex;
  align-items: center;
}
@media (max-width: 1379.98px) {
  body.home .home-content .block-choisir-socialea .container .block-introduce .circle {
    flex-basis: 33.33% !important;
  }
}
body.home .home-content .block-choisir-socialea .container .block-introduce .circle::after {
  width: 22px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
}
body.home .home-content .block-choisir-socialea .container .block-introduce .circle.icon-people::after {
  background-image: url("../img/pictos/icon-people.svg");
}
body.home .home-content .block-choisir-socialea .container .block-introduce .circle.icon-message::after {
  background-image: url("../img/pictos/icon-message.svg");
}
body.home .home-content .block-choisir-socialea .container .block-introduce .circle.icon-agences::after {
  background-image: url("../img/pictos/icon-agences.svg");
}
body.home .home-content .block-choisir-socialea .container .block-introduce .circle.icon-production::after {
  background-image: url("../img/pictos/icon-production.svg");
}
@media (max-width: 991.98px) {
  body.home .home-content .block-team {
    margin-top: 10px;
  }
}
body.home .home-content .block-team .block-nos-offres-pour-vous {
  margin-top: 35px;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-team .block-nos-offres-pour-vous .owl-stage-outer {
    position: absolute;
  }
}
@media (max-width: 991.98px) {
  body.home .home-content .block-team .block-nos-offres-pour-vous .owl-stage-outer .owl-stage {
    padding-left: 0 !important;
  }
}
@media (max-width: 991.98px) {
  body.home .home-content .block-team .block-nos-offres-pour-vous {
    height: 330px;
  }
}
body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item {
  display: block;
  border-radius: 20px;
  border: 1px solid #E2E4EF;
  padding-bottom: 10px;
}
body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item figure {
  margin: 0;
}
body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item figure img {
  max-height: 220px;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item figure img {
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item .wp-block-columns {
  padding-left: 25px;
  padding-top: 20px;
  padding-right: 15px;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item .wp-block-columns {
    flex-wrap: nowrap !important;
  }
}
body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item .wp-block-columns p {
  font-size: 15px;
  font-family: "Work Sans SemiBold", sans-serif;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item .wp-block-columns p {
    min-height: 84px;
  }
}
body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item .wp-block-columns p strong {
  font-size: 20px;
  font-family: "Work Sans SemiBold", sans-serif;
  font-weight: 400;
  line-height: 30px;
}
body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item .wp-block-columns .wp-block-column.block-button {
  max-width: fit-content;
}
body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item .wp-block-columns .wp-block-column.block-button .wp-block-buttons {
  display: block;
  text-align: right;
}
body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item .wp-block-columns .wp-block-column.block-button .wp-block-buttons a.wp-block-button__link.wp-element-button {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid #3E41F3;
  align-items: center;
  padding: 0 !important;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item .wp-block-columns .wp-block-column.block-button .wp-block-buttons a.wp-block-button__link.wp-element-button {
    width: 40px !important;
    padding: 0 !important;
  }
}
body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item .wp-block-columns .wp-block-column.block-button .wp-block-buttons a.wp-block-button__link.wp-element-button span {
  display: none;
}
body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item .wp-block-columns .wp-block-column.block-button .wp-block-buttons a.wp-block-button__link.wp-element-button::after {
  min-width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow-right-blue.svg");
  margin: 0 auto;
}
body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item .wp-block-columns .wp-block-column.block-button .wp-block-buttons a.wp-block-button__link.wp-element-button:hover {
  background-color: #3E41F3;
  border: 1px solid #3E41F3;
  color: #3E41F3;
}
body.home .home-content .block-team .block-nos-offres-pour-vous .wp-block-column.item .wp-block-columns .wp-block-column.block-button .wp-block-buttons a.wp-block-button__link.wp-element-button:hover::after {
  background-image: url("../img/arrow-right-white.svg");
}
body.home .home-content .block-client .container {
  padding: 35px 0;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-client .container {
    padding: 0 15px;
  }
}
body.home .home-content .block-client .container h2 {
  margin: 50px 0;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-client .container h2 {
    margin: 35px 0;
    line-height: 32px;
    padding: 0 15px;
  }
}
body.home .home-content .block-client .container .wrapper-logo {
  gap: 35px 0;
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-client .container .wrapper-logo {
    margin-bottom: 35px;
  }
}
body.home .home-content .block-client .container .wrapper-logo .logo {
  flex: 1 1 16%;
  justify-content: center;
  display: flex;
}
body.home .home-content .block-client .container .wrapper-logo .logo img {
  max-width: 130px;
  height: auto;
  filter: grayscale(100%);
  max-height: 90px;
  object-fit: contain;
}
body.home .home-content .block-client .container .wrapper-logo .logo:nth-child(6n+1) {
  justify-content: flex-start;
}
body.home .home-content .block-client .container .wrapper-logo .logo:nth-child(6n) {
  justify-content: flex-end;
}
body.home .home-content .block-client .container .wp-block-button.button.button-black a.wp-block-button__link.wp-element-button {
  padding-right: 0 !important;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-client .container .wp-block-button.button.button-black a.wp-block-button__link.wp-element-button {
    width: 225px !important;
    padding: 14px 0 12px 20px !important;
  }
}
body.home .home-content .block-article {
  background-color: #fff4e4;
}
body.home .home-content .block-article .container {
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-article .container {
    padding: 0 15px 50px;
  }
}
body.home .home-content .block-article .container .wp-block-column p {
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 0;
  font-size: 17px;
}
body.home .home-content .block-article .container #wp-block-latest-posts {
  height: 520px;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-article .container .wp-block-column-is-layout-flow {
    padding-top: 25px;
    padding-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  body.home .home-content .block-article .container .wp-block-column-is-layout-flow {
    padding-top: 0;
  }
}
body.home .home-content .block-article .container .wp-block-column-is-layout-flow .wp-element-button {
  padding: 14px 0 14px 18px !important;
  width: 225px !important;
}
body.home .home-content .block-article .container .wp-block-column-is-layout-flow .owl-stage-outer a, body.home .home-content .block-article .container .wp-block-column-is-layout-flow .owl-stage-outer .wp-block-latest-posts__post-excerpt {
  font-family: "Work Sans SemiBold", sans-serif;
}
body.home .home-content .block-article .container .wp-block-column-is-layout-flow .owl-stage-outer a:hover, body.home .home-content .block-article .container .wp-block-column-is-layout-flow .owl-stage-outer .wp-block-latest-posts__post-excerpt:hover {
  text-decoration: none;
}
body.home .home-content .block-article .container h2 {
  margin-top: 0;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-article .container h2 {
    line-height: 32px;
  }
}
@media (max-width: 767.98px) {
  body.home .home-content .block-article .container h2 {
    margin-top: 25px;
  }
}
@media (max-width: 991.98px) {
  body.home .home-content .block-article .container .wp-block-columns {
    display: block;
  }
}
body.home .home-content .block-article .container .wp-block-columns .owl-stage-outer {
  position: absolute;
}
body.home .home-content .block-article .container .wp-block-columns .owl-stage-outer .owl-stage {
  margin-left: 55px;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-article .container .wp-block-columns .owl-stage-outer .owl-stage {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  body.home .home-content .block-article .container .wp-block-columns .owl-stage-outer .owl-stage {
    padding-left: 0 !important;
    padding-top: 30px;
  }
}
body.home .home-content .block-article .container #wp-block-latest-posts li {
  background-color: transparent;
  display: block;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
}
body.home .home-content .block-article .container #wp-block-latest-posts li .wp-block-latest-posts__featured-image img {
  border-radius: 15px;
  height: 262px;
  object-fit: cover;
}
body.home .home-content .block-article .container #wp-block-latest-posts li .post-categories {
  padding: 0;
  margin-top: 20px;
}
body.home .home-content .block-article .container #wp-block-latest-posts li .post-categories a {
  font-size: 13px;
  font-family: "Work Sans Regular", sans-serif;
  line-height: 13px;
  color: #0E262D;
  background-color: #F2BB3F;
}
body.home .home-content .block-article .container #wp-block-latest-posts li h3 {
  padding: 0;
  font-size: 20px;
  font-family: "Work Sans", sans-serif;
  line-height: 24px;
  color: #0E262D;
}
body.home .home-content .block-article .container #wp-block-latest-posts li .wp-block-latest-posts__post-excerpt {
  font-size: 14px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 26px;
  color: #0E262D;
  padding: 0;
  margin-bottom: 0;
}
body.home .home-content .block-article .button-black {
  margin-top: 45px !important;
}
@media (max-width: 991.98px) {
  body.home .home-content .block-article .button-black {
    margin-top: 20px !important;
  }
}
@media (max-width: 991.98px) {
  body.home .home-content .block-testimonials .container {
    padding-bottom: 0;
  }
}
body.home .home-content .block-testimonials .testimonials-bloc {
  margin-top: 30px;
}
body.home .home-content .block-testimonials .testimonials-bloc .testimonial {
  background-color: #F5F6FC;
  border-radius: 15px;
  padding: 30px;
  min-height: 420px;
}
body.home .home-content .block-testimonials .testimonials-bloc .testimonial .logo img {
  max-width: 130px;
  height: 60px;
  filter: grayscale(100%);
  object-fit: contain;
}
body.home .home-content .block-testimonials .testimonials-bloc .testimonial img.logo {
  max-width: 130px;
  height: 60px;
  filter: grayscale(100%);
  object-fit: contain;
}
body.home .home-content .block-testimonials .testimonials-bloc .testimonial .content {
  margin-top: 20px;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  color: #0E262D;
  min-height: 320px;
}
body.home .home-content .block-testimonials .testimonials-bloc .testimonial .content img {
  display: none;
}
body.home .home-content .block-testimonials .testimonials-bloc .testimonial .content p {
  display: inline;
}
body.home .home-content .block-testimonials .testimonials-bloc .testimonial .content .cas-client-url, body.home .home-content .block-testimonials .testimonials-bloc .testimonial .content a {
  color: #0E262D;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 700;
  line-height: 26px;
}
body.home .home-content .block-testimonials .testimonials-bloc .testimonial .author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
body.home .home-content .block-testimonials .testimonials-bloc .testimonial .author img {
  min-width: 50px;
  height: 50px;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 10px;
  width: 50px;
}
body.home .home-content .block-testimonials .testimonials-bloc .testimonial .author .company, body.home .home-content .block-testimonials .testimonials-bloc .testimonial .author .client-name {
  font-size: 15px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 20px;
  color: #0E262D;
}
body.home .home-content .block-testimonials .testimonials-bloc .testimonial .author .client-name {
  font-family: "Work Sans SemiBold", sans-serif;
  margin-bottom: 5px;
}
body.home .home-content .block-testimonials .testimonials-bloc .owl-nav {
  display: none;
}
body.home .home-content .block-testimonials .testimonials-bloc .owl-dots {
  margin-top: 20px;
}
body.home .home-content .logoo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
body.home .home-content .logoo .logoo {
  flex: 0 1 calc(16.66% - 20px);
  max-width: calc(16.66% - 20px);
  text-align: center;
  margin: 5px;
}
body.home .home-content .logoo .logoo img {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}
body.home .home-content .logoo .logoo picture {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  body.home .home-content .logoo .logoo {
    flex: 0 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}
@media (max-width: 767.98px) {
  body.home .home-content .logoo .logoo {
    flex: 0 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
}
@media (max-width: 575.98px) {
  body.home .home-content .logoo .logoo {
    flex: 0 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
body.home .home-content .block-testimonials .testimonials-bloc {
  margin-bottom: 50px;
}

.footer .text-footer {
  font-family: "Work Sans SemiBold", sans-serif !important;
}
.footer .nav-footer .menu-item-type-custom a {
  font-weight: 600;
}
.footer .nav-footer .menu-item-type-custom .sub-menu li {
  line-height: 43px;
}
.footer .nav-footer .menu-item-type-custom .sub-menu li a {
  font-weight: revert;
}

@media (max-width: 575.98px) {
  .ask-for-quote {
    padding: 30px 0 !important;
  }
}

@media (max-width: 991.98px) {
  #header .topmenu .menu-basic .mega-menu-wrap .mega-menu {
    border-top: 1px solid #E2E4EF !important;
  }
}
@media (max-width: 991.98px) {
  #header .topmenu .menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-sub-menu {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  #header .topmenu .menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-link {
    padding-top: 5px !important;
    font-weight: revert !important;
    margin-top: 10px;
  }
}
@media (max-width: 991.98px) {
  #header .topmenu .menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-link img {
    display: none;
  }
}
@media (max-width: 991.98px) {
  #header .topmenu .menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item-8940 .mega-sub-menu, #header .topmenu .menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item-8943 .mega-sub-menu {
    margin-top: -3px;
  }
}
@media (max-width: 991.98px) {
  #header .topmenu .menu-basic .mega-menu-wrap #mega-menu-menu_principal #mega-menu-8943-0 .mega-menu-link {
    padding-top: 15px !important;
    font-weight: revert !important;
  }
}
@media (max-width: 991.98px) {
  #header .topmenu .menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item-8945 .mega-menu-link, #header .topmenu .menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item-8944 .mega-menu-link, #header .topmenu .menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item-8943 .mega-menu-link {
    padding-top: 5px !important;
  }
}
#header .menu-socialea .mega-sub-menu {
  padding-top: 10px !important;
}
#header .menu-socialea .mega-sub-menu .textwidget p {
  margin-top: 20px;
  font-weight: bold !important;
}
#header .menu-socialea .mega-sub-menu .mega-menu-link span {
  font-weight: normal !important;
}

header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-link {
  font-family: "Work Sans Medium", sans-serif !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-link:hover {
  font-family: "Work Sans SemiBold", sans-serif !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-link[tabindex="0"]:hover {
  font-family: "Work Sans SemiBold", sans-serif !important;
  background-color: #F5F6FC !important;
  border-radius: 25px !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .custom-font {
  font-family: "Work Sans SemiBold", sans-serif !important;
}

footer .ask-for-quote .blurred-logo img {
  height: 100%;
  width: auto;
}

.wp-block-button.button {
  padding: 0;
}
@media (max-width: 767.98px) {
  .wp-block-button.button {
    max-width: 250px;
  }
}
.wp-block-button.button a.wp-block-button__link.wp-element-button {
  width: 225px;
  font-size: 15px;
  font-family: "Work Sans Medium", sans-serif;
  padding: 14px 0 14px 25px;
  display: flex;
  align-items: center;
}
.wp-block-button.button a.wp-block-button__link.wp-element-button::after {
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 15px;
  margin-top: 2px;
}

.wp-block-button.button.button-white a.wp-block-button__link.wp-element-button {
  background-color: #FFFFFF;
  color: #3E41F3;
  border: 1px solid transparent;
}
.wp-block-button.button.button-white a.wp-block-button__link.wp-element-button::after {
  background-image: url("../img/arrow-right-blue.svg");
}
.wp-block-button.button.button-white a.wp-block-button__link.wp-element-button:hover {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  transition: 0.3s;
}
.wp-block-button.button.button-white a.wp-block-button__link.wp-element-button:hover::after {
  background-image: url("../img/arrow-right-white.svg");
}
.wp-block-button.button.button-white a.wp-block-button__link.wp-element-button:not(:hover) {
  transition: 0s;
}

.wp-block-button.button.button-blue a.wp-block-button__link.wp-element-button {
  background-color: #3E41F3;
  color: #FFFFFF;
  border: 1px solid #3E41F3;
}
.wp-block-button.button.button-blue a.wp-block-button__link.wp-element-button::after {
  background-image: url("../img/arrow-right-white.svg");
}
.wp-block-button.button.button-blue a.wp-block-button__link.wp-element-button:hover {
  background-color: #FFFFFF;
  color: #3E41F3;
  transition: 0.3s;
}
.wp-block-button.button.button-blue a.wp-block-button__link.wp-element-button:hover::after {
  background-image: url("../img/arrow-right-blue.svg");
}
.wp-block-button.button.button-blue a.wp-block-button__link.wp-element-button:not(:hover) {
  transition: 0s;
}

.wp-block-button.button.button-black a.wp-block-button__link.wp-element-button {
  background-color: #0E262D;
  color: #FFFFFF;
  border: 1px solid transparent;
}
.wp-block-button.button.button-black a.wp-block-button__link.wp-element-button::after {
  background-image: url("../img/arrow-right-white.svg");
}
.wp-block-button.button.button-black a.wp-block-button__link.wp-element-button:hover {
  background-color: transparent;
  color: #0E262D;
  border: 1px solid #0E262D;
  transition: 0.3s;
}
.wp-block-button.button.button-black a.wp-block-button__link.wp-element-button:hover::after {
  background-image: url("../img/arrow-right-black.svg");
}
.wp-block-button.button.button-black a.wp-block-button__link.wp-element-button:not(:hover) {
  transition: 0s;
}

.wp-block-button.button.button-transparent a.wp-block-button__link.wp-element-button {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #3E41F3;
  height: 30px;
  padding: 0 10px 0 25px;
  max-width: fit-content;
}
.wp-block-button.button.button-transparent a.wp-block-button__link.wp-element-button::after {
  background-image: url("../img/arrow-right-white.svg");
}
.wp-block-button.button.button-transparent a.wp-block-button__link.wp-element-button:hover {
  background-color: #FFFFFF;
  color: #3E41F3;
  transition: 0.3s;
}
.wp-block-button.button.button-transparent a.wp-block-button__link.wp-element-button:hover::after {
  background-image: url("../img/arrow-right-blue.svg");
}
.wp-block-button.button.button-transparent a.wp-block-button__link.wp-element-button:not(:hover) {
  transition: 0s;
}

body .offre-content {
  margin-top: 89px;
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  body .offre-content {
    margin-top: 81px;
  }
}
body .offre-content .container {
  padding: 35px 0;
}
@media (max-width: 991.98px) {
  body .offre-content .container {
    padding: 0 15px;
  }
}
body .offre-content .container h2 {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 42px;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  body .offre-content .container h2 {
    font-size: 28px;
    margin-top: 50px;
    line-height: 32px;
  }
}
body .offre-content .container h2::after {
  display: none;
}
body .offre-content .banner-home {
  background-image: url("../img/bg-banner-gray.png");
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: 100% 105%;
}
@media (max-width: 575.98px) {
  body .offre-content .banner-home {
    background-size: unset;
    position: relative;
  }
  body .offre-content .banner-home::after {
    content: "";
    background-image: url("../img/pictos/after_banner_mobile.png");
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    bottom: -20px;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
body .offre-content .banner-home .container {
  padding-left: 0;
  padding-right: 0;
  padding-top: 55px;
}
@media (max-width: 991.98px) {
  body .offre-content .banner-home .container {
    padding: 0 15px 70px;
    display: block;
  }
}
body .offre-content .banner-home .container h1 {
  font-size: 46px;
  font-family: "Work Sans SemiBold", sans-serif;
  color: #0E262D;
  line-height: 50px;
  margin-top: 70px;
}
@media (max-width: 991.98px) {
  body .offre-content .banner-home .container h1 {
    font-size: 32px;
    margin-top: 25px;
    line-height: 35px;
  }
}
body .offre-content .banner-home .container h1::after {
  display: none;
}
body .offre-content .banner-home .container .block-icon {
  width: 76%;
}
@media (max-width: 991.98px) {
  body .offre-content .banner-home .container .block-icon {
    display: block;
    width: 100%;
  }
}
body .offre-content .banner-home .container .block-icon p {
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  color: #0E262D;
  display: flex;
  align-items: center;
  max-width: 555px;
}
@media (max-width: 991.98px) {
  body .offre-content .banner-home .container .block-icon p {
    max-width: 100%;
  }
}
body .offre-content .banner-home .container .block-buttons .wp-block-buttons {
  justify-content: start;
  margin-top: 20px;
}
body .offre-content .banner-home .container .block-buttons p {
  color: #0E262C;
  padding-top: 35px;
  font-weight: bold;
  margin-bottom: -15px;
  font-family: "Work Sans Regular", sans-serif;
  font-size: 17px;
}
body .offre-content .banner-home .container .slider-image {
  margin-top: 25px;
}
body .offre-content .banner-home .container .slider-image figure.wp-block-image {
  margin: 0;
}
body .offre-content .banner-home .container figure {
  margin-right: 0;
}
@media (max-width: 991.98px) {
  body .offre-content .banner-home .container figure {
    margin: 0;
  }
}
body .offre-content .banner-home .wrapper-logo {
  flex-wrap: nowrap !important;
}
@media (max-width: 991.98px) {
  body .offre-content .banner-home .wrapper-logo .owl-stage-outer .owl-stage {
    padding-left: 0 !important;
  }
}
@media (max-width: 767.98px) {
  body .offre-content .banner-home .wrapper-logo {
    flex-wrap: wrap !important;
  }
}
body .offre-content .banner-home .wrapper-logo .logo {
  display: none;
}
body .offre-content .banner-home .wrapper-logo .logo:nth-child(-n+5) {
  display: block;
}
body .offre-content .banner-home .wrapper-logo .logo img {
  max-width: 130px;
  height: auto;
  filter: grayscale(100%);
  max-height: 90px;
  object-fit: contain;
}
@media (max-width: 991.98px) {
  body .offre-content .advantage-offre {
    margin-top: 10px;
  }
}
@media (max-width: 991.98px) {
  body .offre-content .advantage-offre .container {
    gap: 0;
  }
}
body .offre-content .advantage-offre .title {
  font-family: "Work Sans SemiBold", sans-serif;
  font-size: 24px;
  color: #0E262D;
}
@media (max-width: 991.98px) {
  body .offre-content .advantage-offre .title {
    margin-top: 0;
  }
}
body .offre-content .advantage-offre .title:before {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}
body .offre-content .advantage-offre .title.collaboration:before {
  background-image: url("../img/pictos/icon-people-blue.svg");
}
body .offre-content .advantage-offre .title.automatisation:before {
  background-image: url("../img/pictos/icon-star-blue.svg");
}
body .offre-content .advantage-offre .title.solution:before {
  background-image: url("../img/pictos/icon-happy-blue.svg");
}
body .offre-content .advantage-offre .advantage-list {
  list-style: inside;
}
body .offre-content .advantage-offre .advantage-list li {
  font-family: "Work Sans Medium", sans-serif;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 0;
  color: #0E262D;
  list-style-position: outside;
  margin-left: 18px;
}
body .offre-content .latest-missions-bloc {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  body .offre-content .latest-missions-bloc {
    flex-wrap: wrap;
    gap: 20px 0;
  }
}
body .offre-content .latest-missions-bloc .page-landing {
  display: none !important;
}
body .offre-content .latest-missions-bloc .latest-mission {
  flex: 0 0 24%;
  border: 1px solid #E2E4EF;
  border-radius: 20px;
  margin-right: 10px;
}
@media (max-width: 991.98px) {
  body .offre-content .latest-missions-bloc .latest-mission {
    flex: 1 0 40%;
  }
}
@media (max-width: 767.98px) {
  body .offre-content .latest-missions-bloc .latest-mission {
    flex: 1 0 50%;
  }
}
body .offre-content .latest-missions-bloc .latest-mission .mission-image-bloc .mission-image img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
body .offre-content .latest-missions-bloc .latest-mission .wrapper-mission-member {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  align-items: center;
}
body .offre-content .latest-missions-bloc .latest-mission .wrapper-mission-member p {
  margin-bottom: 0;
  font-family: "Work Sans SemiBold", sans-serif;
  font-size: 20px;
  color: #0E262D;
  line-height: 1.2;
}
body .offre-content .latest-missions-bloc .latest-mission .wrapper-mission-member .button-circle-link {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid #3E41F3;
  align-items: center;
  min-width: 40px;
}
body .offre-content .latest-missions-bloc .latest-mission .wrapper-mission-member .button-circle-link::after {
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow-right-blue.svg");
  margin: 0 auto;
}
body .offre-content .latest-missions-bloc .latest-mission .wrapper-mission-member .button-circle-link:hover {
  background-color: #3E41F3;
  border: 1px solid #3E41F3;
}
body .offre-content .latest-missions-bloc .latest-mission .wrapper-mission-member .button-circle-link:hover::after {
  background-image: url("../img/arrow-right-white.svg");
}
@media (max-width: 991.98px) {
  body .offre-content .block-gestion-depaie .container {
    flex-direction: column-reverse;
  }
}
body .offre-content .block-gestion-depaie .container h2 {
  padding-right: 100px;
  padding-top: 65px;
  font-family: "Work Sans Medium", sans-serif;
}
@media (max-width: 991.98px) {
  body .offre-content .block-gestion-depaie .container h2 {
    padding-top: 0;
    padding-right: 0;
    line-height: 32px;
  }
}
body .offre-content .block-gestion-depaie .container p {
  padding-top: 20px !important;
}
@media (max-width: 991.98px) {
  body .offre-content .block-gestion-depaie .container p {
    padding-top: revert !important;
  }
}
body .offre-content .block-gestion-depaie .container p, body .offre-content .block-gestion-depaie .container ul {
  padding-right: 100px !important;
  font-family: "Work Sans Medium", sans-serif !important;
}
@media (max-width: 991.98px) {
  body .offre-content .block-gestion-depaie .container p, body .offre-content .block-gestion-depaie .container ul {
    padding-right: revert !important;
  }
}
@media (max-width: 991.98px) {
  body .offre-content .block-gestion-rh .container {
    flex-direction: column;
  }
}
body .offre-content .block-gestion-rh .container h2 {
  padding-top: 65px;
}
@media (max-width: 991.98px) {
  body .offre-content .block-gestion-rh .container h2 {
    padding-top: revert;
    line-height: 32px;
  }
}
body .offre-content .block-gestion-rh .container p {
  padding-top: 20px !important;
}
@media (max-width: 991.98px) {
  body .offre-content .block-gestion-rh .container p {
    padding-top: revert !important;
  }
}
body .offre-content .block-gestion-rh .container h2 {
  font-family: "Work Sans Medium", sans-serif;
}
@media (max-width: 991.98px) {
  body .offre-content .block-gestion-rh .container h2 {
    line-height: 32px;
  }
}
body .offre-content .block-gestion-rh .container h2, body .offre-content .block-gestion-rh .container .wp-block-buttons, body .offre-content .block-gestion-rh .container p {
  padding-left: 100px !important;
}
@media (max-width: 991.98px) {
  body .offre-content .block-gestion-rh .container h2, body .offre-content .block-gestion-rh .container .wp-block-buttons, body .offre-content .block-gestion-rh .container p {
    padding-left: revert !important;
    line-height: 32px;
  }
}
body .offre-content .block-gestion-rh .container ul {
  padding-left: 100px !important;
}
@media (max-width: 991.98px) {
  body .offre-content .block-gestion-rh .container ul {
    padding: 0 !important;
  }
}
body .offre-content .block-gestion .container {
  padding: 35px 0;
  gap: 0;
}
@media (max-width: 991.98px) {
  body .offre-content .block-gestion .container {
    padding: 0 15px;
    gap: 0;
  }
}
body .offre-content .block-gestion .container .wp-block-column figure.wp-block-image {
  margin: 0;
}
body .offre-content .block-gestion .container .wp-block-column p {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif !important;
  font-weight: 500;
  line-height: 28px;
  list-style-type: none;
  padding: 5px 0;
}
body .offre-content .block-gestion .container .wp-block-column ul li {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  list-style-type: none;
  padding: 5px 0;
  display: flex;
  align-items: start;
}
body .offre-content .block-gestion .container .wp-block-column ul li:before {
  min-width: 16px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
  margin-top: 6px;
  background-image: url("../img/pictos/item-check.svg");
}
body .offre-content .block-gestion .container .wp-block-column ul {
  padding: 0;
}
@media (max-width: 991.98px) {
  body .offre-content .block-gestion .container figure img {
    margin-top: 40px;
  }
}
body .offre-content .block-client .container {
  padding: 35px 0;
}
body .offre-content .block-client .container h2 {
  margin: 50px 0;
}
@media (max-width: 991.98px) {
  body .offre-content .block-client .container h2 {
    margin: 25px 0;
    line-height: 32px;
  }
}
@media (max-width: 991.98px) {
  body .offre-content .block-client .container {
    padding: 0 15px;
  }
}
body .offre-content .block-client .container .wrapper-logo {
  gap: 35px 0;
  margin-bottom: 60px;
}
body .offre-content .block-client .container .wrapper-logo .wp-block-buttons {
  margin-top: 10px;
}
@media (max-width: 991.98px) {
  body .offre-content .block-client .container .wrapper-logo {
    margin-bottom: 35px;
  }
}
body .offre-content .block-client .container .wrapper-logo .logo {
  flex: 1 1 16%;
  justify-content: center;
  display: flex;
}
body .offre-content .block-client .container .wrapper-logo .logo img {
  max-width: 130px;
  height: auto;
  filter: grayscale(100%);
  max-height: 90px;
  object-fit: contain;
}
body .offre-content .block-client .container .wrapper-logo .logo:nth-child(6n+1) {
  justify-content: flex-start;
}
body .offre-content .block-client .container .wrapper-logo .logo:nth-child(6n) {
  justify-content: flex-end;
}
body .offre-content .block-client .container .wp-block-buttons .button-black a {
  padding-right: 0 !important;
}
@media (max-width: 991.98px) {
  body .offre-content .block-client .container .wp-block-buttons .button-black a {
    width: 225px !important;
    padding: 14px 0 12px 20px !important;
  }
}
body .offre-content .block-testimonials .testimonials-bloc {
  margin-top: 30px;
  margin-bottom: 50px;
}
body .offre-content .block-testimonials .testimonials-bloc .testimonial {
  background-color: #F5F6FC;
  border-radius: 15px;
  padding: 30px;
  min-height: 420px;
}
body .offre-content .block-testimonials .testimonials-bloc .testimonial .logo img {
  max-width: 130px;
  height: 60px;
  filter: grayscale(100%);
  object-fit: contain;
}
body .offre-content .block-testimonials .testimonials-bloc .testimonial img.logo {
  max-width: 130px;
  height: 60px;
  filter: grayscale(100%);
  object-fit: contain;
}
body .offre-content .block-testimonials .testimonials-bloc .testimonial .content {
  margin-top: 20px;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  color: #0E262D;
  min-height: 320px;
}
body .offre-content .block-testimonials .testimonials-bloc .testimonial .content img {
  display: none;
}
body .offre-content .block-testimonials .testimonials-bloc .testimonial .content p {
  display: inline;
}
body .offre-content .block-testimonials .testimonials-bloc .testimonial .content .cas-client-url, body .offre-content .block-testimonials .testimonials-bloc .testimonial .content a {
  color: #0E262D;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 700;
  line-height: 26px;
}
body .offre-content .block-testimonials .testimonials-bloc .testimonial .author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
body .offre-content .block-testimonials .testimonials-bloc .testimonial .author img {
  min-width: 50px;
  height: 50px;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 10px;
  width: 50px;
}
body .offre-content .block-testimonials .testimonials-bloc .testimonial .author .company, body .offre-content .block-testimonials .testimonials-bloc .testimonial .author .client-name {
  font-size: 15px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 20px;
  color: #0E262D;
}
body .offre-content .block-testimonials .testimonials-bloc .testimonial .author .client-name {
  font-family: "Work Sans SemiBold", sans-serif;
  margin-bottom: 5px;
}
body .offre-content .logoo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
body .offre-content .logoo .logoo {
  flex: 0 1 calc(16.66% - 20px);
  max-width: calc(16.66% - 20px);
  text-align: center;
  margin: 5px;
}
body .offre-content .logoo .logoo img {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}
body .offre-content .logoo .logoo picture {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  body .offre-content .logoo .logoo {
    flex: 0 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}
@media (max-width: 767.98px) {
  body .offre-content .logoo .logoo {
    flex: 0 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
}
@media (max-width: 575.98px) {
  body .offre-content .logoo .logoo {
    flex: 0 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

.page-template-mention-page-php .mention-legales-page .banner-home .container .block-icon {
  width: 100%;
}
.page-template-mention-page-php .mention-legales-page .banner-home .container .block-icon p {
  max-width: 100%;
}

body .agences-content {
  margin-top: 89px;
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  body .agences-content {
    margin-top: 81px;
  }
}
body .agences-content .container {
  padding: 35px 0;
}
@media (max-width: 991.98px) {
  body .agences-content .container {
    padding: 0 15px;
  }
}
body .agences-content .container h2 {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 42px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  body .agences-content .container h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
body .agences-content .container h2::after {
  display: none;
}
body .agences-content .banner-home {
  background-image: url("../img/bg-banner-gray.png");
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: 100% 105%;
}
@media (max-width: 575.98px) {
  body .agences-content .banner-home {
    background-size: unset;
    position: relative;
  }
  body .agences-content .banner-home::after {
    content: "";
    background-image: url("../img/pictos/after_banner_mobile.png");
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    bottom: -20px;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
body .agences-content .banner-home .container {
  padding-top: 43px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991.98px) {
  body .agences-content .banner-home .container {
    padding: 0 15px 70px;
    display: block;
  }
}
body .agences-content .banner-home .container h1 {
  font-size: 46px;
  font-family: "Work Sans SemiBold", sans-serif;
  color: #0E262D;
  line-height: 50px;
  margin-top: 70px;
}
@media (max-width: 991.98px) {
  body .agences-content .banner-home .container h1 {
    font-size: 32px;
    margin-top: 25px;
    line-height: 35px;
  }
}
body .agences-content .banner-home .container h1::after {
  display: none;
}
body .agences-content .banner-home .container .block-icon {
  width: 76%;
}
@media (max-width: 991.98px) {
  body .agences-content .banner-home .container .block-icon {
    display: block;
    width: 100%;
  }
}
body .agences-content .banner-home .container .block-icon p {
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  color: #0E262D;
}
body .agences-content .banner-home .container .block-icon strong {
  font-family: "Work Sans Regular", sans-serif;
  color: #0E262D;
}
body .agences-content .banner-home .container .block-buttons .wp-block-buttons {
  justify-content: start;
}
body .agences-content .banner-home .container .block-buttons p {
  color: #0E262C;
  padding-top: 35px;
  font-weight: bold;
}
body .agences-content .banner-home .container .slider-image {
  margin-top: 25px;
}
body .agences-content .banner-home .container .slider-image figure.wp-block-image {
  margin: 0;
}
body .agences-content .banner-home .container figure {
  margin-right: 0;
  margin-left: 0;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  body .agences-content .banner-home .container figure {
    margin: 0;
    justify-content: flex-start;
  }
}
body .agences-content .banner-home .container figure img {
  width: 604px;
  height: 462px;
  object-fit: cover;
}
@media (max-width: 1379.98px) {
  body .agences-content .banner-home .container figure img {
    width: 100%;
    height: auto;
  }
}
body .agences-content .banner-home .wrapper-logo {
  flex-wrap: nowrap !important;
}
@media (max-width: 767.98px) {
  body .agences-content .banner-home .wrapper-logo {
    flex-wrap: wrap !important;
  }
}
body .agences-content .banner-home .wrapper-logo .logo {
  display: none;
}
body .agences-content .banner-home .wrapper-logo .logo:nth-child(-n+5) {
  display: block;
}
body .agences-content .banner-home .wrapper-logo .logo img {
  max-width: 130px;
  height: auto;
  filter: grayscale(100%);
  max-height: 90px;
  object-fit: contain;
}
@media (max-width: 991.98px) {
  body .agences-content .block-gestion-depaie .container {
    flex-direction: column-reverse;
  }
}
body .agences-content .block-gestion-depaie .container h2 {
  padding-top: 35px;
  padding-right: 100px;
}
@media (max-width: 991.98px) {
  body .agences-content .block-gestion-depaie .container h2 {
    padding-top: 0;
    margin-top: 50px;
    line-height: 32px;
  }
}
body .agences-content .block-gestion-depaie .container p {
  padding-top: 20px !important;
}
@media (max-width: 991.98px) {
  body .agences-content .block-gestion-rh .container {
    flex-direction: column;
  }
}
body .agences-content .block-gestion-rh .container h2 {
  padding-left: 100px;
  padding-top: 35px;
}
@media (max-width: 991.98px) {
  body .agences-content .block-gestion-rh .container h2 {
    padding-left: 0;
    padding-top: 0;
    margin-top: 50px;
    line-height: 32px;
  }
}
body .agences-content .block-gestion-rh .container .wp-block-column p {
  padding: 0 !important;
  padding-left: 100px !important;
  padding-top: 20px !important;
}
@media (max-width: 991.98px) {
  body .agences-content .block-gestion-rh .container .wp-block-column p {
    padding: 5px 0 !important;
  }
}
@media (max-width: 991.98px) {
  body .agences-content .block-gestion {
    margin-top: 20px;
  }
}
body .agences-content .block-gestion strong {
  font-family: "Work Sans Regular", sans-serif;
  color: #0E262D;
}
body .agences-content .block-gestion .container {
  padding: 35px 0;
  gap: 0;
}
@media (max-width: 991.98px) {
  body .agences-content .block-gestion .container {
    padding: 0 15px;
  }
}
body .agences-content .block-gestion .container .wp-block-column {
  align-self: normal;
}
body .agences-content .block-gestion .container .wp-block-column figure.wp-block-image {
  margin: 0;
}
body .agences-content .block-gestion .container .wp-block-column p {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  list-style-type: none;
  padding: 5px 150px 5px 0;
}
@media (max-width: 1379.98px) {
  body .agences-content .block-gestion .container .wp-block-column p {
    padding: 5px 100px 5px 0;
  }
}
@media (max-width: 991.98px) {
  body .agences-content .block-gestion .container .wp-block-column p {
    padding: 5px 0;
  }
}
body .agences-content .block-gestion .container .wp-block-column ul li {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  list-style-type: none;
  padding: 5px 0;
  display: flex;
  align-items: start;
}
body .agences-content .block-gestion .container .wp-block-column ul li:before {
  min-width: 16px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
  margin-top: 6px;
  background-image: url("../img/pictos/item-check.svg");
}
body .agences-content .block-gestion .container .wp-block-column ul {
  padding-right: 150px;
}
@media (max-width: 1379.98px) {
  body .agences-content .block-gestion .container .wp-block-column ul {
    padding-right: 100px;
  }
}
@media (max-width: 991.98px) {
  body .agences-content .block-gestion .container .wp-block-column ul {
    padding: 0;
  }
}
body .agences-content .block-nos-agences h2 {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  body .agences-content .block-nos-agences h2 {
    margin-bottom: 25px;
  }
}
body .agences-content .block-nos-agences .agencies-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  body .agences-content .block-nos-agences .agencies-block {
    display: block;
  }
}
body .agences-content .block-nos-agences .agencies-block .item {
  flex: 0 0 32%;
  margin-top: 15px;
  border: 1px solid #E2E4EF;
  border-radius: 25px;
}
body .agences-content .block-nos-agences .agencies-block .item .content {
  padding: 20px;
  text-align: start;
}
body .agences-content .block-nos-agences .agencies-block .item .content .agency-name {
  font-family: "Work Sans SemiBold", sans-serif;
  font-size: 20px;
  color: #0E262D;
}
body .agences-content .block-nos-agences .agencies-block .item .content .agency-address {
  font-family: "Work Sans Medium", sans-serif;
  font-size: 15px;
  color: #0E262D;
}
body .agences-content .block-nos-agences .agencies-block .item .content .agency-phone {
  margin-top: 15px;
  margin-bottom: 15px;
}
body .agences-content .block-nos-agences .agencies-block .item .content .agency-phone a, body .agences-content .block-nos-agences .agencies-block .item .content .agency-phone span {
  font-size: 15px;
  color: #0E262D;
  font-family: "Work Sans SemiBold", sans-serif;
  text-decoration: none;
}
body .agences-content .block-nos-agences .agencies-block .item .content .button {
  padding: 0;
}
@media (max-width: 767.98px) {
  body .agences-content .block-nos-agences .agencies-block .item .content .button {
    max-width: 250px;
  }
}
body .agences-content .block-nos-agences .agencies-block .item .content .button a {
  width: 225px;
  font-size: 15px;
  font-family: "Work Sans Medium", sans-serif;
  padding: 11px 20px 11px 25px;
  display: flex;
  align-items: center;
  max-width: fit-content;
  border-radius: 30px;
  text-decoration: none;
}
body .agences-content .block-nos-agences .agencies-block .item .content .button a::after {
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 15px;
  margin-top: 2px;
}
body .agences-content .block-nos-agences .agencies-block .item .content .button.button-white a {
  background-color: #FFFFFF;
  color: #3E41F3;
  border: 1px solid #3E41F3;
}
body .agences-content .block-nos-agences .agencies-block .item .content .button.button-white a::after {
  background-image: url("../img/arrow-right-blue.svg");
}
body .agences-content .block-nos-agences .agencies-block .item .content .button.button-white a:hover {
  background-color: #3E41F3;
  color: #FFFFFF;
}
body .agences-content .block-nos-agences .agencies-block .item .content .button.button-white a:hover::after {
  background-image: url("../img/arrow-right-white.svg");
}

body .client-content {
  margin-top: 89px;
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  body .client-content {
    margin-top: 81px;
  }
}
@media (max-width: 991.98px) {
  body .client-content .wp-block-spacer {
    display: none;
  }
}
body .client-content h2 {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 40px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  body .client-content h2 {
    font-size: 28px;
    line-height: 32px;
    padding: 0 15px;
    margin: 35px 0;
  }
}
body .client-content h2::after {
  display: none;
}
body .client-content .container {
  padding: 35px 0;
}
@media (max-width: 991.98px) {
  body .client-content .container {
    padding: 0 15px;
  }
}
body .client-content .container h2 {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans", sans-serif;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  body .client-content .container h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
body .client-content .container h2::after {
  display: none;
}
body .client-content .container .logoo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
body .client-content .container .logoo .logoo {
  flex: 0 1 calc(16.66% - 20px);
  max-width: calc(16.66% - 20px);
  text-align: center;
  margin: 5px;
}
body .client-content .container .logoo .logoo img {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}
body .client-content .container .logoo .logoo picture {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  body .client-content .container .logoo .logoo {
    flex: 0 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}
@media (max-width: 767.98px) {
  body .client-content .container .logoo .logoo {
    flex: 0 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
}
@media (max-width: 575.98px) {
  body .client-content .container .logoo .logoo {
    flex: 0 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
body .client-content .banner-home {
  background-image: url("../img/bg-banner-gray.png");
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: 100% 105%;
}
@media (max-width: 575.98px) {
  body .client-content .banner-home {
    background-size: unset;
    position: relative;
  }
  body .client-content .banner-home::after {
    content: "";
    background-image: url("../img/pictos/after_banner_mobile.png");
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    bottom: -20px;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
body .client-content .banner-home .container {
  padding-top: 55px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991.98px) {
  body .client-content .banner-home .container {
    padding: 0 15px 70px;
    display: block;
  }
}
body .client-content .banner-home .container h1 {
  font-size: 46px;
  font-family: "Work Sans SemiBold", sans-serif;
  color: #0E262D;
  line-height: 50px;
  margin-top: 70px;
}
@media (max-width: 991.98px) {
  body .client-content .banner-home .container h1 {
    font-size: 32px;
    margin-top: 25px;
    line-height: 35px;
  }
}
body .client-content .banner-home .container h1::after {
  display: none;
}
body .client-content .banner-home .container .block-icon {
  width: 76%;
}
@media (max-width: 991.98px) {
  body .client-content .banner-home .container .block-icon {
    display: block;
    width: 100%;
  }
}
body .client-content .banner-home .container .block-icon p {
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 26px;
  color: #0E262D;
  display: flex;
  align-items: center;
  max-width: 555px;
}
@media (max-width: 991.98px) {
  body .client-content .banner-home .container .block-icon p {
    max-width: 100%;
  }
}
body .client-content .banner-home .container .block-buttons .wp-block-buttons {
  justify-content: start;
}
body .client-content .banner-home .container .block-buttons p {
  color: #0E262C;
  padding-top: 35px;
  font-weight: bold;
  margin-bottom: -15px;
  font-family: "Work Sans Regular", sans-serif;
  font-size: 17px;
}
body .client-content .banner-home .container .slider-image {
  margin-top: 25px;
}
body .client-content .banner-home .container .slider-image figure.wp-block-image {
  margin: 0;
}
body .client-content .banner-home .container figure {
  margin-right: 0;
}
@media (max-width: 991.98px) {
  body .client-content .banner-home .container figure {
    margin: 0;
  }
}
body .client-content .banner-home .wrapper-logo {
  flex-wrap: nowrap !important;
}
@media (max-width: 767.98px) {
  body .client-content .banner-home .wrapper-logo {
    flex-wrap: wrap !important;
  }
}
body .client-content .banner-home .wrapper-logo .logo {
  display: none;
}
body .client-content .banner-home .wrapper-logo .logo:nth-child(-n+5) {
  display: block;
}
body .client-content .banner-home .wrapper-logo .logo img {
  max-width: 130px;
  height: auto;
  filter: grayscale(100%);
  max-height: 90px;
  object-fit: contain;
}
body .client-content .wrapper-client {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
body .client-content .wrapper-client .client .image-link img {
  border-radius: 15px;
  width: 370px;
  height: 260px;
}
body .client-content .wrapper-client .client .category-link {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  line-height: 24px;
  color: #0E262D;
  text-decoration: none;
  display: block;
  margin-top: 10px;
}
body .client-content .wrapper-client .client .category-link:hover {
  color: #0E262D;
}
body .client-content .block-testimonials .has-nested-images {
  gap: 35px 0;
}
body .client-content .block-testimonials .has-nested-images figure.wp-block-image {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  max-width: 100%;
  position: relative;
  padding-left: 50px;
}
@media (max-width: 991.98px) {
  body .client-content .block-testimonials .has-nested-images figure.wp-block-image {
    flex: 1 1 33.33%;
    padding-left: 30px;
  }
}
@media (max-width: 575.98px) {
  body .client-content .block-testimonials .has-nested-images figure.wp-block-image {
    flex: 1 1 50%;
  }
}
body .client-content .block-testimonials .has-nested-images figure.wp-block-image img {
  max-width: 130px !important;
  height: auto !important;
  filter: grayscale(100%);
  max-height: 90px;
  object-fit: contain !important;
}
@media (max-width: 991.98px) {
  body .client-content .block-testimonials .container {
    padding-bottom: 0;
  }
}
body .client-content .block-testimonials .testimonials-bloc {
  margin-top: 30px;
}
body .client-content .block-testimonials .testimonials-bloc .testimonial {
  background-color: #F5F6FC;
  border-radius: 15px;
  padding: 30px;
  min-height: 420px;
}
body .client-content .block-testimonials .testimonials-bloc .testimonial .logo img {
  max-width: 130px;
  height: 60px;
  filter: grayscale(100%);
  object-fit: contain;
}
body .client-content .block-testimonials .testimonials-bloc .testimonial img.logo {
  max-width: 130px;
  height: 60px;
  filter: grayscale(100%);
  object-fit: contain;
}
body .client-content .block-testimonials .testimonials-bloc .testimonial .content {
  margin-top: 20px;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  color: #0E262D;
  min-height: 320px;
}
body .client-content .block-testimonials .testimonials-bloc .testimonial .content img {
  display: none;
}
body .client-content .block-testimonials .testimonials-bloc .testimonial .content p {
  display: inline;
}
body .client-content .block-testimonials .testimonials-bloc .testimonial .content .cas-client-url, body .client-content .block-testimonials .testimonials-bloc .testimonial .content a {
  color: #0E262D;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 700;
  line-height: 26px;
}
body .client-content .block-testimonials .testimonials-bloc .testimonial .author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
body .client-content .block-testimonials .testimonials-bloc .testimonial .author img {
  min-width: 50px;
  height: 50px;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 10px;
  width: 50px;
}
body .client-content .block-testimonials .testimonials-bloc .testimonial .author .company, body .client-content .block-testimonials .testimonials-bloc .testimonial .author .client-name {
  font-size: 15px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 20px;
  color: #0E262D;
}
body .client-content .block-testimonials .testimonials-bloc .testimonial .author .client-name {
  font-family: "Work Sans SemiBold", sans-serif;
  margin-bottom: 5px;
}
body .client-content .block-testimonials .testimonials-bloc .owl-nav {
  display: none;
}
body .client-content .block-testimonials .testimonials-bloc .owl-dots {
  margin-top: 20px;
}

body .single-client-content {
  margin-top: 89px;
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  body .single-client-content {
    margin-top: 81px;
  }
}
body .single-client-content .container {
  padding: 35px 0;
}
@media (max-width: 991.98px) {
  body .single-client-content .container {
    padding: 0 15px;
  }
}
body .single-client-content .container h2 {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans SemiBold", sans-serif;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  body .single-client-content .container h2 {
    font-size: 28px;
    padding-top: 25px;
    line-height: 32px;
  }
}
body .single-client-content .container h2::after {
  display: none;
}
body .single-client-content .banner-home {
  background-image: url("../img/bg-banner-gray.png");
  min-height: 650px;
  background-repeat: no-repeat;
  background-size: 100% 108%;
}
@media (max-width: 767.98px) {
  body .single-client-content .banner-home {
    background-size: cover;
  }
}
body .single-client-content .banner-home .container {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991.98px) {
  body .single-client-content .banner-home .container {
    padding: 0 15px 200px;
  }
}
body .single-client-content .banner-home .container h1 {
  font-size: 46px;
  font-family: "Work Sans", sans-serif;
  color: #0E262D;
  line-height: 50px;
}
@media (max-width: 991.98px) {
  body .single-client-content .banner-home .container h1 {
    font-size: 32px;
    margin-top: 25px;
    line-height: 35px;
  }
}
body .single-client-content .banner-home .container h1::after {
  display: none;
}
@media (max-width: 991.98px) {
  body .single-client-content .banner-home .container .block-icon {
    display: block;
  }
}
body .single-client-content .banner-home .container .block-icon p {
  font-size: 17px;
  font-family: "Work Sans Medium", sans-serif;
  color: #0E262D;
  display: flex;
  align-items: center;
}
body .single-client-content .banner-home .container .block-buttons .wp-block-buttons {
  justify-content: start;
}
body .single-client-content .banner-home .container .block-buttons p {
  color: #0E262C;
  padding-top: 35px;
  font-weight: bold;
}
body .single-client-content .banner-home .container .slider-image {
  margin-top: 25px;
}
body .single-client-content .banner-home .container .slider-image figure.wp-block-image {
  margin: 0;
}
body .single-client-content .banner-home .wrapper-logo {
  flex-wrap: nowrap !important;
}
@media (max-width: 767.98px) {
  body .single-client-content .banner-home .wrapper-logo {
    flex-wrap: wrap !important;
  }
}
body .single-client-content .banner-home .wrapper-logo .logo {
  display: none;
}
body .single-client-content .banner-home .wrapper-logo .logo:nth-child(-n+5) {
  display: block;
}
body .single-client-content .banner-home .wrapper-logo .logo img {
  max-width: 130px;
  height: auto;
  filter: grayscale(100%);
  max-height: 90px;
  object-fit: contain;
}
body .single-client-content .block-clients {
  margin-top: 30px;
}
body .single-client-content .block-clients .wrapper-logo {
  gap: 35px 0;
  margin-bottom: 35px;
}
body .single-client-content .block-clients .wrapper-logo .logo {
  flex: 1 1 16%;
}
body .single-client-content .block-clients .wrapper-logo .logo img {
  max-width: 130px;
  height: auto;
  filter: grayscale(100%);
  max-height: 90px;
  object-fit: contain;
}
body .single-client-content .block-testimonials .testimonials-bloc {
  margin-top: 30px;
  margin-bottom: 50px;
}
body .single-client-content .block-testimonials .testimonials-bloc .testimonial {
  background-color: #F5F6FC;
  border-radius: 15px;
  padding: 30px;
  min-height: 420px;
}
body .single-client-content .block-testimonials .testimonials-bloc .testimonial .logo img {
  max-width: 130px;
  height: 60px;
  filter: grayscale(100%);
  object-fit: contain;
}
body .single-client-content .block-testimonials .testimonials-bloc .testimonial img.logo {
  max-width: 130px;
  height: 60px;
  filter: grayscale(100%);
  object-fit: contain;
}
body .single-client-content .block-testimonials .testimonials-bloc .testimonial .content {
  margin-top: 20px;
  font-size: 17px;
  font-family: "Work Sans SemiBold", sans-serif;
  line-height: 27px;
  color: #0E262D;
  min-height: 320px;
}
body .single-client-content .block-testimonials .testimonials-bloc .testimonial .author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
body .single-client-content .block-testimonials .testimonials-bloc .testimonial .author img {
  min-width: 50px;
  height: 50px;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 10px;
  width: 50px;
}
body .single-client-content .block-testimonials .testimonials-bloc .testimonial .author .company, body .single-client-content .block-testimonials .testimonials-bloc .testimonial .author .client-name {
  font-size: 15px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 18px;
  color: #0E262D;
}
body .single-client-content .block-testimonials .testimonials-bloc .testimonial .author .client-name {
  font-family: "Work Sans SemiBold", sans-serif;
  margin-bottom: 5px;
}
body .single-client-content .block-client-detail .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 991.98px) {
  body .single-client-content .block-client-detail .item {
    flex-direction: column-reverse !important;
  }
}
body .single-client-content .block-client-detail .item:nth-child(even) {
  flex-direction: row-reverse;
}
body .single-client-content .block-client-detail .item .content {
  max-width: 500px;
}
body .single-client-content .block-client-detail .item .content .description p {
  font-size: 15px;
  font-family: "Work Sans Regular", sans-serif;
  color: #0E262D;
  margin-bottom: 0;
}
body .single-client-content .block-client-detail .item .content .button {
  padding: 0;
  margin-top: 20px;
}
body .single-client-content .block-client-detail .item .content .button a {
  width: 225px;
  font-size: 15px;
  font-family: "Work Sans Regular", sans-serif;
  padding: 14px 0 14px 25px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 30px;
}
body .single-client-content .block-client-detail .item .content .button a::after {
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 15px;
  margin-top: 2px;
}
body .single-client-content .block-client-detail .item .content .button-black a {
  background-color: #0E262D;
  color: #FFFFFF;
  border: 1px solid #0E262D;
}
body .single-client-content .block-client-detail .item .content .button-black a::after {
  background-image: url("../img/arrow-right-white.svg");
}
body .single-client-content .block-client-detail .item .content .button-black a:hover {
  background-color: transparent;
  color: #0E262D;
  border: 1px solid #0E262D;
}
body .single-client-content .block-client-detail .item .content .button-black a:hover::after {
  background-image: url("../img/arrow-right-black.svg");
}
body .single-client-content .block-client-detail .item .image img {
  max-width: 550px;
  width: 100%;
}

.mention-legales-page .container h2 {
  padding-bottom: 15px;
  font-size: 40px !important;
}
@media (max-width: 991.98px) {
  .mention-legales-page .container h2 {
    font-size: 28px !important;
    line-height: 32px;
  }
}
.mention-legales-page .container p {
  font-size: 15px !important;
  margin: 0;
}
.mention-legales-page .banner-home {
  background-image: none !important;
}

body.page-template-mention-page footer .ask-for-quote {
  display: none;
}

.blog-socialea {
  margin-top: 89px;
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  .blog-socialea {
    margin-top: 81px;
  }
}
.blog-socialea .title .container {
  padding-bottom: 0;
}
.blog-socialea h1 {
  font-size: 46px;
  font-family: "Work Sans SemiBold", sans-serif;
  color: #0E262D;
  line-height: 50px;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 20px;
  margin-top: 0;
}
@media (max-width: 991.98px) {
  .blog-socialea h1 {
    font-size: 32px;
    padding-bottom: 20px;
    line-height: 35px;
  }
}
@media (max-width: 1379.98px) {
  .blog-socialea h1 {
    padding-top: 0;
  }
}
.blog-socialea h1::after {
  display: none;
}
.blog-socialea .container {
  padding-bottom: 35px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991.98px) {
  .blog-socialea .container {
    padding: 0 15px;
  }
}
.blog-socialea .block-category-post .category-block {
  margin-top: 35px;
}
.blog-socialea .block-category-post .category-block h2 {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 42px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .blog-socialea .block-category-post .category-block h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
.blog-socialea .block-category-post .category-block h2::after {
  display: none;
}
.blog-socialea .block-category-post .category-block .wrapper-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}
@media (max-width: 991.98px) {
  .blog-socialea .block-category-post .category-block .wrapper-button {
    align-items: start;
    flex-direction: column;
    margin-bottom: 15px;
  }
}
.blog-socialea .block-category-post .category-block .wrapper-button .wp-block-button.button a.wp-block-button__link.wp-element-button {
  padding: 5px 13px !important;
  max-width: fit-content;
}
.blog-socialea .block-category-post .category-block .latest-post {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 26px;
}
.blog-socialea .block-category-post .category-block .latest-post .post-item {
  flex: 0 0 32%;
}
@media (max-width: 991.98px) {
  .blog-socialea .block-category-post .category-block .latest-post .post-item {
    flex: 100%;
    margin-bottom: 20px;
  }
}
.blog-socialea .block-category-post .category-block .latest-post .post-item .feature-image img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
}
.blog-socialea .block-category-post .category-block .latest-post .post-item .category-tag {
  font-family: "Work Sans Medium", sans-serif;
  font-size: 13px;
  color: #0E262D;
  background-color: #F2BB3F;
  padding: 3px 10px;
  border-radius: 15px;
  max-width: fit-content;
  margin-top: 15px;
  margin-bottom: 15px;
}
.blog-socialea .block-category-post .category-block .latest-post .post-item .title {
  font-family: "Work Sans SemiBold", sans-serif;
  font-size: 22px;
  color: #0E262D;
  text-decoration: none;
  line-height: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}
.blog-socialea .block-category-post .category-block .latest-post .post-item .excerpt {
  font-family: "Work Sans Regular", sans-serif;
  font-size: 14px;
  color: #0E262D;
  line-height: 26px;
  font-weight: 500;
}
.blog-socialea .list-category {
  display: flex;
  flex-wrap: wrap;
}
.blog-socialea .list-category .owl-stage {
  display: flex;
  padding-left: 0 !important;
}
.blog-socialea .list-category .owl-stage .owl-item {
  display: flex;
}
@media (max-width: 991.98px) {
  .blog-socialea .list-category .owl-stage .owl-item {
    width: fit-content !important;
  }
}
.blog-socialea .list-category .category {
  background-color: #F5F6FC;
  border: 1px solid #F5F6FC;
  max-width: fit-content;
  border-radius: 10px;
  padding: 10px 25px;
  font-family: "Work Sans Medium", sans-serif;
  font-size: 13px;
  color: #0E262D;
  margin-right: 10px;
  white-space: nowrap;
  text-decoration: none;
}
.blog-socialea .list-category .category:hover {
  background-color: #0E262D;
  color: #F5F6FC;
  border: 1px solid #0E262D;
  transition: 0.3s;
}
@media (max-width: 991.98px) {
  .blog-socialea .list-category .category {
    max-width: revert;
    width: 100%;
    margin-right: 0;
  }
}
.blog-socialea .feature-article-block {
  display: flex;
  margin-top: 30px;
}
@media (max-width: 991.98px) {
  .blog-socialea .feature-article-block {
    display: block;
  }
}
.blog-socialea .feature-article-block .feature-image {
  width: 30%;
  z-index: 1;
  margin: 30px 0;
}
@media (max-width: 991.98px) {
  .blog-socialea .feature-article-block .feature-image {
    width: 100%;
  }
}
.blog-socialea .feature-article-block .feature-image img {
  border-radius: 20px;
  min-height: 400px;
  object-fit: cover;
  max-width: 550px;
}
@media (max-width: 991.98px) {
  .blog-socialea .feature-article-block .feature-image img {
    width: 100%;
    max-width: revert;
  }
}
@media (max-width: 575.98px) {
  .blog-socialea .feature-article-block .feature-image img {
    min-height: 253px;
  }
}
.blog-socialea .feature-article-block .feature-content {
  display: flex;
  align-items: center;
  border-radius: 20px;
  width: 70%;
  border: 1px solid #E2E4EF;
}
@media (max-width: 991.98px) {
  .blog-socialea .feature-article-block .feature-content {
    width: 100%;
  }
}
.blog-socialea .feature-article-block .feature-content .wrapper-content {
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .blog-socialea .feature-article-block .feature-content .wrapper-content {
    padding: 25px 25px;
  }
}
.blog-socialea .feature-article-block .feature-content .wrapper-content .category-tag {
  font-family: "Work Sans Medium", sans-serif;
  font-size: 13px;
  color: #0E262D;
  background-color: #F2BB3F;
  padding: 3px 10px;
  border-radius: 15px;
  max-width: fit-content;
  margin-top: 15px;
  margin-bottom: 15px;
}
.blog-socialea .feature-article-block .feature-content .wrapper-content .title {
  font-family: "Work Sans SemiBold", sans-serif;
  font-size: 30px;
  color: #0E262D;
  text-decoration: none;
  line-height: 35px;
  margin-bottom: 12px;
}
.blog-socialea .feature-article-block .feature-content .wrapper-content .excerpt {
  font-family: "Work Sans Regular", sans-serif;
  font-size: 15px;
  color: #0E262D;
  margin-bottom: 25px;
  font-weight: 500;
  line-height: 26px;
}
.blog-socialea .feature-article-block .feature-content .wrapper-content .permalink {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #F2BB3F;
}
.blog-socialea .feature-article-block .feature-content .wrapper-content .permalink:hover {
  background-color: #F2BB3F;
  border-color: #F2BB3F;
}
.blog-socialea .feature-article-block .feature-content .wrapper-content .permalink:hover::after {
  background-image: url("../img/arrow-right-white.svg");
}
.blog-socialea .feature-article-block .feature-content .wrapper-content .permalink::after {
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow-right-orange.svg");
  margin: 0 auto;
}

.page-template-blog-socialea-page footer .ask-for-quote {
  display: none;
}

@media (max-width: 991.98px) {
  .category-actualites .wrapper.blog-category {
    padding: 0;
  }
}

.blog-category {
  margin-top: 89px;
}
@media (max-width: 991.98px) {
  .blog-category {
    margin-top: 81px;
  }
}
.blog-category h1 {
  font-size: 46px;
  font-family: "Work Sans SemiBold", sans-serif;
  color: #0E262D;
  line-height: 50px;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 20px;
  margin-top: 0;
}
@media (max-width: 991.98px) {
  .blog-category h1 {
    font-size: 32px;
    margin-top: 0;
    padding-top: 0;
    line-height: 35px;
  }
}
.blog-category h1::after {
  display: none;
}
.blog-category .container {
  padding-bottom: 35px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991.98px) {
  .blog-category .container {
    padding: 0 15px;
  }
}
@media (max-width: 1379.98px) {
  .blog-category .container {
    padding-bottom: 50px;
  }
}
.blog-category .container .pagination {
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}
.blog-category .container .pagination .page-numbers.current {
  width: 40px;
  color: #ffffff;
  height: 40px;
  border-radius: 100%;
  background: #3E41F3;
  font-size: 18px;
}
.blog-category .container .pagination .page-numbers {
  color: #0E262D;
  text-decoration: none;
  font-family: "Work Sans Medium", sans-serif;
  font-size: 15px;
}
.blog-category .container .pagination .next.page-numbers:after, .blog-category .container .pagination .prev.page-numbers:after {
  display: none;
}
.blog-category .latest-post {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: start;
}
.blog-category .latest-post .post-item {
  flex: 0 0 32%;
}
@media (max-width: 991.98px) {
  .blog-category .latest-post .post-item {
    flex: 100%;
    margin-bottom: 20px;
  }
}
.blog-category .latest-post .post-item .feature-image img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
}
.blog-category .latest-post .post-item .category-tag {
  font-family: "Work Sans Regular", sans-serif;
  font-size: 13px;
  color: #0E262D;
  background-color: #F2BB3F;
  padding: 3px 10px;
  border-radius: 15px;
  max-width: fit-content;
  margin-top: 15px;
  margin-bottom: 15px;
}
.blog-category .latest-post .post-item .title {
  font-family: "Work Sans SemiBold", sans-serif;
  font-size: 22px;
  color: #0E262D;
  text-decoration: none;
  line-height: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}
.blog-category .latest-post .post-item .excerpt {
  font-family: "Work Sans Regular", sans-serif;
  font-size: 14px;
  color: #0E262D;
  line-height: 26px;
  font-weight: 500;
}

body .single-content {
  margin-top: 89px;
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  body .single-content {
    margin-top: 81px;
  }
}
body .single-content .container {
  padding: 55px 0;
}
body .single-content .container h1 {
  font-size: 46px;
  font-family: "Work Sans SemiBold", sans-serif;
  color: #0E262D;
  line-height: 50px;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  body .single-content .container h1 {
    font-size: 32px;
    margin-top: 35px;
    line-height: 35px;
  }
}
body .single-content .container h1::after {
  display: none;
}
body .single-content .container h2 {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 42px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  body .single-content .container h2 {
    font-size: 28px;
    padding-top: 25px;
    line-height: 32px;
  }
}
body .single-content .container h2::after {
  display: none;
}
body .single-content .container h3 {
  font-family: "Work Sans SemiBold", sans-serif;
  color: #0E262D;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  body .single-content .container h3 {
    font-size: 18px;
    line-height: 28px;
  }
}
body .single-content .container .detail {
  flex-basis: 70%;
  font-family: "Work Sans Medium", sans-serif;
}
@media (max-width: 991.98px) {
  body .single-content .container .detail {
    flex-basis: revert;
  }
}
body .single-content .container .detail .latest-missions-bloc {
  display: flex;
  gap: 20px;
}
body .single-content .container .detail .latest-missions-bloc .page-gestion {
  display: none;
}
@media (max-width: 991.98px) {
  body .single-content .container .detail .latest-missions-bloc {
    display: block;
    margin: 0;
  }
}
body .single-content .container .detail .latest-missions-bloc .latest-mission {
  flex: 0 0 24%;
  border-radius: 20px;
}
body .single-content .container .detail .latest-missions-bloc .latest-mission .mission-image-bloc .mission-image img {
  width: 100%;
  border-radius: 20px;
  max-height: 220px;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  body .single-content .container .detail .latest-missions-bloc .latest-mission .mission-image-bloc .mission-image img {
    height: auto;
    max-height: unset;
  }
}
body .single-content .container .detail .latest-missions-bloc .latest-mission .wrapper-mission-member {
  margin-top: 20px;
}
@media (max-width: 991.98px) {
  body .single-content .container .detail .latest-missions-bloc .latest-mission .wrapper-mission-member {
    margin-bottom: 20px;
  }
}
body .single-content .container .detail .latest-missions-bloc .latest-mission .wrapper-mission-member a {
  font-family: "Work Sans SemiBold", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #0E262D;
  text-decoration: none;
}
body .single-content .container .detail .latest-missions-bloc .latest-mission .wrapper-mission-member a:hover {
  text-decoration: none;
}
body .single-content .container .detail .latest-missions-bloc .latest-mission .wrapper-mission-member .description {
  font-size: 14px;
  font-family: "Work Sans Medium", sans-serif;
  font-weight: 400;
  line-height: 24px;
  color: #0E262D;
  padding: 0;
  margin-bottom: 0;
  margin-top: 8px;
}
body .single-content .container .custom-window {
  flex-basis: 30%;
  padding-left: 50px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
@media (max-width: 991.98px) {
  body .single-content .container .custom-window {
    flex-basis: revert;
    margin-bottom: 50px;
    padding-left: 0;
    position: unset;
  }
}
body .single-content .container .custom-window .custom-window-title {
  color: #0E262D;
  font-size: 15px;
  font-family: "Work Sans SemiBold", sans-serif;
  margin: 0;
}
body .single-content .container .custom-window .list-link {
  padding: 10px 0;
}
body .single-content .container .custom-window .list-link a {
  display: flex;
  color: #0E262D;
  font-size: 15px;
  font-family: "Work Sans Medium", sans-serif;
  text-decoration: none;
}
body .single-content .container .custom-window .list-link a:before {
  min-width: 16px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 5px;
  margin-top: 5px;
  background-image: url("../img/arrow-right-blue.svg");
}
body .single-content .container .custom-window .info-window {
  margin-top: 30px;
  padding: 25px;
  border-radius: 20px;
  background: #f5f6fc;
}
body .single-content .container .custom-window .info-window .info-window-title {
  color: #3e41f3;
  font-size: 15px;
  font-family: "Work Sans Medium", sans-serif;
  margin-top: 10px;
}
body .single-content .container .custom-window .info-window .description {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Medium", sans-serif;
  margin-top: 5px;
}
body .single-content .container .custom-window .info-window .tools-button {
  margin-top: 15px;
}
body .single-content .container .custom-window .info-window .tools-button .button_fill {
  border: 1px solid #3E41F3;
  border-radius: 30px;
  padding: 5px 20px;
  color: #3E41F3;
  font-family: "Work Sans Medium", sans-serif;
  background-color: #f5f6fb;
  text-decoration: none;
  cursor: pointer;
}
body .single-content .container .custom-window .info-window .tools-button .button_fill::after {
  background-image: url("../img/arrow-right-blue.svg");
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 15px;
}
body .single-content .container .custom-window .info-window .tools-button .button_fill:hover {
  background-color: #3E41F3;
  color: #FFFFFF;
  border: 1px solid #3E41F3;
  transition: 0.3s;
}
body .single-content .container .custom-window .info-window .tools-button .button_fill:hover::after {
  background-image: url("../img/arrow-right-white.svg");
}
body .single-content .container .darkblue-bloc h2::after {
  content: "";
  display: block;
  width: 40px;
  margin-top: 15px;
  background-color: #ff8762;
  height: 4px;
  border-radius: 50px;
}
body .single-content .container .darkblue-bloc h2 strong {
  color: #FFFFFF;
  font-family: "Work Sans SemiBold", sans-serif;
}
body .single-content .container .darkblue-bloc .pictos-bloc {
  max-width: 1480px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0;
}
body .single-content .container .darkblue-bloc .pictos-bloc .wp-block-column {
  margin-left: 30px;
  margin-right: 30px;
  padding: 25px 55px;
}
@media (max-width: 575.98px) {
  body .single-content .container .darkblue-bloc .pictos-bloc .wp-block-column {
    margin: 0;
    padding: 0;
  }
}
body .single-content .container .darkblue-bloc .pictos-bloc .wp-block-column p {
  color: #FFFFFF;
}
body .single-content .container .darkblue-bloc .pictos-bloc .wp-block-column figure img {
  filter: contrast(0) brightness(0) invert(1);
}
body .single-content .banner-home {
  background-color: #222484;
}
body .single-content .banner-home .container {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991.98px) {
  body .single-content .banner-home .container {
    padding: 35px 15px;
    flex-direction: column;
  }
}
body .single-content .banner-home .container h1 {
  font-size: 46px;
  font-family: "Work Sans SemiBold", sans-serif;
  color: #FFFFFF;
  line-height: 50px;
  margin-bottom: 12px;
}
@media (max-width: 991.98px) {
  body .single-content .banner-home .container h1 {
    font-size: 32px;
    margin-top: 25px;
    line-height: 35px;
  }
}
body .single-content .banner-home .container h1::after {
  display: none;
}
body .single-content .banner-home .container .info {
  display: flex;
  align-items: center;
}
body .single-content .banner-home .container .info .category-item {
  background-color: #F2BB3F;
  border-radius: 20px;
  padding: 1px 15px;
  margin-right: 15px;
}
body .single-content .banner-home .container .info .category-item a {
  text-decoration: none;
  font-family: "Work Sans Medium", sans-serif;
  font-size: 13px;
  color: #0E262D;
}
body .single-content .banner-home .container .info .date {
  font-family: "Work Sans Medium", sans-serif;
  font-size: 13px;
  color: #F2BB3F;
}
body .single-content .banner-home .container .description {
  font-size: 15px;
  font-family: "Work Sans Medium", sans-serif;
  color: #FFFFFF;
}
body .single-content .banner-home .container .banner-image {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  body .single-content .banner-home .container .banner-image {
    justify-content: center;
    display: block;
  }
}
body .single-content .banner-home .container .banner-image img {
  border-radius: 25px;
  width: 554px;
  height: 350px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 575.98px) {
  body .single-content .banner-home .container .banner-image img {
    width: 100%;
    height: 265px;
  }
}
body .single-content .banner-home .wrapper-logo {
  flex-wrap: nowrap !important;
}
@media (max-width: 767.98px) {
  body .single-content .banner-home .wrapper-logo {
    flex-wrap: wrap !important;
  }
}
body .single-content .banner-home .wrapper-logo .logo {
  display: none;
}
body .single-content .banner-home .wrapper-logo .logo:nth-child(-n+5) {
  display: block;
}
body .single-content .banner-home .wrapper-logo .logo img {
  max-width: 130px;
  height: auto;
  filter: grayscale(100%);
  max-height: 90px;
  object-fit: contain;
}
body .single-content .block-content h1 strong {
  font-family: "Work Sans SemiBold", sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 50px;
}
body .single-content .block-content h2 strong, body .single-content .block-content h3 strong {
  font-family: "Work Sans Medium", sans-serif;
  font-weight: 600;
}
body .single-content .block-content p strong {
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 700;
}
body .single-content .block-content strong {
  font-family: "Work Sans Regular", sans-serif;
  color: #0E262D;
}
body .single-content .block-content .container {
  padding: 40px 10px 40px 100px;
}
@media (max-width: 991.98px) {
  body .single-content .block-content .container {
    padding: 35px 15px;
    flex-direction: column;
  }
}
body .single-content .block-content .container .wp-block-column figure.wp-block-image {
  margin-left: 0;
}
body .single-content .block-content .container .wp-block-column p {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  line-height: 28px;
  list-style-type: none;
  padding: 5px 0;
}
body .single-content .block-content .container .wp-block-column ul li {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  line-height: 28px;
  padding: 5px 0;
  list-style: outside;
  margin-left: 15px;
}
body .single-content .block-content .container .wp-block-column ul li::marker {
  color: #3E41F3;
  font-size: 19px;
}
body .single-content .block-content .container .wp-block-column ul {
  padding: 0;
}
body .single-content .latest-articles {
  background-color: #fff4e4;
}
body .single-content .latest-articles .container {
  padding: 80px 0;
}
body .single-content .latest-articles .container h2 {
  margin-bottom: 25px;
  padding: 0 40px;
  font-family: "Work Sans SemiBold", sans-serif;
}
@media (max-width: 991.98px) {
  body .single-content .latest-articles .container h2 {
    padding: 0;
    line-height: 32px;
  }
}
@media (max-width: 991.98px) {
  body .single-content .latest-articles .container {
    padding: 0 15px;
  }
}
body .single-content .latest-articles .container .category-block .latest-post .block-post {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
body .single-content .latest-articles .container .category-block .latest-post .block-post .post-item {
  flex: 0 0 32%;
}
@media (max-width: 991.98px) {
  body .single-content .latest-articles .container .category-block .latest-post .block-post .post-item {
    flex: 100%;
    margin-bottom: 20px;
  }
}
body .single-content .latest-articles .container .category-block .latest-post .block-post .post-item .feature-image img {
  width: 100%;
  height: 262px;
  object-fit: cover;
  border-radius: 20px;
}
body .single-content .latest-articles .container .category-block .latest-post .block-post .post-item .category-tag {
  font-family: "Work Sans Medium", sans-serif;
  font-size: 13px;
  color: #0E262D;
  background-color: #F2BB3F;
  padding: 3px 10px;
  border-radius: 15px;
  max-width: fit-content;
  margin-top: 15px;
  margin-bottom: 15px;
}
body .single-content .latest-articles .container .category-block .latest-post .block-post .post-item .title {
  font-family: "Work Sans SemiBold", sans-serif;
  font-size: 22px;
  color: #0E262D;
  text-decoration: none;
  line-height: 32px;
  margin-bottom: 10px;
}
body .single-content .latest-articles .container .category-block .latest-post .block-post .post-item .excerpt {
  font-family: "Work Sans Regular", sans-serif;
  font-size: 14px;
  color: #0E262D;
  font-weight: 500;
  line-height: 26px;
}
body .single-content .block-client .wrapper-logo {
  gap: 35px 0;
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  body .single-content .block-client .wrapper-logo {
    margin-bottom: 35px;
  }
}
body .single-content .block-client .wrapper-logo .logo {
  flex: 1 1 16%;
  justify-content: center;
  display: flex;
}
body .single-content .block-client .wrapper-logo .logo img {
  max-width: 130px;
  height: auto;
  filter: grayscale(100%);
  max-height: 90px;
  object-fit: contain;
}
body .single-content .block-client .wrapper-logo .logo:nth-child(6n+1) {
  justify-content: flex-start;
}
body .single-content .block-client .wrapper-logo .logo:nth-child(6n) {
  justify-content: flex-end;
}
body .single-content .block-client .wp-block-button.button.button-black a.wp-block-button__link.wp-element-button {
  padding-right: 0 !important;
}
@media (max-width: 991.98px) {
  body .single-content .block-client .wp-block-button.button.button-black a.wp-block-button__link.wp-element-button {
    width: 225px !important;
    padding: 14px 0 12px 20px !important;
  }
}

body.page-template-page-landing-php.page-id-8 .banner-home {
  background-image: url("../img/bg-banner-gray.png");
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: 100% 105%;
  background-color: unset;
}
@media (max-width: 575.98px) {
  body.page-template-page-landing-php.page-id-8 .banner-home {
    background-size: unset;
    position: relative;
  }
  body.page-template-page-landing-php.page-id-8 .banner-home::after {
    content: "";
    background-image: url("../img/pictos/after_banner_mobile.png");
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    bottom: -20px;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
  }
  body.page-template-page-landing-php.page-id-8 .banner-home .container {
    padding-top: 55px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 575.98px) and (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .banner-home .container {
    padding: 0 15px 70px;
    display: block;
  }
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 {
  padding-top: 55px;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 {
    padding-top: 0;
  }
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .banner-image {
  margin-top: 1em;
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .banner-image img {
  width: 604px;
  height: 462px;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .banner-image img {
    width: 100%;
    max-height: 252px;
  }
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column {
    max-width: 100%;
  }
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .wp-block-heading {
  font-size: 46px;
  font-family: "Work Sans SemiBold", sans-serif;
  color: #0E262D;
  line-height: 50px;
  margin-top: 70px;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .wp-block-heading {
    font-size: 32px;
    margin-top: 25px;
    line-height: 35px;
  }
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .wp-block-heading::after {
  display: none;
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .wp-container-2 {
  display: block;
  width: 76%;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .wp-container-2 {
    width: 100%;
  }
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .wp-container-2 .description {
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  color: #0E262D;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .wp-container-2 .description {
    display: block;
    width: 100%;
    padding-bottom: 1rem;
  }
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .banner-container {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  width: 76%;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .banner-container {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .banner-container {
    display: block;
  }
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .banner-container .button-banner-link {
  margin: auto 0;
}
@media (max-width: 575.98px) {
  body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .banner-container .button-banner-link {
    margin-top: 20px;
  }
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .banner-container .button-banner-link .banner-button {
  background-color: #3E41F3;
  color: #FFFFFF;
  border: 1px solid #3E41F3;
  width: fit-content;
  font-size: 15px;
  font-family: "Work Sans Medium", sans-serif;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 200px;
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .banner-container .button-banner-link .banner-button::after {
  background-image: url("../img/arrow-right-white.svg");
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .banner-container .button-banner-link .banner-button:hover {
  background-color: #FFFFFF;
  color: #3E41F3;
  border: 1px solid #3E41F3;
  transition: 0.3s;
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .banner-container .button-banner-link .banner-button:hover::after {
  background-image: url("../img/arrow-right-blue.svg");
}
body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .banner-container .banner-img img {
  max-width: 130px;
  height: auto;
  filter: grayscale(100%);
  max-height: 90px;
  object-fit: contain;
}
@media (max-width: 575.98px) {
  body.page-template-page-landing-php.page-id-8 .banner-home .wp-container-5 .wp-block-column .banner-container .banner-img img {
    margin-top: 20px;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container {
  padding: 0;
  margin-bottom: 35px !important;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container {
    padding: 0 15px;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe .wp-block-column figure.wp-block-image {
  margin: 0;
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe h2 {
  margin-top: 45px;
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-nos-agences .wp-block-column figure.wp-block-image {
  margin: 0;
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-nos-agences h2 {
  margin-top: 45px;
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-nos-agences h2 a {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans SemiBold", sans-serif;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .block-nos-agences h2 a {
    font-size: 28px;
    padding-top: 25px;
    line-height: 32px;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-3 {
  padding: 35px 0;
  gap: 0;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-3 {
    display: flex;
    flex-direction: column-reverse;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-3 h2 {
  padding-right: 100px;
}
@media (max-width: 1379.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-3 h2 {
    padding-right: 20px;
  }
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-3 h2 {
    padding-right: 0;
    line-height: 32px;
    gap: 2rem;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-3 h2 strong {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 42px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-3 h2 strong {
    font-size: 28px;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-3 p {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  list-style-type: none;
  padding: 10px 100px 5px 0;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-3 p {
    padding: 5px 0 !important;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-3 figure {
  margin: 0;
}
body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-6 {
  padding: 55px 0;
  gap: 0;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-6 {
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-6 {
    padding-right: 0;
    line-height: 32px;
    padding-top: 0;
    gap: 2rem;
    display: block;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-6 h2 {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 42px;
  font-weight: 600;
  padding-left: 100px;
}
body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-6 h2 strong {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 42px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-6 h2 {
    line-height: 32px;
    padding-left: 0;
    font-size: 28px;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-6 p {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  list-style-type: none;
  padding: 20px 0 0 100px;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-6 p {
    line-height: 32px;
    padding-left: 0;
    padding-top: 0;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .wp-container-6 figure {
  margin: 0;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .reinsurance-bloc figure {
    margin: 0;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe {
  gap: 0;
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe .are-vertically-aligned-top {
  margin-top: 50px;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe .are-vertically-aligned-top {
    padding: 0;
    margin-top: 0;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe .button .wp-block-button__link {
  width: fit-content;
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-nos-agences .wp-element-button {
  padding: 14px 0 14px 10px;
  width: 225px !important;
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-nos-agences .wp-element-button::after {
  margin-left: 10px;
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe h2 {
  padding-right: 100px;
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 42px;
  font-weight: 600;
  margin-top: 0;
}
@media (max-width: 1379.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe h2 {
    padding-right: 20px;
  }
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe h2 {
    padding-right: 0;
    line-height: 32px;
    font-size: 28px;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe p {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  font-weight: 500;
  line-height: 28px;
  list-style-type: none;
  padding: 10px 100px 5px 0;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe p {
    padding: 5px 0 !important;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe figure {
  margin: 0;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe .wp-container-12 {
    padding: 0;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe .button a {
  padding: 14px 0 14px 10px;
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-notre-equipe .button a::after {
  margin-left: 10px;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-8 .block-content .container .block-nos-agences .wp-container-18 {
    padding: 0;
  }
}
body.page-template-page-landing-php.page-id-8 .block-content .container .block-nos-agences .button a {
  margin-top: 20px;
  width: 200px;
}

body.page-template-page-landing-php.page-id-6799 .single-content .block-content .wp-container-10 {
  padding: 40px 0;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-6799 .single-content .block-content .wp-container-10 {
    padding: 0 15px;
  }
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-6799 .single-content .block-content .wp-container-10 .alignwide {
    display: block;
  }
}
body.page-template-page-landing-php.page-id-6799 .single-content .block-content .wp-container-10 .alignwide .wp-block-media-text__content {
  padding-left: 0;
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-6799 .single-content .block-content .wp-container-10 .alignwide .wp-block-media-text__content {
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-6799 .single-content .block-content .wp-container-10 .wp-container-4 {
    display: block;
  }
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-6799 .single-content .block-content .wp-container-10 .wp-container-4 .wp-block-quote figure {
    margin: 0;
  }
}
@media (max-width: 991.98px) {
  body.page-template-page-landing-php.page-id-6799 .single-content .block-content .wp-container-10 .reinsurance-bloc {
    justify-content: center;
  }
}
body.page-template-page-landing-php.page-id-6799 .single-content .block-content .wp-container-10 .reinsurance-bloc .wp-block-image {
  margin: 10px auto;
}

.page-template-page-landing-php .single-content .block-content .container {
  padding: 55px 0;
}
@media (max-width: 991.98px) {
  .page-template-page-landing-php .single-content .block-content .container {
    padding: 35px 15px;
  }
}

.mission-template-default .single-mission .block-content .container {
  padding: 55px 0;
}
@media (max-width: 991.98px) {
  .mission-template-default .single-mission .block-content .container {
    padding: 35px 15px;
  }
}

body .contact-content {
  margin-top: 89px;
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  body .contact-content {
    margin-top: 81px;
  }
}
body .contact-content .container {
  padding: 70px 0;
  max-width: 850px;
}
body .contact-content .container h2 {
  color: #0E262D;
  font-size: 40px;
  font-family: "Work Sans", sans-serif;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  body .contact-content .container h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
body .contact-content .container h2::after {
  display: none;
}
body .contact-content .block-contact {
  background-color: #222484;
  max-height: 680px;
}
body .contact-content .block-contact .wp-block-column {
  z-index: 1;
}
body .contact-content .block-contact::before {
  left: 0;
  top: 0;
  width: 500px;
  height: 100%;
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-image: url(../img/bg-contact.png);
  z-index: 0;
}
@media (max-width: 991.98px) {
  body .contact-content .block-contact .container {
    padding: 50px 15px;
  }
}
body .contact-content .block-contact .container .contact-form {
  background-color: white;
  border-radius: 20px;
  padding: 35px 50px 100px 50px;
}
@media (max-width: 991.98px) {
  body .contact-content .block-contact .container .contact-form {
    padding: 35px 20px 100px 20px;
  }
}
body .contact-content .block-contact .container .contact-form .top-form-text {
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  color: #3E41F3;
  margin-bottom: 10px;
}
body .contact-content .block-contact .container .contact-form .title {
  margin-bottom: 50px;
}
body .contact-content .block-contact .container .contact-form .page-list .page-choices {
  border-bottom: 0.5px solid #E2E4EF;
  padding: 25px;
  flex-wrap: unset !important;
}
body .contact-content .block-contact .container .contact-form .page-list .page-choices:first-child {
  border-top: 0.5px solid #E2E4EF;
}
body .contact-content .block-contact .container .contact-form .page-list .page-choices .title-page p {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  color: #0E262D;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  body .contact-content .block-contact .container .contact-form .page-list .page-choices .title-page p {
    font-size: 15px;
  }
}
body .contact-content .block-contact .container .contact-form .page-list .block-icon .wp-block-button a.wp-block-button__link.wp-element-button {
  display: flex;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid #3E41F3;
  align-items: center;
  padding: 0;
}
@media (max-width: 991.98px) {
  body .contact-content .block-contact .container .contact-form .page-list .block-icon .wp-block-button a.wp-block-button__link.wp-element-button {
    width: 40px !important;
    padding: 0 !important;
  }
}
body .contact-content .block-contact .container .contact-form .page-list .block-icon .wp-block-button a.wp-block-button__link.wp-element-button span {
  display: none;
}
body .contact-content .block-contact .container .contact-form .page-list .block-icon .wp-block-button a.wp-block-button__link.wp-element-button::after {
  min-width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow-right-blue.svg");
  margin: 0 auto;
}
body .contact-content .block-contact .container .contact-form .page-list .block-icon .wp-block-button a.wp-block-button__link.wp-element-button:hover {
  background-color: #3E41F3;
  border: 1px solid #3E41F3;
  color: #3E41F3;
}
body .contact-content .block-contact .container .contact-form .page-list .block-icon .wp-block-button a.wp-block-button__link.wp-element-button:hover::after {
  background-image: url("../img/arrow-right-white.svg");
}

.page-template-contact .topmenu.container .menu-socialea, .page-template-contact .topmenu.container .tools-button {
  display: none;
}
.page-template-contact .topmenu.container .logo-container {
  margin: 0 auto;
}
.page-template-contact footer .ask-for-quote {
  display: none;
}

body .contact-demande-de-devis-content {
  margin-top: 89px;
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  body .contact-demande-de-devis-content {
    margin-top: 81px;
  }
}
body .contact-demande-de-devis-content .container {
  padding: 40px 0;
  max-width: 850px;
}
body .contact-demande-de-devis-content .container h2 {
  color: #0E262D;
  font-size: 40px;
  font-family: "Work Sans", sans-serif;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  body .contact-demande-de-devis-content .container h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
body .contact-demande-de-devis-content .container h2::after {
  display: none;
}
body .contact-demande-de-devis-content .block-contact {
  background-color: #222484;
}
body .contact-demande-de-devis-content .block-contact .wp-block-column {
  z-index: 1;
}
body .contact-demande-de-devis-content .block-contact::before {
  left: 0;
  top: 0;
  width: 500px;
  height: 100%;
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-size: 105% 102%;
  background-image: url(../img/bg-contact.png);
  z-index: 0;
}
@media (max-width: 991.98px) {
  body .contact-demande-de-devis-content .block-contact .container {
    padding: 50px 15px;
  }
}
body .contact-demande-de-devis-content .block-contact .container .contact-form {
  background-color: white;
  border-radius: 20px;
  padding: 20px 50px;
}
@media (max-width: 991.98px) {
  body .contact-demande-de-devis-content .block-contact .container .contact-form {
    padding: 20px 15px;
  }
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .top-form-text {
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  color: #3E41F3;
  margin-bottom: 0;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_validation_errors {
  border: 0;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_validation_errors .gform_submission_error {
  font-size: 15px;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_heading .gform_title {
  color: #0E262D;
  font-size: 40px;
  font-family: "Work Sans", sans-serif;
  line-height: 40px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 991.98px) {
  body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_heading .gform_title {
    font-size: 28px;
    line-height: 30px;
  }
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_heading .gform_description {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  text-align: center;
  margin: auto;
}
@media (min-width: 992px) {
  body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_heading .gform_description {
    max-width: 80%;
  }
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_body ul li {
  margin-top: 0;
  margin-bottom: 0;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_body ul li input[type=text], body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_body ul li textarea {
  display: block;
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  line-height: 1.5;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid #C9CBD3;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-family: "Work Sans Regular", sans-serif;
  color: #909295;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_body ul li .ginput_container {
  margin-top: 12px;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_body ul li .gfield_validation_message {
  color: #F2463F;
  font-family: "Work Sans Regular", sans-serif;
  font-size: 13px;
  padding-top: 0;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_body ul li.gfield.gfield_error {
  border: 0;
  background-color: unset;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_body ul .policy p {
  font-family: "Work Sans Regular", sans-serif;
  font-size: 13px;
  color: #0E262D;
  line-height: 1.2;
  margin-top: 10px;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_body ul .policy p a {
  color: #3E41F3;
  text-decoration: none;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_footer {
  text-align: center;
  position: relative;
  max-width: fit-content;
  margin: auto;
  padding: 0;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_footer .gform_button {
  background-color: #3E41F3;
  font-family: "Work Sans Regular", sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  padding: 14px 40px 14px 20px !important;
  margin: 0;
  border: 1px solid #3E41F3;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_footer .gform_button:hover {
  background-color: #FFFFFF;
  color: #3E41F3;
  border: 1px solid #3E41F3;
  transition: 0.3s;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_footer .gform_button:not(:hover) {
  transition: 0s;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_footer .gform_ajax_spinner {
  display: none;
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_footer::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: url("../img/arrow-right-white.svg") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 642px) {
  body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_footer::after {
    top: 23px;
  }
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_footer:hover::after {
  background-image: url("../img/arrow-right-blue.svg");
}
body .contact-demande-de-devis-content .block-contact .container .contact-form .page-list .gform_confirmation_message {
  font-family: "Work Sans Regular", sans-serif;
  font-size: 24px;
  color: #3E41F3;
  text-align: center;
}

.page-template-contact-demande-de-devis .topmenu.container .menu-socialea, .page-template-contact-demande-de-devis .topmenu.container .tools-button {
  display: none;
}
.page-template-contact-demande-de-devis .topmenu.container .logo-container {
  margin: 0 auto;
}
.page-template-contact-demande-de-devis footer .ask-for-quote {
  display: none;
}

.contact-demande-de-devis-content .gform-body .ginput_container ul li input {
  margin-top: 0 !important;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #C9CBD3;
}
.contact-demande-de-devis-content .gform-body .ginput_container ul li label {
  font-family: "Work Sans Regular", sans-serif;
  color: #0E262D;
}
.contact-demande-de-devis-content .gform-body .ginput_container_select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  padding: 15px 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #909295;
  background-size: 16px 12px;
  border: 1px solid #C9CBD3;
  border-radius: 0.25rem;
  font-family: "Work Sans Regular", sans-serif;
  margin-left: 0;
  background-color: #FFFFFF;
}
.contact-demande-de-devis-content .gform-body .ginput_container_select select option {
  color: #909295;
}

body .contact-demande-generale-content {
  margin-top: 89px;
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  body .contact-demande-generale-content {
    margin-top: 81px;
  }
}
body .contact-demande-generale-content .container {
  padding: 40px 0;
  max-width: 850px;
}
body .contact-demande-generale-content .container h2 {
  color: #0E262D;
  font-size: 40px;
  font-family: "Work Sans", sans-serif;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  body .contact-demande-generale-content .container h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
body .contact-demande-generale-content .container h2::after {
  display: none;
}
body .contact-demande-generale-content .block-contact {
  background-color: #222484;
}
body .contact-demande-generale-content .block-contact .wp-block-column {
  z-index: 1;
}
body .contact-demande-generale-content .block-contact::before {
  left: 0;
  top: 0;
  width: 500px;
  height: 100%;
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-size: 105% 102%;
  background-image: url(../img/bg-contact.png);
  z-index: 0;
}
@media (max-width: 991.98px) {
  body .contact-demande-generale-content .block-contact .container {
    padding: 50px 15px;
  }
}
body .contact-demande-generale-content .block-contact .container .contact-form {
  background-color: white;
  border-radius: 20px;
  padding: 20px 50px;
}
@media (max-width: 991.98px) {
  body .contact-demande-generale-content .block-contact .container .contact-form {
    padding: 20px 15px;
  }
}
body .contact-demande-generale-content .block-contact .container .contact-form .top-form-text {
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  color: #3E41F3;
  margin-bottom: 0;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_validation_errors {
  border: 0;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_validation_errors .gform_submission_error {
  font-size: 15px;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_heading .gform_title {
  color: #0E262D;
  font-size: 40px;
  font-family: "Work Sans", sans-serif;
  line-height: 40px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 991.98px) {
  body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_heading .gform_title {
    font-size: 28px;
    line-height: 30px;
  }
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_heading .gform_description {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  text-align: center;
  margin: auto;
}
@media (min-width: 992px) {
  body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_heading .gform_description {
    max-width: 80%;
  }
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_body ul li {
  margin-top: 0;
  margin-bottom: 0;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_body ul li input[type=text], body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_body ul li textarea {
  display: block;
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  line-height: 1.5;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid #C9CBD3;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-family: "Work Sans Regular", sans-serif;
  color: #909295;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_body ul li .gchoice input[type=radio] {
  width: 1em;
  height: 1em;
  margin-top: 0;
  vertical-align: middle;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #C9CBD3;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_body ul li .gchoice label {
  margin: 0;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_body ul li label {
  font-family: "Work Sans Regular", sans-serif;
  color: #0E262D;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_body ul li select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  padding: 15px 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #909295;
  background-size: 16px 12px;
  border: 1px solid #C9CBD3;
  border-radius: 0.25rem;
  font-family: "Work Sans Regular", sans-serif;
  margin-left: 0;
  background-color: #FFFFFF;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_body ul li select option {
  color: #909295;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_body ul li .ginput_container {
  margin-top: 12px;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_body ul li .gfield_validation_message {
  color: #F2463F;
  font-family: "Work Sans Regular", sans-serif;
  font-size: 13px;
  padding-top: 0;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_body ul li.gfield.gfield_error {
  border: 0;
  background-color: unset;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_body ul .policy p {
  font-family: "Work Sans Regular", sans-serif;
  font-size: 13px;
  color: #0E262D;
  line-height: 1.2;
  margin-top: 10px;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_body ul .policy p a {
  color: #3E41F3;
  text-decoration: none;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_footer {
  text-align: center;
  position: relative;
  max-width: fit-content;
  margin: 20px auto;
  padding: 0;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_footer .gform_button {
  background-color: #3E41F3;
  font-family: "Work Sans Regular", sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  padding: 14px 40px 14px 20px !important;
  margin: 0;
  border: 1px solid #3E41F3;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_footer .gform_button:hover {
  background-color: #FFFFFF;
  color: #3E41F3;
  border: 1px solid #3E41F3;
  transition: 0.3s;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_footer .gform_button:not(:hover) {
  transition: 0s;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_footer .gform_ajax_spinner {
  display: none;
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_footer::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: url("../img/arrow-right-white.svg") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 642px) {
  body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_footer::after {
    top: 23px;
  }
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_footer:hover::after {
  background-image: url("../img/arrow-right-blue.svg");
}
body .contact-demande-generale-content .block-contact .container .contact-form .page-list .gform_confirmation_message {
  font-family: "Work Sans Regular", sans-serif;
  font-size: 24px;
  color: #3E41F3;
  text-align: center;
}

.page-template-contact-demande-generale .topmenu.container .menu-socialea, .page-template-contact-demande-generale .topmenu.container .tools-button {
  display: none;
}
.page-template-contact-demande-generale .topmenu.container .logo-container {
  margin: 0 auto;
}
.page-template-contact-demande-generale footer .ask-for-quote {
  display: none;
}

body .contact-recrutement-content {
  margin-top: 89px;
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  body .contact-recrutement-content {
    margin-top: 81px;
  }
}
body .contact-recrutement-content .container {
  padding: 40px 0;
  max-width: 850px;
}
body .contact-recrutement-content .container h2 {
  color: #0E262D;
  font-size: 40px;
  font-family: "Work Sans", sans-serif;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  body .contact-recrutement-content .container h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
body .contact-recrutement-content .container h2::after {
  display: none;
}
body .contact-recrutement-content .block-contact {
  background-color: #222484;
}
body .contact-recrutement-content .block-contact .wp-block-column {
  z-index: 1;
}
body .contact-recrutement-content .block-contact::before {
  left: 0;
  top: 0;
  width: 500px;
  height: 100%;
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-size: 105% 102%;
  background-image: url(../img/bg-contact.png);
  z-index: 0;
}
@media (max-width: 991.98px) {
  body .contact-recrutement-content .block-contact .container {
    padding: 50px 15px;
  }
}
body .contact-recrutement-content .block-contact .container .contact-form {
  background-color: white;
  border-radius: 20px;
  padding: 20px 50px;
}
@media (max-width: 991.98px) {
  body .contact-recrutement-content .block-contact .container .contact-form {
    padding: 20px 15px;
  }
}
body .contact-recrutement-content .block-contact .container .contact-form .top-form-text {
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  color: #3E41F3;
  margin-bottom: 0;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_validation_errors {
  border: 0;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_validation_errors .gform_submission_error {
  font-size: 15px;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_heading .gform_title {
  color: #0E262D;
  font-size: 40px;
  font-family: "Work Sans", sans-serif;
  line-height: 40px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 991.98px) {
  body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_heading .gform_title {
    font-size: 28px;
    line-height: 30px;
  }
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_heading .gform_description {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Regular", sans-serif;
  text-align: center;
  margin: auto;
}
@media (min-width: 992px) {
  body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_heading .gform_description {
    max-width: 80%;
  }
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li {
  margin-top: 0;
  margin-bottom: 0;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li input[type=text], body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li textarea {
  display: block;
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  line-height: 1.5;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid #C9CBD3;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-family: "Work Sans Regular", sans-serif;
  color: #909295;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li .gchoice input[type=radio] {
  width: 1em;
  height: 1em;
  margin-top: 0;
  vertical-align: middle;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #C9CBD3;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li .gchoice label {
  margin: 0;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li label {
  font-family: "Work Sans Regular", sans-serif;
  color: #0E262D;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  padding: 15px 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #909295;
  background-size: 16px 12px;
  border: 1px solid #C9CBD3;
  border-radius: 0.25rem;
  font-family: "Work Sans Regular", sans-serif;
  margin-left: 0;
  background-color: #FFFFFF;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li select option {
  color: #909295;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li .ginput_container_fileupload .gform_drop_area {
  margin-bottom: 0;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li .ginput_container_fileupload .gform_drop_area .gform_drop_instructions {
  font-family: "Work Sans Regular", sans-serif;
  color: #909295;
  font-size: 17px;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li .ginput_container_fileupload .gform_drop_area .gform_button_select_files {
  font-family: "Work Sans Regular", sans-serif;
  color: #909295;
  border: 1px solid #909295;
  border-radius: 20px;
  font-size: 13px;
  padding: 0 15px;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li .ginput_container_fileupload .gform_fileupload_rules {
  font-family: "Work Sans Regular", sans-serif;
  color: #909295;
  padding: 0;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li .ginput_container {
  margin-top: 12px;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li .gfield_validation_message {
  color: #F2463F;
  font-family: "Work Sans Regular", sans-serif;
  font-size: 13px;
  padding-top: 0;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul li.gfield.gfield_error {
  border: 0;
  background-color: unset;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul .policy p {
  font-family: "Work Sans Regular", sans-serif;
  font-size: 13px;
  color: #0E262D;
  line-height: 1.2;
  margin-top: 10px;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_body ul .policy p a {
  color: #3E41F3;
  text-decoration: none;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_footer {
  text-align: center;
  position: relative;
  max-width: fit-content;
  margin: auto;
  padding: 0;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_footer .gform_button {
  background-color: #3E41F3;
  font-family: "Work Sans Regular", sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  padding: 14px 40px 14px 20px !important;
  margin: 0;
  border: 1px solid #3E41F3;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_footer .gform_button:hover {
  background-color: #FFFFFF;
  color: #3E41F3;
  border: 1px solid #3E41F3;
  transition: 0.3s;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_footer .gform_button:not(:hover) {
  transition: 0s;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_footer .gform_ajax_spinner {
  display: none;
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_footer::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: url("../img/arrow-right-white.svg") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 642px) {
  body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_footer::after {
    top: 23px;
  }
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_footer:hover::after {
  background-image: url("../img/arrow-right-blue.svg");
}
body .contact-recrutement-content .block-contact .container .contact-form .page-list .gform_confirmation_message {
  font-family: "Work Sans Regular", sans-serif;
  font-size: 24px;
  color: #3E41F3;
  text-align: center;
}

.page-template-contact-recrutement .topmenu.container .menu-socialea, .page-template-contact-recrutement .topmenu.container .tools-button {
  display: none;
}
.page-template-contact-recrutement .topmenu.container .logo-container {
  margin: 0 auto;
}
.page-template-contact-recrutement footer .ask-for-quote {
  display: none;
}

.socialea-team {
  margin-top: 89px;
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  .socialea-team {
    margin-top: 81px;
  }
}
.socialea-team .container {
  padding: 35px 0;
}
@media (max-width: 991.98px) {
  .socialea-team .container {
    padding: 0 15px;
  }
}
@media (max-width: 1379.98px) {
  .socialea-team .container {
    padding-bottom: 50px;
    padding-top: 35px;
  }
}
.socialea-team .container h1 {
  font-size: 46px;
  font-family: "Work Sans", sans-serif;
  color: #0E262D;
  line-height: 50px;
}
@media (max-width: 991.98px) {
  .socialea-team .container h1 {
    font-size: 32px;
    margin-top: 25px;
    line-height: 35px;
  }
}
.socialea-team .container h1::after {
  display: none;
}
.socialea-team .container h2 {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans", sans-serif;
  line-height: 40px;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .socialea-team .container h2 {
    font-size: 28px;
    margin-top: 50px;
    line-height: 32px;
  }
}
.socialea-team .container h2::after {
  display: none;
}
@media (max-width: 991.98px) {
  .socialea-team .container .team-block {
    display: block;
  }
}
.socialea-team .container .team-block .team-member p.team-member-name {
  color: #0E262D;
  font-family: "Work Sans SemiBold", sans-serif;
}
.socialea-team .container .team-block .team-member p.team-member-function {
  color: #0E262D;
  font-family: "Work Sans Regular", sans-serif;
}

body .page-default {
  margin-top: 89px;
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  body .page-default {
    margin-top: 81px;
  }
}
body .page-default .container {
  padding: 35px 0;
}
@media (max-width: 991.98px) {
  body .page-default .container {
    padding: 0 15px;
  }
}
body .page-default .container h1 {
  font-size: 46px;
  font-family: "Work Sans SemiBold", sans-serif;
  color: #0E262D;
  line-height: 50px;
}
@media (max-width: 991.98px) {
  body .page-default .container h1 {
    font-size: 32px;
    margin-top: 25px;
    line-height: 35px;
  }
}
body .page-default .container h1::after {
  display: none;
}
body .page-default .container h2 {
  color: #0E262D;
  font-size: 36px;
  font-family: "Work Sans SemiBold", sans-serif;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  body .page-default .container h2 {
    font-size: 28px;
    padding-top: 25px;
    line-height: 32px;
  }
}
body .page-default .container h2::after {
  display: none;
}
body .page-default .container h3 {
  font-family: "Work Sans SemiBold", sans-serif;
  color: #0E262D;
}
body .page-default .container strong {
  font-family: "Work Sans", sans-serif;
}
body .page-default .container p {
  color: #0E262D;
  font-size: 17px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 22px;
  list-style-type: none;
  padding: 5px 0;
}
body .page-default .container figure:after {
  display: none;
}
body .page-default .container a {
  font-family: "Work Sans Medium", sans-serif;
}
body .page-default .container .darkblue-bloc .shadow-top-left:before, body .page-default .container .darkblue-bloc .shadow-bottom-right:before {
  display: none !important;
}
body .page-default .container ul {
  padding-left: 0;
}
body .page-default .container ul li {
  color: #0E262D;
  font-size: 15px;
  font-family: "Work Sans Medium", sans-serif;
  line-height: 22px;
  padding: 5px 0;
  list-style: outside;
  margin-left: 15px;
}
body .page-default .container ul li::marker {
  color: #3E41F3;
  font-size: 19px;
}

.error404 .single-content {
  text-align: center;
}
.error404 .single-content h1 {
  color: #0E262D;
  font-family: "Work Sans Medium", sans-serif;
  font-size: 35px;
  text-align: center;
}
.error404 .single-content h1::after {
  display: none;
}
.error404 .single-content p {
  text-align: center;
  font-size: 15px;
  font-family: "Work Sans Regular", sans-serif;
}

.didomi-exterior-border .didomi-consent-popup-actions .didomi-components-button--color {
  background-color: #3E41F3 !important;
}
.didomi-exterior-border .didomi-consent-popup-actions .didomi-components-button--color:hover {
  background-color: #FFFFFF !important;
  color: #3E41F3 !important;
  border: 1px solid #3E41F3 !important;
  transition: 0.3s !important;
  opacity: 1 !important;
}

a {
  text-decoration: none;
}

/****************************************************************************/
/* GENERAL
/****************************************************************************/
* {
  box-sizing: border-box;
}

:root {
  font-size: 16px;
}

body, html {
  margin: 0;
  padding: 0;
  color: #4b4b4b;
  font-family: "RobotoLight", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  background-color: #FFFFFF;
  overflow-x: hidden;
  position: relative;
}

body {
  overflow-x: clip;
}

.wrapper {
  padding-left: 30px;
  padding-right: 30px;
}

img {
  max-width: 100%;
  height: auto;
}

/****************************************************************************/
/* TITRES, LIENS et TEXTES
/****************************************************************************/
/* Table de correspondance px <=> rem
*	12px <=> 0.75rem
*	14px <=> 0.875rem
*	16px <=> 1rem 	// Infos footer
*	18px <=> 1.1rem // Textes résumé article
*	20px <=> 1.3rem
*	22px <=> 1.35rem // Textes contenu
*	24px <=> 1.5rem
*	25px <=> 1.6rem
*	28px <=> 1.8rem
*	32px <=> 2rem
*	40px <=> 3rem
*   60px <=> 3.75rem // Titre h1
*/
p {
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 767.98px) {
  p {
    font-size: 16px;
    line-height: 26px;
  }
}

a {
  color: #3E41F3;
}
a[href="#"] {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}
a:not([href="#"]):hover {
  cursor: pointer;
  text-decoration: none;
}

h1, h2.like-h1, h3.like-h1 {
  position: relative;
  margin: 0.67em 0;
  font-size: 58px;
  line-height: 70px;
  font-family: "AnybodyLight", Helvetica, Arial, sans-serif;
  color: #1B357D;
}
h1 strong, h2.like-h1 strong, h3.like-h1 strong {
  font-family: "AnybodyBold", Helvetica, Arial, sans-serif;
}
h1::after, h2.like-h1::after, h3.like-h1::after {
  content: "";
  display: block;
  width: 40px;
  margin-top: 15px;
  margin-left: -20px;
  background-color: #FF8762;
  height: 4px;
  border-radius: 50px;
}
h1.has-text-align-center::after, h2.like-h1.has-text-align-center::after, h3.like-h1.has-text-align-center::after {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  h1, h2.like-h1, h3.like-h1 {
    font-size: 34px;
    line-height: 44px;
  }
}

h2 {
  font-size: 48px;
  line-height: 60px;
  font-family: "AnybodyLight", Helvetica, Arial, sans-serif;
  color: #1B357D;
  position: relative;
}
h2 strong {
  font-family: "AnybodyBold", Helvetica, Arial, sans-serif;
}
h2::after {
  content: "";
  display: block;
  width: 40px;
  margin-top: 15px;
  margin-left: -20px;
  background-color: #FF8762;
  height: 4px;
  border-radius: 50px;
}
h2.has-text-align-center:after {
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 28px;
    line-height: 38px;
  }
}

h3 {
  font-family: "Work Sans Medium", sans-serif;
  color: #0E262D;
  font-size: 22px;
  line-height: 40px;
}
@media (max-width: 767.98px) {
  h3 {
    font-size: 18px;
    line-height: 28px;
  }
}

/****************************************************************************/
/* LISTES
/****************************************************************************/
ul.list-home {
  padding-left: 0;
}
ul.list-home li {
  list-style: none;
  font-size: 18px;
  line-height: 40px;
  color: #27364B;
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
}
ul.list-home li::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 16px;
  margin-right: 20px;
  background: url("../img/icone_check.svg") no-repeat left center;
  background-size: cover;
}
@media (max-width: 991.98px) {
  ul.list-home li {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
  }
}

ol {
  display: flex;
  margin-left: 0;
  padding-left: 0;
  flex-wrap: wrap;
  list-style: none;
}
ol li {
  width: 100%;
  margin: 0.25rem;
  counter-increment: mycounter;
}
@media (min-width: 768px) {
  ol li {
    max-width: calc(50% - 0.5rem);
  }
}
@media (min-width: 992px) {
  ol li {
    max-width: calc(20% - 0.5rem);
  }
}
ol li::before {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  margin: 1rem auto;
  content: counter(mycounter);
  color: #ffffff;
  background: #1B357D;
  font-family: "RobotoLight", Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 2.2rem;
  text-align: center;
  border-radius: 50%;
}
@media (min-width: 992px) {
  ol li::before {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.9rem;
    line-height: 3.2rem;
  }
}

/****************************************************************************/
/* BOUTONS
/****************************************************************************/
a.button, span.button, div.button {
  padding: 12px 35px;
  cursor: pointer;
}

.lightButton {
  color: #27364B;
  font-size: 18px;
  line-height: 24px;
  background-color: #ffffff;
  border: 1px solid #27364B;
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
  border-radius: 200px;
  padding: 10px 20px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.lightButton:hover {
  border: 1px solid #1b357D35;
}
.lightButton:hover a {
  text-decoration: none;
  color: #1b357D35;
}

span.button.is-style-secondary, .wp-block-button.is-style-outline, div.button.is-style-secondary, .editor-styles-wrapper .wp-block-button__link,
.wp-block-button .wp-block-button__link, .wp-block-button.is-style-fill .wp-block-button__link, input[type=button], input[type=submit], input[type=reset],
.wp-block-button.is-style-secondary .wp-block-button__link {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  font-family: "Work Sans Medium", sans-serif;
  background-color: #3E41F3;
  border-radius: 200px;
  padding: 15px 20px !important;
  line-height: 1.2;
  border: 1px solid #3E41F3;
}
span.button.is-style-secondary::after, .wp-block-button.is-style-outline::after, div.button.is-style-secondary::after, .editor-styles-wrapper .wp-block-button__link::after,
.wp-block-button .wp-block-button__link::after, .wp-block-button.is-style-fill .wp-block-button__link::after, input[type=button]::after, input[type=submit]::after, input[type=reset]::after,
.wp-block-button.is-style-secondary .wp-block-button__link::after {
  background-image: url("../img/arrow-right-white.svg");
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
}
span.button.is-style-secondary:hover, .wp-block-button.is-style-outline:hover, div.button.is-style-secondary:hover, .editor-styles-wrapper .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:hover, .wp-block-button.is-style-fill .wp-block-button__link:hover, input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover,
.wp-block-button.is-style-secondary .wp-block-button__link:hover {
  background-color: #FFFFFF;
  color: #3E41F3;
  border: 1px solid #3E41F3;
  transition: 0.3s;
}
span.button.is-style-secondary:hover::after, .wp-block-button.is-style-outline:hover::after, div.button.is-style-secondary:hover::after, .editor-styles-wrapper .wp-block-button__link:hover::after,
.wp-block-button .wp-block-button__link:hover::after, .wp-block-button.is-style-fill .wp-block-button__link:hover::after, input[type=button]:hover::after, input[type=submit]:hover::after, input[type=reset]:hover::after,
.wp-block-button.is-style-secondary .wp-block-button__link:hover::after {
  background-image: url("../img/arrow-right-blue.svg");
}
span.button.is-style-secondary:not(:hover), .wp-block-button.is-style-outline:not(:hover), div.button.is-style-secondary:not(:hover), .editor-styles-wrapper .wp-block-button__link:not(:hover),
.wp-block-button .wp-block-button__link:not(:hover), .wp-block-button.is-style-fill .wp-block-button__link:not(:hover), input[type=button]:not(:hover), input[type=submit]:not(:hover), input[type=reset]:not(:hover),
.wp-block-button.is-style-secondary .wp-block-button__link:not(:hover) {
  transition: 0s;
}

a.button.is-style-fill, a.button.is-style-secondary, a.button.is-style-secondary, a.wp-block-button__link, a.button.is-style-outline {
  background-color: #1B357D;
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
  border: none;
  position: relative;
  border-radius: 200px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  width: max-content;
  padding: 18px 30px;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
}
a.button.is-style-fill:hover, a.button.is-style-secondary:hover, a.button.is-style-secondary:hover, a.wp-block-button__link:hover, a.button.is-style-outline:hover {
  background-color: #1b357D35;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  a.button.is-style-fill, a.button.is-style-secondary, a.button.is-style-secondary, a.wp-block-button__link, a.button.is-style-outline {
    display: block;
    width: 100% !important;
    max-width: 100%;
    padding: 12px 30px !important;
  }
}

.wp-block-button.is-style-outline, .wp-block-button__link {
  color: #27364B;
  font-size: 18px;
  line-height: 24px;
  background-color: #ffffff;
  border: 1px solid #27364B;
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
  border-radius: 200px;
  padding: 10px 20px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.wp-block-button.is-style-outline:hover, .wp-block-button__link:hover {
  border: 1px solid #1b357D35;
}
.wp-block-button.is-style-outline:hover a, .wp-block-button__link:hover a {
  text-decoration: none;
  color: #1b357D35;
}

.side-btn {
  position: fixed;
  right: 0;
  top: 30vh;
  z-index: 4;
}
.side-btn > a {
  display: flex;
  width: 50px;
  height: 45px;
  margin: 1px 0;
  background-color: #1B357D;
  border-radius: 20px 0 0 20px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.side-btn > a .phone-slider {
  position: absolute;
  display: block;
  width: 310px;
  margin-left: 50px;
  padding: 3px 5px;
  background: #ffffff;
  font-size: 0.9rem;
  line-height: 1.2rem;
  color: #2a98d9;
  border: 2px solid #2a98d9;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
.side-btn > a.side-btn-phone:hover .phone-slider {
  margin-left: -260px;
}
.side-btn > a.side-btn-phone span.phone-icon {
  width: 20px;
  height: 20px;
  margin: auto;
  background: url("../img/phone_icon.svg") no-repeat 50% 50%;
}
.side-btn > a.side-btn-mail:hover {
  background-color: #1B357D;
}
.side-btn > a.side-btn-mail span.mail-icon {
  width: 21px;
  height: 16px;
  margin: auto;
  background: url("../img/mail_icon.svg") no-repeat 50% 50%;
}

input[type=button], input[type=submit], input[type=reset] {
  padding: 12px 24px;
  cursor: pointer;
}

.gform_button, .agency-phone span.button {
  color: white;
}

/****************************************************************************/
/* HEADER + MENU
/****************************************************************************/
/*** VISIBILITE DES ELEMENTS DE MENU EN MOBILE & DESKTOP ***/
#menu-mobile {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (min-width: 992px) {
  .menu-bloc {
    margin: auto;
  }

  #menu-desktop {
    display: block;
  }

  #menu-mobile {
    display: none;
  }

  .tools-button.desktop {
    display: flex;
  }
}
/*** MENU DESKTOP ***/
nav.nav-principale ul#menu-menu-principal li.agences {
  margin-right: 10px;
  padding: 0;
  color: #27364B;
  font-size: 18px;
  line-height: 24px;
  background-color: #ffffff;
  border: 1px solid #27364B;
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
  border-radius: 200px;
  padding: 10px 20px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
nav.nav-principale ul#menu-menu-principal li.agences:hover {
  border: 1px solid #1b357D35;
}
nav.nav-principale ul#menu-menu-principal li.agences:hover a {
  text-decoration: none;
  color: #1b357D35;
}
nav.nav-principale ul#menu-menu-principal li.agences.current-menu-item {
  border: 1px solid #FF8762;
}
nav.nav-principale ul.nav {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* Tous les éléments et liens du menu */
  /* Uniquement le menu des items de premier niveau */
  /* Item menu avec sous-menu */
}
nav.nav-principale ul.nav li {
  list-style: none;
}
nav.nav-principale ul.nav li a {
  color: #0E262D;
  font-family: "Work Sans Medium", sans-serif;
  text-decoration: none;
  font-size: 15px;
  padding: 34px 20px;
}
nav.nav-principale ul.nav > li {
  width: max-content;
}
nav.nav-principale ul.nav > li a:hover {
  cursor: pointer;
}
nav.nav-principale ul.nav > li:last-child {
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
}
nav.nav-principale ul.nav > li.gestion-paie {
  position: relative;
}
nav.nav-principale ul.nav > li.gestion-paie:hover > ul.sub-menu {
  display: flex;
  top: 44px;
}
nav.nav-principale ul.nav > li.gestion-paie:hover > ul.sub-menu li.current_page_item > a {
  background-color: #D4EAF7;
  border-radius: 5px;
}
nav.nav-principale ul.nav > li.gestion-paie:hover > ul.sub-menu > li.menu-item-has-children a:after {
  display: none;
}
nav.nav-principale ul.nav > li.gestion-paie:hover > ul.sub-menu ul.sub-menu {
  display: block;
  position: initial;
  margin: 0 !important;
  padding: 0 !important;
}
nav.nav-principale ul.nav > li.gestion-paie:hover > ul.sub-menu ul.sub-menu li.current-menu-item a {
  background-color: #D4EAF7;
  border-radius: 5px;
}
nav.nav-principale ul.nav > li.menu-item-has-children:hover > ul {
  position: absolute;
  width: 50%;
  left: 50%;
  padding: 0 50px 50px 50px;
  top: 84px;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  background-color: #FFFFFF;
}
nav.nav-principale ul.nav > li.menu-item-has-children:hover > .gestion-menu, nav.nav-principale ul.nav > li.menu-item-has-children:hover > .clients-menu {
  position: absolute;
  width: 100%;
  padding: 0 50px 70px 50px;
  top: 84px;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  background-color: #FFFFFF;
  box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1);
}
nav.nav-principale ul.nav > li.menu-item-has-children:hover > .gestion-menu .item, nav.nav-principale ul.nav > li.menu-item-has-children:hover > .clients-menu .item {
  padding-left: 27px;
}
nav.nav-principale ul.nav > li.menu-item-has-children:hover > .gestion-menu .item .content, nav.nav-principale ul.nav > li.menu-item-has-children:hover > .clients-menu .item .content {
  background-color: #F5F6FC;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
nav.nav-principale ul.nav > li.menu-item-has-children:hover > .gestion-menu .item .content .bg-picture, nav.nav-principale ul.nav > li.menu-item-has-children:hover > .clients-menu .item .content .bg-picture {
  width: 274px;
  height: 153px;
}
nav.nav-principale ul.nav > li.menu-item-has-children:hover > .gestion-menu .item .content .text-detail, nav.nav-principale ul.nav > li.menu-item-has-children:hover > .clients-menu .item .content .text-detail {
  padding: 25px;
}
nav.nav-principale ul.nav > li.menu-item-has-children:hover > .gestion-menu .item .content .text-detail p, nav.nav-principale ul.nav > li.menu-item-has-children:hover > .clients-menu .item .content .text-detail p {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  color: #0E262D;
  margin-bottom: 10px;
}
nav.nav-principale ul.nav > li.menu-item-has-children:hover > .gestion-menu .item .content .text-detail .btn-see-more, nav.nav-principale ul.nav > li.menu-item-has-children:hover > .clients-menu .item .content .text-detail .btn-see-more {
  height: 100%;
  width: max-content;
}
nav.nav-principale ul.nav > li.menu-item-has-children:hover > .gestion-menu .item .content .text-detail .btn-see-more #cta_header, nav.nav-principale ul.nav > li.menu-item-has-children:hover > .clients-menu .item .content .text-detail .btn-see-more #cta_header {
  color: #3E41F3;
  font-size: 15px;
  text-decoration: none;
  font-family: "Work Sans Medium", sans-serif;
  border: 1px solid;
  background-color: transparent;
  border-radius: 200px;
  padding: 15px 20px;
  line-height: 1;
}
nav.nav-principale ul.nav > li .sub-menu:last-child {
  color: #0E262D;
}
nav.nav-principale ul.nav > li .sub-menu:last-child p {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  flex: 100%;
  margin-bottom: 0;
}
nav.nav-principale ul.nav > li.rh:hover > ul {
  display: flex;
}
nav.nav-principale ul.nav > li.rh > ul.sub-menu > li.menu-item-has-children a:after {
  display: none;
}
nav.nav-principale ul.nav > li.rh > ul.sub-menu li.current_page_item > a {
  background-color: #D4EAF7;
  border-radius: 5px;
}
nav.nav-principale ul.nav > li.rh > ul.sub-menu ul.sub-menu {
  display: block;
  position: initial;
  margin: 0 !important;
  padding: 0 !important;
}
nav.nav-principale ul.nav > li.rh > ul.sub-menu ul.sub-menu li.current-menu-item a {
  background-color: #D4EAF7;
  border-radius: 5px;
}
nav.nav-principale ul.nav > li.societe > ul.sub-menu li.current_page_item > a {
  background-color: #D4EAF7;
  border-radius: 5px;
}
nav.nav-principale ul.nav li.menu-item-has-children {
  /* Pictogrammes des liens de sous-menu */
}
nav.nav-principale ul.nav li.menu-item-has-children ul {
  display: none;
  position: absolute;
  left: 0;
  margin: 0 -1022em;
  padding: 0.5em 1000em;
  z-index: -1;
}
nav.nav-principale ul.nav li.menu-item-has-children ul li {
  position: relative;
  padding: 0;
  font-size: 0.9rem;
}
nav.nav-principale ul.nav li.menu-item-has-children ul li.menu-item {
  flex: 1 1 50%;
}
nav.nav-principale ul.nav li.menu-item-has-children ul li a {
  padding: 10px;
  display: block;
}
nav.nav-principale ul.nav li.menu-item-has-children ul li a:hover {
  background-color: white;
  border-radius: 5px;
  opacity: 1;
}
nav.nav-principale ul.nav li.menu-item-has-children > a::after {
  width: 6px;
  height: 10px;
  display: inline-block;
  content: "";
  -webkit-mask: url("../img/right-chevron.svg");
  mask: url("../img/right-chevron.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  margin-left: 10px;
  background-color: #27364B;
  transform: rotate(90deg);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

/*** TRIGGERS MOBILE ***/
.menu-trigger {
  margin: 0;
  position: relative;
  cursor: pointer;
  z-index: 999;
  color: #0E262D;
  /* Libellés de menu */
  /* Tous les <span> qui ne sont pas des libellés */
  /* Icones hamburger et croix */
  /* Trigger menu fermé */
  /* Trigger menu ouvert */
}
.menu-trigger .label {
  position: absolute;
  margin-right: 24px;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}
.menu-trigger span:not(.label) {
  display: block;
  background: #0E262D;
}
.menu-trigger .hamburger {
  position: absolute;
  float: right;
  margin-left: 0.6rem;
  transition-delay: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.menu-trigger .hamburger span {
  width: 15px;
  height: 2px;
  position: relative;
  top: 0;
  left: 0;
  border-radius: 8px;
}
.menu-trigger .hamburger span:nth-child(1) {
  margin-top: 0;
  transition-delay: 0.5s;
}
.menu-trigger .hamburger span:nth-child(2) {
  margin-top: 3px;
  transition-delay: 0.625s;
}
.menu-trigger .hamburger span:nth-child(3) {
  margin-top: 3px;
  transition-delay: 0.75s;
}
.menu-trigger .cross {
  width: 15px;
  transform: rotate(45deg);
  transition: 0.5s;
}
.menu-trigger .cross span {
  border-radius: 8px;
  position: absolute;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.menu-trigger .cross span:nth-child(1) {
  height: 0;
  width: 2px;
  top: 0;
  left: 7px;
  transition-delay: 0.5s;
}
.menu-trigger .cross span:nth-child(2) {
  width: 0;
  height: 2px;
  left: 0;
  top: 7px;
  transition-delay: 0.75s;
}
.menu-trigger:not(.active) .label-open {
  opacity: 0;
}
.menu-trigger:not(.active) .cross {
  opacity: 0;
}
.menu-trigger:not(.active) .label-close {
  opacity: 1;
}
.menu-trigger.active .label-close {
  opacity: 0;
}
.menu-trigger.active .hamburger {
  padding: 0;
  transition-delay: 0.2s;
}
.menu-trigger.active .hamburger span {
  transition-delay: 0.5s;
  width: 0;
  margin: 0;
}
.menu-trigger.active .hamburger span:nth-child(1) {
  transition-delay: 0s;
}
.menu-trigger.active .hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}
.menu-trigger.active .hamburger span:nth-child(3) {
  transition-delay: 0.25s;
}
.menu-trigger.active .cross span:nth-child(1) {
  height: 16px;
  transition-delay: 0.625s;
}
.menu-trigger.active .cross span:nth-child(2) {
  width: 16px;
  transition-delay: 0.375s;
}

/*** MENU MOBILE ***/
@media (min-width: 992px) {
  .menu-basic {
    display: none;
  }
}
.menu-basic li, .menu-basic a {
  color: white;
}
.menu-basic .logo-img {
  width: 150px;
  height: auto;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .menu-basic .logo-img {
    margin-bottom: 0;
  }
}
.menu-basic.open {
  transform: translateX(0);
}
.menu-basic nav {
  margin-bottom: 100px;
}
.menu-basic nav .phones {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
.menu-basic nav .phones span {
  display: inline-block;
  width: 50%;
  text-align: center;
}
.menu-basic nav .phones span:first-child {
  border-right: 2px solid #ffffff;
}
.menu-basic nav .phones span a {
  font-size: 1rem;
  color: #ffffff;
}
.menu-basic nav .phones span a::after {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  -webkit-mask: url("../img/phone_icon_blue.svg");
  mask: url("../img/phone_icon_blue.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  margin-left: 10px;
  background-color: #2a98d9;
}
.menu-basic nav div ul.open {
  padding-left: 0;
}
.menu-basic nav div ul.open > li {
  border-bottom: 1px solid white;
  display: block;
  box-sizing: border-box;
  padding: 12px 0;
  margin: 0 !important;
}
.menu-basic nav div ul.open li {
  list-style: none;
  margin-top: 10px;
  line-height: 2rem;
}
.menu-basic nav div ul.open li a {
  color: #0E262D;
  font-family: "Work Sans Medium";
  font-size: 20px;
  text-decoration: none;
}
.menu-basic nav div ul.open li .sub-menu a::before {
  content: "";
  display: inline-block;
  padding-left: 20px;
  padding-right: 0;
  background-image: unset;
  width: 0;
}
.menu-basic nav div ul.open li.menu-item-has-children > a::after {
  width: 9px;
  height: 15px;
  display: inline-block;
  vertical-align: text-top;
  content: "";
  -webkit-mask: url("../img/right-chevron.svg");
  mask: url("../img/right-chevron.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  margin-left: 15px;
  margin-top: 5px;
  background-color: #0E262D;
  transform: rotate(90deg);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.menu-basic nav div ul.open .menu-item-has-children > ul.sub-menu {
  margin: 0;
  padding: 0;
}
.menu-basic nav div ul.open .menu-item-has-children > ul.sub-menu > li.menu-item-has-children > a {
  background-color: #4D5D93;
  padding: 10px 10px;
  border-radius: 5px;
  width: 100%;
  display: block;
}
.menu-basic nav div ul.open .menu-item-has-children > ul.sub-menu > li.menu-item-has-children > a:after {
  display: none;
}
.menu-basic nav div ul.open .menu-item-has-children > ul.sub-menu > li.menu-item-has-children.like-h3 > a {
  background-color: transparent;
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
}
.menu-basic nav div ul.open .menu-item-has-children > ul.sub-menu > li.menu-item-has-children .sub-menu {
  margin: 0;
  padding: 0;
}
.menu-basic nav div ul.open .menu-item-has-children > ul.sub-menu > li.menu-item-has-children .sub-menu a {
  background-color: #4D5D93;
  padding: 10px 10px;
  border-radius: 5px;
  width: 100%;
  display: block;
}
.menu-basic nav div ul.open .menu-item-has-children.societe > ul.sub-menu li a {
  background-color: #4D5D93;
  padding: 10px 10px;
  border-radius: 5px;
  width: 100%;
  display: block;
}
.menu-basic nav div ul.open > ul.sub-menu {
  padding-left: 30px;
}
.menu-basic nav div > ul > li > a {
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
}
.menu-basic nav ul.nav {
  width: 100%;
  margin: 50px auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.menu-basic nav ul.nav > li {
  position: relative;
  overflow: hidden;
  width: 32%;
  margin: 50px 0;
}
.menu-basic nav ul.nav > li:nth-child(3n-1) {
  margin-left: 2%;
}
.menu-basic nav ul.nav > li > a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 7px 0 0;
  color: #a9cc46;
}
.menu-basic nav ul.nav > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2a98d9;
  transform: translate3d(-100%, 0, 0) translate3d(-1px, 0, 0);
  transition: transform 0.7s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.menu-basic nav ul.nav > li > a:hover::before {
  transform: translate3d(100%, 0, 0) translate3d(1px, 0, 0);
}
.menu-basic .tools-button {
  height: 45px;
  margin-bottom: 60px;
  padding-top: 30px;
}
.menu-basic .tools-button #cta_header {
  color: #ffffff;
  font-size: 17px;
  text-decoration: none;
  font-family: "Work Sans Medium", sans-serif;
  background-color: #3E41F3;
  border-radius: 200px;
  padding: 15px 20px;
  line-height: 1;
}
.menu-basic .tools-button #cta_header img {
  margin-top: 0;
}
.menu-basic .mega-menu-wrap #mega-menu-menu_principal {
  margin-top: 23px !important;
  position: fixed !important;
  left: 0 !important;
  width: 100% !important;
  border-top: 0.5px solid #707070 !important;
}
.menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item {
  font-family: "Work Sans Medium", sans-serif !important;
}
.menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-link {
  font-family: "Work Sans Medium", sans-serif !important;
  max-width: fit-content !important;
  padding: 0 !important;
}
.menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-link .mega-menu-description {
  display: none !important;
}
@media (max-width: 991.98px) {
  .menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-link {
    color: #0E262D !important;
  }
}
.menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-row.menu-item .mega-sub-menu .mega-menu-column .widget_text {
  display: none !important;
}
.menu-basic .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-row.menu-item .mega-sub-menu .mega-menu-column .widget_media_image img {
  display: none;
}

body > section {
  margin-top: 80px;
}
@media (min-width: 992px) {
  body > section {
    margin-top: 150px;
  }
}

header {
  position: fixed;
  width: 100%;
  z-index: 3;
  top: 0;
  background-color: white;
}
header .phones-bar {
  display: none;
}
@media (min-width: 992px) {
  header .phones-bar {
    display: block;
    background-color: #ffffff;
    padding: 20px 0 10px 0;
  }
  header .phones-bar .wrapper {
    width: 100%;
    text-align: right;
  }
  header .phones-bar .wrapper span.phone {
    display: inline-block;
    font-size: 12px;
    line-height: 16px;
    padding: 7px 10px;
    color: #27364B;
    font-size: 18px;
    line-height: 24px;
    background-color: #ffffff;
    border: 1px solid #27364B;
    font-family: "RobotoBold", Helvetica, Arial, sans-serif;
    border-radius: 200px;
    padding: 10px 20px;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
  }
  header .phones-bar .wrapper span.phone:hover {
    border: 1px solid #1b357D35;
  }
  header .phones-bar .wrapper span.phone:hover a {
    text-decoration: none;
    color: #1b357D35;
  }
  header .phones-bar .wrapper span.phone::before {
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    content: "";
    -webkit-mask: url("../img/phone_icon_blue.svg");
    mask: url("../img/phone_icon_blue.svg");
    -webkit-mask-size: cover;
    mask-size: cover;
    margin-left: 10px;
    background-color: #27364B;
  }
  header .phones-bar .wrapper span.phone:hover {
    color: #1b357D35;
  }
  header .phones-bar .wrapper span.phone:hover span {
    text-decoration: none;
  }
  header .phones-bar .wrapper span.phone:hover:before {
    background-color: #1b357D35;
  }
}
header .topmenu {
  padding: 20px 0;
}
@media (max-width: 991.98px) {
  header .topmenu {
    background-color: white;
    z-index: 2;
    padding: 23px 15px;
  }
}
header .topmenu .logo-container a img {
  height: auto;
  max-width: 100%;
  max-height: 38px;
  margin-top: 5px;
}
@media (max-width: 991.98px) {
  header .topmenu .logo-container a img {
    margin-top: 0;
  }
}
header .topmenu .menu-socialea {
  width: max-content;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  header .topmenu .menu-socialea {
    display: none;
  }
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item {
  font-family: "Work Sans Medium", sans-serif;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-link {
  font-family: "Work Sans Medium", sans-serif;
  max-width: fit-content !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-link .mega-menu-description {
  display: none !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-link[aria-haspopup=true] {
  margin-top: 7px !important;
  margin-bottom: 7px !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-link[aria-haspopup=true]:hover {
  background-color: #F5F6FC !important;
  border-radius: 25px !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-row.menu-item {
  padding-bottom: 25px !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-row.menu-item .mega-sub-menu .mega-menu-column {
  padding-right: 25px !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-row.menu-item .mega-sub-menu .mega-menu-column.custom-menu-item li:not(:first-child) {
  background-color: #F5F6FC !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-row.menu-item .mega-sub-menu .mega-menu-column.custom-menu-item li:last-child {
  border-bottom-left-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  padding: 0 20px 20px 20px !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-row.menu-item .mega-sub-menu .mega-menu-column.custom-menu-item li:last-child .mega-menu-link {
  height: 27px !important;
  color: #3E41F3 !important;
  font-size: 15px !important;
  border: 1px solid #3E41F3 !important;
  border-radius: 25px !important;
  padding: 5px 15px !important;
  line-height: 1 !important;
  max-width: fit-content !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-row.menu-item .mega-sub-menu .mega-menu-column.custom-menu-item li:last-child .mega-menu-link::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSI5LjQyOSIgdmlld0JveD0iMCAwIDExIDkuNDI5Ij4KICAgIDxwYXRoIGlkPSJQYXRoXzIzOCIgZGF0YS1uYW1lPSJQYXRoIDIzOCIgZD0iTTgyNC43Myw0ODUuMjNhLjc4NS43ODUsMCwwLDEsMS4xMTEsMGwzLjkyOSwzLjkyOWEuNzg1Ljc4NSwwLDAsMSwwLDEuMTExbC0zLjkyOSwzLjkyOWEuNzg2Ljc4NiwwLDAsMS0xLjExMS0xLjExMWwyLjU4Ny0yLjU4N2gtNy41MzJhLjc4Ni43ODYsMCwwLDEsMC0xLjU3MWg3LjUzMmwtMi41ODctMi41ODdhLjc4NS43ODUsMCwwLDEsMC0xLjExMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTgxOSAtNDg1KSIgZmlsbD0iIzNFNDFGMyIgZmlsbC1ydWxlPSJldmVub2RkIi8+Cjwvc3ZnPgo=") !important;
  display: inline-block !important;
  margin-left: 8px;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-row.menu-item .mega-sub-menu .mega-menu-column.custom-menu-item li:last-child .mega-menu-link:hover {
  color: #FFFFFF !important;
  background-color: #3E41F3 !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-row.menu-item .mega-sub-menu .mega-menu-column.custom-menu-item li:last-child .mega-menu-link:hover::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSI5LjQyOSIgdmlld0JveD0iMCAwIDExIDkuNDI5Ij4KICAgIDxwYXRoIGlkPSJQYXRoXzIzOCIgZGF0YS1uYW1lPSJQYXRoIDIzOCIgZD0iTTgyNC43Myw0ODUuMjNhLjc4NS43ODUsMCwwLDEsMS4xMTEsMGwzLjkyOSwzLjkyOWEuNzg1Ljc4NSwwLDAsMSwwLDEuMTExbC0zLjkyOSwzLjkyOWEuNzg2Ljc4NiwwLDAsMS0xLjExMS0xLjExMWwyLjU4Ny0yLjU4N2gtNy41MzJhLjc4Ni43ODYsMCwwLDEsMC0xLjU3MWg3LjUzMmwtMi41ODctMi41ODdhLjc4NS43ODUsMCwwLDEsMC0xLjExMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTgxOSAtNDg1KSIgZmlsbD0iI2ZmZiIgZmlsbC1ydWxlPSJldmVub2RkIi8+Cjwvc3ZnPgo=") !important;
}
header .topmenu .menu-socialea .mega-menu-wrap #mega-menu-menu_principal .mega-menu-item .mega-menu-row.menu-item .mega-sub-menu .mega-menu-column .widget_text .textwidget p {
  margin-bottom: 0 !important;
  padding: 20px;
  font-size: 16px;
  font-family: "Work Sans", sans-serif;
  color: #0E262D;
  line-height: 1;
}
header .topmenu .tools-button.desktop {
  height: 48px;
}
header .topmenu .tools-button.desktop #cta_header {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  font-family: "Work Sans Medium", sans-serif;
  background-color: #3E41F3;
  border-radius: 200px;
  padding: 15px 20px;
  line-height: 1.2;
  border: 1px solid #3E41F3;
}
header .topmenu .tools-button.desktop #cta_header::after {
  background-image: url("../img/arrow-right-white.svg");
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
}
header .topmenu .tools-button.desktop #cta_header:hover {
  background-color: #FFFFFF;
  color: #3E41F3;
  border: 1px solid #3E41F3;
  transition: 0.3s;
}
header .topmenu .tools-button.desktop #cta_header:hover::after {
  background-image: url("../img/arrow-right-blue.svg");
}
@media (max-width: 991.98px) {
  header .topmenu .tools-button.desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  header .topmenu .tools-button.mobile {
    display: none;
  }
}
header .topmenu .menu-trigger {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
@media (max-width: 767.98px) {
  header .topmenu .menu-trigger {
    flex: 0 0 22.2222222222%;
    max-width: 22.2222222222%;
  }
}

/****************************************************************************/
/* BLOCS
/****************************************************************************/
.logoos-bloc .wp-block-media-text {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .logoos-bloc .wp-block-media-text {
    margin-bottom: 50px;
  }
}
.logoos-bloc .wp-block-media-text.shadow-top-left figure {
  position: relative;
}
.logoos-bloc .wp-block-media-text.shadow-top-left figure::after {
  display: block;
  position: absolute;
  content: "";
  width: 340px;
  height: 142px;
  top: -25px;
  left: -25px;
  background: url(../img/ombrage_image.svg) no-repeat;
  z-index: 0;
}
@media (min-width: 1380px) {
  .logoos-bloc .wp-block-media-text.shadow-top-left figure::after {
    width: 629px;
    height: 260px;
    top: -50px;
    left: -50px;
  }
}
.logoos-bloc .wp-block-media-text.shadow-top-left figure img {
  z-index: 1;
  position: relative;
}
.logoos-bloc .wp-block-media-text.shadow-top-left > .wp-block-media-text__content {
  z-index: 1;
}
.logoos-bloc .wp-block-media-text.shadow-top-right figure {
  position: relative;
  margin-bottom: 50px;
}
.logoos-bloc .wp-block-media-text.shadow-top-right figure::after {
  display: block;
  position: absolute;
  content: "";
  width: 340px;
  height: 142px;
  bottom: -25px;
  left: -25px;
  background: url(../img/ombrage_image.svg) no-repeat;
  z-index: 0;
}
@media (min-width: 1380px) {
  .logoos-bloc .wp-block-media-text.shadow-top-right figure::after {
    width: 629px;
    height: 260px;
    bottom: -50px;
    left: -50px;
  }
}
.logoos-bloc .wp-block-media-text.shadow-top-right figure img {
  z-index: 1;
  position: relative;
}
.logoos-bloc .wp-block-media-text.shadow-bottom-left figure {
  position: relative;
  margin-bottom: 50px;
}
.logoos-bloc .wp-block-media-text.shadow-bottom-left figure::after {
  display: block;
  position: absolute;
  content: "";
  width: 340px;
  height: 142px;
  bottom: -25px;
  left: -25px;
  background: url(../img/ombrage_image.svg) no-repeat;
  z-index: 0;
}
@media (min-width: 1380px) {
  .logoos-bloc .wp-block-media-text.shadow-bottom-left figure::after {
    width: 629px;
    height: 260px;
    bottom: -50px;
    left: -50px;
  }
}
.logoos-bloc .wp-block-media-text.shadow-bottom-left figure img {
  z-index: 1;
  position: relative;
}
.logoos-bloc .wp-block-media-text.shadow-bottom-right figure {
  position: relative;
  margin-bottom: 50px;
}
.logoos-bloc .wp-block-media-text.shadow-bottom-right figure::after {
  display: block;
  position: absolute;
  content: "";
  width: 340px;
  height: 142px;
  bottom: -25px;
  right: -25px;
  background: url(../img/ombrage_image.svg) no-repeat;
  z-index: 0;
}
@media (min-width: 1380px) {
  .logoos-bloc .wp-block-media-text.shadow-bottom-right figure::after {
    width: 629px;
    height: 260px;
    bottom: -50px;
    right: -50px;
  }
}
.logoos-bloc .wp-block-media-text.shadow-bottom-right figure img {
  z-index: 1;
  position: relative;
}
.logoos-bloc .wp-block-media-text.has-media-on-the-right {
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .logoos-bloc .wp-block-media-text.has-media-on-the-right {
    display: grid;
  }
}
.logoos-bloc .wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}
@media (min-width: 576px) {
  .logoos-bloc .wp-block-media-text .wp-block-media-text__content {
    padding: 0 8%;
  }
}

/* Bloc image */
.wp-block-image,
.wp-block-media-text__media {
  position: relative;
}
.wp-block-image img,
.wp-block-media-text__media img {
  width: 100%;
  height: auto;
}
.wp-block-image.shadow-botttom-left,
.wp-block-media-text__media.shadow-botttom-left {
  position: relative;
  margin-bottom: 50px;
}
.wp-block-image.shadow-botttom-left::after,
.wp-block-media-text__media.shadow-botttom-left::after {
  display: block;
  position: absolute;
  content: "";
  width: 340px;
  height: 142px;
  bottom: -25px;
  left: -25px;
  background: url(../img/ombrage_image.svg) no-repeat;
  z-index: 0;
}
@media (min-width: 1380px) {
  .wp-block-image.shadow-botttom-left::after,
.wp-block-media-text__media.shadow-botttom-left::after {
    width: 629px;
    height: 260px;
    bottom: -50px;
    left: -50px;
  }
}
.wp-block-image.shadow-botttom-left img,
.wp-block-media-text__media.shadow-botttom-left img {
  z-index: 1;
  position: relative;
}
.wp-block-image.size-full,
.wp-block-media-text__media.size-full {
  margin-left: 11.1111111111%;
}

/* Bloc de colonnes */
.wp-block-columns {
  margin-bottom: 0 !important;
}
.wp-block-columns.reinsurance-bloc {
  display: flex;
  margin-bottom: 100px;
  justify-content: center;
}
.wp-block-columns.reinsurance-bloc.space-between {
  justify-content: space-between;
}
.wp-block-columns.reinsurance-bloc .wp-block-column {
  max-width: 284px;
}
@media (max-width: 991.98px) {
  .wp-block-columns.reinsurance-bloc .wp-block-column {
    margin-left: 16px;
    margin-right: 16px;
    flex-basis: calc(50% - 32px) !important;
  }
}
@media (min-width: 768px) {
  .wp-block-columns.reinsurance-bloc .wp-block-column .wp-block-column:not(:first-child) {
    margin-left: 50px;
  }
}
.wp-block-columns.reinsurance-bloc .wp-block-column .wp-block-image {
  text-align: center;
  height: 66px;
}
@media (min-width: 1380px) {
  .wp-block-columns.reinsurance-bloc .wp-block-column .wp-block-image {
    height: 100px;
  }
}
.wp-block-columns.reinsurance-bloc .wp-block-column .wp-block-image img {
  max-height: 66px;
  width: auto;
}
@media (min-width: 1380px) {
  .wp-block-columns.reinsurance-bloc .wp-block-column .wp-block-image img {
    max-width: 100px;
    max-height: 100px;
  }
}
.wp-block-columns.margin-bottom {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .wp-block-columns.margin-bottom {
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns.margin-bottom {
    margin-bottom: 150px;
  }
}
.wp-block-columns.plus-list .wp-block-column {
  position: relative;
  display: flex;
}
.wp-block-columns.plus-list .wp-block-column::before {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  content: "";
  background: url("../img/icone_plus_circle.svg") no-repeat center center;
}
.wp-block-columns.plus-list .wp-block-column p {
  font-size: 1.1rem;
  line-height: 1.8rem;
  margin-left: 50px;
}
@media (min-width: 992px) {
  .wp-block-columns.pictos-bloc {
    margin-top: 80px;
  }
}
.wp-block-columns.pictos-bloc .wp-block-column {
  margin-top: 40px;
}
.wp-block-columns.pictos-bloc figure {
  margin: 0;
}
.wp-block-columns.pictos-bloc figure img {
  width: auto;
  max-height: 70px;
}
@media (min-width: 992px) {
  .wp-block-columns.pictos-bloc figure img {
    max-height: none;
  }
}

/* Bloc groupe */
.wp-block-group.une-question {
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  .wp-block-group.une-question {
    padding: 20px 30px 30px 30px;
  }
}
.wp-block-group.blue-bloc {
  position: relative;
  background-color: #D4EAF7;
  text-align: center;
}
.wp-block-group.blue-bloc .wp-block-columns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .wp-block-group.blue-bloc .wp-block-columns .wp-block-column {
    flex-basis: 100% !important;
  }
}
@media (min-width: 992px) {
  .wp-block-group.blue-bloc .wp-block-columns .wp-block-column:first-child {
    text-align: left;
  }
}
.wp-block-group.blue-bloc .wp-block-columns .wp-block-column:last-child {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .wp-block-group.blue-bloc .wp-block-columns .wp-block-column:last-child {
    justify-content: right;
  }
}
.wp-block-group.blue-bloc .wp-block-columns .wp-block-buttons {
  margin-bottom: 0;
}
.wp-block-group.blue-bloc .wp-block-buttons {
  margin-bottom: 0;
}
.wp-block-group.listing h2 {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .wp-block-group.listing h2 {
    margin-bottom: 40px;
  }
}
@media (min-width: 576px) {
  .wp-block-group.question {
    padding: 20px 40px 40px;
  }
}
@media (min-width: 992px) {
  .wp-block-group.question {
    padding: 30px 80px 60px;
  }
}
.wp-block-group.question > .wp-block-group__inner-container {
  max-width: 750px;
  margin: auto;
}
.wp-block-group.question h2 {
  color: #ffffff;
}
.wp-block-group.darkblue-bloc {
  position: relative;
  background-color: #1B357D;
  z-index: 1;
}
.wp-block-group.darkblue-bloc > .wp-block-group__inner-container {
  max-width: 1480px;
  padding-top: 40px;
  padding-bottom: 80px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .wp-block-group.darkblue-bloc > .wp-block-group__inner-container {
    padding-top: 70px;
    padding-bottom: 114px;
  }
}
.wp-block-group.darkblue-bloc > .wp-block-group__inner-container .wp-block-column {
  position: relative;
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
  padding: 25px 25px;
  /* Fix WP styling */
}
@media (min-width: 600px) and (max-width: 781px) {
  .wp-block-group.darkblue-bloc > .wp-block-group__inner-container .wp-block-column {
    flex-basis: calc(50% - 60px) !important;
  }
}
@media (min-width: 992px) {
  .wp-block-group.darkblue-bloc > .wp-block-group__inner-container .wp-block-column {
    margin-left: 30px;
    margin-right: 30px;
    padding: 25px 55px;
  }
}
.wp-block-group.darkblue-bloc > .wp-block-group__inner-container .wp-block-column.shadow-top-left::before {
  display: block;
  position: absolute;
  content: "";
  width: 340px;
  height: 142px;
  top: -25px;
  left: -25px;
  background: url(../img/ombrage_image.svg) no-repeat;
  z-index: -1;
}
@media (min-width: 1380px) {
  .wp-block-group.darkblue-bloc > .wp-block-group__inner-container .wp-block-column.shadow-top-left::before {
    width: 629px;
    height: 260px;
    top: -50px;
    left: -50px;
  }
}
.wp-block-group.darkblue-bloc > .wp-block-group__inner-container .wp-block-column.shadow-bottom-right::before {
  display: block;
  position: absolute;
  content: "";
  width: 340px;
  height: 142px;
  bottom: -25px;
  right: -25px;
  background: url(../img/ombrage_image.svg) no-repeat;
  z-index: -1;
}
@media (min-width: 1380px) {
  .wp-block-group.darkblue-bloc > .wp-block-group__inner-container .wp-block-column.shadow-bottom-right::before {
    width: 629px;
    height: 260px;
    bottom: -50px;
    right: -50px;
  }
}
.wp-block-group.darkblue-bloc > .wp-block-group__inner-container .wp-block-column p {
  font-size: 1.1rem;
  line-height: 1.8rem;
}
.wp-block-group.darkblue-bloc > .wp-block-group__inner-container .wp-block-column .wp-block-buttons {
  font-size: 1.1rem;
  margin-top: 40px;
}
@media (min-width: 1380px) {
  .wp-block-group.darkblue-bloc > .wp-block-group__inner-container .wp-block-column .wp-block-buttons .wp-block-button__link {
    font-size: 1rem;
    padding: 8px 24px;
  }
}
.wp-block-group.darkblue-bloc .plus-list .wp-block-column {
  margin: 0;
  background-color: transparent;
  color: #ffffff;
}
.wp-block-group.darkblue-bloc:not(.no-white-block) > .wp-block-group__inner-container .wp-block-column {
  background-color: #ffffff;
}
.wp-block-group.darkblue-bloc.no-white-block > .wp-block-group__inner-container .wp-block-column p {
  color: #ffffff;
}
.wp-block-group.darkblue-bloc.no-white-block > .wp-block-group__inner-container .wp-block-column img {
  filter: contrast(0) brightness(0) invert(1);
}
.wp-block-group.blue-shadow-top-right {
  position: relative;
}
.wp-block-group.blue-shadow-top-right::before {
  display: block;
  position: absolute;
  content: "";
  width: 340px;
  height: 142px;
  top: -25px;
  right: calc(50% - 170px);
  background: url(../img/ombrage_image_bleu.svg) no-repeat;
  z-index: -1;
}
@media (min-width: 1380px) {
  .wp-block-group.blue-shadow-top-right::before {
    width: 629px;
    height: 263px;
    top: -50px;
    right: -50px;
  }
}

.wp-block-latest-posts {
  position: relative;
}
.wp-block-latest-posts.columns-3 li:not(:has(.wp-block-latest-posts__featured-image)) {
  padding-top: 220px;
}
@media (min-width: 992px) {
  .wp-block-latest-posts.columns-3 li {
    flex: 1;
    margin-right: 30px;
  }
}
@media (max-width: 991.98px) {
  .wp-block-latest-posts.is-grid {
    display: block;
  }
}
.wp-block-latest-posts li {
  position: relative;
  background-color: white;
  padding-bottom: 40px;
  border-radius: 10px;
}
.wp-block-latest-posts li time.wp-block-latest-posts__post-date {
  position: absolute;
  top: 0;
  padding: 15px;
  font-size: 1rem;
  font-family: "OverpassSemiBold", Helvetica, Arial, sans-serif;
  color: #1B357D;
  text-align: center;
  background-color: white;
  border-radius: 10px 0 0 0;
}
.wp-block-latest-posts li .wp-block-latest-posts__featured-image img {
  max-height: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}
.wp-block-latest-posts li .post-categories {
  padding: 20px 0 0 40px;
}
@media (max-width: 991.98px) {
  .wp-block-latest-posts li .post-categories {
    padding: 20px 0 0 20px;
  }
}
.wp-block-latest-posts li .post-categories a {
  display: inline-block;
  border-radius: 100px;
  margin-bottom: 10px;
  padding: 4px 10px;
  color: #27364B;
  font-family: "RobotoLight", Helvetica, Arial, sans-serif;
  background-color: #D4EAF7;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
}
.wp-block-latest-posts li .post-categories a:not(:first-child) {
  margin-left: 10px;
}
.wp-block-latest-posts li h3 a {
  font-family: "AnybodyRegular", Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 32px;
  color: #27364B;
  text-decoration: none;
}
.wp-block-latest-posts li h3 a:hover {
  text-decoration: none;
}
.wp-block-latest-posts li h3, .wp-block-latest-posts li .wp-block-latest-posts__post-excerpt, .wp-block-latest-posts li a.is-style-secondary {
  padding: 0 40px;
}
@media (max-width: 991.98px) {
  .wp-block-latest-posts li h3, .wp-block-latest-posts li .wp-block-latest-posts__post-excerpt, .wp-block-latest-posts li a.is-style-secondary {
    padding: 0 20px;
  }
}
.wp-block-latest-posts li div.wp-block-latest-posts__post-excerpt {
  font-size: 1.1rem;
  line-height: 1.8rem;
}
.wp-block-latest-posts li a.button {
  display: inline-block;
  margin-top: 10px;
  border: 1px solid #27364B;
  color: #27364B !important;
  background-color: transparent;
  padding: 15px 30px;
  margin-left: 40px;
}
@media (max-width: 991.98px) {
  .wp-block-latest-posts li a.button {
    margin-left: 20px;
    width: max-content !important;
    display: block;
  }
}

/* Bloc logos (logoos) */
.logoos-bloc {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 125px;
}
.logoos-bloc .row, .logoos-bloc .row-copy {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
  min-width: 100%;
}
.logoos-bloc .row .row-copy, .logoos-bloc .row-copy .row-copy {
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
}
.logoos-bloc .row .logoo, .logoos-bloc .row-copy .logoo {
  margin: 10px 20px;
}
.logoos-bloc .row .logoo img, .logoos-bloc .row-copy .logoo img {
  max-width: 160px;
  max-height: 60px;
  width: auto;
  height: auto;
}
@media (min-width: 992px) {
  .logoos-bloc .row .logoo img, .logoos-bloc .row-copy .logoo img {
    max-height: 100px;
  }
}

/* Bloc témoignages (testimonials) */
.testimonials-bloc {
  margin-top: 50px;
}
.testimonials-bloc .row {
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .testimonials-bloc .row {
    display: block;
  }
}
.testimonials-bloc .row .testimonial {
  height: auto;
  margin-right: 30px;
  flex: 1;
  background-color: white;
  box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 60px;
  position: relative;
}
@media (max-width: 767.98px) {
  .testimonials-bloc .row .testimonial {
    margin-right: 0;
    margin-bottom: 60px;
  }
}
.testimonials-bloc .row .testimonial:last-child {
  margin-right: 0;
}
.testimonials-bloc .row .testimonial::before {
  content: url("../img/quotes.svg");
  position: absolute;
  top: -33px;
  left: 25px;
  display: inline-block;
  background-color: #FFE7E0;
  width: 66px;
  height: 66px;
  border-radius: 200px;
  padding: 20px 15px;
  box-sizing: border-box;
}
.testimonials-bloc .row .testimonial .left-column {
  text-align: left;
}
.testimonials-bloc .row .testimonial .left-column img {
  max-width: 130px;
  height: auto;
  filter: grayscale(100%);
}
.testimonials-bloc .row .testimonial .right-column {
  position: relative;
  width: 100%;
}
.testimonials-bloc .row .testimonial .right-column p {
  font-family: "RobotoLight", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8rem;
}
.testimonials-bloc .row .testimonial .right-column a.button {
  display: block;
  margin: 0 auto;
  width: max-content;
}

/* Bloc citation */
.wp-block-quote p {
  margin-bottom: 10px;
  color: #1B357D;
  font-family: "RobotoLight", Helvetica, Arial, sans-serif;
  font-size: 40px;
  line-height: 48px;
}
.wp-block-quote::after {
  content: "";
  display: block;
  width: 40px;
  margin-top: 15px;
  border-bottom: 4px solid #FF8762;
}

/* Bloc dernières missions */
.latest-missions-bloc {
  margin-bottom: 40px;
}
.latest-missions-bloc .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .latest-missions-bloc .row {
    justify-content: space-between;
  }
}
.latest-missions-bloc .row .latest-mission {
  height: auto;
  border-radius: 10px;
  position: relative;
  margin-bottom: 40px;
  flex: 1;
  background-color: white;
  box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1);
}
.latest-missions-bloc .row .latest-mission:nth-child(2) {
  margin-right: 30px;
  margin-left: 30px;
}
.latest-missions-bloc .row .latest-mission a h3 {
  text-decoration: none;
}
.latest-missions-bloc .row .latest-mission h3, .latest-missions-bloc .row .latest-mission p {
  padding: 0 40px;
}
.latest-missions-bloc .row .latest-mission img {
  max-width: 100%;
  height: auto;
}
.latest-missions-bloc .row .latest-mission a.button {
  margin: 20px 40px 20px 40px;
  display: block;
  background-color: #1B357D;
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
  border: none;
  position: relative;
  border-radius: 200px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  width: max-content;
  padding: 18px 30px;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
}
.latest-missions-bloc .row .latest-mission a.button:hover {
  background-color: #1b357D35;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .latest-missions-bloc .row .latest-mission a.button {
    display: block;
    width: 100% !important;
    max-width: 100%;
    padding: 12px 30px !important;
  }
}

/* Bloc équipe */
.team-block {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
.team-block .team-member {
  display: block;
  position: relative;
  margin: 20px 0 40px;
  text-align: center;
  flex: 0 0 calc(25% - 10px);
}
@media (min-width: 992px) {
  .team-block .team-member {
    max-width: 349px;
  }
  .team-block .team-member:nth-child(8n+1)::before {
    position: absolute;
    width: 234px;
    height: 377px;
    top: -35px;
    right: -35px;
    content: "";
    z-index: -1;
    background: url("../img/ombrage_image_equipe.svg") no-repeat center center;
  }
  .team-block .team-member:nth-child(8n+7)::before {
    position: absolute;
    width: 234px;
    height: 377px;
    top: -35px;
    left: -35px;
    content: "";
    z-index: -1;
    background: url("../img/ombrage_image_equipe.svg") no-repeat center center;
  }
}
.team-block .team-member p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6rem;
}
.team-block .team-member .team-member-image-bloc {
  background-color: #27364B;
}
.team-block .team-member .team-member-image-bloc .team-member-image {
  max-height: 440px;
  overflow: hidden;
}
.team-block .team-member .team-member-image-bloc .team-member-image img {
  opacity: 1;
  min-height: 440px;
  display: block;
  width: 100%;
  transition: 0.5s ease;
  backface-visibility: hidden;
  object-fit: cover;
}
.team-block .team-member .team-member-image-bloc .team-member-info {
  position: absolute;
  top: 0;
  left: 0;
  padding: 28px;
  opacity: 0;
  transition: 0.5s ease;
  overflow-y: auto;
  bottom: 55px;
}
.team-block .team-member .team-member-image-bloc .team-member-info p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.8rem;
  text-align: left;
}
.team-block .team-member .team-member-image-bloc:hover .team-member-image img {
  opacity: 0.3;
}
.team-block .team-member .team-member-image-bloc:hover .team-member-info {
  opacity: 1;
}
.team-block .team-member p.team-member-name {
  margin-top: 20px;
  color: #1B357D;
  font-family: "YanoneRegular", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
}
.team-block .team-member p.team-member-function {
  color: #2a98d9;
  font-family: "YanoneLight", Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.5rem;
}

/* page gestion rh */
.page-template-page-master-rh .savoirPlus {
  background-color: #1B357D;
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
  border: none;
  position: relative;
  border-radius: 200px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  width: max-content;
  padding: 18px 30px;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
}
.page-template-page-master-rh .savoirPlus:hover {
  background-color: #1b357D35;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .page-template-page-master-rh .savoirPlus {
    display: block;
    width: 100% !important;
    max-width: 100%;
    padding: 12px 30px !important;
  }
}
.page-template-page-master-rh .savoirPlus a {
  color: white;
  text-decoration: none;
}

/****************************************************************************/
/* FORMULAIRES
/****************************************************************************/
/* Formulaire gestion de paie */
.gestion_de_paie_form input:not([type=submit]), .gestion_de_paie_form textarea, .gestion_de_paie_form select {
  padding: 18px 20px 16px !important;
  font-size: 1rem !important;
  background-color: #F6F8FC;
  border: none;
}
.gestion_de_paie_form input[type=submit] {
  display: block;
  margin: 0 auto 40px;
  width: auto;
  font-size: 1.1rem;
}
.gestion_de_paie_form .gform_wrapper .ginput_container span.gfield_required {
  display: inline;
}
.gestion_de_paie_form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
  line-height: 1.5rem;
}

.media-with-form {
  grid-template-columns: 34% 1fr !important;
}

/* Formulaire Socialéa de boutons CTA en homepage */
#gform_wrapper_20 {
  position: relative;
}
#gform_wrapper_20::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 514px;
  height: 384px;
  top: -10%;
  left: -20%;
  background: url(../img/bg_form_mobile.svg) no-repeat;
}
@media (min-width: 576px) {
  #gform_wrapper_20::before {
    top: -15%;
    left: 0;
    width: 644px;
    height: 482px;
    background: url(../img/bg_form.svg) no-repeat;
  }
}
@media (min-width: 992px) {
  #gform_wrapper_20 form {
    max-width: 80%;
  }
}
#gform_wrapper_20 form .gf_page_steps {
  position: relative;
  border-bottom: none;
  text-align: center;
}
#gform_wrapper_20 form .gf_page_steps .gf_step {
  display: inline-block;
  width: auto;
  opacity: 1;
}
#gform_wrapper_20 form .gf_page_steps .gf_step .gf_step_number {
  width: 2rem;
  height: 2rem;
  padding: 0.2rem;
  font-family: "YanoneRegular", Helvetica, Arial, sans-serif;
  color: #2a98d9;
  text-align: center;
  background-color: #ffffff;
  border: 2px solid #2a98d9;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#gform_wrapper_20 form .gf_page_steps .gf_step.gf_step_active .gf_step_number {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.4rem;
}
#gform_wrapper_20 form .gf_page_steps .gf_step.gf_step_completed span {
  content: "√";
  color: #ffffff;
  background-color: #2a98d9;
}
#gform_wrapper_20 form .gf_page_steps .gf_step_clear {
  margin-top: -20px;
  border-top: 1px solid #2a98d9;
}
@media (min-width: 576px) {
  #gform_wrapper_20 form .gf_page_steps .gf_step_clear {
    margin-top: -15px;
  }
}
#gform_wrapper_20 form #gform_page_20_2 .gf_big_button .gfield_radio li label {
  padding: 0;
  border: none;
}
#gform_wrapper_20 form .gf_big_button {
  margin-top: 50px;
}
#gform_wrapper_20 form .gf_big_button > .gfield_label {
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
  color: #27364B;
}
@media (min-width: 576px) {
  #gform_wrapper_20 form .gf_big_button > .gfield_label {
    font-size: 18px;
  }
}
#gform_wrapper_20 form .gf_big_button .gfield_radio {
  text-align: center;
}
#gform_wrapper_20 form .gf_big_button .gfield_radio li {
  display: inline-block;
  width: 48%;
}
#gform_wrapper_20 form .gf_big_button .gfield_radio li label, #gform_wrapper_20 form .gf_big_button .gfield_radio li label a {
  color: #27364B;
  font-size: 18px;
  line-height: 24px;
  background-color: #ffffff;
  border: 1px solid #27364B;
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
  border-radius: 200px;
  padding: 10px 20px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
#gform_wrapper_20 form .gf_big_button .gfield_radio li label:hover, #gform_wrapper_20 form .gf_big_button .gfield_radio li label a:hover {
  border: 1px solid #1b357D35;
}
#gform_wrapper_20 form .gf_big_button .gfield_radio li label:hover a, #gform_wrapper_20 form .gf_big_button .gfield_radio li label a:hover a {
  text-decoration: none;
  color: #1b357D35;
}
@media (max-width: 767.98px) {
  #gform_wrapper_20 form .gf_big_button .gfield_radio li {
    width: 100%;
  }
}
#gform_wrapper_20 form .gf_big_button .gfield_radio li label {
  width: 100%;
  max-width: 240px;
  margin: 10px auto;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media (min-width: 992px) {
  #gform_wrapper_20 form .gf_big_button .gfield_radio li label {
    padding: 15px 30px;
  }
}
@media (max-width: 991.98px) {
  #gform_wrapper_20 form .gf_big_button .gfield_radio li label {
    max-width: 100%;
  }
}
#gform_wrapper_20 form .gf_big_button .gfield_radio li label#label_20_2_3 {
  padding: 0;
  border: none;
}
#gform_wrapper_20 form .gf_big_button .gfield_radio li label#label_20_2_3 a {
  padding: 10px 30px;
  display: block;
  text-decoration: none;
}
#gform_wrapper_20 form .gf_big_button .gfield_radio li input[type=radio] {
  display: none;
}
#gform_wrapper_20 form .gf_big_button .gfield_radio li input[type=radio]:checked + label,
#gform_wrapper_20 form .gf_big_button .gfield_radio li input[type=radio] + label:hover {
  color: #1b357D35;
}
#gform_wrapper_20 form .gform_page_footer {
  display: none;
}

/****************************************************************************/
/* PAGE D'ACCUEIL
/****************************************************************************/
body.home .home-content h1 {
  margin-top: 50px;
}
@media (min-width: 576px) {
  body.home .home-content h1 {
    margin-top: 80px;
  }
}
@media (min-width: 768px) {
  body.home .home-content h1 {
    margin-top: 100px;
  }
}
body.home .home-content h1.badge_silaexpert::before {
  position: absolute;
  content: "";
  display: block;
  height: 100px;
  width: 100px;
  right: 0;
  margin-top: -80px;
  background: url("../img/tampon-silae_bleu.png") no-repeat 50% 50%;
  background-size: cover;
}
@media (min-width: 768px) {
  body.home .home-content h1.badge_silaexpert::before {
    height: 120px;
    width: 120px;
  }
}
@media (min-width: 992px) {
  body.home .home-content h1.badge_silaexpert::before {
    margin-top: -100px;
    height: 150px;
    width: 150px;
  }
}
body.home .home-content .wp-block-buttons:not(.aligncenter):not(.alignright) {
  text-align: center;
  margin-bottom: 0px;
}
@media (min-width: 576px) {
  body.home .home-content .wp-block-buttons:not(.aligncenter):not(.alignright) {
    text-align: left;
  }
}
body.home .home-content .wp-block-buttons:not(.aligncenter):not(.alignright) .wp-block-button {
  margin-top: 10px;
  margin-right: 0;
}
@media (min-width: 576px) {
  body.home .home-content .wp-block-buttons:not(.aligncenter):not(.alignright) .wp-block-button {
    margin-right: 8px;
  }
}
@media (max-width: 767.98px) {
  body.home .home-content .wp-block-buttons:not(.aligncenter):not(.alignright) .wp-block-button {
    width: 100%;
  }
}
body.home .home-content .wp-block-group.blue-bloc {
  max-width: initial;
  z-index: 1;
}
body.home .home-content .wp-block-group.blue-bloc > p {
  margin-bottom: 0;
}
body.home .home-content .wp-block-group.blue-bloc h2 {
  margin-top: 0;
}
body.home .home-content .wp-block-group.blue-bloc .wp-block-buttons:not(.aligncenter):not(.alignright) {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  body.home .home-content .wp-block-group.blue-bloc {
    margin-right: -120px;
  }
}
@media (min-width: 992px) {
  body.home .home-content .wp-block-group.blue-bloc {
    margin-right: -240px;
  }
}
body.home .home-content .title-bloc {
  margin-top: 50px;
}
@media (min-width: 992px) {
  body.home .home-content .title-bloc {
    margin-top: 140px;
  }
}

/****************************************************************************/
/* FIL D'ARIANE (BREADCRUMB)
/****************************************************************************/
#breadcrumbs {
  line-height: 1.2rem;
  color: #1B357D;
  font-size: 1.2rem;
}
#breadcrumbs a {
  color: #2a98d9;
  font-family: "OverpassLight", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
}
#breadcrumbs .breadcrumb_last {
  color: #2a98d9;
  font-family: "OverpassSemiBold", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
}

/****************************************************************************/
/* PAGES INTERNES
/****************************************************************************/
body:not(.home) {
  /** PAGE **/
}
body:not(.home) section.main-content {
  position: relative;
  z-index: 0;
  opacity: 1;
}
body:not(.home) section.main-content + figure.wp-block-image, body:not(.home) section.main-content + .wp-block-image > figure,
body:not(.home) section.main-content + .meta-data + figure.wp-block-image {
  position: relative;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  body:not(.home) section.main-content + figure.wp-block-image, body:not(.home) section.main-content + .wp-block-image > figure,
body:not(.home) section.main-content + .meta-data + figure.wp-block-image {
    margin-bottom: 80px;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}
body:not(.home) section.main-content + figure.wp-block-image::after, body:not(.home) section.main-content + .wp-block-image > figure::after,
body:not(.home) section.main-content + .meta-data + figure.wp-block-image::after {
  display: block;
  position: absolute;
  content: "";
  width: 340px;
  height: 142px;
  bottom: -25px;
  left: -25px;
  background: url(../img/ombrage_image.svg) no-repeat;
  z-index: 0;
}
@media (min-width: 1380px) {
  body:not(.home) section.main-content + figure.wp-block-image::after, body:not(.home) section.main-content + .wp-block-image > figure::after,
body:not(.home) section.main-content + .meta-data + figure.wp-block-image::after {
    width: 629px;
    height: 260px;
    bottom: -50px;
    left: -50px;
  }
}
body:not(.home) section.main-content + figure.wp-block-image img, body:not(.home) section.main-content + .wp-block-image > figure img,
body:not(.home) section.main-content + .meta-data + figure.wp-block-image img {
  z-index: 1;
  position: relative;
}
body:not(.home) .wp-block-columns ul {
  padding-left: 0;
  list-style: none;
}
body:not(.home) .wp-block-columns ul li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 28px;
}
body:not(.home) ul.blue-bullets {
  padding-left: 0;
  list-style: none;
}
body:not(.home) ul.blue-bullets li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 28px;
}
body:not(.home) ul.blue-bullets li::before {
  margin-right: 5px;
  content: "￭";
  color: #2a98d9;
}
body:not(.home) .wp-block-columns {
  margin-bottom: 0;
}
body:not(.home) .wp-block-columns.reinsurance-bloc {
  margin-top: 40px;
}
body:not(.home) .wp-block-group.blue-bloc {
  margin: 20px auto 40px;
}
@media (min-width: 1380px) {
  body:not(.home) .wp-block-group.blue-bloc {
    margin: 60px auto;
  }
}
body:not(.home) .wp-block-group.blue-bloc p:first-child {
  color: #1B357D;
  font-size: 1rem;
  margin-bottom: 0;
}
body:not(.home) .wp-block-group.blue-bloc h2 {
  margin-top: 0;
}
body:not(.home) .wp-block-group.blue-bloc .wp-block-buttons:not(.aligncenter):not(.alignright) {
  margin-bottom: 0;
}
body:not(.home) .wp-block-group.blue-bloc ol li {
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 992px) {
  body:not(.home) .wp-block-group.blue-bloc ol li {
    font-size: 1.1rem;
  }
}
body:not(.home) .wp-block-group.blue-bloc.listing {
  padding: 30px 20px 20px;
}
@media (max-width: 991.98px) {
  body:not(.home) .wp-block-group.blue-bloc.listing {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: auto;
    object-fit: cover;
  }
}
@media (min-width: 992px) {
  body:not(.home) .wp-block-group.blue-bloc.listing {
    position: relative;
    width: 100%;
    margin-left: 5.5555555556%;
    flex: 0 0 88.8888888889%;
    max-width: 88.8888888889%;
    padding: 60px 40px 20px;
  }
}
@media (min-width: 1380px) {
  body:not(.home) .wp-block-group.blue-bloc.listing {
    margin: 80px;
  }
}
body:not(.home) .darkblue-bloc h2 {
  margin-top: 0;
}
body:not(.home) .wp-block-quote.negative-bottom-margin {
  position: relative;
  width: 100%;
  margin-left: 66.6666666667%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  margin-bottom: -150px;
  z-index: 2;
}
body:not(.home) .logoos-bloc {
  margin-bottom: 50px;
}
body:not(.home) .wp-block-media-text .wp-block-media-text__media img {
  max-width: 100%;
}
body:not(.home) .wp-block-media-text .wp-block-media-text__content .wp-block-buttons {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  body:not(.home) .wp-block-media-text .wp-block-media-text__content .wp-block-buttons .wp-block-button__link {
    padding: 8px 24px;
  }
}
body:not(.home) .pagination {
  text-align: center;
}
body:not(.home) .pagination span.current {
  margin: 5px;
  color: #2a98d9;
  font-family: "OverpassSemiBold", Helvetica, Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 2.5rem;
}
body:not(.home) .pagination a {
  color: #2a98d9;
  margin: 5px;
}
body:not(.home) .pagination a.prev, body:not(.home) .pagination a.next {
  display: inline-block;
  margin: 15px;
  background-color: #1B357D;
  color: #ffffff;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
body:not(.home) .pagination a.prev::after, body:not(.home) .pagination a.next::after {
  display: inline-block;
  content: "";
  width: 48px;
  height: 44px;
  background: url("../img/right_arrow.svg") no-repeat center center;
  vertical-align: middle;
}
body:not(.home) .pagination a.prev:hover, body:not(.home) .pagination a.next:hover {
  text-decoration: none;
  background-color: #1B357D35;
}
body:not(.home) .pagination a.prev::after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

body.archive section.archive-content .blog-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  justify-content: space-between;
}
body.archive section.archive-content .post-item {
  position: relative;
  background-color: #fff;
  padding-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 32%;
  max-width: 32%;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  body.archive section.archive-content .post-item {
    flex: 0 0 49%;
    max-width: 49%;
  }
}
@media (max-width: 575.98px) {
  body.archive section.archive-content .post-item {
    position: relative;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
body.archive section.archive-content .post-item .post-categories {
  padding: 20px 0 0 40px;
}
@media (max-width: 991.98px) {
  body.archive section.archive-content .post-item .post-categories {
    padding: 10px 0 0 20px;
  }
}
body.archive section.archive-content .post-item .post-categories a {
  display: inline-block;
  border-radius: 100px;
  margin-bottom: 0;
  padding: 4px 10px;
  color: #27364B;
  font-family: "RobotoLight", Helvetica, Arial, sans-serif;
  background-color: #D4EAF7;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
}
body.archive section.archive-content .post-item time.wp-block-latest-posts__post-date {
  position: absolute;
  top: 0;
  padding: 15px;
  font-size: 1rem;
  font-family: "OverpassSemiBold", Helvetica, Arial, sans-serif;
  color: #1B357D;
  text-align: center;
  background-color: white;
  border-radius: 10px 0 0 0;
}
body.archive section.archive-content .post-item h2 a {
  font-family: "AnybodyRegular", Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 32px;
  color: #27364B;
  text-decoration: none;
}
body.archive section.archive-content .post-item h2 a:hover {
  text-decoration: underline;
}
body.archive section.archive-content .post-item h2 {
  font-size: 22px;
  line-height: 32px;
}
body.archive section.archive-content .post-item h2:after {
  display: none;
}
body.archive section.archive-content .post-item h2, body.archive section.archive-content .post-item .wp-block-latest-posts__post-excerpt, body.archive section.archive-content .post-item a.is-style-secondary {
  padding: 0 40px;
}
@media (max-width: 991.98px) {
  body.archive section.archive-content .post-item h2, body.archive section.archive-content .post-item .wp-block-latest-posts__post-excerpt, body.archive section.archive-content .post-item a.is-style-secondary {
    padding: 0 20px;
  }
}
body.archive section.archive-content .post-item p {
  padding: 0 40px;
}
body.archive section.archive-content .post-item div.wp-block-latest-posts__post-excerpt {
  font-size: 1.1rem;
  line-height: 1.8rem;
}
body.archive section.archive-content .post-item a.button {
  display: inline-block;
  margin-top: 10px;
  border: 1px solid #27364B;
  color: #27364B !important;
  background-color: transparent;
  padding: 15px 30px;
  margin-left: 40px;
}
@media (max-width: 991.98px) {
  body.archive section.archive-content .post-item a.button {
    margin-left: 20px;
    width: max-content !important;
    display: block;
  }
}

body.mission-template-default .bloc-cross-posts .cross-posts {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  justify-content: space-between;
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item {
  position: relative;
  background-color: #fff;
  padding-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 47%;
  max-width: 47%;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  body.mission-template-default .bloc-cross-posts .cross-posts .post-item {
    flex: 0 0 49%;
    max-width: 49%;
  }
}
@media (max-width: 575.98px) {
  body.mission-template-default .bloc-cross-posts .cross-posts .post-item {
    position: relative;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item .img-blog {
  height: 300px;
  overflow: hidden;
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item .img-blog img {
  width: 100%;
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item .post-categories {
  padding: 20px 0 0 40px;
}
@media (max-width: 991.98px) {
  body.mission-template-default .bloc-cross-posts .cross-posts .post-item .post-categories {
    padding: 10px 0 0 20px;
  }
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item .post-categories a {
  display: inline-block;
  border-radius: 100px;
  margin-bottom: 0;
  padding: 4px 10px;
  color: #27364B;
  font-family: "RobotoLight", Helvetica, Arial, sans-serif;
  background-color: #D4EAF7;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item time.wp-block-latest-posts__post-date {
  position: absolute;
  top: 0;
  padding: 15px;
  font-size: 1rem;
  font-family: "OverpassSemiBold", Helvetica, Arial, sans-serif;
  color: #1B357D;
  text-align: center;
  background-color: white;
  border-radius: 10px 0 0 0;
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item h3 a {
  font-family: "AnybodyRegular", Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 32px;
  color: #27364B;
  text-decoration: none;
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item h3 a:hover {
  text-decoration: underline;
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item h3 {
  font-size: 22px;
  line-height: 32px;
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item h3:after {
  display: none;
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item h3, body.mission-template-default .bloc-cross-posts .cross-posts .post-item .wp-block-latest-posts__post-excerpt, body.mission-template-default .bloc-cross-posts .cross-posts .post-item a.is-style-secondary {
  padding: 0 40px;
}
@media (max-width: 991.98px) {
  body.mission-template-default .bloc-cross-posts .cross-posts .post-item h3, body.mission-template-default .bloc-cross-posts .cross-posts .post-item .wp-block-latest-posts__post-excerpt, body.mission-template-default .bloc-cross-posts .cross-posts .post-item a.is-style-secondary {
    padding: 0 20px;
  }
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item p {
  padding: 0 40px;
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item div.wp-block-latest-posts__post-excerpt {
  font-size: 1.1rem;
  line-height: 1.8rem;
}
body.mission-template-default .bloc-cross-posts .cross-posts .post-item a.button {
  display: inline-block;
  margin-top: 10px;
  border: 1px solid #27364B;
  color: #27364B !important;
  background-color: transparent;
  padding: 15px 30px;
  margin-left: 40px;
}
@media (max-width: 991.98px) {
  body.mission-template-default .bloc-cross-posts .cross-posts .post-item a.button {
    margin-left: 20px;
    width: max-content !important;
    display: block;
  }
}
body.mission-template-default .bloc-cross-posts .previous-post {
  margin-right: 50px;
}

.les-agences {
  margin-bottom: 50px !important;
}
.les-agences .wp-block-image {
  padding: 0;
  margin: 0;
}
.les-agences .wp-block-column {
  background-color: white;
  padding: 30px;
}
.les-agences .wp-block-column h3 {
  color: #1B357D;
  margin: 0;
  margin-top: 20px;
}
.les-agences .wp-block-column .wp-block-button__link {
  color: #27364B;
  font-size: 18px;
  line-height: 24px;
  background-color: #ffffff;
  border: 1px solid #27364B;
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
  border-radius: 200px;
  padding: 10px 20px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.les-agences .wp-block-column .wp-block-button__link:hover {
  border: 1px solid #1b357D35;
}
.les-agences .wp-block-column .wp-block-button__link:hover a {
  text-decoration: none;
  color: #1b357D35;
}

.wp-block-group.plus-list {
  margin: 40px auto 60px;
}
.wp-block-group.plus-list p {
  font-size: 1.1rem;
  line-height: 1.8rem;
  margin-left: 30px;
  position: relative;
}
.wp-block-group.plus-list p::before {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: -30px;
  content: "";
  background: url("../img/icone_plus_circle.svg") no-repeat center center;
  background-size: contain;
}

.min-wrapper {
  max-width: 750px;
  margin: auto;
}

.wp-block-group.has-background:not(.question) {
  padding: 20px 40px;
}
.wp-block-group.has-background.has-dark-blue-background-color > .wp-block-group__inner-container > h2, .wp-block-group.has-background.has-dark-blue-background-color > .wp-block-group__inner-container > p, .wp-block-group.has-background.has-dark-blue-background-color > .wp-block-group__inner-container > label, .wp-block-group.has-background.has-dark-blue-background-color > .wp-block-group__inner-container > span {
  color: #ffffff;
}
.wp-block-group.has-background.has-dark-blue-background-color h2, .wp-block-group.has-background.has-dark-blue-background-color h3 {
  color: #ffffff;
}
.wp-block-group.has-background.has-light-blue-background-color p {
  color: #ffffff;
}
.wp-block-group.has-background.has-light-blue-background-color a.button.is-style-fill,
.wp-block-group.has-background.has-light-blue-background-color a.button.is-style-secondary,
.wp-block-group.has-background.has-light-blue-background-color span.button.is-style-secondary,
.wp-block-group.has-background.has-light-blue-background-color div.button.is-style-secondary,
.wp-block-group.has-background.has-light-blue-background-color .editor-styles-wrapper .wp-block-button__link,
.wp-block-group.has-background.has-light-blue-background-color .wp-block-button .wp-block-button__link,
.wp-block-group.has-background.has-light-blue-background-color .wp-block-button.is-style-fill .wp-block-button__link {
  background-color: #3E41F3 !important;
  color: #ffffff;
}
.wp-block-group.has-background.has-light-blue-background-color a.button.is-style-fill:hover,
.wp-block-group.has-background.has-light-blue-background-color a.button.is-style-secondary:hover,
.wp-block-group.has-background.has-light-blue-background-color span.button.is-style-secondary:hover,
.wp-block-group.has-background.has-light-blue-background-color div.button.is-style-secondary:hover,
.wp-block-group.has-background.has-light-blue-background-color .editor-styles-wrapper .wp-block-button__link:hover,
.wp-block-group.has-background.has-light-blue-background-color .wp-block-button .wp-block-button__link:hover,
.wp-block-group.has-background.has-light-blue-background-color .wp-block-button.is-style-fill .wp-block-button__link:hover {
  background-color: #FFFFFF !important;
  color: #3E41F3;
  border: 1px solid #3E41F3;
  transition: 0.3s;
}
.wp-block-group.has-background.has-light-blue-background-color a.button.is-style-fill:hover::after,
.wp-block-group.has-background.has-light-blue-background-color a.button.is-style-secondary:hover::after,
.wp-block-group.has-background.has-light-blue-background-color span.button.is-style-secondary:hover::after,
.wp-block-group.has-background.has-light-blue-background-color div.button.is-style-secondary:hover::after,
.wp-block-group.has-background.has-light-blue-background-color .editor-styles-wrapper .wp-block-button__link:hover::after,
.wp-block-group.has-background.has-light-blue-background-color .wp-block-button .wp-block-button__link:hover::after,
.wp-block-group.has-background.has-light-blue-background-color .wp-block-button.is-style-fill .wp-block-button__link:hover::after {
  background-image: url("../img/arrow-right-blue.svg");
}
.wp-block-group.has-background.has-light-blue-background-color input[type=button], .wp-block-group.has-background.has-light-blue-background-color input[type=submit], .wp-block-group.has-background.has-light-blue-background-color input[type=reset] {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .wp-block-spacer {
    height: 50px !important;
  }
}

/****************************************************************************/
/* FOOTER
/****************************************************************************/
footer {
  background-color: #FFFFFF;
  opacity: 1;
}
footer .pre-footer {
  background-color: #D4EAF7;
  padding: 40px 0;
}
footer .pre-footer .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  footer .pre-footer .wrapper {
    display: block;
  }
  footer .pre-footer .wrapper .logo-container {
    margin-bottom: 20px;
  }
}
footer .footer-agences {
  position: relative;
  background-color: #ffffff;
  padding: 60px 0;
}
footer .footer-agences > .wrapper > .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  footer .footer-agences > .wrapper > .row {
    display: block;
  }
}
footer .footer-agences > .wrapper > .row strong {
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
  color: #27364B;
}
footer .footer-agences > .wrapper > .row .button {
  font-size: 12px;
  line-height: 16px;
}
footer .footer-agences > .wrapper > .row .agency {
  flex: 1;
}
footer .footer-agences > .wrapper > .row .agency .agency-phone span.button {
  color: #27364B;
}
@media (max-width: 767.98px) {
  footer .footer-agences > .wrapper > .row .agency {
    margin-bottom: 30px;
  }
  footer .footer-agences > .wrapper > .row .agency .agency-phone span.button {
    height: 38px;
    display: block;
    width: max-content;
  }
}
footer .footer-agences > .wrapper > .row .logo-container {
  margin-top: 20px;
}
@media (min-width: 768px) {
  footer .footer-agences > .wrapper > .row .logo-container {
    margin-top: 0;
  }
}
footer .footer-agences > .wrapper > .row .logo-container img {
  max-width: 100%;
}
footer .footer-agences > .wrapper > .row .footer-menu > nav.nav-footer > ul.nav {
  display: flex;
  margin-top: 0;
  padding-left: 0;
  list-style: none;
  line-height: 1.8rem;
}
footer .footer-agences > .wrapper > .row .footer-menu > nav.nav-footer > ul.nav > li {
  list-style: none;
  margin-top: 40px;
}
@media (min-width: 992px) {
  footer .footer-agences > .wrapper > .row .footer-menu > nav.nav-footer > ul.nav > li {
    margin-top: 0;
  }
}
footer .footer-agences > .wrapper > .row .footer-menu > nav.nav-footer > ul.nav > li:first-child {
  margin-right: 20px;
}
@media (min-width: 576px) {
  footer .footer-agences > .wrapper > .row .footer-menu > nav.nav-footer > ul.nav > li:first-child {
    margin-right: 40px;
  }
}
footer .footer-agences > .wrapper > .row .footer-menu > nav.nav-footer > ul.nav > li a[href="#"] {
  margin-top: 0;
  color: #2a98d9;
  font-family: "YanoneRegular", Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
}
footer .footer-agences > .wrapper > .row .footer-menu > nav.nav-footer > ul.nav > li ul.sub-menu {
  margin-top: 15px;
  padding-left: 0;
}
footer .footer-agences > .wrapper > .row .footer-menu > nav.nav-footer > ul.nav > li ul.sub-menu li {
  list-style: none;
}
footer .footer {
  background-color: #FFFFFF;
  padding: 60px 0;
}
@media (max-width: 991.98px) {
  footer .footer {
    padding: 18px 15px 35px 15px;
  }
}
footer .footer nav.nav-footer {
  width: 100%;
}
footer .footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
}
footer .footer ul li.like-h3 > a {
  font-family: "Work Sans", sans-serif;
  font-size: 17px;
  color: #0E262D;
}
footer .footer ul li.littleButton {
  background-color: #1B357D;
  font-family: "RobotoBold", Helvetica, Arial, sans-serif;
  border: none;
  position: relative;
  border-radius: 200px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  width: max-content;
  padding: 0 15px;
}
footer .footer ul li.littleButton a {
  color: #ffffff;
  font-size: 12px;
  line-height: 16px;
}
footer .footer ul li.littleButton:hover {
  background-color: #1b357D35;
}
footer .footer ul li.littleButton:hover a {
  text-decoration: none;
}
footer .footer ul li a {
  color: #0E262D;
  text-decoration: none;
  font-size: 15px;
  font-family: "Work Sans Medium", sans-serif;
}
footer .footer ul > li {
  flex: 1;
}
footer .footer ul > li a[href="#"] {
  pointer-events: all;
  display: block;
  width: 100%;
  position: relative;
}
@media (max-width: 767.98px) {
  footer .footer ul > li.menu-item {
    margin-bottom: 30px;
    flex: 0 0 50%;
  }
}
footer .footer ul > li > ul.sub-menu {
  display: block;
  margin-top: 10px;
}
footer .footer ul > li > ul.sub-menu.active {
  display: block;
}
footer .footer ul > li > ul.sub-menu > li {
  display: block;
  line-height: 35px;
  font-size: 18px;
}
@media (max-width: 767.98px) {
  footer .footer ul > li > ul.sub-menu > li {
    margin-bottom: 0;
  }
}
footer .footer .text-footer {
  font-size: 14px;
  font-family: "Work Sans Medium", sans-serif;
  color: #0E262D;
  line-height: 1.5;
  margin-top: 1rem;
  width: 70%;
}
@media (max-width: 991.98px) {
  footer .footer .text-footer {
    width: 100%;
  }
}
footer .footer .tools-button {
  height: 48px;
  margin-top: 20px;
}
footer .footer .tools-button #cta_header {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  font-family: "Work Sans Medium", sans-serif;
  background-color: #3E41F3;
  border-radius: 200px;
  padding: 15px 20px;
  line-height: 1.2;
  border: 1px solid #3E41F3;
}
footer .footer .tools-button #cta_header::after {
  background-image: url("../img/arrow-right-white.svg");
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
}
footer .footer .tools-button #cta_header:hover {
  background-color: #FFFFFF;
  color: #3E41F3;
  border: 1px solid #3E41F3;
  transition: 0.3s;
}
footer .footer .tools-button #cta_header:hover::after {
  background-image: url("../img/arrow-right-blue.svg");
}
@media (max-width: 991.98px) {
  footer .footer .tools-button {
    margin-top: 30px;
    margin-bottom: 10px;
  }
}
footer .sub-footer {
  padding: 30px 0;
  display: flex;
  border-top: 1px #E8E9EC solid;
}
@media (max-width: 767.98px) {
  footer .sub-footer {
    display: block;
  }
}
footer .sub-footer .social-bloc a {
  text-decoration: none;
  margin-right: 15px;
}
footer .sub-footer .menu-mentions a {
  text-decoration: none;
  color: #0E262D;
}
footer .sub-footer .menu-mentions .menus {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 0 auto;
}
footer .sub-footer .menu-mentions .menus .menu-item {
  font-size: 12px;
  font-family: "Work Sans Medium", sans-serif;
  color: #0E262D;
}
@media (max-width: 991.98px) {
  footer .sub-footer .menu-mentions .menus .menu-item {
    margin-top: 5px;
  }
}
footer .sub-footer .menu-mentions .menus ul {
  list-style: none;
  margin: 0;
}
footer .sub-footer .menu-mentions .menus ul li {
  margin-right: 60px;
}
@media (max-width: 991.98px) {
  footer .sub-footer .menu-mentions .menus ul li {
    margin-right: 35px;
  }
}
@media (max-width: 991.98px) {
  footer .sub-footer .menu-mentions .menus {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  footer .sub-footer .menu-mentions {
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer .sub-footer .menu-mentions .menus > a {
    text-align: center;
    display: block;
  }
}
@media (max-width: 991.98px) {
  footer .sub-footer .social-bloc {
    margin-top: 5px;
  }
}
footer .sub-footer .signature {
  flex: 0 0 11.1111111111%;
  max-width: 11.1111111111%;
  position: relative;
  width: 100%;
}
@media (max-width: 767.98px) {
  footer .sub-footer .signature {
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer .sub-footer .signature #IC {
    width: max-content;
    margin: 30px auto 0 auto;
  }
}
footer .ask-for-quote {
  background-color: #222484;
  padding: 85px 0;
  position: relative;
}
@media (max-width: 991.98px) {
  footer .ask-for-quote {
    padding: 50px 0;
    max-height: 360px;
  }
}
footer .ask-for-quote h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 36px;
  color: #FFFFFF;
}
@media (max-width: 991.98px) {
  footer .ask-for-quote h3 {
    font-size: 28px;
  }
}
footer .ask-for-quote p {
  font-family: "Work Sans Medium", sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  margin-top: 20px;
}
@media (max-width: 991.98px) {
  footer .ask-for-quote p {
    font-size: 17px;
  }
}
footer .ask-for-quote .btn-ask {
  height: 48px;
  margin-top: 40px;
  cursor: pointer;
}
footer .ask-for-quote .btn-ask #cta_header {
  color: #3E41F3;
  font-size: 15px;
  text-decoration: none;
  font-family: "Work Sans Medium", sans-serif;
  background-color: #FFFFFF;
  border-radius: 200px;
  padding: 15px 20px;
  line-height: 1.2;
  border: 1px solid #FFFFFF;
}
footer .ask-for-quote .btn-ask #cta_header::after {
  background-image: url("../img/arrow-right-blue.svg");
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
}
footer .ask-for-quote .btn-ask #cta_header:hover {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  transition: 0.3s;
}
footer .ask-for-quote .btn-ask #cta_header:hover::after {
  background-image: url("../img/arrow-right-white.svg");
}
footer .ask-for-quote .blurred-logo img {
  position: absolute;
  top: 0;
  right: -50px;
}
@media (max-width: 991.98px) {
  footer .ask-for-quote .blurred-logo img {
    right: -100px;
    height: 100%;
  }
}

.background-menu {
  background: #000000;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.3;
  top: 0;
  display: none;
}

/*# sourceMappingURL=style.min.css.map */
