@charset "UTF-8";
/*--------VARIABLES--------*/
/*--------FONTS---------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");
@font-face {
  font-family: "Neris";
  src: url("../../fonts/Neris/neris-thin-webfont.woff2") format("woff2"), url("../../fonts/Neris/neris-thin-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Neris";
  src: url("../../fonts/Neris/neris-light-webfont.woff2") format("woff2"), url("../../fonts/Neris/neris-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Neris";
  src: url("../../fonts/Neris/neris-semibold-webfont.woff2") format("woff2"), url("../../fonts/Neris/neris-semibold-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Neris";
  src: url("../../fonts/Neris/neris-black-webfont.woff2") format("woff2"), url("../../fonts/Neris/neris-black-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
/* ----- KEYFRAMES ----- */
@keyframes fadeInUpCustom {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUpCustom {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.fadeInUpCustom {
  opacity: 0;
  -webkit-animation: fadeInUpCustom forwards 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
  animation: fadeInUpCustom forwards 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@-webkit-keyframes rot {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(1080deg);
            transform: rotate(1080deg);
  }
}

@keyframes rot {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(1080deg);
            transform: rotate(1080deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*-----------------ACCUEIL----------------*/
.home {
  /*#bandeau-accroche {
    padding: 130px 0 110px;
    background-image: url('../../images/bg-accroche.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    .accroche-content {
      text-align: center;
      p {
        font-family: $ff_light;
        color: $blanc;
        font-size: 24px;
        margin: 0;
        strong {
          font-family: $ff_bold;
        }
        &:not(:last-of-type) {
          margin-bottom: 15px;
        }
        @media(max-width: 1299px) {
          font-size: 20px;
        }
      }
      img {
        filter: brightness(0) invert(1);
        max-width: 150px;
        margin-top: 30px;
      }
      @media(max-width: 767px) {
        p {
          font-size: 18px;
        }
      }
    }
  }*/
}
.home main > section > section {
  /*        &:not(#bandeau-solutions,#bandeau-edito--1,#bandeau-edito--2) {
    overflow: hidden;
  }*/
}
.home main > section > section:not(#bandeau-solutions, [id^=bandeau-edito]) {
  overflow: hidden;
}
.home #bandeau-principal {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: auto;
  max-height: 100vh;
  margin: 0;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 991px) {
  .home #bandeau-principal {
    margin: 0;
  }
}
@media (max-width: 450px) {
  .home #bandeau-principal {
    max-width: 100%;
  }
}
.home #bandeau-principal .visuel {
  height: auto;
  max-height: 100vh;
  overflow: hidden;
  z-index: -1;
}
.home #bandeau-principal .visuel img {
  width: 100%;
}
.home #bandeau-principal .titre {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 6;
}
.home #bandeau-principal .titre h1 {
  margin: 0;
  font-family: "Neris";
}
.home #bandeau-principal .titre h1 .titre-principal,
.home #bandeau-principal .titre h1 .titre-ligne-2 {
  margin: 0;
  padding: 0 15px;
  display: inline-block;
  color: #ffffff;
  position: relative;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}
@media (max-width: 767px) {
  .home #bandeau-principal .titre h1 .titre-principal,
.home #bandeau-principal .titre h1 .titre-ligne-2 {
    padding: 0;
  }
}
.home #bandeau-principal .titre h1 .titre-principal {
  font-family: "Neris", sans-serif;
  font-size: 60px;
  font-weight: 800;
}
.home #bandeau-principal .titre h1 .titre-principal span {
  color: #ffffff;
}
@media (min-width: 1550px) {
  .home #bandeau-principal .titre h1 .titre-principal {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (max-width: 1299px) {
  .home #bandeau-principal .titre h1 .titre-principal {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  .home #bandeau-principal .titre h1 .titre-principal {
    font-size: 35px;
  }
}
@media (max-width: 580px) {
  .home #bandeau-principal .titre h1 .titre-principal {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .home #bandeau-principal .titre h1 .titre-principal {
    font-size: 32px;
  }
}
.home #bandeau-principal .titre h1 .titre-ligne-2 {
  width: 100%;
  font-size: 50px;
  font-weight: 100;
}
@media (max-width: 1299px) {
  .home #bandeau-principal .titre h1 .titre-ligne-2 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .home #bandeau-principal .titre h1 .titre-ligne-2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .home #bandeau-principal .titre h1 .titre-ligne-2 {
    font-size: 25px;
  }
}
@media (max-width: 580px) {
  .home #bandeau-principal .titre h1 .titre-ligne-2 {
    font-size: 16px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
}
.home #bandeau-principal .titre .intro-principale {
  color: #ffffff;
  line-height: normal;
  padding: 0 15px;
  margin-top: 30px;
  width: 100%;
  font-size: 40px;
  font-weight: 400;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}
.home #bandeau-principal .titre .intro-principale.short-delay {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@media (max-width: 1299px) {
  .home #bandeau-principal .titre .intro-principale {
    font-size: 29px;
  }
}
@media (max-width: 991px) {
  .home #bandeau-principal .titre .intro-principale {
    font-size: 25px;
    margin-top: 15px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 580px) {
  .home #bandeau-principal .titre .intro-principale {
    font-size: 25px;
    text-align: center;
    width: 100%;
  }
}
.home .titre-portails {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1300px) and (max-height: 580px) {
  .home .titre-portails {
    margin-bottom: 20px;
  }
}
.home #bandeau-edito--1,
.home #bandeau-edito--2 {
  margin-top: 50px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.home #bandeau-edito--1 .img-prllx-edito,
.home #bandeau-edito--2 .img-prllx-edito {
  position: absolute;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.home #bandeau-edito--1 .container-1400,
.home #bandeau-edito--2 .container-1400 {
  width: 100%;
}
.home #bandeau-edito--1 .zone-visuel .visuel,
.home #bandeau-edito--2 .zone-visuel .visuel {
  position: relative;
  display: block;
  height: 100%;
}
.home #bandeau-edito--1 .zone-texte,
.home #bandeau-edito--2 .zone-texte {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 25px;
  line-height: normal;
}
@media (max-width: 992px) {
  .home #bandeau-edito--1 .zone-texte,
.home #bandeau-edito--2 .zone-texte {
    padding-top: 15px;
    font-size: 22px;
  }
  .home #bandeau-edito--1 .zone-texte p br,
.home #bandeau-edito--2 .zone-texte p br {
    display: none;
  }
}
.home #bandeau-edito--1 .zone-texte p,
.home #bandeau-edito--2 .zone-texte p {
  font-weight: 200;
  font-size: 23px;
}
@media (max-width: 480px) {
  .home #bandeau-edito--1 .zone-texte p,
.home #bandeau-edito--2 .zone-texte p {
    font-size: 21px;
  }
}
.home #bandeau-edito--1 .zone-texte h2,
.home #bandeau-edito--2 .zone-texte h2 {
  font-size: 50px;
  margin-bottom: 5px;
  font-weight: 600;
}
.home #bandeau-edito--1 .zone-texte h2 strong,
.home #bandeau-edito--2 .zone-texte h2 strong {
  color: #ee2e24;
}
@media (max-width: 1200px) {
  .home #bandeau-edito--1 .zone-texte h2,
.home #bandeau-edito--2 .zone-texte h2 {
    font-size: 40px;
  }
}
@media (max-width: 580px) {
  .home #bandeau-edito--1 .zone-texte h2,
.home #bandeau-edito--2 .zone-texte h2 {
    font-size: 30px;
  }
}
.home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list),
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list),
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list {
  margin-top: 50px;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: -webkit-calc(25px + 12px);
  padding-left: calc(25px + 12px);
}
.home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li,
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list li,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li,
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list li {
  list-style-type: none;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li:last-of-type,
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list li:last-of-type,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li:last-of-type,
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list li:last-of-type {
  margin-bottom: 0;
}
.home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li:before,
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list li:before,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li:before,
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list li:before {
  content: "\f00c";
  display: inline-block;
  width: 25px;
  font-weight: 700;
  margin-right: 12px;
  margin-left: -webkit-calc((25px + 12px) * -1);
  margin-left: calc((25px + 12px) * -1);
  color: #ee2e24;
  font-family: "Font Awesome 5 Pro";
}
.home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li ul:first-of-type,
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list li ul:first-of-type,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li ul:first-of-type,
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list li ul:first-of-type {
  margin-top: 0.5rem;
}
.home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li ul li:before,
.home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li ul ul li:before,
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list li ul li:before,
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list li ul ul li:before,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li ul li:before,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li ul ul li:before,
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list li ul li:before,
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list li ul ul li:before {
  content: "•";
  font-size: 28px;
}
@media (max-width: 480px) {
  .home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list),
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list),
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list {
    margin-top: 35px;
  }
  .home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li,
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list li,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li,
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list li {
    font-size: 16px;
    margin-bottom: 0.5rem;
  }
  .home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li:last-of-type,
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list li:last-of-type,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li:last-of-type,
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list li:last-of-type {
    margin-bottom: 0;
  }
  .home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li:before,
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list li:before,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li:before,
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list li:before {
    width: 23px;
    margin-right: 10px;
    margin-left: -webkit-calc((23px + 10px) * -1);
    margin-left: calc((23px + 10px) * -1);
  }
  .home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li ul:first-of-type,
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list li ul:first-of-type,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li ul:first-of-type,
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list li ul:first-of-type {
    margin-top: 0.5rem;
  }
  .home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li ul li:before,
.home #bandeau-edito--1 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li ul ul li:before,
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list li ul li:before,
.home #bandeau-edito--1 .zone-texte .texte ul.is-style-standard-list li ul ul li:before,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li ul li:before,
.home #bandeau-edito--2 .zone-texte .texte ul:not(.slick-dots, #menu--cat-mag, .is-style-spaced-list) li ul ul li:before,
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list li ul li:before,
.home #bandeau-edito--2 .zone-texte .texte ul.is-style-standard-list li ul ul li:before {
    font-size: 25px;
  }
}
.home #bandeau-edito--1 .zone-texte .boutons,
.home #bandeau-edito--2 .zone-texte .boutons {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .home #bandeau-edito--1 .zone-texte .boutons,
.home #bandeau-edito--2 .zone-texte .boutons {
    margin-top: 10px;
  }
}
.home #bandeau-edito--1 .zone-texte .boutons .bouton,
.home #bandeau-edito--2 .zone-texte .boutons .bouton {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 0 5px;
}
@media (max-width: 992px) {
  .home #bandeau-edito--1 .zone-texte .boutons .bouton,
.home #bandeau-edito--2 .zone-texte .boutons .bouton {
    margin: 5px 0;
  }
}
.home #bandeau-edito--1 .zone-texte .boutons .bouton:not(.is-btn-blanc),
.home #bandeau-edito--2 .zone-texte .boutons .bouton:not(.is-btn-blanc) {
  font-family: "Neris", sans-serif;
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  text-decoration: none;
  padding: 15px 35px;
  border: none;
  -webkit-border-radius: 50px;
          border-radius: 50px;
  min-width: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ffffff;
  border: 1px solid #ee2e24;
  background-color: #ee2e24;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .home #bandeau-edito--1 .zone-texte .boutons .bouton:not(.is-btn-blanc),
.home #bandeau-edito--2 .zone-texte .boutons .bouton:not(.is-btn-blanc) {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .home #bandeau-edito--1 .zone-texte .boutons .bouton:not(.is-btn-blanc),
.home #bandeau-edito--2 .zone-texte .boutons .bouton:not(.is-btn-blanc) {
    font-size: 15px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .home #bandeau-edito--1 .zone-texte .boutons .bouton:not(.is-btn-blanc),
.home #bandeau-edito--2 .zone-texte .boutons .bouton:not(.is-btn-blanc) {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.home #bandeau-edito--1 .zone-texte .boutons .bouton:not(.is-btn-blanc) i,
.home #bandeau-edito--2 .zone-texte .boutons .bouton:not(.is-btn-blanc) i {
  margin-left: 5px;
  font-size: 14px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.home #bandeau-edito--1 .zone-texte .boutons .bouton:not(.is-btn-blanc):active, .home #bandeau-edito--1 .zone-texte .boutons .bouton:not(.is-btn-blanc):hover, .home #bandeau-edito--1 .zone-texte .boutons .bouton:not(.is-btn-blanc):focus,
.home #bandeau-edito--2 .zone-texte .boutons .bouton:not(.is-btn-blanc):active,
.home #bandeau-edito--2 .zone-texte .boutons .bouton:not(.is-btn-blanc):hover,
.home #bandeau-edito--2 .zone-texte .boutons .bouton:not(.is-btn-blanc):focus {
  outline: 0 !important;
  outline-offset: 0;
}
.home #bandeau-edito--1 .zone-texte .boutons .bouton:not(.is-btn-blanc):hover,
.home #bandeau-edito--2 .zone-texte .boutons .bouton:not(.is-btn-blanc):hover {
  background-color: #ffffff;
  color: #ee2e24;
  text-decoration: none;
}
.home #bandeau-edito--1 .zone-texte .boutons .bouton:not(.is-btn-blanc):hover i,
.home #bandeau-edito--2 .zone-texte .boutons .bouton:not(.is-btn-blanc):hover i {
  color: #ee2e24;
}
.home #bandeau-edito--1 .zone-texte .boutons .bouton:not(.is-btn-blanc):hover::before, .home #bandeau-edito--1 .zone-texte .boutons .bouton:not(.is-btn-blanc):hover::after,
.home #bandeau-edito--2 .zone-texte .boutons .bouton:not(.is-btn-blanc):hover::before,
.home #bandeau-edito--2 .zone-texte .boutons .bouton:not(.is-btn-blanc):hover::after {
  opacity: 1;
}
.home #bandeau-edito--1 .zone-texte .boutons .bouton.is-btn-blanc,
.home #bandeau-edito--2 .zone-texte .boutons .bouton.is-btn-blanc {
  font-family: "Neris", sans-serif;
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  text-decoration: none;
  padding: 15px 35px;
  border: none;
  -webkit-border-radius: 50px;
          border-radius: 50px;
  min-width: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ee2e24;
  border: 1px solid #ee2e24;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .home #bandeau-edito--1 .zone-texte .boutons .bouton.is-btn-blanc,
.home #bandeau-edito--2 .zone-texte .boutons .bouton.is-btn-blanc {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .home #bandeau-edito--1 .zone-texte .boutons .bouton.is-btn-blanc,
.home #bandeau-edito--2 .zone-texte .boutons .bouton.is-btn-blanc {
    font-size: 15px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .home #bandeau-edito--1 .zone-texte .boutons .bouton.is-btn-blanc,
.home #bandeau-edito--2 .zone-texte .boutons .bouton.is-btn-blanc {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.home #bandeau-edito--1 .zone-texte .boutons .bouton.is-btn-blanc i,
.home #bandeau-edito--2 .zone-texte .boutons .bouton.is-btn-blanc i {
  margin-left: 5px;
  font-size: 14px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.home #bandeau-edito--1 .zone-texte .boutons .bouton.is-btn-blanc:active, .home #bandeau-edito--1 .zone-texte .boutons .bouton.is-btn-blanc:hover, .home #bandeau-edito--1 .zone-texte .boutons .bouton.is-btn-blanc:focus,
.home #bandeau-edito--2 .zone-texte .boutons .bouton.is-btn-blanc:active,
.home #bandeau-edito--2 .zone-texte .boutons .bouton.is-btn-blanc:hover,
.home #bandeau-edito--2 .zone-texte .boutons .bouton.is-btn-blanc:focus {
  outline: 0 !important;
  outline-offset: 0;
}
.home #bandeau-edito--1 .zone-texte .boutons .bouton.is-btn-blanc:hover,
.home #bandeau-edito--2 .zone-texte .boutons .bouton.is-btn-blanc:hover {
  background-color: #ee2e24;
  color: #ffffff;
  text-decoration: none;
}
.home #bandeau-edito--1 .zone-texte .boutons .bouton.is-btn-blanc:hover i,
.home #bandeau-edito--2 .zone-texte .boutons .bouton.is-btn-blanc:hover i {
  color: #ffffff;
}
.home #bandeau-edito--1 .zone-texte .boutons .bouton.is-btn-blanc:hover::before, .home #bandeau-edito--1 .zone-texte .boutons .bouton.is-btn-blanc:hover::after,
.home #bandeau-edito--2 .zone-texte .boutons .bouton.is-btn-blanc:hover::before,
.home #bandeau-edito--2 .zone-texte .boutons .bouton.is-btn-blanc:hover::after {
  opacity: 1;
}
.home #bandeau-edito--1 .img-prllx-edito {
  left: -20px;
  bottom: 15%;
  max-width: 298px;
}
@media (max-width: 1480px) {
  .home #bandeau-edito--1 .img-prllx-edito {
    left: -15px;
    bottom: 11%;
    max-width: 234px;
  }
}
@media (max-width: 993px) {
  .home #bandeau-edito--1 .img-prllx-edito {
    left: -5px;
    bottom: 5%;
    max-width: 40%;
  }
}
@media (min-width: 993px) {
  .home #bandeau-edito--1 {
    margin-top: 100px;
  }
}
.home #bandeau-edito--1 .visuel .pastille {
  position: absolute;
  top: 30px;
  right: 30px;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  text-align: center;
  background-color: #ee2e24;
  color: #ffffff;
  padding: 15px;
  height: 120px;
  width: 120px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  font-size: 20px;
}
.home #bandeau-edito--1 .visuel .pastille:after {
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  background-color: #ffffff;
}
@media (max-width: 1300px) {
  .home #bandeau-edito--1 .visuel .pastille {
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 768px) {
  .home #bandeau-edito--1 .visuel .pastille {
    top: 10px;
    right: 0;
    height: 100px;
    width: 100px;
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .home #bandeau-edito--1 .visuel .pastille {
    height: 90px;
    width: 90px;
    font-size: 15px;
  }
}
.home #bandeau-edito--2 .visuel.prllx-used {
  padding-bottom: 18%;
}
.home #bandeau-edito--2 .img-prllx-edito {
  right: 0;
  bottom: 0;
}
@media (max-width: 1480px) {
  .home #bandeau-edito--2 .img-prllx-edito {
    max-width: 45%;
  }
}
@media (max-width: 993px) {
  .home #bandeau-edito--2 .img-prllx-edito {
    max-width: 40%;
  }
}
@media (max-width: 992px) {
  .home #bandeau-edito--2 > [class^=container-] > .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.home .group-of-contents {
  background: url(../../images/backgrounds/background-interieur.jpg) no-repeat bottom center;
}
.home .group-of-contents #bandeau-citation .center-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .home .group-of-contents #bandeau-citation .center-content {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    position: relative;
  }
  .home .group-of-contents #bandeau-citation .center-content:before {
    content: "";
    opacity: 1;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border: none;
    height: 2px;
    position: relative;
    background-color: #0000;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='119.228' height='2' viewBox='0 0 119.228 2'><path d='M574.9,0H694.128' transform='translate(-574.9 1)' fill='none' stroke='%23707070' stroke-width='2' stroke-dasharray='4 8'/></svg>");
    background-position: right center;
    background-repeat: repeat;
    margin-top: 50px;
    margin-bottom: 50px;
    display: block;
    width: 100%;
  }
}
.home .group-of-contents #bandeau-citation h3 {
  color: #3d393b;
  text-align: center;
  font-size: 20px;
  padding: 0 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.home .group-of-contents #bandeau-citation .ordre-geom .logo-oge {
  max-width: 120px;
  display: block;
  margin: 0 20px 0 0;
}
@media (max-width: 992px) {
  .home .group-of-contents #bandeau-citation .ordre-geom {
    width: 100%;
    text-align: center;
  }
  .home .group-of-contents #bandeau-citation .ordre-geom .logo-oge {
    margin: 0 auto;
  }
}
.home .group-of-contents #bandeau-citation .content-styles {
  max-width: 68%;
}
.home .group-of-contents #bandeau-citation .content-styles .citation {
  text-align: left;
  margin: 0;
  max-width: unset;
  font-size: 25px;
  padding: 30px 20px;
  line-height: 1.5em;
}
@media (min-width: 993px) and (max-width: 1300px) {
  .home .group-of-contents #bandeau-citation .content-styles .citation {
    font-size: 23px;
    line-height: 1.4em;
    background-size: 200px;
  }
}
@media (max-width: 992px) {
  .home .group-of-contents #bandeau-citation .content-styles .citation {
    max-width: 100%;
    font-size: 25px;
    margin: 0 auto 30px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .home .group-of-contents #bandeau-citation .content-styles .citation {
    margin: 15px auto 20px;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .home .group-of-contents #bandeau-citation .content-styles {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
}
.home .group-of-contents #services-et-partenaires .line-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .home .group-of-contents #services-et-partenaires .line-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.home .group-of-contents #services-et-partenaires h3 {
  color: #3d393b;
  text-align: center;
  font-size: 20px;
  padding: 0 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.home .group-of-contents #bandeau-domaines {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .home .group-of-contents #bandeau-domaines .container-1600 {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .home .group-of-contents #bandeau-domaines .separator {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.home .group-of-contents #bandeau-domaines h2 {
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 993px) {
  .home .group-of-contents #bandeau-domaines h2 {
    margin-top: 50px;
  }
}
@media (max-width: 992px) {
  .home .group-of-contents #bandeau-domaines h2 {
    margin-bottom: 20px;
  }
}
.home .group-of-contents #bandeau-domaines .slider--domaines {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 993px) {
  .home .group-of-contents #bandeau-domaines .slider--domaines {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
@media (max-width: 992px) {
  .home .group-of-contents #bandeau-domaines .slider--domaines {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .group-of-contents #bandeau-domaines .slider--domaines .slick-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .home .group-of-contents #bandeau-domaines .slider--domaines .slick-slide {
    height: unset;
    margin: 0 30px;
  }
}
.home .group-of-contents #bandeau-domaines .slider--domaines .domaine {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  position: relative;
  padding: 45px;
  background-color: #ffffff;
  -webkit-border-radius: 15px;
          border-radius: 15px;
  min-width: 242px;
  max-width: 242px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin: 0 5px;
}
.home .group-of-contents #bandeau-domaines .slider--domaines .domaine .global-link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.home .group-of-contents #bandeau-domaines .slider--domaines .domaine .picto-domaine {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}
@media (max-width: 580px) {
  .home .group-of-contents #bandeau-domaines .slider--domaines .domaine .picto-domaine {
    margin-bottom: 20px;
  }
}
.home .group-of-contents #bandeau-domaines .slider--domaines .domaine .titre {
  font-size: 25px;
  line-height: normal;
  font-weight: 300;
}
@media (max-width: 768px) {
  .home .group-of-contents #bandeau-domaines .slider--domaines .domaine .titre {
    font-size: 22px;
  }
}
@media (min-width: 993px) {
  .home .group-of-contents #bandeau-domaines .slider--domaines .domaine:hover {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 993px) and (max-width: 1600px) {
  .home .group-of-contents #bandeau-domaines .slider--domaines .domaine {
    min-width: -webkit-calc(100%/6);
    min-width: calc(100%/6);
    max-width: -webkit-calc(100%/6);
    max-width: calc(100%/6);
    padding: 30px;
    margin: 8px;
  }
  .home .group-of-contents #bandeau-domaines .slider--domaines .domaine .picto-domaine {
    margin-bottom: 15px;
  }
  .home .group-of-contents #bandeau-domaines .slider--domaines .domaine .titre {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .home .group-of-contents #bandeau-domaines .slider--domaines .domaine {
    margin: 30px;
  }
}
.home h2 {
  color: #3d393b;
  font-weight: 500;
}
@media (min-width: 1400px) {
  .home h2 {
    font-size: 2.25rem;
  }
}
.home h2,
.home h3 {
  font-family: "Neris", sans-serif;
}
.home h2.titre,
.home h3.titre {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  font-weight: 500;
}
@media (max-width: 1299px) {
  .home h2.titre,
.home h3.titre {
    font-size: 30px;
  }
  .home h2.titre small,
.home h3.titre small {
    font-size: 20px !important;
  }
}
@media (max-width: 767px) {
  .home h2.titre,
.home h3.titre {
    font-size: 30px;
  }
  .home h2.titre small,
.home h3.titre small {
    font-size: 20px !important;
  }
}
@media (max-width: 479px) {
  .home h2.titre,
.home h3.titre {
    font-size: 25px;
  }
}
.home a.bouton {
  font-family: "Neris", sans-serif;
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  text-decoration: none;
  padding: 15px 35px;
  border: none;
  -webkit-border-radius: 50px;
          border-radius: 50px;
  min-width: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ffffff;
  border: 1px solid transparent;
  background-color: #ee2e24;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-top: 20px;
  padding: 15px 25px;
}
@media (max-width: 1199px) {
  .home a.bouton {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .home a.bouton {
    font-size: 15px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .home a.bouton {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.home a.bouton i {
  margin-left: 5px;
  font-size: 14px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.home a.bouton:active, .home a.bouton:hover, .home a.bouton:focus {
  outline: 0 !important;
  outline-offset: 0;
}
.home a.bouton:hover {
  background-color: #3d393b;
  color: #ffffff;
  text-decoration: none;
}
.home a.bouton:hover i {
  color: #ffffff;
}
.home a.bouton:hover::before, .home a.bouton:hover::after {
  opacity: 1;
}
.home a[class=""],
.home a:not([class]) {
  color: #3d393b;
  position: relative;
  font-weight: inherit;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.home a[class=""]:hover,
.home a:not([class]):hover {
  color: #ee2e24;
}
.home hr,
.home hr.separator {
  opacity: 1;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  border: none;
  height: 2px;
  position: relative;
  background-color: transparent;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='119.228' height='2' viewBox='0 0 119.228 2'><path d='M574.9,0H694.128' transform='translate(-574.9 1)' fill='none' stroke='%23707070' stroke-width='2' stroke-dasharray='4 8'/></svg>");
  background-position: right center;
  background-repeat: repeat;
  margin-top: 50px;
  margin-bottom: 50px;
}