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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.darkparagraphe p {
  color: #212121;
}

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

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

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

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

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

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

::selection {
  color: #fff;
  background: #1c6047;
}

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

/* ################################# */
/* Global animation */
/*
h1{
	opacity: 0;
}
.animate {
	@include text-fade-from-left;
}
*/
/*
.img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    animation: move 3s infinite ease alternate;
}
*/
/**
 * ----------------------------------------
 * Smooth bounce
 * ----------------------------------------
 */
@keyframes move {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(10px);
  }
}
/**
 * ----------------------------------------
 * bounce_arrow
 * ----------------------------------------
 */
@keyframes bounce_arrow {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  60% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
.slide-left {
  -webkit-animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

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

@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation text-fade-from-left
 * ----------------------------------------
 */
/* Fade From Left */
@-webkit-keyframes text-fade-from-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes text-fade-from-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes menu {
  0% {
    margin-top: -200px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes slideFadeIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes opacityFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale3d(1, 1, 1);
  }
  50% {
    -moz-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -moz-transform: scale3d(1, 1, 1);
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale3d(1, 1, 1);
  }
  50% {
    -o-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -o-transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.u--pulse {
  -webkit-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  font-family: "Merriweather", serif;
}
body.overflowhidden {
  overflow: hidden;
}

/*###########################  TITRES  ###########################*/
h1, h2, h3, h4, h5, h6, p, .h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 15px;
  width: 100%;
  color: #31755D;
}
h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover, p:hover, .h1:hover, .h2:hover, .h3:hover, .h4:hover, .h5:hover, .h6:hover {
  text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, p a:hover, .h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  h1 br, h2 br, h3 br, h4 br, h5 br, h6 br, p br, .h1 br, .h2 br, .h3 br, .h4 br, .h5 br, .h6 br {
    display: none !important;
  }
}
@media (max-width: 575px) {
  h1, h2, h3, h4, h5, h6, p, .h1, .h2, .h3, .h4, .h5, .h6 {
    word-break: keep-all;
  }
}

h1, .h1 {
  font-size: 86px;
  line-height: 88px;
  font-family: "Merriweather", serif;
  font-weight: 900;
  text-transform: initial;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 70px;
    line-height: 72px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 43px;
    line-height: 44px;
  }
}

h2, .h2 {
  font-family: "Merriweather", serif;
  font-size: 70px;
  line-height: 73px;
  font-family: "Merriweather", serif;
  font-weight: 900;
  text-transform: initial;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 50px;
    line-height: 53px;
  }
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 40px;
    line-height: 43px;
  }
}

h3, .h3 {
  font-size: 53px;
  line-height: 55px;
  font-family: "Merriweather", serif;
  font-weight: 900;
  text-transform: initial;
}
@media (max-width: 991px) {
  h3, .h3 {
    font-size: 40px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 35px;
    line-height: 37px;
  }
}

h4, .h4 {
  font-size: 40px;
  line-height: 50px;
  font-family: "Merriweather", serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  h4, .h4 {
    font-size: 30px;
    line-height: 40px;
  }
}

h5, .h5 {
  font-size: 35px;
  line-height: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  h5, .h5 {
    font-size: 28px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  h5, .h5 {
    font-size: 25px;
    line-height: 30px;
  }
}

h6, .h6 {
  font-size: 28px;
  line-height: 33px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  h6, .h6 {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  h6, .h6 {
    font-size: 22px;
    line-height: 28px;
  }
}

h7, .h7 {
  font-size: 11px;
  line-height: 21px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: initial;
}
p {
  font-size: 20px;
  line-height: 35px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  p {
    font-size: 18px;
    line-height: 29px;
  }
}

.p-small {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .p-small {
    font-size: 14px;
    line-height: 19px;
  }
}

hr {
  border-color: rgba(228, 245, 34, 0.35);
}

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

ol, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) {
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 25px;
}
ol li, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li {
  font-size: 20px;
  line-height: 35px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  ol li, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li {
    font-size: 18px;
    line-height: 29px;
  }
}
ol li, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li {
  margin-bottom: 0;
}
ol li::marker, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li::marker {
  color: #E4F522 !important;
}
ol li ul, ol li ol, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li ul, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li ol {
  margin-top: 0;
  margin-bottom: 0;
}

ol {
  padding-left: 15px;
}

h2:not(.pol-conf h2),
h3:not(.pol-conf h3):not(.line-outiller-ressources .news-title),
h4:not(.cn-body h4, .cm-header h4),
h5,
li:not(ul.chosen-choices li):not(ul.chosen-results li):not(ul.dropdown-menu .menu-type-page, .pol-conf li, .poste-single .mod-article__content li, .actualite-single .mod-article__content li, ul.social li, .cm-services li.cm-service) {
  opacity: 0; /* Start hidden */
  transform: translateY(20px); /* Start below their normal position */
  transition: opacity 1s ease, transform 1s ease; /* Smooth transition for both opacity and transform */
}

h6,
p:not(.cn-body p, .pol-conf p, .poste-single .mod-article__content p, .cm-list-description, .cm-header p, .line-outiller-ressources .news-intro p, .line-banner-home .content p, .line-accueil-outils .container > .row > div:first-child p:first-child) {
  opacity: 0; /* Start hidden */
  transform: translateY(15px); /* Start below their normal position */
  transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition for both opacity and transform */
}

/*###########################  BOUTONS  ###########################*/
.btn {
  margin-right: 15px !important;
  /*+ .btn, &:only-of-type {*/
}
.btn:last-of-type {
  margin-right: 0 !important;
}

/*###########################  BOUTONS RESET  ###########################*/
.btn, input.btn, a.btn {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.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-black, .btn.btn-primary, .btn.btn-default, input.btn.btn-primary-black, input.btn.btn-primary, input.btn.btn-default, a.btn.btn-primary-black, a.btn.btn-primary, a.btn.btn-default {
  background-color: transparent !important;
  color: #212121;
  transition: all 150ms;
  border: 3px solid #212121;
  box-shadow: -6px 9px 0 #212121 !important;
}
.btn.btn-primary-black:hover, .btn.btn-primary-black:active, .btn.btn-primary-black:focus, .btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus, .btn.btn-default:hover, .btn.btn-default:active, .btn.btn-default:focus, input.btn.btn-primary-black:hover, input.btn.btn-primary-black:active, input.btn.btn-primary-black: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, a.btn.btn-primary-black:hover, a.btn.btn-primary-black:active, a.btn.btn-primary-black: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 {
  background-color: transparent;
  border: 3px solid #31755D;
  color: #31755D;
  box-shadow: -6px 9px 0 #31755D !important;
}
.btn.btn-primary, .btn.btn-primary-black, .btn.btn-default, input.btn.btn-primary, input.btn.btn-primary-black, input.btn.btn-default, a.btn.btn-primary, a.btn.btn-primary-black, a.btn.btn-default {
  background-color: transparent !important;
  color: #212121;
  transition: all 150ms;
  border: 3px solid #212121;
  box-shadow: -6px 9px 0 #212121 !important;
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus, .btn.btn-primary-black:hover, .btn.btn-primary-black:active, .btn.btn-primary-black:focus, .btn.btn-default:hover, .btn.btn-default:active, .btn.btn-default:focus, input.btn.btn-primary:hover, input.btn.btn-primary:active, input.btn.btn-primary:focus, input.btn.btn-primary-black:hover, input.btn.btn-primary-black:active, input.btn.btn-primary-black:focus, input.btn.btn-default:hover, input.btn.btn-default:active, input.btn.btn-default:focus, a.btn.btn-primary:hover, a.btn.btn-primary:active, a.btn.btn-primary:focus, a.btn.btn-primary-black:hover, a.btn.btn-primary-black:active, a.btn.btn-primary-black:focus, a.btn.btn-default:hover, a.btn.btn-default:active, a.btn.btn-default:focus {
  background-color: transparent;
  border: 3px solid #31755D;
  color: #31755D;
  box-shadow: -6px 9px 0 #31755D !important;
}
.btn.btn-primary-green, input.btn.btn-primary-green, a.btn.btn-primary-green {
  background-color: transparent;
  color: #31755D;
  transition: all 150ms;
  border: 3px solid #31755D;
  box-shadow: -6px 9px 0 #31755D !important;
}
.btn.btn-primary-green:hover, .btn.btn-primary-green:active, .btn.btn-primary-green:focus, input.btn.btn-primary-green:hover, input.btn.btn-primary-green:active, input.btn.btn-primary-green:focus, a.btn.btn-primary-green:hover, a.btn.btn-primary-green:active, a.btn.btn-primary-green:focus {
  background-color: transparent;
  border: 3px solid #00A552;
  color: #00A552;
  box-shadow: -6px 9px 0 #00A552 !important;
}
.btn.btn-primary-beige, input.btn.btn-primary-beige, a.btn.btn-primary-beige {
  background-color: transparent;
  color: #F1FFB9;
  transition: all 150ms;
  border: 3px solid #F1FFB9;
  box-shadow: -6px 9px 0 #F1FFB9 !important;
}
.btn.btn-primary-beige:hover, .btn.btn-primary-beige:active, .btn.btn-primary-beige:focus, input.btn.btn-primary-beige:hover, input.btn.btn-primary-beige:active, input.btn.btn-primary-beige:focus, a.btn.btn-primary-beige:hover, a.btn.btn-primary-beige:active, a.btn.btn-primary-beige:focus {
  background-color: transparent;
  border: 3px solid #E4F522;
  color: #E4F522;
  box-shadow: -6px 9px 0 #E4F522 !important;
}
.btn.btn-primary-yellow, input.btn.btn-primary-yellow, a.btn.btn-primary-yellow {
  background-color: transparent;
  color: #E4F522;
  transition: all 150ms;
  border: 3px solid #E4F522;
  box-shadow: -6px 9px 0 #E4F522 !important;
}
.btn.btn-primary-yellow:hover, .btn.btn-primary-yellow:active, .btn.btn-primary-yellow:focus, input.btn.btn-primary-yellow:hover, input.btn.btn-primary-yellow:active, input.btn.btn-primary-yellow:focus, a.btn.btn-primary-yellow:hover, a.btn.btn-primary-yellow:active, a.btn.btn-primary-yellow:focus {
  background-color: transparent;
  border: 3px solid #F1FFB9;
  color: #F1FFB9;
  box-shadow: -6px 9px 0 #F1FFB9 !important;
}
.btn.btn-primary-yellow-arrow, input.btn.btn-primary-yellow-arrow, a.btn.btn-primary-yellow-arrow {
  outline: 0;
  background-color: transparent;
  color: #E4F522;
  transition: all 150ms;
  border: 3px solid #E4F522;
  box-shadow: -6px 9px 0 #E4F522 !important;
  padding: 18px 55px 18px 30px;
}
.btn.btn-primary-yellow-arrow:after, input.btn.btn-primary-yellow-arrow:after, a.btn.btn-primary-yellow-arrow:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Assets/Fleche.svg");
  background-repeat: no-repeat;
  right: -30px;
  margin-top: -1px;
  position: relative;
  display: inline-block;
  width: 29px;
  height: 20px;
}
.btn.btn-primary-yellow-arrow:hover, .btn.btn-primary-yellow-arrow:active, .btn.btn-primary-yellow-arrow:focus, input.btn.btn-primary-yellow-arrow:hover, input.btn.btn-primary-yellow-arrow:active, input.btn.btn-primary-yellow-arrow:focus, a.btn.btn-primary-yellow-arrow:hover, a.btn.btn-primary-yellow-arrow:active, a.btn.btn-primary-yellow-arrow:focus {
  background-color: transparent;
  border: 3px solid #F1FFB9;
  color: #F1FFB9;
  box-shadow: -6px 9px 0 #F1FFB9 !important;
  -moz-box-shadow: -6px 9px 0 #F1FFB9 !important;
  -webkit-box-shadow: -6px 9px 0 #F1FFB9 !important;
}
.btn.btn-primary-yellow-arrow:hover:after, .btn.btn-primary-yellow-arrow:active:after, .btn.btn-primary-yellow-arrow:focus:after, input.btn.btn-primary-yellow-arrow:hover:after, input.btn.btn-primary-yellow-arrow:active:after, input.btn.btn-primary-yellow-arrow:focus:after, a.btn.btn-primary-yellow-arrow:hover:after, a.btn.btn-primary-yellow-arrow:active:after, a.btn.btn-primary-yellow-arrow:focus:after {
  filter: brightness(3.5);
  -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-recherche, input.btn.btn-recherche, a.btn.btn-recherche {
  background-color: #31755D;
  color: #F9FEE3;
  font-weight: 500;
  transition: all 150ms;
  border: 3px solid #31755D;
  box-shadow: none !important;
  font-size: 15px;
  line-height: 17px;
  padding: 20px 23px 20px 23px;
}
.btn.btn-recherche:hover, .btn.btn-recherche:active, .btn.btn-recherche:focus, input.btn.btn-recherche:hover, input.btn.btn-recherche:active, input.btn.btn-recherche:focus, a.btn.btn-recherche:hover, a.btn.btn-recherche:active, a.btn.btn-recherche:focus {
  background-color: #E4F522;
  border: 3px solid #E4F522;
  color: #31755D;
  box-shadow: none !important;
}
.btn.btn-next, input.btn.btn-next, a.btn.btn-next {
  background-color: transparent;
  color: #212121;
  transition: all 150ms;
  border: 1px solid #212121;
  box-shadow: 0 !important;
  border-radius: 10px;
}
.btn.btn-next:hover, .btn.btn-next:active, .btn.btn-next:focus, input.btn.btn-next:hover, input.btn.btn-next:active, input.btn.btn-next:focus, a.btn.btn-next:hover, a.btn.btn-next:active, a.btn.btn-next:focus {
  background-color: #31755D;
  border: 1px solid #31755D;
  color: #fff;
}
.btn.btn-prev, input.btn.btn-prev, a.btn.btn-prev {
  background-color: transparent;
  color: #212121;
  transition: all 150ms;
  border: none;
  border-bottom: 1px solid #212121;
  box-shadow: 0 !important;
  border-radius: 0;
  padding: 10px 0 10px 0;
}
.btn.btn-prev:hover, .btn.btn-prev:active, .btn.btn-prev:focus, input.btn.btn-prev:hover, input.btn.btn-prev:active, input.btn.btn-prev:focus, a.btn.btn-prev:hover, a.btn.btn-prev:active, a.btn.btn-prev:focus {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #212121;
  color: #31755D;
}
.btn.btn-sondage, input.btn.btn-sondage, a.btn.btn-sondage {
  background-color: transparent;
  color: #fff;
  transition: all 150ms;
  border: 2px solid #E4F522;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
}
.btn.btn-sondage:hover, .btn.btn-sondage:active, .btn.btn-sondage:focus, input.btn.btn-sondage:hover, input.btn.btn-sondage:active, input.btn.btn-sondage:focus, a.btn.btn-sondage:hover, a.btn.btn-sondage:active, a.btn.btn-sondage:focus {
  background-color: transparent;
  border: 2px solid #00A552;
  color: #fff;
}
.btn.btn-sondage.active, input.btn.btn-sondage.active, a.btn.btn-sondage.active {
  background-color: #E4F522;
  border: 2px solid #E4F522;
  color: #31755D;
}
.btn.btn-sondage.answer, input.btn.btn-sondage.answer, a.btn.btn-sondage.answer {
  background-color: #00A552;
  border: 2px solid #00A552;
  color: #fff;
}

.btn {
  margin-right: 30px;
}
.btn:last-child {
  margin-right: 0;
}
.btn {
  /*
  + .btn, &:only-of-type {
  	margin-right: 0;
  }
  */
}

.back-to-list {
  background-color: transparent;
  color: #E4F522;
  transition: all 150ms;
  border: 1px solid #212121;
}
.back-to-list:hover, .back-to-list:active, .back-to-list:focus {
  background-color: #E4F522;
  color: #fff;
  border: 1px solid #E4F522;
}

/*###########################  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: #212121;
  -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;
}
form.form-horizontal .form-group label.control-label,
form.search-form .form-group label.control-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 0;
}
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: #31755D;
}
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: #212121 !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 115px !important;
}
form.form-horizontal .form-group input:not(.btn).answer, form.form-horizontal .form-group select.answer, form.form-horizontal .form-group textarea.answer,
form.search-form .form-group input:not(.btn).answer,
form.search-form .form-group select.answer,
form.search-form .form-group textarea.answer {
  background-color: #00A552 !important;
}
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 {
  padding: 15px 30px !important;
  height: 65px !important;
}
form.form-horizontal .form-group textarea,
form.search-form .form-group textarea {
  padding: 30px !important;
  border-radius: 35px !important;
}
form.form-horizontal .form-group select,
form.search-form .form-group select {
  -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(https://cdn.ca.yapla.com/images/icon-membogo-arrow-combo@2x.png) no-repeat right 5px center !important;
  background-size: 13px !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;
  border-radius: 25px;
}
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: #31755D !important;
  font-size: 15px !important;
  padding-left: 15px !important;
  border: 0 !important;
  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: 4px !important;
  filter: invert(1);
}
form.form-horizontal .form-group .chosen-drop .chosen-results .active-result.highlighted,
form.search-form .form-group .chosen-drop .chosen-results .active-result.highlighted {
  background-color: #00A552;
}
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: 30px;
}

/* Miscellaneous forms */
#ui-form .ui-section__content {
  background-color: rgba(228, 245, 34, 0.1);
}
#ui-form .ui-section__content h2 {
  color: #E4F522;
}

.overrideformtitle .zone-crm h1 {
  font-family: "Merriweather", serif;
  font-size: 70px;
  line-height: 73px;
  font-family: "Merriweather", serif;
  font-weight: 900;
  text-transform: initial;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .overrideformtitle .zone-crm h1 {
    font-size: 50px;
    line-height: 53px;
  }
}
@media (max-width: 767px) {
  .overrideformtitle .zone-crm h1 {
    font-size: 40px;
    line-height: 43px;
  }
}
.overrideformtitle .zone-crm h1 {
  text-align: center;
}

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

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

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

.zone-event h1.form-withProgress__title-main,
.zone-member h1.form-withProgress__title-main {
  font-size: 56px;
}
@media (max-width: 991px) {
  .zone-event h1.form-withProgress__title-main,
  .zone-member h1.form-withProgress__title-main {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .zone-event h1.form-withProgress__title-main,
  .zone-member h1.form-withProgress__title-main {
    font-size: 31px;
    line-height: 35px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  padding: 50px;
}
@media (max-width: 991px) {
  .zone-event .form-withProgress__wrapper,
  .zone-member .form-withProgress__wrapper {
    padding: 32px 16px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  /*Formulaire*/
}
.zone-event .form-withProgress__wrapper h2.section-title,
.zone-member .form-withProgress__wrapper h2.section-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  padding-bottom: 16px;
}
.zone-event .form-withProgress__wrapper .form-group input, .zone-event .form-withProgress__wrapper .form-group select,
.zone-member .form-withProgress__wrapper .form-group input,
.zone-member .form-withProgress__wrapper .form-group select {
  background-color: #f7f7f7;
}
.zone-event .form-withProgress__wrapper fieldset h2,
.zone-member .form-withProgress__wrapper fieldset h2 {
  font-size: 35px;
  line-height: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .zone-event .form-withProgress__wrapper fieldset h2,
  .zone-member .form-withProgress__wrapper fieldset h2 {
    font-size: 28px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper fieldset h2,
  .zone-member .form-withProgress__wrapper fieldset h2 {
    font-size: 25px;
    line-height: 30px;
  }
}
.zone-event .form-withProgress__wrapper fieldset legend,
.zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 21px;
  line-height: 26px;
  font-weight: 400;
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  /*Récapitulatif*/
}
.zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
.zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
  font-size: 35px;
  line-height: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
  .zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
    font-size: 28px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
  .zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
    font-size: 25px;
    line-height: 30px;
  }
}
.zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
.zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
  color: #31755D;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
  .zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
    font-size: 14px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  /*Total box*/
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-event .form-withProgress__wrapper #fieldset-total,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-member .form-withProgress__wrapper #fieldset-total {
  padding: 15px 0 30px 0;
  margin-bottom: 0 !important;
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title {
  text-transform: initial;
  font-size: 26px;
  color: #31755D !important;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
  .zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title,
  .zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
  .zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title {
    font-size: 20px;
  }
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
.zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price {
  text-align: right;
  font-size: 26px;
  color: #31755D !important;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
  .zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price,
  .zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
  .zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price {
    font-size: 20px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  /*Bottom Nav*/
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment {
  background-color: transparent !important;
  color: #212121;
  transition: all 150ms;
  border: 3px solid #212121;
  box-shadow: -6px 9px 0 #212121 !important;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus {
  background-color: transparent;
  border: 3px solid #31755D;
  color: #31755D;
  box-shadow: -6px 9px 0 #31755D !important;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step {
  color: #6CA4DC;
  margin-right: 32px;
  text-decoration: underline;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover {
  background: transparent;
  color: #31755D;
  border: none;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
  .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step,
  .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
  .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step {
    margin-right: 0;
    justify-content: center;
  }
}
.zone-event .membership-delegate-manage .header .membership-delegate-name,
.zone-member .membership-delegate-manage .header .membership-delegate-name {
  font-weight: 400;
}
.zone-event .membership-delegate-manage .header .membership-delegate-quantity,
.zone-member .membership-delegate-manage .header .membership-delegate-quantity {
  color: #31755D;
}
.zone-event .membership-delegate-manage .footer .btn,
.zone-member .membership-delegate-manage .footer .btn {
  background-color: transparent !important;
  color: #212121;
  transition: all 150ms;
  border: 3px solid #212121;
  box-shadow: -6px 9px 0 #212121 !important;
}
.zone-event .membership-delegate-manage .footer .btn:hover, .zone-event .membership-delegate-manage .footer .btn:active, .zone-event .membership-delegate-manage .footer .btn:focus,
.zone-member .membership-delegate-manage .footer .btn:hover,
.zone-member .membership-delegate-manage .footer .btn:active,
.zone-member .membership-delegate-manage .footer .btn:focus {
  background-color: transparent;
  border: 3px solid #31755D;
  color: #31755D;
  box-shadow: -6px 9px 0 #31755D !important;
}

.modal .modal-dialog .modal-content .modal-footer button {
  background-color: transparent !important;
  color: #212121;
  transition: all 150ms;
  border: 3px solid #212121;
  box-shadow: -6px 9px 0 #212121 !important;
}
.modal .modal-dialog .modal-content .modal-footer button:hover, .modal .modal-dialog .modal-content .modal-footer button:active, .modal .modal-dialog .modal-content .modal-footer button:focus {
  background-color: transparent;
  border: 3px solid #31755D;
  color: #31755D;
  box-shadow: -6px 9px 0 #31755D !important;
}

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

/*Étapes 2 - information de l'adherent*/
.step-register .zone-member {
  padding-top: 90px;
}
.step-register .zone-member .form-withProgress__wrapper .form-horizontal .section .row .form-group input.form-control {
  background-color: #f7f7f7 !important;
}
/*Étapes 3 - Résumé Informations*/
.step-resume .zone-member .form-withProgress__wrapper h2 {
  font-size: 53px;
  line-height: 55px;
  font-family: "Merriweather", serif;
  font-weight: 900;
  text-transform: initial;
}
@media (max-width: 991px) {
  .step-resume .zone-member .form-withProgress__wrapper h2 {
    font-size: 40px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .step-resume .zone-member .form-withProgress__wrapper h2 {
    font-size: 35px;
    line-height: 37px;
  }
}
.step-resume .zone-member .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion {
  padding-left: 0px;
  padding-right: 0px;
}
.step-resume .zone-member .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion span {
  color: #31755D;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset .col-sm-24 {
  padding: 0;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 53px;
  line-height: 55px;
  font-family: "Merriweather", serif;
  font-weight: 900;
  text-transform: initial;
}
@media (max-width: 991px) {
  .step-resume .zone-member .form-withProgress__wrapper fieldset legend {
    font-size: 40px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .step-resume .zone-member .form-withProgress__wrapper fieldset legend {
    font-size: 35px;
    line-height: 37px;
  }
}
.step-resume .zone-member .form-withProgress__wrapper fieldset legend {
  color: #31755D !important;
  padding-top: 32px !important;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset.row {
  margin-left: 0;
  margin-right: 0;
}
/*Étapes 4 - Paiements*/
.step-payment .zone-member h2 {
  padding-top: 56px;
}
@media (max-width: 991px) {
  .step-payment .zone-member .form-withProgress__wrapper {
    padding: 50px 64px;
  }
}
@media (max-width: 767px) {
  .step-payment .zone-member .form-withProgress__wrapper {
    padding: 0;
  }
}
.step-payment .zone-member .form-withProgress__wrapper input.form-control {
  background-color: #fff !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-paymentmethod h2 {
  padding-top: 56px;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 input.form-control {
  border: 1px solid #d6d6d6 !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps h6 {
  width: 80%;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps span {
  width: fit-content;
}
/*Étapes 5 - Confirmation*/
#registration-member {
  margin: 0 auto;
}
#registration-member .member-step-confirm {
  text-align: center;
}
#registration-member .member-step-confirm .member-profile-container {
  padding: 32px 0;
}
#registration-member .member-step-confirm .form-withProgress__navigation-footer p {
  display: none;
}

/*ETAPES INSCRIPTION EVENEMENT*/
/*Étapes 1 - Inscription*/
.zone-event h1.form-withProgress__title-main {
  padding-top: 60px;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc {
  padding: 32px 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition {
  background-color: #FFF7ED;
  border: 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add {
  background-color: transparent !important;
  color: #212121;
  transition: all 150ms;
  border: 3px solid #212121;
  box-shadow: -6px 9px 0 #212121 !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:hover, .zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:active, .zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:focus {
  background-color: transparent;
  border: 3px solid #31755D;
  color: #31755D;
  box-shadow: -6px 9px 0 #31755D !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add {
  padding: 15px !important;
  color: #31755D !important;
  font-weight: 500 !important;
  border: 2px solid #E4F522 !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add.btn i.fa {
  display: none !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:hover {
  background-color: #fff !important;
  text-decoration: none !important;
  border: 2px solid #E4F522 !important;
}
.zone-event .form-withProgress__wrapper #event-authentication-form h2 {
  font-size: 28px;
  line-height: 35px;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #event-authentication-form h2 {
    font-size: 21px;
    line-height: 28px;
  }
}
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication p {
  padding-bottom: 32px;
}
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication .form-group {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 16px;
}
.zone-event .event-login h1 {
  text-align: center;
  margin-bottom: 64px;
  font-size: 40px;
}
@media (max-width: 767px) {
  .zone-event .event-login h1 {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .zone-event .event-subscription {
    padding: 0;
  }
}

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

/*###########################  TABLEAU  ###########################*/
/* basically le bottin de yapla */
/*###########################  TAB BOTTIN DES MEMBRES  ###########################*/
.nav-tabs {
  margin-top: 60px;
}
.nav-tabs li {
  padding: 0px 20px;
}
.nav-tabs li:first-child {
  padding-left: 0;
}
.nav-tabs li a {
  border: none;
  border-bottom: 5px solid transparent;
  color: rgba(228, 245, 34, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Merriweather", serif;
  letter-spacing: 2px;
  padding: 10px 0px;
}
.nav-tabs li a:hover, .nav-tabs li a:focus {
  background-color: transparent;
  color: rgba(228, 245, 34, 0.4);
  border-color: transparent;
}
.nav-tabs li.active:hover a, .nav-tabs li.active a {
  border-bottom: 5px solid #31755D;
  color: #E4F522;
}

.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 !important;
  height: 35px !important;
  border: 1px solid #31755D !important;
  border-radius: 55px !important;
  margin: 5px !important;
  font-size: 16px !important;
  line-height: 18px !important;
  font-weight: 200 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paginationControl a:hover, .paginationControl a:focus {
  text-decoration: none !important;
  color: #00A552 !important;
}
.paginationControl a.active {
  background-color: #31755D !important;
  color: #fff !important;
  font-weight: 200 !important;
}
.paginationControl a.active:hover, .paginationControl a.active:focus {
  color: #fff !important;
}

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

.panel-news-accordion {
  /* first accordion container */
  border-bottom: 1px solid #212121 !important;
}
.panel-news-accordion:after {
  content: "";
  width: 100%;
  display: block;
}
.panel-news-accordion .panel-heading {
  /* title box */
  background-color: transparent;
  padding: 0;
  position: relative;
}
.panel-news-accordion .panel-heading .panel-title {
  /* title */
  font-size: 40px;
  line-height: 50px;
  font-family: "Merriweather", serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .panel-news-accordion .panel-heading .panel-title {
    font-size: 30px;
    line-height: 40px;
  }
}
.panel-news-accordion .panel-heading .panel-title {
  margin-bottom: 0;
  padding-right: 30px;
}
.panel-news-accordion .panel-heading .panel-title a {
  padding: 30px 15px 30px;
  color: #E4F522;
  text-decoration: none;
}
.panel-news-accordion .panel-heading .panel-title a:after {
  content: "−";
  display: block;
  position: absolute;
  right: 15px;
  top: 25px;
  font-size: 35px;
  font-weight: 900;
  color: #212121;
  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: 25px 15px 30px 15px;
  margin-top: -10px;
}
.panel-news-accordion .panel-body h4 {
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body p {
  color: #212121;
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body .btn-link {
  margin-bottom: 40px;
}

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

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

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

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

*/
table.accordeon {
  display: block;
  width: 100% !important;
  border: 0;
  margin-bottom: 10px;
}
table.accordeon tbody, table.accordeon tr, table.accordeon td {
  border: 0;
}
table.accordeon tbody {
  display: block;
}
table.accordeon tbody tr {
  /* Title/accordeon box */
}
table.accordeon tbody tr:first-child {
  cursor: pointer;
  display: block;
  background-color: #F5F5F5;
  padding: 15px;
  position: relative;
}
table.accordeon tbody tr:first-child:after {
  content: "+";
  display: block;
  position: absolute;
  right: 15px;
  top: 13px;
  font-size: 30px;
  font-weight: 400;
  transition: transform 150ms;
}
table.accordeon tbody tr:last-child {
  display: block;
}
table.accordeon tbody tr:last-child td {
  display: block;
  max-height: 0;
  overflow: hidden;
}
table.accordeon {
  /* active 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;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-backdrop.in {
  opacity: 1 !important;
}

.modal {
  z-index: 10001 !important;
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.modal.fade.in {
  display: flex !important;
}
.modal#myModal .modal-dialog {
  width: 90%;
  max-width: 60%;
  margin: 9.75rem auto 1.75rem auto;
}
@media (max-width: 575px) {
  .modal#myModal .modal-dialog {
    width: 80%;
  }
}
.modal#myModal .modal-dialog .modal-content {
  width: auto;
  border: 0;
  background-color: #212121;
  aspect-ratio: 16/9;
  max-height: 80vh;
  margin-left: auto;
  margin-right: auto;
}
.modal#myModal .modal-dialog .modal-content .modal-header {
  margin-top: 0;
  padding: 0;
  flex-direction: column;
}
.modal#myModal .modal-dialog .modal-content .modal-header button.close {
  color: #E4F522;
  font-size: 45px;
  font-family: "Merriweather", serif;
  font-weight: 300;
  right: 0;
  position: absolute;
  margin-right: -35px;
  margin-top: -45px;
}
.modal#myModal .modal-dialog .modal-content .modal-header button.close:hover {
  color: #fff;
}
.modal#myModal .modal-dialog .modal-content .modal-body {
  /* Input Global Style */
  max-height: inherit;
  padding: 0;
}
.modal#myModal .modal-dialog .modal-content .modal-body > div {
  padding: 0;
}
.modal#myModal .modal-dialog .modal-content .modal-body input:not(.btn), .modal#myModal .modal-dialog .modal-content .modal-body select, .modal#myModal .modal-dialog .modal-content .modal-body textarea {
  background-color: #f8f8f8 !important;
  color: #212121 !important;
  border: none;
}
.modal#modalAvertissement {
  padding-left: 15px;
  padding-right: 15px;
}
.modal#modalAvertissement .modal-dialog {
  /*
  width:90%;
  max-width: 60%;
  margin: 9.75rem auto 1.75rem auto;
  @include max-xs {
      width: 80%;
  }
  */
}
.modal#modalAvertissement .modal-dialog .modal-content {
  align-items: center;
  border-radius: 25px;
}
.modal#modalAvertissement .modal-dialog .modal-content .modal-header {
  padding: 56px 31px 16px 31px;
}
.modal#modalAvertissement .modal-dialog .modal-content .modal-header h3.modal-title {
  font-size: 53px;
  line-height: 55px;
  font-family: "Merriweather", serif;
  font-weight: 900;
  text-transform: initial;
}
@media (max-width: 991px) {
  .modal#modalAvertissement .modal-dialog .modal-content .modal-header h3.modal-title {
    font-size: 40px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .modal#modalAvertissement .modal-dialog .modal-content .modal-header h3.modal-title {
    font-size: 35px;
    line-height: 37px;
  }
}
.modal#modalAvertissement .modal-dialog .modal-content .modal-header button.close {
  display: none;
}
.modal#modalAvertissement .modal-dialog .modal-content .modal-body {
  padding: 32px 50px 30px 50px;
}
@media (max-width: 767px) {
  .modal#modalAvertissement .modal-dialog .modal-content .modal-body {
    padding: 32px 20px 30px 20px;
  }
}
.modal#modalAvertissement .modal-dialog .modal-content .modal-body {
  text-align: center;
}
.modal#modalAvertissement .modal-dialog .modal-content .modal-body p {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .modal#modalAvertissement .modal-dialog .modal-content .modal-body p {
    font-size: 14px;
    line-height: 19px;
  }
}
.modal#modalAvertissement .modal-dialog .modal-content .modal-body p {
  color: #212121;
}
.line-modal .zone-html {
  margin: -1px;
}

.nav-pills {
  background-image: none;
}

.nav-progress {
  position: relative;
  justify-content: space-between;
  width: 80%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.nav-progress:before {
  content: "";
  width: 88%;
  height: 2px;
  background-color: #dfe6d1;
  position: absolute;
  margin-left: 30px;
  margin-right: auto;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .nav-progress:before {
    width: 100%;
    margin-left: 0;
  }
}
.nav-progress:after {
  content: none;
}
@media (max-width: 767px) {
  .nav-progress {
    display: block;
  }
}
.nav-progress li.disabled {
  flex-grow: inherit !important;
  flex-shrink: 1;
  opacity: 1;
}
.nav-progress li.disabled a,
.nav-progress li.disabled a:hover,
.nav-progress li.disabled a:focus {
  font-family: "Merriweather", serif;
  text-align: center;
  float: none;
  padding-left: 0px;
  font-weight: 600;
  color: #31755D;
  margin-top: 2px;
  padding-top: 15px;
  text-transform: none;
  font-size: 19px;
  position: relative;
}
.nav-progress li.disabled a:before,
.nav-progress li.disabled a:hover:before,
.nav-progress li.disabled a:focus:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 40px;
  margin: auto;
  height: 4px;
  border-radius: 0px;
  background-color: #31755D;
}
.nav-progress li.disabled:before {
  float: none;
  width: 100%;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  border: none;
  color: #31755D;
  background-color: transparent;
  padding: 5px;
}
.nav-progress li.disabled:after {
  display: none;
}
.nav-progress li.disabled.active {
  opacity: 1;
}
.nav-progress li.disabled.active a {
  color: #31755D;
}
.nav-progress li.disabled.active a:before {
  background-color: #31755D;
}
.nav-progress li.disabled.active:before {
  color: #31755D;
  background-color: transparent;
}
.nav-progress li.disabled.active:after {
  display: none;
}
.nav-progress li.disabled.active ~ li {
  opacity: 1;
}
.nav-progress li.disabled.active ~ li a {
  color: #BFCEA2;
}
.nav-progress li.disabled.active ~ li a:before {
  background-color: #BFCEA2;
}
.nav-progress li.disabled.active ~ li:before {
  color: #BFCEA2;
  border-color: #BFCEA2;
  background-color: transparent;
}
.nav-progress li.disabled.active ~ li:after {
  display: none;
}
@media (max-width: 767px) {
  .nav-progress li.disabled:not(.active) {
    margin-left: -1000000px;
    height: 0;
  }
}

[data-component=cookie-consent]:has(.cookie-consent-modal):before {
  content: "";
  width: 10000px;
  height: 10000px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.631372549);
  z-index: 100000;
}

.cookie-consent-modal {
  width: 100% !important;
  top: 30% !important;
  bottom: auto !important;
  left: 0 !important;
  right: 0 !important;
  margin-left: auto;
  margin-right: auto;
  border-radius: 25px !important;
  max-width: 680px !important;
  padding: 50px 60px 35px 50px !important;
  background: #fff !important;
  position: fixed;
}
@media (max-width: 767px) {
  .cookie-consent-modal {
    top: 20% !important;
    max-width: fit-content !important;
    padding: 50px 30px 35px 30px !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
}
.cookie-consent-modal h1, .cookie-consent-modal h2, .cookie-consent-modal h3, .cookie-consent-modal h4, .cookie-consent-modal h5, .cookie-consent-modal h6, .cookie-consent-modal p, .cookie-consent-modal span, .cookie-consent-modal ul, .cookie-consent-modal li, .cookie-consent-modal button {
  opacity: 1 !important;
}
.cookie-consent-modal P.consent-title {
  /*
  font-size: 30px!important;
  line-height: 32px!important;
  font-weight: 600!important;
  color: $primary!important;
        */
}
.cookie-consent-modal p.consent-description {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .cookie-consent-modal p.consent-description {
    font-size: 14px;
    line-height: 19px;
  }
}
.cookie-consent-modal p.consent-description {
  color: #31755D !important;
}
.cookie-consent-modal p.consent-description a {
  text-decoration: underline;
}
.cookie-consent-modal p.consent-description a:hover {
  text-decoration: none;
}
.cookie-consent-modal .actions-container {
  justify-content: space-between !important;
}
.cookie-consent-modal .actions-container .btn-link {
  /*@include btn-secondary;*/
}
.cookie-modal h1, .cookie-modal h2, .cookie-modal h3, .cookie-modal h4, .cookie-modal h5, .cookie-modal h6, .cookie-modal p, .cookie-modal span, .cookie-modal ul, .cookie-modal li, .cookie-modal button {
  opacity: 1 !important;
}
.cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service {
  padding-left: 60px !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-decline {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.cookie-modal .cm-footer-buttons .cm-btn-decline:hover, .cookie-modal .cm-footer-buttons .cm-btn-decline:active, .cookie-modal .cm-footer-buttons .cm-btn-decline:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-footer-buttons .cm-btn-decline {
    white-space: normal !important;
  }
}
.cookie-modal .cm-footer-buttons .cm-btn-decline {
  font-weight: 500 !important;
  background-color: transparent !important;
  color: #65b32e !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-decline:hover {
  color: #555555 !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-success {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.cookie-modal .cm-footer-buttons .cm-btn-success:hover, .cookie-modal .cm-footer-buttons .cm-btn-success:active, .cookie-modal .cm-footer-buttons .cm-btn-success:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-footer-buttons .cm-btn-success {
    white-space: normal !important;
  }
}
.cookie-modal .cm-footer-buttons .cm-btn-success {
  border: 2px solid #65b32e !important;
  background-color: #65b32e !important;
  font-weight: 500 !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-success:hover {
  border: 2px solid #555555 !important;
  background-color: #555555 !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-success.cm-btn-info {
  border: 2px solid #65b32e !important;
  background-color: transparent !important;
  color: #65b32e !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-success.cm-btn-info:hover {
  text-decoration: none !important;
  border: 2px solid #555555 !important;
  color: #555555 !important;
}

#yapla-consent-box .consent_notice_title_title {
  font-size: 28px !important;
}

body {
  background-color: #F9FEE3;
  font-family: "Poppins", sans-serif;
}

.line-header {
  /*       
  margin-top:-200px;
  animation-name: menu;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: .5s;
  */
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-header .container {
    width: 750px;
  }
}
.line-header .container .zone-html:nth-child(1) {
  width: 75%;
  z-index: 100000;
  position: relative;
  display: inline-block;
}
.line-header .container .zone-html:nth-child(1) .content a {
  position: relative;
  display: inline-block;
  padding: 25px 0 25px 50px;
  width: 213px;
  /*
  @include max-md {
  	width: 183px;
  	padding: 15px 0 25px 50px;
  }
  @include max-sm {
  	width: 132px;
  	padding: 15px 0 25px 35px;
  }
  */
}
.line-header .container .zone-html:nth-child(1) .content a img {
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  .line-header .container .zone-html:nth-child(1) .content a img {
    top: 15px;
  }
}
.line-header .container .zone-html:nth-child(1) .content a img:nth-child(1) {
  -webkit-animation: 300ms ease 0s normal forwards 1 fadein;
  animation: 300ms ease 0s normal forwards 1 fadein;
}
.line-header .container .zone-html:nth-child(1) .content a img:nth-child(2) {
  -webkit-animation: 300ms ease 0s normal forwards 1 fadeout;
  animation: 300ms ease 0s normal forwards 1 fadeout;
}
.line-header .container .zone-html:nth-child(2) {
  width: 25%;
  z-index: 100000;
  position: relative;
  display: inline-block;
}
.line-header.sondage .zone-html:nth-child(1) .content a {
  width: 567px;
}
@media (max-width: 767px) {
  .line-header.sondage .zone-html:nth-child(1) .content a {
    width: 189px !important;
  }
}
.line-header.sondage .zone-html:nth-child(1) .content a img {
  width: 100%;
}
@media (max-width: 767px) {
  .line-header.sondage .zone-html:nth-child(1) .content a img {
    height: 65px !important;
    width: 189px !important;
    object-fit: cover;
    object-position: top left;
  }
}
.line-header.opened .zone-html:nth-child(1) .content a img:nth-child(1) {
  -webkit-animation: 300ms ease 0s normal forwards 1 fadeout;
  animation: 300ms ease 0s normal forwards 1 fadeout;
}
.line-header.opened .zone-html:nth-child(1) .content a img:nth-child(2) {
  -webkit-animation: 300ms ease 0s normal forwards 1 fadein;
  animation: 300ms ease 0s normal forwards 1 fadein;
}

/**
 * ----------------------------------------
 * animation Sticky menu
 * ----------------------------------------
 */
@-webkit-keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
@keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
/* CONTAINER */
.line-header:not(.sticked, .menuopened) {
  transition: top 250ms;
}
.line-header.sticked {
  -webkit-animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  background-color: #1c6047;
  margin-top: 10px;
  overflow: hidden;
}
.line-header.sticked > .container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.line-header.sticked .menu-hamburger {
  margin-top: 17px;
  margin-bottom: 12px;
  margin-right: 45px;
}
@media (max-width: 991px) {
  .line-header.sticked .menu-hamburger {
    margin-right: 75px;
  }
}
@media (max-width: 767px) {
  .line-header.sticked .menu-hamburger {
    margin-right: -15px;
  }
}
.line-header.sticked:not(.menuopened) {
  position: fixed;
  top: 0;
  width: 1152px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  border-radius: 55px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1199px) {
  .line-header.sticked:not(.menuopened) {
    width: 952px;
  }
}
@media (max-width: 991px) {
  .line-header.sticked:not(.menuopened) {
    width: 722px;
  }
}
@media (max-width: 767px) {
  .line-header.sticked:not(.menuopened) {
    width: 95%;
  }
}
.line-header.sticked:not(.menuopened) .zone-html:nth-child(1) .content a {
  padding: 18px 0 25px 50px;
}
@media (max-width: 767px) {
  .line-header.sticked:not(.menuopened) .zone-html:nth-child(1) .content a {
    padding: 21px 0 25px 50px;
  }
}
.line-header.sticked:not(.menuopened) .zone-html:nth-child(1) .content a img {
  height: 65px !important;
  width: 189px !important;
  object-fit: cover;
  object-position: top left;
}
.line-header {
  position: absolute;
  z-index: 10001;
  width: 100%;
  height: auto;
  margin-top: 32px;
  background-color: transparent;
}
@media (max-width: 991px) {
  .line-header {
    margin-top: 0;
  }
}
.line-header {
  /*
  @include max-sm {
      height: 93px;
  }
  */
  /*
  &:before {
      content:"";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 65%;
      height:1px;
      background-color: $secondary;
      z-index: 10;
  }
  &:after {
      content:"";
      position: absolute;
      left:0;
      bottom: -144px;
      width:16px;
      height:144px;
      background-color: $secondary;
      z-index: 10;
      @include max-md {
          bottom: -14px;
          width: 130px;
          height: 14px;
      }
  }
  */
}
.line-header .container {
  margin-top: -200px;
  animation-name: menu;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0s;
}
.line-header .container > .row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.line-header .menu-hamburger {
  width: 70px;
  height: 70px;
  margin-left: auto;
  margin-right: 5px;
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 100px;
}
@media (max-width: 991px) {
  .line-header .menu-hamburger {
    margin-top: 22px;
  }
}
.line-header .menu-hamburger {
  /*
  @include max-sm {
      transform: scale(.73);
      margin-right: 10px;
      margin-top: 15px;
  }
  */
}
.line-header .menu-hamburger span {
  width: 40px;
  height: 2px;
  background-color: #E4F522;
  display: block;
  line-height: 0;
  text-indent: -9999px;
  margin-top: 10px;
  transition: transform 0.5s;
}
.line-header .menu-hamburger span:first-child {
  margin-top: 2px;
}
.line-header .menu-hamburger:hover, .line-header .menu-hamburger:focus {
  cursor: pointer;
}
.line-header .menu-hamburger:hover span, .line-header .menu-hamburger:focus span {
  background-color: #F1FFB9;
}
.line-header.opened .menu-hamburger:before {
  display: none;
}
.line-header.opened .menu-hamburger:hover span, .line-header.opened .menu-hamburger:focus span {
  background-color: #F1FFB9;
}
.line-header.opened .menu-hamburger span {
  margin-top: 0;
  width: 40px;
  background-color: #E4F522;
}
.line-header.opened .menu-hamburger span:first-child {
  transform: rotate(45deg);
}
.line-header.opened .menu-hamburger span:nth-child(2) {
  margin-top: -2px;
  transform: rotate(-45deg);
}
.line-header.opened.sticked span {
  background-color: #F1FFB9;
}
.line-header.opened.sticked:hover span, .line-header.opened.sticked:focus span {
  background-color: #F1FFB9 !important;
}
.line-header.sticked .container-fluid {
  position: fixed;
  top: 0;
  width: 100%;
  height: 85px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1000000;
}
.line-header.sticked .container-fluid .row {
  display: flex;
}
.line-header.sticked .container-fluid .row:before {
  display: none;
}
.line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content {
  width: 156px;
}
.line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content a {
  padding: 10px 0 25px 35px;
  width: 156px;
}
.line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content a img {
  width: 156px;
}
.line-header.sticked .container-fluid .menu-hamburger {
  background-color: transparent;
  border: 1px transparent solid;
  margin-top: 6px;
}
.line-header.sticked .container-fluid .menu-hamburger:hover span, .line-header.sticked .container-fluid .menu-hamburger:focus span {
  background-color: #E4F522;
}
.line-header.sticked .container-fluid .menu-hamburger:before {
  display: none;
}
.line-header.sticked.opened .container-fluid {
  background-color: transparent;
}

.menu-container {
  padding-top: 180px;
  z-index: 10000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  /*background-color: $primary-fade-1;*/
  background-color: transparent;
  left: -110vw;
}
.menu-container:before {
  content: "";
  top: -2500px;
  left: -500px;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  border-radius: 5000px;
  background-color: #1c6047;
  transition: all 1s linear !important;
}
.menu-container.opened {
  left: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: hidden;
}
.menu-container.opened:before {
  content: "";
  width: 5000px;
  height: 5000px;
  border-radius: 5000px;
  background-color: #1c6047;
  transition: all 1s linear !important;
}
.menu-container.opened ul.nav {
  opacity: 1 !important;
  transition: all 1s linear 0.5s !important;
}
@media (max-width: 991px) {
  .menu-container {
    padding-top: 140px;
  }
}
@media (max-width: 767px) {
  .menu-container {
    padding-top: 140px;
  }
}
.menu-container .line-menu {
  /*background-color: $primary-fade-1;*/
  background-color: transparent !important;
}
.menu-container .line-menu:after {
  display: none;
}
.menu-container .line-menu .navbar-header {
  display: none !important;
}
.menu-container .line-menu .navbar-collapse {
  display: block !important;
  background-color: transparent !important;
  overflow: hidden !important;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items {
  opacity: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 10px !important;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items li {
  margin-bottom: 2px;
  position: relative;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items li a {
  padding: 4px 0 !important;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items li:hover, .menu-container .line-menu .navbar-collapse ul.menu-vertical-items li:focus {
  color: #E4F522;
  background-color: transparent !important;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li {
  color: #fff;
  font-size: 28px;
  line-height: 38px;
  font-weight: 200;
  display: inline-block;
  opacity: 0;
  transition: all 150ms linear;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li {
    font-size: 20px;
    line-height: 30px;
  }
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li.active > a {
  color: #E4F522 !important;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li > a {
  font-size: 40px !important;
  line-height: 48px !important;
  color: #fff !important;
  margin-top: 6px !important;
  text-align: center;
}
@media (max-width: 1599px) {
  .menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li > a {
    font-size: 30px !important;
    line-height: 38px !important;
    margin-top: 0px !important;
  }
}
@media (max-width: 991px) {
  .menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li > a {
    transition: none !important;
  }
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li > a:hover {
  color: #00A552 !important;
  cursor: default;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li:before {
  display: none;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li > ul.dropdown-menu {
  padding-top: 0;
  margin-top: 5px;
  width: 69%;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li .dropdown-menu-level-3 {
  left: 0 !important;
  margin-bottom: 0 !important;
  padding: 0;
  overflow: hidden;
  display: block !important;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li .dropdown-menu-level-3.click-desktop-menu {
  display: block !important;
  max-height: 500px;
  transition: max-height 0.3s ease-in;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li a {
  padding-left: 0;
  color: #fff;
  font-weight: 700;
  display: block;
  background-color: transparent !important;
  white-space: break-spaces;
  transition: all 150ms linear;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li a:hover, .menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li a:focus {
  color: #fff;
  background-color: transparent !important;
  transition: all 150ms linear;
  cursor: pointer;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li a.dropdown-toggle {
  display: none;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li ul.dropdown-menu {
  background-color: transparent;
  position: relative;
  padding-left: 0;
  display: block;
  box-shadow: none;
  border: none;
  top: 0;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li ul.dropdown-menu li {
  display: block;
}
.menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li ul.dropdown-menu li a {
  font-size: 37px;
  line-height: 42px;
  font-weight: 200;
}
@media (max-width: 1199px) and (min-width: 768px) {
  .menu-container .line-menu .navbar-collapse ul.menu-vertical-items > li ul.dropdown-menu li a {
    font-size: 27px;
    line-height: 32px;
  }
}
.menu-container .line-menu-header {
  padding: 30px 0 100px;
}
.menu-container .line-menu-header .mod-header {
  padding-left: 0;
  text-align: left;
  display: flex;
}
.menu-container .line-menu-header .mod-header .header-ext-custom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  order: 2;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra {
  padding-top: 10px;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra a {
  color: #fff;
  font-weight: 200;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra a:hover, .menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra a:focus {
  text-decoration: none;
  color: #E4F522;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .social-link {
  padding-top: 7px;
  display: inline-flex;
  justify-content: flex-end;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .social-link a {
  padding: 0 7px;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .social-link a img {
  filter: brightness(0) invert(1);
}
.menu-container .line-menu-header .mod-header .header-ext-custom .social-link a:hover img, .menu-container .line-menu-header .mod-header .header-ext-custom .social-link a:focus img {
  filter: hue-rotate(-5deg) brightness(2.5);
}
.menu-container .line-menu-header .mod-header .header-ext-language {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-top: 0;
  padding-right: 70px;
  padding-top: 10px;
  position: relative;
  order: 1;
}
.menu-container .line-menu-header .mod-header .header-ext-language:before {
  display: none;
}
.menu-container .line-menu-header .mod-header .header-ext-language a {
  color: #fff;
  font-weight: 200;
}
.menu-container .line-menu-header .mod-header .header-ext-language a:hover, .menu-container .line-menu-header .mod-header .header-ext-language a:focus {
  text-decoration: none;
  color: #E4F522;
}

.line-infolettre {
  background-color: #f8f8f8;
  padding-top: 95px !important;
  padding-bottom: 45px !important;
  position: relative;
  z-index: 10;
}
@media (max-width: 991px) {
  .line-infolettre {
    padding-top: 65px !important;
    padding-bottom: 45px !important;
  }
}
@media (max-width: 767px) {
  .line-infolettre {
    padding-bottom: 5px !important;
  }
}
.line-infolettre .container > .row {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .line-infolettre .container > .row {
    flex-direction: column;
  }
}
.line-infolettre .container > .row > div:nth-child(1) h3 {
  color: #00A552;
}
.line-infolettre .container > .row > div:nth-child(1) h3 strong {
  color: #31755D;
}
@media (max-width: 767px) {
  .line-infolettre .container > .row > div:nth-child(1) h3 {
    max-width: 300px;
    padding-bottom: 20px;
  }
}
.line-infolettre .container > .row > div:nth-child(2) {
  align-content: flex-end;
}
.line-infolettre .container > .row > div:nth-child(2) form {
  position: relative;
}
.line-infolettre .container > .row > div:nth-child(2) form input {
  padding: 15px 90px 15px 30px !important;
}
.line-infolettre .container > .row > div:nth-child(2) form .crm-footer-frame {
  position: absolute;
  margin-top: 27px;
  right: 5px;
  top: 0;
}
@media (max-width: 767px) {
  .line-infolettre .container > .row > div:nth-child(2) form .crm-footer-frame {
    margin-top: 16px;
  }
}
.line-infolettre .container > .row > div:nth-child(2) form .crm-footer-frame button#submitform {
  box-shadow: none !important;
  text-indent: -10000px;
  border: 0;
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Assets/Fleche-infolettre.svg") no-repeat;
  background-size: 43px 43px;
  background-position: center center;
  width: 43px;
  height: 43px;
}
@media (max-width: 767px) {
  .line-infolettre .container > .row > div:nth-child(2) form .crm-footer-frame button#submitform {
    margin-top: 29px;
  }
}
.line-infolettre .container > .row > div:nth-child(2) form .crm-footer-frame button#submitform:hover {
  filter: contrast(0.5);
}
.line-infolettre .formbuilder-confirmation-content .btn-primary {
  color: #212121 !important;
  border: 3px solid #212121 !important;
}
.line-infolettre .formbuilder-confirmation-content .btn-primary:hover {
  color: #31755D !important;
  border: 3px solid #31755D !important;
}

.line-initiative {
  background-color: #f8f8f8;
  padding-top: 50px !important;
  padding-bottom: 0 !important;
}
@media (max-width: 991px) {
  .line-initiative {
    padding-top: 5px !important;
  }
}
@media (max-width: 767px) {
  .line-initiative {
    padding-top: 50px;
  }
}
.line-initiative .content {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 75px;
  border-top: 1px solid #ACACAC;
  border-bottom: 1px solid #ACACAC;
  padding-top: 45px;
  padding-bottom: 25px;
}
@media (max-width: 767px) {
  .line-initiative .content {
    flex-direction: column;
    padding-top: 20px;
    gap: 15px;
  }
}
.line-initiative p:nth-child(1) {
  color: #212121;
  position: absolute;
  margin-top: -30px;
}
@media (max-width: 767px) {
  .line-initiative p:nth-child(1) {
    position: relative;
    margin-top: 0;
  }
}
.line-initiative p:not(:first-child) {
  text-align: right;
  width: auto;
}

.line-copyright {
  background-color: #f8f8f8;
  padding-top: 24px !important;
  padding-bottom: 30px !important;
}
.line-copyright p, .line-copyright a, .line-copyright .content {
  font-size: 12px;
  line-height: 20px;
  text-align: right;
  text-decoration: none;
}

/*@import "menu_v4_desktop_mobile/_menu.scss";*/
.zone-event_activities .event_activity_list_filter .search-form .form-horizontal .col-sm-12 .fc-datepicker > input {
  background: #f7f7f7 !important;
}
.zone-event_activities .activities-mosaic .row > div .item > h3 {
  color: #31755D;
}
.zone-news .search-form {
  padding-bottom: 85px;
}
.zone-news #news_content.news-mosaic .row > div h3.news-title {
  font-size: 35px;
  line-height: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .zone-news #news_content.news-mosaic .row > div h3.news-title {
    font-size: 28px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  .zone-news #news_content.news-mosaic .row > div h3.news-title {
    font-size: 25px;
    line-height: 30px;
  }
}
.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: #31755D;
  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: #31755D;
  text-transform: initial;
  margin-bottom: 20px;
  margin-bottom: 0;
}
.zone-news #news_content.news-mosaic .row > div div.news-intro {
  padding-top: 16px;
  margin-right: 32px;
}
.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: #31755D;
  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: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: 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: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 {
  background-color: transparent !important;
  color: #212121;
  transition: all 150ms;
  border: 3px solid #212121;
  box-shadow: -6px 9px 0 #212121 !important;
}
.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 {
  background-color: transparent;
  border: 3px solid #31755D;
  color: #31755D;
  box-shadow: -6px 9px 0 #31755D !important;
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type {
  /*margin-top: 0;*/
  margin-top: 7px;
}

/* 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;
  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 a.viewAll {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.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 {
  background-color: transparent;
  color: #E4F522;
  transition: all 150ms;
  border: 1px solid #212121;
}
.zone-news_flash a.viewAll:hover, .zone-news_flash a.viewAll:active, .zone-news_flash a.viewAll:focus {
  background-color: #E4F522;
  color: #fff;
  border: 1px solid #E4F522;
}

/* Bannière - container pleine largeur */
/*###########################  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-login {
  background-color: #f8f8f8;
  padding: 64px;
}
@media (max-width: 767px) {
  .zone-login {
    padding: 64px 32px;
  }
}

.zone-member .member-login-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.zone-member .member-login-wrapper h1 {
  margin: 64px 0;
}
.zone-member .member-login-wrapper #profile_login_form {
  width: 50%;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type {
  padding: 16px 0 64px 0;
  text-align: right;
}
.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 > div:last-of-type a.reset-password:hover {
  color: #E4F522;
}
.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 {
  background-color: transparent !important;
  color: #212121;
  transition: all 150ms;
  border: 3px solid #212121;
  box-shadow: -6px 9px 0 #212121 !important;
}
.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: transparent;
  border: 3px solid #31755D;
  color: #31755D;
  box-shadow: -6px 9px 0 #31755D !important;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .form-element-email {
  margin-bottom: 2.8rem;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn {
  margin-right: 30px;
}
/* Contenue personalisé */
/*Espace Evenements - Vue Details*/
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right {
    display: flex;
    flex-wrap: wrap;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
  display: flex;
  border-right: 1px solid #31755D;
  width: 28%;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .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) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
    padding: 32px;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron {
  width: 100%;
  background-color: #fff;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__date {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 0;
  padding-bottom: 40px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info .event-info__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding-bottom: 25px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .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;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .event-info__title {
  order: 1;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  padding-top: 20px;
  border-bottom: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .contact, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .phone, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .email {
  border-bottom: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .contact {
  order: 2;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .phone {
  order: 3;
  padding-top: 10px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .email {
  order: 4;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .places {
  order: 5;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  padding-bottom: 25px;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 15px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .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;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
    white-space: normal !important;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
  background-color: transparent !important;
  color: #212121;
  transition: all 150ms;
  border: 3px solid #212121;
  box-shadow: -6px 9px 0 #212121 !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:focus {
  background-color: transparent;
  border: 3px solid #31755D;
  color: #31755D;
  box-shadow: -6px 9px 0 #31755D !important;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
    display: none;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
  display: flex;
  flex-direction: column;
  padding-left: 100px;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
    margin: 0 0 50px 0;
    padding: 0 30px;
    order: 1;
    width: 100%;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__category {
  order: 1;
  font-style: normal;
  font-size: 21;
  font-weight: 800;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__left-right__title {
  order: 0;
  font-size: 32px;
  line-height: 39px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description {
  order: 2;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description h2 {
  font-size: 35px;
  line-height: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description h2 {
    font-size: 28px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description h2 {
    font-size: 25px;
    line-height: 30px;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-additional {
  order: 3;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper {
  order: 4;
}
.zone-event .row .event-detail .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: #31755D;
  background: transparent;
  padding-left: 5px;
  margin: 0;
  line-height: 27px;
  text-transform: none;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav {
    flex-direction: column;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
    white-space: normal !important;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
  background-color: transparent !important;
  color: #212121;
  transition: all 150ms;
  border: 3px solid #212121;
  box-shadow: -6px 9px 0 #212121 !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:focus {
  background-color: transparent;
  border: 3px solid #31755D;
  color: #31755D;
  box-shadow: -6px 9px 0 #31755D !important;
}
/* Espace Evenement - Mosaique */
/*###########################  ESPACE MEMBRE  ###########################*/
.line-zone-membre {
  /*
  .container-fluid{
      max-width: 80%;

      @include max-md{
          max-width: 100%;
      }

  }
  */
}

.zone-member .sidebar__member-zone {
  background-color: transparent;
  /*
  @include max-md {
      width: 100%;
  }

  @include max-sm {
      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: #E4F522;
  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: #31755D;
  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: #31755D;
  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: #31755D;
  font-family: "Merriweather", 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: #31755D;
  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: #31755D;
}
.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 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 .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 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-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
/*Formulaire de Contact*/
/* Formulaire - Module Donnes*/
/* Image - (Default alignée à gauche) */
/*###########################  FIL D'ARIANE  ###########################*/
.line-breadcrumbs {
  padding-top: 10px;
  padding-bottom: 60px;
}
.line-breadcrumbs .zone-breadcrumbs {
  text-align: right;
}
.line-breadcrumbs .zone-breadcrumbs ul li a.pathway {
  text-decoration: none !important;
}
.line-breadcrumbs .zone-breadcrumbs ul li a.pathway:hover, .line-breadcrumbs .zone-breadcrumbs ul li a.pathway:focus, .line-breadcrumbs .zone-breadcrumbs ul li a.pathway:active {
  text-decoration: underline !important;
}
.line-breadcrumbs .zone-breadcrumbs ul li a, .line-breadcrumbs .zone-breadcrumbs ul li span {
  font-size: 13px;
  font-weight: 500;
}
.line-breadcrumbs .zone-breadcrumbs ul li + li:before {
  content: "/";
  color: #31755D;
  font-weight: 500;
  padding: 0 10px;
}
.line-breadcrumbs .zone-breadcrumbs ul li.active {
  color: #E4F522;
}

.zone-community .row .sidebar {
  width: 33.3333333%;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar {
    width: 100%;
    padding-bottom: 40px;
  }
}
.zone-community .row .sidebar .jumbotron {
  margin-right: 10px;
  background-color: #f8f8f8;
  padding: 25px 25px 35px 25px;
  margin-bottom: 110px;
}
@media (max-width: 991px) {
  .zone-community .row .sidebar .jumbotron {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .zone-community .row .sidebar .jumbotron {
    margin-bottom: 40px;
  }
}
.zone-community .row .sidebar .jumbotron strong {
  font-size: 21px;
  line-height: 26px;
  color: #31755D;
  display: block;
}
.zone-community .row .sidebar .jumbotron a {
  display: block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #31755D;
  text-transform: initial;
  padding-top: 17px;
  padding-bottom: 17px;
}
.zone-community .row .sidebar .jumbotron a:first-of-type {
  border-top: 1px solid #31755D;
}
.zone-community .row .sidebar .jumbotron a:first-of-type:hover, .zone-community .row .sidebar .jumbotron a:first-of-type:focus {
  color: #31755D;
  text-decoration: none;
}
.zone-community .row .sidebar .jumbotron a:last-of-type {
  border-top: 1px solid #31755D;
  /*@include btn-arrow;*/
}
.zone-community .row .sidebar .jumbotron + p {
  font-size: 21px;
  line-height: 26px;
  color: #31755D;
  font-weight: 700;
  display: block;
  margin-left: 25px;
  margin-bottom: 20px;
}
.zone-community .row .sidebar ul {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 25px 0 15px 0;
  margin-left: 25px;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.zone-community .row .sidebar ul {
  list-style: none;
}
.zone-community .row .sidebar ul li {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 9px;
}
.zone-community .row .sidebar ul li a:hover, .zone-community .row .sidebar ul li a:focus {
  color: #31755D;
  text-decoration: none;
}
.zone-community .row .content {
  width: 66.6666667%;
}
@media (max-width: 767px) {
  .zone-community .row .content {
    width: 100%;
  }
}
.zone-community .row .content ul.nav {
  border-bottom: none;
  margin-top: 25px;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
}
.zone-community .row .content ul.nav li {
  padding: 0px 5px;
}
.zone-community .row .content ul.nav li a {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.zone-community .row .content ul.nav li a:hover, .zone-community .row .content ul.nav li a:active, .zone-community .row .content ul.nav li a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-community .row .content ul.nav li a {
    white-space: normal !important;
  }
}
.zone-community .row .content ul.nav li a {
  background-color: #fff;
  color: #E4F522;
  transition: all 150ms;
  border: 1px solid #E4F522;
}
.zone-community .row .content ul.nav li a:hover, .zone-community .row .content ul.nav li a:active, .zone-community .row .content ul.nav li a:focus {
  background-color: #E4F522;
  border: 1px solid #E4F522;
  color: #31755D;
}
.zone-community .row .content ul.nav li a {
  letter-spacing: 0;
}
.zone-community .row .content ul.nav li.active a {
  font-weight: 600;
  color: #31755D !important;
}
.zone-community .row .content .tab-content ul.errors li {
  list-style: none;
}
.zone-community .row .content .tab-content h3 {
  text-transform: inherit;
}
.zone-community .row .content .tab-content .forum-message-content-filter {
  display: inline-flex;
  flex-flow: column;
  align-items: flex-start;
}
.zone-community .row .content .tab-content .forum-message-content-filter .add-mod-forum-item {
  margin-top: 10px;
}
.zone-community .row .content .tab-content .forum-item__btn-addMessage {
  margin-right: 25px;
}
.zone-community .row .content .tab-content .forum-list__title {
  font-size: 35px;
  line-height: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .zone-community .row .content .tab-content .forum-list__title {
    font-size: 28px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  .zone-community .row .content .tab-content .forum-list__title {
    font-size: 25px;
    line-height: 30px;
  }
}
.zone-community .row .content .forum-item, .zone-community .row .content .forum-item__wrapper {
  padding: 37px 0 30px;
}
.zone-community .row .content .forum-item:hover, .zone-community .row .content .forum-item__wrapper:hover {
  background-color: transparent;
}
.zone-community .row .content .forum-item .forum-item-title, .zone-community .row .content .forum-item__wrapper .forum-item-title {
  font-size: 18px;
  line-height: 21px;
}
.zone-community .row .content .forum-item .forum-item-author, .zone-community .row .content .forum-item__wrapper .forum-item-author {
  color: #31755D;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-toggle, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-toggle {
  min-height: 0;
  padding: 10px;
  background-color: #fff;
  border: 0;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-toggle .caret, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-toggle .caret {
  color: #212121;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-menu li, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-menu li {
  margin-bottom: 0;
}
.zone-community .row .content .forum-message-child {
  padding: 37px 30px 30px;
}
.zone-community .row .content .forum-item__wrapper .forum-item-title {
  margin-right: 0;
}
.zone-community .row .content .forum-form__addMessage-wrapper #community_form_add_message {
  padding-top: 30px;
}
.zone-community .row .content #community-forum #community_form_add_message .section .form-group:last-of-type {
  padding-top: 20px;
}
.zone-community .row .content #community-forum .forum-item__btn-addMessage {
  margin-right: 25px;
}

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

.prebuilt-articles-vedette-col3 .newsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}
@media (max-width: 991px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
.prebuilt-articles-vedette-col3 .newsList .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item .itemImage {
  margin-bottom: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.prebuilt-articles-vedette-col3 .newsList .row .item h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.itemInfos.e-date {
  margin-bottom: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.news-keywords {
  margin-bottom: 0;
}
.prebuilt-articles-vedette-col3 a.viewAll {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.prebuilt-articles-vedette-col3 a.viewAll:hover, .prebuilt-articles-vedette-col3 a.viewAll:active, .prebuilt-articles-vedette-col3 a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-vedette-col3 a.viewAll {
  background-color: transparent;
  color: #E4F522;
  transition: all 150ms;
  border: 1px solid #212121;
}
.prebuilt-articles-vedette-col3 a.viewAll:hover, .prebuilt-articles-vedette-col3 a.viewAll:active, .prebuilt-articles-vedette-col3 a.viewAll:focus {
  background-color: #E4F522;
  color: #fff;
  border: 1px solid #E4F522;
}

.prebuilt-articles-vedette-title-left-text-right .container > .row > div h2 {
  margin-bottom: 35px;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row {
  padding-top: 30px;
  padding-bottom: 20px;
  margin: 0;
  border-bottom: 1px solid #31755D;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row:nth-child(1) {
  border-top: 1px solid #31755D;
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item {
    columns: 2;
    column-gap: 40px;
  }
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 {
    padding-right: 100px;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 {
  font-size: 40px;
  line-height: 50px;
  font-family: "Merriweather", serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 a {
  color: #31755D;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 a:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 a:focus {
  color: #31755D;
  text-decoration: none;
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .e-date {
    padding-right: 100px;
    break-after: column;
  }
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .intro {
    margin-left: -100px;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .intro {
  margin-bottom: 2rem;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .intro p {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions {
    margin-left: -100px;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions {
  margin-top: 0;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary {
    white-space: normal !important;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary {
  background-color: transparent;
  color: #E4F522;
  transition: all 150ms;
  border: 1px solid #212121;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:focus {
  background-color: #E4F522;
  color: #fff;
  border: 1px solid #E4F522;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll {
  background-color: transparent !important;
  color: #212121;
  transition: all 150ms;
  border: 3px solid #212121;
  box-shadow: -6px 9px 0 #212121 !important;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:focus {
  background-color: transparent;
  border: 3px solid #31755D;
  color: #31755D;
  box-shadow: -6px 9px 0 #31755D !important;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll {
  margin-top: 80px;
}

.prebuilt-articles-multiples-col3 .news-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}
@media (max-width: 991px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
.prebuilt-articles-multiples-col3 .news-mosaic .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item .itemImage {
  margin-bottom: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .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;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item p.itemInfos.e-date {
  margin-bottom: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item p.news-keywords {
  margin-bottom: 0;
}
.prebuilt-articles-multiples-col3 a.viewAll {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.prebuilt-articles-multiples-col3 a.viewAll:hover, .prebuilt-articles-multiples-col3 a.viewAll:active, .prebuilt-articles-multiples-col3 a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-multiples-col3 a.viewAll {
  background-color: transparent;
  color: #E4F522;
  transition: all 150ms;
  border: 1px solid #212121;
}
.prebuilt-articles-multiples-col3 a.viewAll:hover, .prebuilt-articles-multiples-col3 a.viewAll:active, .prebuilt-articles-multiples-col3 a.viewAll:focus {
  background-color: #E4F522;
  color: #fff;
  border: 1px solid #E4F522;
}

/* 
Mosaique
1 collone
Résumer au centre
*/
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}
@media (max-width: 991px) {
  .prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
@media (max-width: 767px) {
  .prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row {
  margin-top: 0;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item a img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.prebuilt-evenement-en-vedette-list-3 {
  padding-top: 115px;
  padding-bottom: 80px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash h2 {
  margin-bottom: 35px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 15px;
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
@media (max-width: 767px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row {
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div {
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 235px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 175px !important;
  }
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 135px !important;
  }
}
@media (max-width: 767px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 185px !important;
  }
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item h3 {
  font-size: 40px;
  line-height: 50px;
  font-family: "Merriweather", serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item h3 {
  margin-bottom: 15px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item hr {
  display: none;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos {
  margin-bottom: 25px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos .e-date {
  font-size: 20px;
  line-height: 35px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos .e-date {
    font-size: 18px;
    line-height: 29px;
  }
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos .e-date {
  text-transform: inherit;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions {
  margin-bottom: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a {
  margin-top: 20px;
  margin-bottom: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary {
  background-color: transparent !important;
  color: #212121;
  transition: all 150ms;
  border: 3px solid #212121;
  box-shadow: -6px 9px 0 #212121 !important;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:hover, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:active, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:focus {
  background-color: transparent;
  border: 3px solid #31755D;
  color: #31755D;
  box-shadow: -6px 9px 0 #31755D !important;
}
/* Menu & Footer social icons*/
ul.social {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}
ul.social li {
  width: 50px;
}
ul.social li a {
  text-decoration: none !important;
}
ul.social li a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%231c1d1f'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  width: 21px;
  height: 20px;
  display: block;
}
ul.social li a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%23182cca'/%3E%3C/svg%3E%0A");
}
ul.social li a.facebook {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='11.451' height='22.052' viewBox='0 0 11.451 22.052'%3e%3cpath id='Path_3552' data-name='Path 3552' d='M691.142%2c422.661h-2.075c-1.628%2c0-1.944.773-1.944%2c1.907v2.5h3.883l-.506%2c3.921h-3.377v10.059h-4.048V430.994h-3.385v-3.921h3.385v-2.89c0-3.356%2c2.049-5.182%2c5.041-5.182a27.655%2c27.655%2c0%2c0%2c1%2c3.025.154Z' transform='translate(-679.691 -419)' fill='%231c1d1f'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 11px;
  height: 22px;
  display: block;
  position: relative;
  left: 5px;
}
ul.social li a.facebook:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='11.451' height='22.052' viewBox='0 0 11.451 22.052'%3e%3cpath id='Path_3552' data-name='Path 3552' d='M691.142%2c422.661h-2.075c-1.628%2c0-1.944.773-1.944%2c1.907v2.5h3.883l-.506%2c3.921h-3.377v10.059h-4.048V430.994h-3.385v-3.921h3.385v-2.89c0-3.356%2c2.049-5.182%2c5.041-5.182a27.655%2c27.655%2c0%2c0%2c1%2c3.025.154Z' transform='translate(-679.691 -419)' fill='%23182cca'/%3e%3c/svg%3e");
}
ul.social li a.youtube {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%231c1d1f'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 24px;
  height: 17px;
  display: block;
  position: relative;
  top: 2px;
}
ul.social li a.youtube:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%23182cca'/%3e%3c/svg%3e");
}
ul.social li a.twitter {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21.095' height='16.408' viewBox='0 0 21.095 16.408'%3e%3cpath id='Color_Overlay' data-name='Color Overlay' d='M2.918%2c15.914A14.188%2c14.188%2c0%2c0%2c1%2c0%2c14.667a5.923%2c5.923%2c0%2c0%2c1%2c1.216-.113%2c8.557%2c8.557%2c0%2c0%2c0%2c4.135-1.019l.85-.454-.973-.34a4.673%2c4.673%2c0%2c0%2c1-2.917-2.379c0-.34%2c0-.34.851-.34h.851l-.73-.34A4.478%2c4.478%2c0%2c0%2c1%2c1.216%2c7.871%2c4.012%2c4.012%2c0%2c0%2c1%2c.609%2c5.946c0-.113.365%2c0%2c.729.113%2c1.095.341%2c1.216.227.609-.34a3.8%2c3.8%2c0%2c0%2c1-.973-4.3L1.216.737l.973.906a13.311%2c13.311%2c0%2c0%2c0%2c7.3%2c3.285l.73.113V4.361A4.162%2c4.162%2c0%2c0%2c1%2c13.254.17a5.343%2c5.343%2c0%2c0%2c1%2c2.675%2c0%2c7.434%2c7.434%2c0%2c0%2c1%2c1.337.679l.729.453.851-.226A8.382%2c8.382%2c0%2c0%2c0%2c20.184.623%2c1.293%2c1.293%2c0%2c0%2c1%2c20.67.51%2c3.669%2c3.669%2c0%2c0%2c1%2c19.576%2c2.1c-.607.566-.486.679.851.227.729-.227.729-.227.607%2c0-.121.113-.607.679-1.094%2c1.133-.851.792-.851.906-.851%2c1.585a14.886%2c14.886%2c0%2c0%2c1-1.095%2c4.3%2c12.956%2c12.956%2c0%2c0%2c1-5.106%2c5.55%2c12.818%2c12.818%2c0%2c0%2c1-6.232%2c1.514A14.136%2c14.136%2c0%2c0%2c1%2c2.918%2c15.914Z' transform='translate(0 0)' fill='%231c1d1f'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 21px;
  height: 17px;
  display: block;
  position: relative;
  top: 2px;
}
ul.social li a.twitter:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21.095' height='16.408' viewBox='0 0 21.095 16.408'%3e%3cpath id='Color_Overlay' data-name='Color Overlay' d='M2.918%2c15.914A14.188%2c14.188%2c0%2c0%2c1%2c0%2c14.667a5.923%2c5.923%2c0%2c0%2c1%2c1.216-.113%2c8.557%2c8.557%2c0%2c0%2c0%2c4.135-1.019l.85-.454-.973-.34a4.673%2c4.673%2c0%2c0%2c1-2.917-2.379c0-.34%2c0-.34.851-.34h.851l-.73-.34A4.478%2c4.478%2c0%2c0%2c1%2c1.216%2c7.871%2c4.012%2c4.012%2c0%2c0%2c1%2c.609%2c5.946c0-.113.365%2c0%2c.729.113%2c1.095.341%2c1.216.227.609-.34a3.8%2c3.8%2c0%2c0%2c1-.973-4.3L1.216.737l.973.906a13.311%2c13.311%2c0%2c0%2c0%2c7.3%2c3.285l.73.113V4.361A4.162%2c4.162%2c0%2c0%2c1%2c13.254.17a5.343%2c5.343%2c0%2c0%2c1%2c2.675%2c0%2c7.434%2c7.434%2c0%2c0%2c1%2c1.337.679l.729.453.851-.226A8.382%2c8.382%2c0%2c0%2c0%2c20.184.623%2c1.293%2c1.293%2c0%2c0%2c1%2c20.67.51%2c3.669%2c3.669%2c0%2c0%2c1%2c19.576%2c2.1c-.607.566-.486.679.851.227.729-.227.729-.227.607%2c0-.121.113-.607.679-1.094%2c1.133-.851.792-.851.906-.851%2c1.585a14.886%2c14.886%2c0%2c0%2c1-1.095%2c4.3%2c12.956%2c12.956%2c0%2c0%2c1-5.106%2c5.55%2c12.818%2c12.818%2c0%2c0%2c1-6.232%2c1.514A14.136%2c14.136%2c0%2c0%2c1%2c2.918%2c15.914Z' transform='translate(0 0)' fill='%23182cca'/%3e%3c/svg%3e");
}
ul.social li.blue a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%23182CCA'/%3E%3C/svg%3E%0A");
}
ul.social li.blue a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%23000000'/%3E%3C/svg%3E%0A");
}
ul.social li.blue a.facebook {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='11.451' height='22.052' viewBox='0 0 11.451 22.052'%3e%3cpath id='Path_3552' data-name='Path 3552' d='M691.142%2c422.661h-2.075c-1.628%2c0-1.944.773-1.944%2c1.907v2.5h3.883l-.506%2c3.921h-3.377v10.059h-4.048V430.994h-3.385v-3.921h3.385v-2.89c0-3.356%2c2.049-5.182%2c5.041-5.182a27.655%2c27.655%2c0%2c0%2c1%2c3.025.154Z' transform='translate(-679.691 -419)' fill='%23182CCA'/%3e%3c/svg%3e");
}
ul.social li.blue a.facebook:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='11.451' height='22.052' viewBox='0 0 11.451 22.052'%3e%3cpath id='Path_3552' data-name='Path 3552' d='M691.142%2c422.661h-2.075c-1.628%2c0-1.944.773-1.944%2c1.907v2.5h3.883l-.506%2c3.921h-3.377v10.059h-4.048V430.994h-3.385v-3.921h3.385v-2.89c0-3.356%2c2.049-5.182%2c5.041-5.182a27.655%2c27.655%2c0%2c0%2c1%2c3.025.154Z' transform='translate(-679.691 -419)' fill='%23000000'/%3e%3c/svg%3e");
}
ul.social li.blue a.youtube {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%23182CCA'/%3e%3c/svg%3e");
}
ul.social li.blue a.youtube:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%23000000'/%3e%3c/svg%3e");
}
ul.social li.blue a.twitter {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21.095' height='16.408' viewBox='0 0 21.095 16.408'%3e%3cpath id='Color_Overlay' data-name='Color Overlay' d='M2.918%2c15.914A14.188%2c14.188%2c0%2c0%2c1%2c0%2c14.667a5.923%2c5.923%2c0%2c0%2c1%2c1.216-.113%2c8.557%2c8.557%2c0%2c0%2c0%2c4.135-1.019l.85-.454-.973-.34a4.673%2c4.673%2c0%2c0%2c1-2.917-2.379c0-.34%2c0-.34.851-.34h.851l-.73-.34A4.478%2c4.478%2c0%2c0%2c1%2c1.216%2c7.871%2c4.012%2c4.012%2c0%2c0%2c1%2c.609%2c5.946c0-.113.365%2c0%2c.729.113%2c1.095.341%2c1.216.227.609-.34a3.8%2c3.8%2c0%2c0%2c1-.973-4.3L1.216.737l.973.906a13.311%2c13.311%2c0%2c0%2c0%2c7.3%2c3.285l.73.113V4.361A4.162%2c4.162%2c0%2c0%2c1%2c13.254.17a5.343%2c5.343%2c0%2c0%2c1%2c2.675%2c0%2c7.434%2c7.434%2c0%2c0%2c1%2c1.337.679l.729.453.851-.226A8.382%2c8.382%2c0%2c0%2c0%2c20.184.623%2c1.293%2c1.293%2c0%2c0%2c1%2c20.67.51%2c3.669%2c3.669%2c0%2c0%2c1%2c19.576%2c2.1c-.607.566-.486.679.851.227.729-.227.729-.227.607%2c0-.121.113-.607.679-1.094%2c1.133-.851.792-.851.906-.851%2c1.585a14.886%2c14.886%2c0%2c0%2c1-1.095%2c4.3%2c12.956%2c12.956%2c0%2c0%2c1-5.106%2c5.55%2c12.818%2c12.818%2c0%2c0%2c1-6.232%2c1.514A14.136%2c14.136%2c0%2c0%2c1%2c2.918%2c15.914Z' transform='translate(0 0)' fill='%23182CCA'/%3e%3c/svg%3e");
}
ul.social li.blue a.twitter:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21.095' height='16.408' viewBox='0 0 21.095 16.408'%3e%3cpath id='Color_Overlay' data-name='Color Overlay' d='M2.918%2c15.914A14.188%2c14.188%2c0%2c0%2c1%2c0%2c14.667a5.923%2c5.923%2c0%2c0%2c1%2c1.216-.113%2c8.557%2c8.557%2c0%2c0%2c0%2c4.135-1.019l.85-.454-.973-.34a4.673%2c4.673%2c0%2c0%2c1-2.917-2.379c0-.34%2c0-.34.851-.34h.851l-.73-.34A4.478%2c4.478%2c0%2c0%2c1%2c1.216%2c7.871%2c4.012%2c4.012%2c0%2c0%2c1%2c.609%2c5.946c0-.113.365%2c0%2c.729.113%2c1.095.341%2c1.216.227.609-.34a3.8%2c3.8%2c0%2c0%2c1-.973-4.3L1.216.737l.973.906a13.311%2c13.311%2c0%2c0%2c0%2c7.3%2c3.285l.73.113V4.361A4.162%2c4.162%2c0%2c0%2c1%2c13.254.17a5.343%2c5.343%2c0%2c0%2c1%2c2.675%2c0%2c7.434%2c7.434%2c0%2c0%2c1%2c1.337.679l.729.453.851-.226A8.382%2c8.382%2c0%2c0%2c0%2c20.184.623%2c1.293%2c1.293%2c0%2c0%2c1%2c20.67.51%2c3.669%2c3.669%2c0%2c0%2c1%2c19.576%2c2.1c-.607.566-.486.679.851.227.729-.227.729-.227.607%2c0-.121.113-.607.679-1.094%2c1.133-.851.792-.851.906-.851%2c1.585a14.886%2c14.886%2c0%2c0%2c1-1.095%2c4.3%2c12.956%2c12.956%2c0%2c0%2c1-5.106%2c5.55%2c12.818%2c12.818%2c0%2c0%2c1-6.232%2c1.514A14.136%2c14.136%2c0%2c0%2c1%2c2.918%2c15.914Z' transform='translate(0 0)' fill='%23000000'/%3e%3c/svg%3e");
}

.line-ligne-du-temps {
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .line-ligne-du-temps {
    padding-top: 40px;
  }
}
.line-ligne-du-temps .newsList:before {
  content: "";
  height: calc(100% - 50px);
  position: absolute;
  border-right: 2px solid #31755D;
  top: 52px;
  left: 315px;
  margin-left: 3px;
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList:before {
    left: 240px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList:before {
    left: 10px;
  }
}
.line-ligne-du-temps .newsList .row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin: 0 !important;
  padding: 40px 0 20px 0;
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row {
    display: block;
  }
}
.line-ligne-du-temps .newsList .row:not(:last-child):after {
  content: "";
  position: absolute;
  width: 1920px;
  left: 12%;
  height: 2px;
  bottom: 0;
  border-bottom: 2px dashed #31755D;
}
@media (max-width: 1199px) {
  .line-ligne-du-temps .newsList .row:not(:last-child):after {
    left: 16%;
  }
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList .row:not(:last-child):after {
    left: 15%;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row:not(:last-child):after {
    left: 0;
  }
}
.line-ligne-du-temps .newsList .row .item {
  width: 70%;
  margin: 0;
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item {
    width: 100%;
  }
}
.line-ligne-du-temps .newsList .row .item .itemImage {
  position: absolute;
  left: -350px;
  top: -105px;
}
@media (max-width: 1199px) {
  .line-ligne-du-temps .newsList .row .item .itemImage {
    left: -280px;
  }
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList .row .item .itemImage {
    left: -220px;
    top: -95px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item .itemImage {
    position: relative;
    left: 25px;
    top: 0;
    margin-top: 20px;
  }
}
.line-ligne-du-temps .newsList .row .item .itemImage img {
  width: 133px;
  height: 133px;
  border-radius: 133px;
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList .row .item .itemImage img {
    max-width: 100px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item .itemImage img {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item .itemImage + h3:before {
    margin-top: -80px;
  }
}
.line-ligne-du-temps .newsList .row .item > h3 {
  position: absolute;
  text-align: right;
  color: #31755D;
  font-weight: normal;
  left: -900px;
  top: 0;
}
@media (max-width: 1199px) {
  .line-ligne-du-temps .newsList .row .item > h3 {
    left: -681px;
  }
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList .row .item > h3 {
    left: -520px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item > h3 {
    position: relative !important;
    margin-bottom: 30px;
    left: 30px !important;
    text-align: left;
  }
}
.line-ligne-du-temps .newsList .row .item > h3:before {
  content: "";
  position: absolute;
  border-radius: 25px;
  width: 25px;
  height: 25px;
  background-color: #31755D;
  margin-top: 0;
  margin-right: -95px;
  right: 0;
}
@media (max-width: 1199px) {
  .line-ligne-du-temps .newsList .row .item > h3:before {
    right: 20px;
  }
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList .row .item > h3:before {
    right: 36px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item > h3:before {
    left: -44px;
    right: auto;
  }
}
.line-ligne-du-temps .newsList .row .item h3 {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item h3 {
    margin-bottom: 8px;
  }
}
.line-ligne-du-temps .newsList .row .item .intro {
  padding: 0 50px 0 65px;
  border-radius: 7px;
}
@media (max-width: 1199px) {
  .line-ligne-du-temps .newsList .row .item .intro {
    padding: 0 50px 0 95px;
  }
}
@media (max-width: 991px) {
  .line-ligne-du-temps .newsList .row .item .intro {
    padding: 0 0 0 65px;
  }
}
@media (max-width: 767px) {
  .line-ligne-du-temps .newsList .row .item .intro {
    padding: 0;
    margin-left: 30px;
  }
}

.line-btn-center-dashed {
  background-color: #f8f8f8;
  padding-top: 10px;
  padding-bottom: 135px;
  margin-bottom: 85px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.line-btn-center-dashed:before {
  content: "";
  position: absolute;
  width: 50%;
  left: -170px;
  height: 2px;
  border-bottom: 2px dashed #31755D;
}
.line-btn-center-dashed:after {
  content: "";
  position: absolute;
  width: 50%;
  right: -170px;
  height: 2px;
  border-bottom: 2px dashed #31755D;
}
.line-btn-center-dashed .content {
  text-align: center;
}
.line-btn-center-dashed .content .btn {
  margin-bottom: 0;
}

.site-inner {
  overflow: hidden;
}

.padding-menu {
  padding-top: 190px;
}

address {
  font-size: 1.5rem !important;
}

.line-404 {
  padding-top: 246px !important;
  padding-bottom: 55px !important;
  background-color: #31755D;
  position: relative;
}
.line-404:before {
  content: "";
  display: block;
  position: absolute;
  width: 564px;
  height: 549px;
  left: 20px;
  right: 0;
  margin-top: -85px;
  margin-left: auto;
  margin-right: auto;
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Assets/404.svg") no-repeat;
  background-size: 100%;
  /*background-size: 564px 549px;*/
  background-position: center center;
}
@media (max-width: 767px) {
  .line-404:before {
    background-size: 100%;
    width: 380px;
    height: 400px;
  }
}
@media (max-width: 575px) {
  .line-404:before {
    background-size: 100%;
    width: 300px;
    height: 360px;
    margin-top: -35px;
  }
}
.line-404 .row > div:first-child .content {
  text-align: center;
}
.line-404 .row > div:first-child .content h1 {
  color: #F1FFB9;
  font-size: 200px;
  line-height: 130px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .line-404 .row > div:first-child .content h1 {
    font-size: 140px;
    line-height: 100px;
  }
}
.line-404 .row > div:first-child .content h3 {
  color: #F1FFB9;
  font-size: 28px;
  line-height: 33px;
  font-weight: 500;
  margin-bottom: 30px;
}
.line-404 .row > div:first-child .content h2 {
  color: #F9FEE3;
  font-size: 70px;
  line-height: 73px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .line-404 .row > div:first-child .content h2 {
    font-size: 50px;
    line-height: 53px;
  }
}
.line-404 .row > div:first-child .content p {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .line-404 .row > div:first-child .content p {
    font-size: 14px;
    line-height: 19px;
  }
}
.line-404 .row > div:first-child .content p {
  color: #fff;
}

.line-accueil-connaitre {
  padding-top: 250px !important;
  padding-bottom: 60px !important;
  position: relative;
}
@media (max-width: 991px) {
  .line-accueil-connaitre {
    padding-top: 208px !important;
  }
}
@media (max-width: 767px) {
  .line-accueil-connaitre {
    padding-top: 260px !important;
  }
}
.line-accueil-connaitre .container > .row {
  position: relative;
}
@media (max-width: 767px) {
  .line-accueil-connaitre .container > .row {
    display: flex;
    flex-direction: column;
  }
}
.line-accueil-connaitre .container > .row > div:nth-child(1) {
  width: 60%;
}
@media (max-width: 991px) {
  .line-accueil-connaitre .container > .row > div:nth-child(1) {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .line-accueil-connaitre .container > .row > div:nth-child(1) {
    width: 100%;
    order: 2;
  }
}
.line-accueil-connaitre .container > .row > div:nth-child(1) .content h2 strong {
  color: #00A552;
  font-weight: 900;
}
.line-accueil-connaitre .container > .row > div:nth-child(1) .content h2 {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .line-accueil-connaitre .container > .row > div:nth-child(1) .content h2 {
    max-width: 240px;
  }
}
.line-accueil-connaitre .container > .row > div:nth-child(2) {
  /*width:  40%;*/
  width: 748px;
  position: absolute;
  right: 0;
}
@media (max-width: 767px) {
  .line-accueil-connaitre .container > .row > div:nth-child(2) {
    order: 1;
  }
}
.line-accueil-connaitre .container > .row > div:nth-child(2) .content img:nth-child(1) {
  position: absolute;
  z-index: 11;
  top: -378px;
  right: -50px;
}
@media (max-width: 1199px) {
  .line-accueil-connaitre .container > .row > div:nth-child(2) .content img:nth-child(1) {
    right: -150px !important;
  }
}
@media (max-width: 991px) {
  .line-accueil-connaitre .container > .row > div:nth-child(2) .content img:nth-child(1) {
    width: 600px !important;
    right: -100px !important;
    top: -308px !important;
  }
}
@media (max-width: 767px) {
  .line-accueil-connaitre .container > .row > div:nth-child(2) .content img:nth-child(1) {
    width: 400px !important;
    right: -100px !important;
    top: -348px !important;
  }
}
.line-accueil-connaitre .container > .row > div:nth-child(2) .content img:nth-child(2) {
  position: absolute;
  z-index: 10;
  top: -215px;
  right: -50px;
}
@media (max-width: 1199px) {
  .line-accueil-connaitre .container > .row > div:nth-child(2) .content img:nth-child(2) {
    right: -150px !important;
  }
}
@media (max-width: 991px) {
  .line-accueil-connaitre .container > .row > div:nth-child(2) .content img:nth-child(2) {
    width: 360px !important;
    right: -100px !important;
    top: -235px !important;
  }
}
@media (max-width: 767px) {
  .line-accueil-connaitre .container > .row > div:nth-child(2) .content img:nth-child(2) {
    width: 230px !important;
    right: -100px !important;
    top: -275px !important;
  }
}

.line-accueil-plan {
  padding-top: 285px !important;
  padding-bottom: 150px !important;
  position: relative;
}
@media (max-width: 991px) {
  .line-accueil-plan {
    padding-top: 95px !important;
    padding-bottom: 115px !important;
  }
}
@media (max-width: 767px) {
  .line-accueil-plan {
    padding-top: 265px !important;
    padding-bottom: 160px !important;
  }
}
.line-accueil-plan .container > .row > div:nth-child(1) {
  width: 40%;
}
@media (max-width: 767px) {
  .line-accueil-plan .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-accueil-plan .container > .row > div:nth-child(1) .content {
  width: 617px;
  height: 600px;
  position: absolute;
  top: -205px;
  right: -160px;
}
@media (max-width: 991px) {
  .line-accueil-plan .container > .row > div:nth-child(1) .content {
    width: 340px;
    height: 340px;
    top: -70px;
    right: -54px;
  }
}
@media (max-width: 767px) {
  .line-accueil-plan .container > .row > div:nth-child(1) .content {
    width: 280px !important;
    height: 280px;
    top: -210px;
    right: 42px;
  }
}
.line-accueil-plan .container > .row > div:nth-child(1) .content img {
  width: 617px;
  height: 600px;
  margin-top: 290px;
}
@media (max-width: 991px) {
  .line-accueil-plan .container > .row > div:nth-child(1) .content img {
    width: 340px !important;
  }
}
@media (max-width: 767px) {
  .line-accueil-plan .container > .row > div:nth-child(1) .content img {
    width: 280px !important;
  }
}
.line-accueil-plan .container > .row > div:nth-child(2) {
  width: 60%;
}
@media (max-width: 767px) {
  .line-accueil-plan .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-accueil-plan .container > .row > div:nth-child(2) .content h2 strong {
  color: #00A552;
  font-weight: 900;
}
.line-accueil-plan .container > .row > div:nth-child(2) .content h2 {
  margin-bottom: 35px;
}

.line-accueil-outils {
  padding-top: 355px !important;
  padding-bottom: 190px !important;
  background-color: #31755D;
  position: relative;
}
.line-accueil-outils:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Assets/Courbe.svg") no-repeat;
  background-position: top center;
  background-size: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 360/31;
  position: absolute;
  top: -2px;
}
@media (max-width: 991px) {
  .line-accueil-outils {
    padding-top: 255px !important;
    padding-bottom: 90px !important;
  }
}
@media (max-width: 767px) {
  .line-accueil-outils {
    padding-top: 290px !important;
  }
}
.line-accueil-outils .container > .row {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .line-accueil-outils .container > .row {
    flex-direction: column;
  }
}
.line-accueil-outils .container > .row > div:nth-child(1) {
  width: 60%;
}
@media (max-width: 767px) {
  .line-accueil-outils .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-accueil-outils .container > .row > div:nth-child(1) .content h2 strong {
  color: #00A552;
  font-weight: 900;
}
.line-accueil-outils .container > .row > div:nth-child(1) .content h2 {
  margin-bottom: 35px;
  color: #F1FFB9;
}
@media (max-width: 991px) {
  .line-accueil-outils .container > .row > div:nth-child(1) .content h2 {
    max-width: 380px !important;
  }
  .line-accueil-outils .container > .row > div:nth-child(1) .content h2 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .line-accueil-outils .container > .row > div:nth-child(1) .content h2 {
    max-width: 280px !important;
  }
}
.line-accueil-outils .container > .row > div:nth-child(1) .content p {
  color: #F1FFB9;
}
.line-accueil-outils .container > .row > div:nth-child(1) .content p:nth-child(1) {
  width: 482px;
  height: 494px;
  position: absolute;
  top: -295px;
  right: -330px;
  z-index: 10;
}
@media (max-width: 991px) {
  .line-accueil-outils .container > .row > div:nth-child(1) .content p:nth-child(1) {
    width: 310px;
    height: 334px;
    top: -230px;
    right: -230px;
  }
}
@media (max-width: 767px) {
  .line-accueil-outils .container > .row > div:nth-child(1) .content p:nth-child(1) {
    width: 240px;
    height: 334px;
    top: -290px;
    right: 100px;
  }
}
.line-accueil-outils .container > .row > div:nth-child(1) .content p:nth-child(1) img {
  width: 482px;
  height: 494px;
  transition: filter 150ms linear;
  margin-top: -660px;
}
@media (max-width: 991px) {
  .line-accueil-outils .container > .row > div:nth-child(1) .content p:nth-child(1) img {
    margin-top: -730px !important;
    margin-right: -60px !important;
  }
}
@media (max-width: 991px) {
  .line-accueil-outils .container > .row > div:nth-child(1) .content p:nth-child(1) img {
    width: 310px !important;
    margin-top: -580px !important;
    margin-left: 90px !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .line-accueil-outils .container > .row > div:nth-child(1) .content p:nth-child(1) img {
    width: 310px !important;
    margin-top: -660px !important;
    margin-left: 80px !important;
  }
}
@media (max-width: 575px) {
  .line-accueil-outils .container > .row > div:nth-child(1) .content p:nth-child(1) img {
    width: 220px !important;
    margin-top: -860px !important;
    margin-left: 130px !important;
  }
}
.line-accueil-outils .container > .row > div:nth-child(1) .content p:nth-child(1) img:hover {
  filter: brightness(0.8);
  transition: filter 150ms linear;
}
.line-accueil-outils .container > .row > div:nth-child(2) {
  width: 40%;
  display: flex;
  align-items: flex-end;
  justify-content: end;
}
@media (max-width: 767px) {
  .line-accueil-outils .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-cannabis-connaitre {
  padding-top: 15px;
  padding-bottom: 25px;
  background-color: #31755D;
}
.line-cannabis-connaitre .container > .row > div .content h1, .line-cannabis-connaitre .container > .row > div .content h2, .line-cannabis-connaitre .container > .row > div .content h3, .line-cannabis-connaitre .container > .row > div .content h4, .line-cannabis-connaitre .container > .row > div .content h5, .line-cannabis-connaitre .container > .row > div .content h6, .line-cannabis-connaitre .container > .row > div .content p, .line-cannabis-connaitre .container > .row > div .content a {
  color: #fff;
}
.line-cannabis-connaitre .container > .row > div .content h2 {
  font-size: 28px;
  line-height: 33px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-cannabis-connaitre .container > .row > div .content h2 {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .line-cannabis-connaitre .container > .row > div .content h2 {
    font-size: 22px;
    line-height: 28px;
  }
}
.line-cannabis-connaitre .container > .row > div .content img {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .line-cannabis-connaitre .container > .row > div .content img {
    max-width: 100%;
  }
}

.line-cannabis-connaitre-3 {
  padding-top: 25px;
  padding-bottom: 20px;
  background-color: #31755D;
  position: relative;
}
.line-cannabis-connaitre-3 .container > .row > div .content h1, .line-cannabis-connaitre-3 .container > .row > div .content h2, .line-cannabis-connaitre-3 .container > .row > div .content h3, .line-cannabis-connaitre-3 .container > .row > div .content h4, .line-cannabis-connaitre-3 .container > .row > div .content h5, .line-cannabis-connaitre-3 .container > .row > div .content h6, .line-cannabis-connaitre-3 .container > .row > div .content p, .line-cannabis-connaitre-3 .container > .row > div .content a {
  color: #fff;
}
.line-cannabis-connaitre-3 .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 30px;
}
@media (max-width: 767px) {
  .line-cannabis-connaitre-3 .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px 30px;
  }
}
.line-cannabis-connaitre-3 .container > .row > div .content h3 {
  text-align: center;
  font-size: 20px;
  line-height: 35px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .line-cannabis-connaitre-3 .container > .row > div .content h3 {
    font-size: 18px;
    line-height: 29px;
  }
}
.line-cannabis-connaitre-3 .container > .row > div .content h3 {
  color: #fff;
  position: relative;
}
@media (max-width: 767px) {
  .line-cannabis-connaitre-3 .container > .row > div .content h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 130px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }
}
.line-cannabis-connaitre-3 .container > .row > div .content h3 em {
  display: block;
  position: absolute;
  font-style: normal;
  margin-left: auto;
  margin-right: auto;
  margin-top: -30px;
  margin-left: 235px;
}
@media (max-width: 1199px) {
  .line-cannabis-connaitre-3 .container > .row > div .content h3 em {
    margin-left: 205px;
  }
}
@media (max-width: 991px) {
  .line-cannabis-connaitre-3 .container > .row > div .content h3 em {
    margin-left: 175px;
    margin-top: -20px;
  }
}
.line-cannabis-connaitre-3 .container > .row > div .content h3 img {
  margin-bottom: 10px;
}

.line-cannabis-questions {
  padding-top: 85px;
  padding-bottom: 65px;
  background-color: #F9FEE3;
}
@media (max-width: 991px) {
  .line-cannabis-questions {
    padding-top: 80px;
  }
}
.line-cannabis-questions .container > .row > div .newsList {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767px) {
  .line-cannabis-questions .container > .row > div .newsList {
    gap: 50px;
  }
}
.line-cannabis-questions .container > .row > div .newsList > .row {
  margin-top: 0;
}
.line-cannabis-questions .container > .row > div .newsList > .row .item {
  display: flex;
  flex-direction: row;
  gap: 30px;
  opacity: 0.25;
  transition: all 0.5s ease-out;
}
@media (max-width: 991px) {
  .line-cannabis-questions .container > .row > div .newsList > .row .item {
    margin-left: 30px;
    margin-right: 60px;
    width: auto;
  }
}
@media (max-width: 767px) {
  .line-cannabis-questions .container > .row > div .newsList > .row .item {
    flex-direction: column;
    gap: 0;
    margin-right: 30px;
    opacity: 1 !important;
    transition: all 0.5s ease-out;
  }
}
.line-cannabis-questions .container > .row > div .newsList > .row .item.highlighted {
  opacity: 1;
  transition: all 0.5s ease-out;
}
.line-cannabis-questions .container > .row > div .newsList > .row .item .itemImage {
  width: 190px;
  min-width: 190px;
}
@media (max-width: 991px) {
  .line-cannabis-questions .container > .row > div .newsList > .row .item .itemImage {
    width: 160px;
    min-width: 160px;
  }
}
@media (max-width: 767px) {
  .line-cannabis-questions .container > .row > div .newsList > .row .item .itemImage {
    width: 70px;
    min-width: 70px;
  }
}
.line-cannabis-questions .container > .row > div .newsList > .row .item .itemImage img {
  width: 115px;
}
.line-cannabis-questions .container > .row > div .newsList > .row .item .intro {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .line-cannabis-questions .container > .row > div .newsList > .row .item .intro {
    margin-top: 8px;
  }
}
.line-cannabis-questions .container > .row > div .newsList > .row .item .intro h3 {
  font-size: 28px;
  line-height: 33px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-cannabis-questions .container > .row > div .newsList > .row .item .intro h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .line-cannabis-questions .container > .row > div .newsList > .row .item .intro h3 {
    font-size: 22px;
    line-height: 28px;
  }
}
.line-cannabis-questions .container > .row > div .newsList > .row .item .intro h3 strong {
  color: #00A552;
  font-weight: 900;
}
.line-cannabis-questions .container > .row > div .newsList > .row .item .intro h3 {
  margin-bottom: 35px;
}
.line-cannabis-questions .container > .row > div .newsList > .row .item .intro ul {
  padding-left: 80px !important;
  margin-top: 30px !important;
}
.line-cannabis-questions .container > .row > div .newsList > .row .item .intro ul li {
  font-size: 17px !important;
  line-height: 22px !important;
  margin-bottom: 25px !important;
}

.line-cannabis-produits-titre {
  padding-top: 220px !important;
  padding-bottom: 30px !important;
  background-color: #31755D;
  position: relative;
}
.line-cannabis-produits-titre:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Assets/Courbe.svg") no-repeat;
  background-position: top center;
  background-size: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 360/31;
  position: absolute;
  top: -2px;
}
@media (max-width: 991px) {
  .line-cannabis-produits-titre {
    padding-top: 180px !important;
    padding-bottom: 10px !important;
  }
}
.line-cannabis-produits-titre .container > .row > div .content h1, .line-cannabis-produits-titre .container > .row > div .content h2, .line-cannabis-produits-titre .container > .row > div .content h3, .line-cannabis-produits-titre .container > .row > div .content h4, .line-cannabis-produits-titre .container > .row > div .content h5, .line-cannabis-produits-titre .container > .row > div .content h6, .line-cannabis-produits-titre .container > .row > div .content p, .line-cannabis-produits-titre .container > .row > div .content a {
  color: #fff;
}
.line-cannabis-produits-titre .container > .row > div .content h2 {
  text-align: center;
  font-size: 28px;
  line-height: 33px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-cannabis-produits-titre .container > .row > div .content h2 {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .line-cannabis-produits-titre .container > .row > div .content h2 {
    font-size: 22px;
    line-height: 28px;
  }
}

.line-cannabis-produits {
  padding-top: 20px;
  padding-bottom: 110px;
  background-color: #31755D;
}
@media (max-width: 991px) {
  .line-cannabis-produits {
    padding-bottom: 75px;
  }
}
.line-cannabis-produits .container > .row > div .newsList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 60px;
}
@media (max-width: 991px) {
  .line-cannabis-produits .container > .row > div .newsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 90px 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
  }
}
@media (max-width: 767px) {
  .line-cannabis-produits .container > .row > div .newsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 90px 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 240px;
  }
}
.line-cannabis-produits .container > .row > div .newsList > .row {
  margin-top: 0;
}
.line-cannabis-produits .container > .row > div .newsList > .row .item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}
.line-cannabis-produits .container > .row > div .newsList > .row .item .itemImage {
  text-align: center;
}
.line-cannabis-produits .container > .row > div .newsList > .row .item .intro {
  text-align: center;
  height: 100%;
}
.line-cannabis-produits .container > .row > div .newsList > .row .item .intro h3 {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .line-cannabis-produits .container > .row > div .newsList > .row .item .intro h3 {
    font-size: 14px;
    line-height: 19px;
  }
}
.line-cannabis-produits .container > .row > div .newsList > .row .item .intro h3 {
  background-color: #2B5445;
  border-radius: 18px;
  color: #fff;
  margin-bottom: 6px;
  padding: 23px 20px 18px 20px;
}
.line-cannabis-produits .container > .row > div .newsList > .row .item .intro h3 strong {
  font-size: 11px;
  line-height: 22px;
  margin-top: -2px;
  display: block;
}
.line-cannabis-produits .container > .row > div .newsList > .row .item .intro h3 br {
  display: none;
}
@media (max-width: 1199px) {
  .line-cannabis-produits .container > .row > div .newsList > .row .item .intro h3 br {
    display: block;
  }
}
@media (max-width: 991px) {
  .line-cannabis-produits .container > .row > div .newsList > .row .item .intro h3 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .line-cannabis-produits .container > .row > div .newsList > .row .item .intro h3 br {
    display: block;
  }
}
.line-cannabis-produits .container > .row > div .newsList > .row .item .intro ul {
  background-color: #2D604E;
  border-radius: 18px;
  list-style: none;
  padding: 23px 20px 18px 20px;
  height: 90%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .line-cannabis-produits .container > .row > div .newsList > .row .item .intro ul {
    padding: 23px 50px 18px 50px !important;
  }
}
.line-cannabis-produits .container > .row > div .newsList > .row .item .intro ul li {
  font-size: 17px !important;
  line-height: 22px !important;
  margin-bottom: 25px !important;
  color: #fff !important;
}
@media (max-width: 1199px) {
  .line-cannabis-produits .container > .row > div .newsList > .row .item .intro ul li {
    font-size: 14px !important;
    line-height: 19px !important;
  }
}
.line-cannabis-produits .container > .row > div .newsList > .row .item .intro ul li:last-child {
  margin-bottom: 0 !important;
}

.line-cannabis-planifie {
  padding-top: 35px !important;
  padding-bottom: 95px !important;
  background-color: #31755D;
}
@media (max-width: 991px) {
  .line-cannabis-planifie {
    padding-bottom: 55px;
  }
}
.line-cannabis-planifie .container > .row > div .content {
  text-align: center;
}
.line-cannabis-planifie .container > .row > div .content h2 {
  color: #F1FFB9;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .line-cannabis-planifie .container > .row > div .content h2 {
    margin-bottom: 10px;
  }
}
.line-cannabis-planifie .container > .row > div .content h2 strong {
  color: #E4F522;
}
.line-cannabis-planifie .container > .row > div .content h2 img {
  margin-bottom: 10px;
}

.line-planifier-intro {
  padding-top: 12px !important;
  padding-bottom: 40px !important;
  background-color: #31755D;
}
.line-planifier-intro .container > .row > div .content h1, .line-planifier-intro .container > .row > div .content h2, .line-planifier-intro .container > .row > div .content h3, .line-planifier-intro .container > .row > div .content h4, .line-planifier-intro .container > .row > div .content h5, .line-planifier-intro .container > .row > div .content h6, .line-planifier-intro .container > .row > div .content p, .line-planifier-intro .container > .row > div .content a {
  color: #fff;
}
.line-planifier-intro .container > .row > div .content {
  max-width: 960px;
}
.line-planifier-intro .container > .row > div .content h2 {
  font-size: 35px;
  line-height: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-planifier-intro .container > .row > div .content h2 {
    font-size: 28px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  .line-planifier-intro .container > .row > div .content h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

.line-planifier-enumeration {
  padding-top: 62px !important;
  padding-bottom: 120px !important;
  background-color: #31755D;
}
@media (max-width: 767px) {
  .line-planifier-enumeration {
    padding-top: 8px !important;
    padding-bottom: 70px !important;
  }
}
.line-planifier-enumeration .container > .row > div .newsList {
  display: flex;
  flex-direction: column;
  gap: 75px;
}
@media (max-width: 991px) {
  .line-planifier-enumeration .container > .row > div .newsList {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .line-planifier-enumeration .container > .row > div .newsList {
    gap: 50px;
  }
}
.line-planifier-enumeration .container > .row > div .newsList > .row {
  margin-top: 0;
}
.line-planifier-enumeration .container > .row > div .newsList > .row .item {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 767px) {
  .line-planifier-enumeration .container > .row > div .newsList > .row .item {
    flex-direction: column;
    gap: 0;
  }
}
.line-planifier-enumeration .container > .row > div .newsList > .row .item .itemImage {
  min-width: 270px;
}
@media (max-width: 1199px) {
  .line-planifier-enumeration .container > .row > div .newsList > .row .item .itemImage {
    min-width: 220px;
  }
}
@media (max-width: 991px) {
  .line-planifier-enumeration .container > .row > div .newsList > .row .item .itemImage {
    min-width: 150px;
  }
}
@media (max-width: 767px) {
  .line-planifier-enumeration .container > .row > div .newsList > .row .item .itemImage {
    min-width: 120px;
  }
}
.line-planifier-enumeration .container > .row > div .newsList > .row .item .itemImage img {
  width: 360px;
}
@media (max-width: 991px) {
  .line-planifier-enumeration .container > .row > div .newsList > .row .item .itemImage img {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .line-planifier-enumeration .container > .row > div .newsList > .row .item .itemImage img {
    width: 120px;
  }
}
.line-planifier-enumeration .container > .row > div .newsList > .row .item .intro {
  margin-top: 40px;
}
.line-planifier-enumeration .container > .row > div .newsList > .row .item .intro h1, .line-planifier-enumeration .container > .row > div .newsList > .row .item .intro h2, .line-planifier-enumeration .container > .row > div .newsList > .row .item .intro h3, .line-planifier-enumeration .container > .row > div .newsList > .row .item .intro h4, .line-planifier-enumeration .container > .row > div .newsList > .row .item .intro h5, .line-planifier-enumeration .container > .row > div .newsList > .row .item .intro h6, .line-planifier-enumeration .container > .row > div .newsList > .row .item .intro p, .line-planifier-enumeration .container > .row > div .newsList > .row .item .intro a {
  color: #fff;
}
.line-planifier-enumeration .container > .row > div .newsList > .row .item .intro {
  display: grid;
  grid-template-columns: 35% 65%;
  grid-template-rows: 0 auto;
  grid-template-areas: "a b" "a c" "a d" "a e" "a f";
}
@media (max-width: 1199px) {
  .line-planifier-enumeration .container > .row > div .newsList > .row .item .intro {
    grid-template-columns: 35% auto;
    gap: 0 35px;
  }
}
@media (max-width: 991px) {
  .line-planifier-enumeration .container > .row > div .newsList > .row .item .intro {
    margin-top: 10px;
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 0;
    grid-template-areas: "a" "bc" "c" "d" "e" "f";
  }
}
.line-planifier-enumeration .container > .row > div .newsList > .row .item .intro h2 {
  grid-area: a;
  font-size: 53px;
  line-height: 55px;
  font-family: "Merriweather", serif;
  font-weight: 900;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-planifier-enumeration .container > .row > div .newsList > .row .item .intro h2 {
    font-size: 40px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .line-planifier-enumeration .container > .row > div .newsList > .row .item .intro h2 {
    font-size: 35px;
    line-height: 37px;
  }
}
.line-planifier-enumeration .container > .row > div .newsList > .row .item .intro h2 strong {
  color: #00A552;
  font-weight: 900;
}
@media (max-width: 991px) {
  .line-planifier-enumeration .container > .row > div .newsList > .row .item .intro h2 {
    margin-bottom: 15px;
  }
  .line-planifier-enumeration .container > .row > div .newsList > .row .item .intro h2 br {
    display: none;
  }
}
.line-planifier-enumeration .container > .row > div .newsList > .row .item .intro p:nth-child(1) {
  grid-area: b;
}
.line-planifier-enumeration .container > .row > div .newsList > .row .item .intro p:nth-child(2) {
  grid-area: c;
}
.line-planifier-enumeration .container > .row > div .newsList > .row .item .intro p:nth-child(3) {
  grid-area: d;
}
.line-planifier-enumeration .container > .row > div .newsList > .row .item .intro p:nth-child(4) {
  grid-area: e;
}
.line-planifier-enumeration .container > .row > div .newsList > .row .item .intro p:nth-child(5) {
  grid-area: f;
}
.line-planifier-enumeration .container > .row > div .newsList > .row:nth-child(even) .item {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .line-planifier-enumeration .container > .row > div .newsList > .row:nth-child(even) .item {
    flex-direction: column;
    gap: 0;
  }
}

.line-planifier-raccompagnement-intro {
  padding-top: 130px !important;
  padding-bottom: 35px !important;
  position: relative;
}
@media (max-width: 991px) {
  .line-planifier-raccompagnement-intro {
    padding-top: 95px !important;
    padding-bottom: 45px !important;
  }
}
@media (max-width: 767px) {
  .line-planifier-raccompagnement-intro {
    padding-top: 90px !important;
    padding-bottom: 60px !important;
  }
}
.line-planifier-raccompagnement-intro .container > .row > div .content h2 strong {
  color: #00A552;
  font-weight: 900;
}
@media (max-width: 767px) {
  .line-planifier-raccompagnement-intro .container > .row > div .content h2 {
    font-size: 35px;
    line-height: 37px;
  }
}
.line-planifier-raccompagnement-intro .container > .row > div .content h3 {
  font-size: 35px;
  line-height: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-planifier-raccompagnement-intro .container > .row > div .content h3 {
    font-size: 28px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  .line-planifier-raccompagnement-intro .container > .row > div .content h3 {
    font-size: 25px;
    line-height: 30px;
  }
}

.line-planifier-raccompagnement {
  padding-top: 0 !important;
  padding-bottom: 80px !important;
  position: relative;
}
.line-planifier-raccompagnement .container > .row > div .newsList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 35px 75px;
}
@media (max-width: 1199px) {
  .line-planifier-raccompagnement .container > .row > div .newsList {
    gap: 35px 55px;
  }
}
@media (max-width: 767px) {
  .line-planifier-raccompagnement .container > .row > div .newsList {
    gap: 25px 55px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-planifier-raccompagnement .container > .row > div .newsList > .row {
  margin-top: 0;
  width: 31.5%;
}
@media (max-width: 767px) {
  .line-planifier-raccompagnement .container > .row > div .newsList > .row {
    width: 50%;
  }
}
.line-planifier-raccompagnement .container > .row > div .newsList > .row .item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.line-planifier-raccompagnement .container > .row > div .newsList > .row .item .itemImage {
  min-width: 156px;
  text-align: center;
}
.line-planifier-raccompagnement .container > .row > div .newsList > .row .item .itemImage img {
  width: 156px;
}
@media (max-width: 991px) {
  .line-planifier-raccompagnement .container > .row > div .newsList > .row .item .itemImage img {
    width: 132px;
  }
}
.line-planifier-raccompagnement .container > .row > div .newsList > .row .item .intro {
  text-align: center;
}
.line-planifier-raccompagnement .container > .row > div .newsList > .row .item .intro h3 {
  font-size: 28px;
  line-height: 33px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-planifier-raccompagnement .container > .row > div .newsList > .row .item .intro h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .line-planifier-raccompagnement .container > .row > div .newsList > .row .item .intro h3 {
    font-size: 22px;
    line-height: 28px;
  }
}

.line-planifier-teste-intro {
  padding-top: 235px;
  padding-bottom: 40px;
  background-color: #31755D;
  position: relative;
}
.line-planifier-teste-intro:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Assets/Courbe.svg") no-repeat;
  background-position: top center;
  background-size: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 360/31;
  position: absolute;
  top: -2px;
}
@media (max-width: 991px) {
  .line-planifier-teste-intro {
    padding-top: 175px;
  }
}
@media (max-width: 767px) {
  .line-planifier-teste-intro {
    padding-top: 130px;
  }
}
.line-planifier-teste-intro .container > .row > div .content h1, .line-planifier-teste-intro .container > .row > div .content h2, .line-planifier-teste-intro .container > .row > div .content h3, .line-planifier-teste-intro .container > .row > div .content h4, .line-planifier-teste-intro .container > .row > div .content h5, .line-planifier-teste-intro .container > .row > div .content h6, .line-planifier-teste-intro .container > .row > div .content p, .line-planifier-teste-intro .container > .row > div .content a {
  color: #fff;
}
@media (max-width: 991px) {
  .line-planifier-teste-intro .container > .row > div .content {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-planifier-teste-intro .container > .row > div .content h2 {
  color: #F1FFB9;
}
.line-planifier-teste-intro .container > .row > div .content h2 strong {
  color: #00A552;
  font-weight: 900;
}
.line-planifier-teste-intro .container > .row > div .content h3 {
  font-size: 35px;
  line-height: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-planifier-teste-intro .container > .row > div .content h3 {
    font-size: 28px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  .line-planifier-teste-intro .container > .row > div .content h3 {
    font-size: 25px;
    line-height: 30px;
  }
}

.line-planifier-teste {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #31755D;
}
@media (max-width: 991px) {
  .line-planifier-teste {
    padding-top: 25px;
  }
}
.line-planifier-teste .container > .row > div .content ol {
  padding-left: 280px;
  list-style: none;
}
@media (max-width: 991px) {
  .line-planifier-teste .container > .row > div .content ol {
    padding-left: 130px;
  }
}
@media (max-width: 767px) {
  .line-planifier-teste .container > .row > div .content ol {
    padding-left: 50px;
  }
}
.line-planifier-teste .container > .row > div .content ol li {
  font-size: 35px;
  line-height: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-planifier-teste .container > .row > div .content ol li {
    font-size: 28px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  .line-planifier-teste .container > .row > div .content ol li {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-planifier-teste .container > .row > div .content ol li {
  color: #fff;
  margin-bottom: 50px;
  counter-increment: count-steps;
}
.line-planifier-teste .container > .row > div .content ol li:before {
  content: counter(count-steps) ".";
  text-align: left;
  font-size: 53px;
  line-height: 55px;
  font-family: "Merriweather", serif;
  font-weight: 900;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-planifier-teste .container > .row > div .content ol li:before {
    font-size: 40px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .line-planifier-teste .container > .row > div .content ol li:before {
    font-size: 35px;
    line-height: 37px;
  }
}
.line-planifier-teste .container > .row > div .content ol li:before {
  color: #E4F522;
  position: absolute;
  margin-left: -280px;
  margin-top: -5px;
}
@media (max-width: 991px) {
  .line-planifier-teste .container > .row > div .content ol li:before {
    margin-left: -130px;
  }
}
@media (max-width: 767px) {
  .line-planifier-teste .container > .row > div .content ol li:before {
    margin-left: -50px;
  }
}

.line-planifier-resultat {
  padding-top: 30px;
  padding-bottom: 110px;
  background-color: #31755D;
}
@media (max-width: 991px) {
  .line-planifier-resultat {
    padding-top: 15px;
  }
}
@media (max-width: 767px) {
  .line-planifier-resultat {
    padding-top: 35px;
  }
}
.line-planifier-resultat .container > .row > div .content {
  background-color: #2B5A49;
  border-radius: 27px;
}
.line-planifier-resultat .container > .row > div .content h1, .line-planifier-resultat .container > .row > div .content h2, .line-planifier-resultat .container > .row > div .content h3, .line-planifier-resultat .container > .row > div .content h4, .line-planifier-resultat .container > .row > div .content h5, .line-planifier-resultat .container > .row > div .content h6, .line-planifier-resultat .container > .row > div .content p, .line-planifier-resultat .container > .row > div .content a {
  color: #fff;
}
.line-planifier-resultat .container > .row > div .content {
  padding: 70px 120px 30px 120px;
  margin-left: 40px;
  margin-right: 0;
}
@media (max-width: 991px) {
  .line-planifier-resultat .container > .row > div .content {
    padding: 70px 70px 10px 80px;
  }
}
@media (max-width: 767px) {
  .line-planifier-resultat .container > .row > div .content {
    padding: 70px 20px 10px 20px;
    margin-left: 0;
    margin-right: 0;
  }
}
.line-planifier-resultat .container > .row > div .content:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Planifier/Resultats.svg") no-repeat;
  width: 82px;
  height: 82px;
  display: block;
  position: absolute;
  left: 15px;
  top: 40px;
}
@media (max-width: 767px) {
  .line-planifier-resultat .container > .row > div .content:after {
    left: 30px;
    top: -40px;
  }
}
.line-planifier-resultat .container > .row > div .content p {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .line-planifier-resultat .container > .row > div .content p {
    font-size: 14px;
    line-height: 19px;
  }
}
.line-planifier-resultat .container > .row > div .content p {
  color: #fff;
}
.line-planifier-resultat .container > .row > div .content p br {
  display: block !important;
}
.line-planifier-resultat .container > .row > div .content p u {
  text-decoration: none;
  color: #E4F522;
}
.line-planifier-resultat .container > .row > div .content p a {
  color: #E4F522 !important;
}
.line-planifier-resultat .container > .row > div .content p a:hover {
  color: #E4F522 !important;
}
.line-planifier-resultat .container > .row > div .content p em {
  font-size: 11px;
}

.line-outiller-bt-menu {
  padding-top: 45px !important;
  padding-bottom: 30px !important;
}

.line-outiller-titre {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.line-outiller-titre .container > .row > div .content h2 {
  font-size: 40px;
  line-height: 50px;
  font-family: "Merriweather", serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-outiller-titre .container > .row > div .content h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.line-outiller-videos {
  padding-top: 0 !important;
  padding-bottom: 40px !important;
}
.line-outiller-videos .container {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
@media (max-width: 767px) {
  .line-outiller-videos .container {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
}
.line-outiller-videos .container {
  /*
  @include min-custom(1352px) {
      width: 1322px;
  }
  @include max-custom(1351px) {
      width: 100%;
      padding: 0 30px;
  }
  */
}
.line-outiller-videos .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 120px;
}
@media (max-width: 991px) {
  .line-outiller-videos .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 60px;
  }
}
@media (max-width: 767px) {
  .line-outiller-videos .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 80px;
  }
}
@media (max-width: 575px) {
  .line-outiller-videos .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px 40px;
  }
}
.line-outiller-videos .container > .row > div .content > .row {
  margin-top: 0;
  padding-bottom: 40px;
}
.line-outiller-videos .container > .row > div .content > .row .item {
  padding: 0 !important;
  margin: 0 !important;
}
.line-outiller-videos .container > .row > div .content > .row .item img:hover {
  /*filter: brightness(10.5);*/
  transform: scale(1.03);
  cursor: pointer;
}
.line-outiller-videos .container > .row > div .content > .row .item p:nth-child(2):after {
  background-color: #31755D;
}
.line-outiller-videos .container > .row > div .content > .row .item .intro {
  margin-bottom: 0;
}
.line-outiller-videos .container > .row > div .content > .row .item .intro p:nth-child(1) {
  margin-bottom: 10px;
}
.line-outiller-videos .container > .row > div .content > .row .item .intro h3 {
  margin-top: 28px;
  position: relative;
  font-size: 18px;
  line-height: 22px;
  font-family: "Poppins", sans-serif;
}
.line-outiller-videos .container > .row > div .content > .row .item .intro div {
  display: none;
}

.line-outiller-ressources {
  padding-top: 20px !important;
  padding-bottom: 60px !important;
}
.line-outiller-ressources .container > .row > div > h2 {
  font-size: 40px;
  line-height: 50px;
  font-family: "Merriweather", serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-outiller-ressources .container > .row > div > h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
.line-outiller-ressources .container > .row > div form {
  padding-top: 25px;
  padding-bottom: 130px;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .line-outiller-ressources .container > .row > div form {
    padding-bottom: 90px;
  }
}
.line-outiller-ressources .container > .row > div form .chosen-container {
  width: fit-content;
  min-width: 260px;
}
.line-outiller-ressources .container > .row > div form .chosen-container .chosen-choices {
  align-items: flex-start;
  background-image: none !important;
}
.line-outiller-ressources .container > .row > div form .chosen-container .chosen-choices .search-choice {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
  margin-right: 0 !important;
  gap: 5px;
}
.line-outiller-ressources .container > .row > div form .chosen-container .chosen-choices .search-choice .search-choice-close {
  width: 15px;
}
.line-outiller-ressources .container > .row > div .news-mosaic {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 767px) {
  .line-outiller-ressources .container > .row > div .news-mosaic {
    gap: 50px;
  }
}
.line-outiller-ressources .container > .row > div .news-mosaic > .row {
  margin-top: 0;
  position: relative;
}
.line-outiller-ressources .container > .row > div .news-mosaic > .row:before {
  content: "";
  background-color: #a7a7a7;
  width: calc(100% - 30px);
  height: 1px;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: -25px;
}
.line-outiller-ressources .container > .row > div .news-mosaic > .row > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .line-outiller-ressources .container > .row > div .news-mosaic > .row > div {
    flex-direction: column;
    gap: 0;
  }
}
.line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-title {
  width: 30%;
  font-size: 17px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  color: #31755D !important;
}
@media (max-width: 767px) {
  .line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-title {
    width: 100% !important;
    margin-bottom: 6px !important;
  }
}
.line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-title a {
  font-size: 17px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  color: #31755D !important;
}
.line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-tags-container {
  width: 30%;
  display: block !important;
  margin-bottom: 0 !important;
}
@media (max-width: 1199px) {
  .line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-tags-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 991px) {
  .line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-tags-container {
    width: 28%;
  }
}
@media (max-width: 767px) {
  .line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-tags-container {
    width: 100% !important;
    padding-bottom: 0 !important;
  }
}
.line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-tags-container a {
  padding: 0 !important;
  background-color: transparent !important;
  display: block !important;
  text-align: left !important;
  border: none !important;
}
@media (max-width: 767px) {
  .line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-tags-container a {
    min-height: 0 !important;
  }
}
.line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-intro {
  width: 30%;
  padding-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 1199px) {
  .line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-intro {
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-intro {
    width: 100% !important;
  }
}
.line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-intro p {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-intro p {
    font-size: 14px;
    line-height: 19px;
  }
}
.line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-intro p {
  margin-bottom: 0;
  display: block !important;
}
.line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-intro p a {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-intro p a {
    font-size: 14px;
    line-height: 19px;
  }
}
.line-outiller-ressources .container > .row > div .news-mosaic > .row > div .news-intro p a {
  color: #31755D !important;
  text-decoration: underline !important;
}
.line-outiller-ressources .form-element-keywords > div {
  width: max-content !important;
}

.line-outiller-cta {
  padding-top: 235px !important;
  padding-bottom: 95px !important;
  background-color: #31755D;
  position: relative;
}
.line-outiller-cta:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Assets/Courbe.svg") no-repeat;
  background-position: top center;
  background-size: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 360/31;
  position: absolute;
  top: -2px;
}
@media (max-width: 991px) {
  .line-outiller-cta {
    padding-top: 170px !important;
  }
}
@media (max-width: 767px) {
  .line-outiller-cta {
    padding-top: 130px !important;
    padding-bottom: 75px !important;
  }
}
.line-outiller-cta .container > .row > div .content {
  text-align: center;
}
.line-outiller-cta .container > .row > div .content h2 {
  color: #F1FFB9;
  margin-bottom: 35px;
}
.line-outiller-cta .container > .row > div .content h2 strong {
  color: #E4F522;
}
.line-outiller-cta .container > .row > div .content h2 img {
  margin-bottom: 10px;
}

.line-propos-intro {
  padding-top: 12px !important;
  padding-bottom: 40px !important;
  background-color: #31755D;
}
@media (max-width: 767px) {
  .line-propos-intro {
    padding-bottom: 10px !important;
  }
}
.line-propos-intro .container > .row > div:nth-child(1) {
  width: 66%;
}
@media (max-width: 991px) {
  .line-propos-intro .container > .row > div:nth-child(1) {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .line-propos-intro .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-propos-intro .container > .row > div:nth-child(1) .content h1, .line-propos-intro .container > .row > div:nth-child(1) .content h2, .line-propos-intro .container > .row > div:nth-child(1) .content h3, .line-propos-intro .container > .row > div:nth-child(1) .content h4, .line-propos-intro .container > .row > div:nth-child(1) .content h5, .line-propos-intro .container > .row > div:nth-child(1) .content h6, .line-propos-intro .container > .row > div:nth-child(1) .content p, .line-propos-intro .container > .row > div:nth-child(1) .content a {
  color: #fff;
}
.line-propos-intro .container > .row > div:nth-child(1) .content h2 {
  margin-bottom: 35px;
}
.line-propos-intro .container > .row > div:nth-child(1) .content p a, .line-propos-intro .container > .row > div:nth-child(1) .content h6 a {
  text-decoration: underline;
  color: #00A552 !important;
}
.line-propos-intro .container > .row > div:nth-child(1) .content p a:hover, .line-propos-intro .container > .row > div:nth-child(1) .content h6 a:hover {
  text-decoration: none !important;
  color: #00A552 !important;
}
.line-propos-intro .container > .row > div:nth-child(2) {
  width: 34%;
}
@media (max-width: 991px) {
  .line-propos-intro .container > .row > div:nth-child(2) {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .line-propos-intro .container > .row > div:nth-child(2) {
    width: 100%;
    display: none;
  }
}
.line-propos-intro .container > .row > div:nth-child(2) .content {
  text-align: right;
}
.line-propos-intro .container > .row > div:nth-child(2) .content img {
  width: 748px;
  height: 570px;
}
@media (max-width: 991px) {
  .line-propos-intro .container > .row > div:nth-child(2) .content img {
    width: 130px !important;
  }
}

.line-propos-content {
  padding-top: 0 !important;
  padding-bottom: 105px !important;
  background-color: #31755D;
}
@media (max-width: 991px) {
  .line-propos-content {
    padding-bottom: 90px !important;
  }
}
@media (max-width: 767px) {
  .line-propos-content {
    padding-bottom: 75px !important;
  }
}
.line-propos-content .container > .row > div:nth-child(1) {
  width: 33%;
}
@media (max-width: 991px) {
  .line-propos-content .container > .row > div:nth-child(1) {
    width: 23%;
  }
}
@media (max-width: 767px) {
  .line-propos-content .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-propos-content .container > .row > div:nth-child(2) {
  width: 67%;
}
@media (max-width: 991px) {
  .line-propos-content .container > .row > div:nth-child(2) {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .line-propos-content .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-propos-content .container > .row > div:nth-child(2) .content h1, .line-propos-content .container > .row > div:nth-child(2) .content h2, .line-propos-content .container > .row > div:nth-child(2) .content h3, .line-propos-content .container > .row > div:nth-child(2) .content h4, .line-propos-content .container > .row > div:nth-child(2) .content h5, .line-propos-content .container > .row > div:nth-child(2) .content h6, .line-propos-content .container > .row > div:nth-child(2) .content p, .line-propos-content .container > .row > div:nth-child(2) .content a {
  color: #fff;
}

.line-propos-lucide-title {
  padding-top: 120px !important;
  padding-bottom: 50px !important;
  background-color: #F9FEE3;
}
@media (max-width: 991px) {
  .line-propos-lucide-title {
    padding-top: 80px !important;
  }
}
.line-propos-lucide-title .container > .row > div .content {
  text-align: center;
}
.line-propos-lucide-title .container > .row > div .content h2 {
  font-size: 86px;
  line-height: 88px;
  font-family: "Merriweather", serif;
  font-weight: 900;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-propos-lucide-title .container > .row > div .content h2 {
    font-size: 70px;
    line-height: 72px;
  }
}
@media (max-width: 767px) {
  .line-propos-lucide-title .container > .row > div .content h2 {
    font-size: 43px;
    line-height: 44px;
  }
}
.line-propos-lucide-title .container > .row > div .content h2 {
  margin-bottom: 10px;
}
.line-propos-lucide-title .container > .row > div .content h3 {
  font-size: 40px;
  line-height: 50px;
  font-family: "Merriweather", serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-propos-lucide-title .container > .row > div .content h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
.line-propos-lucide-title .container > .row > div .content h3 {
  color: #00A552;
}

.line-propos-lucide {
  padding-top: 20px !important;
  padding-bottom: 0 !important;
  background-color: #F9FEE3;
}
@media (max-width: 991px) {
  .line-propos-lucide {
    padding-bottom: 50px !important;
  }
}
@media (max-width: 767px) {
  .line-propos-lucide {
    padding-bottom: 40px !important;
  }
}
.line-propos-lucide .container {
  /*
  padding-left: 30px;
  padding-right: 30px;
  @include max-sm {
      padding-left: 45px;
      padding-right: 45px;
  }
  */
}
.line-propos-lucide .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 120px;
}
@media (max-width: 991px) {
  .line-propos-lucide .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 60px;
  }
}
@media (max-width: 767px) {
  .line-propos-lucide .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px 40px;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 575px) {
  .line-propos-lucide .container > .row > div .content {
    margin-left: 0;
    margin-right: 0;
  }
}
.line-propos-lucide .container > .row > div .content > .row {
  margin-top: 0;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .line-propos-lucide .container > .row > div .content > .row {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .line-propos-lucide .container > .row > div .content > .row:nth-child(3n) .item .itemImage:after {
    display: none;
  }
}
@media (max-width: 767px) {
  .line-propos-lucide .container > .row > div .content > .row:nth-child(6) .item .itemImage:after {
    display: none;
  }
}
@media (max-width: 767px) {
  .line-propos-lucide .container > .row > div .content > .row .item {
    display: grid;
    grid-template-columns: 134px auto;
    grid-template-rows: auto 100%;
    grid-template-areas: "a b" "a c";
  }
}
.line-propos-lucide .container > .row > div .content > .row .item .itemImage {
  text-align: center;
}
@media (max-width: 767px) {
  .line-propos-lucide .container > .row > div .content > .row .item .itemImage {
    grid-area: a;
    text-align: left;
  }
}
.line-propos-lucide .container > .row > div .content > .row .item .itemImage:after {
  content: "";
  width: 66%;
  height: 4px;
  background-color: #00A552;
  display: block;
  position: absolute;
  top: 65px;
  right: -149px;
}
@media (max-width: 1199px) {
  .line-propos-lucide .container > .row > div .content > .row .item .itemImage:after {
    right: -129px;
  }
}
@media (max-width: 991px) {
  .line-propos-lucide .container > .row > div .content > .row .item .itemImage:after {
    width: 46%;
    right: -70px;
  }
}
@media (max-width: 767px) {
  .line-propos-lucide .container > .row > div .content > .row .item .itemImage:after {
    width: 4px;
    height: 38px;
    top: 120px;
    left: 53px;
    right: auto;
  }
}
.line-propos-lucide .container > .row > div .content > .row .item .itemImage img {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .line-propos-lucide .container > .row > div .content > .row .item .itemImage img {
    width: 110px;
  }
}
.line-propos-lucide .container > .row > div .content > .row .item h3 {
  font-size: 28px;
  line-height: 33px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-propos-lucide .container > .row > div .content > .row .item h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .line-propos-lucide .container > .row > div .content > .row .item h3 {
    font-size: 22px;
    line-height: 28px;
  }
}
.line-propos-lucide .container > .row > div .content > .row .item h3 {
  text-align: center;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .line-propos-lucide .container > .row > div .content > .row .item h3 {
    grid-area: b;
    text-align: left;
  }
}
.line-propos-lucide .container > .row > div .content > .row .item .intro {
  text-align: center;
}
@media (max-width: 767px) {
  .line-propos-lucide .container > .row > div .content > .row .item .intro {
    grid-area: c;
    text-align: left;
  }
}
.line-propos-lucide .container > .row > div .content > .row .item .intro p {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .line-propos-lucide .container > .row > div .content > .row .item .intro p {
    font-size: 14px;
    line-height: 19px;
  }
}

.page-sondage {
  background-color: #31755D;
}
.page-sondage .poweredBy-wrapper {
  display: none;
}

.line-sondage {
  padding-top: 190px !important;
  padding-bottom: 100px !important;
  background-color: #31755D;
}
@media (max-width: 991px) {
  .line-sondage {
    padding-top: 150px !important;
  }
}
@media (max-width: 767px) {
  .line-sondage {
    padding-top: 140px !important;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper .crm-form-steps {
  text-align: right;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper .crm-form-steps .crm-form-steps-label {
  color: #E4F522;
  font-size: 11px;
  line-height: 21px;
  letter-spacing: 5.17px;
  font-weight: 500;
  opacity: 0;
  animation: opacityFadeIn 1s ease-in-out 0.5s forwards;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper .crm-form-steps .crm-form-steps-label:before {
  content: "";
  width: calc(100% - 220px);
  height: 1px;
  background-color: #E4F522;
  display: block;
  position: absolute;
  top: 12px;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description {
  display: none;
  opacity: 0;
  order: 2;
  background-color: #2B5A49;
  margin-top: 50px;
  padding: 45px 80px 40px 110px;
  border-radius: 27px;
  position: relative;
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 991px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description {
    padding: 25px 70px 10px 80px;
  }
}
@media (max-width: 767px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description {
    padding: 70px 30px 10px 30px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 70px;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description h3 {
  font-size: 28px;
  line-height: 33px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description h3 {
    font-size: 22px;
    line-height: 28px;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description h3 {
  color: #E4F522;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description.showing {
  display: block;
  opacity: 1;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description:before {
  content: "";
  width: 98px;
  height: 98px;
  display: block;
  position: absolute;
  left: -48px;
  top: 40px;
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Planifier/Tips.svg") no-repeat;
  background-position: center center;
  background-size: 98px 98px;
}
@media (max-width: 991px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description:before {
    width: 82px;
    height: 82px;
    top: 20px;
    border-radius: 100px;
  }
}
@media (max-width: 767px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description:before {
    left: 30px;
    top: -40px;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description p {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description p {
    font-size: 14px;
    line-height: 19px;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section .section-description p {
  color: #fff;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row {
  order: 1;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group {
  margin-bottom: 15px !important;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group > label {
  font-size: 35px;
  line-height: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group > label {
    font-size: 28px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group > label {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group > label {
  color: #fff;
  margin-bottom: 35px !important;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio {
  /*
  display: flex;
  flex-direction: row;
  */
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio > div {
  float: left;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio > div label {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio > div label:hover, .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio > div label:active, .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio > div label:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio > div label {
    white-space: normal !important;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio > div label {
  background-color: transparent;
  color: #fff;
  transition: all 150ms;
  border: 2px solid #E4F522;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio > div label:hover, .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio > div label:active, .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio > div label:focus {
  background-color: transparent;
  border: 2px solid #00A552;
  color: #fff;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio > div label.active {
  background-color: #E4F522;
  border: 2px solid #E4F522;
  color: #31755D;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio > div label.answer {
  background-color: #00A552;
  border: 2px solid #00A552;
  color: #fff;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .input-radio > div label input {
  display: none;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .checkbox label {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .checkbox label {
    font-size: 14px;
    line-height: 19px;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .checkbox label {
  color: #fff;
  padding-left: 35px;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .checkbox input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: #31755D;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: #E4F522;
  width: 25px;
  height: 25px;
  border: 3px solid #E4F522;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .checkbox input[type=checkbox]::before {
  content: "";
  width: 18px;
  height: 18px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(#00A552);
  /* Windows High Contrast Mode */
  background-color: #1c6047;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .checkbox input[type=checkbox]:checked::before {
  transform: scale(1);
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .checkbox input[type=checkbox]:focus {
  outline: max(2px, 0.15em) solid #E4F522;
  outline-offset: max(2px, 0.15em);
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .section > .row > div .form-group .checkbox input[type=checkbox]:disabled {
  color: #F1FFB9;
  color: #F1FFB9;
  cursor: not-allowed;
}
@media (max-width: 575px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame {
    display: flex;
    flex-direction: column-reverse;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame button {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame button:hover, .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame button:active, .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame button:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame button {
    white-space: normal !important;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame button {
  background-color: transparent;
  color: #E4F522;
  transition: all 150ms;
  border: 3px solid #E4F522;
  box-shadow: -6px 9px 0 #E4F522 !important;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame button:hover, .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame button:active, .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame button:focus {
  background-color: transparent;
  border: 3px solid #F1FFB9;
  color: #F1FFB9;
  box-shadow: -6px 9px 0 #F1FFB9 !important;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame a {
  margin-right: 20px !important;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame a.previous-button {
  font-family: "Poppins", sans-serif;
  text-transform: inherit;
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  height: auto;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  margin-top: 25px;
  border: none;
  min-width: 0;
  width: max-content !important;
  border-radius: 50px;
  text-decoration: none;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame a.previous-button:hover, .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame a.previous-button:active, .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame a.previous-button:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame a.previous-button {
    white-space: normal !important;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame a.previous-button {
  background-color: transparent;
  color: #F1FFB9;
  transition: all 150ms;
  border: 3px solid #F1FFB9;
  box-shadow: -6px 9px 0 #F1FFB9 !important;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame a.previous-button:hover, .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame a.previous-button:active, .line-sondage .container > .row > div #formbuilder-add-wrapper #form-formbuilder .crm-footer-frame a.previous-button:focus {
  background-color: transparent;
  border: 3px solid #E4F522;
  color: #E4F522;
  box-shadow: -6px 9px 0 #E4F522 !important;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper .formbuilder-confirmation-content {
  background-color: #2B5A49;
  margin-top: 50px;
  padding: 45px 80px 60px 110px;
  border-radius: 27px;
  position: relative;
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 991px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper .formbuilder-confirmation-content {
    padding: 25px 70px 50px 80px;
  }
}
@media (max-width: 767px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper .formbuilder-confirmation-content {
    padding: 70px 30px 20px 30px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 70px;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper .formbuilder-confirmation-content h6 {
  color: #E4F522;
}
.line-sondage .container > .row > div #formbuilder-add-wrapper .formbuilder-confirmation-content:before {
  content: "";
  width: 98px;
  height: 98px;
  display: block;
  position: absolute;
  left: -48px;
  top: 40px;
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Planifier/Tips.svg") no-repeat;
  background-position: center center;
  background-size: 98px 98px;
}
@media (max-width: 991px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper .formbuilder-confirmation-content:before {
    width: 82px;
    height: 82px;
    top: 20px;
    border-radius: 100px;
  }
}
@media (max-width: 767px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper .formbuilder-confirmation-content:before {
    left: 30px;
    top: -40px;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper .formbuilder-confirmation-content p {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .line-sondage .container > .row > div #formbuilder-add-wrapper .formbuilder-confirmation-content p {
    font-size: 14px;
    line-height: 19px;
  }
}
.line-sondage .container > .row > div #formbuilder-add-wrapper .formbuilder-confirmation-content p {
  color: #fff;
}

.line-contact-form {
  padding-top: 20px !important;
  padding-bottom: 80px !important;
  background-color: #F9FEE3;
}
@media (max-width: 991px) {
  .line-contact-form {
    padding-bottom: 50px !important;
  }
}
@media (max-width: 767px) {
  .line-contact-form {
    padding-bottom: 40px !important;
  }
}
.line-contact-form .container > .row form .btn-primary {
  background-color: transparent !important;
  color: #31755D !important;
  transition: all 150ms !important;
  border: 3px solid #31755D !important;
  box-shadow: -6px 9px 0 #31755D !important;
}
.line-contact-form .container > .row form .btn-primary:hover, .line-contact-form .container > .row form .btn-primary:active, .line-contact-form .container > .row form .btn-primary:focus {
  background-color: transparent !important;
  border: 3px solid #E4F522 !important;
  color: #E4F522 !important;
  box-shadow: -6px 9px 0 #E4F522 !important;
}

.line-politique-confidentialite {
  padding-top: 80px !important;
  padding-bottom: 50px !important;
}
.line-politique-confidentialite .container .content {
  max-width: 780px;
}
.line-politique-confidentialite .container .content h4 {
  margin-top: 40px;
}

.line-404 {
  padding-top: 246px !important;
  padding-bottom: 55px !important;
  background-color: #31755D;
  position: relative;
}
.line-404:before {
  content: "";
  display: block;
  position: absolute;
  width: 564px;
  height: 549px;
  left: 20px;
  right: 0;
  margin-top: -85px;
  margin-left: auto;
  margin-right: auto;
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Assets/404.svg") no-repeat;
  background-size: 100%;
  /*background-size: 564px 549px;*/
  background-position: center center;
}
@media (max-width: 767px) {
  .line-404:before {
    background-size: 100%;
    width: 380px;
    height: 400px;
  }
}
@media (max-width: 575px) {
  .line-404:before {
    background-size: 100%;
    width: 300px;
    height: 360px;
    margin-top: -35px;
  }
}
.line-404 .row > div:first-child .content {
  text-align: center;
}
.line-404 .row > div:first-child .content h1 {
  color: #F1FFB9;
  font-size: 200px;
  line-height: 130px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .line-404 .row > div:first-child .content h1 {
    font-size: 140px;
    line-height: 100px;
  }
}
.line-404 .row > div:first-child .content h3 {
  color: #F1FFB9;
  font-size: 28px;
  line-height: 33px;
  font-weight: 500;
  margin-bottom: 30px;
}
.line-404 .row > div:first-child .content h2 {
  color: #F9FEE3;
  font-size: 70px;
  line-height: 73px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .line-404 .row > div:first-child .content h2 {
    font-size: 50px;
    line-height: 53px;
  }
}
.line-404 .row > div:first-child .content p {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #31755D;
}
@media (max-width: 991px) {
  .line-404 .row > div:first-child .content p {
    font-size: 14px;
    line-height: 19px;
  }
}
.line-404 .row > div:first-child .content p {
  color: #fff;
}

.line-banner-home {
  padding-top: 190px !important;
  padding-bottom: 160px !important;
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Accueil/Background.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .line-banner-home {
    padding-bottom: 90px !important;
  }
}
@media (max-width: 767px) {
  .line-banner-home {
    padding-top: 170px !important;
    padding-bottom: 75px !important;
  }
}
.line-banner-home .container > .row > div .content p img {
  opacity: 0;
  animation: slideFadeIn 1s ease-in-out 0.5s forwards;
}
@media (max-width: 767px) {
  .line-banner-home .container > .row > div .content p img {
    width: 185px !important;
  }
}
.line-banner-home .container > .row > div .content h1 {
  opacity: 0;
  color: #fff;
  margin-bottom: 35px;
  animation: fadeIn 1s ease-in-out forwards;
}
.line-banner-home .container > .row > div .content .btn-primary-yellow-arrow {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

.line-banner {
  padding-top: 228px;
  padding-bottom: 40px;
  background-color: #31755D;
}
@media (max-width: 991px) {
  .line-banner {
    padding-top: 185px;
  }
}
.line-banner .container > .row > div .content {
  padding-bottom: 48px;
  border-bottom: 1px solid #659A7B;
}
@media (max-width: 991px) {
  .line-banner .container > .row > div .content {
    padding-bottom: 38px;
  }
}
.line-banner .container > .row > div .content h1 {
  color: #fff;
  margin-bottom: 5px;
}
.line-banner .container > .row > div .content h1 strong {
  color: #E4F522;
}
.line-banner .container > .row > div .content h2 {
  color: #fff;
  font-size: 40px;
  line-height: 50px;
  font-family: "Merriweather", serif;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-banner .container > .row > div .content h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
.line-banner .container > .row > div .content h2 {
  margin-bottom: 5px;
}
.line-banner .container > .row > div .content h2 strong {
  color: #E4F522;
  font-weight: 400;
}
.line-banner.banner-planifier:after {
  content: "";
  position: absolute;
  display: block;
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Planifier/Planifier.svg") no-repeat;
  background-position: center center;
  width: 806px;
  height: 290px;
  right: 0;
  top: 216px;
}
@media (max-width: 1199px) {
  .line-banner.banner-planifier:after {
    background-size: 65%;
  }
}
@media (max-width: 991px) {
  .line-banner.banner-planifier:after {
    display: none;
  }
}
.line-banner.banner-cannabis .container {
  position: relative;
}
.line-banner.banner-cannabis .container:before {
  content: "";
  position: absolute;
  display: block;
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Le%20cannabis/01_Shape.svg") no-repeat;
  background-position: center center;
  width: 115px;
  height: 188px;
  left: -110px;
  top: -20px;
}
@media (max-width: 991px) {
  .line-banner.banner-cannabis .container:before {
    display: none;
  }
}
.line-banner.banner-cannabis .container:after {
  content: "";
  position: absolute;
  display: block;
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Le%20cannabis/02_Shape.svg") no-repeat;
  background-position: center center;
  width: 100px;
  height: 135px;
  left: 520px;
  top: -80px;
}
.line-banner.banner-outiller .container {
  position: relative;
}
.line-banner.banner-outiller .container:after {
  content: "";
  position: absolute;
  display: block;
  background: url("https://cdn.ca.yapla.com/company/CPYHkEcwrbejul4SqOBhUWso6/asset/images/Outils/Outiller.svg") no-repeat;
  background-position: center center;
  width: 296px;
  height: 242px;
  right: 140px;
  top: -29px;
}
@media (max-width: 991px) {
  .line-banner.banner-outiller .container:after {
    right: 0;
    top: -39px;
  }
}
@media (max-width: 767px) {
  .line-banner.banner-outiller .container:after {
    display: none;
  }
}

.demo-title .container .row .zone-html .content {
  padding: 64px 0 32px 0;
}
.demo-title .container .row .zone-html .content h2 {
  color: inherit;
  font-size: 48px;
  text-align: center;
}

.line-anim-test .zone-html .content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px 50px;
  padding-bottom: 50px;
}
.line-anim-test .zone-html .content img:nth-child(1):hover {
  -webkit-animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.line-anim-test .zone-html .content img:nth-child(2):hover {
  -webkit-animation: flash 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: flash 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: flash 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: flash 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.line-anim-test .zone-html .content img:nth-child(3):hover {
  -webkit-animation: bounce 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: bounce 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: bounce 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: bounce 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.line-anim-test .zone-html .content img:nth-child(4):hover {
  -webkit-animation: shake 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: shake 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: shake 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: shake 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

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