@charset "UTF-8";
/* FONTS */
/* RESPONSIVE MIXINS BREAKPOINT */
/* RESPONSIVE ROOT FONT-SIZE (FOR REM) */
/*
html{

    font-size: 16px;

    @media only screen and (max-width : $lg) {

        html{font-size: 16px;}
    }

    @media only screen and (max-width : $md) {

        html{font-size: 16px;}
    }

    @media only screen and (max-width : $sm) {

        html{font-size: 16px;}
    }

    @media only screen and (max-width : $xs) {

        html{font-size: 16px;}
    }
}
*/
/* CUSTOM COLORS VARIABLES */
/* BASICS COLORS VARIABLES */
/* PADDINGS */
/* Plus grand ou égal custom */
/* Plus petit ou égal custom */
/* 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 1199px et 992px */
/* Entre 1199px et 768px */
/* Entre 1199px et 576px */
/* Entre 991px et 768px */
/* Entre 991px et 576px */
/* Entre 767px et 576px */
@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;
  }
}
/* All titles */
/* Cancel UL LI list */
/* 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 */
/********************************************************************/
.smallpadding {
  padding: 2.5rem 0;
}

.smallpaddingtop {
  padding-top: 2.5rem;
}

.smallpaddingbottom {
  padding-bottom: 2.5rem;
}

.largepadding {
  padding: 5rem 0;
}

.largepaddingtop {
  padding-top: 5rem;
}

.largepaddingbottom {
  padding-bottom: 5rem;
}

@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% - needed in zone-member (Logged in) */
@media (min-width: 768px) {
  .member--isConnected .fullwidth-80-connected .container {
    width: 94%;
  }
}
@media (min-width: 1200px) {
  .member--isConnected .fullwidth-80-connected .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;
  }
}

/********************************************************************/
/* 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: #000;
}

.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: #000 !important;
}
.darktitles-h1 h1, .darktitles-h2 h2, .darktitles-h3 h3, .darktitles-h4 h4, .darktitles-h5 h5, .darktitles-h6 h6 {
  color: #000 !important;
}

.darkparagraphe p {
  color: #000;
}

/* 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, .col-grid[class*=grid] .events-mosaic {
  gap: 60px 65px;
}
.col-grid.grid5 .newsList, .col-grid.grid5 .news-mosaic, .col-grid.grid5 .eventsList, .col-grid.grid5 .events-mosaic {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.col-grid.grid4 .newsList, .col-grid.grid4 .news-mosaic, .col-grid.grid4 .eventsList, .col-grid.grid4 .events-mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.col-grid.grid3 .newsList, .col-grid.grid3 .news-mosaic, .col-grid.grid3 .eventsList, .col-grid.grid3 .events-mosaic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.col-grid.grid2 .newsList, .col-grid.grid2 .news-mosaic, .col-grid.grid2 .eventsList, .col-grid.grid2 .events-mosaic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.col-grid.grid1 .newsList, .col-grid.grid1 .news-mosaic, .col-grid.grid1 .eventsList, .col-grid.grid1 .events-mosaic {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (max-width: 1199px) {
  .col-grid.grid5-lg .newsList, .col-grid.grid5-lg .news-mosaic, .col-grid.grid5-lg .eventsList, .col-grid.grid5-lg .events-mosaic {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid4-lg .newsList, .col-grid.grid4-lg .news-mosaic, .col-grid.grid4-lg .eventsList, .col-grid.grid4-lg .events-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid3-lg .newsList, .col-grid.grid3-lg .news-mosaic, .col-grid.grid3-lg .eventsList, .col-grid.grid3-lg .events-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid2-lg .newsList, .col-grid.grid2-lg .news-mosaic, .col-grid.grid2-lg .eventsList, .col-grid.grid2-lg .events-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid1-lg .newsList, .col-grid.grid1-lg .news-mosaic, .col-grid.grid1-lg .eventsList, .col-grid.grid1-lg .events-mosaic {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid5-md .newsList, .col-grid.grid5-md .news-mosaic, .col-grid.grid5-md .eventsList, .col-grid.grid5-md .events-mosaic {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid4-md .newsList, .col-grid.grid4-md .news-mosaic, .col-grid.grid4-md .eventsList, .col-grid.grid4-md .events-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid3-md .newsList, .col-grid.grid3-md .news-mosaic, .col-grid.grid3-md .eventsList, .col-grid.grid3-md .events-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid2-md .newsList, .col-grid.grid2-md .news-mosaic, .col-grid.grid2-md .eventsList, .col-grid.grid2-md .events-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid1-md .newsList, .col-grid.grid1-md .news-mosaic, .col-grid.grid1-md .eventsList, .col-grid.grid1-md .events-mosaic {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid5-sm .newsList, .col-grid.grid5-sm .news-mosaic, .col-grid.grid5-sm .eventsList, .col-grid.grid5-sm .events-mosaic {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid4-sm .newsList, .col-grid.grid4-sm .news-mosaic, .col-grid.grid4-sm .eventsList, .col-grid.grid4-sm .events-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid3-sm .newsList, .col-grid.grid3-sm .news-mosaic, .col-grid.grid3-sm .eventsList, .col-grid.grid3-sm .events-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid2-sm .newsList, .col-grid.grid2-sm .news-mosaic, .col-grid.grid2-sm .eventsList, .col-grid.grid2-sm .events-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid1-sm .newsList, .col-grid.grid1-sm .news-mosaic, .col-grid.grid1-sm .eventsList, .col-grid.grid1-sm .events-mosaic {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid5-xs .newsList, .col-grid.grid5-xs .news-mosaic, .col-grid.grid5-xs .eventsList, .col-grid.grid5-xs .events-mosaic {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid4-xs .newsList, .col-grid.grid4-xs .news-mosaic, .col-grid.grid4-xs .eventsList, .col-grid.grid4-xs .events-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid3-xs .newsList, .col-grid.grid3-xs .news-mosaic, .col-grid.grid3-xs .eventsList, .col-grid.grid3-xs .events-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid2-xs .newsList, .col-grid.grid2-xs .news-mosaic, .col-grid.grid2-xs .eventsList, .col-grid.grid2-xs .events-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid1-xs .newsList, .col-grid.grid1-xs .news-mosaic, .col-grid.grid1-xs .eventsList, .col-grid.grid1-xs .events-mosaic {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.col-grid .newsList, .col-grid .news-mosaic, .col-grid .eventsList, .col-grid .events-mosaic {
  display: grid;
}
.col-grid .newsList .row, .col-grid .news-mosaic .row, .col-grid .eventsList .row, .col-grid .events-mosaic .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, .col-grid .events-mosaic .row .item, .col-grid .events-mosaic .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: #161E54;
}

::selection {
  color: #fff;
  background: #161E54;
}

/* 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: 30px;
    padding-right: 30px;
  }
}
/* 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;
}

/* ################################# */
body {
  font-family: "Open sans", sans-serif;
  color: #161E54;
  background-color: #F7F5F5;
}
body.overflowhidden {
  overflow: hidden;
}

/*###########################  TITRES  ###########################*/
h1, h2, h3, h4, h5, h6, p, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Open sans", sans-serif;
  margin-bottom: 15px;
  width: 100%;
  color: #161E54;
}
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: break-word;
  }
}

h1, .h1 {
  font-size: 56px;
  line-height: 64px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 36px;
    line-height: 44px;
  }
}

h2, .h2 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 30px;
    line-height: 38px;
  }
}

h3, .h3 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  h3, .h3 {
    font-size: 28px;
    line-height: 36px;
  }
}

h4, .h4 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  h4, .h4 {
    font-size: 24px;
    line-height: 34px;
  }
}

h5, .h5 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  h5, .h5 {
    font-size: 21px;
    line-height: 25px;
  }
}

h6, .h6 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  letter-spacing: 0.25px;
  text-transform: initial;
}
@media (max-width: 991px) {
  h6, .h6 {
    font-size: 18px;
    line-height: 25px;
  }
}

p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #161E54;
  text-transform: initial;
}

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(.mod-eventflash__item-title a) {
  color: #161E54;
  text-decoration: underline;
}
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(.mod-eventflash__item-title a):hover {
  color: #F55353;
  text-decoration: underline;
}

hr {
  border-color: rgba(29, 166, 195, 0.35);
}

ul, ol: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) {
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 25px;
}
ul li, ol: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) li {
  margin-bottom: 0;
}
ul li::marker, ol: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) li::marker {
  color: #1DA6C3;
}
ul li ul, ul li ol, ol: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) li ul, ol: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) li ol {
  margin-top: 0;
  margin-bottom: 0;
}

ol {
  padding-left: 15px;
}
ol li::before {
  color: #1DA6C3;
}

/*###########################  BOUTONS  ###########################*/
.btn-primary-dark {
  height: auto;
  padding: 10px 30px !important;
  background-color: transparent;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #fff;
}
.btn-primary-dark:hover, .btn-primary-dark:active, .btn-primary-dark:focus {
  background-color: #fff;
  border: 1px solid #fff;
  color: #161E54;
}

.btn-primary-dark-important {
  height: auto !important;
  padding: 10px 30px !important;
  background-color: transparent !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: 1px solid #F55353 !important;
}
.btn-primary-dark-important:hover, .btn-primary-dark-important:active, .btn-primary-dark-important:focus {
  text-decoration: none !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
  color: #161E54 !important;
}

.btn-primary-revert {
  height: auto;
  padding: 10px 30px !important;
  background-color: transparent;
  border: 1px solid #fff;
  color: #161E54;
  border: 1px solid #F55353;
}
.btn-primary-revert:hover, .btn-primary-revert:active, .btn-primary-revert:focus {
  background-color: #F55353;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #F55353;
}

.btn-primary-revert-important {
  height: auto !important;
  padding: 10px 30px !important;
  background-color: transparent !important;
  color: #161E54 !important;
  transition: all 150ms !important;
  border: 1px solid #F55353 !important;
}
.btn-primary-revert-important:hover, .btn-primary-revert-important:active, .btn-primary-revert-important:focus {
  text-decoration: none !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
  color: #161E54 !important;
}

.btn, input.btn, a.btn {
  font-family: "Open sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: inherit;
  height: auto;
  /*padding: 0px 30px;*/
  /*display: inline-flex;*/
  align-items: center;
  margin-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
  border-radius: 50px;
  display: inline-block;
  white-space: break-spaces;
}
.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, .btn.btn-default, .btn.btn-back, input.btn.btn-primary, input.btn.btn-default, input.btn.btn-back, a.btn.btn-primary, a.btn.btn-default, a.btn.btn-back {
  height: auto;
  padding: 10px 30px;
  background-color: #F55353;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #F55353;
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus, .btn.btn-default:hover, .btn.btn-default:active, .btn.btn-default:focus, .btn.btn-back:hover, .btn.btn-back:active, .btn.btn-back:focus, input.btn.btn-primary:hover, input.btn.btn-primary:active, input.btn.btn-primary:focus, input.btn.btn-default:hover, input.btn.btn-default:active, input.btn.btn-default:focus, input.btn.btn-back:hover, input.btn.btn-back:active, input.btn.btn-back:focus, a.btn.btn-primary:hover, a.btn.btn-primary:active, a.btn.btn-primary:focus, a.btn.btn-default:hover, a.btn.btn-default:active, a.btn.btn-default:focus, a.btn.btn-back:hover, a.btn.btn-back:active, a.btn.btn-back:focus {
  background-color: transparent;
  border: 1px solid #F55353;
  color: #161E54;
}
.btn.btn-secondary, .btn.btn-link, input.btn.btn-secondary, input.btn.btn-link, a.btn.btn-secondary, a.btn.btn-link {
  font-size: 21px;
  line-height: 28px;
  height: auto;
  text-align: left;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #161E54;
  text-transform: inherit;
  text-decoration: underline;
  font-weight: 500;
  background-color: transparent;
  transition: all 300ms;
}
.btn.btn-secondary:after, .btn.btn-link:after, input.btn.btn-secondary:after, input.btn.btn-link:after, a.btn.btn-secondary:after, a.btn.btn-link:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-bleu.svg");
  background-repeat: no-repeat;
  right: -20px;
  margin-top: 2px;
  position: relative;
  display: inline-block;
  width: 21px;
  height: 9px;
  animation-name: none;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus, .btn.btn-link:hover, .btn.btn-link:focus, input.btn.btn-secondary:hover, input.btn.btn-secondary:focus, input.btn.btn-link:hover, input.btn.btn-link:focus, a.btn.btn-secondary:hover, a.btn.btn-secondary:focus, a.btn.btn-link:hover, a.btn.btn-link:focus {
  background-color: transparent !important;
  text-decoration: underline;
  color: #F55353;
}
.btn.btn-secondary:hover:after, .btn.btn-secondary:focus:after, .btn.btn-link:hover:after, .btn.btn-link:focus:after, input.btn.btn-secondary:hover:after, input.btn.btn-secondary:focus:after, input.btn.btn-link:hover:after, input.btn.btn-link:focus:after, a.btn.btn-secondary:hover:after, a.btn.btn-secondary:focus:after, a.btn.btn-link:hover:after, a.btn.btn-link:focus:after {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-rouge.svg");
  -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-third, input.btn.btn-third, a.btn.btn-third {
  font-size: 16px;
  line-height: 24px;
  height: auto;
  display: inline-block;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #161E54;
  text-transform: inherit;
  text-decoration: underline;
  font-weight: 500;
  background-color: transparent;
  transition: all 300ms;
}
.btn.btn-third:after, input.btn.btn-third:after, a.btn.btn-third:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-bleu.svg");
  background-repeat: no-repeat;
  right: -12px;
  margin-top: -1px;
  position: relative;
  display: inline-block;
  width: 21px;
  height: 9px;
  animation-name: none;
}
.btn.btn-third:hover, .btn.btn-third:focus, input.btn.btn-third:hover, input.btn.btn-third:focus, a.btn.btn-third:hover, a.btn.btn-third:focus {
  background-color: transparent !important;
  text-decoration: underline;
  color: #F55353;
}
.btn.btn-third:hover:after, .btn.btn-third:focus:after, input.btn.btn-third:hover:after, input.btn.btn-third:focus:after, a.btn.btn-third:hover:after, a.btn.btn-third:focus:after {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-rouge.svg");
  -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 {
  margin-right: 30px;
}
.btn + .btn, .btn:only-of-type {
  margin-right: 0;
}

.back-to-list {
  font-size: 21px;
  line-height: 28px;
  height: auto;
  text-align: left;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #161E54;
  text-transform: inherit;
  text-decoration: underline;
  font-weight: 500;
  background-color: transparent;
  transition: all 300ms;
}
.back-to-list:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-bleu.svg");
  background-repeat: no-repeat;
  right: -20px;
  margin-top: 2px;
  position: relative;
  display: inline-block;
  width: 21px;
  height: 9px;
  animation-name: none;
}
.back-to-list:hover, .back-to-list:focus {
  background-color: transparent !important;
  text-decoration: underline;
  color: #F55353;
}
.back-to-list:hover:after, .back-to-list:focus:after {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-rouge.svg");
  -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;
}

[class^=btn-icon] {
  background-color: #fff;
  padding: 25px 5px;
  height: 150px;
  border-radius: 15px;
  font-size: 21px;
  line-height: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 33.3333333%;
  white-space: pre;
  text-decoration: underline solid 1px !important;
}
@media (max-width: 991px) and (min-width: 768px) {
  [class^=btn-icon] {
    padding: 10px;
    font-size: 18px;
  }
}
[class^=btn-icon]:before {
  content: "";
  width: 82px;
  height: 82px;
  margin-right: 10px;
}
@media (max-width: 991px) and (min-width: 768px) {
  [class^=btn-icon]:before {
    width: 60px;
    height: 60px;
    margin-right: 5px;
  }
}
[class^=btn-icon]:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-bleu.svg");
  background-repeat: no-repeat;
  right: -22px;
  margin-top: -1px;
  margin-right: 55px;
  position: relative;
  display: inline-block;
  width: 21px;
  height: 9px;
  animation-name: none;
}
@media (max-width: 991px) and (min-width: 768px) {
  [class^=btn-icon]:after {
    margin-right: 30px;
  }
}
[class^=btn-icon]:hover:after, [class^=btn-icon]:focus:after {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-rouge.svg");
  -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-icon-actualite:before {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/Actualit%C3%A9s.svg") center center no-repeat;
}

.btn-icon-formation:before {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/Formations.svg") center center no-repeat;
}

.btn-icon-activites:before {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/Activit%C3%A9s.svg") center center no-repeat;
}

.btn-icon-emplois:before {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/Emplois.svg") center center no-repeat;
}

.btn-icon-babillard:before {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/Babillard.svg") center center no-repeat;
}

/*###########################  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: #161E54;
  -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 */
form.form-horizontal,
form.search-form {
  /*Fix col-md-12 full width qui affiche a moitié - width égale*/
}
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;
}
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 !important;
}
form.form-horizontal .form-group label.control-label,
form.search-form .form-group label.control-label {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #161E54;
  margin-bottom: 5px;
  padding-top: 16px;
  padding-left: 0;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /* Required Red Star Styles */
}
form.form-horizontal .form-group label.control-label--required,
form.search-form .form-group label.control-label--required {
  padding-left: 5px;
  color: #161E54;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /* Input Global Style */
}
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: #161E54 !important;
  border: none;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /* Direct input overrides */
}
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: none !important;
  padding: 15px !important;
  height: 51px !important;
}
form.form-horizontal .form-group textarea,
form.search-form .form-group textarea {
  border: none !important;
  padding: 15px !important;
}
form.form-horizontal .form-group select,
form.search-form .form-group select {
  background: #fff url(/images/icon-membogo-arrow-combo@2x.png) no-repeat right 15px center !important;
  background-size: 13px !important;
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
}
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,
form.search-form .form-group {
  /*Category Dropdown Styles*/
}
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#category_id,
form.search-form .form-group .chosen-choices {
  width: 100%;
  max-width: 400px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg fill='black' width='19' height='10' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 75'%3E%3Cpath id='Path_4853' data-name='Path 4853' d='M-23614.141-21191.273s-2.314-2.559,0-4.809,4.836,0,4.836,0l69.119,65.277,69.193-65.547a3.488,3.488,0,0,1,4.713,0c2.5,2.1,0,4.957,0,4.957l-71.893,68.258a3.446,3.446,0,0,1-2.014.852,4.993,4.993,0,0,1-2.314-.852Z' transform='translate(23615.169 21197.285)'/%3E%3C/svg%3E") no-repeat right 20px center !important;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /*Keywords Dropdown Styles*/
}
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: #1DA6C3 !important;
  font-size: 15px;
  font-weight: 500;
  padding-left: 15px !important;
  border: 0 !important;
  margin: 0;
  box-shadow: none !important;
  background-image: none !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: 10px !important;
  filter: invert(1);
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /*Error Text Style*/
}
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,
form.search-form {
  /*Static Text in forms*/
}
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: 10px;
}

/* Miscellaneous forms */
#ui-form .ui-section__content {
  background-color: #F7F5F5;
}
#ui-form .ui-section__content h2 {
  color: #161E54;
}

.overrideformtitle .zone-crm h1 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .overrideformtitle .zone-crm h1 {
    font-size: 30px;
    line-height: 38px;
  }
}
.overrideformtitle .zone-crm h1 {
  text-align: center;
}

/* Formulaire Inscription pour nouveau membre*/
/*Styles Global Event Form*/
#event_content_box h1 {
  text-align: center;
  margin-bottom: 64px;
}
#event_content_box a#step_previous {
  font-size: 16px !important;
  margin-right: 32px;
}
#event_content_box a#step_previous::after {
  display: none;
}

/*Styles Global*/
div#registration-member {
  /*Titre*/
}
div#registration-member h1 {
  padding: 0 0 72px 100px;
}
@media (max-width: 991px) {
  div#registration-member h1 {
    padding: 0 0 64px 0;
    text-align: center;
  }
}
div#registration-member {
  /*Btn Submit/Previous*/
}
div#registration-member .form-withProgress__navigation-footer a#prev_reg_step {
  font-size: 16px !important;
  padding-right: 24px;
}
@media (max-width: 767px) {
  div#registration-member .form-withProgress__navigation-footer a#prev_reg_step {
    font-size: 16px !important;
    text-align: left !important;
  }
}
div#registration-member .form-withProgress__navigation-footer a#prev_reg_step:after {
  display: none;
}
div#registration-member .form-withProgress__navigation-footer .event-summary h1 {
  text-align: center;
  margin-bottom: 64px;
}
/*Formulaire*/
/*Bottom payment total bar*/
#fieldset-section_payment_grand_total,
#fieldset-total {
  padding: 15px 0 30px 0;
  margin-bottom: 0 !important;
}
#fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
#fieldset-total .total-amount-section .total-amount-title {
  text-transform: initial;
}
#fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
#fieldset-total .total-amount-section .total-amount-price {
  text-align: right;
}

/*Étapes 1 - Type d'adhesion*/
.zone-member .event-login h1,
.zone-event .event-login h1 {
  text-align: center;
  margin-bottom: 64px;
  font-size: 40px;
  line-height: 48px;
}
@media (max-width: 767px) {
  .zone-member .event-login h1,
  .zone-event .event-login h1 {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .zone-member .event-subscription,
  .zone-event .event-subscription {
    padding: 0;
  }
}
.zone-member .event-subscription h1,
.zone-event .event-subscription h1 {
  padding: 0 0 64px 92px;
}
@media (max-width: 767px) {
  .zone-member .event-subscription h1,
  .zone-event .event-subscription h1 {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper,
  .zone-event .form-withProgress__wrapper {
    padding: 0;
  }
}
.zone-member .form-withProgress__wrapper #event-authentication-form h2,
.zone-event .form-withProgress__wrapper #event-authentication-form h2 {
  font-size: 28px;
  line-height: 35px;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #event-authentication-form h2,
  .zone-event .form-withProgress__wrapper #event-authentication-form h2 {
    font-size: 21px;
    line-height: 28px;
  }
}
.zone-member .form-withProgress__wrapper #event-authentication-form .event-authentication p,
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication p {
  padding-bottom: 32px;
}
.zone-member .form-withProgress__wrapper #event-authentication-form .event-authentication .btn-link,
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication .btn-link {
  font-size: 18px;
  margin-left: 16px;
}
.zone-member .form-withProgress__wrapper #event-authentication-form .event-authentication .btn-link::after,
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication .btn-link::after {
  display: none;
}
.zone-member .form-withProgress__wrapper #event-authentication-form .event-authentication .form-group,
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication .form-group {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 16px;
}
.zone-member .form-withProgress__wrapper .registration-event-bloc h3,
.zone-event .form-withProgress__wrapper .registration-event-bloc h3 {
  padding-top: 32px;
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper .registration-event-bloc h3,
  .zone-event .form-withProgress__wrapper .registration-event-bloc h3 {
    padding: 0;
  }
}
.zone-member .form-withProgress__wrapper .registration-event-bloc .form-edition,
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition {
  padding: 64px 32px;
}
.zone-member .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn i,
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn i {
  display: none;
}
.zone-member .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn,
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn {
  display: inline-flex !important;
}
.zone-member .form-withProgress__wrapper #member_adhesion_form,
.zone-event .form-withProgress__wrapper #member_adhesion_form {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .zone-member .form-withProgress__wrapper #member_adhesion_form,
  .zone-event .form-withProgress__wrapper #member_adhesion_form {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .zone-member .form-withProgress__wrapper #member_adhesion_form,
  .zone-event .form-withProgress__wrapper #member_adhesion_form {
    padding: 0;
  }
}
/*Étapes 2 - information de l'adherent*/
@media (max-width: 991px) {
  .step-register .form-withProgress__wrapper {
    padding: 64px;
  }
}
@media (max-width: 767px) {
  .step-register .form-withProgress__wrapper {
    padding: 64px 0px;
  }
}
.step-register .form-withProgress__wrapper .form-horizontal .section h2 {
  padding-top: 32px;
}
.step-register .form-withProgress__wrapper .form-horizontal .section .row .form-element-audiologie .col-md-12,
.step-register .form-withProgress__wrapper .form-horizontal .section .row .form-element-orthophonie .col-md-12 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media (max-width: 767px) {
  .step-register .form-withProgress__wrapper .form-horizontal .section .row .form-element-audiologie .col-md-12,
  .step-register .form-withProgress__wrapper .form-horizontal .section .row .form-element-orthophonie .col-md-12 {
    display: block;
  }
}
/*Étapes 3 - Résumé Informations*/
.step-resume .form-withProgress__wrapper {
  padding: 50px 110px;
}
@media (max-width: 991px) {
  .step-resume .form-withProgress__wrapper {
    padding: 50px 64px;
  }
}
@media (max-width: 767px) {
  .step-resume .form-withProgress__wrapper {
    padding: 0px;
  }
}
.step-resume .form-withProgress__wrapper label.control-label {
  color: #161E54 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}
.step-resume .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion {
  padding-left: 0px;
  padding-right: 0px;
}
.step-resume .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion span {
  color: #161E54;
}
.step-resume .form-withProgress__wrapper fieldset .col-sm-24 {
  padding: 0;
}
.step-resume .form-withProgress__wrapper fieldset legend {
  padding-left: 0;
  padding-right: 0;
  padding-top: 64px;
  margin-left: -5px;
  color: #161E54;
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  text-transform: inherit;
  padding: 5px 0 8px 0;
}
.step-resume .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
.step-resume .form-withProgress__wrapper fieldset.row {
  margin-left: 0;
  margin-right: 0;
}
/*Étapes 4 - Paiements*/
.step-payment h2 {
  padding-top: 56px;
}
@media (max-width: 991px) {
  .step-payment .form-withProgress__wrapper {
    padding: 50px 64px;
  }
}
@media (max-width: 767px) {
  .step-payment .form-withProgress__wrapper {
    padding: 0;
  }
}
.step-payment .form-withProgress__wrapper #fieldset-paymentmethod h2 {
  padding-top: 56px;
}
.step-payment .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 .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 .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps h6 {
  width: 80%;
}
.step-payment .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps span {
  width: fit-content;
}
/*Étapes 5 - Confirmation*/
#registration-member {
  width: 80vw;
  margin: 0 auto;
}
#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;
}

/*###########################  TABLEAU  ###########################*/
/* basically le bottin de yapla */
.table-striped thead tr th {
  background-color: #161E54;
  border-bottom: none !important;
  padding: 20px 15px 18px 15px;
  color: #fff !important;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.table-striped thead tr th:not(:last-child) {
  border-right: 2px #fff solid;
}
.table-striped thead tr th a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 300;
}
.table-striped thead tr th a:hover {
  text-decoration: none;
}
.table-striped thead tr th a:after {
  margin-left: 5px;
}
.table-striped thead tr th a.asort:after {
  border-bottom-color: #fff;
}
.table-striped thead tr th a.rsort:after {
  border-top-color: #fff;
}
.table-striped tbody > tr:nth-child(even) > td {
  background-color: #EFF0F4;
}
.table-striped tbody > tr:nth-child(odd) > td {
  background-color: #fff;
}
.table-striped tbody > tr:hover > td {
  /* to come :D */
}
.table-striped tbody tr td {
  padding: 20px 15px 20px 20px;
  color: #161E54;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  line-height: 17px;
  border-right: 2px #fff solid;
  border-top: 0;
}
.table-striped tbody tr td:not(:last-child) {
  border-right: 2px #fff solid;
}
.table-striped tbody tr td .table__field-image {
  max-width: 130px;
  width: 100%;
}
.table-striped tfoot tr td {
  border-top: 0;
}

/*###########################  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(29, 166, 195, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Open sans", sans-serif;
  letter-spacing: 2px;
  padding: 10px 0px;
}
.nav-tabs li a:hover, .nav-tabs li a:focus {
  background-color: transparent;
  color: rgba(29, 166, 195, 0.4);
  border-color: transparent;
}
.nav-tabs li.active:hover a, .nav-tabs li.active a {
  border-bottom: 5px solid #161E54;
  color: #1DA6C3;
}

.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 #161E54;
  border-radius: 55px;
  margin: 5px;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paginationControl a:hover, .paginationControl a:focus {
  text-decoration: none;
  color: #1DA6C3;
}
.paginationControl a.active {
  background-color: #161E54;
  color: #fff;
  font-weight: 200 !important;
}
.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 */
  margin-top: 0px !important;
  border-bottom: 2px solid rgb(225, 225, 225) !important;
  background-color: transparent;
}
.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 */
  /*@include h4;*/
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 0;
  padding-left: 30px;
}
.panel-news-accordion .panel-heading .panel-title a {
  padding: 15px;
  color: #161E54;
  text-decoration: none;
  text-transform: initial;
}
.panel-news-accordion .panel-heading .panel-title a:after {
  content: "−";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 30px;
  font-weight: 900;
  color: rgba(245, 83, 83, 0.8);
  transition: transform 150ms;
}
.panel-news-accordion .panel-heading .panel-title a.collapsed:after {
  content: "+";
}
.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: 9px 15px 30px 45px;
}
.panel-news-accordion .panel-body h4 {
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body p {
  color: #161E54;
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body p.news-accordion-text {
  margin-bottom: 0;
}
.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;
}
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 25px;
  position: relative;
  border-bottom: 1px solid #ccc;
}
table.accordeon tbody tr:first-child:after {
  content: "+";
  color: #F55353;
  display: block;
  position: absolute;
  width: 15px;
  left: 0px;
  top: 15px;
  font-size: 30px;
  font-weight: 400;
  transition: transform 150ms;
}
table.accordeon tbody tr:last-child {
  display: block;
  border: 0;
}
table.accordeon tbody tr:last-child td {
  display: block;
  max-height: 0;
  overflow: hidden;
}
table.accordeon {
  /* active and opened content */
}
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;
}

.modal-backdrop {
  z-index: 10000;
}

@media (max-width: 991px) {
  .modal {
    width: 100vw;
  }
}
.modal {
  z-index: 10001 !important;
}
.modal .modal-dialog {
  margin-top: 32px;
}
.modal .modal-dialog .modal-content {
  background-color: #F7F5F5;
}
.nav-pills {
  background-image: none;
}

.nav-progress {
  overflow: hidden;
}
.nav-progress li.disabled {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
}
.nav-progress li.disabled a,
.nav-progress li.disabled a:hover,
.nav-progress li.disabled a:focus {
  font-family: "Open sans", sans-serif;
  color: #1DA6C3;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-transform: none;
  text-align: center;
  position: absolute;
  float: none;
  margin-top: 110px;
  padding-top: 6px;
  width: 100%;
}
.nav-progress li.disabled a:before,
.nav-progress li.disabled a:hover:before,
.nav-progress li.disabled a:focus:before {
  content: "";
  position: absolute;
  top: -40px;
  left: calc(50% + 40px);
  right: 0;
  width: calc(100% - 80px);
  display: block;
  margin: auto;
  height: 2px;
  background-color: rgba(22, 30, 84, 0.3);
}
@media (max-width: 767px) {
  .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: none;
  width: 100%;
  text-align: center;
  font-size: 32px;
  line-height: 43px;
  font-weight: 700;
  border: none;
  color: white;
  background-color: #1DA6C3;
  padding: 5px;
  width: 57px;
  height: 57px;
}
.nav-progress li.disabled:after {
  display: none;
}
.nav-progress li.disabled.active {
  /*opacity: 1;*/
}
.nav-progress li.disabled.active a {
  color: #161E54;
}
.nav-progress li.disabled.active:before {
  color: #fff;
  background-color: #161E54;
}
.nav-progress li.disabled.active:after {
  display: none;
}
.nav-progress li.disabled.active ~ li a {
  color: #d5d6e0;
}
.nav-progress li.disabled.active ~ li:before {
  color: rgba(22, 30, 84, 0.4);
  background-color: rgba(22, 30, 84, 0.1);
}
.nav-progress li.disabled.active ~ li:after {
  display: none;
}
@media (max-width: 767px) {
  .nav-progress li.disabled:not(.active) {
    margin-left: -1000000px;
    position: absolute;
  }
}
.nav-progress li:last-child a:before {
  display: none;
}
.nav-progress li:last-child a:hover:before {
  display: none;
}

.cc-window {
  background-color: #fff !important;
  box-shadow: -1px 0px 2px 1px rgba(0, 0, 0, 0.11);
  bottom: 0;
  left: auto !important;
  right: 0 !important;
  max-width: 650px !important;
  padding: 50px 40px !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}
@media (max-width: 767px) {
  .cc-window {
    max-width: 95%;
  }
}
.cc-window .cc-message {
  margin: 0 0 30px 0 !important;
}
.cc-window .cc-message h4 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .cc-window .cc-message h4 {
    font-size: 28px;
    line-height: 36px;
  }
}
.cc-window .cc-message p {
  margin-bottom: 0;
}
.cc-window .cc-compliance {
  width: auto;
}
.cc-window .cc-compliance .cc-btn {
  font-family: "Open sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: inherit;
  height: auto;
  /*padding: 0px 30px;*/
  /*display: inline-flex;*/
  align-items: center;
  margin-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
  border-radius: 50px;
  display: inline-block;
  white-space: break-spaces;
}
.cc-window .cc-compliance .cc-btn:hover, .cc-window .cc-compliance .cc-btn:active, .cc-window .cc-compliance .cc-btn:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cc-window .cc-compliance .cc-btn {
    white-space: normal !important;
  }
}
.cc-window .cc-compliance .cc-btn {
  height: auto !important;
  padding: 10px 30px !important;
  background-color: #F55353 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: 1px solid #F55353 !important;
}
.cc-window .cc-compliance .cc-btn:hover, .cc-window .cc-compliance .cc-btn:active, .cc-window .cc-compliance .cc-btn:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #F55353 !important;
  color: #161E54 !important;
}
.cc-window .cc-compliance .cc-btn {
  text-decoration: none !important;
}
.cc-window .cc-compliance .cc-btn:hover {
  text-decoration: none !important;
}

.line-header {
  padding: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
@media (max-width: 991px) {
  .line-header {
    height: 0;
    top: -100%;
    overflow: hidden;
    bottom: 100%;
    display: block;
    z-index: 99999999;
  }
}
@media (max-width: 991px) {
  .line-header .container {
    padding-left: 0;
  }
}
.line-header .container .row-fluid {
  height: 25px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  bottom: 6px;
  margin-top: 28px;
}
.line-header .container .row-fluid > div {
  width: fit-content;
  align-items: center;
  padding: 0;
}
.line-header .container .row-fluid div[data-zone-alias=header-contact] a {
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}
.line-header .container .row-fluid div[data-zone-alias=header-contact] a:hover {
  color: #F55353;
}
.line-header .container .row-fluid div[data-zone-alias=header-membre] {
  position: relative;
  padding-left: 20px;
  padding-right: 0;
}
.line-header .container .row-fluid div[data-zone-alias=header-social] .content {
  margin-top: -3px;
}
.line-header .container .row-fluid div[data-zone-alias=header-social] .content td {
  padding: 0;
}
.line-header .zone-header {
  padding: 0;
}
@media (min-width: 992px) {
  .line-header .zone-header {
    padding-top: 15px;
  }
}
@media (min-width: 992px) {
  .line-header .zone-header .rf-mod-header-wrapper {
    padding-right: 10px;
  }
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper {
  padding: 0;
}
@media (max-width: 991px) {
  .line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper {
    justify-content: flex-start;
  }
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper {
  /*
  .header-ext-custom {
  	order: 1;
  	margin-right: 10px;
  	a {
  		color: $clrBlack;
  		font-size: 12px;
  		line-height: 15px;
  		font-weight: 300;
  		display: inline-block;
  		&:first-child {
  			border-right: 1px solid $clrBlack;
  			padding-right: 9px;
  			margin-right: 5px;
  		}
  		&:hover {
  			text-decoration: none;
  			color: $secondary;
  		}
  	}
  	@include max-md {
  		display: none;
  	}
  }
  */
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext {
  margin-left: 10px;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login {
  order: 1;
  margin-left: 0;
  padding-bottom: 0;
  letter-spacing: 0;
  text-transform: none !important;
}
@media (max-width: 991px) {
  .line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login {
    display: none;
  }
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login .member-greeting {
  font-size: 14px !important;
  color: #3b4180 !important;
  font-weight: 500 !important;
  text-transform: none !important;
  line-height: 16px !important;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a {
  font-size: 14px;
  color: #161E54;
  font-weight: 500;
  vertical-align: text-bottom;
  line-height: 16px;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a:hover {
  color: #F55353;
  text-decoration: none;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn {
  border: 0;
  padding: 0;
  text-transform: inherit;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  height: auto;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login .separator {
  height: 4px;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-language {
  order: 2;
  line-height: 16px;
  vertical-align: baseline;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-language a {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-decoration: none;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-language a:hover {
  color: #F55353;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-social-links {
  order: 3;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-social-links a.social-link span {
  display: none;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-social-links a.social-link {
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-bottom: -2px;
  background-size: cover !important;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-social-links a.social-link.facebook {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/fb-round.svg") center center no-repeat;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-social-links a.social-link.linkedin {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/linkedin-rond.svg") center center no-repeat;
}
.line-header .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-social-links a.social-link:hover {
  filter: brightness(4) hue-rotate(-244deg);
}

.line-infolettre-cta {
  padding-top: 75px;
  background: linear-gradient(0deg, rgb(255, 255, 255) 62%, rgb(247, 245, 245) 62%);
}
@media (max-width: 991px) {
  .line-infolettre-cta {
    padding-top: 55px;
    background: linear-gradient(0deg, rgb(255, 255, 255) 52%, rgb(247, 245, 245) 52%);
  }
}
@media (max-width: 767px) {
  .line-infolettre-cta {
    background: linear-gradient(0deg, rgb(255, 255, 255) 72%, rgb(247, 245, 245) 72%);
  }
}
.line-infolettre-cta .container {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .line-infolettre-cta .container {
    padding-left: 45px;
    padding-right: 45px;
  }
}
.line-infolettre-cta .container .row {
  background-color: #6cc5d8;
  border-radius: 15px;
  padding: 55px 0 50px 0;
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/Ondes_Bleu.svg") no-repeat #6cc5d8;
  background-position: calc(100% + 200px) 118px;
}
@media (max-width: 991px) {
  .line-infolettre-cta .container .row {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .line-infolettre-cta .container .row {
    background-position: calc(100% + 170px) calc(100% + 220px);
    background-size: 360px;
  }
}
.line-infolettre-cta .container .row > div {
  padding: 0 98px;
}
@media (max-width: 991px) {
  .line-infolettre-cta .container .row > div {
    padding: 0px 60px;
  }
}
@media (max-width: 767px) {
  .line-infolettre-cta .container .row > div {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .line-infolettre-cta .container .row > div:nth-child(1) {
    padding-bottom: 110px;
  }
}
.line-infolettre-cta .container .row > div .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 195px;
}
@media (max-width: 767px) {
  .line-infolettre-cta .container .row > div .content {
    text-align: center;
    min-height: auto;
  }
}
.line-infolettre-cta .container .row > div .content h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-infolettre-cta .container .row > div .content h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.line-infolettre-cta .container .row > div .content h2 {
  color: #fff;
}
@media (max-width: 767px) {
  .line-infolettre-cta .container .row > div .content h2 {
    margin-bottom: 30px;
  }
}
.line-infolettre-cta .container .row > div .content p {
  margin-bottom: 0;
}
.line-infolettre-cta .container .row > div .content p a {
  color: #fff !important;
}
@media (min-width: 768px) {
  .line-infolettre-cta .container div[data-zone-alias=Zone-CTA-infolettre] {
    border-right: 1px solid #fff;
  }
}
@media (max-width: 767px) {
  .line-infolettre-cta .container div[data-zone-alias=Zone-CTA-infolettre]:after {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    bottom: 55px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
  }
}
.line-footer-1, .line-footer-2, .line-footer-3, .line-footer-4 {
  background-color: #fff;
}

.line-footer-1 {
  padding-top: 75px;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .line-footer-1 {
    padding-top: 60px;
  }
}
.line-footer-1 .container > .row:after {
  content: "";
  width: calc(100% - 30px);
  height: 1px;
  background-color: #161E54;
  position: relative;
  top: 3px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .line-footer-1 .container > .row:after {
    top: 20px;
  }
}
@media (max-width: 767px) {
  .line-footer-1 .container > .row:after {
    top: 40px;
  }
}
.line-footer-1 .container > .row > div {
  float: left;
  width: 50%;
}
@media (max-width: 767px) {
  .line-footer-1 .container > .row > div {
    width: 100%;
  }
  .line-footer-1 .container > .row > div .content, .line-footer-1 .container > .row > div p {
    text-align: center !important;
  }
  .line-footer-1 .container > .row > div .content a, .line-footer-1 .container > .row > div p a {
    margin-top: 35px;
  }
}

.line-footer-2 {
  padding-top: 12px;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .line-footer-2 {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .line-footer-2 {
    padding-top: 75px;
  }
}
.line-footer-2 .container > .row:after {
  content: "";
  width: calc(100% - 30px);
  height: 1px;
  background-color: #161E54;
  position: relative;
  top: 18px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-footer-2 .container > .row:after {
    top: 38px;
  }
}
@media (max-width: 767px) {
  .line-footer-2 .container > .row > div:nth-child(1) .content {
    text-align: center;
  }
}
.line-footer-2 .container > .row > div:nth-child(1) .content p {
  font-size: 11px;
  line-height: 15px;
  font-weight: 500;
}
.line-footer-2 .container > .row > div:nth-child(1) .content p br {
  display: block !important;
}
.line-footer-2 .container > .row > div:nth-child(1) .content a.social-link {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-bottom: -2px;
  background-size: cover !important;
  margin-top: 55px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .line-footer-2 .container > .row > div:nth-child(1) .content a.social-link {
    margin-top: 5px;
    margin-bottom: 35px;
  }
}
.line-footer-2 .container > .row > div:nth-child(1) .content a.social-link.facebook {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/fb-round.svg") center center no-repeat;
}
.line-footer-2 .container > .row > div:nth-child(1) .content a.social-link.linkedin {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/linkedin-rond.svg") center center no-repeat;
}
.line-footer-2 .container > .row > div:nth-child(1) .content a.social-link:hover {
  filter: brightness(4) hue-rotate(-244deg);
}
.line-footer-2 .container > .row > div:nth-child(1) .content a.social-link:not(:first-child) {
  margin-left: 10px;
}
.line-footer-2 .container > .row > div:nth-child(2) .content {
  display: flex;
  justify-content: space-between;
  padding-right: 160px;
}
@media (max-width: 1199px) {
  .line-footer-2 .container > .row > div:nth-child(2) .content {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .line-footer-2 .container > .row > div:nth-child(2) .content {
    display: block;
    column-count: 2;
    padding-left: 70px;
  }
}
@media (max-width: 767px) {
  .line-footer-2 .container > .row > div:nth-child(2) .content {
    display: block;
    column-count: 1;
    padding-left: 0;
    text-align: center;
  }
}
.line-footer-2 .container > .row > div:nth-child(2) .content .row {
  margin: 0;
}
.line-footer-2 .container > .row > div:nth-child(2) .content .row p {
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
}
.line-footer-2 .container > .row > div:nth-child(2) .content .row p a {
  text-decoration: none !important;
}
.line-footer-2 .container > .row > div:nth-child(2) .content .row ul {
  list-style: none;
  padding-left: 0;
}
.line-footer-2 .container > .row > div:nth-child(2) .content .row ul li {
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
}
.line-footer-2 .container > .row > div:nth-child(2) .content .row ul li a {
  text-decoration: none !important;
}

.line-footer-3 {
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .line-footer-3 {
    padding-top: 55px;
  }
}
.line-footer-3 .container > .row:after {
  content: "";
  width: calc(100% - 30px);
  height: 1px;
  background-color: #161E54;
  position: relative;
  top: 4px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-footer-3 .container > .row:after {
    top: 14px;
  }
}
.line-footer-3 .container > .row > div:nth-child(1) p {
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
  margin-top: 18px;
}
.line-footer-3 .container > .row > div:nth-child(3) a {
  margin-top: 11px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .line-footer-3 .container > .row > div .content, .line-footer-3 .container > .row > div p {
    text-align: center !important;
  }
}

.line-footer-4 {
  padding-top: 6px;
}
@media (max-width: 767px) {
  .line-footer-4 {
    padding-top: 48px;
    padding-bottom: 15px;
  }
}
.line-footer-4 p {
  font-size: 12px;
  line-height: 21px;
  font-weight: 500;
  margin-bottom: 2px;
}
.line-footer-4 .lien-riposte {
  text-decoration: none !important;
}
.line-footer-4 .lien-riposte:hover {
  text-decoration: underline !important;
}

.poweredBy-wrapper {
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  .line-menu {
    background-color: #fff;
    padding: 34px 30px 10px 30px;
    height: 135px;
  }
  .line-menu:after {
    display: none;
  }
  .line-menu > .container {
    transition: top 250ms;
  }
  .line-menu > .container .zone-html {
    z-index: 10000;
  }
  .line-menu > .container .zone-html .content img {
    max-width: 235px;
  }
  .line-menu > .container .zone-menu {
    padding: 20px 0 0 0;
  }
  .line-menu > .container .zone-menu .navbar .navbar-header {
    background-color: #fff !important;
    z-index: 1;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav {
    float: right;
    text-align: right;
    background-color: #fff;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li {
    float: none;
    display: inline-block;
    min-height: 55px;
    /* JQuery copy social to mobile menu */
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container {
    display: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-69568] {
    display: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-69569] {
    display: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-69570] {
    display: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a {
    font-family: "Open sans", sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    text-transform: inherit;
    height: auto;
    /*padding: 0px 30px;*/
    /*display: inline-flex;*/
    align-items: center;
    margin-right: 15px;
    margin-top: 0;
    margin-bottom: 0;
    min-width: 0;
    border-radius: 50px;
    display: inline-block;
    white-space: break-spaces;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:hover, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:active, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:focus {
    text-decoration: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a {
    height: auto !important;
    padding: 10px 30px !important;
    background-color: transparent !important;
    color: #161E54 !important;
    transition: all 150ms !important;
    border: 1px solid #F55353 !important;
    margin-left: 10px;
    margin-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 767px) {
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a {
    white-space: normal !important;
  }
}
@media (min-width: 992px) {
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:hover, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:active, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:focus {
    text-decoration: none !important;
    background-color: #fff !important;
    border: 1px solid #fff !important;
    color: #161E54 !important;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:hover, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:focus {
    border: 1px solid #F55353 !important;
    background-color: #F55353 !important;
    color: #fff !important;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container {
    display: none !important;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a {
    position: relative;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    font-family: "Open sans", sans-serif;
    color: #161E54;
    padding: 30px 10px 22px 10px;
    text-transform: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a.dropdown-toggle {
    display: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:hover, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:focus, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.active {
    background-color: transparent;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:hover a, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:focus a, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.active a {
    color: #F55353;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu {
    overflow: hidden;
    border: none;
    padding: 18px 0 20px 0;
    box-shadow: 0px 3px 6px rgba(22, 30, 84, 0.2);
    border-radius: 4px;
    background-color: #fff;
    overflow: visible;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li {
    margin-left: 15px;
    margin-right: 15px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li:hover {
    background-color: transparent;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li a {
    color: #161E54;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    text-transform: none;
    padding: 3px 10px !important;
    border-radius: 4px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li a:hover, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li a:focus {
    color: #1DA6C3 !important;
    background-color: rgba(29, 166, 195, 0.1);
    font-weight: 500;
  }
}
@media (max-width: 991px) {
  .line-menu {
    background-color: #fff;
    padding: 0;
    height: 116px;
  }
  .line-menu:after {
    border-top: 0;
  }
  .line-menu.menuopened > .container {
    background-color: #fff !important;
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
  }
  .line-menu.menuopened > .container .icon-bar {
    background-color: #F55353 !important;
  }
  .line-menu > .container {
    width: 100% !important;
    padding-left: 30px;
    padding-right: 30px;
  }
  .line-menu > .container .zone-html {
    width: 70%;
    height: 116px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .line-menu > .container .zone-html a img {
    max-width: 212px;
  }
  .line-menu > .container .zone-menu {
    padding: 0;
    width: 100%;
    height: 116px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .line-menu > .container .zone-menu .navbar {
    z-index: 1;
  }
  .line-menu > .container .zone-menu .navbar .navbar-header .navbar-toggle {
    margin-top: 38px;
    margin-right: 35px;
    margin-bottom: 25px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-header .navbar-toggle .icon-bar {
    background-color: #F55353;
    width: 38px;
    border-radius: 30px;
    height: 3px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-header .navbar-toggle.collapsed .icon-bar {
    height: 3px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-header .navbar-toggle.collapsed .icon-bar + .icon-bar {
    margin-top: 8px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-header .navbar-toggle.collapsed > span:nth-child(2), .line-menu > .container .zone-menu .navbar .navbar-header .navbar-toggle.collapsed > span:last-child {
    width: 38px;
    margin-left: auto;
  }
  .line-menu > .container .zone-menu .navbar .navbar-header .navbar-toggle.collapsed > span:nth-child(2):after {
    content: "";
    width: 4px;
    height: 4px;
    background-color: #fff;
    display: block;
    position: absolute;
    right: 3px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-header .navbar-toggle.collapsed > span:last-child:after {
    content: "";
    width: 4px;
    height: 4px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 3px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse {
    transition: height 150ms linear;
    border-color: #fff;
    overflow-x: hidden;
    height: 0;
    width: 100%;
    background-color: #fff;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse.collapse.in {
    height: calc(100vh - 100px);
    width: 100%;
    padding-bottom: 0;
    overflow-x: hidden;
    border: none;
    box-shadow: none;
    border-color: #fff;
    background-color: #F7F5F5;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav {
    background-color: #F7F5F5;
    float: none;
    text-align: left;
    padding: 0 50px 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li {
    width: 100%;
    display: block;
    text-align: left;
    background-color: transparent;
    border-bottom: 1px solid #ccc;
    padding: 0;
    min-height: 60px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:before {
    content: "";
    background-image: url(https://cdn.ca.yapla.com/company/CPYXY5pcsfVTdJxtOSKN2gQ3m/asset/images/Logos%20et%20Icons/menumobilearrow.svg);
    height: 29px;
    width: 35px;
    background-size: contain;
    display: block;
    position: absolute;
    left: 0;
    top: 15px;
    display: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li {
    /* JQuery copy social to mobile menu*/
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container {
    border-bottom: 0;
    text-align: center;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links {
    display: block !important;
    order: 3;
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links a.social-link span {
    display: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links a.social-link {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-bottom: -2px;
    background-size: cover !important;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links a.social-link.facebook {
    background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/fb-round.svg") center center no-repeat;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links a.social-link.linkedin {
    background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/linkedin-rond.svg") center center no-repeat;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links a.social-link:hover {
    filter: brightness(4) hue-rotate(-244deg);
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links a.social-link:not(:first-child) {
    margin-left: 18px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] {
    text-align: center;
    border-bottom: 0;
    min-height: 50px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a {
    font-family: "Open sans", sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    text-transform: inherit;
    height: auto;
    /*padding: 0px 30px;*/
    /*display: inline-flex;*/
    align-items: center;
    margin-right: 15px;
    margin-top: 0;
    margin-bottom: 0;
    min-width: 0;
    border-radius: 50px;
    display: inline-block;
    white-space: break-spaces;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:hover, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:active, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:focus {
    text-decoration: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a {
    height: auto !important;
    padding: 10px 30px !important;
    background-color: #F55353 !important;
    color: #fff !important;
    transition: all 150ms !important;
    border: 1px solid #F55353 !important;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    margin-right: 0;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a {
    white-space: normal !important;
  }
}
@media (max-width: 991px) {
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:hover, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:active, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li[rel=data-menu-70595] a:focus {
    text-decoration: none !important;
    background-color: transparent !important;
    border: 1px solid #F55353 !important;
    color: #161E54 !important;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container {
    text-align: center;
    border-bottom: 0;
    min-height: 50px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login .member-greeting {
    display: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a {
    font-family: "Open sans", sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    text-transform: inherit;
    height: auto;
    /*padding: 0px 30px;*/
    /*display: inline-flex;*/
    align-items: center;
    margin-right: 15px;
    margin-top: 0;
    margin-bottom: 0;
    min-width: 0;
    border-radius: 50px;
    display: inline-block;
    white-space: break-spaces;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a:hover, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a:active, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a:focus {
    text-decoration: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a {
    height: auto !important;
    padding: 10px 30px !important;
    background-color: transparent !important;
    color: #161E54 !important;
    transition: all 150ms !important;
    border: 1px solid #F55353 !important;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    margin-right: 0;
    margin-bottom: 10px !important;
    text-transform: initial !important;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a {
    white-space: normal !important;
  }
}
@media (max-width: 991px) {
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a:hover, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a:active, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a:focus {
    text-decoration: none !important;
    background-color: #fff !important;
    border: 1px solid #fff !important;
    color: #161E54 !important;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a.member-myprofile {
    height: auto !important;
    padding: 10px 30px !important;
    background-color: #F55353 !important;
    color: #fff !important;
    transition: all 150ms !important;
    border: 1px solid #F55353 !important;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a.member-myprofile:hover, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a.member-myprofile:active, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a.member-myprofile:focus {
    text-decoration: none !important;
    background-color: transparent !important;
    border: 1px solid #F55353 !important;
    color: #161E54 !important;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login .separator {
    display: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    font-family: "Open sans", sans-serif;
    color: #161E54;
    padding: 19px 0 5px 0;
    text-transform: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a:hover, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a:focus {
    color: #1DA6C3 !important;
    background-color: transparent;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a.dropdown-toggle {
    display: block;
    text-align: right;
    margin-top: -46px;
    height: 60px !important;
    padding: 0 !important;
    width: 100%;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a.dropdown-toggle .caret {
    content: "";
    width: 18px;
    height: 11px;
    margin-top: 26px;
    right: 10px !important;
    top: 17px !important;
    position: initial !important;
    display: block;
    float: right;
    background-image: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/icon-arrow-menu.svg");
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.open .dropdown-toggle .caret {
    transform: rotate(-90deg);
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.open .dropdown-menu {
    max-height: 800px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:hover a, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:focus a, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.active a {
    color: #1DA6C3;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu {
    overflow: hidden;
    box-shadow: none;
    border: none;
    display: block !important;
    transition: max-height 500ms;
    background-color: transparent;
    height: auto;
    max-height: 0;
    padding: 0 10px !important;
    margin-bottom: 0;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu.dropdown-menu-level-2 li.active, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu.dropdown-menu-level-2 li:hover, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu.dropdown-menu-level-3 li.active, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu.dropdown-menu-level-3 li:hover {
    background-color: transparent;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li {
    width: 100%;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li:last-child {
    padding-bottom: 40px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li a {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    font-family: "Open sans", sans-serif;
    color: #161E54;
    padding: 19px 0 5px 0;
    text-transform: none;
    white-space: break-spaces;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li a:hover, .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li a:focus {
    color: #1DA6C3 !important;
    background-color: transparent;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li.open .dropdown-menu {
    padding: 10px;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li.active:hover a {
    color: #1DA6C3;
  }
  .overflowhidden .line-menu:not(.sticked) .navbar-header {
    height: 110px;
  }
  .overflowhidden .line-menu > .container {
    height: 110px;
    border-bottom: none;
  }
  .overflowhidden .line-menu > .container .zone-image a {
    margin-left: 5px;
  }
}
@media (min-width: 992px) {
  .line-menu:not(.sticked, .menuopened) > .container {
    top: -100px;
    position: static;
  }
  .line-menu.sticked {
    height: 106px;
  }
  .line-menu.sticked > .container > .row {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 992px) and (min-width: 768px) {
  .line-menu.sticked > .container > .row {
    width: 732px;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .line-menu.sticked > .container > .row {
    width: 952px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .line-menu.sticked > .container > .row {
    width: 1152px;
  }
}
@media (min-width: 992px) {
  .line-menu.sticked > .container > .row .zone-html {
    height: 97px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .line-menu.sticked > .container > .row .zone-html .content img {
    width: 210px;
  }
  .line-menu.sticked > .container > .row .zone-menu {
    padding-right: 0;
  }
  .line-menu.sticked > .container > .row .zone-menu .navbar .navbar-nav {
    margin-top: 8px;
  }
  .line-menu.sticked > .container > .row .zone-menu .navbar .navbar-nav li.menu-type-separator a.dropdown-toggle span.caret {
    top: 5px !important;
  }
  .line-menu.sticked > .container > .row .zone-menu .navbar .navbar-nav > li > a {
    padding: 15px 10px;
  }
  .line-menu.sticked > .container > .row .zone-menu .navbar .navbar-nav li.menu-type-separator a.dropdown-toggle span.caret {
    top: 5px !important;
  }
  .line-menu.sticked:not(.menuopened) > .container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 98px;
    z-index: 9999;
    background-color: #fff;
    padding: 0 45px;
    border-bottom: 1px solid #E4E4E4;
  }
  .line-menu.sticked:not(.menuopened) > .container .zone-html .content {
    padding-top: 8px;
  }
}
@media (max-width: 991px) {
  .line-menu:not(.sticked, .menuopened) > .container {
    top: -100px;
    position: static;
    height: 0;
    padding-left: 45px;
    padding-right: 47px;
  }
  .line-menu.sticked {
    height: 106px;
  }
  .line-menu.sticked > .container > .row .zone-html {
    height: 97px;
  }
  .line-menu.sticked > .container > .row .zone-html .content img {
    width: 210px;
  }
  .line-menu.sticked > .container > .row .zone-menu .navbar-toggle {
    margin-right: 30px !important;
    margin-top: 30px;
  }
  .line-menu.sticked > .container > .row .zone-menu .navbar .navbar-nav {
    margin-top: 8px;
  }
  .line-menu.sticked > .container > .row .zone-menu .navbar .navbar-nav li.menu-type-separator a.dropdown-toggle span.caret {
    top: 5px !important;
  }
  .line-menu.sticked:not(.menuopened) > .container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 98px;
    z-index: 9999;
    background-color: #fff;
    padding: 0 45px;
    border-bottom: 1px solid #E4E4E4;
  }
  .line-menu.sticked:not(.menuopened) > .container .zone-html .content {
    padding-top: 8px;
  }
  .line-menu.sticked:not(.menuopened) > .container .zone-html .content img {
    max-width: 212px;
  }
  .line-menu.sticked.menuopened > .container {
    position: fixed;
    background-color: #fff;
    padding-left: 45px;
    padding-right: 47px;
    height: 120px;
  }
  .line-menu.sticked.menuopened .zone-html .content {
    padding-top: 15px;
  }
  .line-menu.sticked.menuopened .zone-html .content img {
    transition: width 250ms;
  }
  .line-menu.sticked.menuopened .zone-menu .navbar-toggle {
    margin-top: 30px !important;
    margin-bottom: 40px !important;
  }
}
/* OPTION - Hide menu item when logged */
body.member--isConnected .nav.navbar-nav > li[rel=data-menu-70595] {
  display: none !important;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .line-menu > .container .zone-html {
    width: 20%;
  }
  .line-menu > .container .zone-html .content img {
    max-width: 165px;
    margin-top: 18px;
  }
  .line-menu > .container .zone-menu {
    width: 80%;
  }
  .line-menu > .container .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a {
    font-size: 14px;
  }
}
.line-banner-home {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.line-banner-home:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/Banni%C3%A8re/Courbe_V2.svg") bottom center no-repeat;
  background-size: contain;
  width: 101%;
  height: 100%;
  position: absolute;
  bottom: -1px;
  pointer-events: none;
}
@media (max-width: 991px) {
  .line-banner-home:after {
    width: 160%;
  }
}
@media (max-width: 767px) {
  .line-banner-home:after {
    width: 180%;
  }
}
.line-banner-home .mod-banner__img {
  height: 700px;
  background-color: #ECEEED;
}
@media (max-width: 991px) {
  .line-banner-home .mod-banner__img {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .line-banner-home .mod-banner__img {
    height: 650px;
    background-size: auto 400px;
    background-position: 0 100%;
  }
}
@media (max-width: 575px) {
  .line-banner-home .mod-banner__img {
    height: 650px;
    background-size: auto 330px;
    background-position: 40% 100%;
  }
}
.line-banner-home .mod-banner__img .mod-banner__content {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .line-banner-home .mod-banner__img .mod-banner__content {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .line-banner-home .mod-banner__img .mod-banner__content {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .line-banner-home .mod-banner__img .mod-banner__content {
    width: 1152px;
  }
}
.line-banner-home .mod-banner__img .mod-banner__content {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  top: 0;
  transform: none;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .line-banner-home .mod-banner__img .mod-banner__content {
    margin-right: 30px;
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .line-banner-home .mod-banner__img .mod-banner__content {
    justify-content: flex-start;
  }
}
@media (max-width: 991px) {
  .line-banner-home .mod-banner__img .mod-banner__content h1 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .line-banner-home .mod-banner__img .mod-banner__content h1 {
    margin-top: 35px;
  }
}
.line-banner-home .mod-banner__img .mod-banner__content h1 br {
  display: block !important;
}
.line-banner-home .mod-banner__img .mod-banner__content h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-banner-home .mod-banner__img .mod-banner__content h3 {
    font-size: 24px;
    line-height: 34px;
  }
}
.line-banner-home .mod-banner__img .mod-banner__content h3 {
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-banner-home .mod-banner__img .mod-banner__content h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 0;
  }
}
.line-banner-home .mod-banner__img .mod-banner__content .btn-primary-revert {
  margin-top: 35px;
}
@media (max-width: 575px) {
  .line-banner-home .mod-banner__img .mod-banner__content .btn-primary-revert {
    max-width: 260px;
  }
}

.line-banner-title {
  padding-top: 115px;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .line-banner-title {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .line-banner-title {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  .line-banner-title .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.line-banner-title .container .row {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 991px) {
  .line-banner-title .container .row .content {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .line-banner-title .container .row .content {
    max-width: 90%;
  }
}
.line-banner-title .container .row .content p {
  max-width: 768px;
  width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.line-banner-title .container .row .content p:nth-child(1):before {
  content: "";
  display: block;
  margin-bottom: -36px;
  width: calc(50% - 65px);
  height: 1px;
  background-color: #161E54;
}
.line-banner-title .container .row .content p:nth-child(1):after {
  content: "";
  display: block;
  margin-bottom: -36px;
  right: 0;
  top: 0;
  width: calc(50% - 65px);
  height: 1px;
  position: absolute;
  background-color: #161E54;
}
.line-banner-title .container .row .content img {
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  .line-banner-title .container .row .content img {
    padding-bottom: 20px;
  }
}
.line-banner-title .container .row .content h1 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-banner-title .container .row .content h1 {
    font-size: 30px;
    line-height: 38px;
  }
}
.line-banner-title .container .row .content h1 {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .line-banner-title .container .row .content h1 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .line-banner-title .container .row .content h1 {
    margin-bottom: 10px;
  }
}
.line-banner-title .container .row .content h3 {
  color: #F55353;
}
@media (max-width: 991px) {
  .line-banner-title .container .row .content h3 br {
    display: none;
  }
}

.line-banner-img {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .line-banner-img {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .line-banner-img {
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .line-banner-img .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.line-banner-img .container .mod-banner__img {
  height: 490px;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .line-banner-img .container .mod-banner__img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .line-banner-img .container .mod-banner__img {
    height: 190px;
  }
}

.line-banner-text {
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .line-banner-text .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.line-banner-text .container .content {
  background-color: #fff;
  padding: 80px 100px 80px 100px;
  border-radius: 15px;
  margin-top: -85px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .line-banner-text .container .content {
    padding: 85px 64px 40px 64px;
    margin-top: -55px;
  }
}
@media (max-width: 767px) {
  .line-banner-text .container .content {
    margin-top: -25px;
    width: 90%;
  }
}
@media (max-width: 767px) {
  .line-banner-text .container .content {
    padding: 48px 32px;
  }
}
.line-banner-text .container .content h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-banner-text .container .content h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-banner-text .container .content h2 {
  margin-bottom: 30px;
  display: inline-block;
  /*
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0px 40px;
  */
  /*
  @include max-md {
      font-size: 28px;
      line-height: 36px;
  }

  @include max-sm {
      font-size: 26px;
      line-height: 32px;
  }
  */
}
@media (min-width: 1200px) {
  .line-banner-text .container .content h2:after {
    content: "";
    width: 115px;
    height: 1px;
    background-color: #161E54;
    position: relative;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 8px;
    margin-left: 40px;
  }
}
.line-banner-text .container .content p:nth-child(1):before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #161E54;
}
.line-banner-text .container .content .btn {
  margin-top: 25px;
}

.line-banner-bg-third {
  background: linear-gradient(180deg, rgb(247, 245, 245) 55%, rgb(245, 115, 115) 55%);
}
@media (max-width: 991px) {
  .line-banner-bg-third {
    background: linear-gradient(180deg, rgb(247, 245, 245) 70%, rgb(245, 115, 115) 70%);
  }
}
@media (max-width: 767px) {
  .line-banner-bg-third {
    background: linear-gradient(180deg, rgb(247, 245, 245) 50%, rgb(245, 115, 115) 50%);
  }
}

/*########################### Bottin ###########################*/
.section-annuaire-membre {
  overflow-x: hidden;
  padding-top: 75px;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .section-annuaire-membre {
    padding-top: 20px;
  }
}
.section-annuaire-membre .container .row {
  display: flex;
  flex-direction: column;
}
.section-annuaire-membre .container .row div:last-of-type {
  order: 2;
}
.section-annuaire-membre .container .row div:last-of-type .mod_directory__result_bloc .nav-tabs {
  display: none;
}
.section-annuaire-membre .container .row div:last-of-type .mod_directory__result_bloc .nav-tabs li a {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0;
  font-weight: 500;
  text-transform: initial;
  background-color: transparent;
  color: #161E54;
  border-bottom: 5px solid #161E54;
  margin-bottom: -4px;
}
.section-annuaire-membre .container .row div:last-of-type .mod_directory__result_bloc .nav-tabs li a.active {
  background-color: transparent;
}
.section-annuaire-membre .container .row div:last-of-type .mod_directory__result_bloc .tab-pane .member-card .card-container {
  background-color: #fff;
  padding: 32px;
  margin-bottom: 15px;
  min-height: 292px;
}
.section-annuaire-membre .container .row div:last-of-type .mod_directory__result_bloc .tab-pane .member-card .card-container a {
  text-decoration: none !important;
}
.section-annuaire-membre .container .row div:last-of-type .mod_directory__result_bloc .tab-pane .member-card .card-container h2 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  text-decoration: underline;
}
.section-annuaire-membre .container .row div:last-of-type .mod_directory__result_bloc .tab-pane .member-card .card-container h2:hover {
  color: #F55353;
}
.section-annuaire-membre .container .row div:last-of-type .mod_directory__result_bloc .tab-pane .member-card .card-container .champs-ortho,
.section-annuaire-membre .container .row div:last-of-type .mod_directory__result_bloc .tab-pane .member-card .card-container .champs-audio {
  font-size: 16px;
  color: #F55353;
}
.section-annuaire-membre .container .row div:last-of-type .mod_directory__result_bloc .tab-pane .member-card .card-container .champs-ortho.Non,
.section-annuaire-membre .container .row div:last-of-type .mod_directory__result_bloc .tab-pane .member-card .card-container .champs-audio.Non {
  display: none;
}
.section-annuaire-membre .container .row div:last-of-type .mod_directory__result_bloc .tab-pane .member-card .card-container h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.section-annuaire-membre .container .row div:last-of-type .mod_directory__result_bloc .tab-pane .member-card .card-container h4 img {
  margin-right: 16px;
}
.section-annuaire-membre .container .row div .mod_directory__article {
  order: 1;
  position: relative;
}
.section-annuaire-membre .container .row div .mod_directory__article .header-liste-annuaire {
  max-width: 100%;
  width: 100%;
  margin: auto auto auto 0;
  padding: 0;
  display: flex;
  position: absolute;
  top: 155px;
  left: 0;
  right: 0;
}
.section-annuaire-membre .container .row div .mod_directory__article .header-liste-annuaire > div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  line-height: 21px;
  font-weight: 300;
  color: #fff;
  font-weight: 700;
  background-color: #161E54;
  padding: 30px 30px 30px 40px;
  width: 25%;
  text-align: center;
}
@media (max-width: 767px) {
  .section-annuaire-membre .container .row div .mod_directory__article .header-liste-annuaire > div {
    display: none;
  }
}
.section-annuaire-membre .container .row div .mod_directory__article .header-liste-annuaire > div:first-child {
  border-radius: 5px 0 0 5px;
}
.section-annuaire-membre .container .row div .mod_directory__article .header-liste-annuaire > div:last-child {
  border-radius: 0 5px 5px 0;
}
.section-annuaire-membre .container .row div .mod_directory__article .header-liste-annuaire > div:not(:last-child) {
  margin-right: 3px;
}
@media (max-width: 991px) {
  .section-annuaire-membre .container .row div .mod_directory__article .header-liste-annuaire > div {
    padding: 15px;
    font-size: 16px;
  }
}
.section-annuaire-membre .container .row div .js-directory-search-box {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .section-annuaire-membre .container .row div .js-directory-search-box {
    display: flex;
    flex-direction: row;
  }
}
@media (max-width: 991px) {
  .section-annuaire-membre .container .row div .js-directory-search-box {
    margin-bottom: 64px;
  }
}
.section-annuaire-membre .container .row div .js-directory-search-box form {
  width: 100%;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 1200px) {
  .section-annuaire-membre .container .row div .js-directory-search-box form {
    width: calc(100% - 200px);
    float: left;
  }
}
@media (max-width: 991px) {
  .section-annuaire-membre .container .row div .js-directory-search-box form {
    padding: 15px 15px 10px 15px;
    font-size: 16px;
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
@media (max-width: 767px) {
  .section-annuaire-membre .container .row div .js-directory-search-box form {
    display: grid;
    grid-template-columns: 100%;
    gap: 0;
  }
}
.section-annuaire-membre .container .row div .js-directory-search-box form > div {
  width: 33.333%;
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .section-annuaire-membre .container .row div .js-directory-search-box form > div {
    align-items: flex-start;
    width: 50%;
  }
}
@media (max-width: 991px) {
  .section-annuaire-membre .container .row div .js-directory-search-box form > div {
    width: 100%;
  }
}
.section-annuaire-membre .container .row div .js-directory-search-box form .search_input {
  width: 100%;
}
.section-annuaire-membre .container .row div .js-directory-search-box form .chosen-container {
  width: 100%;
}
.section-annuaire-membre .container .row div .js-directory-search-box form .chosen-container .chosen-choices {
  border-radius: 30px;
  max-width: 100%;
  padding: 12px 15px 12px 15px !important;
}
.section-annuaire-membre .container .row div .js-directory-search-box form .chosen-container .chosen-choices li.search-choice {
  text-transform: none;
  box-shadow: none;
}
.section-annuaire-membre .container .row div .js-directory-search-box form .chosen-container .chosen-drop {
  width: fit-content;
}
.section-annuaire-membre .container .row div .js-directory-search-box form select {
  border-radius: 30px !important;
}
.section-annuaire-membre .container .row div .js-directory-search-box form .chosen-action__wrapper a {
  display: none;
}
.section-annuaire-membre .container .row div .js-directory-search-box > div {
  padding-left: 20px;
  padding-top: 10px;
}
@media (min-width: 1200px) {
  .section-annuaire-membre .container .row div .js-directory-search-box > div {
    width: 200px;
    float: left;
    text-align: right;
  }
}
@media (max-width: 991px) {
  .section-annuaire-membre .container .row div .js-directory-search-box > div {
    padding-top: 0;
    padding-left: 0 !important;
    margin-left: 5px !important;
  }
}
@media (max-width: 991px) {
  .section-annuaire-membre .container .row div .js-directory-search-box > div.section {
    padding-left: 15px;
    margin-left: 40px;
  }
}
.section-annuaire-membre .container .row div .js-directory-search-box > div.section .btn-primary {
  margin-bottom: 8px;
  margin-left: 12px;
  margin-top: 10px;
}
.section-annuaire-membre .container .row div .js-directory-search-box + div {
  margin-top: 0;
  padding-bottom: 16px;
  position: relative;
  display: block;
}
.section-annuaire-membre .container .row div .js-directory-search-box + div:before {
  content: "";
  width: 5000px;
  height: 100%;
  left: -2500px;
  position: absolute;
  display: block;
  background-color: transparent;
}
.section-annuaire-membre .container .row div .js-directory-search-box + div .tab-content {
  padding-top: 64px;
}
@media (max-width: 991px) {
  .section-annuaire-membre .container .row div .js-directory-search-box + div .tab-content {
    padding-top: 0;
  }
}
.section-annuaire-membre .container .row div .js-directory-search-box + div .tab-content ul {
  padding-left: 0;
  list-style: none;
}
.section-annuaire-membre .container .row div .js-directory-search-box + div .tab-content ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #161E54;
  text-transform: initial;
  padding-left: 0 !important;
}
.section-annuaire-membre .container .row div .js-directory-search-box + div .tab-content ul li:before {
  display: none !important;
}
.section-annuaire-membre .container .row div .js-directory-search-box + div .tab-content .col-md-12 {
  padding-left: 0px;
}

/*###########################  Bottin - Details ###########################*/
.detail-card-container .detail-img {
  text-align: center;
}
.detail-card-container .detail-img img {
  border-radius: 1000px;
  max-width: 920px;
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}
.detail-card-container .detail-img img:nth-child(2) {
  display: none;
}
.detail-card-container .detail-img img[src=""] {
  display: none;
}
.detail-card-container .detail-img img[src=""] + img {
  display: block !important;
  margin-left: auto;
  margin-right: auto;
}
.detail-card-container .detail-img:before {
  content: "";
  position: absolute;
  width: 136px;
  height: 135px;
  left: -65px;
  top: 180px;
  background-image: url("https://cdn.ca.yapla.com/company/CPY2nGHhz9ydScmw4DjuNWQer/asset/images/Site%20web%20-%20Viens%20danser/assets/element-green-dot.svg");
  background-repeat: no-repeat;
}
.detail-card-container .detail-img:after {
  content: "";
  position: absolute;
  width: 136px;
  height: 135px;
  right: -85px;
  top: 180px;
  background-image: url("https://cdn.ca.yapla.com/company/CPY2nGHhz9ydScmw4DjuNWQer/asset/images/Site%20web%20-%20Viens%20danser/assets/element-green-dot.svg");
  background-repeat: no-repeat;
}
.detail-card-container .detail-container {
  display: flex;
  gap: 120px;
  padding-top: 0;
}
.detail-card-container .detail-container.header-fiche {
  padding-top: 5px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 991px) {
  .detail-card-container .detail-container {
    gap: 64px;
  }
}
@media (max-width: 767px) {
  .detail-card-container .detail-container {
    flex-direction: column;
    gap: 20px;
  }
}
.detail-card-container .detail-container .detail-col-left {
  width: 33.33333%;
  text-align: left;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .detail-card-container .detail-container .detail-col-left {
    width: 100%;
    text-align: left;
  }
}
.detail-card-container .detail-container .detail-col-left ul {
  padding-left: 0;
  list-style: none;
}
.detail-card-container .detail-container .detail-col-left ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #161E54;
  text-transform: initial;
  padding-left: 0 !important;
}
.detail-card-container .detail-container .detail-col-left ul li:before {
  display: none !important;
}
.detail-card-container .detail-container .detail-col-left hr {
  margin: 36px 0;
}
.detail-card-container .detail-container .detail-col-left .detail-titre-mobile {
  display: none;
}
@media (max-width: 767px) {
  .detail-card-container .detail-container .detail-col-left .detail-titre-mobile {
    display: block;
  }
}
.detail-card-container .detail-container .detail-col-left .detail-titre-mobile h2 {
  margin-top: 0px;
  margin-bottom: 5px;
}
.detail-card-container .detail-container .detail-col-left .detail-titre-mobile h2 span {
  font-size: 32px !important;
  font-weight: 600;
}
@media (max-width: 991px) {
  .detail-card-container .detail-container .detail-col-left .detail-titre-mobile h2 {
    margin-top: 0;
  }
}
.detail-card-container .detail-container .detail-col-left .detail-titre-mobile h3 span {
  font-size: 21px !important;
  line-height: 26px !important;
  color: #F55353;
  text-transform: inherit;
}
.detail-card-container .detail-container .detail-col-left .detail-titre-mobile h3 span.Non {
  display: none;
}
.detail-card-container .detail-container .detail-col-left .detail-titre-mobile ul {
  padding-left: 0;
}
.detail-card-container .detail-container .detail-col-left .detail-titre-mobile ul li span:not(.object-ecole_membre-field-value) {
  display: none;
}
.detail-card-container .detail-container .detail-col-left .detail-permis-mobile {
  display: none;
}
@media (max-width: 767px) {
  .detail-card-container .detail-container .detail-col-left .detail-permis-mobile {
    display: block;
    padding: 16px 0;
  }
}
.detail-card-container .detail-container .detail-col-left .detail-permis-mobile span {
  font-weight: 600;
  font-size: 18px;
}
.detail-card-container .detail-container .detail-col-left .detail-permis-mobile span img {
  margin-right: 8px;
  position: relative;
  bottom: 3px;
}
.detail-card-container .detail-container .detail-col-left .detail-liste-status span {
  font-weight: bold;
}
.detail-card-container .detail-container .detail-col-left .detail-logo {
  padding-bottom: 0;
  margin-bottom: 25px;
  height: 150px;
  width: 150px;
  border-radius: 100px;
  margin-left: auto;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .detail-card-container .detail-container .detail-col-left .detail-logo {
    margin-left: 0;
  }
}
.detail-card-container .detail-container .detail-col-left .detail-organisation {
  font-size: 21px !important;
  line-height: 26px !important;
  font-weight: 700 !important;
}
.detail-card-container .detail-container .detail-col-left .detail-organisation,
.detail-card-container .detail-container .detail-col-left .detail-specialite,
.detail-card-container .detail-container .detail-col-left .detail-region {
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  color: #161E54;
  padding-bottom: 10px;
}
.detail-card-container .detail-container .detail-col-left .detail-region img {
  margin-right: 8px;
}
.detail-card-container .detail-container .detail-col-left .detail-specialite ul {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  justify-content: center;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.detail-card-container .detail-container .detail-col-left .detail-specialite ul li {
  width: 118px;
  height: auto;
  min-height: 40px;
  border-radius: 25px;
  background-color: #eaeaea;
  display: block;
  color: #000;
  font-size: 10px;
  line-height: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7px;
  margin-bottom: 0;
}
.detail-card-container .detail-container .detail-col-left .detail-adresse {
  font-size: 14px;
  line-height: 20px;
  padding: 25px 0 0 0;
  font-weight: 500;
  color: #161E54;
  border: 0;
}
.detail-card-container .detail-container .detail-col-left .detail-adresse ul {
  margin-bottom: 0;
  padding-left: 0;
}
.detail-card-container .detail-container .detail-col-left .detail-adresse ul li {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #161E54;
  display: block;
}
.detail-card-container .detail-container .detail-col-left .detail-adresse ul li .object-ecole_membre-field-value {
  display: none;
}
.detail-card-container .detail-container .detail-col-left .detail-adresse ul li .object-ecole_membre-field-group_address_street {
  display: block;
}
.detail-card-container .detail-container .detail-col-left .detail-social {
  padding-top: 20px;
  padding-bottom: 40px;
}
.detail-card-container .detail-container .detail-col-left .detail-social a {
  margin-right: 20px;
}
.detail-card-container .detail-container .detail-col-left .detail-social a:last-child {
  margin-right: 0;
}
.detail-card-container .detail-container .detail-col-right {
  width: 66.66666%;
  position: relative;
}
@media (max-width: 767px) {
  .detail-card-container .detail-container .detail-col-right {
    width: 100%;
  }
}
.detail-card-container .detail-container .detail-col-right .detail-titre-container {
  border-bottom: 1px solid #EFF0F4;
  margin-bottom: 40px;
}
.detail-card-container .detail-container .detail-col-right .detail-titre-container h2 {
  font-size: 38px !important;
  line-height: 42px !important;
  font-weight: 500;
  color: #000;
  padding-top: 40px;
  background-color: #fff;
  display: inline;
  position: relative;
  padding: 0 30px 0 0;
  top: 20px;
}
.detail-card-container .detail-container .detail-col-right .detail-titre {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .detail-card-container .detail-container .detail-col-right .detail-titre {
    display: none;
  }
}
.detail-card-container .detail-container .detail-col-right .detail-titre h2 {
  margin-top: 0px;
  margin-bottom: 5px;
}
.detail-card-container .detail-container .detail-col-right .detail-titre h2 span {
  font-size: 32px !important;
  font-weight: 600;
}
@media (max-width: 991px) {
  .detail-card-container .detail-container .detail-col-right .detail-titre h2 {
    margin-top: 0;
  }
}
.detail-card-container .detail-container .detail-col-right .detail-titre h3 span {
  font-size: 21px !important;
  line-height: 26px !important;
  color: #F55353;
  text-transform: inherit;
}
.detail-card-container .detail-container .detail-col-right .detail-titre h3 span.Non {
  display: none;
}
.detail-card-container .detail-container .detail-col-right .detail-titre ul {
  padding-left: 0;
}
.detail-card-container .detail-container .detail-col-right .detail-titre ul li span:not(.object-ecole_membre-field-value) {
  display: none;
}
.detail-card-container .detail-container .detail-col-right table.accordeon h3 {
  font-size: 18px;
  line-height: 25px;
}
.detail-card-container .detail-container .detail-col-right table.accordeon ul {
  margin-bottom: 0;
}
.detail-card-container .detail-container .detail-col-right .detail-permis {
  padding: 32px 0;
}
@media (max-width: 767px) {
  .detail-card-container .detail-container .detail-col-right .detail-permis {
    display: none;
  }
}
.detail-card-container .detail-container .detail-col-right .detail-permis span {
  font-weight: 600;
  font-size: 18px;
}
.detail-card-container .detail-container .detail-col-right .detail-permis span img {
  margin-right: 16px;
  position: relative;
  bottom: 3px;
}
.detail-card-container .detail-container .detail-col-right .detail-contact-phone {
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
  letter-spacing: 0;
  color: #161E54;
  padding-bottom: 25px;
}
.detail-card-container .detail-container .detail-col-right .detail-contact {
  padding-top: 32px;
}

/* Article unique, sans articles liés */
/* Article unique, avec les articles liés en haut */
/* Article unique, avec les articles liés à droite */
/* Article unique, avec les articles liés à gauche */
.zone-news .search-form {
  padding-bottom: 85px;
}
.zone-news #news_content.news-mosaic .row > div {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.zone-news #news_content.news-mosaic .row > div h3.news-title {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .zone-news #news_content.news-mosaic .row > div h3.news-title {
    font-size: 21px;
    line-height: 25px;
  }
}
.zone-news #news_content.news-mosaic .row > div h3.news-title {
  text-transform: initial;
  margin-bottom: 16px;
}
.zone-news #news_content.news-mosaic .row > div h3.news-title a {
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div h3.news-title a:hover {
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div a.news-category {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #161E54;
  text-transform: initial;
  margin-bottom: 20px;
  margin-bottom: 0;
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div a.news-category:hover {
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div p.news-published-date.e-date {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #161E54;
  text-transform: initial;
  margin-bottom: 20px;
  margin-bottom: 0;
}
.zone-news #news_content.news-mosaic .row > div div.news-intro {
  padding-top: 16px;
}
.zone-news #news_content.news-mosaic .row > div div.news-tags {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-bottom: 16px;
}
.zone-news #news_content.news-mosaic .row > div div.news-tags a.news-tags {
  width: auto;
  height: auto;
  min-height: 40px;
  border-radius: 8px;
  background-color: #fff;
  display: block;
  color: #161E54;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7px 20px;
  margin-bottom: 0;
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div div.news-tags a.news-tags:hover {
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div img.news-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type {
  font-family: "Open sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: inherit;
  height: auto;
  /*padding: 0px 30px;*/
  /*display: inline-flex;*/
  align-items: center;
  margin-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
  border-radius: 50px;
  display: inline-block;
  white-space: break-spaces;
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:hover, .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:active, .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type {
    white-space: normal !important;
  }
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type {
  font-size: 16px;
  line-height: 24px;
  height: auto;
  display: inline-block;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #161E54;
  text-transform: inherit;
  text-decoration: underline;
  font-weight: 500;
  background-color: transparent;
  transition: all 300ms;
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-bleu.svg");
  background-repeat: no-repeat;
  right: -12px;
  margin-top: -1px;
  position: relative;
  display: inline-block;
  width: 21px;
  height: 9px;
  animation-name: none;
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:hover, .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:focus {
  background-color: transparent !important;
  text-decoration: underline;
  color: #F55353;
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:hover:after, .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:focus:after {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-rouge.svg");
  -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-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type {
  /*margin-top: 0;*/
  margin-top: 7px;
}

.zone-news .content.js-news-blog-items .news-blog__box .row .col-sm-12:first-child {
  width: 25%;
}
.zone-news .content.js-news-blog-items .news-blog__box .row .col-sm-12:last-child {
  width: 75%;
}
.zone-news .content.js-news-blog-items .news-blog__box .row .col-sm-12:last-child .news-blog__right p.news-blog__category {
  margin-bottom: 0;
}
.zone-news .content.js-news-blog-items .news-blog__box .row .col-sm-12:last-child .news-blog__right p.news-blog__published-date {
  margin-bottom: 0;
}
.zone-news .content.js-news-blog-items .news-blog__box .row .col-sm-12:last-child .news-blog__right div.news-blog__nav div.news-blog__cta a.news-blog__readmore {
  font-family: "Open sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: inherit;
  height: auto;
  /*padding: 0px 30px;*/
  /*display: inline-flex;*/
  align-items: center;
  margin-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
  border-radius: 50px;
  display: inline-block;
  white-space: break-spaces;
}
.zone-news .content.js-news-blog-items .news-blog__box .row .col-sm-12:last-child .news-blog__right div.news-blog__nav div.news-blog__cta a.news-blog__readmore:hover, .zone-news .content.js-news-blog-items .news-blog__box .row .col-sm-12:last-child .news-blog__right div.news-blog__nav div.news-blog__cta a.news-blog__readmore:active, .zone-news .content.js-news-blog-items .news-blog__box .row .col-sm-12:last-child .news-blog__right div.news-blog__nav div.news-blog__cta a.news-blog__readmore:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-news .content.js-news-blog-items .news-blog__box .row .col-sm-12:last-child .news-blog__right div.news-blog__nav div.news-blog__cta a.news-blog__readmore {
    white-space: normal !important;
  }
}
.zone-news .content.js-news-blog-items .news-blog__box .row .col-sm-12:last-child .news-blog__right div.news-blog__nav div.news-blog__cta a.news-blog__readmore {
  height: auto;
  padding: 10px 30px;
  background-color: #F55353;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #F55353;
}
.zone-news .content.js-news-blog-items .news-blog__box .row .col-sm-12:last-child .news-blog__right div.news-blog__nav div.news-blog__cta a.news-blog__readmore:hover, .zone-news .content.js-news-blog-items .news-blog__box .row .col-sm-12:last-child .news-blog__right div.news-blog__nav div.news-blog__cta a.news-blog__readmore:active, .zone-news .content.js-news-blog-items .news-blog__box .row .col-sm-12:last-child .news-blog__right div.news-blog__nav div.news-blog__cta a.news-blog__readmore:focus {
  background-color: transparent;
  border: 1px solid #F55353;
  color: #161E54;
}

@media (min-width: 1200px) {
  .zone-news #news_content .row .col-sm-8 .news-list {
    padding-right: 80px;
  }
}
@media (min-width: 992px) {
  .zone-news #news_content .row .col-sm-8 .news-list {
    padding-right: 60px;
  }
}
.zone-news #news_content .row .col-sm-8 .news-list h2.news-list-title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .zone-news #news_content .row .col-sm-8 .news-list h2.news-list-title {
    font-size: 24px;
    line-height: 34px;
  }
}
.zone-news #news_content .row .col-sm-8 .news-list .news-item {
  margin-bottom: 30px;
}
.zone-news #news_content .row .col-sm-8 .news-list .news-item a.news-thumb-link img.news-image {
  margin-bottom: 15px;
}
.zone-news #news_content .row .col-sm-8 .news-list .news-item h3.news-title {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .zone-news #news_content .row .col-sm-8 .news-list .news-item h3.news-title {
    font-size: 21px;
    line-height: 25px;
  }
}
.zone-news #news_content .row .col-sm-8 .news-list .news-item {
  /* Yapla error : Author is also .news-category; */
}
.zone-news #news_content .row .col-sm-8 .news-list .news-item p.news-category {
  margin-bottom: 0;
}
.zone-news #news_content .row .col-sm-8 .news-list .news-item p.news-meta.e-date {
  margin-bottom: 0;
}
.zone-news #news_content .row .col-sm-8 .news-list .news-item div.news-tags {
  margin-bottom: 15px;
}
.zone-news #news_content .row .col-sm-8 .news-list .news-item > a:last-of-type {
  font-family: "Open sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: inherit;
  height: auto;
  /*padding: 0px 30px;*/
  /*display: inline-flex;*/
  align-items: center;
  margin-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
  border-radius: 50px;
  display: inline-block;
  white-space: break-spaces;
}
.zone-news #news_content .row .col-sm-8 .news-list .news-item > a:last-of-type:hover, .zone-news #news_content .row .col-sm-8 .news-list .news-item > a:last-of-type:active, .zone-news #news_content .row .col-sm-8 .news-list .news-item > a:last-of-type:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-news #news_content .row .col-sm-8 .news-list .news-item > a:last-of-type {
    white-space: normal !important;
  }
}
.zone-news #news_content .row .col-sm-8 .news-list .news-item > a:last-of-type {
  height: auto;
  padding: 10px 30px;
  background-color: #F55353;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #F55353;
}
.zone-news #news_content .row .col-sm-8 .news-list .news-item > a:last-of-type:hover, .zone-news #news_content .row .col-sm-8 .news-list .news-item > a:last-of-type:active, .zone-news #news_content .row .col-sm-8 .news-list .news-item > a:last-of-type:focus {
  background-color: transparent;
  border: 1px solid #F55353;
  color: #161E54;
}
.zone-news #news_content .row .col-sm-16 .news-detail p.news-category {
  margin-bottom: 0;
}
.zone-news #news_content .row .col-sm-16 .news-detail p.news-published-date.e-date {
  margin-bottom: 0;
}
.zone-news #news_content .row .col-sm-16 .news-detail div.news-tags {
  margin-bottom: 15px;
}
.zone-news #news_content .row .col-sm-16 .news-detail div.plugin-addthis {
  /* Is in display none in _reset.scss */
}

/* Module articles en vedette */
.zone-news_flash .newsList .row .item {
  margin-left: 0;
  margin-right: 0;
  /*
  padding-left: 0;
  padding-right: 0;
  */
}
.zone-news_flash .newsList .row .item .itemImage {
  margin-bottom: 0;
}
.zone-news_flash .newsList .row .item .itemImage a img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.zone-news_flash .newsList .row .item p.itemInfos.e-date {
  margin-bottom: 0;
}
.zone-news_flash .newsList .row .item p.news-keywords {
  margin-bottom: 0;
}
.zone-news_flash .newsList .row .item div.intro {
  padding-top: 16px;
}
.zone-news_flash a.viewAll {
  font-family: "Open sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: inherit;
  height: auto;
  /*padding: 0px 30px;*/
  /*display: inline-flex;*/
  align-items: center;
  margin-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
  border-radius: 50px;
  display: inline-block;
  white-space: break-spaces;
}
.zone-news_flash a.viewAll:hover, .zone-news_flash a.viewAll:active, .zone-news_flash a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-news_flash a.viewAll {
    white-space: normal !important;
  }
}
.zone-news_flash a.viewAll {
  font-size: 21px;
  line-height: 28px;
  height: auto;
  text-align: left;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #161E54;
  text-transform: inherit;
  text-decoration: underline;
  font-weight: 500;
  background-color: transparent;
  transition: all 300ms;
}
.zone-news_flash a.viewAll:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-bleu.svg");
  background-repeat: no-repeat;
  right: -20px;
  margin-top: 2px;
  position: relative;
  display: inline-block;
  width: 21px;
  height: 9px;
  animation-name: none;
}
.zone-news_flash a.viewAll:hover, .zone-news_flash a.viewAll:focus {
  background-color: transparent !important;
  text-decoration: underline;
  color: #F55353;
}
.zone-news_flash a.viewAll:hover:after, .zone-news_flash a.viewAll:focus:after {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-rouge.svg");
  -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;
}

/* Bannière - container pleine largeur */
/* Bannière - container pleine largeur - 2 colonnes 50% */
/* Bannière - container pleine largeur - 2 colonnes 66/33 */
/* CARROUSEL - texte a gauche */
.zone-carousel .carousel .carousel-inner .item div.carousel-caption {
  text-shadow: none;
}
.zone-carousel .carousel .carousel-inner .item div.carousel-caption {
  /* Erreur Yapla : l'Auteur a aussi la classe caption-title */
}
.zone-carousel .carousel .carousel-inner .item div.carousel-caption p.caption-title {
  font-size: 16px;
}
.zone-carousel .carousel .carousel-inner .item div.carousel-caption > a.carousel-link-detail {
  font-family: "Open sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: inherit;
  height: auto;
  /*padding: 0px 30px;*/
  /*display: inline-flex;*/
  align-items: center;
  margin-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
  border-radius: 50px;
  display: inline-block;
  white-space: break-spaces;
}
.zone-carousel .carousel .carousel-inner .item div.carousel-caption > a.carousel-link-detail:hover, .zone-carousel .carousel .carousel-inner .item div.carousel-caption > a.carousel-link-detail:active, .zone-carousel .carousel .carousel-inner .item div.carousel-caption > a.carousel-link-detail:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-carousel .carousel .carousel-inner .item div.carousel-caption > a.carousel-link-detail {
    white-space: normal !important;
  }
}
.zone-carousel .carousel .carousel-inner .item div.carousel-caption > a.carousel-link-detail {
  height: auto;
  padding: 10px 30px;
  background-color: #F55353;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #F55353;
}
.zone-carousel .carousel .carousel-inner .item div.carousel-caption > a.carousel-link-detail:hover, .zone-carousel .carousel .carousel-inner .item div.carousel-caption > a.carousel-link-detail:active, .zone-carousel .carousel .carousel-inner .item div.carousel-caption > a.carousel-link-detail:focus {
  background-color: transparent;
  border: 1px solid #F55353;
  color: #161E54;
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail {
  font-family: "Open sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: inherit;
  height: auto;
  /*padding: 0px 30px;*/
  /*display: inline-flex;*/
  align-items: center;
  margin-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
  border-radius: 50px;
  display: inline-block;
  white-space: break-spaces;
}
.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 {
  height: auto;
  padding: 10px 30px;
  background-color: #F55353;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #F55353;
}
.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 #F55353;
  color: #161E54;
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail {
  margin-bottom: 30px;
}

/* CARROUSEL - pleine largeur */
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail {
  font-family: "Open sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: inherit;
  height: auto;
  /*padding: 0px 30px;*/
  /*display: inline-flex;*/
  align-items: center;
  margin-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
  border-radius: 50px;
  display: inline-block;
  white-space: break-spaces;
}
.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 {
  height: auto;
  padding: 10px 30px;
  background-color: #F55353;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #F55353;
}
.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 #F55353;
  color: #161E54;
}
.zone-carousel .carousel.vertical-mode .carousel-inner .carousel-text a.carousel-link-detail {
  margin-bottom: 30px;
}

/* MULTI-SLIDE CARROUSEL - carousel pleine largeur (mode vertical) */
.multislides {
  /* DEFAULTS */
}
.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 {
  /* MULTISLIDES OVERRIDES */
}
.multislides .carousel-control {
  width: 8%;
  width: 0px;
}
.multislides .carousel-control.left, .multislides .carousel-control.right {
  margin-right: 40px;
  margin-left: 32px;
  background-image: none;
  opacity: 1;
}
.multislides .carousel-control a span {
  color: white;
  font-size: 29px !important;
}
.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;
}
.multislides {
  /*xxs*/
}
@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;
  }
}
.multislides {
  /*xs*/
}
@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;
  }
}
.multislides {
  /*sm*/
}
@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;
  }
}
.multislides {
  /*md*/
}
@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;
  }
}
.multislides {
  /*lg*/
}
@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;
  }
}

/*###########################  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*/
.zone-member .member-login-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.zone-member .member-login-wrapper h1 {
  margin-bottom: 64px;
}
.zone-member .member-login-wrapper #profile_login_form {
  width: 60%;
}
@media (max-width: 991px) {
  .zone-member .member-login-wrapper #profile_login_form {
    width: 90%;
  }
}
.zone-member .member-login-wrapper #profile_login_form .zend_form div:last-of-type {
  padding: 16px 0 64px 0;
  text-align: right;
}
@media (max-width: 767px) {
  .zone-member .member-login-wrapper #profile_login_form .zend_form div:last-of-type {
    text-align: center;
  }
}
.zone-member .member-login-wrapper #profile_login_form .zend_form div:last-of-type a.reset-password {
  text-decoration: none;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form input#submit {
  margin-right: 16px;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription {
  height: auto;
  padding: 10px 30px !important;
  background-color: transparent;
  border: 1px solid #fff;
  color: #161E54;
  border: 1px solid #F55353;
}
.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 {
  background-color: #F55353;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #F55353;
}
.zone-member .member-resetpassword-wrapper {
  max-width: 768px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .zone-member .member-resetpassword-wrapper {
    max-width: 85%;
  }
}
.zone-member .member-resetpassword-wrapper h1 {
  font-size: 32px;
  line-height: 40px;
}
.zone-member .member-resetpassword-wrapper p {
  margin-bottom: 32px;
}
.zone-member .member-resetpassword-wrapper a#login_link {
  display: none;
}

/* Contenue personalisé */
/*Espace Evenements - Vue Details*/
/* Espace Evenement - Mosaique */
/* Espace Evenement - Calendrier a gauche */
.zone-event .row .calendar-content {
  /*Dropdown Menu*/
}
/* Espace Evenement - Navigation a droite */
/*###########################  ESPACE MEMBRE  ###########################*/
.line-zone-membre .container-fluid {
  max-width: 80%;
}
@media (max-width: 991px) {
  .line-zone-membre .container-fluid {
    max-width: 100%;
  }
}

.zone-member {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .zone-member {
    padding: 0 32px !important;
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .zone-member {
    padding: 0 32px !important;
    margin-top: 32px;
  }
}
.zone-member .sidebar__member-zone {
  background-color: transparent;
}
@media (max-width: 991px) {
  .zone-member .sidebar__member-zone {
    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 {
  color: #161E54;
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  text-transform: inherit;
  border-bottom: 1px solid #ccc;
  padding-top: 5px;
  padding-bottom: 20px;
  margin-bottom: 5px;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer {
  padding-left: 0;
  padding-right: 0;
  padding: 1.4rem 0;
  background: transparent;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a {
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  color: #161E54;
  text-transform: initial;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a:hover, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:focus {
  color: #F55353;
  text-decoration: underline;
}
.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 {
  color: #161E54;
  font-family: "Open sans", sans-serif;
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: initial;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a:hover {
  color: #F55353;
  text-decoration: underline;
}
.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: #F55353;
}
@media (max-width: 991px) {
  .zone-member .member {
    width: 100%;
  }
}
.zone-member .member #section_314834 {
  margin-bottom: 0;
}
.zone-member .member .section {
  margin-bottom: 40px;
}
.zone-member .member .section label.control-label {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #323872;
  margin-bottom: 5px;
}
.zone-member .member h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
}
.zone-member .member h2 {
  color: #161E54;
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  text-transform: inherit;
  padding: 5px 0 8px 0;
}
.zone-member .member input#submit {
  float: left !important;
}
.zone-member .member .form-element-audiologie .col-md-12, .zone-member .member .form-element-orthophonie .col-md-12 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media (max-width: 767px) {
  .zone-member .member .form-element-audiologie .col-md-12, .zone-member .member .form-element-orthophonie .col-md-12 {
    display: block;
  }
}
.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;
}

/*Événements en vedette - affichage classique*/
.zone-event_flash .eventsList .mod-eventflash__item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.zone-event_flash .eventsList .mod-eventflash__item a img {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-position: center center;
  border: 1px solid #efe6e6;
}
/*Événements en vedette - affichage mosaïque*/
.zone-event_flash .eventsList .row .col-sm .mod-eventflash__item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.zone-event_flash .eventsList .row .col-sm .mod-eventflash__item a img {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-position: center center;
  border: 1px solid #efe6e6;
}
/*###########################  FIL D'ARIANE  ###########################*/
.breadcrumb {
  padding: 15px 0px;
}
.breadcrumb li a,
.breadcrumb li span {
  font-size: 14px;
  font-weight: 600;
}
.breadcrumb li a {
  color: #1DA6C3;
}
.breadcrumb li span {
  color: #161E54;
}
.breadcrumb > li + li:before {
  content: "/";
  color: #1DA6C3;
  font-weight: 400;
}

/*Formulaire de Contact*/
/* Formulaire - Module Donnes*/
/* Image - (Default alignée à gauche) */
.line-article-multiple {
  padding-top: 70px;
}

.line-article-multiple-keywords {
  padding-top: 0;
}
.line-article-multiple-keywords form div.form-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
}
.line-article-multiple-keywords form div.form-horizontal .form-element-keywords {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.line-article-multiple-keywords form div.form-horizontal .form-element-keywords label {
  text-align: center;
  font-size: 16px;
  margin-bottom: 15px !important;
}
.line-article-multiple-keywords form div.form-horizontal .form-element-keywords > div {
  width: 100%;
  max-width: 400px;
}
.line-article-multiple-keywords form div.form-horizontal .form-element-keywords > div .chosen-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.line-article-multiple-keywords form div.form-horizontal .form-element-keywords > div .chosen-container .chosen-choices {
  max-width: 100%;
  border-radius: 50px;
  padding: 15px 35px !important;
}

.line-petites-annonces {
  padding-top: 0 !important;
}
.line-petites-annonces .container .row > div form.search-form .form-horizontal .col-sm-12 {
  width: 100% !important;
}
.line-petites-annonces .container .row > div form.search-form .form-horizontal .col-sm-12 .form-group label {
  display: none;
}
.line-petites-annonces .container .row > div form.search-form .form-horizontal .col-sm-12 .form-group .col-sm-17 {
  margin-left: auto;
  margin-right: auto;
}
.line-petites-annonces .container .row > div form.search-form .form-horizontal .col-sm-12 .form-group .col-sm-17 select.form-control {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px !important;
  border: 0;
  padding: 13px 30px 13px 20px !important;
  max-width: 400px;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg fill='black' width='19' height='10' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 75'%3E%3Cpath id='Path_4853' data-name='Path 4853' d='M-23614.141-21191.273s-2.314-2.559,0-4.809,4.836,0,4.836,0l69.119,65.277,69.193-65.547a3.488,3.488,0,0,1,4.713,0c2.5,2.1,0,4.957,0,4.957l-71.893,68.258a3.446,3.446,0,0,1-2.014.852,4.993,4.993,0,0,1-2.314-.852Z' transform='translate(23615.169 21197.285)'/%3E%3C/svg%3E") no-repeat right 20px center !important;
}

.line-slim-container .container > .row {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.line-slim-container .container > .row > div {
  max-width: 768px;
}
@media (max-width: 767px) {
  .line-slim-container .container > .row > div {
    width: 100%;
  }
}

/*Pages: orthophonie, audiologie, offre-aux-membres*/
.line-section-border {
  margin-top: 95px;
}
.line-section-border .container:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #161E54;
  position: relative;
  top: -32px;
  margin-left: auto;
  margin-right: auto;
}
.line-section-border .container h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-section-border .container h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-section-border .container h2 {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .line-section-border .container h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .line-section-border .container h2 {
    font-size: 26px;
    line-height: 32px;
  }
}

/* Formulaire de Base / Pages: Contact, Groupes de travail et comités */
.line-formulaire-titre .container {
  padding-top: 70px;
}
.line-formulaire-titre .container:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #161E54;
  position: relative;
  top: -25px;
  margin-left: auto;
  margin-right: auto;
}
.line-formulaire-titre .container h2 {
  margin-top: 45px;
  margin-bottom: 0px;
}
.line-formulaire-titre .container h3 {
  color: #F55353;
}

.line-formulaire {
  padding-top: 35px;
}
.line-formulaire .formbuilder-confirmation-content h5 {
  color: #F55353;
}

.line-docu #news_content .news-intro a.btn {
  font-size: 16px !important;
}

.line-accueil-en-vedette-titre {
  padding-top: 20px;
  background-color: #fff;
}
@media (max-width: 991px) {
  .line-accueil-en-vedette-titre {
    padding-top: 0;
  }
}
.line-accueil-en-vedette-titre h2 {
  font-size: 28px;
  line-height: 38px;
  color: #F55353;
  font-weight: 600;
  margin-bottom: 18px;
}
.line-accueil-en-vedette-titre h2:after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #F55353;
  position: absolute;
  margin-top: 20px;
  margin-left: 15px;
}

.line-accueil-en-vedette {
  padding-bottom: 40px;
  background-color: #fff;
}
.line-accueil-en-vedette .container > .row {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/Ondes.svg") -75px -172px no-repeat rgba(245, 83, 83, 0.8);
  border-radius: 15px;
  padding: 48px 45px 35px 295px;
}
@media (max-width: 1199px) {
  .line-accueil-en-vedette .container > .row {
    padding: 48px 45px 35px 195px;
  }
}
@media (max-width: 991px) {
  .line-accueil-en-vedette .container > .row {
    padding: 48px 45px 35px 48px;
    background-size: 230px;
    background-position: -115px -112px;
  }
}
@media (max-width: 767px) {
  .line-accueil-en-vedette .container > .row {
    padding: 33px 45px 30px 45px;
    background-size: 230px;
    background-position: -191px -52px;
  }
}
@media (max-width: 767px) {
  .line-accueil-en-vedette .container > .row .content {
    text-align: center;
  }
}
.line-accueil-en-vedette .container > .row .content h3, .line-accueil-en-vedette .container > .row .content h3 a {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-accueil-en-vedette .container > .row .content h3, .line-accueil-en-vedette .container > .row .content h3 a {
    font-size: 21px;
    line-height: 25px;
  }
}
.line-accueil-en-vedette .container > .row .content h3, .line-accueil-en-vedette .container > .row .content h3 a {
  color: #fff;
  text-transform: initial;
  margin-bottom: 10px;
}
.line-accueil-en-vedette .container > .row .content p, .line-accueil-en-vedette .container > .row .content span {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  margin-bottom: 0;
}
.line-accueil-en-vedette .container > .row .content .btn-primary {
  background-color: transparent;
  border-color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .line-accueil-en-vedette .container > .row .content .btn-primary {
    margin-top: 20px;
  }
}
.line-accueil-en-vedette .container > .row .content .btn-primary:hover {
  background-color: #fff;
  border-color: #fff;
}

.line-accueil-image-titre-texte {
  padding-top: 45px;
  padding-bottom: 50px;
  background: linear-gradient(180deg, rgb(255, 255, 255) 45%, rgb(247, 245, 245) 45%);
}
@media (max-width: 991px) {
  .line-accueil-image-titre-texte {
    padding-top: 20px;
    padding-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .line-accueil-image-titre-texte {
    padding-bottom: 20px;
    background: linear-gradient(180deg, rgb(255, 255, 255) 10%, rgb(247, 245, 245) 10%);
  }
}
.line-accueil-image-titre-texte .container > .row > div:nth-child(1) {
  padding-right: 10px;
}
@media (max-width: 767px) {
  .line-accueil-image-titre-texte .container > .row > div:nth-child(1) {
    padding-bottom: 50px;
  }
}
.line-accueil-image-titre-texte .container > .row > div:nth-child(2) {
  padding-left: 10px;
}
.line-accueil-image-titre-texte .container > .row > div .news-content img {
  border-radius: 15px;
  width: 100%;
}
@media (max-width: 1199px) {
  .line-accueil-image-titre-texte .container > .row > div .news-content img {
    height: 315px !important;
    object-fit: cover;
    object-position: center center;
  }
}
.line-accueil-image-titre-texte .container > .row > div .news-content .mod-article__content {
  padding: 45px 45px 35px 45px;
  margin-top: -60px;
  margin-left: 8%;
  margin-right: 8%;
  border-radius: 15px;
  background-color: #fff;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .line-accueil-image-titre-texte .container > .row > div .news-content .mod-article__content {
    padding: 45px 20px 25px 20px;
    margin-left: 4%;
    margin-right: 4%;
  }
}
.line-accueil-image-titre-texte .container > .row > div .news-content .mod-article__content h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-accueil-image-titre-texte .container > .row > div .news-content .mod-article__content h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.line-accueil-image-titre-texte .container > .row > div .news-content .mod-article__content h2 {
  padding-bottom: 35px;
}
@media (max-width: 991px) {
  .line-accueil-image-titre-texte .container > .row > div .news-content .mod-article__content h2 {
    padding-bottom: 10px;
  }
}

.line-accueil-titre {
  padding-top: 50px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .line-accueil-titre {
    padding-bottom: 10px;
  }
}

.line-accueil-actualite-titre {
  padding-top: 55px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .line-accueil-actualite-titre {
    padding-bottom: 0;
  }
}
.line-accueil-actualite-titre h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-accueil-actualite-titre h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-accueil-actualite-titre h2 {
  color: #F55353;
  padding-top: 20px;
  border-top: 1px solid #F55353;
}

.line-accueil-actualite {
  padding-top: 18px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .line-accueil-actualite {
    padding-top: 15px;
  }
}
.line-accueil-actualite .container > .row > div h3 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-accueil-actualite .container > .row > div h3 {
    font-size: 21px;
    line-height: 25px;
  }
}
.line-accueil-actualite .container > .row > div h3 {
  text-transform: initial;
  margin-bottom: 18px;
}
.line-accueil-actualite .container > .row > div h3 a {
  text-decoration: none !important;
  color: #161E54 !important;
}
.line-accueil-actualite .container > .row > div h3 a:hover {
  text-decoration: none !important;
}
.line-accueil-actualite .container > .row > div .e-date {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #161E54;
  text-transform: initial;
  margin-bottom: 20px;
}
.line-accueil-actualite .container > .row > div .e-thumbnail {
  display: none;
}
.line-accueil-actualite .container > .row > div .actions {
  margin-top: 0;
}
.line-accueil-actualite .container > .row > div .actions .btn-primary {
  font-size: 16px !important;
  line-height: 24px !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0 !important;
  color: #161E54 !important;
  text-transform: inherit !important;
  text-decoration: underline !important;
  font-weight: 500 !important;
  background-color: transparent !important;
  transition: all 300ms !important;
}
.line-accueil-actualite .container > .row > div .actions .btn-primary:after {
  content: "" !important;
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-bleu.svg") !important;
  background-repeat: no-repeat !important;
  right: -12px !important;
  margin-top: -1px !important;
  position: relative !important;
  display: inline-block !important;
  width: 21px !important;
  height: 9px !important;
  animation-name: none !important;
}
.line-accueil-actualite .container > .row > div .actions .btn-primary:hover, .line-accueil-actualite .container > .row > div .actions .btn-primary:focus {
  background-color: transparent !important;
  text-decoration: underline !important;
  color: #F55353 !important;
}
.line-accueil-actualite .container > .row > div .actions .btn-primary:hover:after, .line-accueil-actualite .container > .row > div .actions .btn-primary:focus:after {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-rouge.svg") !important;
  -webkit-animation-duration: 1s !important;
  animation-duration: 1s !important;
  -webkit-animation-fill-mode: both !important;
  animation-fill-mode: both !important;
  -webkit-animation-timing-function: ease-in-out !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  -webkit-animation-iteration-count: infinite !important;
  animation-name: bounce_arrow !important;
  -moz-animation-name: bounce_arrow !important;
}
@media (min-width: 768px) {
  .line-accueil-actualite .container > .row > div:nth-child(1) {
    padding-right: 25px;
  }
}
@media (min-width: 992px) {
  .line-accueil-actualite .container > .row > div:nth-child(1) {
    padding-right: 35px;
  }
}
.line-accueil-actualite .container > .row > div:nth-child(1) .item {
  padding-right: 0;
}
@media (max-width: 767px) {
  .line-accueil-actualite .container > .row > div:nth-child(1) .item {
    padding-bottom: 50px;
  }
}
.line-accueil-actualite .container > .row > div:nth-child(2) hr {
  display: none;
}
.line-accueil-actualite .container > .row > div:nth-child(2) .content, .line-accueil-actualite .container > .row > div:nth-child(2) .news-mosaic {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 991px) {
  .line-accueil-actualite .container > .row > div:nth-child(2) .content, .line-accueil-actualite .container > .row > div:nth-child(2) .news-mosaic {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .line-accueil-actualite .container > .row > div:nth-child(2) .content, .line-accueil-actualite .container > .row > div:nth-child(2) .news-mosaic {
    gap: 50px;
  }
}
.line-accueil-actualite .container > .row > div:nth-child(2) .content > .row, .line-accueil-actualite .container > .row > div:nth-child(2) .news-mosaic > .row {
  flex-grow: 1;
  flex-basis: 50%;
  margin-top: 0;
}
@media (max-width: 767px) {
  .line-accueil-actualite .container > .row > div:nth-child(2) .content > .row, .line-accueil-actualite .container > .row > div:nth-child(2) .news-mosaic > .row {
    flex-basis: 100%;
  }
}
.line-accueil-actualite .container > .row > div:nth-child(2) .content > .row .col-sm-24, .line-accueil-actualite .container > .row > div:nth-child(2) .news-mosaic > .row .col-sm-24 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.line-accueil-actualite .container > .row > div:nth-child(2) .content > .row .itemInfos, .line-accueil-actualite .container > .row > div:nth-child(2) .news-mosaic > .row .itemInfos {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 21px;
}
.line-accueil-actualite .container > .row > div:nth-child(2) .content > .row .intro, .line-accueil-actualite .container > .row > div:nth-child(2) .news-mosaic > .row .intro {
  padding-top: 16px;
}

.line-accueil-tout-decouvrir {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .line-accueil-tout-decouvrir {
    padding-bottom: 30px;
  }
}
.line-accueil-tout-decouvrir h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-accueil-tout-decouvrir h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.line-accueil-tout-decouvrir h2 {
  margin-bottom: 40px;
}
.line-accueil-tout-decouvrir .content {
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .line-accueil-tout-decouvrir .content {
    flex-direction: column;
    gap: 20px;
  }
}

.line-article-details {
  padding-top: 115px;
  padding-bottom: 20px;
}
.line-article-details h1 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-article-details h1 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-article-details h1 {
  margin-bottom: 4px;
}
.line-article-details h2 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-article-details h2 {
    font-size: 21px;
    line-height: 25px;
  }
}
.line-article-details .mod-article__published-date {
  font-size: 21px;
  line-height: 25px;
  font-weight: bold;
  margin-bottom: 0px;
}
.line-article-details .mod-article__author {
  font-size: 21px;
  line-height: 25px;
  font-weight: bold;
  margin-bottom: 0px;
}
.line-article-details .mod-article__img {
  border-radius: 15px;
  padding-top: 45px;
  padding-bottom: 45px;
}
.line-article-details a.article-back-to-list-histo {
  font-family: "Open sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: inherit;
  height: auto;
  /*padding: 0px 30px;*/
  /*display: inline-flex;*/
  align-items: center;
  margin-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
  border-radius: 50px;
  display: inline-block;
  white-space: break-spaces;
}
.line-article-details a.article-back-to-list-histo:hover, .line-article-details a.article-back-to-list-histo:active, .line-article-details a.article-back-to-list-histo:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-article-details a.article-back-to-list-histo {
    white-space: normal !important;
  }
}
.line-article-details a.article-back-to-list-histo {
  height: auto;
  padding: 10px 30px;
  background-color: #F55353;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #F55353;
}
.line-article-details a.article-back-to-list-histo:hover, .line-article-details a.article-back-to-list-histo:active, .line-article-details a.article-back-to-list-histo:focus {
  background-color: transparent;
  border: 1px solid #F55353;
  color: #161E54;
}
.line-article-details a.article-back-to-list-histo {
  margin-top: 30px;
}

.line-evenements-vedette {
  padding-top: 50px;
}
.line-evenements-vedette h3 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-evenements-vedette h3 {
    font-size: 21px;
    line-height: 25px;
  }
}
.line-evenements-vedette h3 {
  text-transform: initial;
  margin-bottom: 16px;
}
.line-evenements-vedette .e-date {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #161E54;
  text-transform: initial;
  margin-bottom: 20px;
}
.line-evenements-vedette hr {
  display: none;
}
.line-evenements-vedette img {
  border-radius: 16px;
}
.line-evenements-vedette .btn-primary {
  font-size: 16px !important;
  line-height: 24px !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0 !important;
  color: #161E54 !important;
  text-transform: inherit !important;
  text-decoration: underline !important;
  font-weight: 500 !important;
  background-color: transparent !important;
  transition: all 300ms !important;
}
.line-evenements-vedette .btn-primary:after {
  content: "" !important;
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-bleu.svg") !important;
  background-repeat: no-repeat !important;
  right: -12px !important;
  margin-top: -1px !important;
  position: relative !important;
  display: inline-block !important;
  width: 21px !important;
  height: 9px !important;
  animation-name: none !important;
}
.line-evenements-vedette .btn-primary:hover, .line-evenements-vedette .btn-primary:focus {
  background-color: transparent !important;
  text-decoration: underline !important;
  color: #F55353 !important;
}
.line-evenements-vedette .btn-primary:hover:after, .line-evenements-vedette .btn-primary:focus:after {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-rouge.svg") !important;
  -webkit-animation-duration: 1s !important;
  animation-duration: 1s !important;
  -webkit-animation-fill-mode: both !important;
  animation-fill-mode: both !important;
  -webkit-animation-timing-function: ease-in-out !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  -webkit-animation-iteration-count: infinite !important;
  animation-name: bounce_arrow !important;
  -moz-animation-name: bounce_arrow !important;
}
.line-evenements-vedette .actions {
  margin-top: 0;
}
.line-evenements-vedette .actions a {
  margin-top: 7px;
}

.line-evenements-vedette-details {
  padding-top: 85px;
}
.line-evenements-vedette-details .jumbotron {
  background-color: transparent;
  padding: 0 20px 0 0;
}
@media (max-width: 991px) {
  .line-evenements-vedette-details .row-event-jumbotron__left-right {
    display: flex;
    flex-wrap: wrap;
  }
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__right {
  display: flex;
  flex-direction: column;
  padding-left: 100px;
}
@media (max-width: 991px) {
  .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__right {
    margin: 0 0 50px 0;
    padding: 0 30px;
    order: 1;
    width: 100%;
  }
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__category {
  order: 1;
  font-style: normal;
  font-size: 21;
  font-weight: 800;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__left-right__title {
  order: 0;
  font-size: 32px;
  line-height: 39px;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description {
  order: 2;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description h2 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description h2 {
    font-size: 21px;
    line-height: 25px;
  }
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-additional {
  order: 3;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper {
  order: 4;
  /*.event-detail__nav {
      display: flex;
      align-items: center;
      justify-content: center;
  }*/
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  text-transform: uppercase;
  color: #161E54;
  background: transparent;
  padding-left: 5px;
  margin: 0;
  line-height: 27px;
  text-transform: none;
}
@media (max-width: 767px) {
  .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__nav {
    flex-direction: column;
  }
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__nav .btn-back {
  display: none;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left {
  display: flex;
  border-right: 1px solid #F55353;
  width: 28%;
}
@media (max-width: 991px) {
  .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left {
    order: 2;
    border: none;
    background-color: #fff;
    padding: 64px;
    width: 100%;
    text-align: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left {
    padding: 32px;
  }
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron {
  width: 100%;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__date {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 0;
  padding-bottom: 40px;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .address__info .event-info__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding-bottom: 25px;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info:after {
  content: "";
  margin-top: 5px;
  border: none;
  background: url(https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/line-dashed.png) repeat-x left center;
  display: block;
  width: 100%;
  height: 7px;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .event-info__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  padding-top: 20px;
  order: 1;
  border-bottom: none;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .contact, .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .phone, .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .email {
  border-bottom: none;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .contact {
  order: 3;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .email {
  order: 2;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .places {
  order: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  padding-bottom: 25px;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 15px;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .places:before {
  content: "";
  order: 5;
  margin-top: 15px;
  margin-bottom: 20px;
  border: none;
  background: url(https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/line-dashed.png) repeat-x left center;
  display: block;
  width: 100%;
  height: 7px;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe {
  font-family: "Open sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: inherit;
  height: auto;
  /*padding: 0px 30px;*/
  /*display: inline-flex;*/
  align-items: center;
  margin-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
  border-radius: 50px;
  display: inline-block;
  white-space: break-spaces;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe:hover, .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe:active, .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe {
    white-space: normal !important;
  }
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe {
  height: auto;
  padding: 10px 30px;
  background-color: #F55353;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #F55353;
}
.line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe:hover, .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe:active, .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe:focus {
  background-color: transparent;
  border: 1px solid #F55353;
  color: #161E54;
}
@media (max-width: 991px) {
  .line-evenements-vedette-details .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe {
    display: none;
  }
}

.line-aqoa-ligne-temps-titre {
  background-color: rgba(245, 83, 83, 0.8);
  padding-top: 70px;
}
@media (max-width: 767px) {
  .line-aqoa-ligne-temps-titre {
    padding-top: 45px;
  }
}
.line-aqoa-ligne-temps-titre h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-aqoa-ligne-temps-titre h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-aqoa-ligne-temps-titre h2 {
  color: #fff;
  padding-top: 20px;
  margin-bottom: 60px;
  border-top: 1px solid #fff;
}
@media (max-width: 991px) {
  .line-aqoa-ligne-temps-titre h2 {
    margin-bottom: 5px;
  }
}

.line-aqoa-ligne-temps-sous-titre {
  background-color: rgba(245, 83, 83, 0.8);
  padding-top: 20px;
}
@media (max-width: 767px) {
  .line-aqoa-ligne-temps-sous-titre {
    padding-bottom: 15px;
  }
}
.line-aqoa-ligne-temps-sous-titre .container .row > div:nth-child(1) {
  width: 33.3333333%;
}
.line-aqoa-ligne-temps-sous-titre .container .row > div:nth-child(1) .content {
  text-align: right;
  padding-right: 70px;
}
.line-aqoa-ligne-temps-sous-titre .container .row > div:nth-child(2) {
  width: 66.6666666%;
}
.line-aqoa-ligne-temps-sous-titre .container .row > div:nth-child(2) h3 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-aqoa-ligne-temps-sous-titre .container .row > div:nth-child(2) h3 {
    font-size: 21px;
    line-height: 25px;
  }
}
.line-aqoa-ligne-temps-sous-titre .container .row > div:nth-child(2) h3 {
  color: #fff;
}

.line-aqoa-ligne-temps-date {
  background-color: rgba(245, 83, 83, 0.8);
  padding-bottom: 20px;
}
.line-aqoa-ligne-temps-date.custompaddingbotttom {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .line-aqoa-ligne-temps-date.custompaddingbotttom {
    padding-bottom: 40px;
  }
}
.line-aqoa-ligne-temps-date .container .row > div:nth-child(1) {
  width: 33.3333333%;
}
@media (max-width: 767px) {
  .line-aqoa-ligne-temps-date .container .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-aqoa-ligne-temps-date .container .row > div:nth-child(1) .content {
  text-align: right;
  padding-right: 70px;
}
@media (max-width: 991px) {
  .line-aqoa-ligne-temps-date .container .row > div:nth-child(1) .content {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .line-aqoa-ligne-temps-date .container .row > div:nth-child(1) .content {
    text-align: left;
    padding-right: 0;
  }
}
.line-aqoa-ligne-temps-date .container .row > div:nth-child(1) .content h5 {
  margin-bottom: 25px;
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.line-aqoa-ligne-temps-date .container .row > div:nth-child(1) .content h5:after {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  display: block;
  margin-top: 8px;
  right: 0;
}
@media (max-width: 767px) {
  .line-aqoa-ligne-temps-date .container .row > div:nth-child(1) .content h5:after {
    left: 0;
  }
}
.line-aqoa-ligne-temps-date .container .row > div:nth-child(2) {
  width: 66.6666666%;
}
@media (max-width: 767px) {
  .line-aqoa-ligne-temps-date .container .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-aqoa-ligne-temps-date .container .row > div:nth-child(2) p {
  color: #fff;
}

.line-aqoa-racisme {
  margin-top: 145px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .line-aqoa-racisme {
    margin-top: 80px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .line-aqoa-racisme {
    margin-top: 65px;
  }
}
.line-aqoa-racisme .container {
  padding-top: 25px;
}
.line-aqoa-racisme .container:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #161E54;
  position: relative;
  top: -25px;
  margin-left: auto;
  margin-right: auto;
}
.line-aqoa-racisme .container .row > div:nth-child(1) {
  width: 43%;
}
@media (max-width: 767px) {
  .line-aqoa-racisme .container .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-aqoa-racisme .container .row > div:nth-child(1) .content {
  padding-right: 70px;
}
@media (max-width: 991px) {
  .line-aqoa-racisme .container .row > div:nth-child(1) .content {
    padding-right: 0;
  }
}
.line-aqoa-racisme .container .row > div:nth-child(1) .content h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-aqoa-racisme .container .row > div:nth-child(1) .content h3 {
    font-size: 24px;
    line-height: 34px;
  }
}
.line-aqoa-racisme .container .row > div:nth-child(1) .content h3 {
  font-weight: 700;
}
@media (max-width: 767px) {
  .line-aqoa-racisme .container .row > div:nth-child(1) .content h3 {
    margin-bottom: 60px;
  }
}
.line-aqoa-racisme .container .row > div:nth-child(2) {
  width: 57%;
}
@media (max-width: 767px) {
  .line-aqoa-racisme .container .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-aqoa-racisme .container .row > div:nth-child(2) h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-aqoa-racisme .container .row > div:nth-child(2) h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-aqoa-racisme .container .row > div:nth-child(2) h2 {
  font-weight: 600;
}

.line-gouvernance {
  padding-top: 50px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .line-gouvernance {
    padding-top: 40px;
    padding-bottom: 25px;
  }
}
.line-gouvernance h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-gouvernance h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-gouvernance h2 {
  color: #F55353;
  padding-top: 20px;
  margin-bottom: 60px;
  border-top: 1px solid #F55353;
}
@media (max-width: 767px) {
  .line-gouvernance h2 {
    margin-bottom: 45px;
  }
}
.line-gouvernance .content .row {
  margin-left: 60px;
  margin-right: 60px;
}
@media (max-width: 1199px) {
  .line-gouvernance .content .row {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .line-gouvernance .content .row {
    margin-top: 45px !important;
  }
}
.line-gouvernance .content .row .item {
  display: flex;
  align-items: stretch;
  min-height: 380px;
}
@media (max-width: 991px) {
  .line-gouvernance .content .row .item {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .line-gouvernance .content .row .item {
    flex-direction: column;
    align-items: center;
  }
}
.line-gouvernance .content .row .item .itemImage {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 10;
}
.line-gouvernance .content .row .item .itemImage img {
  width: 278px;
  height: 256px !important;
  object-fit: contain;
  object-position: center center;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .line-gouvernance .content .row .item .itemImage img {
    width: 200px;
    height: 180px !important;
  }
}
.line-gouvernance .content .row .item .intro {
  flex: 2;
  background-color: #fff;
  padding: 55px 55px 55px 225px;
  border-radius: 25px;
  margin-left: -180px;
}
@media (max-width: 991px) {
  .line-gouvernance .content .row .item .intro {
    padding: 55px 55px 30px 135px;
    margin-left: -95px;
  }
}
@media (max-width: 767px) {
  .line-gouvernance .content .row .item .intro {
    padding: 125px 20px 30px 20px !important;
    margin-left: 0;
    margin-top: -90px;
  }
}
.line-gouvernance .content .row .item .intro h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  margin-bottom: 0;
  margin-top: 5px;
}
.line-gouvernance .content .row .item .intro h4 {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}
.line-gouvernance .content .row .item .intro p {
  font-size: 14px;
  line-height: 20px;
}
.line-gouvernance .content .row .item .intro a.linkedin {
  position: absolute;
  top: calc(50% - 100px);
  left: -25px;
  transform: rotate(270deg);
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 1199px) {
  .line-gouvernance .content .row .item .intro a.linkedin {
    top: calc(50% - 95px);
    left: -35px;
  }
}
@media (max-width: 991px) {
  .line-gouvernance .content .row .item .intro a.linkedin {
    top: calc(50% - 65px);
    left: -35px;
  }
}
@media (max-width: 767px) {
  .line-gouvernance .content .row .item .intro a.linkedin {
    top: 25px;
    left: calc(50% - 145px);
  }
}
.line-gouvernance .content .row .item .intro a.courriel {
  position: absolute;
  top: calc(50% - 25px);
  left: -23px;
  transform: rotate(270deg);
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 1199px) {
  .line-gouvernance .content .row .item .intro a.courriel {
    top: calc(50% - 20px);
    left: -33px;
  }
}
@media (max-width: 991px) {
  .line-gouvernance .content .row .item .intro a.courriel {
    top: calc(50% + 10px);
    left: -33px;
  }
}
@media (max-width: 767px) {
  .line-gouvernance .content .row .item .intro a.courriel {
    top: 95px;
    left: calc(50% - 143px);
  }
}

.line-partenaires {
  padding-top: 80px;
  padding-bottom: 65px;
}
@media (max-width: 991px) {
  .line-partenaires {
    padding-top: 50px;
    padding-bottom: 15px;
  }
}
.line-partenaires .container > .row > div > h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-partenaires .container > .row > div > h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-partenaires .container > .row > div > h2 {
  color: #F55353;
  padding-top: 20px;
  border-top: 1px solid #F55353;
}
.line-partenaires .container > .row > div .newsList > .row .item {
  padding-top: 85px;
}
.line-partenaires .container > .row > div .newsList > .row .item .itemImage {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 248px;
  height: 100%;
  height: 110px;
  max-height: 110px;
  margin-bottom: 0;
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
}
.line-partenaires .container > .row > div .newsList > .row .item .itemImage a .e-thumbnail {
  margin-bottom: 0;
  width: 100%;
  height: auto !important;
  border: none;
}
.line-partenaires-logo {
  padding-top: 80px;
  padding-bottom: 65px;
}
@media (max-width: 991px) {
  .line-partenaires-logo {
    padding-top: 50px;
    padding-bottom: 15px;
  }
}
.line-partenaires-logo h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-partenaires-logo h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-partenaires-logo h2 {
  color: #F55353;
  padding-top: 20px;
  border-top: 1px solid #F55353;
}
.line-partenaires-logo .content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  padding-top: 85px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .line-partenaires-logo .content {
    padding-top: 45px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .line-partenaires-logo .content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.line-partenaires-logo .content p {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 248px;
  height: 100%;
  max-height: 110px;
  margin-bottom: 0;
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .line-partenaires-logo .content p {
    max-width: 100%;
  }
}
.line-partenaires-logo .content p a img {
  max-width: 80%;
  object-fit: contain;
  object-position: center center;
  border-radius: 15px;
}
.line-partenaires-logo.grid3 .content {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 991px) {
  .line-partenaires-logo.grid3 .content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .line-partenaires-logo.grid3 .content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.line-partenaires-logo.grid3 .content p {
  max-width: 100%;
  height: 160px;
  max-height: 160px;
}

.line-partenaires-logo .news-mosaic .row div img {
  border-radius: 15px;
}

.line-partenaires-titre-formulaire {
  padding-top: 25px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .line-partenaires-titre-formulaire {
    padding-bottom: 5px;
  }
}
.line-partenaires-titre-formulaire h2 {
  padding-top: 70px;
  border-top: 1px solid #F55353;
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-partenaires-titre-formulaire h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-partenaires-titre-formulaire h2 {
  color: #F55353;
}
@media (max-width: 767px) {
  .line-partenaires-titre-formulaire h2 {
    text-align: left !important;
  }
}

@media (min-width: 1200px) {
  .line-partenaires-texte-formulaire .container {
    width: 952px;
  }
}
.line-partenaires-texte-formulaire .container h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-partenaires-texte-formulaire .container h3 {
    font-size: 24px;
    line-height: 34px;
  }
}

.line-partenaires-formulaire {
  padding-top: 45px;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .line-partenaires-formulaire .container {
    width: 768px;
  }
}
.line-partenaires-formulaire .container .crm-form-steps {
  display: none;
}

.partenaires-membres .container .row > div table.accordeon {
  display: block;
  width: 100% !important;
  border: 0;
  margin-bottom: 10px;
}
.partenaires-membres .container .row > div table.accordeon tbody, .partenaires-membres .container .row > div table.accordeon tr, .partenaires-membres .container .row > div table.accordeon td {
  border: 0;
}
.partenaires-membres .container .row > div table.accordeon tbody {
  display: block;
}
.partenaires-membres .container .row > div table.accordeon tbody tr {
  /* Title/accordeon box */
}
.partenaires-membres .container .row > div table.accordeon tbody tr:first-child {
  cursor: pointer;
  display: block;
  background-color: #F5F5F5;
  padding: 15px;
  padding-bottom: 0;
  position: relative;
}
.partenaires-membres .container .row > div table.accordeon tbody tr:first-child:after {
  content: "+";
  display: block;
  position: absolute;
  right: 15px;
  bottom: -1px;
  left: initial;
  top: initial;
  font-size: 22px;
  font-weight: 400;
  transition: transform 150ms;
  width: 24px;
  height: 24px;
  color: #fff;
  padding-left: 5px;
  background: #F55353;
  border-bottom-right-radius: 16px;
  z-index: 5;
}
.partenaires-membres .container .row > div table.accordeon tbody tr:last-child {
  display: block;
}
.partenaires-membres .container .row > div table.accordeon tbody tr:last-child td {
  display: block;
  max-height: 0;
  overflow: hidden;
}
.partenaires-membres .container .row > div table.accordeon {
  /* active and opened content */
}
.partenaires-membres .container .row > div table.accordeon.active tbody tr:first-child td {
  background: #fff;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
}
.partenaires-membres .container .row > div table.accordeon.active tbody tr:first-child:before {
  content: "-";
  display: block;
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: 50px;
  font-weight: 100;
  color: #fff;
  bottom: 7px;
  right: 20px;
  z-index: 10;
}
.partenaires-membres .container .row > div table.accordeon.active tbody tr:first-child:after {
  content: "";
  transform: none;
}
.partenaires-membres .container .row > div table.accordeon.active tbody tr:last-child {
  padding: 15px;
  padding-top: 0;
}
.partenaires-membres .container .row > div table.accordeon.active tbody tr:last-child td {
  background-color: #fff;
  max-height: 5000px;
  transition: max-height 1.5s;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: 15px;
  position: relative;
}
.partenaires-membres .container .row > div table.accordeon.active tbody tr:last-child td:before {
  content: "";
  background: #F55353;
  width: 300px;
  height: 1px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.partenaires-membres .container .row > div table.accordeon.active tbody tr:last-child td p:last-of-type {
  text-align: center;
}

.line-notre-role-titre {
  padding-top: 75px;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .line-notre-role-titre {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .line-notre-role-titre {
    padding-top: 30px;
  }
}
.line-notre-role-titre h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-notre-role-titre h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-notre-role-titre h2 {
  color: #161E54;
  padding-top: 20px;
  margin-bottom: 60px;
  border-top: 1px solid #161E54;
}
@media (max-width: 991px) {
  .line-notre-role-titre h2 {
    margin-bottom: 30px;
  }
}

.line-notre-role-ecosysteme {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .line-notre-role-ecosysteme {
    padding-top: 10px;
  }
}
.line-notre-role-ecosysteme .container .row > div:nth-child(1) {
  width: 33.3333333%;
}
@media (max-width: 767px) {
  .line-notre-role-ecosysteme .container .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-notre-role-ecosysteme .container .row > div:nth-child(1) .content {
  text-align: right;
  padding-right: 70px;
}
@media (max-width: 991px) {
  .line-notre-role-ecosysteme .container .row > div:nth-child(1) .content {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .line-notre-role-ecosysteme .container .row > div:nth-child(1) .content {
    padding-right: 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    text-align: left;
  }
}
.line-notre-role-ecosysteme .container .row > div:nth-child(1) .content h3 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-notre-role-ecosysteme .container .row > div:nth-child(1) .content h3 {
    font-size: 21px;
    line-height: 25px;
  }
}
.line-notre-role-ecosysteme .container .row > div:nth-child(1) .content h3 {
  margin-bottom: 25px;
  position: relative;
}
@media (max-width: 767px) {
  .line-notre-role-ecosysteme .container .row > div:nth-child(1) .content h3 {
    padding-top: 10px;
    margin-bottom: 40px;
  }
}
.line-notre-role-ecosysteme .container .row > div:nth-child(1) .content h3:after {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #161E54;
  position: absolute;
  display: block;
  margin-top: 8px;
  right: 0;
}
@media (max-width: 767px) {
  .line-notre-role-ecosysteme .container .row > div:nth-child(1) .content h3:after {
    left: 0;
  }
}
.line-notre-role-ecosysteme .container .row > div:nth-child(1) .content h3 br {
  display: block !important;
}
@media (max-width: 767px) {
  .line-notre-role-ecosysteme .container .row > div:nth-child(1) .content p {
    width: 130px;
    margin-bottom: 0;
  }
}
.line-notre-role-ecosysteme .container .row > div:nth-child(2) {
  width: 66.6666666%;
}
@media (max-width: 767px) {
  .line-notre-role-ecosysteme .container .row > div:nth-child(2) {
    width: 100%;
  }
}

.line-notre-role-rejoindre {
  padding-top: 45px;
  padding-bottom: 25px;
}
@media (max-width: 991px) {
  .line-notre-role-rejoindre {
    padding-top: 15px;
    padding-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .line-notre-role-rejoindre {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .line-notre-role-rejoindre p {
    text-align: center !important;
  }
}

.line-travailler-aqoa-titre {
  margin-top: 95px;
}
.line-travailler-aqoa-titre .container:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #161E54;
  position: relative;
  top: -25px;
  margin-left: auto;
  margin-right: auto;
}
.line-travailler-aqoa-titre .container h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-titre .container h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

.line-travailler-aqoa-icone {
  padding-bottom: 105px;
}
@media (max-width: 767px) {
  .line-travailler-aqoa-icone {
    padding-bottom: 85px;
  }
}
@media (max-width: 991px) {
  .line-travailler-aqoa-icone .container > .row {
    display: flex;
    flex-wrap: wrap-reverse;
  }
}
@media (max-width: 991px) {
  .line-travailler-aqoa-icone .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-travailler-aqoa-icone .container > .row > div:nth-child(1) .content {
  margin-top: 60px;
  padding: 80px 10px 20px 100px;
  margin-right: -380px;
  background-color: #fff;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-icone .container > .row > div:nth-child(1) .content {
    margin-top: -120px;
    padding: 185px 100px 20px 100px;
    margin-right: 110px;
  }
}
@media (max-width: 767px) {
  .line-travailler-aqoa-icone .container > .row > div:nth-child(1) .content {
    padding: 165px 20px 20px 40px;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.line-travailler-aqoa-icone .container > .row > div:nth-child(1) .content > .row {
  margin-top: 0;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .line-travailler-aqoa-icone .container > .row > div:nth-child(1) .content > .row {
    margin-bottom: 10px;
  }
}
.line-travailler-aqoa-icone .container > .row > div:nth-child(1) .content > .row .item {
  display: flex;
}
.line-travailler-aqoa-icone .container > .row > div:nth-child(1) .content > .row .item .itemImage {
  padding-right: 40px;
}
@media (max-width: 767px) {
  .line-travailler-aqoa-icone .container > .row > div:nth-child(1) .content > .row .item .itemImage {
    padding-right: 10px;
    min-width: 90px;
  }
}
.line-travailler-aqoa-icone .container > .row > div:nth-child(1) .content > .row .item .itemImage img {
  margin-bottom: 0;
}
.line-travailler-aqoa-icone .container > .row > div:nth-child(1) .content > .row .item .intro {
  max-width: 260px;
}
.line-travailler-aqoa-icone .container > .row > div:nth-child(1) .content > .row .item .intro h3 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-icone .container > .row > div:nth-child(1) .content > .row .item .intro h3 {
    font-size: 21px;
    line-height: 25px;
  }
}
.line-travailler-aqoa-icone .container > .row > div:nth-child(1) .content > .row .item .intro h3 {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-icone .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-travailler-aqoa-icone .container > .row > div:nth-child(2) .content {
    padding-top: 70px;
    text-align: right;
  }
}
@media (max-width: 767px) {
  .line-travailler-aqoa-icone .container > .row > div:nth-child(2) .content {
    padding-top: 30px;
  }
}
.line-travailler-aqoa-icone .container > .row > div:nth-child(2) img {
  border-radius: 15px;
}
@media (max-width: 767px) {
  .line-travailler-aqoa-icone .container > .row > div:nth-child(2) img {
    max-height: 230px;
    object-fit: cover;
  }
}

.line-travailler-aqoa-valeurs {
  background-color: rgba(245, 83, 83, 0.8);
  padding-top: 105px;
  padding-bottom: 110px;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-valeurs {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .line-travailler-aqoa-valeurs {
    padding-top: 70px;
    padding-bottom: 55px;
    margin-bottom: 0;
  }
}
.line-travailler-aqoa-valeurs h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-valeurs h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-travailler-aqoa-valeurs h2 {
  color: #fff;
  padding-top: 20px;
  margin-bottom: 60px;
  border-top: 1px solid #fff;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-valeurs h2 {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .line-travailler-aqoa-valeurs h2 {
    margin-bottom: 40px;
  }
}
.line-travailler-aqoa-valeurs .content {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px 25px;
}
@media (max-width: 767px) {
  .line-travailler-aqoa-valeurs .content {
    gap: 35px 25px;
  }
}
.line-travailler-aqoa-valeurs .content > .row {
  margin-top: 0 !important;
  width: 18%;
  margin-left: 0;
  margin-right: 0;
  display: inline-flex;
}
@media (max-width: 1199px) {
  .line-travailler-aqoa-valeurs .content > .row {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .line-travailler-aqoa-valeurs .content > .row {
    width: 100%;
  }
}
.line-travailler-aqoa-valeurs .content > .row .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .line-travailler-aqoa-valeurs .content > .row .item {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.line-travailler-aqoa-valeurs .content > .row .item h3 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-valeurs .content > .row .item h3 {
    font-size: 21px;
    line-height: 25px;
  }
}
.line-travailler-aqoa-valeurs .content > .row .item h3 {
  color: #fff;
  text-align: center;
}
.line-travailler-aqoa-valeurs .content > .row .item p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.line-travailler-aqoa-postes {
  padding-top: 105px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .line-travailler-aqoa-postes {
    padding-top: 90px;
  }
}
.line-travailler-aqoa-postes h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-postes h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-travailler-aqoa-postes h2 {
  color: #161E54;
  padding-top: 20px;
  margin-bottom: 40px;
  border-top: 1px solid #161E54;
}

.line-travailler-aqoa-canditures {
  padding-top: 65px;
  padding-bottom: 25px;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-canditures {
    padding-bottom: 15px;
  }
}
.line-travailler-aqoa-canditures .container > .row:before {
  content: "";
  width: calc(100% - 30px);
  height: 1px;
  background-color: #161E54;
  position: relative;
  top: -4px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-canditures .container > .row > div:nth-child(1) {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .line-travailler-aqoa-canditures .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .line-travailler-aqoa-canditures .container > .row > div:nth-child(1) {
    padding-right: 35px;
  }
}
@media (max-width: 991px) {
  .line-travailler-aqoa-canditures .container > .row > div:nth-child(1) .content {
    padding-bottom: 15px;
  }
}
.line-travailler-aqoa-canditures .container > .row > div:nth-child(1) h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-canditures .container > .row > div:nth-child(1) h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-travailler-aqoa-canditures .container > .row > div:nth-child(1) h2 {
  color: #161E54;
  padding-top: 25px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .line-travailler-aqoa-canditures .container > .row > div:nth-child(1) h2 {
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .line-travailler-aqoa-canditures .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-travailler-aqoa-canditures .container > .row > div:nth-child(2) .form-horizontal {
  padding-top: 15px;
}
.line-travailler-aqoa-canditures .formbuilder-confirmation-content {
  padding-top: 150px;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-canditures .formbuilder-confirmation-content {
    padding-top: 80px;
  }
}

.line-travailler-aqoa-poste {
  margin-top: 105px;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-poste {
    margin-top: 48px;
  }
}
.line-travailler-aqoa-poste .container h1 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-poste .container h1 {
    font-size: 30px;
    line-height: 38px;
  }
}
.line-travailler-aqoa-poste .container h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-poste .container h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.line-travailler-aqoa-poste .container h2 {
  padding-top: 40px;
}
.line-travailler-aqoa-poste .container h3 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-travailler-aqoa-poste .container h3 {
    font-size: 21px;
    line-height: 25px;
  }
}
.line-travailler-aqoa-poste .container h3 {
  color: #F55353;
}
.line-travailler-aqoa-poste .container .mod-article__published-date {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #161E54;
  text-transform: initial;
  margin-bottom: 24px;
}

.line-travailler-aqoa-formulaire {
  padding-top: 60px;
}
.line-travailler-aqoa-formulaire .container:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #F55353;
  position: relative;
  top: -25px;
  margin-left: auto;
  margin-right: auto;
}
.line-travailler-aqoa-formulaire .container h2 {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 30px;
}
.line-travailler-aqoa-formulaire .formbuilder-confirmation-content h5 {
  color: #F55353;
}

.line-faq-articles {
  padding: 50px 0;
}
.line-faq-articles .panel-news-accordion .panel-body {
  padding: 9px 15px 24px 45px;
}

.offre-membre .col-grid[class*=grid] .news-mosaic {
  gap: 35px 65px;
}
.offre-membre .line-offre-membre img {
  padding-bottom: 36px;
}
@media (max-width: 767px) {
  .offre-membre .line-offre-membre img {
    padding-top: 36px;
  }
}
.offre-membre .line-offre-avantage {
  margin-top: 64px;
}
.offre-membre .line-offre-avantage .news-intro p {
  text-align: center;
}
.offre-membre .line-offre-avantage .news-intro h3 {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.offre-membre .line-offre-avantage .news-intro img {
  border-radius: 15px;
}
.offre-membre .line-decouvrir-comites p:last-child {
  text-align: right;
}
@media (max-width: 991px) {
  .offre-membre .line-decouvrir-comites p:last-child {
    padding-top: 36px;
    text-align: left;
  }
}
.offre-membre .line-cta-btn p {
  text-align: right;
}
.offre-membre .line-cta-btn a {
  margin-top: 64px;
}
@media (max-width: 767px) {
  .offre-membre .line-cta-btn p {
    text-align: center;
  }
}
.offre-membre [data-zone-alias="Zone 1222280"],
.offre-membre [data-zone-alias="Zone 1222362"] {
  padding-right: 100px;
}
@media (max-width: 991px) {
  .offre-membre [data-zone-alias="Zone 1222280"],
  .offre-membre [data-zone-alias="Zone 1222362"] {
    padding-right: 20px;
  }
}

/*Pages: Orthophonie, Audiologie */
.line-discover-nature .container .row-fluid.row [data-zone-id="1222295"],
.line-discover-nature .container .row-fluid.row [data-zone-id="1222296"] {
  padding-right: 100px;
}
@media (max-width: 991px) {
  .line-discover-nature .container .row-fluid.row [data-zone-id="1222295"],
  .line-discover-nature .container .row-fluid.row [data-zone-id="1222296"] {
    padding-right: 20px;
  }
}
.line-discover-nature .container .row-fluid.row [data-zone-id="1222336"] img,
.line-discover-nature .container .row-fluid.row [data-zone-id="1222337"] img {
  margin-top: 16px;
}

.line-discover-video {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .line-discover-video {
    margin-top: 80px;
  }
}
.line-discover-video .content {
  max-width: 546px;
  margin-left: auto;
  margin-right: auto;
}
.line-discover-video .content p:first-child {
  background-color: #fff;
  border-radius: 15px;
  padding-bottom: 112px;
}
.line-discover-video .content p:last-child {
  text-align: center;
  font-size: 21px;
  position: relative;
  top: -85px;
}

.trouble-ortho,
.line-lexique {
  padding-top: 50px;
}

.line-btn-discover .content {
  text-align: center;
}
@media (max-width: 767px) {
  .line-btn-discover .content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .line-btn-discover .content a {
    margin: 8px;
  }
}

.line-cta-btn a {
  margin-top: 64px;
}
.line-cta-btn p {
  text-align: right;
}
@media (max-width: 767px) {
  .line-cta-btn p {
    text-align: center;
  }
}

.line-comites-groupes-travail-impliquer {
  padding-top: 50px;
}
.line-comites-groupes-travail-impliquer h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-comites-groupes-travail-impliquer h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-comites-groupes-travail-impliquer h2 {
  color: #F55353;
  padding-top: 20px;
  margin-bottom: 60px;
  border-top: 1px solid #F55353;
}

.line-comites-groupes-travail-impliquer-bloc {
  padding-bottom: 110px;
}
@media (max-width: 991px) {
  .line-comites-groupes-travail-impliquer-bloc {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .line-comites-groupes-travail-impliquer-bloc .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .line-comites-groupes-travail-impliquer-bloc .container .row div {
    width: 100%;
  }
}
.line-comites-groupes-travail-impliquer-bloc .container .row div img {
  border-radius: 15px;
}
.line-comites-groupes-travail-impliquer-bloc .container .row div .mod-article__intro {
  border-radius: 15px;
  background-color: #fff;
  padding: 50px 55px 35px 55px;
  margin: -65px 45px 0 45px;
  position: relative;
}
.line-comites-groupes-travail-impliquer-bloc .container .row div .mod-article__intro h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-comites-groupes-travail-impliquer-bloc .container .row div .mod-article__intro h3 {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (max-width: 991px) {
  .line-comites-groupes-travail-impliquer-bloc .container .row div .mod-article__intro {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .line-comites-groupes-travail-impliquer-bloc .container .row div .mod-article__intro {
    margin-top: -32px;
    padding: 48px 32px;
  }
}
.line-comites-groupes-travail-accordeon {
  padding-top: 15px;
  padding-bottom: 40px;
}
.line-comites-groupes-travail-accordeon h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-comites-groupes-travail-accordeon h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.line-comites-groupes-travail-accordeon h2 {
  color: #F55353;
  padding-top: 20px;
  margin-bottom: 40px;
  border-top: 1px solid #F55353;
}

/*Category Dropdown Styles*/
.line-formation-recherche .form-horizontal .col-sm-12,
.line-formation-recherche .form-horizontal .col-md-18,
.line-actualite-recherche .form-horizontal .col-sm-12,
.line-actualite-recherche .form-horizontal .col-md-18 {
  width: 100%;
}
.line-formation-recherche .content,
.line-formation-recherche .form-element-category,
.line-actualite-recherche .content,
.line-actualite-recherche .form-element-category {
  text-align: center;
  width: 100%;
}
.line-formation-recherche .content h4, .line-formation-recherche .content label,
.line-formation-recherche .form-element-category h4,
.line-formation-recherche .form-element-category label,
.line-actualite-recherche .content h4,
.line-actualite-recherche .content label,
.line-actualite-recherche .form-element-category h4,
.line-actualite-recherche .form-element-category label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #161E54;
  text-transform: initial;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-align: center;
  margin-bottom: 15px !important;
}
.line-formation-recherche .content select.moteur-recherche,
.line-formation-recherche .content select.form-control,
.line-formation-recherche .form-element-category select.moteur-recherche,
.line-formation-recherche .form-element-category select.form-control,
.line-actualite-recherche .content select.moteur-recherche,
.line-actualite-recherche .content select.form-control,
.line-actualite-recherche .form-element-category select.moteur-recherche,
.line-actualite-recherche .form-element-category select.form-control {
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px !important;
  border: 0;
  padding: 13px 30px 13px 20px !important;
  width: 100%;
  max-width: 400px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg fill='black' width='19' height='10' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 75'%3E%3Cpath id='Path_4853' data-name='Path 4853' d='M-23614.141-21191.273s-2.314-2.559,0-4.809,4.836,0,4.836,0l69.119,65.277,69.193-65.547a3.488,3.488,0,0,1,4.713,0c2.5,2.1,0,4.957,0,4.957l-71.893,68.258a3.446,3.446,0,0,1-2.014.852,4.993,4.993,0,0,1-2.314-.852Z' transform='translate(23615.169 21197.285)'/%3E%3C/svg%3E") no-repeat right 20px center !important;
}

.line-formation-vedette {
  /*Événements en vedette - affichage mosaïque*/
  padding-top: 100px;
}
.line-formation-vedette h3 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-formation-vedette h3 {
    font-size: 21px;
    line-height: 25px;
  }
}
.line-formation-vedette h3 {
  text-transform: initial;
  margin-bottom: 16px;
}
.line-formation-vedette .e-date {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #161E54;
  text-transform: initial;
  margin-bottom: 20px;
}
.line-formation-vedette hr {
  display: none;
}
.line-formation-vedette .btn-primary {
  font-size: 16px !important;
  line-height: 24px !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0 !important;
  color: #161E54 !important;
  text-transform: inherit !important;
  text-decoration: underline !important;
  font-weight: 500 !important;
  background-color: transparent !important;
  transition: all 300ms !important;
}
.line-formation-vedette .btn-primary:after {
  content: "" !important;
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-bleu.svg") !important;
  background-repeat: no-repeat !important;
  right: -12px !important;
  margin-top: -1px !important;
  position: relative !important;
  display: inline-block !important;
  width: 21px !important;
  height: 9px !important;
  animation-name: none !important;
}
.line-formation-vedette .btn-primary:hover, .line-formation-vedette .btn-primary:focus {
  background-color: transparent !important;
  text-decoration: underline !important;
  color: #F55353 !important;
}
.line-formation-vedette .btn-primary:hover:after, .line-formation-vedette .btn-primary:focus:after {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-rouge.svg") !important;
  -webkit-animation-duration: 1s !important;
  animation-duration: 1s !important;
  -webkit-animation-fill-mode: both !important;
  animation-fill-mode: both !important;
  -webkit-animation-timing-function: ease-in-out !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  -webkit-animation-iteration-count: infinite !important;
  animation-name: bounce_arrow !important;
  -moz-animation-name: bounce_arrow !important;
}
.line-formation-vedette .zone-event_flash .eventsList .row .col-sm-24 .mod-eventflash__item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.line-formation-vedette .zone-event_flash .eventsList .row .col-sm-24 .mod-eventflash__item a img {
  margin-bottom: 2.2rem;
  width: auto;
  height: auto !important;
  object-position: initial;
  border: 0;
}
.line-formation-vedette .zone-event_flash .eventsList .row .col-sm-24 .mod-eventflash__item .actions {
  margin-top: 0;
}
.line-formation-vedette .zone-event_flash .eventsList .row .col-sm-24 .mod-eventflash__item .actions a {
  margin-top: 7px;
}
.line-espace-evenement {
  padding: auto;
}
.line-espace-evenement .zone-event .event_list_filter .chosen-choices {
  border-radius: 50px !important;
}
.line-espace-evenement .zone-event .event_list_filter select {
  border-radius: 50px !important;
}
.line-espace-evenement .zone-event .events-mosaic {
  margin-top: 120px;
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item a img {
  border-radius: 15px;
  margin-bottom: 2.2rem;
  width: auto;
  height: auto !important;
  object-position: initial;
  border: 0;
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item h3 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item h3 {
    font-size: 21px;
    line-height: 25px;
  }
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item h3 {
  text-transform: initial;
  margin-bottom: 16px;
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item .e-date {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #161E54;
  text-transform: initial;
  margin-bottom: 20px;
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item .events-mosaic-category {
  display: none;
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item .events-mosaic-tags {
  display: none;
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item .address {
  display: none;
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item .contact {
  display: none;
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item .events-mosaic__short-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #161E54;
  text-transform: initial;
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item .actions {
  margin-top: 30px;
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item .actions .btn-primary {
  font-size: 16px !important;
  line-height: 24px !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0 !important;
  color: #161E54 !important;
  text-transform: inherit !important;
  text-decoration: underline !important;
  font-weight: 500 !important;
  background-color: transparent !important;
  transition: all 300ms !important;
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item .actions .btn-primary:after {
  content: "" !important;
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-bleu.svg") !important;
  background-repeat: no-repeat !important;
  right: -12px !important;
  margin-top: -1px !important;
  position: relative !important;
  display: inline-block !important;
  width: 21px !important;
  height: 9px !important;
  animation-name: none !important;
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item .actions .btn-primary:hover, .line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item .actions .btn-primary:focus {
  background-color: transparent !important;
  text-decoration: underline !important;
  color: #F55353 !important;
}
.line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item .actions .btn-primary:hover:after, .line-espace-evenement .zone-event .events-mosaic .row .col-sm-24 .item .actions .btn-primary:focus:after {
  background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/icon/icon-fleche-rouge.svg") !important;
  -webkit-animation-duration: 1s !important;
  animation-duration: 1s !important;
  -webkit-animation-fill-mode: both !important;
  animation-fill-mode: both !important;
  -webkit-animation-timing-function: ease-in-out !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  -webkit-animation-iteration-count: infinite !important;
  animation-name: bounce_arrow !important;
  -moz-animation-name: bounce_arrow !important;
}

body.formation-details .line-espace-evenement {
  padding-top: 80px;
}
body.formation-details .line-espace-evenement .jumbotron {
  background-color: transparent;
  padding: 0 20px 0 0;
}
@media (max-width: 991px) {
  body.formation-details .line-espace-evenement .row-event-jumbotron__left-right {
    display: flex;
    flex-wrap: wrap;
  }
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__right {
  display: flex;
  flex-direction: column;
  padding-left: 100px;
}
@media (max-width: 991px) {
  body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__right {
    margin: 0 0 50px 0;
    padding: 0 30px;
    order: 1;
    width: 100%;
  }
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__category {
  order: 1;
  font-style: normal;
  font-size: 21;
  font-weight: 800;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__left-right__title {
  order: 0;
  font-size: 32px;
  line-height: 39px;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description {
  order: 2;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description h2 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description h2 {
    font-size: 21px;
    line-height: 25px;
  }
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-additional {
  order: 3;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper {
  order: 4;
  /*.event-detail__nav {
      display: flex;
      align-items: center;
      justify-content: center;
  }*/
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  text-transform: uppercase;
  color: #161E54;
  background: transparent;
  padding-left: 5px;
  margin: 0;
  line-height: 27px;
  text-transform: none;
}
@media (max-width: 767px) {
  body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__nav {
    flex-direction: column;
  }
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__nav .btn-back {
  display: none;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left {
  display: flex;
  border-right: 1px solid #F55353;
  width: 28%;
}
@media (max-width: 991px) {
  body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left {
    order: 2;
    border: none;
    background-color: #fff;
    padding: 64px;
    width: 100%;
    text-align: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left {
    padding: 32px;
  }
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron {
  width: 100%;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__date {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 0;
  padding-bottom: 40px;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .calendar-link-content .btn-secondary {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #161E54;
  text-transform: initial;
  margin-bottom: 0;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .calendar-link-content .btn-secondary:after {
  display: none;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .calendar-link-content .btn-secondary:hover {
  color: #F55353;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .address__info .event-info__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding-bottom: 25px;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info:after {
  content: "";
  margin-top: 5px;
  border: none;
  background: url(https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/line-dashed.png) repeat-x left center;
  display: block;
  width: 100%;
  height: 7px;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .event-info__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  padding-top: 20px;
  order: 1;
  border-bottom: none;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .contact, body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .phone, body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .email {
  border-bottom: none;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .contact {
  order: 3;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .email {
  order: 2;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .places {
  order: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  padding-bottom: 25px;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 15px;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .address__contact-info .places:before {
  content: "";
  order: 5;
  margin-top: 15px;
  margin-bottom: 20px;
  border: none;
  background: url(https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/line-dashed.png) repeat-x left center;
  display: block;
  width: 100%;
  height: 7px;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe {
  font-family: "Open sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: inherit;
  height: auto;
  /*padding: 0px 30px;*/
  /*display: inline-flex;*/
  align-items: center;
  margin-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
  border-radius: 50px;
  display: inline-block;
  white-space: break-spaces;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe:hover, body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe:active, body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe {
    white-space: normal !important;
  }
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe {
  height: auto;
  padding: 10px 30px;
  background-color: #F55353;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #F55353;
}
body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe:hover, body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe:active, body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe:focus {
  background-color: transparent;
  border: 1px solid #F55353;
  color: #161E54;
}
@media (max-width: 991px) {
  body.formation-details .line-espace-evenement .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron__btn_subscribe {
    display: none;
  }
}

.lien-conference-annuelle-prepromo-titre {
  padding-top: 100px;
}
.lien-conference-annuelle-prepromo-titre.paddingbottom {
  padding-bottom: 115px;
}
.lien-conference-annuelle-prepromo-titre .container:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #F55353;
  position: relative;
  top: -30px;
  margin-left: auto;
  margin-right: auto;
}
.lien-conference-annuelle-prepromo-titre .container h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .lien-conference-annuelle-prepromo-titre .container h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.lien-conference-annuelle-prepromo-titre .container h2 {
  color: #F55353;
  margin-bottom: 35px;
}

.lien-conference-annuelle-prepromo-formulaire-titre {
  padding-top: 70px;
}
.lien-conference-annuelle-prepromo-formulaire-titre .container:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #F55353;
  position: relative;
  top: -100px;
  margin-left: auto;
  margin-right: auto;
}
.lien-conference-annuelle-prepromo-formulaire-titre .container h2 {
  margin-bottom: 0;
}
.lien-conference-annuelle-prepromo-formulaire-titre .container h3 {
  font-weight: 600;
  color: #F55353;
}

.lien-conference-annuelle-prepromo-formulaire {
  padding-top: 20px;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .lien-conference-annuelle-prepromo-formulaire .container {
    width: 768px;
  }
}
.lien-conference-annuelle-prepromo-formulaire .container .crm-form-steps {
  display: none;
}
.lien-conference-annuelle-prepromo-formulaire .container .crm-footer-frame {
  margin-top: 32px;
}

.lien-conference-annuelle-accordeon-titre {
  padding-top: 50px;
  padding-bottom: 10px;
}
.lien-conference-annuelle-accordeon-titre .container h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .lien-conference-annuelle-accordeon-titre .container h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.lien-conference-annuelle-accordeon-titre .container h2 {
  color: #F55353;
  padding-top: 20px;
  margin-bottom: 60px;
  border-top: 1px solid #F55353;
}

.lien-conference-annuelle-accordeon-sous-titre {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(1) {
    width: 33.3333333%;
  }
}
@media (max-width: 767px) {
  .lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(1) {
    width: 100%;
  }
}
.lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(1) .content {
  text-align: right;
  padding-right: 70px;
}
@media (max-width: 991px) {
  .lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(1) .content {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(1) .content {
    text-align: left;
    padding-right: 0;
  }
}
.lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(1) .content h5 {
  position: relative;
  color: #161E54;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 33px;
  margin-top: 8px;
}
.lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(1) .content h5:after {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #161E54;
  position: absolute;
  display: block;
  margin-top: 2px;
  right: 0;
}
@media (max-width: 767px) {
  .lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(1) .content h5:after {
    left: 0;
  }
}
@media (max-width: 991px) {
  .lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(2) {
    width: 66.6666666%;
  }
}
@media (max-width: 767px) {
  .lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(2) {
    width: 100%;
    padding-bottom: 0;
  }
}
.lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(2) > h3, .lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(2) .content h3 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(2) > h3, .lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(2) .content h3 {
    font-size: 21px;
    line-height: 25px;
  }
}
.lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(2) > h3, .lien-conference-annuelle-accordeon-sous-titre .container .row > div:nth-child(2) .content h3 {
  padding-top: 10px;
  padding-bottom: 15px;
}

.lien-conference-annuelle-accordeon {
  padding-bottom: 20px;
}
.lien-conference-annuelle-accordeon.custompaddingbotttom {
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .lien-conference-annuelle-accordeon .container .row > div:nth-child(1) {
    width: 33.3333333%;
  }
}
@media (max-width: 767px) {
  .lien-conference-annuelle-accordeon .container .row > div:nth-child(1) {
    width: 100%;
  }
}
.lien-conference-annuelle-accordeon .container .row > div:nth-child(1) .content {
  text-align: right;
  padding-right: 70px;
}
@media (max-width: 991px) {
  .lien-conference-annuelle-accordeon .container .row > div:nth-child(1) .content {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .lien-conference-annuelle-accordeon .container .row > div:nth-child(1) .content {
    text-align: left;
    padding-right: 0;
  }
}
.lien-conference-annuelle-accordeon .container .row > div:nth-child(1) .content h5 {
  position: relative;
  color: #161E54;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 33px;
  margin-top: 10px;
}
.lien-conference-annuelle-accordeon .container .row > div:nth-child(1) .content h5:after {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #161E54;
  position: absolute;
  display: block;
  margin-top: 2px;
  right: 0;
}
@media (max-width: 767px) {
  .lien-conference-annuelle-accordeon .container .row > div:nth-child(1) .content h5:after {
    left: 0;
  }
}
@media (max-width: 991px) {
  .lien-conference-annuelle-accordeon .container .row > div:nth-child(2) {
    width: 66.6666666%;
  }
}
@media (max-width: 767px) {
  .lien-conference-annuelle-accordeon .container .row > div:nth-child(2) {
    width: 100%;
    padding-bottom: 40px;
  }
}
.lien-conference-annuelle-accordeon .container .row > div:nth-child(2) > h3, .lien-conference-annuelle-accordeon .container .row > div:nth-child(2) .content h3 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .lien-conference-annuelle-accordeon .container .row > div:nth-child(2) > h3, .lien-conference-annuelle-accordeon .container .row > div:nth-child(2) .content h3 {
    font-size: 21px;
    line-height: 25px;
  }
}
.lien-conference-annuelle-accordeon .container .row > div:nth-child(2) > h3, .lien-conference-annuelle-accordeon .container .row > div:nth-child(2) .content h3 {
  padding-top: 10px;
  padding-bottom: 15px;
}

.lien-conference-annuelle-conferiencers {
  padding-top: 70px;
  padding-bottom: 35px;
}
@media (max-width: 991px) {
  .lien-conference-annuelle-conferiencers {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .lien-conference-annuelle-conferiencers {
    padding-top: 0;
  }
}
.lien-conference-annuelle-conferiencers h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .lien-conference-annuelle-conferiencers h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.lien-conference-annuelle-conferiencers h2 {
  color: #F55353;
  padding-top: 20px;
  margin-bottom: 85px;
  border-top: 1px solid #F55353;
}
@media (max-width: 767px) {
  .lien-conference-annuelle-conferiencers h2 {
    margin-bottom: 60px;
  }
}
.lien-conference-annuelle-conferiencers #news_content.news-mosaic {
  grid-gap: 140px;
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .lien-conference-annuelle-conferiencers #news_content.news-mosaic {
    grid-gap: 70px;
  }
}
.lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div {
  display: flex;
  min-height: 190px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div {
    min-height: 160px;
  }
}
@media (max-width: 575px) {
  .lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div {
    min-height: 160px;
  }
}
.lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div > a {
  display: inline-flex !important;
  justify-content: flex-end;
  align-items: center;
  z-index: 10;
  margin: 0 !important;
  padding: 0 !important;
}
.lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div > a:after {
  display: none !important;
}
.lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div > a img {
  width: 150px !important;
  height: 140px !important;
  margin-bottom: 0 !important;
  border-radius: 25px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div > a img {
    width: 100px !important;
    height: 100px !important;
  }
}
@media (max-width: 575px) {
  .lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div > a img {
    width: 100px !important;
    height: 100px !important;
  }
}
.lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div .news-intro {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  padding: 55px 55px 55px 80px !important;
  border-radius: 25px;
  margin-left: -50px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div .news-intro {
    padding: 35px 20px 35px 50px !important;
    margin-left: -30px;
  }
}
@media (max-width: 575px) {
  .lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div .news-intro {
    padding: 35px 20px 35px 50px !important;
    margin-left: -30px;
  }
}
.lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div .news-intro h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  margin-bottom: 0;
  margin-top: 5px;
}
.lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div .news-intro h4 {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}
.lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div .news-intro p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}
.lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div .news-intro a.linkedin {
  position: absolute;
  top: 55px;
  left: -50px;
  transform: rotate(270deg);
  font-size: 16px;
  line-height: 24px;
}
.lien-conference-annuelle-conferiencers #news_content.news-mosaic .row > div .news-intro a.courriel {
  position: absolute;
  top: 170px;
  left: -23px;
  transform: rotate(270deg);
  font-size: 16px;
  line-height: 24px;
}

.lien-conference-annuelle-inscrire {
  padding-top: 15px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .lien-conference-annuelle-inscrire {
    padding-bottom: 0;
  }
}

.pink-section-line .container:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #F55353;
  position: relative;
  top: 60px;
  margin-left: auto;
  margin-right: auto;
}
.pink-section-line .container h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .pink-section-line .container h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.pink-section-line .container h2 {
  color: #F55353;
  margin-bottom: 36px;
}

.trouble-ortho h4,
.trouble-audio h4,
.line-lexique h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.trouble-ortho .panel-group,
.trouble-audio .panel-group,
.line-lexique .panel-group {
  margin-bottom: 125px;
}
@media (max-width: 991px) {
  .trouble-ortho .panel-group,
  .trouble-audio .panel-group,
  .line-lexique .panel-group {
    margin-bottom: 80px;
  }
}
.trouble-ortho .panel-group .panel-news-accordion .panel-body p,
.trouble-audio .panel-group .panel-news-accordion .panel-body p,
.line-lexique .panel-group .panel-news-accordion .panel-body p {
  /*margin-bottom: 32px;*/
}

.contact .line-contact-map {
  padding-top: 50px;
  padding-bottom: 85px;
}
@media (max-width: 767px) {
  .contact .line-contact-map {
    padding-bottom: 64px;
  }
}
.contact .line-contact-map .container > .row {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .contact .line-contact-map .container > .row {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .contact .line-contact-map .container > .row {
    display: block;
  }
}
.contact .line-contact-map .container > .row > div:nth-child(1) {
  z-index: 9;
}
@media (max-width: 991px) {
  .contact .line-contact-map .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact .line-contact-map .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.contact .line-contact-map .container > .row > div:nth-child(1) .content {
  column-count: 2;
  column-gap: 45px;
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  margin-right: -110px;
  height: 100%;
}
@media (max-width: 991px) {
  .contact .line-contact-map .container > .row > div:nth-child(1) .content {
    width: 85%;
    column-count: 2;
    column-gap: 16pxpx;
    margin: 0 auto;
    padding: 56px 24px;
  }
}
@media (max-width: 767px) {
  .contact .line-contact-map .container > .row > div:nth-child(1) .content {
    column-count: 1;
    column-gap: 0px;
    margin: 0;
    width: 100%;
  }
}
.contact .line-contact-map .container > .row > div:nth-child(1) .content h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  text-transform: initial;
}
@media (max-width: 991px) {
  .contact .line-contact-map .container > .row > div:nth-child(1) .content h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.contact .line-contact-map .container > .row > div:nth-child(1) .content h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #F55353;
}
@media (max-width: 991px) {
  .contact .line-contact-map .container > .row > div:nth-child(1) .content h4 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .contact .line-contact-map .container > .row > div:nth-child(1) .content p {
    margin-bottom: 32px;
  }
}
@media (max-width: 991px) {
  .contact .line-contact-map .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.contact .line-contact-map .container > .row > div:nth-child(2) #aqoaMap {
  height: 494px;
  width: auto;
  margin-left: -110px;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .contact .line-contact-map .container > .row > div:nth-child(2) #aqoaMap {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .contact .line-contact-map .container > .row > div:nth-child(2) #aqoaMap {
    height: auto;
    width: 100%;
    margin-left: 0;
    text-align: center;
    margin-top: -115px;
  }
}
@media (max-width: 767px) {
  .contact .line-contact-map .container > .row > div:nth-child(2) #aqoaMap {
    display: block;
    margin-top: -50px;
  }
}
.contact .line-formulaire .formbuilder-confirmation-content {
  margin: 64px 0;
}

.line-404 {
  padding-top: 120px;
}
.line-404 .container .row > div:first-child {
  width: 40%;
}
@media (max-width: 767px) {
  .line-404 .container .row > div:first-child {
    width: 100%;
  }
}
.line-404 .container .row > div:first-child .content {
  text-align: center;
}
.line-404 .container .row > div:first-child .content img {
  padding-top: 18px;
}
.line-404 .container .row > div:last-child {
  width: 60%;
}
@media (max-width: 767px) {
  .line-404 .container .row > div:last-child {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-404 .container .row > div:last-child .content {
    text-align: center;
    padding-top: 40px;
  }
}
.line-404 .container .row > div:last-child .content h3 {
  color: #F55353;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  display: inline;
  position: relative;
  top: 10px;
  padding-top: 2px;
  padding-bottom: 5px;
  bottom: 15px;
  width: fit-content;
}
.line-404 .container .row > div:last-child .content h4 {
  padding-top: 40px;
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}
.line-404 .container .row > div:last-child .content .btn-primary {
  margin-top: 20px;
}

/*
.section-404 {
	@include max-md {
		padding: 130px 0 10px 0!important;
	}
	.row {
		> div {
			&:first-child {
				.content {
					text-align: center;
					h1 {
						color: $primary;
						font-size: 30px;
						strong {
							display: block;
							font-size: 200px;
							line-height: 160px;
							@include max-md {
								font-size: 160px;
								line-height: 120px;
							}
							@include max-xs {
								font-size: 120px;
								line-height: 100px;
							}
						}
					}
				}
			}
			&:last-child {
				.content {
					@include max-sm {
						margin-top: 60px;
						text-align: center;
					}
					p {
						@include h5;
					}
				}
			}
		}
	}
}
*/
.line-infolettre {
  margin-top: 20px;
}
.line-infolettre .container {
  max-width: 768px;
}
.line-infolettre .container .crm-form-steps {
  display: none;
}
@media (max-width: 767px) {
  .line-infolettre .container [data-zone-id="1222195"] {
    width: 90%;
  }
}
.line-infolettre .container [data-zone-id="1222195"] #formbuilder-add-wrapper .formbuilder-confirmation-content h2 {
  font-size: 21px;
  line-height: 25px;
  font-weight: bold;
  color: #F55353;
}

.annoncer .col-grid[class*=grid] .news-mosaic {
  gap: 64px 0px !important;
}
@media (max-width: 767px) {
  .annoncer .col-grid[class*=grid] .news-mosaic {
    gap: 16px 0px !important;
  }
}
.annoncer .line-options {
  margin: 65px 0;
}
.annoncer .line-options #news_content.news-mosaic .row div.news-intro {
  text-align: center;
  min-height: 540px;
  background-color: #fff;
  padding: 64px 40px;
  margin: 0 8px;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .annoncer .line-options #news_content.news-mosaic .row div.news-intro {
    padding: 32px 16px;
  }
}
@media (max-width: 767px) {
  .annoncer .line-options #news_content.news-mosaic .row div.news-intro {
    padding: 64px 40px;
    min-height: 100%;
  }
}
.annoncer .line-options #news_content.news-mosaic .row div.news-intro h5 {
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .annoncer .line-options #news_content.news-mosaic .row div.news-intro h5 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .annoncer .line-options #news_content.news-mosaic .row div.news-intro h5 {
    font-size: 21px;
    line-height: 28px;
  }
}
.annoncer .line-options #news_content.news-mosaic .row div.news-intro sup {
  font-size: 21px;
  line-height: 0;
  position: relative;
  vertical-align: inherit;
  top: -16px;
}
.annoncer .line-options #news_content.news-mosaic .row div.news-intro hr {
  margin: 36px 0;
}
.annoncer .line-options #news_content.news-mosaic .row div.news-intro p span {
  font-size: 40px;
  font-weight: bold;
}
.annoncer .line-formulaire-titre h3 br {
  display: none;
}
@media (max-width: 991px) {
  .annoncer .line-formulaire-titre h3 br {
    display: block;
  }
}
.annoncer .line-infolettre #formbuilder-add-wrapper .formbuilder-confirmation-content h2 {
  font-size: 21px;
  line-height: 25px;
  font-weight: bold;
  color: #F55353;
}

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