@charset "UTF-8";
/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
/* RESPONSIVE MIXINS BREAKPOINT */
/* CUSTOM WIDTH CONTAINER */
/*
$xlg-container: 1200px;
$lg-container: 90%;
$md-container: 90%;
$sm-container: 90%;
*/
/* CUSTOM WIDTH CONTAINER DEFAULT */
/* CUSTOM COLORS VARIABLES */
/* BASICS COLORS VARIABLES */
/* PADDINGS */
/* PADDINGS FORM ADHESION/INSCRIPTION */
/* Plus grand ou égal custom */
/* Plus petit ou égal custom */
/* Plus grand ou égal à 1400px */
/* Plus petit ou égal à 1399px */
/* Plus grand ou égal à 1200px */
/* Plus petit ou égal à 1199px */
/* Plus grand ou égal à 992px */
/* Plus petit ou égal à 991px */
/* Plus grand ou égal à 768px */
/* Plus petit ou égal à 767px */
/* Plus grand ou égal à 576px */
/* Plus petit ou égal à 575px */
/* Entre 1399px et 1199px */
/* Entre 1199px et 992px */
/* Entre 1199px et 768px */
/* Entre 1199px et 576px */
/* Entre 991px et 768px */
/* Entre 991px et 576px */
/* Entre 767px et 576px */
/*Global variable for REM
    $rem : 16px;
*/
/* RESPONSIVE REM FONT-SIZE
html{
    font-size: $rem;
    @media only screen and (max-width : $lg) {
        html{font-size: 10px;}
    }
    @media only screen and (max-width : $md) {
        html{font-size: 8px;}
    }
    @media only screen and (max-width : $sm) {
        html{font-size: 5px;}
    }
    @media only screen and (max-width : $xs) {
        html{font-size: 5px;}
    }
}*/
.container {
  /*
  @include min-custom(1500px) {
      width: $xlg-container;
  }
  */
}
@media (max-width: 767px) {
  .container {
    width: calc(100vw - 60px);
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: calc(100% - 60px);
  }
}

/* All titles */
/* col-grid */
/* Cancel UL LI list */
/* Solid background with opacity */
/* Solid background with gradient */
/* Background overlay with :after */
/* Gradient background overlay with :after, 6 variables to fill */
/* Absolute positions */
/* clear float after */
/* Fake container */
/* IMAGE Z LAYOUT */
/********************************************************************/
/* DISPLAY RESPONSIVE */
/********************************************************************/
.displaynone {
  display: none;
}

@media (max-width: 1199px) {
  .lg-hidden {
    display: none;
  }
}

@media (max-width: 991px) {
  .md-hidden {
    display: none;
  }
}

@media (max-width: 767px) {
  .sm-hidden {
    display: none;
  }
}

/********************************************************************/
/* CLEAR AFTER */
/********************************************************************/
.clearafter:after {
  content: "";
  display: block;
  clear: both;
}

/********************************************************************/
/* PADDINGS */
/********************************************************************/
.nopaddingtop {
  padding-top: 0 !important;
}

.nopaddingbottom {
  padding-bottom: 0 !important;
}

.xsmallpadding {
  padding: 3rem 0 !important;
}

.xsmallpaddingtop {
  padding-top: 3rem !important;
}

.xsmallpaddingbottom {
  padding-bottom: 3rem !important;
}

.smallpadding {
  padding: 6rem 0 !important;
}

.smallpaddingtop {
  padding-top: 6rem !important;
}

.smallpaddingbottom {
  padding-bottom: 6rem !important;
}

.largepadding {
  padding: 9.5rem 0 !important;
}

.largepaddingtop {
  padding-top: 9.5rem !important;
}

.largepaddingbottom {
  padding-bottom: 9.5rem !important;
}

.xlargepadding {
  padding: 15rem 0 !important;
}

.xlargepaddingtop {
  padding-top: 15rem !important;
}

.xlargepaddingbottom {
  padding-bottom: 15rem !important;
}

@media (max-width: 767px) {
  .smallpadding {
    padding: 40px 0;
  }
  .smallpaddingtop {
    padding-top: 40px;
  }
  .smallpaddingbottom {
    padding-bottom: 40px;
  }
  .largepadding {
    padding: 80px 0;
  }
  .largepaddingtop {
    padding-top: 80px;
  }
  .largepaddingbottom {
    padding-bottom: 80px;
  }
}
/********************************************************************/
/* ALIGNEMENTS */
/********************************************************************/
/* Alignement vertical flex */
.verticalalign .row {
  display: flex;
  flex-wrap: wrap;
}
.verticalalign .row > div {
  display: flex;
  flex-direction: column;
}
.verticalalign .row > div > div {
  width: 100%;
}
.verticalalign.center .row > div {
  align-items: center;
  justify-content: center;
}
.verticalalign.bottom .row > div {
  align-items: center;
  justify-content: flex-end;
}

/* Centrer l'image d'un article */
.centeredimage .mod-article__img, .centeredimage .news-thumbnail {
  display: block;
  margin: 0 auto;
}
.centeredimage .itemImage {
  text-align: center;
}
.centeredimage .itemImage img {
  display: inline-block !important;
}
.centeredimage .item img {
  display: inline-block !important;
}
.centeredimage-marginbottom .mod-article__img, .centeredimage-marginbottom .news-thumbnail {
  display: block;
  margin: 0 auto;
  margin-bottom: 50px;
}
.centeredimage-margintop .mod-article__img, .centeredimage-margintop .news-thumbnail {
  display: block;
  margin: 0 auto;
  margin-top: 50px;
}

/* Centrer tous les éléments d'un article en mobile */
@media (max-width: 767px) {
  .mobileallcenter {
    text-align: center;
  }
  .mobileallcenter .zone-article, .mobileallcenter .zone-article div {
    width: 100%;
  }
}

/* Centrer uniquement l'image d'un article en mobile */
@media (max-width: 767px) {
  .mobileimgcenter {
    text-align: center;
  }
  .mobileimgcenter .zone-article, .mobileimgcenter .zone-article div {
    width: 100%;
  }
  .mobileimgcenter .mod-article__intro {
    margin-top: 30px;
  }
  .mobileimgcenter .mod-article__intro, .mobileimgcenter .mod-article__content .mod-article__content {
    text-align: left;
  }
}

/********************************************************************/
/* MISE EN PAGE */
/********************************************************************/
/* Intro des pages */
.pageIntroduction {
  text-align: center;
}
.pageIntroduction .mod-article__intro, .pageIntroduction .mod-article__content, .pageIntroduction .zone-html > .content {
  max-width: 750px;
  margin: auto;
}

/* Full Width 80% */
@media (min-width: 768px) {
  .fullwidth-80 .container {
    width: 94%;
  }
}
@media (min-width: 1200px) {
  .fullwidth-80 .container {
    width: 80%;
  }
}

/* Layout en Z */
@media (max-width: 767px) {
  .zlayout > .container > .row, .zlayout > .container-fluid > .row {
    display: flex;
    flex-flow: column;
  }
  .zlayout > .container > .row > div:first-child, .zlayout > .container-fluid > .row > div:first-child {
    order: 1;
  }
  .zlayout > .container > .row > div:last-child, .zlayout > .container-fluid > .row > div:last-child {
    order: 0;
  }
  .zlayout .zone-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .md-zlayout > .container > .row, .md-zlayout > .container-fluid > .row {
    display: flex;
    flex-flow: column;
  }
  .md-zlayout > .container > .row > div:first-child, .md-zlayout > .container-fluid > .row > div:first-child {
    order: 1;
  }
  .md-zlayout > .container > .row > div:last-child, .md-zlayout > .container-fluid > .row > div:last-child {
    order: 0;
  }
  .md-zlayout .zone-image {
    margin-bottom: 30px;
  }
}

.container-element {
  display: grid;
  grid-template-columns: 35% 65%;
  grid-template-rows: auto 100%;
  grid-template-areas: "c a" "c b";
}
.container-element .element-1 {
  grid-area: a;
}
.container-element .element-2 {
  grid-area: b;
}
.container-element .element-3 {
  grid-area: c;
}

/********************************************************************/
/* TITLES */
/********************************************************************/
.whitetitles h1, .whitetitles h2, .whitetitles h3, .whitetitles h4, .whitetitles h5, .whitetitles h6, .whitetitles p, .whitetitles .h1, .whitetitles .h2, .whitetitles .h3, .whitetitles .h4, .whitetitles .h5, .whitetitles .h6 {
  color: #fff !important;
}
.whitetitles-h1 h1, .whitetitles-h2 h2, .whitetitles-h3 h3, .whitetitles-h4 h4, .whitetitles-h5 h5, .whitetitles-h6 h6 {
  color: #fff !important;
}

.whiteparagraphe p {
  color: #282828;
}

.darktitles h1, .darktitles h2, .darktitles h3, .darktitles h4, .darktitles h5, .darktitles h6, .darktitles p, .darktitles .h1, .darktitles .h2, .darktitles .h3, .darktitles .h4, .darktitles .h5, .darktitles .h6 {
  color: #282828 !important;
}
.darktitles-h1 h1, .darktitles-h2 h2, .darktitles-h3 h3, .darktitles-h4 h4, .darktitles-h5 h5, .darktitles-h6 h6 {
  color: #282828 !important;
}

.darkparagraphe p {
  color: #282828;
}

.h1 {
  background: linear-gradient(to bottom, #194c33, #bbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pour les modules d'articles en vedette seulement, 
mettre nombre de colonnes à 1 dans le module */
.col-grid[class*=grid] .newsList, .col-grid[class*=grid] .news-mosaic, .col-grid[class*=grid] .eventsList {
  gap: 60px 40px;
}
.col-grid.grid-5 .newsList, .col-grid.grid-5 .news-mosaic, .col-grid.grid-5 .eventsList {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.col-grid.grid-4 .newsList, .col-grid.grid-4 .news-mosaic, .col-grid.grid-4 .eventsList {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.col-grid.grid-3 .newsList, .col-grid.grid-3 .news-mosaic, .col-grid.grid-3 .eventsList {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.col-grid.grid-2 .newsList, .col-grid.grid-2 .news-mosaic, .col-grid.grid-2 .eventsList {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.col-grid.grid-1 .newsList, .col-grid.grid-1 .news-mosaic, .col-grid.grid-1 .eventsList {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-5 .newsList, .col-grid.grid-lg-5 .news-mosaic, .col-grid.grid-lg-5 .eventsList {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-4 .newsList, .col-grid.grid-lg-4 .news-mosaic, .col-grid.grid-lg-4 .eventsList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-3 .newsList, .col-grid.grid-lg-3 .news-mosaic, .col-grid.grid-lg-3 .eventsList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-2 .newsList, .col-grid.grid-lg-2 .news-mosaic, .col-grid.grid-lg-2 .eventsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-1 .newsList, .col-grid.grid-lg-1 .news-mosaic, .col-grid.grid-lg-1 .eventsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-5 .newsList, .col-grid.grid-md-5 .news-mosaic, .col-grid.grid-md-5 .eventsList {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-4 .newsList, .col-grid.grid-md-4 .news-mosaic, .col-grid.grid-md-4 .eventsList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-3 .newsList, .col-grid.grid-md-3 .news-mosaic, .col-grid.grid-md-3 .eventsList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-2 .newsList, .col-grid.grid-md-2 .news-mosaic, .col-grid.grid-md-2 .eventsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-1 .newsList, .col-grid.grid-md-1 .news-mosaic, .col-grid.grid-md-1 .eventsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-5 .newsList, .col-grid.grid-sm-5 .news-mosaic, .col-grid.grid-sm-5 .eventsList {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-4 .newsList, .col-grid.grid-sm-4 .news-mosaic, .col-grid.grid-sm-4 .eventsList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-3 .newsList, .col-grid.grid-sm-3 .news-mosaic, .col-grid.grid-sm-3 .eventsList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-2 .newsList, .col-grid.grid-sm-2 .news-mosaic, .col-grid.grid-sm-2 .eventsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-1 .newsList, .col-grid.grid-sm-1 .news-mosaic, .col-grid.grid-sm-1 .eventsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-5 .newsList, .col-grid.grid-xs-5 .news-mosaic, .col-grid.grid-xs-5 .eventsList {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-4 .newsList, .col-grid.grid-xs-4 .news-mosaic, .col-grid.grid-xs-4 .eventsList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-3 .newsList, .col-grid.grid-xs-3 .news-mosaic, .col-grid.grid-xs-3 .eventsList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-2 .newsList, .col-grid.grid-xs-2 .news-mosaic, .col-grid.grid-xs-2 .eventsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-1 .newsList, .col-grid.grid-xs-1 .news-mosaic, .col-grid.grid-xs-1 .eventsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.col-grid .newsList, .col-grid .news-mosaic, .col-grid .eventsList {
  display: grid;
}
.col-grid .newsList .row, .col-grid .news-mosaic .row, .col-grid .eventsList .row {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.col-grid .newsList .row .item, .col-grid .newsList .row > div, .col-grid .news-mosaic .row .item, .col-grid .news-mosaic .row > div, .col-grid .eventsList .row .item, .col-grid .eventsList .row > div {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Remove outline on link and button */
input, select, textarea, button {
  outline: none !important;
}

*:focus, *:hover, img {
  outline: none;
}

a:active, a:focus {
  outline: 0;
  -moz-outline-style: none;
}

.btn:focus, .btn:active:focus, .btn.active:focus {
  outline: 0;
  -moz-outline-style: none;
}

/* Change selection color */
::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: #FF8762;
}

::selection {
  color: #fff;
  background: #FF8762;
}

/* Remove native back to list button because its a javascrip history back */
.article-back-to-list-histo {
  display: none;
}

/* Hides all the medias sharing button because we never used them */
.plugin-addthis {
  /*display: none;*/
}

/* MOBILE CONTAINER PADDING LARGER BECAUSE OUR DESIGNERS LIKE IT THICC */
@media (max-width: 767px) {
  .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* FIX FLEX ON SAFARI, do not delete */
@media (min-width: 768px) {
  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24 {
    margin: 0 -1px;
  }
}
.zone-banner {
  margin: 0;
}
.zone-banner .col-xs-1, .zone-banner .col-sm-1, .zone-banner .col-md-1, .zone-banner .col-lg-1, .zone-banner .col-xs-2, .zone-banner .col-sm-2, .zone-banner .col-md-2, .zone-banner .col-lg-2, .zone-banner .col-xs-3, .zone-banner .col-sm-3, .zone-banner .col-md-3, .zone-banner .col-lg-3, .zone-banner .col-xs-4, .zone-banner .col-sm-4, .zone-banner .col-md-4, .zone-banner .col-lg-4, .zone-banner .col-xs-5, .zone-banner .col-sm-5, .zone-banner .col-md-5, .zone-banner .col-lg-5, .zone-banner .col-xs-6, .zone-banner .col-sm-6, .zone-banner .col-md-6, .zone-banner .col-lg-6, .zone-banner .col-xs-7, .zone-banner .col-sm-7, .zone-banner .col-md-7, .zone-banner .col-lg-7, .zone-banner .col-xs-8, .zone-banner .col-sm-8, .zone-banner .col-md-8, .zone-banner .col-lg-8, .zone-banner .col-xs-9, .zone-banner .col-sm-9, .zone-banner .col-md-9, .zone-banner .col-lg-9, .zone-banner .col-xs-10, .zone-banner .col-sm-10, .zone-banner .col-md-10, .zone-banner .col-lg-10, .zone-banner .col-xs-11, .zone-banner .col-sm-11, .zone-banner .col-md-11, .zone-banner .col-lg-11, .zone-banner .col-xs-12, .zone-banner .col-sm-12, .zone-banner .col-md-12, .zone-banner .col-lg-12, .zone-banner .col-xs-13, .zone-banner .col-sm-13, .zone-banner .col-md-13, .zone-banner .col-lg-13, .zone-banner .col-xs-14, .zone-banner .col-sm-14, .zone-banner .col-md-14, .zone-banner .col-lg-14, .zone-banner .col-xs-15, .zone-banner .col-sm-15, .zone-banner .col-md-15, .zone-banner .col-lg-15, .zone-banner .col-xs-16, .zone-banner .col-sm-16, .zone-banner .col-md-16, .zone-banner .col-lg-16, .zone-banner .col-xs-17, .zone-banner .col-sm-17, .zone-banner .col-md-17, .zone-banner .col-lg-17, .zone-banner .col-xs-18, .zone-banner .col-sm-18, .zone-banner .col-md-18, .zone-banner .col-lg-18, .zone-banner .col-xs-19, .zone-banner .col-sm-19, .zone-banner .col-md-19, .zone-banner .col-lg-19, .zone-banner .col-xs-20, .zone-banner .col-sm-20, .zone-banner .col-md-20, .zone-banner .col-lg-20, .zone-banner .col-xs-21, .zone-banner .col-sm-21, .zone-banner .col-md-21, .zone-banner .col-lg-21, .zone-banner .col-xs-22, .zone-banner .col-sm-22, .zone-banner .col-md-22, .zone-banner .col-lg-22, .zone-banner .col-xs-23, .zone-banner .col-sm-23, .zone-banner .col-md-23, .zone-banner .col-lg-23, .zone-banner .col-xs-24, .zone-banner .col-sm-24, .zone-banner .col-md-24, .zone-banner .col-lg-24 {
  margin: 0;
}

/* ################################# */
/*###########################  TITRES  ###########################*/
.line-title-banner h1 {
  opacity: 0;
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0.1s;
}
.line-title-banner h2:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .line-title-banner h3:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .line-title-banner h4:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .line-title-banner h5:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .line-title-banner h6:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .line-title-banner .h1:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .line-title-banner .h2:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .line-title-banner .h3:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .line-title-banner .h4:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .line-title-banner .h5:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .line-title-banner .h6:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  opacity: 0;
}
.line-title-banner h2:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .line-title-banner h3:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .line-title-banner h4:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .line-title-banner h5:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .line-title-banner h6:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .line-title-banner .h1:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .line-title-banner .h2:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .line-title-banner .h3:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .line-title-banner .h4:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .line-title-banner .h5:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .line-title-banner .h6:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate {
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0.1s;
}
.line-title-banner ul:not(.nav, .dropdown-menu, .mod-header) li {
  opacity: 0;
}
.line-title-banner ul:not(.nav, .dropdown-menu, .mod-header) li.animate {
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0.1s;
}
.line-title-banner p:not(.fleche, .mod-article__content p) {
  opacity: 0;
}
.line-title-banner p:not(.fleche, .mod-article__content p).animate {
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0.1s;
}
.line-title-banner img:not(.line-actualites img, .line-ca img, .accordeon img, .pop-img img, .banner-icons img, .line-header img, .line-videos img, .arrow-down, .parallax-image img, .rotating-arrows img) {
  opacity: 0;
}
.line-title-banner img:not(.line-actualites img, .line-ca img, .accordeon img, .pop-img img, .banner-icons img, .line-header img, .line-videos img, .arrow-down, .parallax-image img, .rotating-arrows img).animate {
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 0.1s;
}

.home h1 {
  opacity: 0;
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0.1s;
}
.home h2:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .home h3:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .home h4:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .home h5:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .home h6:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .home .h1:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .home .h2:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .home .h3:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .home .h4:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .home .h5:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .home .h6:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  opacity: 0;
}
.home h2:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .home h3:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .home h4:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .home h5:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .home h6:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .home .h1:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .home .h2:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .home .h3:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .home .h4:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .home .h5:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .home .h6:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate {
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0.1s;
}
.home ul:not(.nav, .dropdown-menu, .mod-header) li {
  opacity: 0;
}
.home ul:not(.nav, .dropdown-menu, .mod-header) li.animate {
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0.1s;
}
.home p:not(.fleche, .mod-article__content p) {
  opacity: 0;
}
.home p:not(.fleche, .mod-article__content p).animate {
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0.1s;
}
.home img:not(.line-actualites img, .line-ca img, .accordeon img, .pop-img img, .banner-icons img, .line-header img, .line-videos img, .arrow-down, .parallax-image img, .rotating-arrows img) {
  opacity: 0;
}
.home img:not(.line-actualites img, .line-ca img, .accordeon img, .pop-img img, .banner-icons img, .line-header img, .line-videos img, .arrow-down, .parallax-image img, .rotating-arrows img).animate {
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 0.1s;
}

/*########################### CANCEL ANIMATION  ###########################*/
/** pop-up **/
.modal h2, .modal h3, .modal h4, .modal h5, .modal h6, .modal p, .modal .h1, .modal .h2, .modal .h3, .modal .h4, .modal .h5, .modal .h6 {
  opacity: 1 !important;
  animation: none !important;
}

.cookie-modal h1, .cookie-modal h2, .cookie-modal h3, .cookie-modal h4, .cookie-modal h5, .cookie-modal h6, .cookie-modal p, .cookie-modal .h1, .cookie-modal .h2, .cookie-modal .h3, .cookie-modal .h4, .cookie-modal .h5, .cookie-modal .h6 {
  opacity: 1 !important;
  animation: none !important;
}

/** Blogue **/
.prebuilt-articles-multiples-col3 h1, .prebuilt-articles-multiples-col3 h2, .prebuilt-articles-multiples-col3 h3, .prebuilt-articles-multiples-col3 h4, .prebuilt-articles-multiples-col3 h5, .prebuilt-articles-multiples-col3 h6, .prebuilt-articles-multiples-col3 ul, .prebuilt-articles-multiples-col3 li, .prebuilt-articles-multiples-col3 p, .prebuilt-articles-multiples-col3 .h1, .prebuilt-articles-multiples-col3 .h2, .prebuilt-articles-multiples-col3 .h3, .prebuilt-articles-multiples-col3 .h4, .prebuilt-articles-multiples-col3 .h5, .prebuilt-articles-multiples-col3 .h6, .prebuilt-articles-multiples-col3 img {
  opacity: 1 !important;
}

.mod-article__content h1, .mod-article__content h2, .mod-article__content h3, .mod-article__content h4, .mod-article__content h5, .mod-article__content h6, .mod-article__content ul, .mod-article__content li, .mod-article__content p, .mod-article__content .h1, .mod-article__content .h2, .mod-article__content .h3, .mod-article__content .h4, .mod-article__content .h5, .mod-article__content .h6, .mod-article__content img {
  opacity: 1 !important;
  animation: none !important;
}

/** Événement **/
.line-programmation h1, .line-programmation h2, .line-programmation h3, .line-programmation h4, .line-programmation h5, .line-programmation h6, .line-programmation ul, .line-programmation li, .line-programmation p, .line-programmation .h1, .line-programmation .h2, .line-programmation .h3, .line-programmation .h4, .line-programmation .h5, .line-programmation .h6, .line-programmation img {
  opacity: 1 !important;
}

/** Membre **/
.line-zone-membre h1, .line-zone-membre h2, .line-zone-membre h3, .line-zone-membre h4, .line-zone-membre h5, .line-zone-membre h6, .line-zone-membre ul, .line-zone-membre li, .line-zone-membre p, .line-zone-membre .h1, .line-zone-membre .h2, .line-zone-membre .h3, .line-zone-membre .h4, .line-zone-membre .h5, .line-zone-membre .h6, .line-zone-membre img {
  opacity: 1 !important;
}

.arrow-down {
  opacity: 1 !important;
}

.newsList img {
  opacity: 1 !important;
}

.line-actualites .news-mosaic > .row .news-thumbnail {
  opacity: 1 !important;
}

.home-slider .carousel-inner .item, .home-slider .carousel-inner img, .home-slider .carousel-inner h5, .home-slider .carousel-inner h6, .home-slider .carousel-inner p, .home-slider .carousel-inner .btn {
  opacity: 1 !important;
  animation: none !important;
}

.line-projets-recherche .item .itemImage img {
  animation: none !important;
}

/** Politique de consentement / Cookies**/
.cookie-modal h1, .cookie-modal h2, .cookie-modal h3, .cookie-modal h4, .cookie-modal h5, .cookie-modal h6, .cookie-modal ul, .cookie-modal li, .cookie-modal p, .cookie-modal .h1, .cookie-modal .h2, .cookie-modal .h3, .cookie-modal .h4, .cookie-modal .h5, .cookie-modal .h6, .cookie-modal img {
  opacity: 1 !important;
}

table.accordeon tbody tr td p {
  animation: none !important;
  opacity: 1 !important;
}
table.accordeon tbody tr td img {
  animation: none !important;
  opacity: 1 !important;
}

.parallax-image {
  opacity: 1 !important;
}
.parallax-image p {
  opacity: 1 !important;
}
.parallax-image p img {
  opacity: 1 !important;
}

/**
* ----------------------------------------
* header
* ----------------------------------------
*/
@keyframes slide-down-header {
  0% {
    transform: translate(0, -40px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * Smooth bounce
 * ----------------------------------------
 */
@keyframes move {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(10px);
  }
}
/**
 * ----------------------------------------
 * animation Sticky menu
 * ----------------------------------------
 */
@-webkit-keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
@keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
/**
 * ----------------------------------------
 * bounce_arrow
 * ----------------------------------------
 */
@keyframes bounce_arrow {
  0% {
    -webkit-transform: translateY(30);
    -ms-transform: translateY(30);
    transform: translateY(30);
  }
  40% {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }
  80% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
.slide-left {
  -webkit-animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation slide-right
 * ----------------------------------------
 */
.slide-right {
  -webkit-animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation text-fade-from-left
 * ----------------------------------------
 */
/* Fade From Left */
@-webkit-keyframes text-fade-from-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes text-fade-from-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/* Rotation animation */
@keyframes rotate-circle {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotate-circle-counter {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
/* Keyframes for Falling Effect */
@keyframes fall-in {
  0% {
    transform: translateY(-150px) scale(0.5);
    opacity: 0;
  }
  70% {
    transform: translateY(10px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale3d(1, 1, 1);
  }
  50% {
    -moz-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -moz-transform: scale3d(1, 1, 1);
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale3d(1, 1, 1);
  }
  50% {
    -o-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -o-transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.u--pulse {
  -webkit-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-moz-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-o-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.u--flash {
  -webkit-animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -6vh, 0);
  }
  70% {
    -webkit-transform: translate3d(0, -3vh, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -1vh, 0);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -moz-transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -moz-transform: translate3d(0, -6vh, 0);
  }
  70% {
    -moz-transform: translate3d(0, -3vh, 0);
  }
  90% {
    -moz-transform: translate3d(0, -1vh, 0);
  }
}
@-o-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -o-transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -o-transform: translate3d(0, -6vh, 0);
  }
  70% {
    -o-transform: translate3d(0, -3vh, 0);
  }
  90% {
    -o-transform: translate3d(0, -1vh, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -6vh, 0);
  }
  70% {
    transform: translate3d(0, -3vh, 0);
  }
  90% {
    transform: translate3d(0, -1vh, 0);
  }
}
.u--bounce {
  -webkit-animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(1vw, 0, 0);
  }
}
@-moz-keyframes shake {
  0%, 100% {
    -moz-transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -moz-transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -moz-transform: translate3d(1vw, 0, 0);
  }
}
@-o-keyframes shake {
  0%, 100% {
    -o-transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -o-transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -o-transform: translate3d(1vw, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(1vw, 0, 0);
  }
}
.u--shake {
  -webkit-animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-moz-keyframes swing {
  20% {
    -moz-transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -moz-transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -moz-transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -moz-transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -moz-transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-o-keyframes swing {
  20% {
    -o-transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -o-transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -o-transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -o-transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -o-transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.u--swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.3);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    -webkit-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@-moz-keyframes bounceIn {
  0% {
    -moz-transform: scale(0.3);
    opacity: 0;
  }
  40% {
    -moz-transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    -moz-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}
@-o-keyframes bounceIn {
  0% {
    -o-transform: scale(0.3);
    opacity: 0;
  }
  40% {
    -o-transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    -o-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -o-transform: scale(1);
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  40% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.u--bounceIn {
  -webkit-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale(0.9);
  }
  50%, 65% {
    -webkit-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.3);
    opacity: 0;
  }
}
@-moz-keyframes bounceOut {
  20% {
    -moz-transform: scale(0.9);
  }
  50%, 65% {
    -moz-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(0.3);
    opacity: 0;
  }
}
@-o-keyframes bounceOut {
  20% {
    -o-transform: scale(0.9);
  }
  50%, 55% {
    -o-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -o-transform: scale(0.3);
    opacity: 0;
  }
}
@keyframes bounceOut {
  20% {
    transform: scale(0.9);
  }
  50%, 65% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.3);
    opacity: 0;
  }
}
.u--bounceOut {
  -webkit-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInLeft {
  0% {
    -webkit-transform: translate3d(-25%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(3%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-1%, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(1%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInLeft {
  0% {
    -moz-transform: translate3d(-25%, 0, 0);
  }
  60% {
    -moz-transform: translate3d(3%, 0, 0);
  }
  75% {
    -moz-transform: translate3d(-1%, 0, 0);
  }
  90% {
    -moz-transform: translate3d(1%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInLeft {
  0% {
    -o-transform: translate3d(-25%, 0, 0);
  }
  60% {
    -o-transform: translate3d(3%, 0, 0);
  }
  75% {
    -o-transform: translate3d(-1%, 0, 0);
  }
  90% {
    -o-transform: translate3d(1%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInLeft {
  0% {
    transform: translate3d(-25%, 0, 0);
  }
  60% {
    transform: translate3d(3%, 0, 0);
  }
  75% {
    transform: translate3d(-1%, 0, 0);
  }
  90% {
    transform: translate3d(1%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInLeft {
  -webkit-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInRight {
  0% {
    -webkit-transform: translate3d(25%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-3%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(1%, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-1%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInRight {
  0% {
    -moz-transform: translate3d(25%, 0, 0);
  }
  60% {
    -moz-transform: translate3d(-3%, 0, 0);
  }
  75% {
    -moz-transform: translate3d(1%, 0, 0);
  }
  90% {
    -moz-transform: translate3d(-1%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInRight {
  0% {
    -o-transform: translate3d(25%, 0, 0);
  }
  60% {
    -o-transform: translate3d(-3%, 0, 0);
  }
  75% {
    -o-transform: translate3d(1%, 0, 0);
  }
  90% {
    -o-transform: translate3d(-1%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInRight {
  0% {
    transform: translate3d(25%, 0, 0);
  }
  60% {
    transform: translate3d(-3%, 0, 0);
  }
  75% {
    transform: translate3d(1%, 0, 0);
  }
  90% {
    transform: translate3d(-1%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInRight {
  -webkit-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInUp {
  0% {
    -webkit-transform: translate3d(0, 25%, 0);
  }
  60% {
    -webkit-transform: translate3d(0, -3%, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 1%, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -1%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInUp {
  0% {
    -moz-transform: translate3d(0, 25%, 0);
  }
  60% {
    -moz-transform: translate3d(0, -3%, 0);
  }
  75% {
    -moz-transform: translate3d(0, 1%, 0);
  }
  90% {
    -moz-transform: translate3d(0, -1%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInUp {
  0% {
    -o-transform: translate3d(0, 25%, 0);
  }
  60% {
    -o-transform: translate3d(0, -3%, 0);
  }
  75% {
    -o-transform: translate3d(0, 1%, 0);
  }
  90% {
    -o-transform: translate3d(0, -1%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInUp {
  0% {
    transform: translate3d(0, 25%, 0);
  }
  60% {
    transform: translate3d(0, -3%, 0);
  }
  75% {
    transform: translate3d(0, 1%, 0);
  }
  90% {
    transform: translate3d(0, -1%, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInUp {
  -webkit-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInDown {
  0% {
    -webkit-transform: translate3d(0, -25%, 0);
  }
  60% {
    -webkit-transform: translate3d(0, 3%, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -1%, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 1%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInDown {
  0% {
    -moz-transform: translate3d(0, -25%, 0);
  }
  60% {
    -moz-transform: translate3d(0, 3%, 0);
  }
  75% {
    -moz-transform: translate3d(0, -1%, 0);
  }
  90% {
    -moz-transform: translate3d(0, 1%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInDown {
  0% {
    -o-transform: translate3d(0, -25%, 0);
  }
  60% {
    -o-transform: translate3d(0, 3%, 0);
  }
  75% {
    -o-transform: translate3d(0, -1%, 0);
  }
  90% {
    -o-transform: translate3d(0, 1%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInDown {
  0% {
    transform: translate3d(0, -25%, 0);
  }
  60% {
    transform: translate3d(0, 3%, 0);
  }
  75% {
    transform: translate3d(0, -1%, 0);
  }
  90% {
    transform: translate3d(0, 1%, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInDown {
  -webkit-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.u--fadeIn {
  -webkit-animation: fadeIn 1s ease-in;
  -moz-animation: fadeIn 1s ease-in;
  -o-animation: fadeIn 1s ease-in;
  animation: fadeIn 1s ease-in;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInLeft {
  -webkit-animation: fadeInLeft 1s ease-in;
  -moz-animation: fadeInLeft 1s ease-in;
  -o-animation: fadeInLeft 1s ease-in;
  animation: fadeInLeft 1s ease-in;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInRight {
  -webkit-animation: fadeInRight 1s ease-in;
  -moz-animation: fadeInRight 1s ease-in;
  -o-animation: fadeInRight 1s ease-in;
  animation: fadeInRight 1s ease-in;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, 30%, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translate3d(0, 30%, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInUp {
  -webkit-animation: fadeInUp 1s ease-in;
  -moz-animation: fadeInUp 1s ease-in;
  -o-animation: fadeInUp 1s ease-in;
  animation: fadeInUp 1s ease-in;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInDown {
  -webkit-animation: fadeInDown 1s ease-in;
  -moz-animation: fadeInDown 1s ease-in;
  -o-animation: fadeInDown 1s ease-in;
  animation: fadeInDown 1s ease-in;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.u--fadeOut {
  -webkit-animation: fadeOut 1s ease-out;
  -moz-animation: fadeOut 1s ease-out;
  -o-animation: fadeOut 1s ease-out;
  animation: fadeOut 1s ease-out;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutLeft {
  -webkit-animation: fadeOutLeft 1s ease-out;
  -moz-animation: fadeOutLeft 1s ease-out;
  -o-animation: fadeOutLeft 1s ease-out;
  animation: fadeOutLeft 1s ease-out;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutRight {
  -webkit-animation: fadeOutRight 1s ease-out;
  -moz-animation: fadeOutRight 1s ease-out;
  -o-animation: fadeOutRight 1s ease-out;
  animation: fadeOutRight 1s ease-out;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutUp {
  -webkit-animation: fadeOutUp 1s ease-out;
  -moz-animation: fadeOutUp 1s ease-out;
  -o-animation: fadeOutUp 1s ease-out;
  animation: fadeOutUp 1s ease-out;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutDown {
  -webkit-animation: fadeOutDown 1s ease-out;
  -moz-animation: fadeOutDown 1s ease-out;
  -o-animation: fadeOutDown 1s ease-out;
  animation: fadeOutDown 1s ease-out;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, -180deg);
  }
}
@-moz-keyframes flip {
  0% {
    -moz-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -moz-transform: rotate3d(0, 1, 0, -180deg);
  }
}
@-o-keyframes flip {
  0% {
    -o-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -o-transform: rotate3d(0, 1, 0, -180deg);
  }
}
@keyframes flip {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, -180deg);
  }
}
.u--flip {
  -webkit-animation: flip 2s ease-out;
  -moz-animation: flip 2s ease-out;
  -o-animation: flip 2s ease-out;
  animation: flip 2s ease-out;
}

@-webkit-keyframes flipX {
  0% {
    -webkit-transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
  }
}
@-moz-keyframes flipX {
  0% {
    -moz-transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    -moz-transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -moz-transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -moz-transform: rotate3d(1, 0, 0, 0deg);
  }
}
@-o-keyframes flipX {
  0% {
    -o-transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    -o-transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    -o-transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -o-transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -o-transform: rotate3d(1, 0, 0, 0deg);
  }
}
@keyframes flipX {
  0% {
    transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: rotate3d(1, 0, 0, 0deg);
  }
}
.u--flipX {
  -webkit-animation: flipX 2s ease-in;
  -moz-animation: flipX 2s ease-in;
  -o-animation: flipX 2s ease-in;
  animation: flipX 2s ease-in;
}

@-webkit-keyframes flipY {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
  }
}
@-moz-keyframes flipY {
  0% {
    -moz-transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    -moz-transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -moz-transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -moz-transform: rotate3d(0, 1, 0, 0deg);
  }
}
@-o-keyframes flipY {
  0% {
    -o-transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    -o-transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    -o-transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -o-transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -o-transform: rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes flipY {
  0% {
    transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
}
.u--flipY {
  -webkit-animation: flipY 2s ease-in;
  -moz-animation: flipY 2s ease-in;
  -o-animation: flipY 2s ease-in;
  animation: flipY 2s ease-in;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes rotate {
  0% {
    -o-transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes rotate {
  0% {
    transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    transform: none;
  }
}
.u--rotate {
  -webkit-animation: rotate 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: rotate 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: rotate 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: rotate 1s;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes rotateUpLeft {
  0% {
    -moz-transform: rotate(45deg);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes rotateUpLeft {
  0% {
    -o-transform: rotate(45deg);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes rotateUpLeft {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: none;
  }
}
.u--rotateUpLeft {
  -webkit-animation: rotateUpLeft 1s;
  -moz-animation: rotateUpLeft 1s;
  -o-animation: rotateUpLeft 1s;
  animation: rotateUpLeft 1s;
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -o-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateUpRight {
  0% {
    -webkit-transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes rotateUpRight {
  0% {
    -moz-transform: rotate(-45deg);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes rotateUpRight {
  0% {
    -o-transform: rotate(-45deg);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes rotateUpRight {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: none;
  }
}
.u--rotateUpRight {
  -webkit-animation: rotateUpRight 1s;
  -moz-animation: rotateUpRight 1s;
  -o-animation: rotateUpRight 1s;
  animation: rotateUpRight 1s;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes rotateDownLeft {
  0% {
    -moz-transform: rotate(-45deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes rotateDownLeft {
  0% {
    -o-transform: rotate(-45deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@keyframes rotateDownLeft {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.u--rotateDownLeft {
  -webkit-animation: rotateDownLeft 1s;
  -moz-animation: rotateDownLeft 1s;
  -o-animation: rotateDownLeft 1s;
  animation: rotateDownLeft 1s;
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -o-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes rotateDownRight {
  0% {
    -webkit-transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes rotateDownRight {
  0% {
    -moz-transform: rotate(45deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes rotateDownRight {
  0% {
    -o-transform: rotate(45deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@keyframes rotateDownRight {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.u--rotateDownRight {
  -webkit-animation: rotateDownRight 1s;
  -moz-animation: rotateDownRight 1s;
  -o-animation: rotateDownRight 1s;
  animation: rotateDownRight 1s;
  -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -o-transform-origin: top right;
  transform-origin: top right;
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideUp {
  0% {
    -moz-transform: translate3d(0, 100%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideUp {
  0% {
    -o-transform: translate3d(0, 100%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideUp {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideUp {
  -webkit-animation: slideUp 1s;
  -moz-animation: slideUp 1s;
  -o-animation: slideUp 1s;
  animation: slideUp 1s;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideDown {
  0% {
    -moz-transform: translate3d(0, -100%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideDown {
  0% {
    -o-transform: translate3d(0, -100%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideDown {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideDown {
  -webkit-animation: slideDown 1s;
  -moz-animation: slideDown 1s;
  -o-animation: slideDown 1s;
  animation: slideDown 1s;
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideLeft {
  0% {
    -moz-transform: translate3d(-100%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideLeft {
  0% {
    -o-transform: translate3d(-100%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideLeft {
  -webkit-animation: slideLeft 1s;
  -moz-animation: slideLeft 1s;
  -o-animation: slideLeft 1s;
  animation: slideLeft 1s;
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideRight {
  0% {
    -moz-transform: translate3d(100%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideRight {
  0% {
    -o-transform: translate3d(100%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideRight {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideRight {
  -webkit-animation: slideRight 1s;
  -moz-animation: slideRight 1s;
  -o-animation: slideRight 1s;
  animation: slideRight 1s;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes zoomIn {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes zoomIn {
  0% {
    opacity: 0;
    -o-transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.u--zoomIn {
  -webkit-animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomInDown {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomInDown {
  0% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomInDown {
  -webkit-animation: zoomInDown 1s;
  -moz-animation: zoomInDown 1s;
  -o-animation: zoomInDown 1s;
  animation: zoomInDown 1s;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomInUp {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomInUp {
  0% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomInUp {
  -webkit-animation: zoomInUp 1s;
  -moz-animation: zoomInUp 1s;
  -o-animation: zoomInUp 1s;
  animation: zoomInUp 1s;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -o-transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.u--zoomOut {
  -webkit-animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes zoomOutDown {
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomOutDown {
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomOutDown {
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomOutDown {
  -webkit-animation: zoomOutDown 1s;
  -moz-animation: zoomOutDown 1s;
  -o-animation: zoomOutDown 1s;
  animation: zoomOutDown 1s;
}

@-webkit-keyframes zoomOutUp {
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomOutUp {
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomOutUp {
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomOutUp {
  -webkit-animation: zoomOutUp 1s;
  -moz-animation: zoomOutUp 1s;
  -o-animation: zoomOutUp 1s;
  animation: zoomOutUp 1s;
}

body {
  font-family: "Red Hat Display", sans-serif;
}
body.overflowhidden {
  overflow: hidden;
}

/*###########################  TITRES  ###########################*/
h1, h2, h3, h4, h5, h6, p, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Red Hat Display", sans-serif;
  margin-bottom: 15px;
  width: 100%;
  color: #282828;
  text-wrap: pretty;
}
h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover, p:hover, .h1:hover, .h2:hover, .h3:hover, .h4:hover, .h5:hover, .h6:hover {
  text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, p a:hover, .h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  h1 br, h2 br, h3 br, h4 br, h5 br, h6 br, p br, .h1 br, .h2 br, .h3 br, .h4 br, .h5 br, .h6 br {
    display: none !important;
  }
}
@media (max-width: 575px) {
  h1, h2, h3, h4, h5, h6, p, .h1, .h2, .h3, .h4, .h5, .h6 {
    word-break: keep-all;
  }
}

h1, .h1 {
  font-size: 82px;
  line-height: 83px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 57px;
    line-height: 59px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 36px;
    line-height: 37px;
  }
}

h2, .h2 {
  font-size: 50px;
  line-height: 52px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 30px;
    line-height: 32px;
  }
}

h3, .h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 19px;
    line-height: 25px;
  }
}

h4, .h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  h4, .h4 {
    font-size: 18px;
    line-height: 24px;
  }
}

h5, .h5 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  h5, .h5 {
    font-size: 16px;
    line-height: 20px;
  }
}

h6, .h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  h6, .h6 {
    font-size: 16px;
    line-height: 20px;
  }
}

.text_exergue {
  font-size: 140px;
  line-height: 145px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .text_exergue {
    font-size: 60px;
    line-height: 65px;
  }
}

.text_intro {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .text_intro {
    font-size: 18px;
    line-height: 24px;
  }
}

p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
@media (max-width: 767px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}

.p-small {
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #FF8762;
}
hr {
  border-color: rgba(163, 235, 184, 0.35);
}

a:not(.btn):not(.switch-language):not(.page):not(.article-back-to-list-histo):not(ul.nav a):not(ul.ui-nav a):not(.line-header a):not(.menu-item):not(.news-accordion-header):not(.viewAll):not(.mod-eventflash__item-title a):not(.forum-message-edit):not(.forum-message-actions):not(.theadLink) {
  color: #EE653B;
  word-break: break-word;
}
a:not(.btn):not(.switch-language):not(.page):not(.article-back-to-list-histo):not(ul.nav a):not(ul.ui-nav a):not(.line-header a):not(.menu-item):not(.news-accordion-header):not(.viewAll):not(.mod-eventflash__item-title a):not(.forum-message-edit):not(.forum-message-actions):not(.theadLink):hover, a:not(.btn):not(.switch-language):not(.page):not(.article-back-to-list-histo):not(ul.nav a):not(ul.ui-nav a):not(.line-header a):not(.menu-item):not(.news-accordion-header):not(.viewAll):not(.mod-eventflash__item-title a):not(.forum-message-edit):not(.forum-message-actions):not(.theadLink):active, a:not(.btn):not(.switch-language):not(.page):not(.article-back-to-list-histo):not(ul.nav a):not(ul.ui-nav a):not(.line-header a):not(.menu-item):not(.news-accordion-header):not(.viewAll):not(.mod-eventflash__item-title a):not(.forum-message-edit):not(.forum-message-actions):not(.theadLink):focus {
  color: #EE653B;
  text-decoration: none;
}

ol, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) {
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 25px;
}
ol li, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  ol li, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li {
    font-size: 16px;
    line-height: 24px;
  }
}
ol li::marker, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li::marker {
  color: #282828;
}
ol li ul, ol li ol, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li ul, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li ol {
  margin-top: 0;
  margin-bottom: 0;
}

ol {
  padding-left: 15px;
}

/*###########################  BOUTONS  ###########################*/
/* Calendar event BTN  */
.calendar-link-content .v-btn {
  color: #A3EBB8 !important;
  background-color: transparent !important;
  transition: all 150ms;
  border: 0 !important;
  border-radius: 0 !important;
  height: auto !important;
  font-size: 12px !important;
  padding: 0 !important;
}
.calendar-link-content .v-btn:hover, .calendar-link-content .v-btn:focus, .calendar-link-content .v-btn:active {
  color: #A3EBB8 !important;
  outline: 0;
  outline-offset: 0;
  box-shadow: none;
}
.calendar-link-content .v-btn:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYmVa1qSsf2Dxu9ZwPKEFGQd/asset/images/%2B_calendar.svg");
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.calendar-link-content .v-btn i {
  display: none;
}

/*###########################  BOUTONS RESET  ###########################*/
.btn, input.btn, a.btn {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
}
.btn:hover, .btn:active, .btn:focus, input.btn:hover, input.btn:active, input.btn:focus, a.btn:hover, a.btn:active, a.btn:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .btn, input.btn, a.btn {
    white-space: normal !important;
  }
}
.btn.btn-primary, input.btn.btn-primary, a.btn.btn-primary {
  background-color: #FF8762;
  color: #fff;
  transition: all 0.5s;
  border: 1px solid #FF8762;
  padding: 10px 20px;
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus, input.btn.btn-primary:hover, input.btn.btn-primary:active, input.btn.btn-primary:focus, a.btn.btn-primary:hover, a.btn.btn-primary:active, a.btn.btn-primary:focus {
  background-color: transparent;
  border: 1px solid #FF8762;
  color: #FF8762;
}
.btn.btn-primary.grey-bg, input.btn.btn-primary.grey-bg, a.btn.btn-primary.grey-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #FF8762;
  transition: all 0.5s;
}
.btn.btn-primary.grey-bg:hover, .btn.btn-primary.grey-bg:active, .btn.btn-primary.grey-bg:focus, input.btn.btn-primary.grey-bg:hover, input.btn.btn-primary.grey-bg:active, input.btn.btn-primary.grey-bg:focus, a.btn.btn-primary.grey-bg:hover, a.btn.btn-primary.grey-bg:active, a.btn.btn-primary.grey-bg:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.btn.btn-primary.black-bg, .menu-container .line-menu-header .mod-header .header-ext-login a.btn.btn-primary.member-login, input.btn.btn-primary.black-bg, a.btn.btn-primary.black-bg {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.btn.btn-primary.black-bg:hover, .menu-container .line-menu-header .mod-header .header-ext-login a.btn.btn-primary.member-login:hover, .btn.btn-primary.black-bg:active, .menu-container .line-menu-header .mod-header .header-ext-login a.btn.btn-primary.member-login:active, .btn.btn-primary.black-bg:focus, .menu-container .line-menu-header .mod-header .header-ext-login a.btn.btn-primary.member-login:focus, input.btn.btn-primary.black-bg:hover, input.btn.btn-primary.black-bg:active, input.btn.btn-primary.black-bg:focus, a.btn.btn-primary.black-bg:hover, a.btn.btn-primary.black-bg:active, a.btn.btn-primary.black-bg:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.btn.btn-primary.orange-bg, input.btn.btn-primary.orange-bg, a.btn.btn-primary.orange-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.btn.btn-primary.orange-bg:hover, .btn.btn-primary.orange-bg:active, .btn.btn-primary.orange-bg:focus, input.btn.btn-primary.orange-bg:hover, input.btn.btn-primary.orange-bg:active, input.btn.btn-primary.orange-bg:focus, a.btn.btn-primary.orange-bg:hover, a.btn.btn-primary.orange-bg:active, a.btn.btn-primary.orange-bg:focus {
  background-color: #fff;
  border: 1px solid #fff;
  color: #282828;
}
.btn.btn-secondary, input.btn.btn-secondary, a.btn.btn-secondary {
  background-color: #fff;
  color: #282828;
  transition: all 0.5s;
  border: 1px solid #FF8762;
  padding: 10px 20px;
}
.btn.btn-secondary:hover, .btn.btn-secondary:active, .btn.btn-secondary:focus, input.btn.btn-secondary:hover, input.btn.btn-secondary:active, input.btn.btn-secondary:focus, a.btn.btn-secondary:hover, a.btn.btn-secondary:active, a.btn.btn-secondary:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.btn.btn-third, input.btn.btn-third, a.btn.btn-third {
  width: 360px;
  height: 203px;
  padding: 40px 140px 0 20px;
  color: #282828;
  border-radius: 55px;
  align-items: flex-start;
  white-space: wrap;
  text-align: left;
  font-size: 23px;
  line-height: 25px;
  font-weight: 500;
  position: relative;
  transition: ease 0.5s all;
}
@media (max-width: 1199px) {
  .btn.btn-third, input.btn.btn-third, a.btn.btn-third {
    width: 280px;
    padding-right: 80px;
  }
}
.btn.btn-third:before, input.btn.btn-third:before, a.btn.btn-third:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Bien_au_travail/btn-third-circle.svg);
  background-repeat: no-repeat;
  width: 73px;
  height: 73px;
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.btn.btn-third:after, input.btn.btn-third:after, a.btn.btn-third:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Bien_au_travail/btn-third-arrow.svg);
  background-repeat: no-repeat;
  width: 87px;
  height: 57px;
  position: absolute;
  bottom: 23px;
  right: 25px;
}
.btn.btn-third:hover:after, input.btn.btn-third:hover:after, a.btn.btn-third:hover:after {
  animation: 1s bounce_arrow infinite;
}
.btn.btn-third.beige, input.btn.btn-third.beige, a.btn.btn-third.beige {
  background: #C7A8A6;
}
.btn.btn-third.beige:hover, input.btn.btn-third.beige:hover, a.btn.btn-third.beige:hover {
  background: rgba(199, 168, 166, 0.7);
}
.btn.btn-third.orange, input.btn.btn-third.orange, a.btn.btn-third.orange {
  background: #FF8762;
}
.btn.btn-third.orange:hover, input.btn.btn-third.orange:hover, a.btn.btn-third.orange:hover {
  background: rgba(255, 135, 98, 0.7);
}
.btn.btn-third.green, input.btn.btn-third.green, a.btn.btn-third.green {
  background: #A3EBB8;
}
.btn.btn-third.green:hover, input.btn.btn-third.green:hover, a.btn.btn-third.green:hover {
  background: rgba(163, 235, 184, 0.7);
}
.btn.btn-link, input.btn.btn-link, a.btn.btn-link {
  background-color: transparent;
  color: #282828;
  padding: 15px 0;
  transition: all 0.5s;
  border: none;
  border-bottom: 1px solid #FF8762;
  border-radius: 0;
}
.btn.btn-link:hover, .btn.btn-link:active, .btn.btn-link:focus, input.btn.btn-link:hover, input.btn.btn-link:active, input.btn.btn-link:focus, a.btn.btn-link:hover, a.btn.btn-link:active, a.btn.btn-link:focus {
  background-color: transparent;
  color: #FF8762;
  border: none;
  border-bottom: 1px solid #A3EBB8;
}
.btn.btn-arrow, input.btn.btn-arrow, a.btn.btn-arrow {
  font-size: 50px;
  line-height: 52px;
  color: #282828 !important;
  height: auto;
  display: inline-block;
  text-align: center !important;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #FF8762;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
  transition: all 0.5s;
  position: relative;
}
@media (max-width: 767px) {
  .btn.btn-arrow, input.btn.btn-arrow, a.btn.btn-arrow {
    font-size: 30px;
    line-height: 32px;
  }
}
.btn.btn-arrow:after, input.btn.btn-arrow:after, a.btn.btn-arrow:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/btn-arrow-up.svg);
  width: 126px;
  height: 126px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: -140px;
  display: inline-block;
  animation-name: none;
}
@media (max-width: 767px) {
  .btn.btn-arrow:after, input.btn.btn-arrow:after, a.btn.btn-arrow:after {
    background-size: contain;
    width: 74px;
    height: 74px;
    top: -90px;
  }
}
.btn.btn-arrow:hover, .btn.btn-arrow:focus, input.btn.btn-arrow:hover, input.btn.btn-arrow:focus, a.btn.btn-arrow:hover, a.btn.btn-arrow:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #FF8762;
}
.btn.btn-arrow:hover:after, .btn.btn-arrow:focus:after, input.btn.btn-arrow:hover:after, input.btn.btn-arrow:focus:after, a.btn.btn-arrow:hover:after, a.btn.btn-arrow:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-name: bounce_arrow;
  -moz-animation-name: bounce_arrow;
}
.btn.btn-arrow.bottom, input.btn.btn-arrow.bottom, a.btn.btn-arrow.bottom {
  font-size: 24px;
  line-height: 30px;
  height: 50px;
}
.btn.btn-arrow.bottom:after, input.btn.btn-arrow.bottom:after, a.btn.btn-arrow.bottom:after {
  top: 100px;
}
@media (max-width: 767px) {
  .btn.btn-arrow.bottom:after, input.btn.btn-arrow.bottom:after, a.btn.btn-arrow.bottom:after {
    top: 70px;
  }
}
.btn.btn-back, input.btn.btn-back, a.btn.btn-back {
  font-size: 16px;
  line-height: 24px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #FF8762;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
  transition: all 0.5s;
  position: relative;
}
.btn.btn-back:before, input.btn.btn-back:before, a.btn.btn-back:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-arrow.svg");
  background-repeat: no-repeat;
  left: -13px;
  margin-top: -2px;
  position: relative;
  display: inline-block;
  width: 5px;
  height: 8px;
  animation-name: none;
  transform: rotate(180deg);
}
.btn.btn-back:hover, .btn.btn-back:focus, input.btn.btn-back:hover, input.btn.btn-back:focus, a.btn.btn-back:hover, a.btn.btn-back:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #A3EBB8;
}
.btn.btn-back:hover:before, .btn.btn-back:focus:before, input.btn.btn-back:hover:before, input.btn.btn-back:focus:before, a.btn.btn-back:hover:before, a.btn.btn-back:focus:before {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-name: bounce_arrow;
  -moz-animation-name: bounce_arrow;
}
.btn.btn-download, input.btn.btn-download, a.btn.btn-download {
  background-color: #EE653B;
  color: #fff;
  transition: all 0.5s;
  border: 1px solid #EE653B;
  margin-left: 100px;
  position: relative;
}
.btn.btn-download:hover, .btn.btn-download:active, .btn.btn-download:focus, input.btn.btn-download:hover, input.btn.btn-download:active, input.btn.btn-download:focus, a.btn.btn-download:hover, a.btn.btn-download:active, a.btn.btn-download:focus {
  background-color: transparent;
  border: 1px solid #EE653B;
  color: #282828;
}
.btn.btn-download:hover:before, .btn.btn-download:active:before, .btn.btn-download:focus:before, input.btn.btn-download:hover:before, input.btn.btn-download:active:before, input.btn.btn-download:focus:before, a.btn.btn-download:hover:before, a.btn.btn-download:active:before, a.btn.btn-download:focus:before {
  background-color: #A3EBB8;
}
.btn.btn-download:after, input.btn.btn-download:after, a.btn.btn-download:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Bien_au_travail/_outils/download-icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 72px;
  height: 72px;
  position: absolute;
  left: -85px;
  top: -10px;
  transition: all 150ms;
}
@media (max-width: 767px) {
  .btn.btn-download:after, input.btn.btn-download:after, a.btn.btn-download:after {
    top: -5px;
  }
}
.btn.btn-default, input.btn.btn-default, a.btn.btn-default {
  background-color: #FF8762;
  color: #fff;
  transition: all 0.5s;
  border: 1px solid #FF8762;
  padding: 10px 20px;
}
.btn.btn-default:hover, .btn.btn-default:active, .btn.btn-default:focus, input.btn.btn-default:hover, input.btn.btn-default:active, input.btn.btn-default:focus, a.btn.btn-default:hover, a.btn.btn-default:active, a.btn.btn-default:focus {
  background-color: transparent;
  border: 1px solid #FF8762;
  color: #FF8762;
}
.btn.btn-default.grey-bg, input.btn.btn-default.grey-bg, a.btn.btn-default.grey-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #FF8762;
  transition: all 0.5s;
}
.btn.btn-default.grey-bg:hover, .btn.btn-default.grey-bg:active, .btn.btn-default.grey-bg:focus, input.btn.btn-default.grey-bg:hover, input.btn.btn-default.grey-bg:active, input.btn.btn-default.grey-bg:focus, a.btn.btn-default.grey-bg:hover, a.btn.btn-default.grey-bg:active, a.btn.btn-default.grey-bg:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.btn.btn-default.black-bg, .menu-container .line-menu-header .mod-header .header-ext-login a.btn.btn-default.member-login, input.btn.btn-default.black-bg, a.btn.btn-default.black-bg {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.btn.btn-default.black-bg:hover, .menu-container .line-menu-header .mod-header .header-ext-login a.btn.btn-default.member-login:hover, .btn.btn-default.black-bg:active, .menu-container .line-menu-header .mod-header .header-ext-login a.btn.btn-default.member-login:active, .btn.btn-default.black-bg:focus, .menu-container .line-menu-header .mod-header .header-ext-login a.btn.btn-default.member-login:focus, input.btn.btn-default.black-bg:hover, input.btn.btn-default.black-bg:active, input.btn.btn-default.black-bg:focus, a.btn.btn-default.black-bg:hover, a.btn.btn-default.black-bg:active, a.btn.btn-default.black-bg:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.btn.btn-default.orange-bg, input.btn.btn-default.orange-bg, a.btn.btn-default.orange-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.btn.btn-default.orange-bg:hover, .btn.btn-default.orange-bg:active, .btn.btn-default.orange-bg:focus, input.btn.btn-default.orange-bg:hover, input.btn.btn-default.orange-bg:active, input.btn.btn-default.orange-bg:focus, a.btn.btn-default.orange-bg:hover, a.btn.btn-default.orange-bg:active, a.btn.btn-default.orange-bg:focus {
  background-color: #fff;
  border: 1px solid #fff;
  color: #282828;
}

.btn {
  margin-right: 30px;
}
.btn + .btn, .btn:only-of-type {
  margin-right: 0;
}

.back-to-list {
  background-color: transparent;
  color: #282828;
  padding: 15px 0;
  transition: all 0.5s;
  border: none;
  border-bottom: 1px solid #FF8762;
  border-radius: 0;
}
.back-to-list:hover, .back-to-list:active, .back-to-list:focus {
  background-color: transparent;
  color: #FF8762;
  border: none;
  border-bottom: 1px solid #A3EBB8;
}

/*###########################  FORMULAIRE  ###########################*/
/* INPUTS */
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #282828;
  -webkit-box-shadow: 0 0 0 rgb(5, 5, 5) 0px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* CONFIRMATION */
/* added H1 - never need to use it */
.formbuilder-confirmation-title {
  display: none;
}

/* Formulaire - Style Global */
.zone-crm #formbuilder-add-wrapper h2, .zone-crm #formbuilder-add-wrapper h3, .zone-crm #formbuilder-add-wrapper h4, .zone-crm #formbuilder-add-wrapper h5, .zone-crm #formbuilder-add-wrapper h6, .zone-crm #formbuilder-add-wrapper p {
  color: #fff;
  margin-bottom: 40px;
}

form.form-horizontal,
form.search-form {
  /*Fix col-md-12 full width qui affiche a moitié - width égale*/
  /*Static Text in forms*/
}
form.form-horizontal .col-sm-24 .col-md-12,
form.search-form .col-sm-24 .col-md-12 {
  width: 100%;
  /*
  @include min-md {
  	padding: 0 15px 0px 0!important;
  }
  */
}
form.form-horizontal .form-group,
form.search-form .form-group {
  margin-left: 0px;
  margin-right: 0px;
  /* Required Red Star Styles */
  /* Input Global Style */
  /* Direct input overrides */
  /*Category Dropdown Styles*/
  /*Keywords Dropdown Styles*/
  /*Error Text Style*/
}
form.form-horizontal .form-group .col-md-12, form.form-horizontal .form-group .col-sm-17, form.form-horizontal .form-group .col-sm-24,
form.search-form .form-group .col-md-12,
form.search-form .form-group .col-sm-17,
form.search-form .form-group .col-sm-24 {
  padding: 0;
}
form.form-horizontal .form-group label.control-label,
form.search-form .form-group label.control-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 0;
  color: #282828;
}
form.form-horizontal .form-group span.control-label--required,
form.search-form .form-group span.control-label--required {
  padding-left: 5px;
  color: #282828;
}
form.form-horizontal .form-group input:not(.btn), form.form-horizontal .form-group select, form.form-horizontal .form-group textarea,
form.search-form .form-group input:not(.btn),
form.search-form .form-group select,
form.search-form .form-group textarea {
  background-color: #fff !important;
  color: #282828 !important;
  border: 1px solid #B7C4D7;
  border-radius: 10px;
}
form.form-horizontal .form-group select, form.form-horizontal .form-group input.form-control, form.form-horizontal .form-group .chosen-choices,
form.search-form .form-group select,
form.search-form .form-group input.form-control,
form.search-form .form-group .chosen-choices {
  border: 1px solid #B7C4D7 !important;
  padding: 15px !important;
  height: 51px !important;
  border-radius: 10px;
}
form.form-horizontal .form-group textarea,
form.search-form .form-group textarea {
  padding: 15px !important;
  border-radius: 10px;
}
form.form-horizontal .form-group select,
form.search-form .form-group select {
  -webkit-border-radius: 0px !important;
  border-radius: 10px !important;
}
form.form-horizontal .form-group .input-checkbox .checkbox label,
form.search-form .form-group .input-checkbox .checkbox label {
  font-size: 16px;
  color: #282828;
}
form.form-horizontal .form-group .input-file,
form.search-form .form-group .input-file {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
form.form-horizontal .form-group .input-radio,
form.search-form .form-group .input-radio {
  display: flex;
}
form.form-horizontal .form-group .input-radio label,
form.search-form .form-group .input-radio label {
  color: #282828;
  display: flex;
  margin-right: 20px;
}
form.form-horizontal .form-group .optin-field .checkbox label,
form.search-form .form-group .optin-field .checkbox label {
  color: #282828;
}
form.form-horizontal .form-group .form-element-choix_unique .input-radio,
form.search-form .form-group .form-element-choix_unique .input-radio {
  display: flex;
}
form.form-horizontal .form-group .form-element-choix_unique .input-radio .choix_unique label,
form.search-form .form-group .form-element-choix_unique .input-radio .choix_unique label {
  color: #282828;
}
form.form-horizontal .form-group select.moteur-recherche, form.form-horizontal .form-group select, form.form-horizontal .form-group select.moteur-recherche, form.form-horizontal .form-group select#category_id, form.form-horizontal .form-group .chosen-choices,
form.search-form .form-group select.moteur-recherche,
form.search-form .form-group select,
form.search-form .form-group select.moteur-recherche,
form.search-form .form-group select#category_id,
form.search-form .form-group .chosen-choices {
  width: 100%;
  max-width: 400px;
  min-width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/caret-down.svg) no-repeat right 12px center !important;
  background-size: 16px !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices, form.form-horizontal .form-group .chosen-container-multi .chosen-choices,
form.search-form .form-group .form-element-keywords .chosen-choices,
form.search-form .form-group .chosen-container-multi .chosen-choices {
  height: auto !important;
  padding-right: 60px !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-field, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-field,
form.search-form .form-group .form-element-keywords .chosen-choices .search-field,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-field {
  height: 21px !important;
  line-height: 22px !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-field input, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-field input,
form.search-form .form-group .form-element-keywords .chosen-choices .search-field input,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-field input {
  height: 20px;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice {
  display: block;
  width: 100%;
  background-color: transparent !important;
  color: #282828 !important;
  font-size: 15px;
  padding-left: 15px !important;
  border: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
  opacity: 1 !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice span, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice span,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice span,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice span {
  vertical-align: -webkit-baseline-middle;
  margin: 0px 5px 0px 0 !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice .search-choice-close, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice .search-choice-close,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice .search-choice-close {
  right: auto;
  left: 0;
  top: 9px !important;
  filter: invert(1);
}
form.form-horizontal .form-group ul.error,
form.search-form .form-group ul.error {
  margin: 0;
}
form.form-horizontal .form-group ul.error li.text-danger,
form.search-form .form-group ul.error li.text-danger {
  padding: 3px 10px 0px 10px;
  color: #000;
  background-color: #ffcece;
  font-size: 12px;
}
form.form-horizontal p.form-control-static,
form.search-form p.form-control-static {
  padding-top: 0;
  margin-top: 0;
}
form.form-horizontal .crm-footer-frame,
form.search-form .crm-footer-frame {
  margin-top: 30px;
  text-align: center;
}

/* Miscellaneous forms */
#ui-form .ui-section__content {
  background-color: rgba(163, 235, 184, 0.1);
}
#ui-form .ui-section__content h2 {
  color: #A3EBB8;
}

.overrideformtitle .zone-crm h1 {
  font-size: 50px;
  line-height: 52px;
  font-weight: 400;
  text-transform: initial;
  text-align: center;
}
@media (max-width: 767px) {
  .overrideformtitle .zone-crm h1 {
    font-size: 30px;
    line-height: 32px;
  }
}

#form-formbuilder .help-block {
  display: inline;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 5px;
  color: #FF8762;
  font-size: 14px;
  line-height: 24px;
}

/* Formulaire Inscription membre/evenement*/
/*Styles Global*/
.zone-member .form-withProgress__wrapper .section {
  margin-bottom: 50px;
}
.zone-member #login_content_box {
  background-color: transparent;
}
@media (max-width: 767px) {
  .zone-member #login_content_box {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}
.zone-member #member_adhesion_form {
  background-color: #FFFFFF;
}

.zone-event .form-withProgress__wrapper {
  background-color: #FFFFFF;
}

.zone-event h1.form-withProgress__title-main,
.zone-member h1.form-withProgress__title-main {
  font-size: 56px;
}
@media (max-width: 991px) {
  .zone-event h1.form-withProgress__title-main,
  .zone-member h1.form-withProgress__title-main {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .zone-event h1.form-withProgress__title-main,
  .zone-member h1.form-withProgress__title-main {
    font-size: 31px;
    line-height: 35px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  padding: 50px;
  /*Formulaire*/
  /*Récapitulatif*/
  /*Total box*/
  /*Bottom Nav*/
}
@media (max-width: 991px) {
  .zone-event .form-withProgress__wrapper,
  .zone-member .form-withProgress__wrapper {
    padding: 32px 16px;
  }
}
.zone-event .form-withProgress__wrapper h2.section-title,
.zone-member .form-withProgress__wrapper h2.section-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  padding-bottom: 16px;
}
.zone-event .form-withProgress__wrapper .form-group input, .zone-event .form-withProgress__wrapper .form-group select,
.zone-member .form-withProgress__wrapper .form-group input,
.zone-member .form-withProgress__wrapper .form-group select {
  background-color: #f7f7f7;
}
.zone-event .form-withProgress__wrapper fieldset h2,
.zone-member .form-withProgress__wrapper fieldset h2 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper fieldset h2,
  .zone-member .form-withProgress__wrapper fieldset h2 {
    font-size: 16px;
    line-height: 20px;
  }
}
.zone-event .form-withProgress__wrapper fieldset legend,
.zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 21px;
  line-height: 26px;
  font-weight: 400;
}
.zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
.zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  color: #FF8762;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
  .zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
  .zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
    font-size: 14px;
  }
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-event .form-withProgress__wrapper #fieldset-total,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-member .form-withProgress__wrapper #fieldset-total {
  padding: 15px 0 30px 0;
  margin-bottom: 0 !important;
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title {
  text-transform: initial;
  font-size: 26px;
  color: #FF8762 !important;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
  .zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title,
  .zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
  .zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title {
    font-size: 20px;
  }
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
.zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price {
  text-align: right;
  font-size: 26px;
  color: #FF8762 !important;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
  .zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price,
  .zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
  .zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price {
    font-size: 20px;
  }
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment {
  background-color: #FF8762;
  color: #fff;
  transition: all 0.5s;
  border: 1px solid #FF8762;
  padding: 10px 20px;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus {
  background-color: transparent;
  border: 1px solid #FF8762;
  color: #FF8762;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.grey-bg,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.grey-bg,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.grey-bg,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.grey-bg,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.grey-bg,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.grey-bg,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.grey-bg,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.grey-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #FF8762;
  transition: all 0.5s;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.grey-bg:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.grey-bg:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.grey-bg:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.grey-bg:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.grey-bg:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.grey-bg:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.grey-bg:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.grey-bg:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.grey-bg:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.grey-bg:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.grey-bg:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.grey-bg:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.grey-bg:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.grey-bg:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.grey-bg:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.grey-bg:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.grey-bg:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.grey-bg:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.grey-bg:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.grey-bg:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.grey-bg:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.grey-bg:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.grey-bg:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.grey-bg:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.black-bg, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer .menu-container .line-menu-header .mod-header .header-ext-login a#singlebutton.member-login, .menu-container .line-menu-header .mod-header .header-ext-login .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.member-login,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.black-bg,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.black-bg,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.black-bg,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.black-bg,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer .menu-container .line-menu-header .mod-header .header-ext-login a#singlebutton.member-login,
.menu-container .line-menu-header .mod-header .header-ext-login .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.member-login,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.black-bg,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.black-bg,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.black-bg {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.black-bg:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer .menu-container .line-menu-header .mod-header .header-ext-login a#singlebutton.member-login:hover, .menu-container .line-menu-header .mod-header .header-ext-login .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.member-login:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.black-bg:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer .menu-container .line-menu-header .mod-header .header-ext-login a#singlebutton.member-login:active, .menu-container .line-menu-header .mod-header .header-ext-login .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.member-login:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.black-bg:focus, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer .menu-container .line-menu-header .mod-header .header-ext-login a#singlebutton.member-login:focus, .menu-container .line-menu-header .mod-header .header-ext-login .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.member-login:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.black-bg:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.black-bg:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.black-bg:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.black-bg:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.black-bg:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.black-bg:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.black-bg:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.black-bg:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.black-bg:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.black-bg:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer .menu-container .line-menu-header .mod-header .header-ext-login a#singlebutton.member-login:hover,
.menu-container .line-menu-header .mod-header .header-ext-login .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.member-login:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.black-bg:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer .menu-container .line-menu-header .mod-header .header-ext-login a#singlebutton.member-login:active,
.menu-container .line-menu-header .mod-header .header-ext-login .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.member-login:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.black-bg:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer .menu-container .line-menu-header .mod-header .header-ext-login a#singlebutton.member-login:focus,
.menu-container .line-menu-header .mod-header .header-ext-login .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.member-login:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.black-bg:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.black-bg:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.black-bg:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.black-bg:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.black-bg:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.black-bg:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.black-bg:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.black-bg:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.black-bg:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.orange-bg,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.orange-bg,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.orange-bg,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.orange-bg,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.orange-bg,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.orange-bg,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.orange-bg,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.orange-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.orange-bg:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.orange-bg:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.orange-bg:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.orange-bg:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.orange-bg:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.orange-bg:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.orange-bg:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.orange-bg:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.orange-bg:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.orange-bg:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.orange-bg:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.orange-bg:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.orange-bg:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.orange-bg:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.orange-bg:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.orange-bg:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.orange-bg:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.orange-bg:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.orange-bg:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.orange-bg:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.orange-bg:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.orange-bg:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.orange-bg:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.orange-bg:focus {
  background-color: #fff;
  border: 1px solid #fff;
  color: #282828;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  padding: 10px 20px !important;
  background-color: transparent !important;
  color: #282828 !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
  text-decoration: none !important;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
  .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step,
  .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
  .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step {
    white-space: normal !important;
  }
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus {
  text-decoration: none !important;
  background-color: #FF8762 !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover {
  background: transparent;
  color: #fff !important;
  border: none;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
  .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step,
  .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
  .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step {
    margin-right: 0;
    justify-content: center;
  }
}
.zone-event .membership-delegate-manage .header .membership-delegate-name,
.zone-member .membership-delegate-manage .header .membership-delegate-name {
  font-weight: 400;
}
.zone-event .membership-delegate-manage .header .membership-delegate-quantity,
.zone-member .membership-delegate-manage .header .membership-delegate-quantity {
  color: #6B82A4;
}
.zone-event .membership-delegate-manage .footer .btn,
.zone-member .membership-delegate-manage .footer .btn {
  height: 55px !important;
  padding: 20px 35px !important;
  background-color: #FF8762 !important;
  color: #fff !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
}
.zone-event .membership-delegate-manage .footer .btn:hover, .zone-event .membership-delegate-manage .footer .btn:active, .zone-event .membership-delegate-manage .footer .btn:focus,
.zone-member .membership-delegate-manage .footer .btn:hover,
.zone-member .membership-delegate-manage .footer .btn:active,
.zone-member .membership-delegate-manage .footer .btn:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}

.modal .modal-dialog .modal-content .modal-footer button {
  height: 55px !important;
  padding: 20px 35px !important;
  background-color: #FF8762 !important;
  color: #fff !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
}
.modal .modal-dialog .modal-content .modal-footer button:hover, .modal .modal-dialog .modal-content .modal-footer button:active, .modal .modal-dialog .modal-content .modal-footer button:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}

/*ETAPES INSCRIPTION NOUVEAU MEMBRE*/
/*Étapes 1 - Type d'adhesion*/
.zone-member {
  padding-top: 90px;
}
.zone-member .form-withProgress__wrapper {
  background: #fff;
}
.zone-member .form-withProgress__wrapper #member_adhesion_form {
  margin-top: 0px;
  padding: 0px 95px;
  background-color: #fff;
}
@media (max-width: 991px) {
  .zone-member .form-withProgress__wrapper #member_adhesion_form {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #member_adhesion_form {
    padding: 0;
  }
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
  font-family: "Red Hat Display", sans-serif;
  padding-bottom: 16px;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list h2 {
    font-size: 19px;
    line-height: 25px;
  }
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item {
  border: 0;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .price-membership-badge {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .price-membership-badge {
    font-size: 16px;
    line-height: 20px;
  }
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .radio label {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .radio label {
    font-size: 16px;
    line-height: 20px;
  }
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .adh-date {
  font-size: 14px;
  color: #282828;
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .adh-description {
  padding-left: 20px;
  font-size: 14px;
  color: #FF8762;
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .adh-description p, .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .adh-description ul li {
  font-size: 14px !important;
  color: #282828 !important;
  font-weight: 400 !important;
}
.zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .memberships_options h4 {
  color: #282828;
  font-size: 16px;
  line-height: 24px;
}
.zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom {
  background: #A3EBB8;
  border-bottom: none;
  display: flex;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom {
    padding: 5px;
  }
}
.zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .badge {
  order: 1;
  flex: 1;
}
.zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group {
  position: relative;
  order: 0;
  flex: 0 0 90%;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group {
    flex: 0 0 70%;
  }
}
.zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group label {
  font-weight: 600;
}
.zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group select {
  max-width: 50%;
  background-color: #fff !important;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group select {
    max-width: 80%;
  }
}
@media (min-width: 768px) {
  .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block {
    position: absolute;
    bottom: 0;
    left: 55%;
  }
}
.zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block button {
  background: transparent;
  border: none;
  padding-left: 0;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block button {
    font-size: 12px;
  }
}
.zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block button .yapla-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #6CA4DC;
  color: #6CA4DC;
  background: #fff;
  padding: 5px;
  font-size: 16px;
  border-radius: 100%;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block button .yapla-icon {
    margin-right: 0;
  }
}
.zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom:first-child {
  margin-top: 20px;
}

/*Étapes 2 - information de l'adherent*/
.zone-member {
  padding-top: 30px;
}
.zone-member .form-withProgress__wrapper .form-horizontal .section .row .form-group input.form-control {
  background-color: #f7f7f7 !important;
}
/*Étapes 3 - Résumé Informations*/
.zone-member .form-withProgress__wrapper h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper h2 {
    font-size: 19px;
    line-height: 25px;
  }
}
.zone-member .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion {
  padding-left: 0px;
  padding-right: 0px;
}
.zone-member .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion span {
  color: #FF8762;
}
.zone-member .form-withProgress__wrapper fieldset .col-sm-24 {
  padding: 0;
}
.zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
  color: #FF8762 !important;
  padding-top: 32px !important;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper fieldset legend {
    font-size: 19px;
    line-height: 25px;
  }
}
.zone-member .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
.zone-member .form-withProgress__wrapper fieldset.row {
  margin-left: 0;
  margin-right: 0;
}
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section {
  background: #FF8762;
}
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title {
  color: #fff !important;
}
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price {
  color: #fff !important;
}

/*Étapes 4 - Paiements*/
.step-payment .zone-member h2 {
  padding-top: 56px;
}
@media (max-width: 991px) {
  .step-payment .zone-member .form-withProgress__wrapper {
    padding: 50px 64px;
  }
}
@media (max-width: 767px) {
  .step-payment .zone-member .form-withProgress__wrapper {
    padding: 0;
  }
}
.step-payment .zone-member .form-withProgress__wrapper input.form-control {
  background-color: #fff !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-paymentmethod h2 {
  padding-top: 56px;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 input.form-control {
  border: 1px solid #d6d6d6 !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps h6 {
  width: 80%;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps span {
  width: fit-content;
}
/*Étapes 5 - Confirmation*/
#registration-member {
  margin: 0 auto;
}
#registration-member > h1 {
  font-size: 50px;
  line-height: 52px;
  font-weight: 400;
  text-transform: initial;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  #registration-member > h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
#registration-member .member-step-confirm {
  text-align: center;
}
#registration-member .member-step-confirm .member-profile-container {
  padding: 32px 0;
}
#registration-member .member-step-confirm .form-withProgress__navigation-footer p {
  display: none;
}

/*ETAPES INSCRIPTION EVENEMENT*/
/*Étapes 1 - Inscription*/
.zone-event h1.form-withProgress__title-main {
  padding-top: 0px;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc {
  padding: 32px 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition {
  background-color: #FFFFFF;
  border: 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition .wrap-registration-price-table thead {
  background: #FF8762;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add {
  height: 55px !important;
  padding: 20px 35px !important;
  background-color: #FF8762 !important;
  color: #fff !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
  border-radius: 61px !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:hover, .zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:active, .zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add.btn i.fa {
  display: none !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:hover {
  background-color: #fff !important;
  text-decoration: none !important;
  border: 1px solid #FF8762 !important;
}
.zone-event .form-withProgress__wrapper #event-authentication-form h2 {
  font-size: 28px;
  line-height: 35px;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #event-authentication-form h2 {
    font-size: 21px;
    line-height: 28px;
  }
}
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication p {
  padding-bottom: 32px;
}
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication .form-group {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 16px;
}
.zone-event .event-login h1 {
  text-align: center;
  margin-bottom: 64px;
  font-size: 40px;
}
@media (max-width: 767px) {
  .zone-event .event-login h1 {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .zone-event .event-subscription {
    padding: 0;
  }
}

/*Étapes 2 - Résumé Informations*/
@media (max-width: 991px) {
  .step-resume .zone-event .form-withProgress__wrapper {
    padding: 32px;
  }
}
@media (max-width: 991px) {
  .step-resume .zone-event .form-withProgress__wrapper {
    padding: 0px;
  }
}
.step-resume .zone-event .form-withProgress__wrapper h2.section-title {
  margin-bottom: 0;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset .col-sm-12 {
  padding: 0;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset .col-sm-24 {
  padding: 0;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset legend {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  padding-top: 32px;
}
@media (max-width: 767px) {
  .step-resume .zone-event .form-withProgress__wrapper fieldset legend {
    font-size: 16px;
    line-height: 20px;
  }
}
.step-resume .zone-event .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
/*Étapes - Résumé Informations*/
.step-resume .field-object-temp h2 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #FF8762;
}
.step-resume .field-object-temp .object-top-action input {
  margin-right: 16px;
}
.step-resume .field-object-temp .object-main-title {
  margin-bottom: 64px;
}
.step-resume .field-object-temp .object-main-title h2 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .step-resume .field-object-temp .object-main-title h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
.step-resume .field-object-temp .field-object-next-element, .step-resume .field-object-temp .field-object-prev-element {
  height: 55px !important;
  padding: 20px 35px !important;
  background-color: #FF8762 !important;
  color: #fff !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
}
.step-resume .field-object-temp .field-object-next-element:hover, .step-resume .field-object-temp .field-object-next-element:active, .step-resume .field-object-temp .field-object-next-element:focus, .step-resume .field-object-temp .field-object-prev-element:hover, .step-resume .field-object-temp .field-object-prev-element:active, .step-resume .field-object-temp .field-object-prev-element:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}
.step-resume .field-object-temp .crm-entity__info-wrapper {
  border: 1px solid #DDDDDD;
}
.step-resume .field-object-temp .crm-entity__info-wrapper .section-title-toggle {
  display: none;
}
.step-resume .field-object-temp .list-group__wrapper .list-group__title {
  border: 1px solid #DDDDDD;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .step-resume .field-object-temp .list-group__wrapper .list-group__title {
    font-size: 16px;
    line-height: 20px;
  }
}
.step-resume .field-object-temp .object-form-action {
  margin-bottom: 32px;
}
.step-resume .field-object-temp .object-form-action a.btn {
  margin-top: 0 !important;
}

/*Étapes 3 - Paiements*/
.step-payment .zone-event .form-withProgress__wrapper h2 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  padding-bottom: 16px;
}
@media (max-width: 991px) {
  .step-payment .zone-event .form-withProgress__wrapper {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .step-payment .zone-event .form-withProgress__wrapper {
    padding: 0;
  }
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 input.form-control {
  border: 1px solid #d6d6d6 !important;
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps h6 {
  width: 80%;
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps span {
  width: fit-content;
}
/*Étapes 4 - Confirmation*/
.zone-event .event-payment .form-withProgress__wrapper .payment-form-cms #fieldset-payment_billing .row .form-group .form-control {
  background: #fff !important;
}

/*###########################  TABLEAU  ###########################*/
/* basically le bottin de yapla */
/*###########################  TAB BOTTIN DES MEMBRES  ###########################*/
.nav-tabs {
  margin-top: 60px;
}
.nav-tabs li {
  padding: 0px 20px;
}
.nav-tabs li:first-child {
  padding-left: 0;
}
.nav-tabs li a {
  border: none;
  border-bottom: 5px solid transparent;
  color: rgba(163, 235, 184, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 2px;
  padding: 10px 0px;
}
.nav-tabs li a:hover, .nav-tabs li a:focus {
  background-color: transparent;
  color: rgba(163, 235, 184, 0.4);
  border-color: transparent;
}
.nav-tabs li.active:hover a, .nav-tabs li.active a {
  border-bottom: 5px solid #FF8762;
  color: #A3EBB8;
}

.paginationControl {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  grid-column: span 3;
}
@media (max-width: 991px) {
  .paginationControl {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .paginationControl {
    grid-column: span 1;
  }
}
.paginationControl a {
  width: 35px;
  height: 35px;
  border: 1px solid #282828;
  border-radius: 55px;
  margin: 5px;
  font-size: 16px;
  line-height: 18px;
  color: #282828 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paginationControl a:hover, .paginationControl a:focus {
  text-decoration: none;
  color: #FF8762 !important;
  border: 1px solid #FF8762;
}
.paginationControl a.active {
  background-color: #FF8762;
  color: #fff !important;
  font-weight: 200 !important;
  border: 1px solid #FF8762;
}
.paginationControl a.active:hover, .paginationControl a.active:focus {
  color: #fff;
}

/*###########################  ACCORDÉONS  ###########################*/
/* Note that this style apply for both native yapla accordions only */
.panel-default > .panel-heading {
  border-bottom: none;
}

.panel-news-accordion {
  /* first accordion container */
  border-bottom: 1px solid #282828 !important;
  background: transparent !important;
}
.panel-news-accordion:after {
  content: "";
  width: 100%;
  display: block;
}
.panel-news-accordion .panel-heading {
  /* title box */
  background-color: transparent;
  padding: 0;
  position: relative;
}
.panel-news-accordion .panel-heading .panel-title {
  /* title */
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  text-transform: initial;
  margin-bottom: 0;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-heading .panel-title {
    font-size: 18px;
    line-height: 24px;
  }
}
.panel-news-accordion .panel-heading .panel-title a {
  padding: 30px 15px 30px 0;
  color: #282828;
  text-decoration: none;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-heading .panel-title a {
    padding-right: 80px;
  }
}
.panel-news-accordion .panel-heading .panel-title a:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/accordeon-closed.svg);
  background-repeat: no-repeat;
  display: block;
  width: 47px;
  height: 47px;
  position: absolute;
  right: 15px;
  top: 25px;
  font-size: 35px;
  font-weight: 400;
  color: #FF8762;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.panel-news-accordion .panel-heading .panel-title a.collapsed:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/accordeon-closed.svg);
  background-repeat: no-repeat;
  transform: rotate(0);
  transition: all 0.3s ease;
}
.panel-news-accordion .panel-heading .panel-title a.collapsed:hover:after {
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/accorderon-plus.svg);
}
.panel-news-accordion .panel-heading p {
  display: none;
}
.panel-news-accordion .panel-heading:hover {
  cursor: pointer;
}
.panel-news-accordion .panel-collapse.in {
  border-bottom: 0;
}
.panel-news-accordion .panel-body {
  /* content */
  padding: 25px 15px 30px 15px;
  margin-top: -10px;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-body {
    padding-left: 0;
  }
}
.panel-news-accordion .panel-body h4 {
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body p {
  color: #282828;
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body .btn-link {
  margin-bottom: 40px;
}

/* Accordion with tables to make accordions in WYSIWYG easy for client */
/* Just create table with table button and add class accordeon in advanced settings */
/* JAVASCRIPT FOR THIS TO WORK

$("table.accordeon tbody tr:first-child").click(function () {
	var target = $(this);
	var open =  target.closest(".accordeon").hasClass('active');

	$(".accordeon").removeClass("active");

	if (!open) {
		var scrollTo = target.offset().top;
		target.closest(".accordeon").addClass("active");
		$('body, html').animate({scrollTop: scrollTo-80+'px'}, 800);
	}
});

*/
table.accordeon {
  display: block;
  width: 100% !important;
  border: 0;
  margin-bottom: 10px;
  /* active and opened content */
}
table.accordeon tbody, table.accordeon tr, table.accordeon td {
  border: 0;
}
table.accordeon tbody {
  display: block;
}
table.accordeon tbody tr {
  /* Title/accordeon box */
}
table.accordeon tbody tr:first-child {
  cursor: pointer;
  display: block;
  background-color: #F5F5F5;
  padding: 15px;
  position: relative;
}
table.accordeon tbody tr:first-child:after {
  content: "+";
  display: block;
  position: absolute;
  right: 15px;
  top: 13px;
  font-size: 30px;
  font-weight: 400;
  transition: transform 150ms;
}
table.accordeon tbody tr:last-child {
  display: block;
}
table.accordeon tbody tr:last-child td {
  display: block;
  max-height: 0;
  overflow: hidden;
}
table.accordeon.active tbody tr:first-child:after {
  transform: rotate(45deg);
}
table.accordeon.active tbody tr:last-child {
  padding: 15px;
  background-color: #F5F5F5;
}
table.accordeon.active tbody tr:last-child td {
  max-height: 5000px;
  transition: max-height 1.5s;
}
table.accordeon.piliers tbody {
  position: relative;
}
table.accordeon.piliers tbody tr:first-child {
  border-radius: 40px;
  padding-bottom: 150px;
  padding-top: 102px;
}
table.accordeon.piliers tbody tr:first-child td {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
table.accordeon.piliers tbody tr:first-child td img {
  position: absolute;
  top: -60px;
  left: 36%;
}
@media (max-width: 767px) {
  table.accordeon.piliers tbody tr:first-child td img {
    left: 26%;
  }
}
table.accordeon.piliers tbody tr:first-child:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_shapes/accordeon-closed.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  top: 175px;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
}
table.accordeon.piliers.active tbody tr:first-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding-bottom: 100px;
}
table.accordeon.piliers.active tbody tr:first-child:after {
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_shapes/accordeon-open.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
  top: 165px;
}
table.accordeon.piliers.active tbody tr:last-child {
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  padding-left: 130px;
  padding-right: 130px;
}
@media (max-width: 991px) {
  table.accordeon.piliers.active tbody tr:last-child {
    padding-left: 30px;
    padding-right: 30px;
  }
}
table.accordeon.icone tbody {
  position: relative;
}
table.accordeon.icone tbody tr:first-child {
  border-radius: 40px;
  padding-top: 100px;
  padding-bottom: 140px;
  padding-left: 0;
  padding-right: 0;
}
table.accordeon.icone tbody tr:first-child td {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
table.accordeon.icone tbody tr:first-child td img {
  animation: none !important;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
table.accordeon.icone tbody tr:first-child:after {
  animation: none !important;
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_shapes/accordeon-closed.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
}
table.accordeon.icone.active tbody tr:first-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding-bottom: 100px;
}
table.accordeon.icone.active tbody tr:first-child:after {
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_shapes/accordeon-open.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
}
table.accordeon.icone.active tbody tr:last-child {
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  padding-left: 30px;
  padding-right: 30px;
}
table.accordeon.team {
  max-width: 355px;
}
@media (max-width: 1199px) {
  table.accordeon.team {
    margin-left: auto;
    margin-right: auto;
  }
}
table.accordeon.team tbody tr:first-child {
  padding: 0;
  background: #ffffff;
  border-radius: 50px;
}
table.accordeon.team tbody tr:first-child td {
  height: 545px;
}
table.accordeon.team tbody tr:first-child td > p {
  margin-top: -40px;
  margin-bottom: 0;
}
table.accordeon.team tbody tr:first-child td img {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  max-height: 416px !important;
  width: auto;
  object-fit: cover; /* Ensures the image fills the container */
  object-position: center; /* Aligns the image to the top */
  display: block;
}
table.accordeon.team tbody tr:first-child td h5 {
  padding-top: 15px;
  margin-bottom: 5px;
}
table.accordeon.team tbody tr:first-child td h6 {
  padding-right: 60px;
  line-height: 19px;
  display: inline-block;
  height: 50px;
}
@media (max-width: 767px) {
  table.accordeon.team tbody tr:first-child td h6 {
    padding-right: 80px;
  }
}
table.accordeon.team tbody tr:first-child td h5, table.accordeon.team tbody tr:first-child td h6 {
  padding-left: 30px;
}
table.accordeon.team tbody tr:first-child:after {
  animation: none !important;
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_shapes/accordeon-closed.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 47px;
  height: 47px;
  top: 430px;
  left: 85%;
  transform: translateX(-50%);
}
table.accordeon.team tbody tr:last-child {
  background: #fff;
}
table.accordeon.team.active tbody tr:first-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
}
table.accordeon.team.active tbody tr:first-child:after {
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_shapes/accordeon-open.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
}
table.accordeon.team.active tbody tr:first-child td {
  height: 490px;
}
table.accordeon.team.active tbody tr:last-child {
  padding-bottom: 40px;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  padding-left: 30px;
  padding-right: 30px;
}
table.accordeon.certification tbody tr:first-child {
  padding: 55px 75px 125px 105px;
  background: #ffffff;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 991px) {
  table.accordeon.certification tbody tr:first-child {
    padding: 115px 60px 125px;
  }
}
table.accordeon.certification tbody tr:first-child td img {
  position: absolute;
  left: -85px;
  top: 20%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  table.accordeon.certification tbody tr:first-child td img {
    top: -75px;
    left: 37%;
    transform: translateY(0);
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  table.accordeon.certification tbody tr:first-child td img {
    left: 25%;
  }
}
table.accordeon.certification tbody tr:first-child:after {
  animation: none !important;
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_shapes/accordeon-closed.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  top: 190px;
  left: 125px;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  table.accordeon.certification tbody tr:first-child:after {
    left: 50%;
    top: 275px;
  }
}
@media (max-width: 767px) {
  table.accordeon.certification tbody tr:first-child:after {
    top: 380px;
  }
}
table.accordeon.certification tbody tr:last-child {
  background: #fff;
}
table.accordeon.certification.active tbody tr:first-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
}
table.accordeon.certification.active tbody tr:first-child:after {
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_shapes/accordeon-open.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
}
table.accordeon.certification.active tbody tr:last-child {
  padding-bottom: 40px;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  padding-left: 105px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  table.accordeon.certification.active tbody tr:last-child {
    padding-left: 60px;
  }
}
table.accordeon.certification.active tbody tr:last-child ol {
  padding-left: 30px;
}

.modal-backdrop {
  z-index: 100 !important;
}

.modal-backdrop.in {
  opacity: 0.5;
}

body:not(.modal-open) .modal {
  display: none;
}

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modal-dialog {
  transform: none !important;
}
.modal .modal-dialog .modal-content {
  background-color: #fff;
}
.modal .modal-dialog .modal-content .modal-header {
  margin-top: 8px;
  padding: 16px 31px;
  flex-direction: column;
}
.modal .modal-dialog .modal-content .modal-header button.close {
  color: #FF8762;
}
.modal .modal-dialog .modal-content .modal-header button.close:hover {
  color: #A3EBB8;
}
.modal .modal-dialog .modal-content .modal-body {
  /* Input Global Style */
}
.modal .modal-dialog .modal-content .modal-body input:not(.btn), .modal .modal-dialog .modal-content .modal-body select, .modal .modal-dialog .modal-content .modal-body textarea {
  background-color: #F4F4F4 !important;
  color: #282828 !important;
  border: none;
}
.modal:not(.show):not(.in) {
  display: none !important;
}

/*###########################  BARRE DE PROGRÈS  ###########################*/
.nav-pills {
  background-image: none;
}

.nav-progress {
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 100%;
  width: 95%;
}
@media (max-width: 767px) {
  .nav-progress {
    display: block;
  }
}
.nav-progress:before {
  display: none;
}
.nav-progress li.disabled {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  opacity: 1;
}
.nav-progress li.disabled a, .nav-progress li.disabled a:hover, .nav-progress li.disabled a:focus {
  position: relative;
  float: none;
  margin-top: 0;
  padding: 15px 0 30px 75px;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #282828;
  text-align: left;
  text-transform: none;
}
.nav-progress li.disabled a:before, .nav-progress li.disabled a:hover:before, .nav-progress li.disabled a:focus:before {
  display: none;
}
.nav-progress li.disabled:before {
  float: left;
  width: 55px;
  height: 55px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  border: none;
  color: #fff;
  background-color: #282828;
  padding: 8px;
}
.nav-progress li.disabled:after {
  display: none;
}
.nav-progress li.disabled.active {
  opacity: 1;
}
.nav-progress li.disabled.active a, .nav-progress li.disabled.active a:hover, .nav-progress li.disabled.active a:focus {
  color: #282828;
}
.nav-progress li.disabled.active:before {
  color: #fff;
  background-color: #FF8762;
}
.nav-progress li.disabled.active:after {
  display: none;
}
.nav-progress li.disabled.active ~ li a, .nav-progress li.disabled.active ~ li a:hover, .nav-progress li.disabled.active ~ li a:focus {
  color: #282828;
}
.nav-progress li.disabled.active ~ li:before {
  color: #fff;
  background-color: #E0E7F4;
}
.nav-progress li.disabled.active ~ li:after {
  display: none;
}

.line-title-banner {
  background: #E0E7F4;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .line-title-banner {
    padding-top: 30px;
  }
}
.line-title-banner .container > .row {
  display: flex;
}
@media (max-width: 991px) {
  .line-title-banner .container > .row {
    flex-direction: column;
  }
}
.line-title-banner .container > .row > div:first-child {
  padding-left: 90px;
}
@media (max-width: 1199px) {
  .line-title-banner .container > .row > div:first-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .line-title-banner .container > .row > div:first-child {
    width: 100%;
  }
}
.line-title-banner .container > .row > div:first-child .content h1 {
  margin-bottom: 15px;
}
.line-title-banner .container > .row > div:first-child .content h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .line-title-banner .container > .row > div:first-child .content h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
.line-title-banner .container > .row > div:last-child {
  position: relative;
  width: 55%;
}
@media (max-width: 991px) {
  .line-title-banner .container > .row > div:last-child {
    width: 100%;
  }
}
.line-title-banner .container > .row > div:last-child .content {
  position: relative;
}
.line-title-banner .container > .row > div:last-child .content img {
  position: absolute;
  right: -60px;
  top: 30px;
}
.line-title-banner.home {
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .line-title-banner.home {
    padding-bottom: 300px;
  }
}
@media (max-width: 991px) {
  .line-title-banner.home .container > .row {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .line-title-banner.home .container > .row {
    flex-direction: column;
  }
}
.line-title-banner.home .container > .row > div:first-child {
  width: 45%;
}
@media (max-width: 767px) {
  .line-title-banner.home .container > .row > div:first-child {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-title-banner.home .container > .row > div:first-child .content h1 {
    display: inline-block;
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  .line-title-banner.home .container > .row > div:first-child .content h3 {
    display: inline-block;
    max-width: 75%;
  }
}
.line-title-banner.home .container > .row > div:last-child {
  width: 55%;
  position: relative;
}
@media (max-width: 767px) {
  .line-title-banner.home .container > .row > div:last-child {
    width: 100%;
  }
}
.line-title-banner.home .container > .row > div:last-child .content {
  position: relative;
}
.line-title-banner.home .container > .row > div:last-child .content:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_accueil/img-cercle-points.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 320px;
  height: 321px;
  position: absolute;
  top: 180px;
  left: 62%;
  animation: rotate-circle 10s linear infinite;
  z-index: 3;
}
@media (min-width: 1440px) {
  .line-title-banner.home .container > .row > div:last-child .content:before {
    top: 185px;
    left: 62%;
  }
}
@media (min-width: 1550px) {
  .line-title-banner.home .container > .row > div:last-child .content:before {
    top: 210px;
  }
}
@media (min-width: 1700px) {
  .line-title-banner.home .container > .row > div:last-child .content:before {
    top: 222px;
    left: 61%;
  }
}
@media (min-width: 1900px) {
  .line-title-banner.home .container > .row > div:last-child .content:before {
    top: 265px;
    left: 60%;
  }
}
@media (min-width: 2500px) {
  .line-title-banner.home .container > .row > div:last-child .content:before {
    display: none;
  }
}
@media (max-width: 1199px) {
  .line-title-banner.home .container > .row > div:last-child .content:before {
    width: 220px;
    height: 220px;
    top: 141px;
    left: 67%;
  }
}
@media (max-width: 991px) {
  .line-title-banner.home .container > .row > div:last-child .content:before {
    width: 175px;
    height: 175px;
    top: 107px;
    left: 70%;
  }
}
@media (max-width: 767px) {
  .line-title-banner.home .container > .row > div:last-child .content:before {
    left: 50%;
    top: 198px;
  }
}
@media (max-width: 575px) {
  .line-title-banner.home .container > .row > div:last-child .content:before {
    top: 150px;
    left: 51%;
  }
}
@media (max-width: 400px) {
  .line-title-banner.home .container > .row > div:last-child .content:before {
    top: 115px;
    left: 50%;
  }
}
.line-title-banner.home .container > .row > div:last-child .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_accueil/icone-accueil.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 166px;
  height: 160px;
  position: absolute;
  top: 100px;
  left: 52%;
  z-index: 3;
}
@media (min-width: 1550px) {
  .line-title-banner.home .container > .row > div:last-child .content:after {
    top: 145px;
  }
}
@media (min-width: 1900px) {
  .line-title-banner.home .container > .row > div:last-child .content:after {
    top: 180px;
  }
}
@media (min-width: 2500px) {
  .line-title-banner.home .container > .row > div:last-child .content:after {
    display: none;
  }
}
@media (max-width: 1199px) {
  .line-title-banner.home .container > .row > div:last-child .content:after {
    top: 58px;
  }
}
@media (max-width: 991px) {
  .line-title-banner.home .container > .row > div:last-child .content:after {
    width: 106px;
    left: 56%;
  }
}
@media (max-width: 767px) {
  .line-title-banner.home .container > .row > div:last-child .content:after {
    left: 42%;
    top: 140px;
  }
}
@media (max-width: 575px) {
  .line-title-banner.home .container > .row > div:last-child .content:after {
    left: 40%;
    top: 98px;
  }
}
@media (max-width: 400px) {
  .line-title-banner.home .container > .row > div:last-child .content:after {
    left: 35%;
    top: 65px;
  }
}
@media (min-width: 1440px) {
  .line-title-banner.home .container > .row > div:last-child .content img {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .line-title-banner.home .container > .row > div:last-child .content img {
    min-width: 108vw !important;
    right: -30px;
  }
}
.line-title-banner.sixty-forty {
  overflow: hidden;
}
@media (max-width: 767px) {
  .line-title-banner.sixty-forty {
    padding-bottom: 350px;
  }
}
@media (max-width: 767px) {
  .line-title-banner.sixty-forty .container > .row {
    flex-direction: column;
  }
}
.line-title-banner.sixty-forty .container > .row > div:first-child {
  width: 60%;
}
@media (max-width: 767px) {
  .line-title-banner.sixty-forty .container > .row > div:first-child {
    width: 100%;
  }
}
.line-title-banner.sixty-forty .container > .row > div:last-child {
  width: 40%;
}
@media (max-width: 767px) {
  .line-title-banner.sixty-forty .container > .row > div:last-child {
    width: 100%;
  }
}
.line-title-banner.seventyfive-25 .container > .row > div:first-child {
  width: 75%;
}
.line-title-banner.seventyfive-25 .container > .row > div:last-child {
  width: 25%;
}
@media (max-width: 767px) {
  .line-title-banner.org-cert .container > .row > div:first-child {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-title-banner.org-cert .container > .row > div:last-child {
    width: 0;
  }
}
.line-title-banner.smet {
  overflow: visible;
}
@media (max-width: 991px) {
  .line-title-banner.smet {
    padding-bottom: 400px;
  }
}
@media (max-width: 767px) {
  .line-title-banner.smet {
    padding-bottom: 450px;
  }
}
@media (max-width: 991px) {
  .line-title-banner.smet .container > .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-title-banner.smet .container > .row > div:first-child {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-title-banner.smet .container > .row > div:last-child {
    width: 100%;
  }
}
.line-title-banner.smet .container > .row > div:last-child .content img {
  right: -60px;
}
@media (max-width: 991px) {
  .line-title-banner.smet .container > .row > div:last-child .content img {
    width: 420px;
    right: -35px;
    top: 10px;
    width: 405px !important;
  }
}
@media (max-width: 767px) {
  .line-title-banner.smet .container > .row > div:last-child .content img {
    right: -60px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-title-banner.recherche .container > .row > div:first-child {
    width: 75%;
  }
}
.line-title-banner.recherche .container > .row > div:first-child .content {
  padding-bottom: 78px;
}
@media (min-width: 992px) {
  .line-title-banner.recherche .container > .row > div:first-child .content {
    border-bottom: 1px solid #6B82A4;
  }
}
@media (max-width: 991px) {
  .line-title-banner.recherche .container > .row > div:first-child .content {
    position: relative;
  }
  .line-title-banner.recherche .container > .row > div:first-child .content:after {
    content: "";
    background: #6B82A4;
    height: 1px;
    width: 300px;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .line-title-banner.recherche .container > .row > div:first-child .content:after {
    width: 97px;
  }
}
.line-title-banner.recherche .container > .row > div:last-child .content img {
  right: 15%;
  top: -30px;
}
@media (max-width: 991px) {
  .line-title-banner.recherche .container > .row > div:last-child .content img {
    max-width: 240px;
    right: 0;
    top: -190px;
  }
}
@media (max-width: 767px) {
  .line-title-banner.recherche .container > .row > div:last-child .content img {
    max-width: 170px;
    top: -85px;
    right: 0;
  }
}
.line-title-banner.apropos {
  padding-bottom: 70px;
  position: relative;
  z-index: 3;
  overflow: visible;
}
@media (max-width: 767px) {
  .line-title-banner.apropos {
    padding-bottom: 260px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-title-banner.apropos .container > .row {
    flex-direction: row;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-title-banner.apropos .container > .row > div:first-child {
    width: 50%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-title-banner.apropos .container > .row > div:last-child {
    width: 50%;
  }
}
.line-title-banner.apropos .container > .row > div:last-child .content img {
  right: 35%;
  top: 0;
}
@media (max-width: 1199px) {
  .line-title-banner.apropos .container > .row > div:last-child .content img {
    right: 5%;
  }
}
@media (max-width: 991px) {
  .line-title-banner.apropos .container > .row > div:last-child .content img {
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .line-title-banner.apropos .container > .row > div:last-child .content img {
    max-width: 180px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .line-title-banner.carriere {
    padding-bottom: 160px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-title-banner.carriere .container > .row {
    flex-direction: row;
  }
}
.line-title-banner.carriere .container > .row > div:first-child {
  z-index: 3;
}
.line-title-banner.carriere .container > .row > div:last-child .content img {
  right: 18%;
  top: -70px;
}
@media (max-width: 767px) {
  .line-title-banner.prixdistinction .container > .row {
    flex-direction: column;
  }
}
.line-title-banner.prixdistinction .container > .row > div:first-child {
  width: 55%;
}
@media (max-width: 767px) {
  .line-title-banner.prixdistinction .container > .row > div:first-child {
    width: 100%;
    z-index: 3;
  }
}
.line-title-banner.prixdistinction .container > .row > div:last-child {
  width: 45%;
}
.line-title-banner.prixdistinction .container > .row > div:last-child .content img {
  right: 18%;
  top: -70px;
}
@media (max-width: 767px) {
  .line-title-banner.certification .container > .row > div:first-child {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-title-banner.certification .container > .row > div:last-child {
    width: 0;
  }
}
.line-title-banner.big-shape {
  position: relative;
}
.line-title-banner.big-shape:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_shapes/forme-bckgrd.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 961px;
  height: 556px;
  position: absolute;
  top: -125px;
  right: 0;
}
@media (max-width: 1199px) {
  .line-title-banner.big-shape:before {
    width: 800px;
    height: 480px;
  }
}
@media (max-width: 991px) {
  .line-title-banner.big-shape:before {
    width: 600px;
    height: 390px;
  }
}
@media (max-width: 767px) {
  .line-title-banner.big-shape:before {
    width: 385px;
    height: 270px;
  }
}
.line-title-banner.smol {
  padding-top: 0;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .line-title-banner.newsletter .container > .row > div:first-child, .line-title-banner.ressources .container > .row > div:first-child {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-title-banner.ressources {
    padding-bottom: 120px;
  }
}
.line-title-banner.article .container > .row > div:first-child {
  width: 100%;
  padding-left: 0;
}
.line-title-banner.article .container > .row > div:first-child .content {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.line-title-banner.article .container > .row > div:last-child {
  width: 0;
}
.line-title-banner.mouvement {
  overflow: visible;
  position: relative;
  z-index: 3;
}
@media (max-width: 1199px) {
  .line-title-banner.mouvement {
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .line-title-banner.mouvement {
    padding-bottom: 260px;
  }
}
@media (max-width: 991px) {
  .line-title-banner.mouvement .container > .row {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .line-title-banner.mouvement .container > .row {
    flex-direction: column;
  }
}
.line-title-banner.mouvement .container > .row > div:last-child .content img {
  right: -50px;
  top: 0;
}
@media (max-width: 1199px) {
  .line-title-banner.mouvement .container > .row > div:last-child .content img {
    right: -60px;
  }
}
@media (max-width: 991px) {
  .line-title-banner.mouvement .container > .row > div:last-child .content img {
    right: -100px;
  }
}
@media (max-width: 850px) {
  .line-title-banner.mouvement .container > .row > div:last-child .content img {
    right: -60px;
  }
}
@media (max-width: 767px) {
  .line-title-banner.mouvement .container > .row > div:last-child .content img {
    top: -15px;
    right: -30px;
  }
}

.line-header .container-fluid > .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .line-header .container-fluid > .row {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-header .container-fluid > .row > div:nth-child(1) {
  width: 40%;
  z-index: 100000;
  position: relative;
  display: inline-block;
  transition: all 1s ease;
  top: -10px;
}
@media (max-width: 991px) {
  .line-header .container-fluid > .row > div:nth-child(1) {
    width: 35%;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .line-header .container-fluid > .row > div:nth-child(1) {
    width: 60%;
    z-index: 10;
  }
}
.line-header .container-fluid > .row > div:nth-child(1) .content a {
  position: relative;
  display: inline-block;
  padding: 0px 0 25px 40px;
  width: 348px;
}
@media (max-width: 991px) {
  .line-header .container-fluid > .row > div:nth-child(1) .content a {
    padding: 35px 0 25px 0px;
  }
}
@media (max-width: 767px) {
  .line-header .container-fluid > .row > div:nth-child(1) .content a {
    width: 160px;
    padding: 20px 0 25px 0px;
  }
}
.line-header .container-fluid > .row > div:nth-child(1) .content a img {
  position: absolute;
}
.line-header .container-fluid > .row > div:nth-child(1) .content a img.mbl {
  display: none;
}
@media (max-width: 991px) {
  .line-header .container-fluid > .row > div:nth-child(1) .content a img {
    top: 20px;
  }
}
@media (max-width: 767px) {
  .line-header .container-fluid > .row > div:nth-child(1) .content a img {
    margin-top: 18px;
    width: 156px !important;
    top: 0;
    left: 0px;
  }
  .line-header .container-fluid > .row > div:nth-child(1) .content a img.mbl {
    display: block;
  }
  .line-header .container-fluid > .row > div:nth-child(1) .content a img.dkt {
    display: none;
  }
}
.line-header .container-fluid > .row > div:nth-child(2) {
  width: 50%;
  z-index: 10;
}
@media (max-width: 991px) {
  .line-header .container-fluid > .row > div:nth-child(2) {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .line-header .container-fluid > .row > div:nth-child(2) {
    width: 25%;
  }
}
.line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-custom {
  display: flex;
  align-items: center;
}
.line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-custom > a:first-of-type {
  margin-right: 15px;
}
@media (max-width: 767px) {
  .line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-custom > a:first-of-type {
    margin-right: 0;
  }
  .line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-custom > a:first-of-type img {
    width: 45px !important;
    margin-top: 5px;
  }
}
.line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-custom a.btn-secondary {
  margin-right: 0;
}
@media (max-width: 767px) {
  .line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-custom a.btn-secondary {
    display: none;
  }
}
@media (max-width: 991px) {
  .line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-login {
    display: none;
  }
}
@media (max-width: 1199px) {
  .line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-login .member-greeting {
    font-size: 6px;
  }
}
.line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-login a.member-login {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  padding: 10px 20px !important;
  background-color: transparent !important;
  color: #282828 !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
  background: #fff !important;
  margin-right: 0 !important;
}
.line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-login a.member-login:hover, .line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-login a.member-login:active, .line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-login a.member-login:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-login a.member-login {
    white-space: normal !important;
  }
}
.line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-login a.member-login:hover, .line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-login a.member-login:active, .line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-login a.member-login:focus {
  text-decoration: none !important;
  background-color: #FF8762 !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}
@media (max-width: 1199px) {
  .line-header .container-fluid > .row > div:nth-child(2) .mod-header-wrapper .header-ext-login a.member-logout {
    font-size: 6px;
  }
}
.line-header .container-fluid > .row > div:nth-child(3) {
  z-index: 10;
  width: 10%;
}
@media (max-width: 767px) {
  .line-header .container-fluid > .row > div:nth-child(3) {
    width: 15%;
  }
}
@media (max-width: 767px) {
  .line-header .container-fluid > .row > div:nth-child(3) .content {
    display: flex;
    justify-content: flex-end;
  }
}
.line-header.opened .container-fluid > .row > div:nth-child(3) {
  z-index: 10000;
}

.line-header {
  transition: top 250ms;
  height: 120px;
  background: #E0E7F4;
}
@media (max-width: 991px) {
  .line-header {
    height: 80px;
  }
}
.line-header .container-fluid, .line-header .container {
  top: -100px;
  position: static;
  transition: all 250ms;
}
@media (max-width: 991px) {
  .line-header .container-fluid, .line-header .container {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 767px) {
  .line-header .container-fluid, .line-header .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .line-header .container-fluid > .row, .line-header .container > .row {
    display: flex;
  }
}
@media (max-width: 767px) {
  .line-header .container-fluid > .row > div, .line-header .container > .row > div {
    height: 50px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .line-header .container-fluid > .row > div .content, .line-header .container > .row > div .content {
    height: 50px;
  }
}
.line-header .menu-hamburger {
  width: 60px;
  height: 60px;
  background-color: #FF8762;
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 0px;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  transition: background-color 0.5s ease;
}
@media (max-width: 991px) {
  .line-header .menu-hamburger {
    transform: scale(0.85);
    margin-right: 0px;
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .line-header .menu-hamburger {
    transform: scale(0.73);
    margin-top: 0px;
    width: 62px;
    height: 62px;
    padding: 24px;
  }
}
.line-header .menu-hamburger span {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  line-height: 0;
  text-indent: -9999px;
  margin-top: 8px;
  transition: transform 0.5s;
}
.line-header .menu-hamburger span:first-child {
  margin-top: 2px;
}
.line-header .menu-hamburger:hover, .line-header .menu-hamburger:focus {
  background-color: #000000 !important;
  cursor: pointer;
}
.line-header .menu-hamburger:hover span, .line-header .menu-hamburger:focus span {
  background-color: #ffffff !important;
}
.line-header.opened .menu-hamburger:before {
  display: none;
}
.line-header.opened .menu-hamburger:hover, .line-header.opened .menu-hamburger:focus {
  background: #282828;
}
.line-header.opened .menu-hamburger:hover span, .line-header.opened .menu-hamburger:focus span {
  background-color: #fff !important;
}
.line-header.opened .menu-hamburger span {
  margin-top: 0;
  width: 22px;
  background-color: #fff;
}
.line-header.opened .menu-hamburger span:first-child {
  transform: rotate(45deg);
}
.line-header.opened .menu-hamburger span:last-child {
  margin-top: -2px;
  transform: rotate(-45deg);
}
.line-header.opened.sticked span {
  background-color: #282828;
}
.line-header.opened.sticked:hover span, .line-header.opened.sticked:focus span {
  background-color: #fff !important;
}
.line-header.sticked {
  z-index: 99999;
  height: 65px;
}
.line-header.sticked .container-fluid, .line-header.sticked .container {
  box-shadow: 0 7px 12px -10px gray;
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background-color: #ffffff;
  z-index: 999;
  padding-left: 8%;
  padding-right: 8%;
  margin: 0;
  padding-top: 0px;
}
@media (max-width: 767px) {
  .line-header.sticked .container-fluid, .line-header.sticked .container {
    height: 65px;
    margin-left: 0px;
    margin-right: 0px;
  }
}
.line-header.sticked .container-fluid .row, .line-header.sticked .container .row {
  display: flex;
}
.line-header.sticked .container-fluid .row:before, .line-header.sticked .container .row:before {
  display: none;
}
.line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content, .line-header.sticked .container .row .zone-html:nth-child(1) .content {
  padding-top: 0px;
  width: 348px;
}
@media (max-width: 767px) {
  .line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content, .line-header.sticked .container .row .zone-html:nth-child(1) .content {
    width: 156px;
  }
}
.line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content a, .line-header.sticked .container .row .zone-html:nth-child(1) .content a {
  padding: 0px 0 25px 0px;
  width: 100%;
}
@media (max-width: 767px) {
  .line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content a, .line-header.sticked .container .row .zone-html:nth-child(1) .content a {
    padding: 0 0 25px 0;
  }
}
.line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content a img, .line-header.sticked .container .row .zone-html:nth-child(1) .content a img {
  width: 100% !important;
}
@media (max-width: 991px) {
  .line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content a img, .line-header.sticked .container .row .zone-html:nth-child(1) .content a img {
    top: 0;
  }
}
@media (max-width: 767px) {
  .line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content a img, .line-header.sticked .container .row .zone-html:nth-child(1) .content a img {
    margin-top: 15px;
  }
}
.line-header.sticked .container-fluid .menu-hamburger, .line-header.sticked .container .menu-hamburger {
  width: 60px;
  height: 60px;
  background-color: #FF8762;
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 0px;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  transition: background-color 0.5s ease;
}
@media (max-width: 991px) {
  .line-header.sticked .container-fluid .menu-hamburger, .line-header.sticked .container .menu-hamburger {
    margin-left: 3px;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .line-header.sticked .container-fluid .menu-hamburger, .line-header.sticked .container .menu-hamburger {
    margin-top: 0px;
  }
}
.line-header.sticked .container-fluid .menu-hamburger:hover span, .line-header.sticked .container-fluid .menu-hamburger:focus span, .line-header.sticked .container .menu-hamburger:hover span, .line-header.sticked .container .menu-hamburger:focus span {
  background-color: #A3EBB8;
}
.line-header.sticked .container-fluid .menu-hamburger:before, .line-header.sticked .container .menu-hamburger:before {
  display: none;
}
.line-header.sticked.opened .container-fluid, .line-header.sticked.opened .container {
  background-color: #ffffff;
}

.menu-container {
  padding-top: 150px;
  z-index: 1000;
  position: fixed;
  width: 65%;
  height: 100%;
  top: 0px;
  bottom: 0;
  background-color: #6B82A4;
  border-top: 1px solid #E0E7F4;
  right: -110vw;
  transition: 1.2s right cubic-bezier(0.107, 0, 0.375, 1);
}
@media (max-width: 991px) {
  .menu-container {
    width: 74%;
  }
}
@media (max-width: 767px) {
  .menu-container {
    width: 100%;
  }
}
.menu-container.sticked {
  z-index: 1000;
}
.menu-container.opened {
  right: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 991px) {
  .menu-container.opened {
    padding-top: 130px;
  }
  .menu-container.opened .line-menu .navbar-header {
    display: none;
  }
  .menu-container.opened .line-menu .navbar-collapse, .menu-container.opened .line-menu .collapse {
    border: none;
    box-shadow: none;
    display: block;
  }
}
@media (max-width: 767px) {
  .menu-container.opened {
    justify-content: flex-start;
    padding-left: 15px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .menu-container {
    padding-top: 75px;
    flex-direction: column;
    top: 0px;
  }
}
.menu-container .line-menu {
  background-color: #6B82A4;
  width: 100%;
}
.menu-container .line-menu:after {
  display: none;
}
.menu-container .line-menu .container {
  max-width: 100%;
  padding-left: 70px;
}
@media (max-width: 991px) {
  .menu-container .line-menu .container {
    padding-left: 45px;
  }
}
@media (max-width: 767px) {
  .menu-container .line-menu .container {
    padding-left: 0;
  }
}
.menu-container .line-menu .container .navbar-default .navbar-nav {
  display: flex;
  flex-direction: column;
  float: none;
  align-items: flex-start;
}
.menu-container .line-menu .container .navbar-default .navbar-nav > li {
  z-index: 0;
  width: 80%;
  text-align: left;
  border-bottom: 1px solid #FFA387;
}
@media (max-width: 991px) {
  .menu-container .line-menu .container .navbar-default .navbar-nav > li {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .menu-container .line-menu .container .navbar-default .navbar-nav > li {
    width: 90%;
  }
}
.menu-container .line-menu .container .navbar-default .navbar-nav > li:hover {
  cursor: pointer;
}
.menu-container .line-menu .container .navbar-default .navbar-nav > li:hover > a {
  color: #282828 !important;
}
.menu-container .line-menu .container .navbar-default .navbar-nav > li.active {
  color: #A3EBB8;
  background-color: transparent !important;
}
.menu-container .line-menu .container .navbar-default .navbar-nav > li.active > a {
  color: #282828;
}
.menu-container .line-menu .container .navbar-default .navbar-nav > li.active a.active {
  color: #282828 !important;
}
.menu-container .line-menu ul.menu-vertical-items li {
  margin-bottom: 7px;
  position: relative;
}
.menu-container .line-menu ul.menu-vertical-items li a {
  padding: 4px 0;
}
.menu-container .line-menu ul.menu-vertical-items li:hover, .menu-container .line-menu ul.menu-vertical-items li:focus {
  color: #EE653B;
  background-color: transparent !important;
}
.menu-container .line-menu ul.menu-vertical-items li[rel=data-menu-95854] {
  margin-bottom: 15px;
}
.menu-container .line-menu ul.menu-vertical-items > li {
  color: #fff;
  font-size: 38px;
  line-height: 50px;
  font-weight: 400;
  transition: all smooth 0.8s;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .menu-container .line-menu ul.menu-vertical-items > li {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .menu-container .line-menu ul.menu-vertical-items > li {
    font-size: 20px;
    line-height: 30px;
  }
}
.menu-container .line-menu ul.menu-vertical-items > li:hover {
  color: #FF8762 !important;
}
.menu-container .line-menu ul.menu-vertical-items > li .child-link:hover {
  color: #FF8762 !important;
}
.menu-container .line-menu ul.menu-vertical-items > li > a {
  font-size: 24px;
  font-weight: 30px;
  font-weight: 400;
  text-transform: none;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .menu-container .line-menu ul.menu-vertical-items > li > a {
    font-size: 16px;
    line-height: 20px;
  }
}
.menu-container .line-menu ul.menu-vertical-items > li > a:hover {
  color: #A3EBB8 !important;
  cursor: default;
}
.menu-container .line-menu ul.menu-vertical-items > li > ul.dropdown-menu {
  padding-top: 0;
  margin-top: 5px;
  width: 69%;
}
.menu-container .line-menu ul.menu-vertical-items > li > ul.dropdown-menu li {
  display: block;
}
.menu-container .line-menu ul.menu-vertical-items > li > ul.dropdown-menu li:hover, .menu-container .line-menu ul.menu-vertical-items > li > ul.dropdown-menu li:focus, .menu-container .line-menu ul.menu-vertical-items > li > ul.dropdown-menu li:active {
  color: #fff !important;
  background: transparent !important;
}
.menu-container .line-menu ul.menu-vertical-items > li a {
  padding-left: 0;
  color: #fff;
  display: block;
  background-color: transparent !important;
  white-space: break-spaces;
  padding-bottom: 10px;
  transition: all 0.5s;
  cursor: pointer;
}
.menu-container .line-menu ul.menu-vertical-items > li a:hover, .menu-container .line-menu ul.menu-vertical-items > li a:focus, .menu-container .line-menu ul.menu-vertical-items > li a:active {
  color: #FF8762;
  background-color: transparent !important;
  cursor: pointer;
}
.menu-container .line-menu ul.menu-vertical-items > li a.dropdown-toggle {
  display: block;
  text-align: right;
  margin-top: -46px;
  height: 60px !important;
  padding: 0 !important;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .menu-container .line-menu ul.menu-vertical-items > li a.dropdown-toggle {
    height: 50px !important;
  }
}
.menu-container .line-menu ul.menu-vertical-items > li a.dropdown-toggle:hover {
  color: #FF8762 !important;
}
.menu-container .line-menu ul.menu-vertical-items > li a.dropdown-toggle .caret {
  content: "";
  width: 21px;
  height: 21px;
  margin-top: 22px;
  right: -15px !important;
  top: 0px !important;
  position: absolute;
  display: block;
  float: right;
  background-image: url("https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/menu-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
}
@media (max-width: 991px) {
  .menu-container .line-menu ul.menu-vertical-items > li a.dropdown-toggle .caret {
    margin-right: 0px;
    right: -10px !important;
  }
}
@media (max-width: 767px) {
  .menu-container .line-menu ul.menu-vertical-items > li a.dropdown-toggle .caret {
    margin-top: 15px;
  }
}
.menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu {
  background-color: transparent;
  position: relative;
  padding-left: 0;
  box-shadow: none;
  border: none;
  top: 0;
  height: 0;
  max-width: 200px;
  z-index: 99999;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: height 1.3s cubic-bezier(0.6, 0, 0.4, 1), opacity 2s ease-in-out;
}
.menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li {
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeInDropdown 1s ease-in-out forwards;
}
.menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-transform: none;
  transition: all 0.5s;
  color: #fff !important;
  padding-bottom: 0;
  cursor: pointer;
}
@media (max-width: 767px) {
  .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li a {
    line-height: 17px;
  }
}
.menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li a:hover {
  cursor: pointer;
  color: #FF8762 !important;
}
.menu-container .line-menu ul.menu-vertical-items > li.open .dropdown-toggle .caret {
  transform: rotate(-45deg);
  transition: all 0.5s;
}
.menu-container .line-menu ul.menu-vertical-items > li.open .dropdown-menu {
  opacity: 1;
  height: auto;
  z-index: 9999999;
  max-height: 800px;
  margin-bottom: 20px;
  padding-left: 20px;
}
.menu-container .line-menu-header {
  padding: 0px 0 100px;
  width: 100%;
}
.menu-container .line-menu-header .container {
  padding-left: 70px;
}
@media (max-width: 991px) {
  .menu-container .line-menu-header .container {
    padding-left: 45px;
  }
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .menu-container .line-menu-header .container .zone-header {
    padding-left: 0;
  }
}
.menu-container .line-menu-header .mod-header {
  padding-left: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.menu-container .line-menu-header .mod-header .header-ext-custom {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  order: 2;
  padding-left: 0px;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra {
  padding-top: 10px;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra a {
  color: #EE653B !important;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra a:hover, .menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra a:focus {
  text-decoration: none !important;
  color: #A3EBB8 !important;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra p:last-child {
  margin-bottom: 0;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra p:last-child a {
  text-decoration: underline;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom .coesion-menu-btns {
    position: absolute;
    top: 20px;
    left: 145px;
  }
}
.menu-container .line-menu-header .mod-header .header-ext-custom .coesion-menu-btns ul {
  list-style: none;
  display: flex;
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom .coesion-menu-btns ul {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px !important;
  }
}
.menu-container .line-menu-header .mod-header .header-ext-custom .coesion-menu-btns ul li {
  margin-right: 15px;
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom .coesion-menu-btns ul li a {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.menu-container .line-menu-header .mod-header .header-ext-custom .coesion-menu-links ul {
  list-style: none;
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom .coesion-menu-links ul {
    margin-bottom: 15px !important;
  }
}
.menu-container .line-menu-header .mod-header .header-ext-custom .coesion-menu-links ul li {
  opacity: 1 !important;
  color: #fff !important;
  text-align: left;
  margin-bottom: 0px !important;
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom .coesion-menu-links ul li {
    margin-bottom: 0 !important;
  }
}
.menu-container .line-menu-header .mod-header .header-ext-custom .coesion-menu-links ul li a {
  color: #fff !important;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .coesion-menu-links ul li a:hover {
  color: #FF8762 !important;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .social-link {
  margin-bottom: 20px;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .social-link ul.social {
  justify-content: space-between;
  width: 15%;
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 991px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link ul.social {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link ul.social {
    width: 50%;
  }
}
.menu-container .line-menu-header .mod-header .header-ext-custom .social-link ul.social li {
  opacity: 1 !important;
  margin-right: 10px;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .social-link a {
  padding: 0 7px;
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link a {
    width: 52px;
    height: 52px;
  }
}
.menu-container .line-menu-header .mod-header .header-ext-custom .social-link a img {
  filter: brightness(0) invert(1);
}
.menu-container .line-menu-header .mod-header .header-ext-custom .social-link a:hover img, .menu-container .line-menu-header .mod-header .header-ext-custom .social-link a:focus img {
  filter: hue-rotate(-5deg) brightness(2.5);
}
.menu-container .line-menu-header .mod-header .header-ext-login {
  margin-left: 0 !important;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-login {
    position: relative;
    background: transparent;
    box-shadow: none;
    margin-bottom: 10px;
  }
}
.menu-container .line-menu-header .mod-header .header-ext-login a.member-login {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  background-color: #FF8762;
  color: #fff;
  transition: all 0.5s;
  border: 1px solid #FF8762;
  padding: 10px 20px;
}
.menu-container .line-menu-header .mod-header .header-ext-login a.member-login:hover, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login:active, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-login a.member-login {
    white-space: normal !important;
  }
}
.menu-container .line-menu-header .mod-header .header-ext-login a.member-login:hover, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login:active, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login:focus {
  background-color: transparent;
  border: 1px solid #FF8762;
  color: #FF8762;
}
.menu-container .line-menu-header .mod-header .header-ext-login a.member-login.grey-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #FF8762;
  transition: all 0.5s;
}
.menu-container .line-menu-header .mod-header .header-ext-login a.member-login.grey-bg:hover, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login.grey-bg:active, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login.grey-bg:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.menu-container .line-menu-header .mod-header .header-ext-login a.member-login.black-bg, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.menu-container .line-menu-header .mod-header .header-ext-login a.member-login.black-bg:hover, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login:hover, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login.black-bg:active, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login:active, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login.black-bg:focus, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.menu-container .line-menu-header .mod-header .header-ext-login a.member-login.orange-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.menu-container .line-menu-header .mod-header .header-ext-login a.member-login.orange-bg:hover, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login.orange-bg:active, .menu-container .line-menu-header .mod-header .header-ext-login a.member-login.orange-bg:focus {
  background-color: #fff;
  border: 1px solid #fff;
  color: #282828;
}
.menu-container .line-menu-header .mod-header .header-ext-login .member-greeting {
  color: #fff;
}
@media (max-width: 1199px) {
  .menu-container .line-menu-header .mod-header .header-ext-login .member-greeting {
    font-size: 6px;
  }
}
.menu-container .line-menu-header .mod-header .header-ext-login .member-myprofile {
  color: #fff !important;
  text-decoration: underline;
  font-weight: 700;
}
.menu-container .line-menu-header .mod-header .header-ext-login .member-logout {
  color: #fff !important;
  text-decoration: underline;
  font-weight: 700;
}

/* Keyframes for animation */
@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/**
 * ----------------------------------------
 * animation Sticky menu
 * ----------------------------------------
 */
@-webkit-keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
@keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
.line-header:not(.sticked, .menuopened) {
  /*transition: top 250ms;*/
}
.line-header:not(.sticked, .menuopened) > .container {
  /*
  top: -100px;
  transition: top 250ms;*/
  /*position: static;*/
}
.line-header.sticked {
  -webkit-animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@media (max-width: 991px) {
  .line-header.sticked {
    background-color: #fff;
  }
}
.line-header.sticked > .container > .row {
  margin-top: 0;
  bottom: 0;
}
.line-header.sticked > .container > .row > div:nth-child(1) {
  /*
  .content {
      margin-top: 15px;
      .menu-hamburger {
          span {
              background-color: $primary;
          }
      }
  }
  */
}
.line-header.sticked > .container > .row > div:nth-child(2) .content {
  padding-top: 0;
}
.line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part .mod-header {
  margin-top: 6px;
}
.line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header, .member-login) {
  color: #FF8762 !important;
}
.line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header, .member-login):hover, .line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header, .member-login):focus, .line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header, .member-login):active {
  color: #A3EBB8 !important;
}
.line-header.sticked:not(.menuopened) {
  position: sticky;
  top: 0;
}
.line-header.sticked.opened .zone-html:nth-child(2) {
  z-index: 10000;
}
.line-header.sticked.opened .zone-html:nth-child(2) .content > img, .line-header.sticked.opened .zone-html:nth-child(2) .content .header-btns {
  display: none;
}

/* OPTION - Hide munu item when logged
body {
	&.member--isConnected {
		.nav.navbar-nav {
			> li {
				&[rel=data-menu-67910] {
					display: none!important;
				}
			}
		}
	}
}
*/
.panel-header {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
.panel-header a {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  color: #fff !important;
  font-weight: 500;
}
@media (max-width: 767px) {
  .panel-header a {
    font-size: 16px;
    line-height: 20px;
  }
}
.panel-header a:hover {
  color: #A3EBB8 !important;
  text-decoration: none !important;
}

.panel-connexion .member-login {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  background-color: #fff;
  color: #282828;
  transition: all 0.5s;
  border: 1px solid #FF8762;
  padding: 10px 20px;
}
.panel-connexion .member-login:hover, .panel-connexion .member-login:active, .panel-connexion .member-login:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .panel-connexion .member-login {
    white-space: normal !important;
  }
}
.panel-connexion .member-login:hover, .panel-connexion .member-login:active, .panel-connexion .member-login:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}

.panel-language a.switch-language {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  color: #fff !important;
  font-weight: 500;
}
@media (max-width: 767px) {
  .panel-language a.switch-language {
    font-size: 16px;
    line-height: 20px;
  }
}
.panel-language a.switch-language:hover {
  color: #A3EBB8 !important;
  text-decoration: none !important;
}

.panel-social {
  /*
  width:100%;
  padding-top: 10px;
  p {
      &:nth-child(1) {
          display:none;
      }
      &:nth-child(2) {
          margin-top: 0;
          margin-bottom: 35px;
          display:flex;
          flex-direction: row;

          a {
              display:flex;
              align-items: flex-end;
              justify-content: flex-start;
              width: 26px;
              height: 40px;
              margin-right: 20px;
              transition: all 250ms;
              filter: brightness(3.5) hue-rotate(318deg);
              &:hover {
                  opacity: .7;
              }
          }
      }
      &:nth-child(3) {
          a {
              @include p-small;
              color: $third!important;
          }
      }
  }

  */
  /*
  .social {
      justify-content: flex-end;
  }
  */
}

.footer-partenaires {
  background: #E0E7F4;
}
@media (min-width: 768px) {
  .footer-partenaires .container {
    width: calc(100vw - 120px);
    margin-right: auto;
    margin-left: auto;
  }
}
.footer-partenaires .container > .row {
  margin-top: -130px;
  background: #6B82A4;
  border-radius: 40px;
  padding: 76px 98px;
}
@media (max-width: 1199px) {
  .footer-partenaires .container > .row {
    padding: 65px 55px;
    margin-top: -110px;
  }
}
@media (max-width: 991px) {
  .footer-partenaires .container > .row {
    padding: 65px 30px;
  }
}
@media (max-width: 767px) {
  .footer-partenaires .container > .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.footer-partenaires .container > .row > div .content #foot-partners-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .footer-partenaires .container > .row > div .content #foot-partners-title {
    flex-direction: column;
    margin-bottom: 25px;
  }
}
.footer-partenaires .container > .row > div .content #foot-partners-title h2 {
  color: #fff;
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .footer-partenaires .container > .row > div .content #foot-partners-title h2 {
    text-align: center;
  }
}
.footer-partenaires .container > .row > div .content #foot-partners-title p {
  text-align: right;
  visibility: hidden;
}
@media (max-width: 767px) {
  .footer-partenaires .container > .row > div .content #foot-partners-title p {
    text-align: center;
  }
}
.footer-partenaires .container > .row > div .content #foot-partners-title p .btn {
  color: #fff;
}
.footer-partenaires .container > .row > div .content .footer-partners-section {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .footer-partenaires .container > .row > div .content .footer-partners-section h6 {
    text-align: center;
  }
}
.footer-partenaires .container > .row > div .content .footer-partners-section p {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-partenaires .container > .row > div .content .footer-partners-section p {
    flex-direction: column;
  }
}

.line-footer {
  background: #E0E7F4;
  padding-top: 25px;
  margin-top: -2px;
}
@media (max-width: 991px) {
  .line-footer {
    position: relative;
  }
}
.line-footer .footer-one, .line-footer .footer-two {
  background: #282828;
}
@media (min-width: 768px) {
  .line-footer .footer-one, .line-footer .footer-two {
    width: calc(100vw - 120px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .line-footer .footer-one .container, .line-footer .footer-two .container {
    width: 100%;
  }
}
.line-footer .footer-one .container > .row > div:first-child, .line-footer .footer-two .container > .row > div:first-child {
  width: 33%;
}
@media (min-width: 1300px) {
  .line-footer .footer-one .container > .row > div:first-child, .line-footer .footer-two .container > .row > div:first-child {
    width: 40%;
  }
}
@media (max-width: 991px) {
  .line-footer .footer-one .container > .row > div:first-child, .line-footer .footer-two .container > .row > div:first-child {
    width: 100%;
  }
}
.line-footer .footer-one .container > .row > div:nth-child(2), .line-footer .footer-two .container > .row > div:nth-child(2) {
  width: 33%;
}
@media (min-width: 1300px) {
  .line-footer .footer-one .container > .row > div:nth-child(2), .line-footer .footer-two .container > .row > div:nth-child(2) {
    width: 35%;
  }
}
@media (max-width: 991px) {
  .line-footer .footer-one .container > .row > div:nth-child(2), .line-footer .footer-two .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-footer .footer-one .container > .row > div:last-child, .line-footer .footer-two .container > .row > div:last-child {
  width: 33%;
}
@media (min-width: 1300px) {
  .line-footer .footer-one .container > .row > div:last-child, .line-footer .footer-two .container > .row > div:last-child {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .line-footer .footer-one .container > .row > div:last-child, .line-footer .footer-two .container > .row > div:last-child {
    width: 100%;
  }
}
.line-footer .footer-one {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 80px 90px 0px 100px;
  margin-top: -100px;
}
@media (max-width: 1199px) {
  .line-footer .footer-one {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .line-footer .footer-one {
    margin-right: 15px;
    margin-left: 15px;
    position: relative;
  }
}
@media (max-width: 767px) {
  .line-footer .footer-one .container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .line-footer .footer-one .container > .row > div:first-child {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .line-footer .footer-one .container > .row > div:first-child .content a img {
    width: 188px !important;
    padding-bottom: 130px;
  }
}
.line-footer .footer-one .container > .row > div:nth-child(2) .content {
  display: flex;
}
@media (max-width: 767px) {
  .line-footer .footer-one .container > .row > div:nth-child(2) .content {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .line-footer .footer-one .container > .row > div:nth-child(2) .content p {
    margin-bottom: 0;
  }
}
.line-footer .footer-one .container > .row > div:nth-child(2) .content .btn {
  margin-right: 15px;
  margin-top: 0;
}
.line-footer .footer-one .container > .row > div:last-child .content ul.social {
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .line-footer .footer-one .container > .row > div:last-child .content ul.social {
    justify-content: flex-start;
  }
}
.line-footer .footer-one .container > .row > div:last-child .content ul.social li {
  margin-left: 10px;
}
@media (max-width: 1440px) {
  .line-footer .footer-one .container > .row > div:last-child .content ul.social li a {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 767px) {
  .line-footer .footer-one .container > .row > div:last-child .content ul.social li a {
    width: 53px;
    height: 53px;
  }
}
.line-footer .footer-one.home {
  margin-top: 0;
}
.line-footer .footer-two {
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  padding: 60px 90px 80px 100px;
}
@media (max-width: 1199px) {
  .line-footer .footer-two {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .line-footer .footer-two {
    margin-right: 15px;
    margin-left: 15px;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .line-footer .footer-two .container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .line-footer .footer-two .container > .row > div:first-child {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .line-footer .footer-two .container > .row > div:first-child {
    width: 75%;
    position: absolute;
    top: 55px;
    left: 30px;
  }
}
.line-footer .footer-two .container > .row > div:first-child .content p {
  color: #fff;
}
.line-footer .footer-two .container > .row > div:first-child .content p a {
  color: #fff !important;
}
@media (max-width: 767px) {
  .line-footer .footer-two .container > .row > div:first-child .content p br {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .line-footer .footer-two .container > .row > div:nth-child(2) {
    width: 45%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-footer .footer-two .container > .row > div:nth-child(2) {
    width: 65%;
  }
}
@media (max-width: 767px) {
  .line-footer .footer-two .container > .row > div:nth-child(2) {
    width: 100%;
    margin-bottom: 30px;
  }
}
.line-footer .footer-two .container > .row > div:nth-child(2) .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .line-footer .footer-two .container > .row > div:nth-child(2) .content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.line-footer .footer-two .container > .row > div:nth-child(2) .content .foot-menu-one, .line-footer .footer-two .container > .row > div:nth-child(2) .content .foot-menu-two {
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .line-footer .footer-two .container > .row > div:nth-child(2) .content .foot-menu-one {
    margin-bottom: 20px !important;
  }
}
.line-footer .footer-two .container > .row > div:nth-child(2) .content .foot-menu-one li a {
  color: #fff !important;
  font-size: 24px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .line-footer .footer-two .container > .row > div:nth-child(2) .content .foot-menu-one li a {
    font-size: 19px;
    line-height: 25px;
  }
}
.line-footer .footer-two .container > .row > div:nth-child(2) .content .foot-menu-one li a:hover {
  color: #FF8762 !important;
}
.line-footer .footer-two .container > .row > div:nth-child(2) .content .foot-menu-two li a {
  color: #fff !important;
}
.line-footer .footer-two .container > .row > div:nth-child(2) .content .foot-menu-two li a:hover {
  color: #FF8762 !important;
}
.line-footer .footer-two .container > .row > div:last-child .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-footer .footer-two.home .container > .row > div:first-child {
    top: 155px;
  }
}

.line-footer-copyright {
  background: #E0E7F4;
  padding-bottom: 22px;
}
.line-footer-copyright .container > .row > div .content {
  text-align: center;
}
@media (max-width: 767px) {
  .line-footer-copyright .container > .row > div .content {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-footer-copyright .container > .row > div .content p {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 2px;
}
.line-footer-copyright .container > .row > div .content p a {
  color: #EE653B !important;
  transition: all 0.5s;
}
.line-footer-copyright .container > .row > div .content p a:hover {
  color: #282828 !important;
}

.article-main {
  padding-bottom: 80px;
}
.article-main .container .row .zone-article .mod-article__wrapper {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
.article-main .container .row .zone-article .mod-article__wrapper .mod-article__title {
  order: 0;
  margin-top: 70px;
  margin-bottom: 56px;
  color: #282828;
}
.article-main .container .row .zone-article .mod-article__wrapper .mod-article__published-date {
  order: 1;
}
.article-main .container .row .zone-article .mod-article__wrapper .mod-article__category {
  order: 2;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content {
  order: 3;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__img {
  margin-bottom: 25px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__intro h6 {
  margin-bottom: 45px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content > img:first-child, .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content > img:first-of-type {
  display: none;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content p:first-of-type img {
  display: none;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content h2 {
  margin-bottom: 45px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content h3 {
  color: #282828;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 50px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content .quote, .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content .auteur {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  text-transform: initial;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 64px;
  border-left: 11px solid #A3EBB8;
}
@media (max-width: 767px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content .quote, .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content .auteur {
    font-size: 18px;
    line-height: 24px;
  }
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content p.citation {
  padding-left: 40px;
  border-left: 4px solid #A3EBB8;
}
@media (min-width: 768px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.auteur {
    width: 60% !important;
  }
}
.line-article-retour {
  padding-top: 45px;
  padding-bottom: 90px;
}
.line-article-retour .container .row .zone-html .content a {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  height: 55px !important;
  padding: 20px 35px !important;
  background-color: #FF8762 !important;
  color: #fff !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
}
.line-article-retour .container .row .zone-html .content a:hover, .line-article-retour .container .row .zone-html .content a:active, .line-article-retour .container .row .zone-html .content a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-article-retour .container .row .zone-html .content a {
    white-space: normal !important;
  }
}
.line-article-retour .container .row .zone-html .content a:hover, .line-article-retour .container .row .zone-html .content a:active, .line-article-retour .container .row .zone-html .content a:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}

.zone-news #news_content.news-mosaic .row > div a:first-of-type .news-thumbnail {
  max-width: 260px;
  border-radius: 15px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .zone-news #news_content.news-mosaic .row > div a:first-of-type .news-thumbnail {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .zone-news #news_content.news-mosaic .row > div a:first-of-type .news-thumbnail {
    max-width: 240px;
  }
}
.zone-news #news_content.news-mosaic .row > div h3.news-title {
  font-size: 22px;
  line-height: 28px;
}
.zone-news #news_content.news-mosaic .row > div h3.news-title a {
  color: #282828 !important;
}
.zone-news #news_content.news-mosaic .row > div h3.news-title a:hover {
  color: #FF8762 !important;
}
.zone-news #news_content.news-mosaic .row > div > a:last-child {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  background-color: #FF8762;
  color: #fff;
  transition: all 0.5s;
  border: 1px solid #FF8762;
  padding: 10px 20px;
}
.zone-news #news_content.news-mosaic .row > div > a:last-child:hover, .zone-news #news_content.news-mosaic .row > div > a:last-child:active, .zone-news #news_content.news-mosaic .row > div > a:last-child:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-news #news_content.news-mosaic .row > div > a:last-child {
    white-space: normal !important;
  }
}
.zone-news #news_content.news-mosaic .row > div > a:last-child:hover, .zone-news #news_content.news-mosaic .row > div > a:last-child:active, .zone-news #news_content.news-mosaic .row > div > a:last-child:focus {
  background-color: transparent;
  border: 1px solid #FF8762;
  color: #FF8762;
}
.zone-news #news_content.news-mosaic .row > div > a:last-child.grey-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #FF8762;
  transition: all 0.5s;
}
.zone-news #news_content.news-mosaic .row > div > a:last-child.grey-bg:hover, .zone-news #news_content.news-mosaic .row > div > a:last-child.grey-bg:active, .zone-news #news_content.news-mosaic .row > div > a:last-child.grey-bg:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.zone-news #news_content.news-mosaic .row > div > a:last-child.black-bg, .zone-news #news_content.news-mosaic .menu-container .line-menu-header .mod-header .header-ext-login .row > div > a.member-login:last-child, .menu-container .line-menu-header .mod-header .header-ext-login .zone-news #news_content.news-mosaic .row > div > a.member-login:last-child {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.zone-news #news_content.news-mosaic .row > div > a:last-child.black-bg:hover, .zone-news #news_content.news-mosaic .menu-container .line-menu-header .mod-header .header-ext-login .row > div > a.member-login:last-child:hover, .menu-container .line-menu-header .mod-header .header-ext-login .zone-news #news_content.news-mosaic .row > div > a.member-login:last-child:hover, .zone-news #news_content.news-mosaic .row > div > a:last-child.black-bg:active, .zone-news #news_content.news-mosaic .menu-container .line-menu-header .mod-header .header-ext-login .row > div > a.member-login:last-child:active, .menu-container .line-menu-header .mod-header .header-ext-login .zone-news #news_content.news-mosaic .row > div > a.member-login:last-child:active, .zone-news #news_content.news-mosaic .row > div > a:last-child.black-bg:focus, .zone-news #news_content.news-mosaic .menu-container .line-menu-header .mod-header .header-ext-login .row > div > a.member-login:last-child:focus, .menu-container .line-menu-header .mod-header .header-ext-login .zone-news #news_content.news-mosaic .row > div > a.member-login:last-child:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.zone-news #news_content.news-mosaic .row > div > a:last-child.orange-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.zone-news #news_content.news-mosaic .row > div > a:last-child.orange-bg:hover, .zone-news #news_content.news-mosaic .row > div > a:last-child.orange-bg:active, .zone-news #news_content.news-mosaic .row > div > a:last-child.orange-bg:focus {
  background-color: #fff;
  border: 1px solid #fff;
  color: #282828;
}

/* Module articles en vedette */
/*###########################  CONNEXION  ###########################*/
/* Global Fix*/
form.form-horizontal .zend_form .col-md-12 {
  width: 100%;
}
form.form-horizontal .zend_form .col-md-12 input,
form.form-horizontal .zend_form .col-md-12 select,
form.form-horizontal .zend_form .col-md-12 textarea {
  box-shadow: none !important;
}
/*Form Connexion Membre*/
@media (min-width: 768px) {
  .zone-member .member-login-wrapper, .zone-member .login-wrapper__login, .zone-login .member-login-wrapper, .zone-login .login-wrapper__login {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.zone-member .member-login-wrapper h1, .zone-member .login-wrapper__login h1, .zone-login .member-login-wrapper h1, .zone-login .login-wrapper__login h1 {
  font-size: 50px;
  line-height: 52px;
  font-weight: 400;
  text-transform: initial;
  padding-bottom: 32px;
  text-align: left;
}
@media (max-width: 767px) {
  .zone-member .member-login-wrapper h1, .zone-member .login-wrapper__login h1, .zone-login .member-login-wrapper h1, .zone-login .login-wrapper__login h1 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .zone-member .member-login-wrapper h1, .zone-member .login-wrapper__login h1, .zone-login .member-login-wrapper h1, .zone-login .login-wrapper__login h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
.zone-member .member-login-wrapper #profile_login_form, .zone-member .member-login-wrapper #login_content_box, .zone-member .login-wrapper__login #profile_login_form, .zone-member .login-wrapper__login #login_content_box, .zone-login .member-login-wrapper #profile_login_form, .zone-login .member-login-wrapper #login_content_box, .zone-login .login-wrapper__login #profile_login_form, .zone-login .login-wrapper__login #login_content_box {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form, .zone-member .member-login-wrapper #login_content_box .zend_form, .zone-member .login-wrapper__login #profile_login_form .zend_form, .zone-member .login-wrapper__login #login_content_box .zend_form, .zone-login .member-login-wrapper #profile_login_form .zend_form, .zone-login .member-login-wrapper #login_content_box .zend_form, .zone-login .login-wrapper__login #profile_login_form .zend_form, .zone-login .login-wrapper__login #login_content_box .zend_form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* Two equal columns */
  grid-template-rows: auto auto auto auto; /* Four rows */
  gap: 10px; /* Optional: adds space between items */
  width: 500px; /* Adjust as needed */
}
@media (max-width: 767px) {
  .zone-member .member-login-wrapper #profile_login_form .zend_form, .zone-member .member-login-wrapper #login_content_box .zend_form, .zone-member .login-wrapper__login #profile_login_form .zend_form, .zone-member .login-wrapper__login #login_content_box .zend_form, .zone-login .member-login-wrapper #profile_login_form .zend_form, .zone-login .member-login-wrapper #login_content_box .zend_form, .zone-login .login-wrapper__login #profile_login_form .zend_form, .zone-login .login-wrapper__login #login_content_box .zend_form {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }
}
.zone-member .member-login-wrapper #profile_login_form .zend_form div.form-element-email, .zone-member .member-login-wrapper #login_content_box .zend_form div.form-element-email, .zone-member .login-wrapper__login #profile_login_form .zend_form div.form-element-email, .zone-member .login-wrapper__login #login_content_box .zend_form div.form-element-email, .zone-login .member-login-wrapper #profile_login_form .zend_form div.form-element-email, .zone-login .member-login-wrapper #login_content_box .zend_form div.form-element-email, .zone-login .login-wrapper__login #profile_login_form .zend_form div.form-element-email, .zone-login .login-wrapper__login #login_content_box .zend_form div.form-element-email {
  grid-column: span 3; /* First row, spans both columns */
  grid-row: 1;
}
@media (max-width: 767px) {
  .zone-member .member-login-wrapper #profile_login_form .zend_form div.form-element-email, .zone-member .member-login-wrapper #login_content_box .zend_form div.form-element-email, .zone-member .login-wrapper__login #profile_login_form .zend_form div.form-element-email, .zone-member .login-wrapper__login #login_content_box .zend_form div.form-element-email, .zone-login .member-login-wrapper #profile_login_form .zend_form div.form-element-email, .zone-login .member-login-wrapper #login_content_box .zend_form div.form-element-email, .zone-login .login-wrapper__login #profile_login_form .zend_form div.form-element-email, .zone-login .login-wrapper__login #login_content_box .zend_form div.form-element-email {
    order: 0;
  }
}
.zone-member .member-login-wrapper #profile_login_form .zend_form div.form-element-password, .zone-member .member-login-wrapper #login_content_box .zend_form div.form-element-password, .zone-member .login-wrapper__login #profile_login_form .zend_form div.form-element-password, .zone-member .login-wrapper__login #login_content_box .zend_form div.form-element-password, .zone-login .member-login-wrapper #profile_login_form .zend_form div.form-element-password, .zone-login .member-login-wrapper #login_content_box .zend_form div.form-element-password, .zone-login .login-wrapper__login #profile_login_form .zend_form div.form-element-password, .zone-login .login-wrapper__login #login_content_box .zend_form div.form-element-password {
  grid-column: span 3; /* First row, spans both columns */
  grid-row: 2;
}
@media (max-width: 767px) {
  .zone-member .member-login-wrapper #profile_login_form .zend_form div.form-element-password, .zone-member .member-login-wrapper #login_content_box .zend_form div.form-element-password, .zone-member .login-wrapper__login #profile_login_form .zend_form div.form-element-password, .zone-member .login-wrapper__login #login_content_box .zend_form div.form-element-password, .zone-login .member-login-wrapper #profile_login_form .zend_form div.form-element-password, .zone-login .member-login-wrapper #login_content_box .zend_form div.form-element-password, .zone-login .login-wrapper__login #profile_login_form .zend_form div.form-element-password, .zone-login .login-wrapper__login #login_content_box .zend_form div.form-element-password {
    order: 1;
  }
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div, .zone-member .member-login-wrapper #login_content_box .zend_form > div, .zone-member .login-wrapper__login #profile_login_form .zend_form > div, .zone-member .login-wrapper__login #login_content_box .zend_form > div, .zone-login .member-login-wrapper #profile_login_form .zend_form > div, .zone-login .member-login-wrapper #login_content_box .zend_form > div, .zone-login .login-wrapper__login #profile_login_form .zend_form > div, .zone-login .login-wrapper__login #login_content_box .zend_form > div {
  grid-column: span 3; /* Fourth row, spans both columns */
  grid-row: 4;
}
@media (max-width: 767px) {
  .zone-member .member-login-wrapper #profile_login_form .zend_form > div, .zone-member .member-login-wrapper #login_content_box .zend_form > div, .zone-member .login-wrapper__login #profile_login_form .zend_form > div, .zone-member .login-wrapper__login #login_content_box .zend_form > div, .zone-login .member-login-wrapper #profile_login_form .zend_form > div, .zone-login .member-login-wrapper #login_content_box .zend_form > div, .zone-login .login-wrapper__login #profile_login_form .zend_form > div, .zone-login .login-wrapper__login #login_content_box .zend_form > div {
    order: 4;
  }
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type, .zone-member .member-login-wrapper #login_content_box .zend_form > div:last-of-type, .zone-member .login-wrapper__login #profile_login_form .zend_form > div:last-of-type, .zone-member .login-wrapper__login #login_content_box .zend_form > div:last-of-type, .zone-login .member-login-wrapper #profile_login_form .zend_form > div:last-of-type, .zone-login .member-login-wrapper #login_content_box .zend_form > div:last-of-type, .zone-login .login-wrapper__login #profile_login_form .zend_form > div:last-of-type, .zone-login .login-wrapper__login #login_content_box .zend_form > div:last-of-type {
  text-align: left;
  margin-bottom: 32px;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form input#submit, .zone-member .member-login-wrapper #login_content_box .zend_form input#submit, .zone-member .login-wrapper__login #profile_login_form .zend_form input#submit, .zone-member .login-wrapper__login #login_content_box .zend_form input#submit, .zone-login .member-login-wrapper #profile_login_form .zend_form input#submit, .zone-login .member-login-wrapper #login_content_box .zend_form input#submit, .zone-login .login-wrapper__login #profile_login_form .zend_form input#submit, .zone-login .login-wrapper__login #login_content_box .zend_form input#submit {
  grid-column: 1; /* Third row, first column */
  grid-row: 3;
  margin-right: 16px;
  max-width: fit-content;
}
@media (max-width: 767px) {
  .zone-member .member-login-wrapper #profile_login_form .zend_form input#submit, .zone-member .member-login-wrapper #login_content_box .zend_form input#submit, .zone-member .login-wrapper__login #profile_login_form .zend_form input#submit, .zone-member .login-wrapper__login #login_content_box .zend_form input#submit, .zone-login .member-login-wrapper #profile_login_form .zend_form input#submit, .zone-login .member-login-wrapper #login_content_box .zend_form input#submit, .zone-login .login-wrapper__login #profile_login_form .zend_form input#submit, .zone-login .login-wrapper__login #login_content_box .zend_form input#submit {
    order: 2;
  }
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription, .zone-member .member-login-wrapper #login_content_box .zend_form a.profile-subscription, .zone-member .login-wrapper__login #profile_login_form .zend_form a.profile-subscription, .zone-member .login-wrapper__login #login_content_box .zend_form a.profile-subscription, .zone-login .member-login-wrapper #profile_login_form .zend_form a.profile-subscription, .zone-login .member-login-wrapper #login_content_box .zend_form a.profile-subscription, .zone-login .login-wrapper__login #profile_login_form .zend_form a.profile-subscription, .zone-login .login-wrapper__login #login_content_box .zend_form a.profile-subscription {
  grid-column: 2; /* Third row, first column */
  grid-row: 3;
  padding: 10px 20px !important;
  background-color: transparent !important;
  color: #282828 !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
  max-width: fit-content;
}
@media (max-width: 767px) {
  .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription, .zone-member .member-login-wrapper #login_content_box .zend_form a.profile-subscription, .zone-member .login-wrapper__login #profile_login_form .zend_form a.profile-subscription, .zone-member .login-wrapper__login #login_content_box .zend_form a.profile-subscription, .zone-login .member-login-wrapper #profile_login_form .zend_form a.profile-subscription, .zone-login .member-login-wrapper #login_content_box .zend_form a.profile-subscription, .zone-login .login-wrapper__login #profile_login_form .zend_form a.profile-subscription, .zone-login .login-wrapper__login #login_content_box .zend_form a.profile-subscription {
    order: 3;
  }
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:hover, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:active, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:focus, .zone-member .member-login-wrapper #login_content_box .zend_form a.profile-subscription:hover, .zone-member .member-login-wrapper #login_content_box .zend_form a.profile-subscription:active, .zone-member .member-login-wrapper #login_content_box .zend_form a.profile-subscription:focus, .zone-member .login-wrapper__login #profile_login_form .zend_form a.profile-subscription:hover, .zone-member .login-wrapper__login #profile_login_form .zend_form a.profile-subscription:active, .zone-member .login-wrapper__login #profile_login_form .zend_form a.profile-subscription:focus, .zone-member .login-wrapper__login #login_content_box .zend_form a.profile-subscription:hover, .zone-member .login-wrapper__login #login_content_box .zend_form a.profile-subscription:active, .zone-member .login-wrapper__login #login_content_box .zend_form a.profile-subscription:focus, .zone-login .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:hover, .zone-login .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:active, .zone-login .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:focus, .zone-login .member-login-wrapper #login_content_box .zend_form a.profile-subscription:hover, .zone-login .member-login-wrapper #login_content_box .zend_form a.profile-subscription:active, .zone-login .member-login-wrapper #login_content_box .zend_form a.profile-subscription:focus, .zone-login .login-wrapper__login #profile_login_form .zend_form a.profile-subscription:hover, .zone-login .login-wrapper__login #profile_login_form .zend_form a.profile-subscription:active, .zone-login .login-wrapper__login #profile_login_form .zend_form a.profile-subscription:focus, .zone-login .login-wrapper__login #login_content_box .zend_form a.profile-subscription:hover, .zone-login .login-wrapper__login #login_content_box .zend_form a.profile-subscription:active, .zone-login .login-wrapper__login #login_content_box .zend_form a.profile-subscription:focus {
  text-decoration: none !important;
  background-color: #FF8762 !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}
.zone-member .member-resetpassword-wrapper > h1, .zone-login .member-resetpassword-wrapper > h1 {
  font-size: 50px;
  line-height: 52px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-member .member-resetpassword-wrapper > h1, .zone-login .member-resetpassword-wrapper > h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
.zone-member .member-resetpassword-wrapper #forget_password_form .form-element-email, .zone-login .member-resetpassword-wrapper #forget_password_form .form-element-email {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .zone-member .member-resetpassword-wrapper #forget_password_form .form-element-email, .zone-login .member-resetpassword-wrapper #forget_password_form .form-element-email {
    max-width: 50%;
  }
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn, .zone-login .member-resetpassword-wrapper #forget_password_form .btn {
  margin-right: 15px;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn-link, .zone-login .member-resetpassword-wrapper #forget_password_form .btn-link {
  padding: 10px 20px !important;
  background-color: transparent !important;
  color: #282828 !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
  border-radius: 60px !important;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn-link:hover, .zone-member .member-resetpassword-wrapper #forget_password_form .btn-link:active, .zone-member .member-resetpassword-wrapper #forget_password_form .btn-link:focus, .zone-login .member-resetpassword-wrapper #forget_password_form .btn-link:hover, .zone-login .member-resetpassword-wrapper #forget_password_form .btn-link:active, .zone-login .member-resetpassword-wrapper #forget_password_form .btn-link:focus {
  text-decoration: none !important;
  background-color: #FF8762 !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}

/*Espace Evenements - Vue Details*/
/* Espace Evenement - Mosaique */
/*###########################  ESPACE MEMBRE  ###########################*/
.member--isConnected .menu-container .line-menu-header .coesion-menu-btns {
  position: relative !important;
  top: 0px !important;
  left: 0 !important;
}
.member--isConnected .line-zone-membre .container {
  width: 100%;
  padding-left: 8%;
  padding-right: 8%;
}
@media (max-width: 991px) {
  .member--isConnected .line-zone-membre .container {
    max-width: 100%;
  }
}

.zone-member {
  margin-top: 0px;
  margin-bottom: 32px;
}
.zone-member > h1 {
  font-size: 50px;
  line-height: 52px;
  font-weight: 400;
  text-transform: initial;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .zone-member > h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
.zone-member .sidebar__member-zone {
  width: 33%;
  /*
  @include max-md {
      width: 100%;
  }

  @include max-sm {
      width: 100%;
  }
  */
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone {
    width: 100%;
  }
}
.zone-member .sidebar__member-zone .member-sidebar__inner {
  background-color: transparent;
  padding: 0px 25px 35px 25px;
  margin-right: 15px;
  border-radius: 3px;
}
@media (max-width: 991px) {
  .zone-member .sidebar__member-zone .member-sidebar__inner {
    padding: 0px;
  }
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone .member-sidebar__inner {
    margin-right: 0;
  }
}
.zone-member .sidebar__member-zone .member-sidebar__member-header {
  padding: 0;
  border: none;
}
.zone-member .sidebar__member-zone .member-sidebar__member-header__title {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #282828;
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer {
  padding-left: 0;
  padding-right: 0;
  padding-top: 36px;
  padding-bottom: 36px;
  background: transparent;
  border-top: 1px solid #ccc;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  background-color: #fff;
  color: #282828;
  transition: all 0.5s;
  border: 1px solid #FF8762;
  padding: 10px 20px;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a:hover, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:active, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone .member-sidebar__member-footer a {
    white-space: normal !important;
  }
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a:hover, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:active, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.zone-member .sidebar__member-zone .member-sidebar__menu {
  padding-left: 0;
  padding-right: 0;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li {
  padding: 0;
  margin-bottom: 5px;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #282828;
  text-transform: inherit;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a:hover {
  color: #FF8762;
  text-decoration: none;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li.active {
  display: inline-block;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li.active a {
  color: #282828;
}
.zone-member .member {
  width: 66%;
}
@media (max-width: 767px) {
  .zone-member .member {
    width: 100%;
  }
}
.zone-member .member .section {
  margin-bottom: 40px;
}
.zone-member .member .section label.control-label {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #282828;
  margin-bottom: 5px;
  margin-top: 10px;
}
.zone-member .member h1 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #282828;
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
}
.zone-member .member h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  color: #282828;
}
.zone-member .member input#submit {
  float: left !important;
}
.zone-member .member #member-documents li a {
  color: #282828 !important;
}
.zone-member .member .box-object-items-list .btn {
  color: #282828 !important;
}
.zone-member .member .field-object-temp .object-main-title {
  opacity: 1 !important;
}
.zone-member .member .field-object-temp .object-top-action #btn_submit {
  margin-right: 15px;
}
.zone-member .member .field-object-temp .object-top-action #btn_cancel {
  padding: 10px 20px !important;
  background-color: transparent !important;
  color: #282828 !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
  border-radius: 60px !important;
}
.zone-member .member .field-object-temp .object-top-action #btn_cancel:hover, .zone-member .member .field-object-temp .object-top-action #btn_cancel:active, .zone-member .member .field-object-temp .object-top-action #btn_cancel:focus {
  text-decoration: none !important;
  background-color: #FF8762 !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}
.zone-member .member .field-object-temp .form-content .o-layout-item__form .object-form-action .field-object-next-element, .zone-member .member .field-object-temp .form-content .o-layout-item__form .object-form-action .field-object-prev-element {
  color: #282828 !important;
}
.zone-member .member .field-object-temp .form-content .o-layout-item__list-group .list-group .list-group-item {
  color: #282828 !important;
}
.zone-member .member .field-object-temp .form-content .o-layout-item__list-group .list-group .list-group-item.active {
  background: transparent !important;
  color: #FF8762 !important;
}
.zone-member .form-element-votre_photo .input-file .preview #preview {
  padding-bottom: 0;
  margin-bottom: 25px;
  height: 175px;
  width: 175px;
  border-radius: 100px;
  margin-left: auto;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.zone-member .preview.row {
  margin-left: 0;
  margin-right: 0;
}
.zone-member .heading-container .heading {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
}
.zone-member .registration-list .subtitle {
  margin-top: 25px;
}

/*Événements en vedette - affichage mosaïque*/
/* CARROUSEL - pleine largeur */
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  background-color: #FF8762;
  color: #fff;
  transition: all 0.5s;
  border: 1px solid #FF8762;
  padding: 10px 20px;
  margin-bottom: 30px;
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail:hover, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail:active, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail {
    white-space: normal !important;
  }
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail:hover, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail:active, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail:focus {
  background-color: transparent;
  border: 1px solid #FF8762;
  color: #FF8762;
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.grey-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #FF8762;
  transition: all 0.5s;
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.grey-bg:hover, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.grey-bg:active, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.grey-bg:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.black-bg, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text .menu-container .line-menu-header .mod-header .header-ext-login a.carousel-link-detail.member-login, .menu-container .line-menu-header .mod-header .header-ext-login .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.member-login {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.black-bg:hover, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text .menu-container .line-menu-header .mod-header .header-ext-login a.carousel-link-detail.member-login:hover, .menu-container .line-menu-header .mod-header .header-ext-login .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.member-login:hover, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.black-bg:active, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text .menu-container .line-menu-header .mod-header .header-ext-login a.carousel-link-detail.member-login:active, .menu-container .line-menu-header .mod-header .header-ext-login .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.member-login:active, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.black-bg:focus, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text .menu-container .line-menu-header .mod-header .header-ext-login a.carousel-link-detail.member-login:focus, .menu-container .line-menu-header .mod-header .header-ext-login .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.member-login:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.orange-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.orange-bg:hover, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.orange-bg:active, .zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail.orange-bg:focus {
  background-color: #fff;
  border: 1px solid #fff;
  color: #282828;
}

/* MULTI-SLIDE CAROUSEL !! Only with carousel pleine largeur (vertical mode) */
.multislides {
  /* DEFAULTS */
  /* MULTISLIDES OVERRIDES */
  /*xxs*/
  /*xs*/
  /*sm*/
  /*md*/
  /*lg*/
}
.multislides .carousel .carousel-control .glyphicon-chevron-left,
.multislides .carousel .carousel-control .glyphicon-chevron-right {
  height: 60px;
  width: 60px;
  background-color: transparent;
  border: none;
  border-radius: 50px;
  background-image: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/fleche-carousel.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.multislides .carousel .carousel-control .glyphicon-chevron-left {
  transform: rotate(180deg);
}
.multislides .carousel-inner .carousel-text .caption-intro {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.multislides .carousel-inner > .active, .multislides .carousel-inner > .next, .multislides .carousel-inner > .prev {
  display: block;
}
.multislides .carousel-inner > .active {
  left: 0;
}
.multislides .carousel-inner > .active.left {
  left: -100%;
}
.multislides .carousel-inner > .active.right {
  left: 100%;
}
.multislides .carousel-inner > .next, .multislides .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.multislides .carousel-inner > .next {
  left: 100%;
}
.multislides .carousel-inner > .next.left {
  left: 0;
}
.multislides .carousel-inner > .prev {
  left: -100%;
}
.multislides .carousel-inner > .prev.right {
  left: 0;
}
.multislides .carousel-control {
  width: 8%;
  width: 0px;
}
.multislides .carousel-control.left, .multislides .carousel-control.right {
  margin: 0;
  background-image: none;
  opacity: 1;
}
@media (max-width: 575px) {
  .multislides .carousel-control.left {
    left: 0;
  }
}
@media (max-width: 575px) {
  .multislides .carousel-control.right {
    right: 0;
  }
}
.multislides .carousel-control > a > span {
  color: white;
  font-size: 29px !important;
}
.multislides .item .carousel-text .caption-intro {
  padding: 0 60px 0 60px;
}
.multislides .carousel-text {
  position: relative;
  min-height: 1px;
  padding: 5px;
  float: left;
  background-color: #fff;
}
.multislides .active > div {
  display: none;
}
.multislides .active > div:first-child {
  display: block;
}
@media (max-width: 575px) {
  .multislides .carousel-inner .active.left {
    left: -100%;
  }
  .multislides .carousel-inner .active.right {
    left: 100%;
  }
  .multislides .carousel-inner .next {
    left: 100%;
  }
  .multislides .carousel-inner .prev {
    left: -100%;
  }
  .multislides .carousel-text {
    width: 100%;
  }
  .multislides .active > div:first-child {
    display: block;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .multislides .carousel-inner .active.left {
    left: -50%;
  }
  .multislides .carousel-inner .active.right {
    left: 50%;
  }
  .multislides .carousel-inner .next {
    left: 50%;
  }
  .multislides .carousel-inner .prev {
    left: -50%;
  }
  .multislides .carousel-text {
    width: 50%;
  }
  .multislides .active > div:first-child + div {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .multislides .carousel-inner .active.left {
    left: -50%;
  }
  .multislides .carousel-inner .active.right {
    left: 50%;
  }
  .multislides .carousel-inner .next {
    left: 50%;
  }
  .multislides .carousel-inner .prev {
    left: -50%;
  }
  .multislides .carousel-text {
    width: 50%;
  }
  .multislides .active > div:first-child + div {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .multislides .carousel-inner .active.left {
    left: -33%;
  }
  .multislides .carousel-inner .active.right {
    left: 33%;
  }
  .multislides .carousel-inner .next {
    left: 33%;
  }
  .multislides .carousel-inner .prev {
    left: -33%;
  }
  .multislides .carousel-text {
    width: 33%;
  }
  .multislides .active > div:first-child + div {
    display: block;
  }
  .multislides .active > div:first-child + div + div {
    display: block;
  }
}
@media (min-width: 1200px) {
  .multislides .carousel-inner .active.left {
    left: -25%;
  }
  .multislides .carousel-inner .active.right {
    left: 25%;
  }
  .multislides .carousel-inner .next {
    left: 25%;
  }
  .multislides .carousel-inner .prev {
    left: -25%;
  }
  .multislides .carousel-text {
    width: 25%;
  }
  .multislides .active > div:first-child + div {
    display: block;
  }
  .multislides .active > div:first-child + div + div {
    display: block;
  }
  .multislides .active > div:first-child + div + div + div {
    display: block;
  }
}

/*###########################  FIL D'ARIANE  ###########################*/
.line-breadcrumbs .zone-breadcrumbs {
  text-align: right;
}
.line-breadcrumbs .zone-breadcrumbs ul li a.pathway {
  text-decoration: none !important;
}
.line-breadcrumbs .zone-breadcrumbs ul li a.pathway:hover, .line-breadcrumbs .zone-breadcrumbs ul li a.pathway:focus, .line-breadcrumbs .zone-breadcrumbs ul li a.pathway:active {
  text-decoration: underline !important;
}
.line-breadcrumbs .zone-breadcrumbs ul li a, .line-breadcrumbs .zone-breadcrumbs ul li span {
  font-size: 13px;
  font-weight: 500;
}
.line-breadcrumbs .zone-breadcrumbs ul li + li:before {
  content: "/";
  color: #FF8762;
  font-weight: 500;
  padding: 0 10px;
}
.line-breadcrumbs .zone-breadcrumbs ul li.active {
  color: #A3EBB8;
}

.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart thead h6.table-cart__heading {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart thead h6.table-cart__heading {
    font-size: 19px;
    line-height: 25px;
  }
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item h3.cart-item__name {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item h3.cart-item__name {
    font-size: 18px;
    line-height: 24px;
  }
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item p.cart-item__description {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item p.cart-item__description {
    font-size: 16px;
    line-height: 20px;
  }
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  background-color: transparent;
  color: #282828;
  padding: 15px 0;
  transition: all 0.5s;
  border: none;
  border-bottom: 1px solid #FF8762;
  border-radius: 0;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:hover, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:active, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit {
    white-space: normal !important;
  }
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:hover, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:active, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:focus {
  background-color: transparent;
  color: #FF8762;
  border: none;
  border-bottom: 1px solid #A3EBB8;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:hover {
  text-decoration: none !important;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  background-color: transparent;
  color: #282828;
  padding: 15px 0;
  transition: all 0.5s;
  border: none;
  border-bottom: 1px solid #FF8762;
  border-radius: 0;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:hover, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:active, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete {
    white-space: normal !important;
  }
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:hover, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:active, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:focus {
  background-color: transparent;
  color: #FF8762;
  border: none;
  border-bottom: 1px solid #A3EBB8;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:hover {
  text-decoration: none !important;
}
.zone-cart .cart-confirmation__wrapper .cart-wrapper--confirmation table.table-cart thead h6.table-cart__heading {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-cart .cart-confirmation__wrapper .cart-wrapper--confirmation table.table-cart thead h6.table-cart__heading {
    font-size: 19px;
    line-height: 25px;
  }
}

.zone-community .row .sidebar {
  width: 33.3333333%;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar {
    width: 100%;
    padding-bottom: 40px;
  }
}
.zone-community .row .sidebar .jumbotron {
  margin-right: 10px;
  background-color: #F4F4F4;
  padding: 25px 25px 35px 25px;
  margin-bottom: 110px;
}
@media (max-width: 991px) {
  .zone-community .row .sidebar .jumbotron {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .zone-community .row .sidebar .jumbotron {
    margin-bottom: 40px;
  }
}
.zone-community .row .sidebar .jumbotron strong {
  font-size: 21px;
  line-height: 26px;
  color: #FF8762;
  display: block;
}
.zone-community .row .sidebar .jumbotron a {
  display: block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #FF8762;
  text-transform: initial;
  padding-top: 17px;
  padding-bottom: 17px;
}
.zone-community .row .sidebar .jumbotron a:first-of-type {
  border-top: 1px solid #FF8762;
}
.zone-community .row .sidebar .jumbotron a:first-of-type:hover, .zone-community .row .sidebar .jumbotron a:first-of-type:focus {
  color: #FF8762;
  text-decoration: none;
}
.zone-community .row .sidebar .jumbotron a:last-of-type {
  border-top: 1px solid #FF8762;
  font-size: 50px;
  line-height: 52px;
  color: #282828 !important;
  height: auto;
  display: inline-block;
  text-align: center !important;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #FF8762;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
  transition: all 0.5s;
  position: relative;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar .jumbotron a:last-of-type {
    font-size: 30px;
    line-height: 32px;
  }
}
.zone-community .row .sidebar .jumbotron a:last-of-type:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/btn-arrow-up.svg);
  width: 126px;
  height: 126px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: -140px;
  display: inline-block;
  animation-name: none;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar .jumbotron a:last-of-type:after {
    background-size: contain;
    width: 74px;
    height: 74px;
    top: -90px;
  }
}
.zone-community .row .sidebar .jumbotron a:last-of-type:hover, .zone-community .row .sidebar .jumbotron a:last-of-type:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #FF8762;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:hover:after, .zone-community .row .sidebar .jumbotron a:last-of-type:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-name: bounce_arrow;
  -moz-animation-name: bounce_arrow;
}
.zone-community .row .sidebar .jumbotron a:last-of-type.bottom {
  font-size: 24px;
  line-height: 30px;
  height: 50px;
}
.zone-community .row .sidebar .jumbotron a:last-of-type.bottom:after {
  top: 100px;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar .jumbotron a:last-of-type.bottom:after {
    top: 70px;
  }
}
.zone-community .row .sidebar .jumbotron + p {
  font-size: 21px;
  line-height: 26px;
  color: #FF8762;
  font-weight: 700;
  display: block;
  margin-left: 25px;
  margin-bottom: 20px;
}
.zone-community .row .sidebar ul {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 25px 0 15px 0;
  margin-left: 25px;
  margin-right: 25px;
  list-style: none;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.zone-community .row .sidebar ul li {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 9px;
}
.zone-community .row .sidebar ul li a:hover, .zone-community .row .sidebar ul li a:focus {
  color: #FF8762;
  text-decoration: none;
}
.zone-community .row .content {
  width: 66.6666667%;
}
@media (max-width: 767px) {
  .zone-community .row .content {
    width: 100%;
  }
}
.zone-community .row .content ul.nav {
  border-bottom: none;
  margin-top: 25px;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
}
.zone-community .row .content ul.nav li {
  padding: 0px 5px;
}
.zone-community .row .content ul.nav li a {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  padding: 10px 20px !important;
  background-color: transparent !important;
  color: #282828 !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
  letter-spacing: 0;
}
.zone-community .row .content ul.nav li a:hover, .zone-community .row .content ul.nav li a:active, .zone-community .row .content ul.nav li a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-community .row .content ul.nav li a {
    white-space: normal !important;
  }
}
.zone-community .row .content ul.nav li a:hover, .zone-community .row .content ul.nav li a:active, .zone-community .row .content ul.nav li a:focus {
  text-decoration: none !important;
  background-color: #FF8762 !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}
.zone-community .row .content ul.nav li.active a {
  font-weight: 600;
  color: #FF8762 !important;
}
.zone-community .row .content .tab-content ul.errors li {
  list-style: none;
}
.zone-community .row .content .tab-content h3 {
  text-transform: inherit;
}
.zone-community .row .content .tab-content .forum-message-content-filter {
  display: inline-flex;
  flex-flow: column;
  align-items: flex-start;
}
.zone-community .row .content .tab-content .forum-message-content-filter .add-mod-forum-item {
  margin-top: 10px;
}
.zone-community .row .content .tab-content .forum-item__btn-addMessage {
  margin-right: 25px;
}
.zone-community .row .content .tab-content .forum-list__title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-community .row .content .tab-content .forum-list__title {
    font-size: 16px;
    line-height: 20px;
  }
}
.zone-community .row .content .forum-item, .zone-community .row .content .forum-item__wrapper {
  padding: 37px 0 30px;
}
.zone-community .row .content .forum-item:hover, .zone-community .row .content .forum-item__wrapper:hover {
  background-color: transparent;
}
.zone-community .row .content .forum-item .forum-item-title, .zone-community .row .content .forum-item__wrapper .forum-item-title {
  font-size: 18px;
  line-height: 21px;
}
.zone-community .row .content .forum-item .forum-item-author, .zone-community .row .content .forum-item__wrapper .forum-item-author {
  color: #FF8762;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-toggle, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-toggle {
  min-height: 0;
  padding: 10px;
  background-color: #fff;
  border: 0;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-toggle .caret, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-toggle .caret {
  color: #282828;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-menu li, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-menu li {
  margin-bottom: 0;
}
.zone-community .row .content .forum-message-child {
  padding: 37px 30px 30px;
}
.zone-community .row .content .forum-item__wrapper .forum-item-title {
  margin-right: 0;
}
.zone-community .row .content .forum-form__addMessage-wrapper #community_form_add_message {
  padding-top: 30px;
}
.zone-community .row .content #community-forum #community_form_add_message .section .form-group:last-of-type {
  padding-top: 20px;
}
.zone-community .row .content #community-forum .forum-item__btn-addMessage {
  margin-right: 25px;
}

.forum-item__likes-wrapper {
  padding-left: 0;
  padding-right: 0;
}
.forum-item__likes-wrapper button {
  background-color: transparent !important;
  border: none !important;
  color: #FF8762 !important;
  text-transform: inherit;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  padding: 0 10px 0 0 !important;
  margin-right: 5px !important;
}
.forum-item__likes-wrapper button i:before {
  filter: hue-rotate(299deg);
}
.forum-item__likes-wrapper button[data-type=like] i:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-pouce.svg");
  width: 28px;
  height: 27px;
  display: block;
  margin-top: -9px;
  margin-right: 5px;
}
.forum-item__likes-wrapper button[data-type=follow] i:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-etoile.svg");
  width: 27px;
  height: 25px;
  display: block;
  margin-top: -7px;
  margin-right: 5px;
}
.forum-item__likes-wrapper .forum-item__action-count {
  margin: 0 5px 0 -5px;
}

.cookie-consent-modal {
  width: 90% !important;
  max-width: 550px !important;
}
@media (max-width: 767px) {
  .cookie-consent-modal {
    margin-right: 70px !important;
  }
}
.cookie-consent-modal h1, .cookie-consent-modal h2, .cookie-consent-modal h3, .cookie-consent-modal h4, .cookie-consent-modal h5, .cookie-consent-modal h6, .cookie-consent-modal p, .cookie-consent-modal span, .cookie-consent-modal ul, .cookie-consent-modal li, .cookie-consent-modal button {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.cookie-consent-modal p.consent-description {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .cookie-consent-modal p.consent-description {
    font-size: 16px;
    line-height: 24px;
  }
}
.cookie-consent-modal p.consent-description a {
  text-decoration: underline;
}
.cookie-consent-modal p.consent-description a:hover {
  text-decoration: none;
}
.cookie-consent-modal .actions-container {
  justify-content: space-between !important;
}
.cookie-consent-modal .actions-container .btn-link {
  color: #FF8762 !important;
}
.cookie-consent-modal .actions-container .btn-link:hover {
  color: #000 !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-decline {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  font-weight: 500 !important;
  background-color: transparent !important;
  color: #EE653B !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-decline:hover, .cookie-modal .cm-footer-buttons .cm-btn-decline:active, .cookie-modal .cm-footer-buttons .cm-btn-decline:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-footer-buttons .cm-btn-decline {
    white-space: normal !important;
  }
}
.cookie-modal .cm-footer-buttons .cm-btn-decline:hover {
  color: #FF8762 !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-success {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  border: 2px solid #EE653B !important;
  background-color: #EE653B !important;
  font-weight: 500 !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-success:hover, .cookie-modal .cm-footer-buttons .cm-btn-success:active, .cookie-modal .cm-footer-buttons .cm-btn-success:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-footer-buttons .cm-btn-success {
    white-space: normal !important;
  }
}
.cookie-modal .cm-footer-buttons .cm-btn-success:hover {
  border: 2px solid #FF8762 !important;
  background-color: #FF8762 !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-success.cm-btn-info {
  border: 2px solid #EE653B !important;
  background-color: transparent !important;
  color: #EE653B !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-success.cm-btn-info:hover {
  text-decoration: none !important;
  border: 2px solid #FF8762 !important;
  color: #FF8762 !important;
}

.line-modal {
  position: relative;
  z-index: 99999;
}
.line-modal .modal-dialog .modal-content {
  background: #FFF4F2;
  border-radius: 40px;
}
.line-modal .modal-dialog .modal-content .modal-header button.close {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #FF8762;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 45px;
  font-weight: 300;
  border-radius: 50%;
  margin-right: 30px;
  margin-top: 14px;
  z-index: 1000;
}
.line-modal .modal-dialog .modal-content .modal-header button.close:hover {
  color: #282828;
  border-color: #282828;
}
.line-modal .modal-dialog .modal-content .modal-body {
  border-radius: 40px;
  background: #FFF4F2;
  padding: 15px 40px 40px;
}
.line-modal .modal-dialog .modal-content .modal-body h2 {
  max-width: 75%;
}
@media (max-width: 767px) {
  .line-modal .modal-dialog .modal-content .modal-body h2 {
    max-width: 90%;
  }
}
.line-modal .modal-dialog .modal-content .modal-body .pop-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  margin-right: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}
@media (max-width: 767px) {
  .line-modal .modal-dialog .modal-content .modal-body .pop-img {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .line-modal .modal-dialog .modal-content .modal-body .pop-img img {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .line-modal .modal-dialog .modal-content .modal-body .pop-img img:nth-child(2) {
    transform: rotate(90deg);
  }
}
.line-modal .modal-dialog .modal-content .modal-body .pop-img img:last-child {
  max-width: 300px;
}
@media (max-width: 767px) {
  .line-modal .modal-dialog .modal-content .modal-body .pop-img img:last-child {
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .line-video-modal .container > .row > div .modal {
    max-width: 100vw;
  }
}
.line-video-modal .container > .row > div .modal .modal-dialog {
  max-width: 60vw;
  margin: 9.75rem auto;
}
@media (max-width: 991px) {
  .line-video-modal .container > .row > div .modal .modal-dialog {
    margin: auto !important;
    width: 600px !important;
    max-width: 600px !important;
  }
}
@media (max-width: 767px) {
  .line-video-modal .container > .row > div .modal .modal-dialog {
    width: 90vw !important;
    max-width: 90vw !important;
  }
}
.line-video-modal .container > .row > div .modal .modal-dialog .modal-content {
  max-width: 60vw;
  background-color: #282828;
  border: none;
  box-shadow: none;
}
@media (max-width: 991px) {
  .line-video-modal .container > .row > div .modal .modal-dialog .modal-content {
    max-width: 100%;
  }
}
.line-video-modal .container > .row > div .modal .modal-dialog .modal-content .modal-header button.close {
  color: #FF8762;
  width: 60px;
  height: 60px;
  border: 1px solid #FF8762;
  border-radius: 50%;
  margin-right: 30px;
  margin-top: 14px;
  font-size: 45px;
  font-weight: 300;
  right: 0;
  position: absolute;
  margin-right: 30px;
  margin-top: -10px;
  z-index: 5;
}
@media (max-width: 767px) {
  .line-video-modal .container > .row > div .modal .modal-dialog .modal-content .modal-header button.close {
    margin-right: 6px;
    margin-top: -17px;
  }
}
.line-video-modal .container > .row > div .modal .modal-dialog .modal-content .modal-header button.close:hover {
  color: #fff;
  border-color: #fff;
}
.line-video-modal .container > .row > div .modal .modal-dialog .modal-content .modal-body {
  padding-top: 0;
}
@media (max-width: 767px) {
  .line-video-modal .container > .row > div .modal .modal-dialog .modal-content .modal-body {
    padding-left: 0;
    padding-right: 0;
  }
}
.line-video-modal .container > .row > div .modal .modal-dialog .modal-content .modal-body > div {
  padding-top: 63% !important;
}

/* GRID SPACE **********/
/* columns */
/* rows */
/* ITEM **********/
/* img */
.prebuilt-articles-vedette-col3 .newsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px 15px;
}
@media (max-width: 991px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 15px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 80px 15px;
  }
}
.prebuilt-articles-vedette-col3 .newsList .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item .itemImage {
  margin-bottom: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
  margin-bottom: 20px;
  border-radius: 0;
  height: 210px !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
@media (max-width: 1199px) {
  .prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
    height: 180px !important;
  }
}
@media (max-width: 991px) {
  .prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
    height: 160px !important;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
    height: 210px !important;
  }
}
.prebuilt-articles-vedette-col3 .newsList .row .item h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item a.news-category {
  order: 4;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #FF8762;
  margin-bottom: 0;
  color: #FF8762 !important;
  font-weight: 600;
  text-transform: inherit;
  text-decoration: none !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item a.news-category:hover {
  text-decoration: none !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.itemInfos.e-date {
  order: 3;
  margin-bottom: 5px;
  font-weight: 600;
  color: #FF8762 !important;
  text-transform: inherit;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.news-keywords {
  margin-bottom: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #FF8762;
  font-weight: 600;
  text-transform: inherit;
}
.prebuilt-articles-vedette-col3 .newsList .row .item div.actions {
  margin-top: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item div.actions a {
  margin-top: 30px;
}
.prebuilt-articles-vedette-col3 a.viewAll {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  background-color: transparent;
  color: #282828;
  padding: 15px 0;
  transition: all 0.5s;
  border: none;
  border-bottom: 1px solid #FF8762;
  border-radius: 0;
}
.prebuilt-articles-vedette-col3 a.viewAll:hover, .prebuilt-articles-vedette-col3 a.viewAll:active, .prebuilt-articles-vedette-col3 a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-vedette-col3 a.viewAll:hover, .prebuilt-articles-vedette-col3 a.viewAll:active, .prebuilt-articles-vedette-col3 a.viewAll:focus {
  background-color: transparent;
  color: #FF8762;
  border: none;
  border-bottom: 1px solid #A3EBB8;
}

.prebuilt-articles-multiples-col3 {
  padding-top: 130px;
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 {
    padding-top: 60px;
  }
}
.prebuilt-articles-multiples-col3 #newsFilterForm {
  padding-bottom: 50px;
}
.prebuilt-articles-multiples-col3 .news-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px 15px;
}
@media (max-width: 991px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 15px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 80px 15px;
  }
}
.prebuilt-articles-multiples-col3 .news-mosaic .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div {
  display: flex;
  flex-direction: column;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a {
  order: 1;
  margin-bottom: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a img.news-thumbnail {
  margin-bottom: 20px;
  border-radius: 0;
  height: 210px !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
@media (max-width: 1199px) {
  .prebuilt-articles-multiples-col3 .news-mosaic .row > div a img.news-thumbnail {
    height: 180px !important;
  }
}
@media (max-width: 991px) {
  .prebuilt-articles-multiples-col3 .news-mosaic .row > div a img.news-thumbnail {
    height: 160px !important;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 .news-mosaic .row > div a img.news-thumbnail {
    height: 210px !important;
  }
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div h3 {
  order: 2;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a.news-category {
  order: 4;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #FF8762;
  margin-bottom: 0;
  color: #FF8762 !important;
  font-weight: 600;
  text-transform: inherit;
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a.news-category:hover {
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div .e-date {
  order: 3;
  margin-bottom: 5px;
  font-weight: 600;
  color: #FF8762 !important;
  text-transform: inherit;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div p.news-keywords {
  order: 5;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #FF8762;
  font-weight: 600;
  text-transform: inherit;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro {
  order: 6;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a {
  order: 7;
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  height: 55px !important;
  padding: 20px 35px !important;
  background-color: #FF8762 !important;
  color: #fff !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
  width: fit-content;
  margin-top: 30px;
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:hover, .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:active, .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a {
    white-space: normal !important;
  }
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:hover, .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:active, .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:hover {
  text-decoration: none !important;
}
> a:not(.prebuilt-articles-multiples-col3:first-child) {
  order: 6;
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  background-color: transparent;
  color: #282828;
  padding: 15px 0;
  transition: all 0.5s;
  border: none;
  border-bottom: 1px solid #FF8762;
  border-radius: 0;
}
> a:not(.prebuilt-articles-multiples-col3:first-child):hover, > a:not(.prebuilt-articles-multiples-col3:first-child):active, > a:not(.prebuilt-articles-multiples-col3:first-child):focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  > a:not(.prebuilt-articles-multiples-col3:first-child) {
    white-space: normal !important;
  }
}
> a:not(.prebuilt-articles-multiples-col3:first-child):hover, > a:not(.prebuilt-articles-multiples-col3:first-child):active, > a:not(.prebuilt-articles-multiples-col3:first-child):focus {
  background-color: transparent;
  color: #FF8762;
  border: none;
  border-bottom: 1px solid #A3EBB8;
}

/* GRID SPACE **********/
/* columns */
/* rows */
/* ITEM **********/
/* img */
/* h3 */
.prebuilt-evenement-en-vedette {
  padding-top: 40px;
  padding-bottom: 80px;
}
.prebuilt-evenement-en-vedette .zone-event_flash h2 {
  margin-bottom: 35px;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 15px;
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette .zone-event_flash .eventsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
@media (max-width: 767px) {
  .prebuilt-evenement-en-vedette .zone-event_flash .eventsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row {
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div {
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
  margin-bottom: 20px;
  border-radius: 0;
  height: 210px !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
@media (max-width: 1199px) {
  .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 180px !important;
  }
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 160px !important;
  }
}
@media (max-width: 767px) {
  .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 210px !important;
  }
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item h3 {
  font-size: 21px;
  line-height: 28px;
  font-weight: 800;
  text-transform: initial;
  margin-bottom: 15px;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item hr {
  display: none;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos .e-date {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: #282828;
  text-transform: inherit;
  margin-bottom: 15px;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-intro {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #282828;
  text-transform: inherit;
  margin-bottom: 15px;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-intro p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #282828;
  text-transform: inherit;
  margin-bottom: 15px;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions {
  margin-bottom: 0;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a {
  margin-top: 20px;
  margin-bottom: 0;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary {
  background-color: #FF8762;
  color: #fff;
  transition: all 0.5s;
  border: 1px solid #FF8762;
  padding: 10px 20px;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:hover, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:active, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:focus {
  background-color: transparent;
  border: 1px solid #FF8762;
  color: #FF8762;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.grey-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #FF8762;
  transition: all 0.5s;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.grey-bg:hover, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.grey-bg:active, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.grey-bg:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.black-bg, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions .menu-container .line-menu-header .mod-header .header-ext-login a.btn-primary.member-login, .menu-container .line-menu-header .mod-header .header-ext-login .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.member-login {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.black-bg:hover, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions .menu-container .line-menu-header .mod-header .header-ext-login a.btn-primary.member-login:hover, .menu-container .line-menu-header .mod-header .header-ext-login .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.member-login:hover, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.black-bg:active, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions .menu-container .line-menu-header .mod-header .header-ext-login a.btn-primary.member-login:active, .menu-container .line-menu-header .mod-header .header-ext-login .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.member-login:active, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.black-bg:focus, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions .menu-container .line-menu-header .mod-header .header-ext-login a.btn-primary.member-login:focus, .menu-container .line-menu-header .mod-header .header-ext-login .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.member-login:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.orange-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.orange-bg:hover, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.orange-bg:active, .prebuilt-evenement-en-vedette .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.orange-bg:focus {
  background-color: #fff;
  border: 1px solid #fff;
  color: #282828;
}
/* 
Mosaique
1 collone
Résumer au centre
*/
.prebuilt-espace-evenements {
  padding-top: 115px;
  padding-bottom: 80px;
}
.prebuilt-espace-evenements .zone-event h2 {
  margin-bottom: 35px;
}
.prebuilt-espace-evenements .zone-event .event_list_filter {
  padding-bottom: 60px;
}
.prebuilt-espace-evenements .zone-event .events-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 15px;
}
@media (max-width: 991px) {
  .prebuilt-espace-evenements .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
@media (max-width: 767px) {
  .prebuilt-espace-evenements .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
.prebuilt-espace-evenements .zone-event .events-mosaic .row {
  margin-top: 0;
}
.prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item a img.e-thumbnail {
  margin-bottom: 20px;
  border-radius: 0;
  height: 210px !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
@media (max-width: 1199px) {
  .prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item a img.e-thumbnail {
    height: 180px !important;
  }
}
@media (max-width: 991px) {
  .prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item a img.e-thumbnail {
    height: 160px !important;
  }
}
@media (max-width: 767px) {
  .prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item a img.e-thumbnail {
    height: 210px !important;
  }
}
.prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item h3 {
  font-size: 21px;
  line-height: 28px;
  font-weight: 800;
  text-transform: initial;
  margin-bottom: 15px;
}
.prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item .e-date {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: #282828;
  text-transform: inherit;
  margin-bottom: 15px;
}
.prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item .events-mosaic__short-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #282828;
  text-transform: inherit;
  margin-bottom: 15px;
}
.prebuilt-espace-evenements .zone-event .events-mosaic .row > div .item .events-mosaic__short-description p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #282828;
  text-transform: inherit;
  margin-bottom: 15px;
}
/*
body.activities-details {
    .line-evenements {
        padding-top: 60px;
    }
}
*/
/*
.line-evenements {
    padding-top: 30px;
    padding-bottom: 140px;
    */
.zone-event .row .event-detail .row-event-jumbotron__left-right {
  display: flex;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right {
    flex-direction: column;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left {
  /*width: 33.33333%;*/
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__row-image-description .event-detail__image-wrapper img {
  border-radius: 8px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__row-image-description .event-detail__description-wrapper h2 {
  /*@include titre-name;*/
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper {
  margin-top: 60px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav {
  display: block;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta {
  display: flex;
  justify-content: space-between;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary {
  /*@include btn-arrow-right-purple;*/
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default {
  /*@include btn-arrow-left-red;*/
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
  /*width: 66.66666%;*/
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right {
  background-position: center center;
  background-size: cover;
  border-radius: 5px;
  padding: 65px 40px 30px 40px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__date {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
  font-weight: bold;
  color: #fff;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__date {
    font-size: 19px;
    line-height: 25px;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__date:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  display: block;
  bottom: -20px;
  left: 0;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__info .event-info__title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__info .event-info__title {
    font-size: 19px;
    line-height: 25px;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-place {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-country {
  display: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info {
  display: flex;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .event-info__title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .event-info__title {
    font-size: 19px;
    line-height: 25px;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .contact, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .phone, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .email {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .contact a, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .phone a, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .email a {
  font-size: 18px !important;
  line-height: 24px !important;
  color: #fff !important;
}
/*
}
    */
.line-sticky {
  position: relative;
  z-index: 10;
}
.line-sticky .content {
  opacity: 0;
  position: fixed;
  right: -30px;
  top: 245px;
  animation-name: anime-faire-don;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.4s;
}
.line-sticky .content .sticky-container {
  transform: rotate(270deg);
  -webkit-transform-origin: 50% 51%;
  border-radius: 100px;
  transition: translate 300ms;
  overflow: hidden;
}
@media (max-width: 991px) {
  .line-sticky .content .sticky-container {
    display: none;
  }
}
.line-sticky .content .sticky-container .btn-sticky {
  width: auto;
  height: 50px;
  display: block;
  background-color: #A3EBB8;
  padding: 19px 27px 13px 27px;
  line-height: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #fff !important;
  border-radius: 33px;
  text-decoration: none !important;
  text-align: right;
  transition: all 150ms;
  /*
  &::after{
      content: "";
      width: 46px;
      height: 46px;
      display: block;
      background: url(https://cdn.ca.yapla.com/company/CPYuU5C607f42zk9W8RyXQexD/asset/images/Assets/icon-bt-donner.svg) center center no-repeat;
      background-size: 46px;
      position: relative;
      left: -13px;
      bottom: 29px;
      rotate: 90deg;
  }
  */
}
.line-sticky .content .sticky-container .btn-sticky:hover {
  color: #fff !important;
  background-color: #FF8762;
  text-decoration: none !important;
  transition: all 150ms;
}

/** bt slide **/
.anime-faire-don {
  -webkit-animation: anime-faire-don 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: anime-faire-don 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes anime-faire-don {
  0% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes anime-faire-don {
  0% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes anime-faire-don {
  0% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes anime-faire-don {
  0% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/* Menu & Footer social icons svg to css*/
/* https://www.svgbackgrounds.com/tools/svg-to-css/ */
/* Browser support: Legacy (IE9+) */
/* CSS Helpers: Basic background-image */
/** variables **/
/* Exemple couleur svg = %23 + #ffffff*/
/* scss*/
ul.social {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}
ul.social li {
  width: 52px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  ul.social li {
    width: 42px;
  }
}
ul.social li a {
  text-decoration: none !important;
}
ul.social li a.email {
  background-image: url("data:image/svg+xml,%3Csvg width='53' height='52' viewBox='0 0 53 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 18L27.4231 26L38 18' stroke='%23FFFFFF'/%3E%3Cpath d='M52.5 26C52.5 40.0743 40.8684 51.5 26.5 51.5C12.1316 51.5 0.5 40.0743 0.5 26C0.5 11.9257 12.1316 0.5 26.5 0.5C40.8684 0.5 52.5 11.9257 52.5 26Z' stroke='%23FFFFFF'/%3E%3Crect x='14.5' y='17.5' width='25' height='16' rx='3.5' stroke='%23FFFFFF'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  width: 54px;
  height: 54px;
  display: block;
  transition: all 0.5s;
}
@media (max-width: 1199px) {
  ul.social li a.email {
    width: 30px;
    height: 30px;
  }
}
ul.social li a.email:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='53' height='52' viewBox='0 0 53 52' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='26.5' cy='26' r='25.5' fill='%23FF8762' stroke='%23FF8762' stroke-width='1'/%3E%3Cpath d='M14.5 17.5H39.5V33.5H14.5V17.5Z' fill='%23FF8762'/%3E%3Cpath d='M16 18L27.4231 26L38 18M14.5 17.5H39.5C40.8807 17.5 42 18.6193 42 20V31C42 32.3807 40.8807 33.5 39.5 33.5H14.5C13.1193 33.5 12 32.3807 12 31V20C12 18.6193 13.1193 17.5 14.5 17.5Z' stroke='%23FFF' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}
ul.social li a.bluesky {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 28 28'%3E%3Cdefs%3E%3Cstyle%3E .st0 %7B fill: %23%23188af5%3B %7D %3C/style%3E%3C/defs%3E%3Cg id='jyutC3.tif'%3E%3Cpath class='st0' d='M7.79 6.3c2.51 1.89 5.22 5.73 6.21 7.8v5.44c0-.12-.04.02-.14.3-.52 1.53-2.54 7.49-7.17 2.72-2.44-2.51-1.31-5.02 3.13-5.78-2.54.43-5.39-.28-6.17-3.09-.23-.81-.61-5.78-.61-6.45 0-3.37 2.94-2.31 4.75-.94ZM20.21 6.3c-2.51 1.89-5.22 5.73-6.21 7.8v5.44c0-.12.04.02.14.3.52 1.53 2.54 7.49 7.17 2.72 2.44-2.51 1.31-5.02-3.13-5.78 2.54.43 5.39-.28 6.17-3.09.23-.81.61-5.78.61-6.45 0-3.37-2.94-2.31-4.75-.94h0Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  display: block;
  transition: all 0.5s;
}
ul.social li a.bluesky:hover {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 28 28'%3E%3Cdefs%3E%3Cstyle%3E .st0 %7B fill: %23%23074a8d%3B %7D %3C/style%3E%3C/defs%3E%3Cg id='jyutC3.tif'%3E%3Cpath class='st0' d='M7.79 6.3c2.51 1.89 5.22 5.73 6.21 7.8v5.44c0-.12-.04.02-.14.3-.52 1.53-2.54 7.49-7.17 2.72-2.44-2.51-1.31-5.02 3.13-5.78-2.54.43-5.39-.28-6.17-3.09-.23-.81-.61-5.78-.61-6.45 0-3.37 2.94-2.31 4.75-.94ZM20.21 6.3c-2.51 1.89-5.22 5.73-6.21 7.8v5.44c0-.12.04.02.14.3.52 1.53 2.54 7.49 7.17 2.72 2.44-2.51 1.31-5.02-3.13-5.78 2.54.43 5.39-.28 6.17-3.09.23-.81.61-5.78.61-6.45 0-3.37-2.94-2.31-4.75-.94h0Z'/%3E%3C/g%3E%3C/svg%3E");
}
ul.social li a.instagram {
  background-image: url("data:image/svg+xml,%3Csvg width='53' height='52' viewBox='0 0 53 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1710_3144)'%3E%3Cpath d='M52.5 26C52.5 40.0743 40.8684 51.5 26.5 51.5C12.1316 51.5 0.5 40.0743 0.5 26C0.5 11.9257 12.1316 0.5 26.5 0.5C40.8684 0.5 52.5 11.9257 52.5 26Z' stroke='%23ffffff'/%3E%3Cpath d='M26.5 15.2524C29.8375 15.2524 30.2331 15.2649 31.5512 15.3252C32.3436 15.3347 33.1286 15.4805 33.8717 15.7559C34.4148 15.9562 34.906 16.2759 35.3093 16.6911C35.7245 17.0944 36.0442 17.5856 36.2445 18.1287C36.5199 18.8719 36.6657 19.6568 36.6752 20.4492C36.7355 21.7673 36.7481 22.1629 36.7481 25.5004C36.7481 28.8379 36.7355 29.2335 36.6752 30.5516C36.6657 31.344 36.5199 32.129 36.2445 32.8721C35.8239 33.9625 34.9621 34.8243 33.8717 35.2449C33.1286 35.5203 32.3436 35.6661 31.5512 35.6756C30.2331 35.7359 29.8375 35.7485 26.5 35.7485C23.1625 35.7485 22.7669 35.7359 21.4488 35.6756C20.656 35.6661 19.8706 35.5205 19.1273 35.2449C18.5846 35.0444 18.0938 34.7249 17.6909 34.3097C17.2757 33.9064 16.956 33.4152 16.7557 32.8721C16.4803 32.129 16.3345 31.344 16.325 30.5516C16.2647 29.2335 16.2522 28.8379 16.2522 25.5004C16.2522 22.1629 16.2647 21.7673 16.325 20.4492C16.3345 19.6568 16.4803 18.8719 16.7557 18.1287C16.956 17.5856 17.2757 17.0944 17.6909 16.6911C18.0942 16.2759 18.5854 15.9562 19.1285 15.7559C19.8716 15.4805 20.6566 15.3347 21.449 15.3252C22.7671 15.2649 23.1625 15.2524 26.5 15.2524ZM26.5 19.0808C22.9547 19.0808 20.0806 21.9549 20.0806 25.5002C20.0806 29.0455 22.9547 31.9196 26.5 31.9196C30.0453 31.9196 32.9194 29.0455 32.9194 25.5002C32.9194 21.9549 30.0453 19.0808 26.5 19.0808ZM26.5 29.6672C24.1986 29.6672 22.3328 27.8016 22.3328 25.5C22.3328 23.1986 24.1984 21.3328 26.5 21.3328C28.8016 21.3328 30.6672 23.1984 30.6672 25.5C30.6672 27.8014 28.8016 29.6672 26.5 29.6672ZM33.1727 17.3274C32.3442 17.3274 31.6726 17.999 31.6726 18.8275C31.6726 19.656 32.3442 20.3276 33.1727 20.3276C34.0013 20.3276 34.6728 19.656 34.6728 18.8275C34.6728 17.999 34.0013 17.3274 33.1727 17.3274Z' fill='%23ffffff' stroke='%23ffffff'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1710_3144'%3E%3Crect width='53' height='52' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  width: 52px;
  height: 52px;
  display: block;
  transition: all 0.5s;
}
@media (max-width: 1199px) {
  ul.social li a.instagram {
    width: 30px;
    height: 30px;
  }
}
ul.social li a.instagram:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='53' height='52' viewBox='0 0 53 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1710_3147)'%3E%3Cpath d='M26.5 52C41.1355 52 53 40.3594 53 26C53 11.6406 41.1355 0 26.5 0C11.8645 0 0 11.6406 0 26C0 40.3594 11.8645 52 26.5 52Z' fill='%23FF8762'/%3E%3Cpath d='M26.5 15.2524C29.8375 15.2524 30.2331 15.2649 31.5512 15.3252C32.3436 15.3347 33.1286 15.4805 33.8717 15.7559C34.4148 15.9562 34.906 16.2759 35.3093 16.6911C35.7245 17.0944 36.0442 17.5856 36.2445 18.1287C36.5199 18.8719 36.6657 19.6568 36.6752 20.4492C36.7355 21.7673 36.7481 22.1629 36.7481 25.5004C36.7481 28.8379 36.7355 29.2335 36.6752 30.5516C36.6657 31.344 36.5199 32.129 36.2445 32.8721C35.8239 33.9625 34.9621 34.8243 33.8717 35.2449C33.1286 35.5203 32.3436 35.6661 31.5512 35.6756C30.2331 35.7359 29.8375 35.7485 26.5 35.7485C23.1625 35.7485 22.7669 35.7359 21.4488 35.6756C20.656 35.6661 19.8706 35.5205 19.1273 35.2449C18.5846 35.0444 18.0938 34.7249 17.6909 34.3097C17.2757 33.9064 16.956 33.4152 16.7557 32.8721C16.4803 32.129 16.3345 31.344 16.325 30.5516C16.2647 29.2335 16.2522 28.8379 16.2522 25.5004C16.2522 22.1629 16.2647 21.7673 16.325 20.4492C16.3345 19.6568 16.4803 18.8719 16.7557 18.1287C16.956 17.5856 17.2757 17.0944 17.6909 16.6911C18.0942 16.2759 18.5854 15.9562 19.1285 15.7559C19.8716 15.4805 20.6566 15.3347 21.449 15.3252C22.7671 15.2649 23.1625 15.2524 26.5 15.2524ZM26.5 13C23.1056 13 22.6796 13.0147 21.3465 13.075C20.3096 13.0958 19.2836 13.2921 18.3125 13.6556C17.4779 13.9697 16.7222 14.4624 16.0976 15.0988C15.4618 15.723 14.9695 16.4785 14.6556 17.3125C14.2923 18.2838 14.0964 19.3098 14.0761 20.3465C14.0135 21.6796 14 22.1056 14 25.5C14 28.8944 14.0147 29.3204 14.075 30.6535C14.0958 31.6904 14.2921 32.7164 14.6556 33.6875C14.9697 34.5221 15.4624 35.2778 16.0988 35.9024C16.723 36.5382 17.4785 37.0305 18.3125 37.3444C19.2838 37.7077 20.3098 37.9036 21.3465 37.9239C22.6796 37.9865 23.1056 38 26.5 38C29.8944 38 30.3204 37.9853 31.6535 37.925C32.6904 37.9042 33.7164 37.7079 34.6875 37.3444C36.3672 36.695 37.695 35.3672 38.3444 33.6875C38.7077 32.7162 38.9036 31.6902 38.9239 30.6535C38.9865 29.3204 39 28.8944 39 25.5C39 22.1056 38.9853 21.6796 38.925 20.3465C38.9042 19.3096 38.7079 18.2836 38.3444 17.3125C38.0303 16.4779 37.5376 15.7222 36.9012 15.0976C36.277 14.4618 35.5215 13.9695 34.6875 13.6556C33.7162 13.2923 32.6902 13.0964 31.6535 13.0761C30.3204 13.0135 29.8944 13 26.5 13ZM26.5 19.0808C22.9547 19.0808 20.0806 21.9549 20.0806 25.5002C20.0806 29.0455 22.9547 31.9196 26.5 31.9196C30.0453 31.9196 32.9194 29.0455 32.9194 25.5002C32.9194 21.9549 30.0453 19.0808 26.5 19.0808ZM26.5 29.6672C24.1986 29.6672 22.3328 27.8016 22.3328 25.5C22.3328 23.1986 24.1984 21.3328 26.5 21.3328C28.8016 21.3328 30.6672 23.1984 30.6672 25.5C30.6672 27.8014 28.8016 29.6672 26.5 29.6672ZM33.1727 17.3274C32.3442 17.3274 31.6726 17.999 31.6726 18.8275C31.6726 19.656 32.3442 20.3276 33.1727 20.3276C34.0013 20.3276 34.6728 19.656 34.6728 18.8275C34.6728 17.999 34.0013 17.3274 33.1727 17.3274Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1710_3147'%3E%3Crect width='53' height='52' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
ul.social li a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg width='41' height='41' viewBox='0 0 41 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4669 16.1653H15.628V26.3364H12.4669V16.1653ZM14.0479 11.1096C14.4105 11.1094 14.7649 11.2168 15.0664 11.418C15.368 11.6193 15.603 11.9055 15.7419 12.2404C15.8808 12.5752 15.9174 12.9438 15.8468 13.2994C15.7762 13.655 15.6018 13.9817 15.3456 14.2381C15.0894 14.4946 14.7629 14.6694 14.4073 14.7403C14.0518 14.8112 13.6832 14.7751 13.3482 14.6365C13.0132 14.4979 12.7268 14.2631 12.5252 13.9617C12.3237 13.6604 12.216 13.3061 12.2158 12.9435C12.2158 12.4575 12.4087 11.9913 12.7522 11.6474C13.0958 11.3035 13.5619 11.1101 14.0479 11.1096Z' fill='white'/%3E%3Cpath d='M17.6094 16.1655H20.6416V17.557H20.6852C20.9882 17.0381 21.4265 16.6112 21.9531 16.3219C22.4798 16.0326 23.0751 15.8918 23.6756 15.9145C26.8805 15.9145 27.4671 18.0208 27.4671 20.7584V26.3369H24.3076V21.3905C24.3076 20.2109 24.2872 18.693 22.6643 18.693C21.02 18.693 20.7698 19.9794 20.7698 21.3059V26.3369H17.6104L17.6094 16.1655Z' fill='white'/%3E%3Ccircle cx='20.5' cy='20.5' r='20' stroke='white'/%3E%3C/svg%3E ");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  width: 52px;
  height: 52px;
  display: block;
  transition: all 0.5s;
}
@media (max-width: 1199px) {
  ul.social li a.linkedin {
    width: 30px;
    height: 30px;
  }
}
ul.social li a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='26' cy='26' r='25' fill='%23FF8762' stroke='%23FF8762' stroke-width='1'/%3E%3Cmask id='mask0_7234_2695' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='10' y='9' width='32' height='33'%3E%3Cpath d='M41.9909 9.63428H10.373V41.2521H41.9909V9.63428Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_7234_2695)'%3E%3Cpath d='M17.2332 21.4989H21.2429V34.4001H17.2332V21.4989ZM19.2387 15.0862C19.6985 15.0859 20.1481 15.2221 20.5306 15.4773C20.913 15.7326 21.2112 16.0956 21.3874 16.5204C21.5636 16.9452 21.6099 17.4126 21.5204 17.8637C21.4309 18.3147 21.2097 18.7291 20.8847 19.0544C20.5597 19.3798 20.1455 19.6014 19.6945 19.6913C19.2436 19.7813 18.776 19.7355 18.3511 19.5597C17.9262 19.3839 17.5629 19.0861 17.3072 18.7038C17.0516 18.3216 16.915 17.8722 16.9148 17.4123C16.9148 16.7958 17.1594 16.2044 17.5952 15.7683C18.0309 15.3321 18.6221 15.0867 19.2387 15.0862Z' fill='%23FFF'/%3E%3Cpath d='M23.7566 21.4991H27.6027V23.2641H27.6581C28.0424 22.6059 28.5983 22.0644 29.2663 21.6974C29.9343 21.3305 30.6895 21.1519 31.4511 21.1806C35.5163 21.1806 36.2603 23.8524 36.2603 27.3248V34.4006H32.2528V28.1266C32.2528 26.6304 32.2269 24.705 30.1684 24.705C28.0827 24.705 27.7653 26.3367 27.7653 28.0193V34.4006H23.7578L23.7566 21.4991Z' fill='%23FFF'/%3E%3C/g%3E%3C/svg%3E");
}
ul.social li a.facebook {
  background-image: url("data:image/svg+xml,%3Csvg width='53' height='52' viewBox='0 0 53 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29.7969 27.3965L30.3183 23.3603H26.3255V20.7855C26.3255 19.6162 26.6529 18.8199 28.3276 18.8199H30.4631V15.2081C29.429 15.0987 28.3897 15.0457 27.3498 15.0495C24.2696 15.0495 22.1592 16.9307 22.1592 20.3862V23.3626H18.6729V27.3965H22.1592V36.4295H26.3266V27.3965H29.7969Z' fill='%23FFFFFF'/%3E%3Cpath d='M52.5 26C52.5 40.0743 40.8684 51.5 26.5 51.5C12.1316 51.5 0.5 40.0743 0.5 26C0.5 11.9257 12.1316 0.5 26.5 0.5C40.8684 0.5 52.5 11.9257 52.5 26Z' stroke='%23FFFFFF'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  width: 52px;
  height: 52px;
  display: block;
  position: relative;
  transition: all 0.5s;
}
@media (max-width: 1199px) {
  ul.social li a.facebook {
    width: 30px;
    height: 30px;
  }
}
ul.social li a.facebook:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='53' height='52' viewBox='0 0 53 52' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='26.5' cy='26' r='25.5' fill='%23FF8762' stroke='%23FF8762' stroke-width='1'/%3E%3Cpath d='M29.7969 27.3965L30.3183 23.3603H26.3255V20.7855C26.3255 19.6162 26.6529 18.8199 28.3276 18.8199H30.4631V15.2081C29.429 15.0987 28.3897 15.0457 27.3498 15.0495C24.2696 15.0495 22.1592 16.9307 22.1592 20.3862V23.3626H18.6729V27.3965H22.1592V36.4295H26.3266V27.3965H29.7969Z' fill='%23FFF'/%3E%3C/svg%3E");
}
ul.social li a.youtube {
  background-image: url("data:image/svg+xml,%3Csvg width='41' height='41' viewBox='0 0 41 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1033_2790' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='7' y='7' width='27' height='27'%3E%3Cpath d='M33.7288 7.75732H7.85645V33.6297H33.7288V7.75732Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1033_2790)'%3E%3Cpath d='M26.4411 14.8196H15.6902C13.6342 14.8196 12.7998 16.4828 12.7998 18.5424V22.4797C12.7998 24.5356 13.7238 26.2025 15.7779 26.2025H26.3542C28.4092 26.2025 29.1124 24.5393 29.1124 22.4797V18.5424C29.1124 16.4856 28.497 14.8196 26.4411 14.8196ZM19.4583 22.743V18.2782L23.7346 20.5106L19.4583 22.743Z' fill='white'/%3E%3C/g%3E%3Ccircle cx='20.5' cy='20.5' r='20' stroke='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  width: 52px;
  height: 52px;
  display: block;
  position: relative;
  transition: all 0.5s;
}
@media (max-width: 1199px) {
  ul.social li a.youtube {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  ul.social li a.youtube {
    margin-top: 10px;
  }
}
ul.social li a.youtube:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='53' height='52' viewBox='0 0 53 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='26.5' cy='26' rx='26.5' ry='26' fill='%23FF8762'/%3E%3Cmask id='mask0_1033_2794' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='10' y='9' width='34' height='34'%3E%3Cpath d='M43.3562 9.83447H10.5391V42.6516H43.3562V9.83447Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1033_2794)'%3E%3Cpath d='M34.1127 18.7922H20.476C17.8682 18.7922 16.8098 20.9019 16.8098 23.5144V28.5085C16.8098 31.1162 17.9819 33.2306 20.5873 33.2306H34.0025C36.6092 33.2306 37.5011 31.1209 37.5011 28.5085V23.5144C37.5011 20.9054 36.7205 18.7922 34.1127 18.7922ZM25.2556 28.8425V23.1792L30.6797 26.0108L25.2556 28.8425Z' fill='white'/%3E%3C/g%3E%3C/svg%3E ");
}
ul.social li a.x {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_789_4937' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='28' height='28'%3E%3Cpath d='M28 0H0V28H28V0Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_789_4937)'%3E%3Cpath d='M7.08 6.12904H9.428L20.235 21.268H17.887L7.08 6.12904ZM20.236 5.00104L14.636 11.376L10.16 5.00104H5L11.765 14.642L5 22.342H6.528L12.442 15.608L17.166 22.342H22.325L15.312 12.342L21.764 5.00104H20.236Z' fill='%23188af5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  display: block;
  position: relative;
  top: 2px;
  transition: all 0.5s;
}
ul.social li a.x:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_789_4937' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='28' height='28'%3E%3Cpath d='M28 0H0V28H28V0Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_789_4937)'%3E%3Cpath d='M7.08 6.12904H9.428L20.235 21.268H17.887L7.08 6.12904ZM20.236 5.00104L14.636 11.376L10.16 5.00104H5L11.765 14.642L5 22.342H6.528L12.442 15.608L17.166 22.342H22.325L15.312 12.342L21.764 5.00104H20.236Z' fill='%23074a8d'/%3E%3C/g%3E%3C/svg%3E");
}
ul.social.reverse li a.linkedin {
  background-repeat: no-repeat no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='26' cy='26' r='25' fill='%23FF8762' stroke='%23FF8762' stroke-width='1'/%3E%3Cmask id='mask0_7234_2695' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='10' y='9' width='32' height='33'%3E%3Cpath d='M41.9909 9.63428H10.373V41.2521H41.9909V9.63428Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_7234_2695)'%3E%3Cpath d='M17.2332 21.4989H21.2429V34.4001H17.2332V21.4989ZM19.2387 15.0862C19.6985 15.0859 20.1481 15.2221 20.5306 15.4773C20.913 15.7326 21.2112 16.0956 21.3874 16.5204C21.5636 16.9452 21.6099 17.4126 21.5204 17.8637C21.4309 18.3147 21.2097 18.7291 20.8847 19.0544C20.5597 19.3798 20.1455 19.6014 19.6945 19.6913C19.2436 19.7813 18.776 19.7355 18.3511 19.5597C17.9262 19.3839 17.5629 19.0861 17.3072 18.7038C17.0516 18.3216 16.915 17.8722 16.9148 17.4123C16.9148 16.7958 17.1594 16.2044 17.5952 15.7683C18.0309 15.3321 18.6221 15.0867 19.2387 15.0862Z' fill='%23FFF'/%3E%3Cpath d='M23.7566 21.4991H27.6027V23.2641H27.6581C28.0424 22.6059 28.5983 22.0644 29.2663 21.6974C29.9343 21.3305 30.6895 21.1519 31.4511 21.1806C35.5163 21.1806 36.2603 23.8524 36.2603 27.3248V34.4006H32.2528V28.1266C32.2528 26.6304 32.2269 24.705 30.1684 24.705C28.0827 24.705 27.7653 26.3367 27.7653 28.0193V34.4006H23.7578L23.7566 21.4991Z' fill='%23FFF'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  width: 52px;
  height: 52px;
  display: block;
  transition: all 0.5s;
}
@media (max-width: 1199px) {
  ul.social.reverse li a.linkedin {
    width: 30px;
    height: 30px;
  }
}
ul.social.reverse li a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.233 20.4987H20.2427V33.3999H16.233V20.4987ZM18.2384 14.0859C18.6983 14.0857 19.1478 14.2218 19.5303 14.4771C19.9128 14.7324 20.211 15.0954 20.3871 15.5202C20.5633 15.945 20.6096 16.4124 20.5202 16.8635C20.4307 17.3145 20.2094 17.7289 19.8844 18.0542C19.5594 18.3795 19.1453 18.6012 18.6943 18.6911C18.2433 18.7811 17.7758 18.7353 17.3509 18.5595C16.9259 18.3837 16.5627 18.0858 16.307 17.7036C16.0513 17.3214 15.9148 16.872 15.9146 16.4121C15.9146 15.7956 16.1592 15.2042 16.5949 14.7681C17.0307 14.3319 17.6219 14.0865 18.2384 14.0859Z' fill='%23FF8762'/%3E%3Cpath d='M22.7563 20.4992H26.6024V22.2641H26.6579C27.0422 21.6059 27.598 21.0645 28.2661 20.6975C28.9341 20.3306 29.6892 20.152 30.4509 20.1807C34.516 20.1807 35.2601 22.8525 35.2601 26.3249V33.4007H31.2526V27.1267C31.2526 25.6304 31.2267 23.7051 29.1681 23.7051C27.0825 23.7051 26.7651 25.3368 26.7651 27.0194V33.4007H22.7576L22.7563 20.4992Z' fill='%23FF8762'/%3E%3Ccircle cx='26' cy='26' r='25.5' stroke='%23FF8762'/%3E%3C/svg%3E%0A");
}
ul.social.reverse li a.email {
  background-image: url("data:image/svg+xml,%3Csvg width='53' height='52' viewBox='0 0 53 52' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='26.5' cy='26' r='25.5' fill='%23FF8762' stroke='%23FF8762' stroke-width='1'/%3E%3Cpath d='M14.5 17.5H39.5V33.5H14.5V17.5Z' fill='%23FF8762'/%3E%3Cpath d='M16 18L27.4231 26L38 18M14.5 17.5H39.5C40.8807 17.5 42 18.6193 42 20V31C42 32.3807 40.8807 33.5 39.5 33.5H14.5C13.1193 33.5 12 32.3807 12 31V20C12 18.6193 13.1193 17.5 14.5 17.5Z' stroke='%23FFF' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  width: 52px;
  height: 52px;
  display: block;
  transition: all 0.5s;
}
@media (max-width: 1199px) {
  ul.social.reverse li a.email {
    width: 30px;
    height: 30px;
  }
}
ul.social.reverse li a.email:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='53' height='52' viewBox='0 0 53 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 18L27.4231 26L38 18' stroke='%23FFFFFF'/%3E%3Cpath d='M52.5 26C52.5 40.0743 40.8684 51.5 26.5 51.5C12.1316 51.5 0.5 40.0743 0.5 26C0.5 11.9257 12.1316 0.5 26.5 0.5C40.8684 0.5 52.5 11.9257 52.5 26Z' stroke='%23FFFFFF'/%3E%3Crect x='14.5' y='17.5' width='25' height='16' rx='3.5' stroke='%23FFFFFF'/%3E%3C/svg%3E%0A");
}

@media (max-width: 991px) {
  .line-404 {
    padding: 130px 0 300px 0 !important;
  }
}
@media (min-width: 992px) {
  .line-404 .row {
    display: flex;
    align-items: flex-end;
  }
}
.line-404 .row > div:first-child .content {
  text-align: center;
}
.line-404 .row > div:first-child .content h1 {
  color: #FF8762;
  font-size: 30px;
}
.line-404 .row > div:first-child .content h1 strong {
  display: block;
  font-size: 200px;
  line-height: 160px;
}
@media (max-width: 991px) {
  .line-404 .row > div:first-child .content h1 strong {
    font-size: 160px;
    line-height: 120px;
  }
}
@media (max-width: 575px) {
  .line-404 .row > div:first-child .content h1 strong {
    font-size: 120px;
    line-height: 100px;
  }
}
@media (max-width: 767px) {
  .line-404 .row > div:last-child .content {
    margin-top: 60px;
    text-align: center;
  }
}
.line-404 .row > div:last-child .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-404 .row > div:last-child .content p {
    font-size: 16px;
    line-height: 20px;
  }
}

.line-title-link-all {
  padding-top: 108px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .line-title-link-all {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .line-title-link-all .container > .row > div:nth-child(1) {
    margin-bottom: 20px;
  }
}
.line-title-link-all .container > .row > div:nth-child(1) .content h2 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  text-transform: initial;
  color: #A3EBB8;
  /*
  padding: 8px 14px 6px 10px;
  background-color: $third;
  border-radius: 5px;
  */
  max-width: fit-content;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .line-title-link-all .container > .row > div:nth-child(1) .content h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
.line-title-link-all .container > .row > div:nth-child(2) .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-title-link-all .container > .row > div:nth-child(2) .content {
    text-align: left;
  }
}
.line-title-link-all .container > .row > div:nth-child(2) .content .btn {
  margin-top: 0px;
}

.pastille-intro {
  padding-bottom: 70px;
  background: #E0E7F4;
}
@media (min-width: 992px) {
  .pastille-intro .container {
    width: 93%;
    margin-left: auto;
    margin-right: 0;
  }
}
.pastille-intro .container > .row > div .content {
  background: #FFF4F2;
  border-radius: 40px;
  position: relative;
  padding: 60px 175px 65px 60px;
}
@media (min-width: 992px) {
  .pastille-intro .container > .row > div .content {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .pastille-intro .container > .row > div .content {
    padding-right: 60px;
  }
}
@media (max-width: 767px) {
  .pastille-intro .container > .row > div .content {
    padding: 130px 20px 50px;
  }
}
@media (max-width: 991px) {
  .pastille-intro.magazines .container > .row > div .content {
    padding-top: 120px;
  }
}
.pastille-intro.magazines .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_magazine/pastille-magazine.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 339px;
  height: 339px;
  position: absolute;
  top: -185px;
  right: -160px;
}
@media (max-width: 991px) {
  .pastille-intro.magazines .container > .row > div .content:after {
    width: 180px;
    height: 180px;
    right: 0;
    top: -75px;
  }
}
.pastille-intro.ressources {
  padding-bottom: 240px !important;
}
@media (max-width: 767px) {
  .pastille-intro.ressources {
    padding-bottom: 350px !important;
  }
}
.pastille-intro.ressources .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_ressources/pastille-ressources.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 339px;
  height: 339px;
  position: absolute;
  top: -185px;
  right: -160px;
}
@media (max-width: 991px) {
  .pastille-intro.ressources .container > .row > div .content:after {
    width: 180px;
    height: 180px;
    top: -125px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .pastille-intro.ressources .container > .row > div .content:after {
    top: -80px;
  }
}
.pastille-intro.thinktank .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_ecosystene/img-think-tank-smet.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 339px;
  height: 339px;
  position: absolute;
  top: -185px;
  right: -160px;
}
@media (max-width: 991px) {
  .pastille-intro.thinktank .container > .row > div .content:after {
    width: 180px;
    height: 180px;
    top: -135px;
    right: -25px;
  }
}
@media (max-width: 767px) {
  .pastille-intro.thinktank .container > .row > div .content:after {
    top: -75px;
    right: 3px;
  }
}
.pastille-intro.communaute {
  padding-top: 60px;
}
.pastille-intro.communaute .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_ecosystene/img-communaute-pratique.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 300px;
  height: 300px;
  position: absolute;
  top: -140px;
  right: -144px;
}
@media (max-width: 991px) {
  .pastille-intro.communaute .container > .row > div .content:after {
    width: 180px;
    height: 180px;
    top: -135px;
    right: -25px;
  }
}
@media (max-width: 767px) {
  .pastille-intro.communaute .container > .row > div .content:after {
    top: -75px;
    right: 3px;
  }
}
.pastille-intro.partenaires .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_ecosystene/img-pertenaires.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 342px;
  height: 342px;
  position: absolute;
  top: -185px;
  right: -160px;
}
@media (max-width: 1199px) {
  .pastille-intro.partenaires .container > .row > div .content:after {
    width: 250px;
    height: 250px;
    top: -125px;
    right: -116px;
  }
}
@media (max-width: 991px) {
  .pastille-intro.partenaires .container > .row > div .content:after {
    width: 180px;
    height: 180px;
    top: -75px;
    right: -10px;
  }
}
.pastille-intro.ambassadeurs .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_ecosystene/img-ambassadeurs.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 347px;
  height: 347px;
  position: absolute;
  top: -185px;
  right: -160px;
}
@media (max-width: 991px) {
  .pastille-intro.ambassadeurs .container > .row > div .content:after {
    width: 180px;
    height: 180px;
    right: 0;
    top: -125px;
  }
}
@media (max-width: 767px) {
  .pastille-intro.ambassadeurs .container > .row > div .content:after {
    top: -75px;
  }
}

.fakecontainer .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .fakecontainer .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .fakecontainer .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .fakecontainer .container {
    width: 1152px;
  }
}

.secondintro-img-content {
  padding-bottom: 115px;
  background: #E0E7F4;
}
.secondintro-img-content .container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .secondintro-img-content .container > .row {
    display: flex;
    flex-direction: column;
  }
}
.secondintro-img-content .container > .row > div:first-child {
  width: 40%;
}
@media (max-width: 991px) {
  .secondintro-img-content .container > .row > div:first-child {
    width: 100%;
    margin-bottom: 45px;
  }
}
.secondintro-img-content .container > .row > div:first-child .content {
  text-align: center;
  padding-top: 45px;
}
.secondintro-img-content .container > .row > div:last-child {
  width: 60%;
}
@media (max-width: 991px) {
  .secondintro-img-content .container > .row > div:last-child {
    width: 100%;
  }
}
.secondintro-img-content .container > .row > div:last-child .content {
  position: relative;
  padding-left: 85px;
  max-width: 80%;
}
@media (max-width: 767px) {
  .secondintro-img-content .container > .row > div:last-child .content {
    padding-left: 0;
    border-top: 6px solid #FF8762;
    text-align: center;
    max-width: 100%;
    padding-top: 45px;
  }
}
.secondintro-img-content .container > .row > div:last-child .content:before {
  content: "";
  background: #FF8762;
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .secondintro-img-content .container > .row > div:last-child .content:before {
    display: none;
  }
}

.line-checkbox-items {
  background: linear-gradient(45deg, #EE653B 0%, #FF8762 100%);
  padding-top: 85px;
  padding-bottom: 150px;
}
.line-checkbox-items .container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.line-checkbox-items .container > .row > div .content h2 {
  padding-bottom: 75px;
}
.line-checkbox-items .container > .row > div .content ul {
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 35px;
}
@media (max-width: 767px) {
  .line-checkbox-items .container > .row > div .content ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 55px 0;
  }
}
.line-checkbox-items .container > .row > div .content ul li {
  display: inline-block;
  padding: 47px 65px;
  background: #fff;
  border-radius: 40px;
  position: relative;
  font-size: 24px !important;
  line-height: 30px !important;
  text-align: center;
}
@media (max-width: 1199px) {
  .line-checkbox-items .container > .row > div .content ul li {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .line-checkbox-items .container > .row > div .content ul li {
    font-size: 19px !important;
    line-height: 25px !important;
  }
}
@media (max-width: 767px) {
  .line-checkbox-items .container > .row > div .content ul li {
    font-size: 19px;
    line-height: 25px;
  }
}
.line-checkbox-items .container > .row > div .content ul li span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
  display: inline-block;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .line-checkbox-items .container > .row > div .content ul li span {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-checkbox-items .container > .row > div .content ul li:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/icone-ccrochet.svg);
  background-repeat: no-repeat;
  width: 53px;
  height: 53px;
  background-size: contain;
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
}

.bordered {
  border: 1px solid #282828;
  border-radius: 30px;
  padding: 2px 20px;
  display: inline-block;
}
@media (max-width: 767px) {
  .bordered {
    padding: 2px 10px;
  }
}

.line-buttons {
  padding-bottom: 90px;
}
.line-buttons .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-buttons .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-buttons .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-buttons .container {
    width: 1152px;
  }
}
.line-buttons .container > .row > div .content ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0 !important;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-buttons .container > .row > div .content ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .line-buttons .container > .row > div .content ul {
    flex-direction: column;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-buttons .container > .row > div .content ul li {
    text-align: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-buttons .container > .row > div .content ul li:first-child, .line-buttons .container > .row > div .content ul li:nth-child(2) {
    width: 50%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-buttons .container > .row > div .content ul li:last-child {
    width: 100%;
  }
}

.inspiration-single .container {
  background: #FFF4F2;
  border-top-left-radius: 55px;
  border-top-right-radius: 55px;
  padding-top: 120px;
}
.inspiration-single .container > .row {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .inspiration-single .container > .row {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .inspiration-single .container > .row {
    max-width: 100%;
  }
}
.inspiration-single .container > .row > div .mod-article__wrapper .mod-article__title {
  font-size: 50px;
  line-height: 52px;
  font-weight: 400;
  text-transform: initial;
  text-align: center;
  margin-bottom: 160px;
  position: relative;
}
@media (max-width: 767px) {
  .inspiration-single .container > .row > div .mod-article__wrapper .mod-article__title {
    font-size: 30px;
    line-height: 32px;
  }
}
.inspiration-single .container > .row > div .mod-article__wrapper .mod-article__title:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Bien_au_travail/arrow-down-bounce.svg);
  background-repeat: no-repeat;
  width: 57px;
  height: 87px;
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  animation: move 1s ease-in-out infinite alternate;
}
.inspiration-single .container > .row > div .mod-article__wrapper .news-content .mod-article__img {
  border-radius: 24px;
  padding-bottom: 25px;
}
.inspiration-single .container > .row > div .mod-article__wrapper .news-content .mod-article__content h2, .inspiration-single .container > .row > div .mod-article__wrapper .news-content .mod-article__content h3, .inspiration-single .container > .row > div .mod-article__wrapper .news-content .mod-article__content h4 {
  margin-top: 40px;
  margin-bottom: 15px;
}
.inspiration-single .container > .row > div .mod-article__wrapper .news-content .mod-article__content table.citation {
  margin-top: 45px;
  margin-bottom: 45px;
  border-left: 10px solid #FF8762;
}
.inspiration-single .container > .row > div .mod-article__wrapper .news-content .mod-article__content table.citation tbody tr td {
  padding-left: 30px;
  padding-right: 40px;
}
.inspiration-single .container > .row > div .mod-article__wrapper .news-content .mod-article__content table.citation tbody tr:first-child td h6 {
  margin-bottom: 30px;
}
.inspiration-single .container > .row > div .mod-article__wrapper .news-content .mod-article__content table.citation tbody tr:last-child h6, .inspiration-single .container > .row > div .mod-article__wrapper .news-content .mod-article__content table.citation tbody tr:last-child p {
  margin-bottom: 0;
}

.line-inspirations-back {
  padding-bottom: 30px;
}
.line-inspirations-back .container {
  background: #FFF4F2;
  padding-bottom: 70px;
}
.line-inspirations-back .container > .row {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.line-newsletter {
  position: relative;
  z-index: 5;
  padding-top: 60px;
  padding-bottom: 60px;
}
.line-newsletter .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-newsletter .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-newsletter .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-newsletter .container {
    width: 1152px;
  }
}
.line-form {
  padding-top: 80px;
}
.line-form .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-form .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-form .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-form .container {
    width: 1152px;
  }
}
.line-form .container > .row > div #formbuilder-add-wrapper h2, .line-form .container > .row > div #formbuilder-add-wrapper h3 {
  color: #282828;
}
@media (max-width: 991px) {
  .line-form .container > .row > div #formbuilder-add-wrapper h2 br, .line-form .container > .row > div #formbuilder-add-wrapper h3 br {
    display: none !important;
  }
}
.line-form .container > .row > div #formbuilder-add-wrapper .form-horizontal {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-form .container > .row > div #formbuilder-add-wrapper .form-horizontal {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .line-form.newsletter {
    padding-top: 0;
  }
}
.line-form.border-bottom .container {
  padding-bottom: 80px;
  border-bottom: 1px solid #6B82A4;
}

.line-banner-header {
  background: #E0E7F4;
  padding-bottom: 95px;
}
@media (min-width: 992px) {
  .line-banner-header .container > .row > div .content {
    padding-left: 90px;
  }
}
@media (max-width: 991px) {
  .line-banner-header .container > .row > div .content {
    padding-top: 50px;
  }
}

.line-events {
  padding-top: 90px;
}
.line-events .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-events .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-events .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-events .container {
    width: 1152px;
  }
}
.line-events .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left {
  background: #fff;
  padding-top: 0;
}
@media (max-width: 767px) {
  .line-events .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left {
    padding-left: 0;
  }
}
.line-events .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left p.event-jumbotron__date {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
  text-transform: none;
}
@media (max-width: 767px) {
  .line-events .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left p.event-jumbotron__date {
    font-size: 19px;
    line-height: 25px;
  }
}
.line-events .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address-full .event-info__title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  font-weight: 700;
}
@media (max-width: 767px) {
  .line-events .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address-full .event-info__title {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-events .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right {
  padding-left: 60px;
  border-left: 1px solid #6B82A4;
}
@media (max-width: 767px) {
  .line-events .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right {
    padding-left: 15px;
  }
}
.line-events .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__section {
  margin-top: 0;
}
.line-events .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-wrapper p:first-of-type {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-events .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-wrapper p:first-of-type {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-events .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-wrapper h4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-events .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-wrapper h4 {
    font-size: 16px;
    line-height: 20px;
  }
}

.event-back .content {
  padding-left: 75px;
}

.line-evenements {
  padding-top: 65px;
}
.line-evenements .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-evenements .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-evenements .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-evenements .container {
    width: 1152px;
  }
}
.line-evenements .container > .row > div .events-mosaic > .row .item .e-thumbnail {
  border-radius: 15px;
  max-width: 260px;
}
.line-evenements .container > .row > div .events-mosaic > .row .item h3 {
  font-size: 22px;
  line-height: 28px;
}
.line-evenements .container > .row > div .events-mosaic > .row .item .e-date {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
  text-transform: none;
}
@media (max-width: 767px) {
  .line-evenements .container > .row > div .events-mosaic > .row .item .e-date {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-evenements .container > .row > div .events-mosaic > .row .item p.address, .line-evenements .container > .row > div .events-mosaic > .row .item p.contact {
  display: none;
}
.line-evenements .container > .row > div .events-mosaic > .row .item .events-mosaic__short-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-evenements .container > .row > div .events-mosaic > .row .item .events-mosaic__short-description {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-evenements .container > .row > div .events-mosaic > .row .item .actions .btn-default {
  padding: 10px 20px !important;
  background-color: transparent !important;
  color: #282828 !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
}
.line-evenements .container > .row > div .events-mosaic > .row .item .actions .btn-default:hover, .line-evenements .container > .row > div .events-mosaic > .row .item .actions .btn-default:active, .line-evenements .container > .row > div .events-mosaic > .row .item .actions .btn-default:focus {
  text-decoration: none !important;
  background-color: #FF8762 !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}
.line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left {
  background: #fff;
  padding-top: 30px;
}
.line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left p.event-jumbotron__date {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
  text-transform: none;
}
@media (max-width: 767px) {
  .line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left p.event-jumbotron__date {
    font-size: 19px;
    line-height: 25px;
  }
}
.line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address-full .event-info__title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  font-weight: 700;
}
@media (max-width: 767px) {
  .line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address-full .event-info__title {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right {
  padding-left: 60px;
  border-left: 1px solid #6B82A4;
}
.line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__section {
  margin-top: 0;
}
.line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-wrapper p:first-of-type {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-wrapper p:first-of-type {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-wrapper h4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-wrapper h4 {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__nav .event-detail__nav__cta {
  display: flex;
}
.line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__nav .event-detail__nav__cta .btn-primary {
  order: 1;
}
.line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__nav .event-detail__nav__cta .btn-default {
  order: 0;
  margin-right: 15px;
  padding: 10px 20px !important;
  background-color: transparent !important;
  color: #282828 !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
  border-radius: 60px !important;
}
.line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__nav .event-detail__nav__cta .btn-default:hover, .line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__nav .event-detail__nav__cta .btn-default:active, .line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__nav .event-detail__nav__cta .btn-default:focus {
  text-decoration: none !important;
  background-color: #FF8762 !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}
.line-evenements .container > .row > div .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__nav .event-detail__nav__cta .btn-default:before {
  display: none !important;
}
.line-evenements .container > .row .nav-progress li.disabled.active ~ li:before {
  background: #fff;
  color: #000000;
}

.smet-citation {
  background: #E0E7F4;
  padding-bottom: 120px;
}
.smet-citation .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .smet-citation .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .smet-citation .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .smet-citation .container {
    width: 1152px;
  }
}
.smet-citation .container > .row > div .content {
  max-width: 78%;
  border-radius: 40px;
  background: #FFF4F2;
  padding: 87px 129px 96px 308px;
  position: relative;
}
@media (max-width: 991px) {
  .smet-citation .container > .row > div .content {
    max-width: 100%;
    padding: 135px 35px 50px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .smet-citation .container > .row > div .content {
    padding-top: 200px;
  }
}
.smet-citation .container > .row > div .content h3 {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .smet-citation .container > .row > div .content h3 {
    padding-bottom: 50px;
  }
}
.smet-citation .container > .row > div .content h3:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_l-approche/citation-open.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 58px;
  height: 52px;
  position: absolute;
  top: 0px;
  left: -80px;
}
@media (max-width: 991px) {
  .smet-citation .container > .row > div .content h3:before {
    top: -75px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .smet-citation .container > .row > div .content h3:before {
    width: 38px;
    top: -65px;
  }
}
.smet-citation .container > .row > div .content h3:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_l-approche/citation-close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 58px;
  height: 52px;
  position: absolute;
  bottom: 0;
  right: -40px;
}
@media (max-width: 991px) {
  .smet-citation .container > .row > div .content h3:after {
    bottom: -70px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .smet-citation .container > .row > div .content h3:after {
    width: 38px;
    bottom: -15px;
  }
}
.smet-citation.intro .container > .row > div .content {
  margin-right: 0;
  margin-left: auto;
}
.smet-citation.intro .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_l-approche/logo-organisation-mondiale-sante.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  border: 20px solid #fff4f2;
  position: absolute;
  left: -105px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .smet-citation.intro .container > .row > div .content:after {
    top: -115px;
    transform: none;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .smet-citation.intro .container > .row > div .content:after {
    width: 140px;
    height: 140px;
    top: -75px;
    border: 13px solid #fff4f2;
  }
}
.smet-citation.quote .container > .row > div .content {
  margin-right: 0;
  margin-left: auto;
  margin-top: -270px;
  padding-bottom: 70px;
}
.smet-citation.quote .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_l-approche/img-Amira-Habashi.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  border: 20px solid #fff4f2;
  position: absolute;
  left: -105px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .smet-citation.quote .container > .row > div .content:after {
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  .smet-citation.apropos {
    padding-top: 100px;
  }
}
.smet-citation.apropos .container > .row > div .content {
  background: #fff;
  margin-right: 0;
  margin-left: auto;
}
.smet-citation.apropos .container > .row > div .content h5 {
  margin-bottom: 0;
}
.smet-citation.apropos .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_apropos/manon-boivin.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  border: 20px solid #fff;
  position: absolute;
  left: -105px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .smet-citation.apropos .container > .row > div .content:after {
    transform: none;
    left: 50%;
    top: -95px;
    transform: translateX(-50%);
  }
}
.smet-citation.apropos .container > .row > div .content h3:after {
  bottom: -35px;
  right: -62px;
}
@media (max-width: 991px) {
  .smet-citation.apropos .container > .row > div .content h3:after {
    right: -15px;
  }
}
.smet-citation.apropos-bis .container > .row > div .content {
  margin-top: -200px;
  padding: 80px 264px 60px 144px;
  max-width: 82%;
}
@media (max-width: 991px) {
  .smet-citation.apropos-bis .container > .row > div .content {
    max-width: 100%;
    padding: 160px 30px 60px;
  }
}
.smet-citation.apropos-bis .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_apropos/marie-claude-lagace.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  border: 20px solid #fff4f2;
  position: absolute;
  right: -105px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .smet-citation.apropos-bis .container > .row > div .content:after {
    transform: none;
    top: -95px;
    right: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.smet-citation.carriere .container > .row > div .content {
  margin-right: 0;
  margin-left: auto;
}
.smet-citation.carriere .container > .row > div .content h5 {
  margin-bottom: 0;
}
.smet-citation.carriere .container > .row > div .content h3:after {
  right: -70px;
}
@media (max-width: 991px) {
  .smet-citation.carriere .container > .row > div .content h3:after {
    right: -10px;
  }
}
.smet-citation.carriere .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_apropos/_carriere/sarah-berkane.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  border: 20px solid #fff4f2;
  position: absolute;
  left: -105px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .smet-citation.carriere .container > .row > div .content:after {
    transform: none;
    left: 50%;
    top: -75px;
    transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  .smet-citation.sdp {
    padding-top: 80px;
  }
}
.smet-citation.sdp .container > .row > div .content {
  margin-right: 0;
  margin-left: auto;
  padding-left: 165px;
}
@media (max-width: 991px) {
  .smet-citation.sdp .container > .row > div .content {
    padding: 150px 30px 30px;
  }
}
.smet-citation.sdp .container > .row > div .content h5 {
  margin-bottom: 0;
}
.smet-citation.sdp .container > .row > div .content h3:after {
  right: -70px;
}
.smet-citation.sdp .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_apropos/_equipe/bothayna.jpg);
  background-repeat: no-repeat;
  background-size: 125%;
  background-position: -15px -33px;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  border: 20px solid #fff4f2;
  position: absolute;
  left: -105px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .smet-citation.sdp .container > .row > div .content:after {
    transform: none;
    left: 50%;
    top: -75px;
    transform: translateX(-50%);
  }
}
.smet-citation.carriere-bis .container > .row > div .content {
  margin-top: -200px;
  padding: 80px 264px 60px 144px;
  max-width: 82%;
  background: #D9FFE4;
}
@media (max-width: 991px) {
  .smet-citation.carriere-bis .container > .row > div .content {
    max-width: 200%;
    padding: 150px 40px 60px;
  }
}
.smet-citation.carriere-bis .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_apropos/_carriere/valerie-savoir.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  border: 20px solid #D9FFE4;
  position: absolute;
  right: -105px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .smet-citation.carriere-bis .container > .row > div .content:after {
    transform: none;
    right: 0;
    left: 50%;
    top: -85px;
    transform: translateX(-50%);
  }
}

.intro-box {
  background: #E0E7F4;
  padding-bottom: 120px;
}
@media (min-width: 992px) {
  .intro-box .container {
    width: 93%;
    margin-left: auto;
    margin-right: 0;
  }
}
.intro-box .container > .row > div .content {
  border-radius: 40px;
  background: #FFF4F2;
  padding: 57px 144px 70px 60px;
  position: relative;
}
@media (min-width: 992px) {
  .intro-box .container > .row > div .content {
    max-width: 78%;
  }
}
@media (max-width: 991px) {
  .intro-box .container > .row > div .content {
    padding: 130px 60px 70px;
  }
}
@media (max-width: 767px) {
  .intro-box .container > .row > div .content {
    padding: 100px 30px 50px;
  }
}
.intro-box.action {
  padding-bottom: 90px;
}
.intro-box.action .container > .row > div .content:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_accompagnement/pastille-certification-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 350px;
  height: 350px;
  position: absolute;
  top: 0%;
  right: -21%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .intro-box.action .container > .row > div .content:after {
    width: 250px;
    height: 250px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .intro-box.action .container > .row > div .content:after {
    width: 180px;
    height: 180px;
  }
}
.intro-box.formations {
  padding-bottom: 90px;
}
.intro-box.formations .container > .row > div .content:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_accompagnement/formation-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 133px;
  height: 146px;
  position: absolute;
  top: 50%;
  right: -9%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .intro-box.formations .container > .row > div .content:after {
    top: 0;
    right: 0;
  }
}
.intro-box.prix {
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .intro-box.prix {
    padding-top: 50px;
  }
}
.intro-box.prix .container > .row > div .content:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_l-approche/prixdistinction.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 347px;
  height: 347px;
  position: absolute;
  top: 0%;
  right: -21%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .intro-box.prix .container > .row > div .content:after {
    width: 200px;
    height: 200px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .intro-box.prix .container > .row > div .content:after {
    width: 180px;
    height: 180px;
  }
}
.intro-box.certification {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .intro-box.certification {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .intro-box.certification {
    padding-top: 60px;
  }
}
.intro-box.certification .container > .row > div .content:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/certif-pastilles.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 204px;
  height: 204px;
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .intro-box.certification .container > .row > div .content:after {
    top: -75px;
    right: 0;
    left: 50%;
    transform: translateY(0%);
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .intro-box.certification .container > .row > div .content:after {
    width: 160px;
    height: 160px;
  }
}
.intro-box.entreprise {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .intro-box.entreprise {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .intro-box.entreprise {
    padding-top: 60px;
  }
}
.intro-box.entreprise .container > .row > div .content:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/fondblanc.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 204px;
  height: 204px;
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .intro-box.entreprise .container > .row > div .content:after {
    top: -75px;
    right: 0;
    left: 50%;
    transform: translateY(0%);
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .intro-box.entreprise .container > .row > div .content:after {
    width: 160px;
    height: 160px;
  }
}
.intro-box.equipe .container > .row > div .content:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_apropos/_equipe/equipe-icone.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 183px;
  height: 191px;
  position: absolute;
  top: 50%;
  right: -9%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .intro-box.equipe .container > .row > div .content:after {
    top: 0;
    right: 0;
  }
}
@media (max-width: 767px) {
  .intro-box.equipe .container > .row > div .content:after {
    top: 40px;
    width: 140px;
  }
}
.intro-box.ca .container > .row > div .content:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_apropos/_equipe/ca-icone.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 151px;
  height: 174px;
  position: absolute;
  top: 50%;
  right: -9%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .intro-box.ca .container > .row > div .content:after {
    top: 0;
    right: 0;
  }
}
@media (max-width: 767px) {
  .intro-box.ca .container > .row > div .content:after {
    width: 115px;
    top: 20px;
  }
}

.back-btn .container {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.line-magazines .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-magazines .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-magazines .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-magazines .container {
    width: 1152px;
  }
}
.line-magazines .container > .row > div .newsList > .row {
  margin-bottom: 90px;
}
.line-magazines .container > .row > div .newsList > .row .item {
  display: grid;
  grid-template-columns: 0.5fr 1fr; /* Two equal columns */
  grid-template-rows: auto auto; /* Two rows */
  gap: 10px;
}
@media (max-width: 991px) {
  .line-magazines .container > .row > div .newsList > .row .item {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .line-magazines .container > .row > div .newsList > .row .item {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
.line-magazines .container > .row > div .newsList > .row .item .itemImage {
  grid-column: 1/2;
  grid-row: 1/3;
}
.line-magazines .container > .row > div .newsList > .row .item .itemImage img {
  max-width: 266px;
  border-radius: 15px;
}
.line-magazines .container > .row > div .newsList > .row .item .intro {
  grid-column: 2/3;
  grid-row: 1/2;
}
.line-magazines .container > .row > div .newsList > .row .item .intro h3 {
  font-size: 50px;
  line-height: 52px;
  font-weight: 400;
  text-transform: initial;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .line-magazines .container > .row > div .newsList > .row .item .intro h3 {
    font-size: 30px;
    line-height: 32px;
  }
}
.line-magazines .container > .row > div .newsList > .row .item .actions {
  grid-column: 2/3;
  grid-row: 2/3;
  margin-top: 0;
}
.line-magazines .container > .row > div .newsList > .row .item .actions .btn {
  margin-top: 0;
}

.line-map .container > .row {
  position: relative;
  z-index: 20;
  background: #FFF4F2;
  border-radius: 40px;
}
.line-map .container > .row > div:first-child {
  padding-top: 130px;
  padding-left: 75px;
}
@media (max-width: 991px) {
  .line-map .container > .row > div:first-child {
    padding-top: 45px;
    padding-bottom: 45px;
    padding-left: 45px;
  }
}
@media (max-width: 767px) {
  .line-map .container > .row > div:first-child {
    padding: 30px;
  }
}
.line-map .container > .row > div:first-child .content img {
  margin-bottom: 20px;
}
.line-map .container > .row > div:first-child .content p.phone {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-map .container > .row > div:first-child .content p.phone {
    font-size: 18px;
    line-height: 24px;
  }
}
.line-map .container > .row > div:first-child .content p.phone a {
  color: #282828 !important;
}
.line-map .container > .row > div:first-child .content p.phone a:hover {
  color: #FF8762 !important;
}
.line-map .container > .row > div:first-child .content p.email a {
  color: #282828 !important;
}
.line-map .container > .row > div:first-child .content p.email a:hover {
  color: #FF8762 !important;
}
.line-map .container > .row > div:last-child {
  padding-top: 68px;
  padding-right: 85px;
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .line-map .container > .row > div:last-child {
    padding-right: 45px;
  }
}
@media (max-width: 767px) {
  .line-map .container > .row > div:last-child {
    padding: 30px;
  }
}

.sdp-downloads .container > .row {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .sdp-downloads .container > .row {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .sdp-downloads .container > .row div:first-child {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .sdp-downloads .container > .row div:last-child .content {
    padding-left: 100px;
  }
}

@media (max-width: 767px) {
  .sdp-actu-title .container > .row > div:last-child p {
    text-align: left !important;
  }
}

.sdp-actualites .container > .row > div .news-mosaic .news-intro {
  margin-bottom: 45px;
}

.line-recherche .container .row .zone-html .content .gsc-search-box table {
  max-width: 500px;
  margin-left: 0px;
}
.line-recherche .container .row .zone-html .content .gsc-search-box table tbody tr .gsc-input .gscb_a {
  position: relative;
  left: -15px;
}
.line-recherche .container .row .zone-html .content .gsc-search-box table tbody tr .gsc-search-button button {
  display: flex;
  padding: 8px 30px;
}

.line-offre .container > .row > div .newsList .item {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 65px;
}
@media (max-width: 767px) {
  .line-offre .container > .row > div .newsList .item {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
.line-offre .container > .row > div .newsList .item .itemImage {
  grid-column: 1/2;
  grid-row: 1/3;
}
.line-offre .container > .row > div .newsList .item .intro {
  grid-column: 2/3;
  grid-row: 1/2;
}
.line-offre .container > .row > div .newsList .item .actions {
  grid-column: 2/3;
  grid-row: 2/3;
  margin-top: 0;
}

@media (min-width: 768px) {
  .article-page .line-title-banner .container, .ressources-page .line-title-banner .container {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
}
.article-page .line-title-banner .container > .row > div:first-child, .ressources-page .line-title-banner .container > .row > div:first-child {
  width: 100%;
  padding-left: 0;
}
.article-page .line-title-banner .container > .row > div:first-child .content h1, .ressources-page .line-title-banner .container > .row > div:first-child .content h1 {
  font-size: 50px;
  line-height: 52px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .article-page .line-title-banner .container > .row > div:first-child .content h1, .ressources-page .line-title-banner .container > .row > div:first-child .content h1 {
    font-size: 30px;
    line-height: 32px;
  }
}

.ressources-page .mod-article__published-date {
  display: none;
}

.en-vedette {
  background: #E0E7F4;
}
.en-vedette .container {
  padding-right: 0;
  padding-left: 0;
}
.en-vedette .container > .row {
  width: 60%;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .en-vedette .container > .row {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .en-vedette .container > .row {
    width: 100%;
  }
}
.en-vedette .container > .row > div {
  padding-right: 0;
}
@media (max-width: 767px) {
  .en-vedette .container > .row > div {
    padding-left: 0;
  }
}
.en-vedette .container > .row > div .content {
  background: #6B82A4;
  border-radius: 40px;
  padding: 40px 135px 15px 160px;
  position: relative;
}
@media (max-width: 767px) {
  .en-vedette .container > .row > div .content {
    padding: 105px 25px 30px;
    text-align: center;
  }
}
.en-vedette .container > .row > div .content h5, .en-vedette .container > .row > div .content p, .en-vedette .container > .row > div .content .btn {
  color: #fff;
}
.en-vedette .container > .row > div .content h5 {
  font-weight: 700;
}
.en-vedette .container > .row > div .content img, .en-vedette .container > .row > div .content .vedette-img {
  border-radius: 12px;
  position: absolute;
  top: 40px;
  left: -105px;
  box-shadow: -10.94px 13.38px 0px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .en-vedette .container > .row > div .content img, .en-vedette .container > .row > div .content .vedette-img {
    top: -55px;
    left: 16%;
  }
}

.line-soutenons {
  background: #E0E7F4;
  padding-top: 40px;
}
.line-soutenons .container > .row {
  background: #FFF4F2;
  border-radius: 40px;
}
.line-soutenons .container > .row > div .content {
  padding: 60px 200px 45px;
}
@media (max-width: 1199px) {
  .line-soutenons .container > .row > div .content {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 767px) {
  .line-soutenons .container > .row > div .content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.line-soutenons .container > .row > div .content img {
  margin-bottom: 30px;
}
.line-soutenons .container > .row > div .content h2 {
  margin-bottom: 30px;
}
.line-soutenons .container > .row > div .content h2 span {
  display: inline-block;
  background: #fff;
  color: #FF8762;
  border-radius: 40px;
  padding: 5px 20px;
}

.line-decouvrez {
  background: #E0E7F4;
  padding-top: 100px;
}
@media (max-width: 1199px) {
  .line-decouvrez {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .line-decouvrez .container > .row {
    display: flex;
    flex-direction: column;
  }
}
.line-decouvrez .container > .row > div:first-child {
  padding-left: 90px;
}
@media (max-width: 991px) {
  .line-decouvrez .container > .row > div:first-child {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .line-decouvrez .container > .row > div:first-child {
    order: 1;
    width: 65%;
  }
}
@media (max-width: 767px) {
  .line-decouvrez .container > .row > div:first-child .content {
    margin-top: -30px;
  }
}
@media (max-width: 767px) {
  .line-decouvrez .container > .row > div:last-child {
    order: 0;
    width: 50%;
    margin-right: 0;
    margin-left: auto;
  }
}
.line-decouvrez .container > .row > div:last-child .content {
  text-align: right;
  padding-right: 100px;
}
@media (max-width: 991px) {
  .line-decouvrez .container > .row > div:last-child .content {
    padding-right: 0;
  }
}

.line-home-cta {
  background: #E0E7F4;
  padding-bottom: 460px;
}
@media (max-width: 767px) {
  .line-home-cta {
    padding-bottom: 355px;
  }
}
.line-home-cta .container > .row > div .content {
  padding-left: 90px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .line-home-cta .container > .row > div .content {
    padding-left: 40px;
  }
}
@media (max-width: 991px) {
  .line-home-cta .container > .row > div .content {
    padding-left: 0;
  }
}
.line-home-cta .container > .row > div .content .btn-fleche {
  font-size: 82px;
  line-height: 83px;
  font-weight: 500;
  text-transform: initial;
  color: #282828 !important;
  padding-left: 140px;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px !important;
  display: block;
  max-width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
@media (max-width: 767px) {
  .line-home-cta .container > .row > div .content .btn-fleche {
    padding-left: 50px;
    font-size: 28px !important;
    line-height: 35px !important;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .line-home-cta .container > .row > div .content .btn-fleche {
    font-size: 57px;
    line-height: 59px;
  }
}
@media (max-width: 767px) {
  .line-home-cta .container > .row > div .content .btn-fleche {
    font-size: 36px;
    line-height: 37px;
  }
}
.line-home-cta .container > .row > div .content .btn-fleche:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_accueil/fleche.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 70px;
  height: 46px;
  position: absolute;
  left: 0;
  top: 25%;
  transform: transalateY(-50%);
}
@media (max-width: 767px) {
  .line-home-cta .container > .row > div .content .btn-fleche:before {
    width: 27px;
    height: 17px;
  }
}
.line-home-cta .container > .row > div .content .btn-fleche:after {
  content: "";
  background: #282828;
  height: 1px;
  width: calc(100% - 140px);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .line-home-cta .container > .row > div .content .btn-fleche:after {
    width: calc(100% - 50px);
  }
}
.line-home-cta .container > .row > div .content .btn-fleche:hover {
  color: #FF8762 !important;
}
.line-home-cta .container > .row > div .content .btn-fleche:hover:before {
  animation: bounce_arrow 1s ease-in-out infinite alternate;
}
.line-home-cta .container > .row > div .content .btn-fleche.visible {
  opacity: 1;
  transform: translateY(0);
}
.line-home-cta .container > .row > div .content .btn-fleche:nth-child(1) {
  transition-delay: 0s;
}
.line-home-cta .container > .row > div .content .btn-fleche:nth-child(2) {
  transition-delay: 0.4s;
}
.line-home-cta .container > .row > div .content .btn-fleche:nth-child(3) {
  transition-delay: 0.8s;
}
.line-home-cta .container > .row > div .content .btn-fleche:nth-child(4) {
  transition-delay: 1.2s;
}

.home-slider {
  background: #FFF4F2;
  position: relative;
}
.home-slider .container > .row > div .carousel {
  max-height: 600px;
  margin-top: -300px;
  overflow: visible;
}
@media (max-width: 1199px) {
  .home-slider .container > .row > div .carousel {
    max-height: 700px;
  }
}
@media (max-width: 767px) {
  .home-slider .container > .row > div .carousel {
    max-height: 950px;
  }
}
.home-slider .container > .row > div .carousel .carousel-inner {
  background: linear-gradient(45deg, #EE653B 0%, #FF8762 100%);
  padding: 108px 193px;
  border-radius: 40px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  height: 600px;
}
@media (max-width: 1199px) {
  .home-slider .container > .row > div .carousel .carousel-inner {
    padding: 75px 85px;
    height: 700px;
  }
}
@media (max-width: 991px) {
  .home-slider .container > .row > div .carousel .carousel-inner {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .home-slider .container > .row > div .carousel .carousel-inner {
    padding: 80px 40px 25px;
    height: 950px;
  }
}
.home-slider .container > .row > div .carousel .carousel-inner .item {
  max-height: fit-content;
  transition: 1.5s ease-in-out left;
}
.home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text {
    flex-direction: column;
    justify-content: center;
  }
}
.home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text .caption-content {
  order: 1;
  text-align: left;
}
@media (max-width: 991px) {
  .home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text .caption-content {
    text-align: center;
  }
}
.home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text .caption-content p.text_intro {
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
}
@media (max-width: 991px) {
  .home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text .caption-content p.text_intro {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text .caption-content p.text_intro {
    margin-bottom: 50px;
  }
}
.home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text .caption-content p.text_intro:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_accueil/open.svg);
  background-repeat: no-repeat;
  width: 58px;
  height: 52px;
  position: absolute;
  top: 0;
  left: -80px;
}
@media (max-width: 991px) {
  .home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text .caption-content p.text_intro:before {
    top: -80px;
    left: -50px;
  }
}
@media (max-width: 767px) {
  .home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text .caption-content p.text_intro:before {
    width: 33px;
    height: 28px;
    background-size: contain;
    left: 0px;
    top: -50px;
  }
}
.home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text .caption-content p.text_intro:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_accueil/close.svg);
  background-repeat: no-repeat;
  width: 58px;
  height: 52px;
  position: absolute;
  bottom: -15px;
  right: -80px;
}
@media (max-width: 991px) {
  .home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text .caption-content p.text_intro:after {
    bottom: -40px;
    right: -40px;
  }
}
@media (max-width: 767px) {
  .home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text .caption-content p.text_intro:after {
    width: 33px;
    height: 28px;
    background-size: contain;
    right: 0px;
    bottom: -33px;
  }
}
.home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text .caption-content h5 {
  margin-bottom: 5px;
  font-weight: 700;
}
.home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text img {
  order: 0;
  width: 224px !important;
  height: 224px !important;
  border-radius: 50%;
  border: 15px solid #fff;
  margin-right: 130px;
}
@media (max-width: 991px) {
  .home-slider .container > .row > div .carousel .carousel-inner .item .carousel-text img {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .home-slider .container > .row > div .carousel .carousel-inner .item:nth-child(2) {
    padding-top: 150px;
  }
}
.home-slider .container > .row > div .carousel .carousel-inner > .prev, .home-slider .container > .row > div .carousel .carousel-inner .next {
  top: 150px;
}
.home-slider .container > .row > div .carousel .carousel-control {
  transition: all 0.3s ease;
}
.home-slider .container > .row > div .carousel .carousel-control .glyphicon-chevron-left {
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_accueil/chevron-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}
@media (max-width: 767px) {
  .home-slider .container > .row > div .carousel .carousel-control .glyphicon-chevron-left {
    width: 42px;
    height: 42px;
    left: -17px;
  }
}
.home-slider .container > .row > div .carousel .carousel-control .glyphicon-chevron-right {
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_accueil/chevron-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}
@media (max-width: 767px) {
  .home-slider .container > .row > div .carousel .carousel-control .glyphicon-chevron-right {
    width: 42px;
    height: 42px;
    right: -17px;
  }
}
.home-slider .container > .row > div .carousel .carousel-control:hover .glyphicon-chevron-left, .home-slider .container > .row > div .carousel .carousel-control:hover .glyphicon-chevron-right {
  opacity: 0.8;
  transform: scale(0.9);
}

.home-membre-du-mois {
  background: #FFF4F2;
  padding-top: 120px;
  padding-bottom: 100px;
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row {
  position: relative;
  width: 75%;
  background: #D9FFE4;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 60px 160px 40px 170px;
}
@media (max-width: 1199px) {
  .home-membre-du-mois .container-fluid > .row > div .newsList > .row {
    width: 85%;
    padding: 60px 150px 40px 85px;
  }
}
@media (max-width: 767px) {
  .home-membre-du-mois .container-fluid > .row > div .newsList > .row {
    width: 100%;
    padding: 70px 30px 60px 30px;
    margin-left: 0;
    margin-right: 0;
  }
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/cemois-circle.svg);
  background-repeat: no-repeat;
  width: 212px;
  height: 212px;
  position: absolute;
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  animation: rotate-circle 10s linear infinite;
}
@media (max-width: 767px) {
  .home-membre-du-mois .container-fluid > .row > div .newsList > .row:before {
    width: 162px;
    height: 162px;
    background-size: contain;
    right: -30px;
    top: 100%;
  }
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item {
  display: grid;
  grid-template-columns: 40% 60%; /* Two columns: 30% for .itemImage, 70% for the other elements */
  grid-template-rows: auto auto auto; /* Auto-adjust rows based on content size */
  gap: 0px 30px; /* Optional: Adds spacing between grid items */
  position: relative;
}
@media (max-width: 991px) {
  .home-membre-du-mois .container-fluid > .row > div .newsList > .row .item {
    display: flex;
    flex-direction: column;
  }
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/Vector%208.svg);
  background-repeat: no-repeat;
  width: 54px;
  height: 36px;
  position: absolute;
  right: -26%;
  top: 43%;
}
@media (min-width: 1600px) {
  .home-membre-du-mois .container-fluid > .row > div .newsList > .row .item:after {
    right: -24%;
  }
}
@media (max-width: 1199px) {
  .home-membre-du-mois .container-fluid > .row > div .newsList > .row .item:after {
    right: -22%;
  }
}
@media (max-width: 991px) {
  .home-membre-du-mois .container-fluid > .row > div .newsList > .row .item:after {
    top: 46%;
  }
}
@media (max-width: 767px) {
  .home-membre-du-mois .container-fluid > .row > div .newsList > .row .item:after {
    right: 22%;
    top: 711px;
  }
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item .itemImage {
  grid-column: 1; /* Places .itemImage in the first column */
  grid-row: span 3; /* Spans all rows if needed */
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item .itemImage img {
  border-radius: 12px;
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item h3,
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item .e-date,
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item .intro,
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item .actions {
  grid-column: 2; /* Places these elements in the second column */
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  text-transform: initial;
  grid-row: 1; /* First row in the second column */
}
@media (max-width: 767px) {
  .home-membre-du-mois .container-fluid > .row > div .newsList > .row .item h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item h3 a {
  color: #282828 !important;
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item h3 a:hover {
  color: #FF8762 !important;
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item .e-date {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
  text-transform: none;
  grid-row: 2; /* Second row in the second column */
}
@media (max-width: 767px) {
  .home-membre-du-mois .container-fluid > .row > div .newsList > .row .item .e-date {
    font-size: 16px;
    line-height: 20px;
  }
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item .intro {
  grid-row: 3; /* Third row in the second column */
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item .intro p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  .home-membre-du-mois .container-fluid > .row > div .newsList > .row .item .intro p {
    font-size: 16px;
    line-height: 20px;
  }
}
.home-membre-du-mois .container-fluid > .row > div .newsList > .row .item .actions {
  grid-row: 4;
  margin-top: 0;
}

.home-news-title .container {
  max-width: 100%;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .home-news-title .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .home-news-title .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .home-news-title .container {
    width: 1152px;
  }
}
.home-news-title .container > .row > div .content h2 {
  margin-bottom: 35px;
}
.home-news-title .container > .row > div .content p {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .home-news-title .container > .row > div .content p {
    text-align: right;
  }
}
.home-news-title .container > .row > div .content p:before {
  content: "";
  background: #282828;
  width: 130px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .home-news-title .container > .row > div .content p:before {
    width: 100px;
  }
}
.home-news-title .container > .row > div .content .btn {
  margin-left: 180px;
}
@media (max-width: 767px) {
  .home-news-title .container > .row > div .content .btn {
    margin-left: 0;
  }
}

.home-news-section .container {
  max-width: 100%;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .home-news-section .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .home-news-section .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .home-news-section .container {
    width: 1152px;
  }
}
.home-news-section .container > .row > div .newsList > .row .item:first-child {
  padding-top: 110px;
}
@media (max-width: 767px) {
  .home-news-section .container > .row > div .newsList > .row .item:first-child {
    padding-top: 50px;
    margin-bottom: 60px;
  }
}
.home-news-section .container > .row > div .newsList > .row .item .itemImage {
  margin-bottom: 30px;
}
.home-news-section .container > .row > div .newsList > .row .item .itemImage .e-thumbnail {
  border-radius: 15px;
  margin-bottom: 0;
  max-width: 453px;
}
@media (max-width: 1199px) {
  .home-news-section .container > .row > div .newsList > .row .item .itemImage .e-thumbnail {
    max-width: 340px;
  }
}
@media (max-width: 991px) {
  .home-news-section .container > .row > div .newsList > .row .item .itemImage .e-thumbnail {
    max-width: 260px;
  }
}
@media (max-width: 767px) {
  .home-news-section .container > .row > div .newsList > .row .item .itemImage .e-thumbnail {
    max-width: 100%;
  }
}
.home-news-section .container > .row > div .newsList > .row .item h3 {
  font-size: 22px;
  line-height: 28px;
  max-width: 80%;
}
@media (max-width: 767px) {
  .home-news-section .container > .row > div .newsList > .row .item h3 {
    max-width: 100%;
  }
}
.home-news-section .container > .row > div .newsList > .row .item h3 a {
  color: #282828 !important;
}
.home-news-section .container > .row > div .newsList > .row .item h3 a:hover {
  color: #FF8762 !important;
}
.home-news-section .container > .row > div .newsList > .row .item .e-date {
  text-transform: none;
  font-size: 16px;
  line-height: 24px;
}
.home-news-section .container > .row > div .newsList > .row .item .intro p {
  font-size: 16px;
  line-height: 20px;
  max-width: 80%;
  text-align: left;
}
@media (max-width: 767px) {
  .home-news-section .container > .row > div .newsList > .row .item .intro p {
    max-width: 100%;
  }
}

.home-blog-title {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .home-blog-title {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.home-blog-title .container {
  max-width: 100%;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .home-blog-title .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .home-blog-title .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .home-blog-title .container {
    width: 1152px;
  }
}
.home-blog-title .container > .row > div .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .home-blog-title .container > .row > div .content {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .home-blog-title .container > .row > div .content p {
    order: 1;
    text-align: right;
  }
}
.home-blog-title .container > .row > div .content p .btn {
  margin-left: 100px;
}
@media (max-width: 1199px) {
  .home-blog-title .container > .row > div .content p .btn {
    margin-left: 0;
  }
  .home-blog-title .container > .row > div .content p .btn:before {
    content: "";
    background: #282828;
    width: 218px;
    height: 1px;
    position: absolute;
    left: 272px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  .home-blog-title .container > .row > div .content p .btn:before {
    left: 0;
    width: 100px;
  }
}
.home-blog-title .container > .row > div .content h2 {
  display: inline-block;
  position: relative;
}
@media (max-width: 991px) {
  .home-blog-title .container > .row > div .content h2 {
    order: 0;
  }
}
.home-blog-title .container > .row > div .content h2:before {
  content: "";
  background: #282828;
  width: 218px;
  height: 1px;
  position: absolute;
  left: -245px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .home-blog-title .container > .row > div .content h2:before {
    width: 118px;
    left: -134px;
  }
}
@media (max-width: 991px) {
  .home-blog-title .container > .row > div .content h2:before {
    display: none;
  }
}

.line-home-blog {
  padding-bottom: 280px;
}
@media (max-width: 1199px) {
  .line-home-blog {
    padding-bottom: 200px;
  }
}
@media (max-width: 767px) {
  .line-home-blog {
    padding-bottom: 100px;
  }
}
.line-home-blog .container {
  max-width: 100%;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .line-home-blog .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-home-blog .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-home-blog .container {
    width: 1152px;
  }
}
@media (max-width: 767px) {
  .line-home-blog .container > .row > div .newsList > .row .item {
    margin-bottom: 60px;
  }
}
.line-home-blog .container > .row > div .newsList > .row .item .itemImage {
  margin-bottom: 30px;
}
.line-home-blog .container > .row > div .newsList > .row .item .itemImage .e-thumbnail {
  border-radius: 15px;
  margin-bottom: 0;
  max-width: 260px;
}
@media (max-width: 991px) {
  .line-home-blog .container > .row > div .newsList > .row .item .itemImage .e-thumbnail {
    max-width: 225px;
  }
}
@media (max-width: 767px) {
  .line-home-blog .container > .row > div .newsList > .row .item .itemImage .e-thumbnail {
    max-width: 100%;
  }
}
.line-home-blog .container > .row > div .newsList > .row .item h3 {
  font-size: 22px;
  line-height: 28px;
  max-width: 80%;
}
@media (max-width: 767px) {
  .line-home-blog .container > .row > div .newsList > .row .item h3 {
    max-width: 100%;
  }
}
.line-home-blog .container > .row > div .newsList > .row .item h3 a {
  color: #282828 !important;
}
.line-home-blog .container > .row > div .newsList > .row .item h3 a:hover {
  color: #FF8762 !important;
}
.line-home-blog .container > .row > div .newsList > .row .item .e-date {
  text-transform: none;
  font-size: 16px;
  line-height: 24px;
}
.line-home-blog .container > .row > div .newsList > .row .item .intro p {
  font-size: 16px;
  line-height: 20px;
  text-align: left;
}

.line-obtenir-title {
  padding-top: 75px;
  padding-bottom: 85px;
}
.line-obtenir-title .container > .row > div .content {
  position: relative;
}
.line-obtenir-title .container > .row > div .content h2 span {
  color: #fff;
}

.orange-linear-gradient {
  background: linear-gradient(45deg, #EE653B 0%, #FF8762 100%);
}

.line-comment {
  padding-top: 75px;
  padding-bottom: 100px;
}

.line-formule .container > .row > div .content ul {
  padding-left: 0 !important;
  list-style: none;
}
.line-formule .container > .row > div .content ul li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .line-formule .container > .row > div .content ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
.line-formule .container > .row > div .content ul li:before {
  display: none !important;
}
.line-formule .container > .row > div .content ul li {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
  padding-bottom: 35px !important;
  padding-left: 80px !important;
  border-bottom: 1px solid #6B82A4;
  margin-bottom: 23px !important;
  position: relative;
}
@media (max-width: 767px) {
  .line-formule .container > .row > div .content ul li {
    font-size: 19px;
    line-height: 25px;
  }
}
.line-formule .container > .row > div .content ul li:before {
  content: "";
  display: block !important;
  background-image: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_l-approche/checkmark.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 53px;
  height: 53px;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 10;
}

.line-prices {
  padding-top: 135px;
}
.line-prices .container > .row > div .content {
  position: relative;
  height: 314px;
  border-radius: 40px;
  padding: 45px 30px;
  text-align: center;
}
@media (max-width: 991px) {
  .line-prices .container > .row > div .content {
    height: auto;
  }
}
.line-prices .container > .row > div .content h2 {
  font-size: 82px;
  line-height: 83px;
  padding-bottom: 30px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .line-prices .container > .row > div .content h2 {
    font-size: 54px;
    line-height: 58px;
  }
}
.line-prices .container > .row > div .content h2 span {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-prices .container > .row > div .content h2 span {
    font-size: 19px;
    line-height: 25px;
  }
}
.line-prices .container > .row > div .content h3 {
  margin-bottom: 5px;
}
.line-prices .container > .row > div:first-child .content {
  background: #D9FFE4;
}
.line-prices .container > .row > div:first-child .content h2 {
  border-bottom: 1px solid #B7C4D7;
}
.line-prices .container > .row > div:first-child .content:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_devenir-membre/first-price.svg);
  background-repeat: no-repeat;
  width: 47px;
  height: 55px;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
.line-prices .container > .row > div:nth-child(2) .content {
  background: #EE653B;
}
.line-prices .container > .row > div:nth-child(2) .content h2 {
  color: #fff;
  border-bottom: 1px solid #FFF4F2;
}
.line-prices .container > .row > div:nth-child(2) .content:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_devenir-membre/seconda-price.svg);
  background-repeat: no-repeat;
  width: 88px;
  height: 56px;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
.line-prices .container > .row > div:last-child .content {
  background: #6B82A4;
}
.line-prices .container > .row > div:last-child .content h2 {
  color: #fff;
  border-bottom: 1px solid #E0E7F4;
}
.line-prices .container > .row > div:last-child .content:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/icone-entreprise.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 183px;
  height: 55px;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .line-prices .container > .row > div:not(:last-child) {
    margin-bottom: 130px;
  }
}

.new-line-prices {
  padding-top: 135px;
}
.new-line-prices .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}
@media (max-width: 1199px) {
  .new-line-prices .container > .row > div .content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 120px 60px;
  }
}
@media (max-width: 767px) {
  .new-line-prices .container > .row > div .content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.new-line-prices .container > .row > div .content .price-item {
  position: relative;
  height: 330px;
  border-radius: 40px;
  padding: 45px 18px;
  text-align: center;
}
@media (max-width: 991px) {
  .new-line-prices .container > .row > div .content .price-item {
    height: auto;
  }
}
.new-line-prices .container > .row > div .content .price-item h2 {
  font-size: 65px;
  line-height: 65px;
  padding-bottom: 30px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .new-line-prices .container > .row > div .content .price-item h2 {
    font-size: 54px;
    line-height: 58px;
  }
}
.new-line-prices .container > .row > div .content .price-item h2 span {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .new-line-prices .container > .row > div .content .price-item h2 span {
    font-size: 19px;
    line-height: 25px;
  }
}
.new-line-prices .container > .row > div .content .price-item h3 {
  margin-bottom: 5px;
}
.new-line-prices .container > .row > div .content .price-item:first-child {
  background: #D9FFE4;
}
.new-line-prices .container > .row > div .content .price-item:first-child h2 {
  border-bottom: 1px solid #B7C4D7;
}
.new-line-prices .container > .row > div .content .price-item:first-child:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_devenir-membre/first-price.svg);
  background-repeat: no-repeat;
  width: 47px;
  height: 55px;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
.new-line-prices .container > .row > div .content .price-item:nth-child(2) {
  background: #EE653B;
}
.new-line-prices .container > .row > div .content .price-item:nth-child(2) h2 {
  color: #fff;
  border-bottom: 1px solid #FFF4F2;
}
.new-line-prices .container > .row > div .content .price-item:nth-child(2):before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_devenir-membre/seconda-price.svg);
  background-repeat: no-repeat;
  width: 88px;
  height: 56px;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
.new-line-prices .container > .row > div .content .price-item:nth-child(3) {
  background: #6B82A4;
}
.new-line-prices .container > .row > div .content .price-item:nth-child(3) h2 {
  color: #fff;
  border-bottom: 1px solid #E0E7F4;
}
.new-line-prices .container > .row > div .content .price-item:nth-child(3):before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/icone-entreprise.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 183px;
  height: 55px;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
.new-line-prices .container > .row > div .content .price-item:last-child {
  background: #282828;
}
.new-line-prices .container > .row > div .content .price-item:last-child h2 {
  color: #E0E7F4;
  border-bottom: 1px solid #E0E7F4;
}
.new-line-prices .container > .row > div .content .price-item:last-child h3, .new-line-prices .container > .row > div .content .price-item:last-child p {
  color: #fff;
}
.new-line-prices .container > .row > div .content .price-item:last-child:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_devenir-membre/grandes-organisations.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 180px;
  height: 69px;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .new-line-prices .container > .row > div:not(:last-child) {
    margin-bottom: 130px;
  }
}

.mouvement-intro {
  background: #E0E7F4;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .mouvement-intro {
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .mouvement-intro .container {
    width: 93%;
    margin-left: auto;
    margin-right: 0;
  }
}
.mouvement-intro .container > .row > div .content {
  max-width: 78%;
  border-radius: 40px;
  background: #FFF4F2;
  padding: 57px 144px 70px 60px;
  position: relative;
  z-index: 4;
}
@media (max-width: 991px) {
  .mouvement-intro .container > .row > div .content {
    max-width: 95%;
  }
}
@media (max-width: 767px) {
  .mouvement-intro .container > .row > div .content {
    max-width: 100%;
    padding: 80px 30px 45px;
  }
}
.mouvement-intro .container > .row > div .content:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_ecosystene/icone-fleches-rond.svg);
  background-repeat: no-repeat;
  width: 127px;
  height: 127px;
  position: absolute;
  top: 50%;
  right: -12%;
  transform: translateY(-50%);
  animation: rotate-circle 5s linear infinite;
}
@media (max-width: 991px) {
  .mouvement-intro .container > .row > div .content:after {
    right: -16%;
  }
}
@media (max-width: 767px) {
  .mouvement-intro .container > .row > div .content:after {
    right: 10%;
    top: 0;
  }
}

.section-mouvement {
  padding-bottom: 65px;
}
@media (max-width: 767px) {
  .section-mouvement {
    padding-bottom: 15px;
  }
}
.section-mouvement .container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.section-mouvement .container > .row {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .section-mouvement .container > .row {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .section-mouvement .container > .row > div:first-child .content img {
    max-width: 180px;
    margin-bottom: 35px;
  }
}
@media (min-width: 768px) {
  .section-mouvement .container > .row > div:last-child h2 {
    margin-bottom: 45px;
  }
}
.section-mouvement .container > .row > div:last-child p {
  max-width: 90%;
  margin-bottom: 30px;
}
.section-mouvement.last {
  padding-bottom: 150px;
}

.thinktan-projets-title {
  padding-top: 70px;
  padding-bottom: 35px;
}
.thinktan-projets-title .container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.thinktank-projets .container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.thinktank-projets .container > .row > div .panel .panel-body img {
  padding-top: 45px;
}
.thinktank-projets .container > .row > div .panel .panel-body h3 {
  padding-bottom: 45px;
}

.line-membres-fondateurs {
  padding-top: 85px;
  padding-bottom: 200px;
}
.line-membres-fondateurs .container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.line-membres-fondateurs .container > .row > div h2 {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .line-membres-fondateurs .container > .row > div h2 {
    max-width: 50%;
  }
}

.thinktank-intro2 {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .thinktank-intro2 .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .thinktank-intro2 .container > .row > div:first-child {
    width: 40%;
  }
}
@media (max-width: 991px) {
  .thinktank-intro2 .container > .row > div:first-child {
    width: 100%;
    margin-bottom: 45px;
  }
}
.thinktank-intro2 .container > .row > div:first-child .content {
  text-align: center;
}
@media (max-width: 767px) {
  .thinktank-intro2 .container > .row > div:first-child .content {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .thinktank-intro2 .container > .row > div:first-child .content img {
    max-width: 93px;
  }
}
@media (min-width: 768px) {
  .thinktank-intro2 .container > .row > div:last-child {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .thinktank-intro2 .container > .row > div:last-child {
    width: 100%;
  }
}
.thinktank-intro2 .container > .row > div:last-child .content {
  border-left: 6px solid #FF8762;
}
@media (min-width: 992px) {
  .thinktank-intro2 .container > .row > div:last-child .content {
    padding-left: 90px;
  }
}
@media (max-width: 991px) {
  .thinktank-intro2 .container > .row > div:last-child .content {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .thinktank-intro2 .container > .row > div:last-child .content {
    padding-left: 0;
    padding-top: 35px;
    border-left: none;
    border-top: 6px solid #FF8762;
  }
}

.line-projets-recherche {
  padding-top: 90px;
}
.line-projets-recherche .container {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 85px;
  border-bottom: 1px solid #6B82A4;
}
@media (min-width: 992px) {
  .line-projets-recherche .container {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .line-projets-recherche .container {
    padding-bottom: 0;
  }
}
.line-projets-recherche .container > .row > div .newsList > .row .item {
  display: grid;
  grid-template-columns: 30% 60%;
  grid-template-rows: auto auto auto;
  gap: 0px 105px;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .line-projets-recherche .container > .row > div .newsList > .row .item {
    gap: 0 45px;
  }
}
@media (max-width: 767px) {
  .line-projets-recherche .container > .row > div .newsList > .row .item {
    display: flex;
    flex-direction: column;
  }
}
.line-projets-recherche .container > .row > div .newsList > .row .item .itemImage {
  grid-column: 1;
  grid-row: span 3;
}
@media (max-width: 767px) {
  .line-projets-recherche .container > .row > div .newsList > .row .item .itemImage img {
    max-width: 190px;
  }
}
.line-projets-recherche .container > .row > div .newsList > .row .item h3 {
  grid-row: 1;
  grid-column: 2;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .line-projets-recherche .container > .row > div .newsList > .row .item h3 {
    margin-bottom: 20px;
  }
}
.line-projets-recherche .container > .row > div .newsList > .row .item .intro {
  grid-row: 2;
  grid-column: 2;
}
.line-projets-recherche .container > .row > div .newsList > .row .item .intro p:last-child {
  margin-top: 50px;
}
.line-projets-recherche .container > .row > div .newsList > .row .item .actions {
  grid-row: 3;
  grid-column: 2;
}

.projets-cta {
  padding-top: 260px;
  padding-bottom: 250px;
}
@media (max-width: 767px) {
  .projets-cta {
    padding-top: 165px;
  }
}
.projets-cta .container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.projets-cta .container > .row > div .content {
  text-align: center;
}
@media (max-width: 767px) {
  .projets-cta .container > .row > div:last-child {
    padding-top: 145px;
  }
}

.line-communautes-title {
  padding-top: 100px;
  padding-bottom: 120px;
}
.line-communautes-title .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-communautes-title .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-communautes-title .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-communautes-title .container {
    width: 1152px;
  }
}

.line-communaute-guides {
  padding-top: 100px;
  padding-bottom: 115px;
}
.line-communaute-guides .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-communaute-guides .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-communaute-guides .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-communaute-guides .container {
    width: 1152px;
  }
}
.line-communaute-guides .container > .row > div h2 {
  margin-bottom: 55px;
  max-width: 60%;
}
@media (max-width: 767px) {
  .line-communaute-guides .container > .row > div h2 {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 1199px) {
  .line-communaute-guides .container > .row > div .newsList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .line-communaute-guides .container > .row > div .newsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .line-communaute-guides .container > .row > div .newsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .line-communaute-guides .container > .row > div .newsList > .row .item {
    text-align: center;
  }
}
.line-communaute-guides .container > .row > div .newsList > .row .item .itemImage img {
  max-width: 253px;
  border-radius: 50%;
}
.line-communaute-guides .container > .row > div .newsList > .row .item > h3 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  font-weight: 700;
}
@media (max-width: 767px) {
  .line-communaute-guides .container > .row > div .newsList > .row .item > h3 {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-communaute-guides .container > .row > div .newsList > .row .item .intro p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-communaute-guides .container > .row > div .newsList > .row .item .intro p {
    font-size: 16px;
    line-height: 20px;
  }
}

.line-comm-pratique-liste {
  padding-bottom: 100px;
}
.line-comm-pratique-liste .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-comm-pratique-liste .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-comm-pratique-liste .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-comm-pratique-liste .container {
    width: 1152px;
  }
}
.line-comm-pratique-liste .container > .row > div .eventsList {
  gap: 110px 40px;
}
@media (max-width: 991px) {
  .line-comm-pratique-liste .container > .row > div .eventsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .line-comm-pratique-liste .container > .row > div .eventsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .line-comm-pratique-liste .container > .row > div .eventsList > .row {
    margin-left: auto;
    margin-right: auto;
  }
}
.line-comm-pratique-liste .container > .row > div .eventsList > .row .item {
  background: #fff;
  width: 353px;
  height: 252px;
  border-radius: 40px;
  position: relative;
  padding-top: 96px;
  text-align: center;
}
@media (max-width: 1199px) {
  .line-comm-pratique-liste .container > .row > div .eventsList > .row .item {
    width: 278px;
    height: 242px;
  }
}
.line-comm-pratique-liste .container > .row > div .eventsList > .row .item > a:first-of-type {
  display: inline-block;
  width: 143px;
  height: 143px;
  position: absolute;
  top: -74px;
  left: 50%;
  transform: translateX(-50%);
}
.line-comm-pratique-liste .container > .row > div .eventsList > .row .item > a:first-of-type img {
  width: 143px;
  height: 143px !important;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.line-comm-pratique-liste .container > .row > div .eventsList > .row .item h3 {
  color: #282828;
  text-align: center;
}
.line-comm-pratique-liste .container > .row > div .eventsList > .row .item .itemInfos {
  display: none;
}
.line-comm-pratique-liste .container > .row > div .eventsList > .row .item hr {
  display: none;
}

@media (max-width: 767px) {
  .line-partenaire {
    padding-top: 30px !important;
    padding-bottom: 60px;
  }
}
.line-partenaire .container {
  max-width: 100%;
  margin: auto;
  padding-bottom: 80px;
  border-bottom: 1px solid #6B82A4;
}
@media (min-width: 768px) {
  .line-partenaire .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-partenaire .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-partenaire .container {
    width: 1152px;
  }
}
@media (max-width: 767px) {
  .line-partenaire .container > .row > div:first-child {
    margin-bottom: 45px;
  }
}
.line-partenaire .container > .row > div:first-child .content {
  background: #fff;
  border-radius: 40px;
  width: 351px;
  height: 252px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .line-partenaire .container > .row > div:first-child .content {
    width: 275px;
  }
}
@media (min-width: 768px) {
  .line-partenaire .container > .row > div:last-child .content {
    padding-left: 90px;
  }
}
.line-partenaire .container > .row > div:last-child .content h2 {
  margin-bottom: 30px;
}

.line-ambassadeurs {
  padding-top: 100px;
}
.line-ambassadeurs .container {
  max-width: 100%;
  margin: auto;
  padding-bottom: 85px;
  border-bottom: 1px solid #6B82A4;
}
@media (min-width: 768px) {
  .line-ambassadeurs .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-ambassadeurs .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-ambassadeurs .container {
    width: 1152px;
  }
}
.line-ambassadeurs .container > .row > div .newsList > .row .item {
  display: flex;
}
@media (max-width: 767px) {
  .line-ambassadeurs .container > .row > div .newsList > .row .item {
    flex-direction: column;
  }
}
.line-ambassadeurs .container > .row > div .newsList > .row .item .itemImage {
  width: 40%;
}
@media (max-width: 767px) {
  .line-ambassadeurs .container > .row > div .newsList > .row .item .itemImage {
    width: 100%;
  }
}
.line-ambassadeurs .container > .row > div .newsList > .row .item .intro {
  position: relative;
  width: 60%;
  padding-left: 80px;
}
@media (max-width: 767px) {
  .line-ambassadeurs .container > .row > div .newsList > .row .item .intro {
    width: 100%;
    padding-left: 0;
  }
}
.line-ambassadeurs .container > .row > div .newsList > .row .item .intro h2 {
  margin-bottom: 0;
}
.line-ambassadeurs .container > .row > div .newsList > .row .item .intro h6 {
  margin-bottom: 25px;
}
.line-ambassadeurs .container > .row > div .newsList > .row .item .intro table.ambassadeur {
  margin-top: 35px;
}
.line-ambassadeurs .container > .row > div .newsList > .row .item .intro table.ambassadeur tbody tr td:first-child p {
  margin-bottom: 0;
}
.line-ambassadeurs .container > .row > div .newsList > .row .item .intro table.ambassadeur tbody tr td:first-child p .btn {
  margin-top: 0;
  margin-bottom: 0;
}
.line-ambassadeurs .container > .row > div .newsList > .row .item .intro table.ambassadeur tbody tr td:last-child ul.social {
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .line-ambassadeurs .container > .row > div .newsList > .row .item .intro table.ambassadeur tbody tr td:last-child ul.social li a {
    width: 53px;
    height: 53px;
  }
}
.line-ambassadeurs .container > .row > div .newsList > .row:not(:last-child) .item {
  margin-bottom: 125px;
}

.piliers-title {
  padding-top: 275px;
  padding-bottom: 140px;
}
@media (max-width: 767px) {
  .piliers-title {
    padding-top: 225px;
  }
}
.piliers-title .container > .row > div .content {
  position: relative;
}
.piliers-title .container > .row > div .content:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_shapes/quatre.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 301px;
  height: 340px;
  position: absolute;
  top: -155px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .piliers-title .container > .row > div .content:before {
    width: 195px;
    top: -92px;
  }
}
.piliers-title .container > .row > div .content h2 {
  position: relative;
  z-index: 3;
}

.line-piliers {
  padding-bottom: 145px;
}
.line-piliers .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-piliers .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-piliers .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-piliers .container {
    width: 1152px;
  }
}
.line-piliers .container > .row > div .newsList {
  gap: 100px 30px;
}

.line-culture {
  padding-top: 70px;
  padding-bottom: 90px;
}
.line-culture .content {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .line-culture .content {
    max-width: 50%;
  }
}
.line-culture .content img {
  margin-bottom: 15px;
}
.line-culture .content h2 {
  margin-bottom: 30px;
}

.line-demarche-title {
  padding-top: 110px;
  padding-bottom: 120px;
}
.line-demarche-title .content h2 {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-demarche-title .content h2 br {
    display: none !important;
  }
}
.line-demarche-title .content p {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .line-demarche-title .content p {
    max-width: 50%;
  }
}

.line-demarche {
  padding-bottom: 300px;
}
@media (max-width: 991px) {
  .line-demarche {
    padding-bottom: 100px;
  }
}
.line-demarche .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-demarche .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-demarche .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-demarche .container {
    width: 1152px;
  }
}
.line-demarche .container .newsList {
  gap: 0 25px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-demarche .container .newsList {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .line-demarche .container .newsList {
    gap: 60px;
  }
}

.line-smet-pourquoi {
  padding-top: 110px;
  padding-bottom: 70px;
}
.line-smet-pourquoi .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-smet-pourquoi .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-smet-pourquoi .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-smet-pourquoi .container {
    width: 1152px;
  }
}
.line-smet-pourquoi .container > .row > div:last-child .content {
  padding-top: 60px;
}
@media (min-width: 992px) {
  .line-smet-pourquoi .container > .row > div:last-child .content {
    padding-left: 100px;
  }
}

.line-smet-pourquoi-dropdown {
  padding-bottom: 370px;
}
@media (max-width: 767px) {
  .line-smet-pourquoi-dropdown {
    padding-bottom: 435px;
  }
}
.line-smet-pourquoi-dropdown .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-smet-pourquoi-dropdown .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-smet-pourquoi-dropdown .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-smet-pourquoi-dropdown .container {
    width: 1152px;
  }
}

.line-passer-a-laction {
  padding-bottom: 250px;
}
.line-passer-a-laction .container > .row > div .content p {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-passer-a-laction .container > .row > div .content p {
    width: 100%;
  }
}

.line-box-cta {
  padding-top: 90px;
  padding-bottom: 120px;
}
.line-box-cta .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-box-cta .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-box-cta .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-box-cta .container {
    width: 1152px;
  }
}
.line-box-cta .container > .row > div .content h2 {
  color: #fff;
  margin-bottom: 45px;
}
.line-box-cta .container > .row > div .content .box-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 15px;
}
@media (max-width: 991px) {
  .line-box-cta .container > .row > div .content .box-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .line-box-cta .container > .row > div .content .box-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.line-box-cta .container > .row > div .content .box-container .box-cta {
  background: #fff;
  border-radius: 40px;
  padding: 45px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.line-box-cta .container > .row > div .content .box-container .box-cta h3, .line-box-cta .container > .row > div .content .box-container .box-cta p {
  text-align: center;
}
.line-box-cta .container > .row > div .content .box-container .box-cta .btn {
  margin-bottom: 0;
}

.line-niveaux {
  background: linear-gradient(45deg, #EE653B 0%, #FF8762 100%);
  padding-top: 110px;
  padding-bottom: 90px;
}
.line-niveaux .line-niveaux-title {
  padding-bottom: 75px;
}
.line-niveaux .line-niveaux-title .container > .row > div .content {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .line-niveaux .line-niveaux-title .container > .row > div .content {
    max-width: 65%;
  }
}
.line-niveaux .line-niveaux-title .container > .row > div .content h2 {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-niveaux .line-niveaux-title .container > .row > div .content h2 br {
    display: none !important;
  }
}
.line-niveaux .line-niveaux-dropdown .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-niveaux .line-niveaux-dropdown .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-niveaux .line-niveaux-dropdown .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-niveaux .line-niveaux-dropdown .container {
    width: 1152px;
  }
}
@media (max-width: 991px) {
  .line-niveaux .line-niveaux-dropdown .container > .row > div .newsList > .row {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .line-niveaux .line-niveaux-dropdown .container > .row > div .newsList > .row .item table.accordeon {
    width: 80% !important;
    margin-left: auto;
    margin-right: auto;
  }
}

.nos-services-titles {
  padding-top: 95px;
}
@media (max-width: 991px) {
  .nos-services-titles {
    padding-bottom: 60px;
  }
}
.nos-services-titles .content {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .nos-services-titles .content {
    max-width: 65%;
  }
}
.nos-services-titles .content h2 {
  margin-bottom: 45px;
}
.nos-services-titles .content h3 {
  margin-bottom: 20px;
}
.nos-services-titles .content p {
  margin-bottom: 15px;
}

.line-services-faq {
  padding-bottom: 120px;
}
.line-services-faq .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-services-faq .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-services-faq .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-services-faq .container {
    width: 1152px;
  }
}
.line-services-faq .container .panel .panel-heading, .line-services-faq .container .panel .panel-body {
  background: #E0E7F4 !important;
}
.line-services-faq .container .panel a.news-accordion-header {
  color: #282828 !important;
}

.line-la-norme {
  padding-top: 90px;
  padding-bottom: 75px;
}
.line-la-norme .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-la-norme .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-la-norme .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-la-norme .container {
    width: 1152px;
  }
}
@media (max-width: 767px) {
  .line-la-norme .container > .row {
    display: flex;
    flex-direction: column;
  }
}
.line-la-norme .container > .row > div:first-child {
  padding-right: 110px;
}
@media (max-width: 767px) {
  .line-la-norme .container > .row > div:first-child {
    order: 1;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .line-la-norme .container > .row > div:first-child .content {
    text-align: center;
  }
}
.line-la-norme .container > .row > div:first-child .content h2 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .line-la-norme .container > .row > div:first-child .content h2 {
    margin-bottom: 30px;
  }
}
.line-la-norme .container > .row > div:first-child .content p {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .line-la-norme .container > .row > div:last-child {
    order: 0;
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .line-la-norme .container > .row > div:last-child .content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .line-la-norme .container > .row > div:last-child .content img {
    max-width: 50%;
  }
}

.line-histoires {
  padding-top: 80px;
  padding-bottom: 75px;
}
.line-histoires .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-histoires .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-histoires .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-histoires .container {
    width: 1152px;
  }
}
@media (max-width: 767px) {
  .line-histoires .container > .row {
    display: flex;
    flex-direction: column;
  }
}
.line-histoires .container > .row > div:first-child {
  padding-right: 110px;
}
@media (max-width: 767px) {
  .line-histoires .container > .row > div:first-child {
    padding-right: 0;
    order: 1;
  }
}
.line-histoires .container > .row > div:first-child .content h2 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .line-histoires .container > .row > div:first-child .content h2 {
    margin-bottom: 30px;
  }
}
.line-histoires .container > .row > div:first-child .content p:first-of-type {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .line-histoires .container > .row > div:last-child {
    order: 0;
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .line-histoires .container > .row > div:last-child .content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .line-histoires .container > .row > div:last-child .content img {
    max-width: 50%;
  }
}

.line-pret-title {
  padding-top: 90px;
}
.line-pret-title .content {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .line-pret-title .content {
    max-width: 65%;
  }
}
.line-pret-title .content h2, .line-pret-title .content h3 {
  color: #ffffff;
  margin-bottom: 40px;
}

.line-pret {
  padding-top: 110px;
  padding-bottom: 110px;
}
.line-pret .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-pret .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-pret .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-pret .container {
    width: 1152px;
  }
}
.line-pret .container > .row > div .content {
  background: #fff;
  border-radius: 40px;
  padding: 100px 60px 30px;
  position: relative;
}
@media (min-width: 992px) {
  .line-pret .container > .row > div .content {
    height: 435px;
  }
}
@media (max-width: 767px) {
  .line-pret .container > .row > div .content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.line-pret .container > .row > div .content img {
  display: block;
  position: absolute;
  top: -50px;
  left: 35%;
}
@media (max-width: 991px) {
  .line-pret .container > .row > div .content img {
    left: 28%;
  }
}
@media (max-width: 767px) {
  .line-pret .container > .row > div:first-child {
    margin-bottom: 100px;
  }
}

.line-laureat-title {
  padding-top: 75px;
}
.line-laureat-title .container {
  max-width: 100%;
  margin: auto;
  padding-bottom: 45px;
  border-bottom: 1px solid #EE653B;
}
@media (min-width: 768px) {
  .line-laureat-title .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-laureat-title .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-laureat-title .container {
    width: 1152px;
  }
}
.line-laureat-title .container .content h2 {
  margin-top: 30px;
}
.line-laureat-title .container .content h2 span {
  color: #fff;
}

.line-video-laureat .container {
  max-width: 100%;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 60px;
  border-bottom: 1px solid #EE653B;
}
@media (min-width: 768px) {
  .line-video-laureat .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-video-laureat .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-video-laureat .container {
    width: 1152px;
  }
}
.line-video-laureat .container > .row {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .line-video-laureat .container > .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-video-laureat .container > .row > div:first-child {
    order: 1;
    width: 100%;
  }
}
.line-video-laureat .container > .row > div:first-child .content {
  padding-right: 100px;
}
@media (max-width: 991px) {
  .line-video-laureat .container > .row > div:first-child .content {
    text-align: center;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .line-video-laureat .container > .row > div:last-child {
    order: 0;
    width: 100%;
    margin-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .line-video-laureat .container > .row > div:last-child .mod-article__intro {
    text-align: center;
  }
}
.line-video-laureat .container > .row > div:last-child .mod-article__intro img {
  cursor: pointer;
}
.line-video-laureat .container > .row > div:last-child .mod-article__intro > div {
  display: none;
}

.line-laureats-ctas {
  padding-bottom: 60px;
}
.line-laureats-ctas .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-laureats-ctas .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-laureats-ctas .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-laureats-ctas .container {
    width: 1152px;
  }
}
@media (max-width: 991px) {
  .line-laureats-ctas .container > .row > div .content p {
    text-align: center !important;
  }
}
.line-laureats-ctas .container > .row > div .content p .btn {
  margin-right: 0;
}

.line-parrains {
  padding-top: 100px;
  padding-bottom: 45px;
}
.line-parrains .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-parrains .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-parrains .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-parrains .container {
    width: 1152px;
  }
}
.line-parrains .container > .row > div .content h1 {
  margin-bottom: 45px;
}
.line-parrains .container > .row > div .content ul {
  padding-left: 0 !important;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1199px) {
  .line-parrains .container > .row > div .content ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .line-parrains .container > .row > div .content ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.line-parrains .container > .row > div .content ul li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .line-parrains .container > .row > div .content ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
.line-parrains .container > .row > div .content ul li:before {
  display: none !important;
}

.line-jury-dropdown {
  padding-bottom: 127px;
}
.line-jury-dropdown .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-jury-dropdown .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-jury-dropdown .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-jury-dropdown .container {
    width: 1152px;
  }
}
.line-jury-dropdown .container .panel .panel-heading, .line-jury-dropdown .container .panel .panel-body {
  background: #A3EBB8;
}
.line-jury-dropdown .container .panel .panel-heading a {
  color: #282828 !important;
}

.line-prix-question {
  padding-top: 100px;
  padding-bottom: 95px;
}
.line-prix-question .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-prix-question .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-prix-question .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-prix-question .container {
    width: 1152px;
  }
}
.line-prix-question .container > .row {
  position: relative;
}
.line-prix-question .container > .row:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_l-approche/pourquoi-shape.svg);
  background-repeat: no-repeat;
  width: 445px;
  height: 534px;
  position: absolute;
  top: 35px;
  left: 4%;
}
@media (max-width: 767px) {
  .line-prix-question .container > .row:before {
    background-size: contain;
    max-width: 280px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  .line-prix-question .container > .row > div:first-child .content h2 {
    margin-bottom: 45px;
  }
}
.line-prix-question .container > .row > div:last-child .content ul {
  padding-left: 0 !important;
  list-style: none;
}
.line-prix-question .container > .row > div:last-child .content ul li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .line-prix-question .container > .row > div:last-child .content ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
.line-prix-question .container > .row > div:last-child .content ul li:before {
  display: none !important;
}
.line-prix-question .container > .row > div:last-child .content ul li {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: initial;
  padding-bottom: 35px !important;
  padding-left: 96px !important;
  border-bottom: 1px solid #6B82A4;
  margin-bottom: 23px !important;
  position: relative;
}
@media (max-width: 767px) {
  .line-prix-question .container > .row > div:last-child .content ul li {
    padding-left: 70px !important;
  }
}
@media (max-width: 767px) {
  .line-prix-question .container > .row > div:last-child .content ul li {
    font-size: 19px;
    line-height: 25px;
  }
}
.line-prix-question .container > .row > div:last-child .content ul li:before {
  content: "";
  display: block !important;
  background-image: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_l-approche/checkmark.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 53px;
  height: 53px;
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 10;
}
.line-prix-question .container > .row > div:last-child .content p {
  text-align: right;
}
@media (max-width: 767px) {
  .line-prix-question .container > .row > div:last-child .content p {
    display: flex;
    flex-direction: column;
  }
}
.line-prix-question .container > .row > div:last-child .content p .btn {
  margin-right: 40px;
}

@media (max-width: 767px) {
  .title-portraits .container > .row > div:last-child .content p {
    text-align: left !important;
  }
}

.line-portrait-laureat {
  margin-bottom: 87px;
}
.line-portrait-laureat .container {
  padding-bottom: 88px;
  border-bottom: 1px solid #6B82A4;
}
.line-portrait-laureat .container .news-mosaic {
  gap: 60px 167px;
}
@media (max-width: 1199px) {
  .line-portrait-laureat .container .news-mosaic {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .line-portrait-laureat .container .news-mosaic {
    gap: 60px;
  }
}

.line-insription-parrains {
  padding-bottom: 85px;
}
.line-insription-parrains .container > .row > div h2 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #6B82A4;
}
@media (max-width: 767px) {
  .line-insription-parrains .container > .row > div h2 {
    font-size: 16px;
    line-height: 24px;
  }
}
.line-insription-parrains .container > .row > div .content ul {
  padding-left: 0 !important;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
@media (max-width: 767px) {
  .line-insription-parrains .container > .row > div .content ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.line-insription-parrains .container > .row > div .content ul li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .line-insription-parrains .container > .row > div .content ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
.line-insription-parrains .container > .row > div .content ul li:before {
  display: none !important;
}

.line-inscription-faq {
  padding-top: 100px;
  padding-bottom: 100px;
}
.line-inscription-faq .container > .row > div h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.line-inscription-faq .container > .row > div .panel .panel-heading a.news-accordion-header {
  color: #fff;
}
.line-inscription-faq .container > .row > div .panel .panel-body .news-accordion-content p, .line-inscription-faq .container > .row > div .panel .panel-body .news-accordion-content ul li {
  color: #fff !important;
}

.line-apropos-dbltext {
  padding-bottom: 30px;
}
.line-apropos-dbltext .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-apropos-dbltext .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-apropos-dbltext .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-apropos-dbltext .container {
    width: 1152px;
  }
}
.line-apropos-dbltext .container > .row > div:first-child .content {
  max-width: 99%;
}
.line-apropos-dbltext .container > .row > div:last-child .content {
  padding-left: 90px;
}
@media (max-width: 991px) {
  .line-apropos-dbltext .container > .row > div:last-child .content {
    padding-left: 0;
  }
}

.line-oe {
  padding-top: 450px;
}
@media (max-width: 767px) {
  .line-oe {
    padding-top: 350px;
  }
}
.line-oe .container-fluid {
  position: relative;
}
.line-oe .container-fluid > .row > div .content {
  text-align: right;
}
.line-oe .container-fluid > .row > div .content img {
  position: absolute;
  right: 0;
  bottom: -65px;
}
@media (max-width: 767px) {
  .line-oe .container-fluid > .row > div .content img {
    display: none;
  }
}

.axes-title {
  padding-top: 110px;
  padding-bottom: 140px;
}
@media (max-width: 767px) {
  .axes-title {
    padding-bottom: 90px;
  }
}
.axes-title .container > .row > div .content {
  position: relative;
}
.axes-title .container > .row > div .content:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_apropos/trois.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 261px;
  height: 351px;
  position: absolute;
  top: -155px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .axes-title .container > .row > div .content:before {
    width: 175px;
  }
}
.axes-title .container > .row > div .content h2 {
  position: relative;
  z-index: 3;
}

.line-axes {
  padding-top: 60px;
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .line-axes {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .line-axes .newsList > .row table tbody tr td h3 br {
    display: block !important;
  }
}
.line-axes .newsList > .row:first-child table tbody tr:first-child td img {
  top: -80px;
}
.line-axes .newsList > .row:nth-child(2) table tbody tr:first-child td img {
  top: -80px;
}
.line-axes .newsList > .row:nth-child(3) table tbody tr:first-child td img {
  top: -60px;
}

.line-origine-title {
  padding-top: 230px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .line-origine-title {
    padding-top: 130px;
  }
}
.line-origine-title:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_apropos/img-groupe-entreprise-sante.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 608px;
  height: 594px;
  position: absolute;
  top: -100px;
  left: 60px;
  z-index: 0;
}
@media (max-width: 767px) {
  .line-origine-title:before {
    width: 290px;
    top: 0;
  }
}
.line-origine-title .content {
  text-align: center;
}
.line-origine-title .content h4 {
  display: inline-block;
  max-width: 55%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .line-origine-title .content h4 {
    max-width: 100%;
  }
}

.line-origine {
  padding-top: 55px;
  padding-bottom: 110px;
}
.line-origine .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-origine .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-origine .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-origine .container {
    width: 1152px;
  }
}
@media (min-width: 768px) {
  .line-origine .container > .row > div:first-child {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .line-origine .container > .row > div:first-child {
    margin-bottom: 45px;
  }
}
.line-origine .container > .row > div:first-child .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-origine .container > .row > div:first-child .content {
    text-align: left;
  }
}
.line-origine .container > .row > div:first-child .content img {
  border-radius: 50%;
}
@media (min-width: 768px) {
  .line-origine .container > .row > div:last-child {
    width: 70%;
    padding-left: 70px;
  }
}
.line-origine .container > .row > div:last-child .content h5 {
  font-weight: 700;
  margin-bottom: 0;
}
.line-origine .container > .row > div:last-child .content p {
  margin-bottom: 30px;
}

.line-valeurs {
  padding-top: 120px;
}
.line-valeurs .container {
  max-width: 100%;
  margin: auto;
  padding-bottom: 85px;
  border-bottom: 1px solid #E0E7F4;
}
@media (min-width: 768px) {
  .line-valeurs .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-valeurs .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-valeurs .container {
    width: 1152px;
  }
}
@media (max-width: 991px) {
  .line-valeurs .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-valeurs .container > .row > div:first-child {
    width: 100%;
    margin-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .line-valeurs .container > .row > div:first-child .content {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .line-valeurs .container > .row > div:first-child .content h1 br {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .line-valeurs .container > .row > div:last-child {
    width: 100%;
  }
}
.line-valeurs .container > .row > div:last-child .content ul {
  padding-left: 0 !important;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 100px;
}
@media (max-width: 991px) {
  .line-valeurs .container > .row > div:last-child .content ul {
    gap: 45px;
  }
}
.line-valeurs .container > .row > div:last-child .content ul li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .line-valeurs .container > .row > div:last-child .content ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
.line-valeurs .container > .row > div:last-child .content ul li:before {
  display: none !important;
}
.line-valeurs .container > .row > div:last-child .content ul li {
  text-align: center;
}
.line-valeurs .container > .row > div:last-child .content ul li img {
  margin-bottom: 30px;
}

.line-le-mouvement {
  padding-top: 78px;
}
.line-le-mouvement .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-le-mouvement .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-le-mouvement .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-le-mouvement .container {
    width: 1152px;
  }
}
@media (max-width: 991px) {
  .line-le-mouvement .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-le-mouvement .container > .row > div:first-child {
    width: 100%;
    margin-bottom: 45px;
  }
}
.line-le-mouvement .container > .row > div:first-child .content img {
  max-width: 488px;
}
@media (max-width: 991px) {
  .line-le-mouvement .container > .row > div:first-child .content img {
    max-width: 300px;
  }
}
@media (max-width: 991px) {
  .line-le-mouvement .container > .row > div:last-child {
    width: 100%;
  }
}
.line-le-mouvement .container > .row > div:last-child .content {
  padding-top: 77px;
  padding-left: 100px;
}
@media (max-width: 991px) {
  .line-le-mouvement .container > .row > div:last-child .content {
    padding-left: 0;
    padding-top: 0;
    text-align: center;
  }
}
.line-le-mouvement .container > .row > div:last-child .content h2 {
  margin-bottom: 30px;
}
.line-le-mouvement .container > .row > div:last-child .content p {
  margin-bottom: 30px;
}

.line-rejoins {
  padding-bottom: 70px;
  position: relative;
}
.line-rejoins:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_apropos/_carriere/img-coeur.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 668px;
  height: 600px;
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .line-rejoins:before {
    width: 300px;
  }
}
.line-rejoins .container > .row > div .content img {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .line-rejoins .container > .row > div .content img {
    width: 170px !important;
  }
}
.line-rejoins .container > .row > div .content h2 {
  margin-bottom: 45px;
}
.line-rejoins .container > .row > div .content p {
  max-width: 45%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .line-rejoins .container > .row > div .content p {
    max-width: 80%;
  }
}

.carriere-avantages .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .carriere-avantages .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .carriere-avantages .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .carriere-avantages .container {
    width: 1152px;
  }
}
@media (max-width: 767px) {
  .carriere-avantages .container > .row > div:first-child {
    margin-bottom: 45px;
  }
}
.carriere-avantages .container > .row > div:first-child .content {
  text-align: center;
}
.carriere-avantages .container > .row > div:last-child .content {
  padding-left: 90px;
}
@media (max-width: 991px) {
  .carriere-avantages .container > .row > div:last-child .content {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .carriere-avantages .container > .row > div:last-child .content {
    text-align: center;
  }
}
.carriere-avantages.one {
  padding-bottom: 45px;
}
.carriere-avantages.two {
  padding-bottom: 340px;
}

.grand-principes-title {
  padding-bottom: 80px;
}

.line-grands-principes {
  padding-bottom: 155px;
}
.line-grands-principes .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-grands-principes .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-grands-principes .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-grands-principes .container {
    width: 1152px;
  }
}
.line-grands-principes .container > .row > div .panel .panel-heading {
  background: #FFF4F2;
}
.line-grands-principes .container > .row > div .panel .panel-heading .panel-title {
  background: #FFF4F2;
}
.line-grands-principes .container > .row > div .panel .panel-heading .panel-title a {
  font-size: 50px !important;
  line-height: 52px !important;
  color: #282828;
  padding-right: 450px;
}
@media (max-width: 991px) {
  .line-grands-principes .container > .row > div .panel .panel-heading .panel-title a {
    padding-right: 100px;
  }
}
@media (max-width: 767px) {
  .line-grands-principes .container > .row > div .panel .panel-heading .panel-title a {
    font-size: 22px !important;
    line-height: 24px !important;
  }
}
.line-grands-principes .container > .row > div .panel .panel-heading .panel-title a:hover {
  color: #FF8762 !important;
}
.line-grands-principes .container > .row > div .panel .panel-body {
  background: #FFF4F2;
}
@media (min-width: 992px) {
  .line-grands-principes .container > .row > div .panel .panel-body {
    padding-right: 300px;
  }
}

.line-experience {
  padding-top: 120px;
  padding-bottom: 120px;
}
.line-experience .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-experience .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-experience .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-experience .container {
    width: 1152px;
  }
}
.line-experience .container > .row > div .content h2 {
  margin-bottom: 30px;
}
.line-experience .container > .row > div .content ul {
  padding-left: 0 !important;
  list-style: none;
  max-width: 67%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  text-align: center;
}
@media (max-width: 1199px) {
  .line-experience .container > .row > div .content ul {
    max-width: 85%;
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .line-experience .container > .row > div .content ul {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .line-experience .container > .row > div .content ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.line-experience .container > .row > div .content ul li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .line-experience .container > .row > div .content ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
.line-experience .container > .row > div .content ul li:before {
  display: none !important;
}
.line-experience .container > .row > div .content ul li {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  height: 314px;
  width: 353px;
  background: #fff;
  border-radius: 40px;
  padding: 50px 15px 0 15px !important;
}
@media (max-width: 767px) {
  .line-experience .container > .row > div .content ul li {
    width: 100%;
  }
}
.line-experience .container > .row > div .content ul li img {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .line-experience .container > .row > div .content ul li br {
    display: block !important;
  }
}

.line-processus-title {
  padding-top: 85px;
  padding-bottom: 80px;
}
.line-processus-title .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-processus-title .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-processus-title .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-processus-title .container {
    width: 1152px;
  }
}
.line-processus-title .container > .row {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .line-processus-title .container > .row {
    flex-direction: column;
    align-items: center;
  }
}
.line-processus {
  padding-bottom: 105px;
}
.line-processus .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-processus .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-processus .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-processus .container {
    width: 1152px;
  }
}
.line-processus .container > .row > div .content ul {
  padding-left: 0 !important;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 75px;
  text-align: center;
}
@media (max-width: 767px) {
  .line-processus .container > .row > div .content ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 70px;
  }
}
.line-processus .container > .row > div .content ul li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .line-processus .container > .row > div .content ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
.line-processus .container > .row > div .content ul li:before {
  display: none !important;
}
.line-processus .container > .row > div .content ul li img {
  margin-bottom: 15px;
}
.line-processus .container > .row > div .content ul li p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-processus .container > .row > div .content ul li p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .line-processus .container > .row > div .content ul li p br {
    display: block !important;
  }
}
.line-processus .container > .row > div .content ul li:not(:last-child) {
  position: relative;
}
.line-processus .container > .row > div .content ul li:not(:last-child):after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_apropos/_carriere/process-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 25px;
  position: absolute;
  right: -60px;
  top: 70px;
}
@media (max-width: 767px) {
  .line-processus .container > .row > div .content ul li:not(:last-child):after {
    right: 0;
    top: 110%;
    left: 45%;
    transform: rotate(90deg);
  }
}

.postes-title {
  padding-top: 80px;
}
.postes-title .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .postes-title .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .postes-title .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .postes-title .container {
    width: 1152px;
  }
}

.line-postes {
  padding-top: 50px;
}
.line-postes .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-postes .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-postes .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-postes .container {
    width: 1152px;
  }
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 .news-title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 .news-title {
    font-size: 18px;
    line-height: 24px;
  }
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 .news-title a {
  color: #282828 !important;
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 .news-title a:hover {
  color: #FF8762 !important;
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 .e-date {
  text-transform: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 .e-date {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 .news-intro {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 .news-intro {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  background-color: #FF8762;
  color: #fff;
  transition: all 0.5s;
  border: 1px solid #FF8762;
  padding: 10px 20px;
  margin-top: 15px;
  color: #fff !important;
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child:hover, .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child:active, .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child {
    white-space: normal !important;
  }
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child:hover, .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child:active, .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child:focus {
  background-color: transparent;
  border: 1px solid #FF8762;
  color: #FF8762;
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child.grey-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #FF8762;
  transition: all 0.5s;
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child.grey-bg:hover, .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child.grey-bg:active, .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child.grey-bg:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child.black-bg, .line-postes .container > .row > div .news-mosaic > .row .menu-container .line-menu-header .mod-header .header-ext-login .col-sm-12 > a.member-login:last-child, .menu-container .line-menu-header .mod-header .header-ext-login .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a.member-login:last-child {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child.black-bg:hover, .line-postes .container > .row > div .news-mosaic > .row .menu-container .line-menu-header .mod-header .header-ext-login .col-sm-12 > a.member-login:last-child:hover, .menu-container .line-menu-header .mod-header .header-ext-login .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a.member-login:last-child:hover, .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child.black-bg:active, .line-postes .container > .row > div .news-mosaic > .row .menu-container .line-menu-header .mod-header .header-ext-login .col-sm-12 > a.member-login:last-child:active, .menu-container .line-menu-header .mod-header .header-ext-login .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a.member-login:last-child:active, .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child.black-bg:focus, .line-postes .container > .row > div .news-mosaic > .row .menu-container .line-menu-header .mod-header .header-ext-login .col-sm-12 > a.member-login:last-child:focus, .menu-container .line-menu-header .mod-header .header-ext-login .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a.member-login:last-child:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child.orange-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child.orange-bg:hover, .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child.orange-bg:active, .line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child.orange-bg:focus {
  background-color: #fff;
  border: 1px solid #fff;
  color: #282828;
}
.line-postes .container > .row > div .news-mosaic > .row .col-sm-12 > a:last-child:hover {
  color: #FF8762 !important;
}
@media (max-width: 767px) {
  .line-postes .container > .row > div .news-mosaic > .row .col-sm-12:not(:last-child) {
    margin-bottom: 60px;
  }
}

.line-equipe .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-equipe .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-equipe .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-equipe .container {
    width: 1152px;
  }
}

.line-ca {
  padding-bottom: 120px;
}
.line-ca .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-ca .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-ca .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-ca .container {
    width: 1152px;
  }
}
.line-ca .container > .row > div .newsList .item {
  background: #fff;
  height: 645px;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 991px) {
  .line-ca .container > .row > div .newsList .item {
    height: 620px;
  }
}
@media (max-width: 767px) {
  .line-ca .container > .row > div .newsList .item {
    height: 600px;
  }
}
.line-ca .container > .row > div .newsList .item .itemImage img {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  max-height: 416px !important;
  width: auto;
  min-width: 100%;
  object-fit: cover; /* Ensures the image fills the container */
  object-position: center; /* Aligns the image to the top */
  display: block;
}
.line-ca .container > .row > div .newsList .item h3 {
  padding-left: 30px;
  padding-right: 140px;
}
.line-ca .container > .row > div .newsList .item .intro h6 {
  padding-left: 30px;
  padding-right: 30px;
  line-height: 20px;
}
.line-ca .container > .row > div .newsList .item .intro ul.social {
  position: absolute;
  right: 30px;
  top: 430px;
}

.bottom-cta {
  padding-bottom: 400px;
}
.bottom-cta.rapports .content .btn {
  font-size: 50px !important;
  line-height: 52px !important;
}
@media (max-width: 767px) {
  .bottom-cta.rapports .content .btn {
    font-size: 43px !important;
    line-height: 45px !important;
  }
}
.bottom-cta.rapports .content .btn:after {
  top: 145px;
}
@media (max-width: 767px) {
  .bottom-cta.rapports .content .btn:after {
    top: 200px;
  }
}

.line-rapports {
  padding-bottom: 95px;
}
.line-rapports .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-rapports .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-rapports .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-rapports .container {
    width: 1152px;
  }
}
@media (max-width: 767px) {
  .line-rapports .container > .row > div .newsList {
    display: flex;
    flex-direction: column;
  }
}
.line-rapports .container > .row > div .newsList > .row:first-child {
  grid-column: 1/4;
}
.line-rapports .container > .row > div .newsList > .row:first-child .item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  background: #FFF4F2;
  padding: 20px 90px;
  border-radius: 40px;
}
@media (max-width: 767px) {
  .line-rapports .container > .row > div .newsList > .row:first-child .item {
    padding: 30px;
    flex-direction: column;
  }
}
.line-rapports .container > .row > div .newsList > .row:first-child .item .itemImage {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .line-rapports .container > .row > div .newsList > .row:first-child .item .itemImage {
    width: 100%;
    margin-bottom: 30px;
  }
}
.line-rapports .container > .row > div .newsList > .row:first-child .item .itemImage img {
  margin-bottom: 0;
  border-radius: 15px;
}
.line-rapports .container > .row > div .newsList > .row:first-child .item .intro {
  width: 50%;
  padding-left: 90px;
}
@media (max-width: 767px) {
  .line-rapports .container > .row > div .newsList > .row:first-child .item .intro {
    padding-left: 0;
    width: 100%;
  }
}
.line-rapports .container > .row > div .newsList > .row:first-child .item .intro h3 {
  font-size: 50px;
  line-height: 52px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-rapports .container > .row > div .newsList > .row:first-child .item .intro h3 {
    font-size: 30px;
    line-height: 32px;
  }
}
.line-rapports .container > .row > div .newsList > .row .item .itemImage img {
  border-radius: 15px;
}
.line-rapports .container > .row > div .newsList > .row .item .intro .btn {
  height: 55px !important;
  padding: 20px 35px !important;
  background-color: #FF8762 !important;
  color: #fff !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
  border-radius: 60px !important;
}
.line-rapports .container > .row > div .newsList > .row .item .intro .btn:hover, .line-rapports .container > .row > div .newsList > .row .item .intro .btn:active, .line-rapports .container > .row > div .newsList > .row .item .intro .btn:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}

.line-equipe-benevole {
  padding-top: 120px;
  padding-bottom: 50px;
}

@media (min-width: 768px) {
  .line-actualites {
    padding-top: 155px;
  }
}
.line-actualites .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-actualites .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-actualites .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-actualites .container {
    width: 1152px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-actualites .container > .row > div .news-mosaic > .row:first-child {
    width: 55%;
  }
}
@media (min-width: 768px) {
  .line-actualites .container > .row > div .news-mosaic > .row:first-child {
    grid-column: 1/3;
    width: 70%;
    padding-top: 110px;
  }
}
@media (min-width: 992px) {
  .line-actualites .container > .row > div .news-mosaic > .row:first-child .news-thumbnail {
    min-width: 450px !important;
    max-width: 450px !important;
  }
}
@media (min-width: 768px) {
  .line-actualites .container > .row > div .news-mosaic > .row:first-child .news-thumbnail {
    min-width: 250px !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-actualites .container > .row > div .news-mosaic > .row:nth-child(2) {
    width: 35vw;
  }
}
@media (min-width: 768px) {
  .line-actualites .container > .row > div .news-mosaic > .row:nth-child(2) {
    grid-column: 3/3;
    width: 40vw;
    margin-left: -165px;
  }
}
@media (min-width: 768px) and (max-width: 991px) and (min-width: 768px) {
  .line-actualites .container > .row > div .news-mosaic > .row:nth-child(2) {
    margin-left: -115px;
  }
}
@media (min-width: 992px) {
  .line-actualites .container > .row > div .news-mosaic > .row:nth-child(2) .news-thumbnail {
    min-width: 450px !important;
    max-width: 450px !important;
  }
}
@media (min-width: 768px) {
  .line-actualites .container > .row > div .news-mosaic > .row:nth-child(2) .news-thumbnail {
    min-width: 250px !important;
  }
}
.line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 .news-thumbnail {
  border-radius: 15px;
}
.line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 .news-title a {
  color: #282828 !important;
}
.line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 .e-date {
  text-transform: none;
}
.line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 .news-intro {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 .news-intro {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 .news-intro p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 .news-intro p {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 > a:last-child {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  height: 55px !important;
  padding: 20px 35px !important;
  background-color: #FF8762 !important;
  color: #fff !important;
  transition: all 0.5s !important;
  border: 1px solid #FF8762 !important;
}
.line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 > a:last-child:hover, .line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 > a:last-child:active, .line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 > a:last-child:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 > a:last-child {
    white-space: normal !important;
  }
}
.line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 > a:last-child:hover, .line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 > a:last-child:active, .line-actualites .container > .row > div .news-mosaic > .row .col-sm-24 > a:last-child:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #FF8762 !important;
  color: #282828 !important;
}

.line-logo-certification .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-logo-certification .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-logo-certification .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-logo-certification .container {
    width: 1152px;
  }
}
.line-logo-certification .container > .row > div .content {
  text-align: right;
  position: relative;
}
.line-logo-certification .container > .row > div .content:before {
  content: "";
  background: #6B82A4;
  width: 60%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .line-logo-certification .container > .row > div .content:before {
    width: 35%;
  }
}
@media (max-width: 991px) {
  .line-logo-certification .container > .row > div .content img {
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .line-logo-certification .container > .row > div .content img {
    max-width: 180px;
  }
}

.line-pastille-title {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .line-pastille-title {
    padding-top: 60px;
  }
}
.line-pastille-title .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-pastille-title .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-pastille-title .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-pastille-title .container {
    width: 1152px;
  }
}
.line-pastille-title .container > .row > div .content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .line-pastille-title .container > .row > div .content img {
    max-width: 105px;
  }
}
.line-pastille-title .container > .row > div .content p {
  max-width: fit-content;
}
.line-pastille-title .container > .row > div .content h3 {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .line-pastille-title .container > .row > div .content h3 br {
    display: block !important;
  }
}

.line-organisations-certifies {
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .line-organisations-certifies {
    padding-bottom: 30px;
  }
}
.line-organisations-certifies .container {
  max-width: 100%;
  margin: auto;
  padding-bottom: 100px;
  border-bottom: 1px solid #6B82A4;
}
@media (max-width: 767px) {
  .line-organisations-certifies .container {
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .line-organisations-certifies .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-organisations-certifies .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-organisations-certifies .container {
    width: 1152px;
  }
}
.line-organisations-certifies .container > .row > div .news-mosaic {
  gap: 30px;
}
@media (max-width: 767px) {
  .line-organisations-certifies .container > .row > div .news-mosaic {
    gap: 15px;
  }
}
.line-organisations-certifies .container > .row > div .news-mosaic > .row > div > a:last-child {
  background: transparent !important;
  border: none !important;
}
@media (max-width: 767px) {
  .line-organisations-certifies .container > .row > div .news-mosaic > .row > div img {
    max-width: 130px !important;
  }
}

.line-ressources {
  padding-bottom: 300px;
}
.line-ressources .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-ressources .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-ressources .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-ressources .container {
    width: 1152px;
  }
}
.line-ressources .container > .row > div form, .line-ressources .container > .row > div #newsFilterForm {
  margin-top: -155px;
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .line-ressources .container > .row > div form, .line-ressources .container > .row > div #newsFilterForm {
    margin-top: -215px;
  }
}
.line-ressources .container > .row > div form .form-horizontal, .line-ressources .container > .row > div #newsFilterForm .form-horizontal {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .line-ressources .container > .row > div form .form-horizontal, .line-ressources .container > .row > div #newsFilterForm .form-horizontal {
    flex-direction: column;
  }
}
.line-ressources .container > .row > div form .form-horizontal > .col-sm-12, .line-ressources .container > .row > div #newsFilterForm .form-horizontal > .col-sm-12 {
  width: 33%;
}
@media (max-width: 767px) {
  .line-ressources .container > .row > div form .form-horizontal > .col-sm-12, .line-ressources .container > .row > div #newsFilterForm .form-horizontal > .col-sm-12 {
    width: 100%;
  }
}
.line-ressources .container > .row > div form .form-horizontal > .col-sm-12 .col-sm-17, .line-ressources .container > .row > div #newsFilterForm .form-horizontal > .col-sm-12 .col-sm-17 {
  width: 80%;
}
@media (max-width: 767px) {
  .line-ressources .container > .row > div form .form-horizontal > .col-sm-12 .col-sm-17, .line-ressources .container > .row > div #newsFilterForm .form-horizontal > .col-sm-12 .col-sm-17 {
    width: 88%;
  }
}
.line-ressources .container > .row > div form .form-horizontal > .col-sm-12 .col-sm-17 .chosen-container li, .line-ressources .container > .row > div #newsFilterForm .form-horizontal > .col-sm-12 .col-sm-17 .chosen-container li {
  opacity: 1 !important;
}
.line-ressources .container > .row > div form .form-horizontal > .col-sm-12 .col-sm-17 .chosen-drop ul.chosen-results li, .line-ressources .container > .row > div form .form-horizontal > .col-sm-12 .col-sm-17 .chosen-drop ul.chosen-choices li, .line-ressources .container > .row > div #newsFilterForm .form-horizontal > .col-sm-12 .col-sm-17 .chosen-drop ul.chosen-results li, .line-ressources .container > .row > div #newsFilterForm .form-horizontal > .col-sm-12 .col-sm-17 .chosen-drop ul.chosen-choices li {
  opacity: 1 !important;
}
@media (min-width: 768px) {
  .line-ressources .container > .row > div form .form-horizontal.sticked, .line-ressources .container > .row > div #newsFilterForm .form-horizontal.sticked {
    position: fixed;
    top: 0;
    left: 0;
    width: 101vw;
    z-index: 1000;
    height: 99px;
    background: white;
    padding: 3px 10px 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 768px) {
  .line-ressources .container > .row > div .news-mosaic > .row {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 {
    margin-bottom: 60px;
  }
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 .news-thumbnail {
  max-width: 260px;
  margin-bottom: 20px;
  opacity: 1 !important;
}
@media (max-width: 767px) {
  .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 .news-thumbnail {
    max-width: 100% !important;
  }
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 h3.news-title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  text-transform: initial;
  margin-bottom: 20px;
  max-width: 70%;
}
@media (max-width: 767px) {
  .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 h3.news-title {
    font-size: 18px;
    line-height: 24px;
  }
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 h3.news-title a {
  color: #282828 !important;
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 h3.news-title a:hover {
  color: #FF8762 !important;
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 .e-date {
  text-transform: none;
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 .news-intro {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
  line-height: 20px;
  max-width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 .news-intro {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 .news-intro p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
  line-height: 20px;
}
@media (max-width: 767px) {
  .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 .news-intro p {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child {
  font-family: "Red Hat Display", sans-serif;
  text-transform: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 61px;
  background-color: #FF8762;
  color: #fff;
  transition: all 0.5s;
  border: 1px solid #FF8762;
  padding: 10px 20px;
  color: #fff !important;
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child:hover, .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child:active, .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child {
    white-space: normal !important;
  }
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child:hover, .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child:active, .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child:focus {
  background-color: transparent;
  border: 1px solid #FF8762;
  color: #FF8762;
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child.grey-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #FF8762;
  transition: all 0.5s;
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child.grey-bg:hover, .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child.grey-bg:active, .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child.grey-bg:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child.black-bg, .line-ressources .container > .row > div .news-mosaic > .row .menu-container .line-menu-header .mod-header .header-ext-login .col-sm-8 > a.member-login:last-child, .menu-container .line-menu-header .mod-header .header-ext-login .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a.member-login:last-child {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child.black-bg:hover, .line-ressources .container > .row > div .news-mosaic > .row .menu-container .line-menu-header .mod-header .header-ext-login .col-sm-8 > a.member-login:last-child:hover, .menu-container .line-menu-header .mod-header .header-ext-login .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a.member-login:last-child:hover, .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child.black-bg:active, .line-ressources .container > .row > div .news-mosaic > .row .menu-container .line-menu-header .mod-header .header-ext-login .col-sm-8 > a.member-login:last-child:active, .menu-container .line-menu-header .mod-header .header-ext-login .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a.member-login:last-child:active, .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child.black-bg:focus, .line-ressources .container > .row > div .news-mosaic > .row .menu-container .line-menu-header .mod-header .header-ext-login .col-sm-8 > a.member-login:last-child:focus, .menu-container .line-menu-header .mod-header .header-ext-login .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a.member-login:last-child:focus {
  background-color: #FF8762;
  border: 1px solid #FF8762;
  color: #fff;
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child.orange-bg {
  background-color: transparent;
  color: #282828;
  border: 1px solid #fff;
  transition: all 0.5s;
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child.orange-bg:hover, .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child.orange-bg:active, .line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child.orange-bg:focus {
  background-color: #fff;
  border: 1px solid #fff;
  color: #282828;
}
.line-ressources .container > .row > div .news-mosaic > .row .col-sm-8 > a:last-child:hover {
  color: #FF8762 !important;
}
.line-ressources.certif .container > .row > div {
  padding-top: 100px;
}
.line-ressources.certif .container > .row > div .form-horizontal .col-sm-12 {
  display: none;
}

.extra-groupinput .container {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .extra-groupinput .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .extra-groupinput .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .extra-groupinput .container {
    width: 1152px;
  }
}
.extra-groupinput .content {
  position: absolute;
  width: 33%;
  top: -149px;
  z-index: 9;
}
@media (max-width: 767px) {
  .extra-groupinput .content {
    top: -322px;
    width: 100%;
  }
}
.extra-groupinput .content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 0;
  color: #282828;
}
.extra-groupinput .content select {
  border: 1px solid #B7C4D7 !important;
  padding: 15px !important;
  height: 51px !important;
  background-color: #fff !important;
  color: #282828 !important;
  border-radius: 10px !important;
  width: 80%;
  background: #fff url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/caret-down.svg) no-repeat right 12px center !important;
  background-size: 16px !important;
}
@media (min-width: 768px) {
  .extra-groupinput.sticked .content {
    position: fixed;
    top: 7px;
    left: 100px;
    width: 300px;
    z-index: 10000;
    background: white;
  }
}
@media (max-width: 991px) {
  .extra-groupinput.sticked .content {
    left: 30px;
    width: 250px;
  }
}
.extra-groupinput.certif .content {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .extra-groupinput.certif .content {
    flex-direction: column;
  }
}
.extra-groupinput.certif .content .types {
  width: 300px;
}
.extra-groupinput.certif .content .types select {
  width: 100% !important;
}
.extra-groupinput.certif .content .niveaux {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .extra-groupinput.certif .content .niveaux {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .extra-groupinput.certif .content .niveaux .btn {
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  .extra-groupinput.certif .content .niveaux .btn {
    margin-right: 0;
  }
}

.conseils-intro {
  padding-top: 185px;
  position: relative;
}
.conseils-intro .container {
  max-width: 100%;
  margin: auto;
  padding-bottom: 60px;
  border-bottom: 1px solid #D9FFE4;
}
@media (max-width: 767px) {
  .conseils-intro .container {
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .conseils-intro .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .conseils-intro .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .conseils-intro .container {
    width: 1152px;
  }
}
.conseils-intro .container > .row > div .content img {
  position: absolute;
  top: -217px;
  left: 22%;
}
@media (max-width: 1199px) {
  .conseils-intro .container > .row > div .content img {
    left: 15%;
  }
}
@media (max-width: 991px) {
  .conseils-intro .container > .row > div .content img {
    width: 506px !important;
  }
}
@media (max-width: 767px) {
  .conseils-intro .container > .row > div .content img {
    width: 300px !important;
    left: 10%;
  }
}
.conseils-intro .container > .row > div .content h2 {
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}
.conseils-intro .container > .row > div .content p {
  margin-left: auto;
  margin-right: auto;
  max-width: 57%;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .conseils-intro .container > .row > div .content p {
    max-width: 100%;
  }
}

.line-services-conseils {
  padding-top: 75px;
  padding-bottom: 125px;
}
@media (max-width: 767px) {
  .line-services-conseils .container > .row > div .content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .line-services-conseils .container > .row > div .content h2 {
    margin-bottom: 30px;
  }
}

.line-four-squares .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 40px;
}
@media (max-width: 767px) {
  .line-four-squares .container > .row > div .content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 120px 40px;
  }
}
.line-four-squares .container > .row > div .content .white-box {
  position: relative;
  background: #fff;
  border-radius: 40px;
  padding-top: 105px;
  padding-left: 55px;
  padding-right: 55px;
  height: 415px;
  text-align: center;
}
@media (max-width: 991px) {
  .line-four-squares .container > .row > div .content .white-box {
    height: auto;
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .line-four-squares .container > .row > div .content .white-box .btn {
    white-space: normal !important;
  }
}
.line-four-squares .container > .row > div .content .white-box .white-box-icon {
  position: absolute;
  top: -50px;
  left: 40%;
}
@media (max-width: 991px) {
  .line-four-squares .container > .row > div .content .white-box .white-box-icon {
    left: 32%;
  }
}
.line-four-squares .container > .row > div .content .white-box:last-child {
  padding-top: 175px;
}
.line-four-squares .container > .row > div .content .white-box:last-child .btn-arrow:after {
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_accompagnement/orange-arrow-btn.svg);
  background-size: contain;
}
.line-four-squares .container > .row > div .content .white-box a:not(.btn-primary) {
  color: #FF8762 !important;
}
.line-four-squares .container > .row > div .content .white-box a:not(.btn-primary):hover {
  text-decoration: underline !important;
}
.line-four-squares.formations {
  padding-top: 108px;
  padding-bottom: 108px;
  background: linear-gradient(45deg, #EE653B 0%, #FF8762 100%);
}
.line-four-squares.formations .container > .row > div .content {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.line-four-squares.formations .container > .row > div .content .white-box {
  padding-top: 62px;
}
@media (min-width: 992px) {
  .line-four-squares.formations .container > .row > div .content .white-box:first-child {
    height: 310px;
  }
}
.line-four-squares.formations .container > .row > div .content .white-box:last-child {
  display: none;
}
.line-four-squares.action .container > .row > div .content {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
@media (max-width: 767px) {
  .line-four-squares.action .container > .row > div .content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 85px;
  }
}
.line-four-squares.action .container > .row > div .content .white-box {
  height: 313px;
  padding-top: 105px !important;
}
@media (max-width: 991px) {
  .line-four-squares.action .container > .row > div .content .white-box {
    height: auto;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.line-four-squares.action .container > .row > div .content .white-box .white-box-icon {
  left: 30%;
}
@media (max-width: 991px) {
  .line-four-squares.action .container > .row > div .content .white-box .white-box-icon {
    left: 18%;
  }
}
@media (max-width: 767px) {
  .line-four-squares.action .container > .row > div .content .white-box .white-box-icon {
    left: 30%;
  }
}
.line-four-squares.comment .container > .row > div .content {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
@media (max-width: 767px) {
  .line-four-squares.comment .container > .row > div .content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 85px;
  }
}
.line-four-squares.comment .container > .row > div .content .white-box {
  height: 221px;
  padding-top: 105px !important;
}
@media (max-width: 991px) {
  .line-four-squares.comment .container > .row > div .content .white-box {
    height: auto;
  }
}
.line-four-squares.comment .container > .row > div .content .white-box .white-box-icon {
  left: 30%;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-four-squares.comment .container > .row > div .content .white-box .white-box-icon {
    left: 20%;
  }
}
.line-four-squares.comment .container > .row > div .content .white-box a {
  position: relative;
}
.line-four-squares.comment .container > .row > div .content .white-box a:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Bien_au_travail/_outils/download-icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 40px;
  height: 40px;
  left: -48px;
  top: 50%;
  transform: translateY(-50%);
}

.line-nb {
  padding-top: 45px;
}
.line-nb .content p {
  text-align: center;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.line-nb .content p .btn {
  background: transparent !important;
  color: #282828 !important;
}
.line-nb .content p .btn:hover {
  color: #fff !important;
  background: #FF8762 !important;
}

.line-filter .container > .row > div .content select {
  width: 355px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(https://cdn.ca.yapla.com/company/CPYtXvSko5xGbIJ6LKQ4No2d/asset/images/Coesion/_icons/caret-down.svg) no-repeat right 12px center !important;
  background-size: 16px !important;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .line-filter .container > .row > div .content select {
    width: 300px;
  }
}

.formations-title .container > .row > div .content h2 {
  padding-bottom: 30px;
  border-bottom: 1px solid #6B82A4;
}
.formations-title .container > .row > div .content p {
  padding-top: 50px;
}

.line-formation {
  padding-top: 70px;
  padding-bottom: 85px;
}
@media (max-width: 767px) {
  .line-formation .container > .row > div .eventsList > .row .col-sm-8 .item {
    margin-bottom: 60px;
  }
}
.line-formation .container > .row > div .eventsList > .row .col-sm-8 .item .e-thumbnail {
  max-width: 260px;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .line-formation .container > .row > div .eventsList > .row .col-sm-8 .item .e-thumbnail {
    max-width: 180px;
  }
}
.line-formation .container > .row > div .eventsList > .row .col-sm-8 .item .mod-eventflash__item-title {
  font-size: 22px;
  line-height: 28px;
  max-width: 75%;
}
.line-formation .container > .row > div .eventsList > .row .col-sm-8 .item p.itemInfos {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-formation .container > .row > div .eventsList > .row .col-sm-8 .item p.itemInfos {
    font-size: 16px;
    line-height: 20px;
  }
}
.line-formation .container > .row > div .eventsList > .row .col-sm-8 .item p.itemInfos .e-date {
  text-transform: none;
}
.line-formation .container > .row > div .eventsList > .row .col-sm-8 .item hr {
  display: none;
}

.lien-formation-smet {
  padding-top: 80px;
  padding-bottom: 80px;
}
.lien-formation-smet .container > .row > div .newsList > .row .item .itemImage img {
  max-width: 260px;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .lien-formation-smet .container > .row > div .newsList > .row .item .itemImage img {
    max-width: 180px;
  }
}
.lien-formation-smet .container > .row > div .newsList > .row .item h3 {
  font-size: 22px;
  line-height: 28px;
  max-width: 75%;
}
.lien-formation-smet .container > .row > div .newsList > .row .item h3 a {
  color: #282828 !important;
}
.lien-formation-smet .container > .row > div .newsList > .row .item h3 a:hover {
  color: #FF8762 !important;
}

.line-experts-title {
  padding-top: 100px;
  padding-bottom: 60px;
}

.line-experts .container > .row > div .newsList > .row .item .itemImage img {
  border-radius: 50%;
}
.line-experts .container > .row > div .newsList > .row .item .intro {
  text-align: center;
}
.line-experts .container > .row > div .newsList > .row .item .intro p {
  font-weight: 700;
  margin-bottom: 0;
}

/*# sourceMappingURL=main.css.map */
