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

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

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

.darkparagraphe p {
  color: #000;
}

/* Pour les modules d'articles en vedette seulement, 
mettre nombre de colonnes à 1 dans le module */
.col-grid[class*=grid] .newsList, .col-grid[class*=grid] .news-mosaic, .col-grid[class*=grid] .eventsList {
  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: #000;
}

::selection {
  color: #fff;
  background: #106DE5;
}

/* 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: 991px) {
  .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: translateY(30);
    -ms-transform: translateY(30);
    transform: translateY(30);
  }
  40% {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }
  80% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
.slide-left {
  -webkit-animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

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

@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation text-fade-from-left
 * ----------------------------------------
 */
/* Fade From Left */
@-webkit-keyframes text-fade-from-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes text-fade-from-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-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: "Mulish", sans-serif;
}
body.overflowhidden {
  overflow: hidden;
}

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

h1, .h1 {
  font-size: 70px;
  line-height: 77px;
  font-weight: 900;
  text-transform: initial;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 45px;
    line-height: 52px;
  }
}
h2, .h2 {
  font-size: 60px;
  line-height: 65px;
  font-weight: 700;
  text-transform: initial;
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
h3, .h3 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  h3, .h3 {
    font-size: 36px;
    line-height: 44px;
  }
}
h4, .h4 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 300;
  text-transform: initial;
}
@media (max-width: 991px) {
  h4, .h4 {
    font-size: 30px;
    line-height: 37px;
  }
}
h5, .h5 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  h5, .h5 {
    font-size: 25px;
    line-height: 30px;
  }
}
h6, .h6 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  text-transform: initial;
}
@media (max-width: 991px) {
  h6, .h6 {
    font-size: 22px;
    line-height: 27px;
  }
}
.text_default {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

p {
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000;
}
@media (max-width: 991px) {
  p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  p {
    font-size: 18px;
    line-height: 23px;
  }
}

.p-important {
  font-size: 20px !important;
  line-height: 25px !important;
  font-weight: 400 !important;
  margin-bottom: 15px !important;
  color: #000 !important;
}
@media (max-width: 991px) {
  .p-important {
    font-size: 16px !important;
    line-height: 22px !important;
  }
}
@media (max-width: 767px) {
  .p-important {
    font-size: 18px !important;
    line-height: 23px !important;
  }
}

.p-small {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000;
}
.p-bold {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #16509B;
}
hr {
  border-color: rgba(16, 109, 229, 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):not(.news-category) {
  color: #106DE5;
  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):not(.news-category):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):not(.news-category):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):not(.news-category):focus {
  color: #16509B;
  text-decoration: none;
}

ol, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) {
  padding-left: 20px;
  margin-top: 22px;
  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: 22px;
  margin-bottom: 16px;
  padding-left: 8px;
}
@media (max-width: 767px) {
  ol li, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li {
    font-size: 16px;
    line-height: 20px;
  }
}
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: #16509B;
  font-weight: 700;
}
ol li ul, ol li ol, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li ul, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li ol {
  margin-top: 0;
  margin-bottom: 0;
}

ol {
  padding-left: 15px;
}

/*###########################  BOUTONS  ###########################*/
/* Calendar event BTN  */
.calendar-link-content .v-btn {
  color: #000 !important;
  background-color: transparent !important;
  transition: all 150ms;
  border: 0 !important;
  border-radius: 0 !important;
  height: auto !important;
  font-size: 16px !important;
  font-family: "Mulish", sans-serif !important;
  padding: 0 !important;
}
.calendar-link-content .v-btn:hover, .calendar-link-content .v-btn:focus, .calendar-link-content .v-btn:active {
  color: #106DE5 !important;
  outline: 0;
  outline-offset: 0;
  box-shadow: none;
}
.calendar-link-content .v-btn:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/btn-calendar.svg");
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.calendar-link-content .v-btn i {
  display: none;
}

/*###########################  BOUTONS RESET  ###########################*/
.btn, input.btn, a.btn {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
}
.btn:hover, .btn:active, .btn:focus, input.btn:hover, input.btn:active, input.btn:focus, a.btn:hover, a.btn:active, a.btn:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .btn, input.btn, a.btn {
    white-space: normal !important;
  }
}
.btn.btn-primary, .btn.btn-default, input.btn.btn-primary, input.btn.btn-default, a.btn.btn-primary, a.btn.btn-default {
  background-color: #106DE5;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #106DE5;
}
.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: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: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: 1px solid #106DE5;
  color: #106DE5;
}
.btn.btn-secondary, input.btn.btn-secondary, a.btn.btn-secondary {
  background-color: #fff;
  color: #106DE5;
  transition: all 150ms;
  border: 1px solid #106DE5;
}
.btn.btn-secondary:hover, .btn.btn-secondary:active, .btn.btn-secondary:focus, input.btn.btn-secondary:hover, input.btn.btn-secondary:active, input.btn.btn-secondary:focus, a.btn.btn-secondary:hover, a.btn.btn-secondary:active, a.btn.btn-secondary:focus {
  background-color: #106DE5;
  border: 1px solid #fff;
  color: #fff;
}
.btn.btn-link, .btn.btn-back, input.btn.btn-link, input.btn.btn-back, a.btn.btn-link, a.btn.btn-back {
  background-color: transparent;
  color: #106DE5;
  transition: all 150ms;
  border: 1px solid #000;
}
.btn.btn-link:hover, .btn.btn-link:active, .btn.btn-link:focus, .btn.btn-back:hover, .btn.btn-back:active, .btn.btn-back:focus, input.btn.btn-link:hover, input.btn.btn-link:active, input.btn.btn-link:focus, input.btn.btn-back:hover, input.btn.btn-back:active, input.btn.btn-back:focus, a.btn.btn-link:hover, a.btn.btn-link:active, a.btn.btn-link:focus, a.btn.btn-back:hover, a.btn.btn-back:active, a.btn.btn-back:focus {
  background-color: #106DE5;
  color: #fff;
  border: 1px solid #106DE5;
}
.btn.btn-arrow, input.btn.btn-arrow, a.btn.btn-arrow {
  height: 125px;
  font-size: 30px;
  line-height: 35px;
  border-radius: 63px;
  padding: 0 112px 0 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: left;
  text-transform: inherit;
  font-weight: 700;
  background-color: #106DE5;
  border: 2px solid #106DE5;
  transition: all 300ms;
}
@media (max-width: 991px) {
  .btn.btn-arrow, input.btn.btn-arrow, a.btn.btn-arrow {
    font-size: 20px;
    padding: 0 100px 0 42px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .btn.btn-arrow, input.btn.btn-arrow, a.btn.btn-arrow {
    font-size: 20px;
    padding: 0 70px 0 42px;
    width: 100%;
    height: 100px;
    justify-content: flex-start;
  }
}
.btn.btn-arrow:after, input.btn.btn-arrow:after, a.btn.btn-arrow:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: 60px;
  margin-top: -2px;
  position: relative;
  display: inline-block;
  width: 36px;
  min-width: 36px;
  height: 34px;
  animation-name: none;
}
@media (max-width: 991px) {
  .btn.btn-arrow:after, input.btn.btn-arrow:after, a.btn.btn-arrow:after {
    left: 40px;
  }
}
.btn.btn-arrow:hover, .btn.btn-arrow:focus, input.btn.btn-arrow:hover, input.btn.btn-arrow:focus, a.btn.btn-arrow:hover, a.btn.btn-arrow:focus {
  background-color: #fff !important;
  text-decoration: none;
  color: #106DE5;
}
.btn.btn-arrow:hover:after, .btn.btn-arrow:focus:after, input.btn.btn-arrow:hover:after, input.btn.btn-arrow:focus:after, a.btn.btn-arrow:hover:after, a.btn.btn-arrow:focus:after {
  background: url("https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/arrow_blue.svg");
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-name: bounce_arrow;
  -moz-animation-name: bounce_arrow;
}
.btn.btn-arrow span, input.btn.btn-arrow span, a.btn.btn-arrow span {
  font-size: 16px;
}
.btn.btn-arrow-circle, input.btn.btn-arrow-circle, a.btn.btn-arrow-circle {
  height: 70px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  border-radius: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-transform: inherit;
  background-color: transparent;
  transition: all 300ms;
}
.btn.btn-arrow-circle:before, input.btn.btn-arrow-circle:before, a.btn.btn-arrow-circle:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/arrow_white.svg") center center;
  background-repeat: no-repeat;
  background-color: #106DE5;
  border: 2px solid #106DE5;
  border-radius: 50%;
  left: -30px;
  margin-top: 0px;
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  animation-name: none;
}
.btn.btn-arrow-circle:hover, .btn.btn-arrow-circle:focus, input.btn.btn-arrow-circle:hover, input.btn.btn-arrow-circle:focus, a.btn.btn-arrow-circle:hover, a.btn.btn-arrow-circle:focus {
  background-color: #fff !important;
  text-decoration: none;
  color: #106DE5;
}
.btn.btn-arrow-circle:hover:before, .btn.btn-arrow-circle:focus:before, input.btn.btn-arrow-circle:hover:before, input.btn.btn-arrow-circle:focus:before, a.btn.btn-arrow-circle:hover:before, a.btn.btn-arrow-circle:focus:before {
  background: url("https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/arrow_blue.svg") center center;
  background-repeat: no-repeat;
}
.btn.btn-download, input.btn.btn-download, a.btn.btn-download {
  background: #106DE5;
  position: relative;
  padding-right: 50px;
  padding-top: 17px;
  padding-bottom: 17px;
  transition: all 0.5s smooth;
}
.btn.btn-download:after, input.btn.btn-download:after, a.btn.btn-download:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/white-arrow-down.svg);
  background-size: contain;
  width: 27px;
  height: 26px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
}
.btn.btn-download:hover, input.btn.btn-download:hover, a.btn.btn-download:hover {
  color: #106DE5;
  background: #fff;
  border: 1px solid #106DE5;
}
.btn.btn-download:hover:after, input.btn.btn-download:hover:after, a.btn.btn-download:hover:after {
  background-image: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/blue-arrow-down.svg);
}
.btn.btn-rapport, input.btn.btn-rapport, a.btn.btn-rapport {
  background: transparent;
  position: relative;
  color: #000;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  transition: all 0.5s smooth;
  text-align: left;
  padding-left: 65px;
}
.btn.btn-rapport:before, input.btn.btn-rapport:before, a.btn.btn-rapport:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/circled-arrow-down.svg);
  background-size: contain;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.btn.btn-rapport:hover, input.btn.btn-rapport:hover, a.btn.btn-rapport:hover {
  color: #106DE5;
}
.btn {
  margin-right: 30px;
}
.btn + .btn, .btn:only-of-type {
  margin-right: 0;
}

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

/*###########################  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: #000;
  -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*/
  /*Static Text in forms*/
}
form.form-horizontal .col-sm-24 .col-md-12,
form.search-form .col-sm-24 .col-md-12 {
  width: 100%;
  /*
  @include min-md {
  	padding: 0 15px 0px 0!important;
  }
  */
}
form.form-horizontal .form-group,
form.search-form .form-group {
  margin-left: 0px;
  margin-right: 0px;
  /* Required Red Star Styles */
  /* Input Global Style */
  /* Direct input overrides */
  /*Category Dropdown Styles*/
  /*Keywords Dropdown Styles*/
  /*Error Text Style*/
}
form.form-horizontal .form-group .col-md-12, form.form-horizontal .form-group .col-sm-17, form.form-horizontal .form-group .col-sm-24,
form.search-form .form-group .col-md-12,
form.search-form .form-group .col-sm-17,
form.search-form .form-group .col-sm-24 {
  padding: 0;
}
form.form-horizontal .form-group label.control-label,
form.search-form .form-group label.control-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 10px;
  padding-left: 0;
}
form.form-horizontal .form-group label.control-label--required,
form.search-form .form-group label.control-label--required {
  padding-left: 5px;
  color: #000;
}
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: #F4F4F4 !important;
  color: #000 !important;
  border: 2px solid #E3E3E3 !important;
  border-radius: 24px;
}
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 !important;
  height: 55px !important;
  border-radius: 24px;
}
form.form-horizontal .form-group textarea,
form.search-form .form-group textarea {
  border: none !important;
  padding: 15px !important;
}
form.form-horizontal .form-group .search_input,
form.search-form .form-group .search_input {
  padding-left: 0 !important;
  padding-right: 0 !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 .input-file input,
form.search-form .form-group .input-file input {
  border-radius: 0 !important;
}
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: #F4F4F4 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-element-keywords .chosen-choices, form.form-horizontal .form-group .chosen-container-multi .chosen-choices,
form.search-form .form-group .form-element-keywords .chosen-choices,
form.search-form .form-group .chosen-container-multi .chosen-choices {
  height: auto !important;
  padding-right: 60px !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-field, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-field,
form.search-form .form-group .form-element-keywords .chosen-choices .search-field,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-field {
  height: 21px !important;
  line-height: 22px !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-field input, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-field input,
form.search-form .form-group .form-element-keywords .chosen-choices .search-field input,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-field input {
  height: 20px;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice {
  display: block;
  width: 100%;
  background-color: transparent !important;
  color: #106DE5 !important;
  font-size: 15px;
  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: 9px !important;
  filter: invert(1);
}
form.form-horizontal .form-group ul.error,
form.search-form .form-group ul.error {
  margin: 0;
}
form.form-horizontal .form-group ul.error li.text-danger,
form.search-form .form-group ul.error li.text-danger {
  padding: 3px 10px 0px 10px;
  color: #000;
  background-color: #ffcece;
  font-size: 12px;
}
form.form-horizontal p.form-control-static,
form.search-form p.form-control-static {
  padding-top: 0;
  margin-top: 0;
}
form.form-horizontal .crm-footer-frame,
form.search-form .crm-footer-frame {
  margin-top: 30px;
}
form.form-horizontal .optin-field,
form.search-form .optin-field {
  margin-top: 36px;
}

.form-dark form.form-horizontal,
.form-dark form.search-form {
  /*Static Text in forms*/
}
.form-dark form.form-horizontal .form-group,
.form-dark form.search-form .form-group {
  /* Input Global Style */
  /* Direct input overrides */
  /*Category Dropdown Styles*/
  /*Keywords Dropdown Styles*/
  /*Error Text Style*/
}
.form-dark form.form-horizontal .form-group input:not(.btn), .form-dark form.form-horizontal .form-group select, .form-dark form.form-horizontal .form-group textarea,
.form-dark form.search-form .form-group input:not(.btn),
.form-dark form.search-form .form-group select,
.form-dark form.search-form .form-group textarea {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #E3E3E3 !important;
  border-radius: 24px;
}
.form-dark form.form-horizontal .form-group select, .form-dark form.form-horizontal .form-group input.form-control, .form-dark form.form-horizontal .form-group .chosen-choices,
.form-dark form.search-form .form-group select,
.form-dark form.search-form .form-group input.form-control,
.form-dark form.search-form .form-group .chosen-choices {
  padding: 15px !important;
  height: 55px !important;
  border-radius: 24px;
}
.form-dark form.form-horizontal .form-group textarea,
.form-dark form.search-form .form-group textarea {
  padding: 15px !important;
}
.form-dark form.form-horizontal .form-group .input-file,
.form-dark form.search-form .form-group .input-file {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.form-dark form.form-horizontal .form-group .search_input,
.form-dark form.search-form .form-group .search_input {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.form-dark form.form-horizontal .form-group select.moteur-recherche, .form-dark form.form-horizontal .form-group select#category_id, .form-dark form.form-horizontal .form-group .chosen-choices,
.form-dark form.search-form .form-group select.moteur-recherche,
.form-dark form.search-form .form-group select#category_id,
.form-dark form.search-form .form-group .chosen-choices {
  width: 100%;
  max-width: 400px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #F4F4F4 url(https://cdn.ca.yapla.com/images/icon-membogo-arrow-combo@2x.png) no-repeat right 5px center !important;
  background-size: 13px !important;
}
.form-dark form.form-horizontal .form-group .form-element-keywords .chosen-choices, .form-dark form.form-horizontal .form-group .chosen-container-multi .chosen-choices,
.form-dark form.search-form .form-group .form-element-keywords .chosen-choices,
.form-dark form.search-form .form-group .chosen-container-multi .chosen-choices {
  height: auto !important;
  padding-right: 60px !important;
}
.form-dark form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-field, .form-dark form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-field,
.form-dark form.search-form .form-group .form-element-keywords .chosen-choices .search-field,
.form-dark form.search-form .form-group .chosen-container-multi .chosen-choices .search-field {
  height: 21px !important;
  line-height: 22px !important;
}
.form-dark form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-field input, .form-dark form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-field input,
.form-dark form.search-form .form-group .form-element-keywords .chosen-choices .search-field input,
.form-dark form.search-form .form-group .chosen-container-multi .chosen-choices .search-field input {
  height: 20px;
}
.form-dark form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice, .form-dark form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice,
.form-dark form.search-form .form-group .form-element-keywords .chosen-choices .search-choice,
.form-dark form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice {
  display: block;
  width: 100%;
  background-color: transparent !important;
  color: #106DE5 !important;
  font-size: 15px;
  padding-left: 15px !important;
  border: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
}
.form-dark form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice span, .form-dark form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice span,
.form-dark form.search-form .form-group .form-element-keywords .chosen-choices .search-choice span,
.form-dark 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-dark form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice .search-choice-close, .form-dark form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
.form-dark form.search-form .form-group .form-element-keywords .chosen-choices .search-choice .search-choice-close,
.form-dark form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice .search-choice-close {
  right: auto;
  left: 0;
  top: 9px !important;
  filter: invert(1);
}
.form-dark form.form-horizontal .form-group ul.error,
.form-dark form.search-form .form-group ul.error {
  margin: 0;
}
.form-dark form.form-horizontal .form-group ul.error li.text-danger,
.form-dark form.search-form .form-group ul.error li.text-danger {
  padding: 3px 10px 0px 10px;
  color: #000;
  background-color: #ffcece;
  font-size: 12px;
}
.form-dark form.form-horizontal p.form-control-static,
.form-dark form.search-form p.form-control-static {
  padding-top: 0;
  margin-top: 0;
}
.form-dark form.form-horizontal .crm-footer-frame,
.form-dark form.search-form .crm-footer-frame {
  margin-top: 30px;
}
.form-dark form.form-horizontal .optin-field,
.form-dark form.search-form .optin-field {
  margin-top: 36px;
}

/* Miscellaneous forms */
#ui-form .ui-section__content {
  background-color: rgba(16, 109, 229, 0.1);
}
#ui-form .ui-section__content h2 {
  color: #106DE5;
}

.overrideformtitle .zone-crm h1 {
  font-size: 60px;
  line-height: 65px;
  font-weight: 700;
  text-transform: initial;
  text-align: center;
}
@media (max-width: 991px) {
  .overrideformtitle .zone-crm h1 {
    font-size: 40px;
    line-height: 45px;
  }
}
#form-formbuilder .help-block {
  display: inline;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 5px;
  color: #000;
  font-size: 14px;
  line-height: 24px;
}

/* Formulaire Inscription membre/evenement*/
/*Styles Global*/
.zone-member {
  padding: 70px 0;
}
.zone-member .form-withProgress__wrapper .section {
  margin-bottom: 10px;
}
.zone-member .form-withProgress__wrapper .section .form-group input, .zone-member .form-withProgress__wrapper .section .form-group select {
  background-color: #fff !important;
}
.zone-member #login_content_box {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .zone-member #login_content_box {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}
.zone-member #member_adhesion_form {
  background-color: #f4f4f4;
}
.zone-member #registration-member h1 {
  color: #106DE5;
  padding-bottom: 80px;
}
.zone-member #registration-member h1::after {
  content: " ";
  background: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/big-bubble-arrow.svg) center center;
  background-size: 91px;
  position: relative;
  display: block;
  width: 91px;
  height: 91px;
  top: 45px;
}

.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 0;
  /*Formulaire*/
  /*Récapitulatif*/
  /*Total box*/
  /*Bottom Nav*/
}
@media (max-width: 991px) {
  .zone-event .form-withProgress__wrapper,
  .zone-member .form-withProgress__wrapper {
    padding: 32px 16px;
  }
}
.zone-event .form-withProgress__wrapper h2.section-title,
.zone-member .form-withProgress__wrapper h2.section-title {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #000;
}
.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: 30px;
  line-height: 35px;
  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: 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 .form-withProgress__sub-total h4,
.zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
  color: #000;
}
@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: 25px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
  .zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
    font-size: 14px;
  }
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-event .form-withProgress__wrapper #fieldset-total,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-member .form-withProgress__wrapper #fieldset-total {
  padding: 15px 0 30px 0;
  margin-bottom: 0 !important;
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section,
.zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section,
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section {
  background-color: #fff;
}
.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: #000 !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: #000 !important;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
  .zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price,
  .zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
  .zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price {
    font-size: 20px;
  }
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment {
  background-color: #106DE5;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #106DE5;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus {
  background-color: transparent;
  border: 1px solid #106DE5;
  color: #106DE5;
}
.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 {
  background-color: #fff;
  color: #106DE5;
  transition: all 150ms;
  border: 1px solid #106DE5;
  margin-right: 16px;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus {
  background-color: #106DE5;
  border: 1px solid #fff;
  color: #fff;
}
@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,
.zone-member .membership-delegate-manage {
  padding-top: 56px;
}
.zone-event .membership-delegate-manage h2,
.zone-member .membership-delegate-manage h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 300;
  color: #000;
}
.zone-event .membership-delegate-manage .header .membership-delegate-name,
.zone-member .membership-delegate-manage .header .membership-delegate-name {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #000;
}
.zone-event .membership-delegate-manage .header .membership-delegate-quantity,
.zone-member .membership-delegate-manage .header .membership-delegate-quantity {
  color: #16509B;
}
.zone-event .membership-delegate-manage .body .list-result-wrapper table.table thead,
.zone-member .membership-delegate-manage .body .list-result-wrapper table.table thead {
  background: transparent !important;
  color: #16509B !important;
}
.zone-event .membership-delegate-manage .body .list-result-wrapper table.table thead tr th,
.zone-member .membership-delegate-manage .body .list-result-wrapper table.table thead tr th {
  padding: 18px 7px !important;
}
.zone-event .membership-delegate-manage .footer .btn,
.zone-member .membership-delegate-manage .footer .btn {
  height: 47px !important;
  padding: 0px 30px !important;
  background-color: #106DE5 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: 1px solid #106DE5 !important;
}
.zone-event .membership-delegate-manage .footer .btn:hover, .zone-event .membership-delegate-manage .footer .btn:active, .zone-event .membership-delegate-manage .footer .btn:focus,
.zone-member .membership-delegate-manage .footer .btn:hover,
.zone-member .membership-delegate-manage .footer .btn:active,
.zone-member .membership-delegate-manage .footer .btn:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #106DE5 !important;
  color: #106DE5 !important;
}

.modal .modal-dialog .modal-content .modal-footer button {
  height: 47px !important;
  padding: 0px 30px !important;
  background-color: #106DE5 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: 1px solid #106DE5 !important;
}
.modal .modal-dialog .modal-content .modal-footer button:hover, .modal .modal-dialog .modal-content .modal-footer button:active, .modal .modal-dialog .modal-content .modal-footer button:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #106DE5 !important;
  color: #106DE5 !important;
}

/*ETAPES INSCRIPTION NOUVEAU MEMBRE*/
/*Étapes 1 - Type d'adhesion*/
.step-adhesion .zone-member .form-withProgress__wrapper {
  padding: 0;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form {
  padding: 40px 0;
}
@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: 40px;
  line-height: 45px;
  font-weight: 300;
  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: 20px;
  font-weight: 700;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .radio label {
  font-size: 20px;
  font-weight: 400;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .adh-date {
  font-size: 16px;
  padding-bottom: 16px;
  font-weight: 4s00;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .has-help-right {
  font-size: 16px;
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom {
  background: #f4f4f4;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
}
@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;
  text-align: right;
  max-width: 30%;
}
.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 input {
  background-color: #fff !important;
}
.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%;
  }
}
.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;
  color: #106DE5;
}
@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: #fff;
  background: #106DE5;
  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 .has-help-right {
  width: 50%;
}
.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*/
/*Étapes 3 - Résumé Informations*/
.step-resume .zone-member .form-withProgress__wrapper h2 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
}
.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: #000;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset .col-sm-24 {
  padding: 0;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #000 !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 .zone-member .member-step-confirm {
  text-align: center;
}
#registration-member .zone-member .member-step-confirm .member-profile-container {
  padding: 32px 0;
}
#registration-member .zone-member .member-step-confirm .form-withProgress__navigation-footer p {
  display: none;
}

/*ETAPES INSCRIPTION EVENEMENT*/
/*Étapes 1 - Inscription*/
.zone-event .form-withProgress__wrapper .registration-event-bloc {
  padding: 32px 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition {
  border: 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add {
  background-color: #106DE5;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #106DE5;
  padding: 15px !important;
  color: #fff !important;
  font-weight: 600 !important;
  border: 2px solid #106DE5 !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: 1px solid #106DE5;
  color: #106DE5;
}
.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 #106DE5 !important;
  color: #106DE5 !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: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
  padding-top: 32px;
}
@media (max-width: 991px) {
  .step-resume .zone-event .form-withProgress__wrapper fieldset legend {
    font-size: 25px;
    line-height: 30px;
  }
}
.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 */
.table-striped thead {
  border-bottom: 1px solid #106DE5 !important;
  border-top: 1px solid #106DE5 !important;
}
.table-striped thead tr {
  background-color: transparent !important;
}
.table-striped thead tr th, .table-striped thead tr td {
  border-bottom: 0 !important;
  padding: 18px 0;
}
.table-striped thead tr th a, .table-striped thead tr td a {
  color: #16509B;
  font-size: 19px;
  line-height: 25px;
  font-weight: 700;
}
.table-striped tbody > tr:nth-child(odd) > td {
  background-color: rgba(16, 109, 229, 0.0705882353);
}
.table-striped tbody tr td {
  border-top: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 16px 8px;
}
/*###########################  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(16, 109, 229, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
  letter-spacing: 2px;
  padding: 10px 0px;
}
.nav-tabs li a:hover, .nav-tabs li a:focus {
  background-color: transparent;
  color: rgba(16, 109, 229, 0.4);
  border-color: transparent;
}
.nav-tabs li.active:hover a, .nav-tabs li.active a {
  border-bottom: 5px solid #000;
  color: #106DE5;
}

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

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

.panel-news-accordion {
  /* first accordion container */
  border-radius: 60px !important;
  background-color: #fff;
  margin-bottom: 30px !important;
  padding: 0px 65px;
}
@media (max-width: 767px) {
  .panel-news-accordion {
    padding: 0 15px;
  }
}
.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: 36px;
  line-height: 44px;
  font-weight: 300;
  text-transform: initial;
  margin-bottom: 0;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .panel-news-accordion .panel-heading .panel-title {
    font-size: 30px;
    line-height: 37px;
  }
}
.panel-news-accordion .panel-heading .panel-title a {
  padding: 30px 0px 30px 0;
  color: #16509B;
  text-decoration: none;
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-heading .panel-title a {
    font-size: 25px;
    line-height: 30px;
    max-width: 210px;
    padding-left: 30px;
  }
}
.panel-news-accordion .panel-heading .panel-title a:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/acordeon.svg) center center;
  background-size: 85px;
  display: block;
  width: 85px;
  height: 85px;
  position: absolute;
  right: -30px;
  top: 5px;
  transition: transform 150ms;
  background-color: transparent;
  border-radius: 50%;
  transform: rotate(-90deg);
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-heading .panel-title a:after {
    right: 0;
    top: 0px;
  }
}
.panel-news-accordion .panel-heading .panel-title a.collapsed:after {
  transform: rotate(-135deg);
}
.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 .news-accordion-content {
  border-top: 1px solid #ccc !important;
  padding-right: 50px;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-body .news-accordion-content {
    padding-right: 15px;
  }
}
.panel-news-accordion .panel-body h4 {
  font-size: 20px;
  line-height: 25px;
  color: #16509B;
  font-weight: bold;
}
.panel-news-accordion .panel-body p {
  color: #000;
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body .btn-link {
  margin-bottom: 40px;
}

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

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

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

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

*/
table.accordeon {
  display: block;
  width: 100% !important;
  border: 0;
  margin-bottom: 10px;
  /* active and opened content */
}
table.accordeon tbody, table.accordeon tr, table.accordeon td {
  border: 0;
}
table.accordeon tbody {
  display: block;
}
table.accordeon tbody::before {
  content: " ";
  position: relative;
  display: block;
  top: 175px;
  width: 75%;
  height: 1px;
  background-color: #ccc;
  margin-top: 0px;
  float: right;
}
table.accordeon tbody tr {
  /* Title/accordeon box */
}
table.accordeon tbody tr:first-child {
  cursor: pointer;
  display: block;
  background-color: transparent;
  padding: 15px;
  position: relative;
  min-height: 200px;
}
table.accordeon tbody tr:first-child:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/acordeon.svg) center center;
  background-size: 70px;
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  left: 0px;
  bottom: -10px;
  transition: transform 150ms;
  background-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}
table.accordeon tbody tr:last-child {
  display: block;
}
table.accordeon tbody tr:last-child td {
  display: block;
  max-height: 0;
  overflow: hidden;
}
table.accordeon.active tbody tr:first-child:before {
  transform: rotate(0deg);
}
table.accordeon.active tbody tr:last-child {
  padding: 15px;
  margin-top: 20px;
}
table.accordeon.active tbody tr:last-child td {
  max-height: 5000px;
  transition: max-height 1.5s;
}
table.accordeon.active tbody tr:last-child td p {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000;
}
.modal-backdrop {
  z-index: 10000;
}

.modal {
  z-index: 10001 !important;
}
.modal .modal-dialog {
  max-width: 1000px;
}
.modal .modal-dialog .modal-content {
  background-color: #fff;
}
.modal .modal-dialog .modal-content .modal-header {
  margin-top: 8px;
  padding: 16px 31px;
  flex-direction: column;
}
.modal .modal-dialog .modal-content .modal-header button.close {
  color: #000;
}
.modal .modal-dialog .modal-content .modal-header button.close:hover {
  color: #106DE5;
}
.modal .modal-dialog .modal-content .modal-body {
  /* Input Global Style */
}
.modal .modal-dialog .modal-content .modal-body input:not(.btn), .modal .modal-dialog .modal-content .modal-body select, .modal .modal-dialog .modal-content .modal-body textarea {
  background-color: #EFF0F4 !important;
  color: #000 !important;
  border: none;
}
.home-video-modal {
  width: 50%;
  /*
  #exampleModalCenter{
      background-color: rgba($color: $primary, $alpha: 0.5);
      .modal-dialog{
          width: 960px;
          @include max-md {
              width: 100%;
          }
          .modal-content{
              .modal-header{
                  padding: 0 30px;
              }
              .modal-body{
                  min-height: auto;
                  iframe{
                      max-height: 350px;
                      min-height: auto;
                      aspect-ratio: 16 / 9 
                  }
              }
          }
      }
  }
  */
}
.home-video-modal .modal-backdrop {
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.6);
}
.home-video-modal .modal-backdrop.in {
  opacity: 1 !important;
}
.home-video-modal .modal {
  z-index: 10001 !important;
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.home-video-modal .modal.fade.in {
  display: flex !important;
}
.home-video-modal .modal .modal-dialog {
  width: 90%;
  max-width: 780px;
  margin: 9.75rem auto 1.75rem auto;
}
@media (max-width: 575px) {
  .home-video-modal .modal .modal-dialog {
    width: 80%;
  }
}
.home-video-modal .modal .modal-dialog .modal-content {
  width: 100%;
  border: 0;
  background-color: #000;
  /*aspect-ratio: 9 / 16;*/
  margin-left: 0;
  margin-right: 0;
}
.home-video-modal .modal .modal-dialog .modal-content .modal-header {
  margin-top: 0;
  padding: 0;
  flex-direction: column;
}
.home-video-modal .modal .modal-dialog .modal-content .modal-header button.close {
  color: #fff;
  font-size: 45px;
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  right: 0;
  position: absolute;
  margin-right: -35px;
  margin-top: -45px;
}
.home-video-modal .modal .modal-dialog .modal-content .modal-header button.close:hover {
  color: #000;
}
.home-video-modal .modal .modal-dialog .modal-content .modal-body {
  /* Input Global Style */
  max-height: inherit;
  min-height: auto;
  padding: 0;
}
.home-video-modal .modal .modal-dialog .modal-content .modal-body > div {
  padding: 0;
}
.home-video-modal .modal .modal-dialog .modal-content .modal-body input:not(.btn), .home-video-modal .modal .modal-dialog .modal-content .modal-body select, .home-video-modal .modal .modal-dialog .modal-content .modal-body textarea {
  background-color: #EFF0F4 !important;
  color: #000 !important;
  border: none;
}
.home-video-modal .modal .modal-dialog .modal-content .modal-body iframe {
  min-height: auto;
  aspect-ratio: 16/9;
  display: block;
}
@media (max-width: 1199px) {
  .home-video-modal {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .home-video-modal {
    width: 80%;
  }
}
.home-video-modal p {
  text-align: center;
}
.home-video-modal p .modal-button:hover {
  cursor: pointer;
}

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

.nav-progress li.disabled {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  opacity: 1;
}
.nav-progress li.disabled a {
  font-family: "Mulish", sans-serif;
  text-align: center;
  float: left;
  padding-left: 0px;
  font-weight: 500;
  color: #000;
  margin-top: 0;
  padding: 13px 0 0 0;
  text-transform: none;
  font-size: 16px;
  position: relative;
}
.nav-progress li.disabled a:hover {
  padding-left: 0px;
  margin-top: 0px;
  padding: 13px 0 0 0;
  text-transform: none;
  font-size: 16px;
}
.nav-progress li.disabled a:before {
  content: counter(count-steps);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff !important;
  background-color: #16509B;
  padding: 10px 15px;
  border-radius: 50%;
  margin-right: 15px;
}
.nav-progress li.disabled:before {
  display: none;
}
.nav-progress li.disabled:after {
  display: none;
}
.nav-progress li.disabled.active {
  opacity: 1;
}
.nav-progress li.disabled.active a {
  color: #000;
}
.nav-progress li.disabled.active a:before {
  background-color: #106DE5;
}
.nav-progress li.disabled.active:before {
  display: none;
}
.nav-progress li.disabled.active:after {
  display: none;
}
.nav-progress li.disabled.active ~ li {
  opacity: 0.3;
}
.nav-progress li.disabled.active ~ li a {
  color: #000;
}
.nav-progress li.disabled.active ~ li:before {
  display: none;
}
.nav-progress li.disabled.active ~ li:after {
  display: none;
}

.cookie-notice .cn-learn-more {
  color: #2F2F2F !important;
  font-weight: 500 !important;
}
.cookie-notice .cn-learn-more:hover {
  color: #5d5d5d !important;
  font-weight: 500 !important;
}
.cookie-notice .cn-buttons .cm-btn-danger {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  font-weight: 500 !important;
  background-color: transparent !important;
  color: #2F2F2F !important;
}
.cookie-notice .cn-buttons .cm-btn-danger:hover, .cookie-notice .cn-buttons .cm-btn-danger:active, .cookie-notice .cn-buttons .cm-btn-danger:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-notice .cn-buttons .cm-btn-danger {
    white-space: normal !important;
  }
}
.cookie-notice .cn-buttons .cm-btn-danger:hover {
  color: #5d5d5d !important;
}
.cookie-notice .cn-buttons .cm-btn-success {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  border: 2px solid #2F2F2F !important;
  background-color: #2F2F2F !important;
  font-weight: 500 !important;
}
.cookie-notice .cn-buttons .cm-btn-success:hover, .cookie-notice .cn-buttons .cm-btn-success:active, .cookie-notice .cn-buttons .cm-btn-success:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-notice .cn-buttons .cm-btn-success {
    white-space: normal !important;
  }
}
.cookie-notice .cn-buttons .cm-btn-success:hover {
  border: 2px solid #5d5d5d !important;
  background-color: #5d5d5d !important;
}

.cookie-modal .cm-footer-buttons .cm-btn-decline {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  font-weight: 500 !important;
  background-color: transparent !important;
  color: #2F2F2F !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-decline:hover, .cookie-modal .cm-footer-buttons .cm-btn-decline:active, .cookie-modal .cm-footer-buttons .cm-btn-decline:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-footer-buttons .cm-btn-decline {
    white-space: normal !important;
  }
}
.cookie-modal .cm-footer-buttons .cm-btn-decline:hover {
  color: #5d5d5d !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-success {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  border: 2px solid #106DE5 !important;
  background-color: #106DE5 !important;
  font-weight: 500 !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-success:hover, .cookie-modal .cm-footer-buttons .cm-btn-success:active, .cookie-modal .cm-footer-buttons .cm-btn-success:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-footer-buttons .cm-btn-success {
    white-space: normal !important;
  }
}
.cookie-modal .cm-footer-buttons .cm-btn-success:hover {
  border: 2px solid #000 !important;
  background-color: #000 !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-success.cm-btn-info {
  border: 2px solid #106DE5 !important;
  background-color: transparent !important;
  color: #106DE5 !important;
}
.cookie-modal .cm-footer-buttons .cm-btn-success.cm-btn-info:hover {
  text-decoration: none !important;
  border: 2px solid #000 !important;
  color: #000 !important;
}
.cookie-modal a {
  color: #106DE5 !important;
}

.line-header {
  padding: 0;
  height: 90px;
  background-color: #fff;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
@media (max-width: 991px) {
  .line-header {
    /*
    height: 0;
    top: -100%;
    overflow: hidden;
    bottom: 100%;
    display: block;
    z-index: 99999999;
    */
  }
}
.line-header.opened .container .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger {
  opacity: 0;
}
.line-header .container-fluid {
  /*
  @include max-md {
  	padding-left: 0;
  }
  */
}
.line-header .container-fluid .row-fluid {
  display: flex;
  justify-content: flex-end;
  position: relative;
  bottom: 6px;
  margin-top: 15px;
}
.line-header .container-fluid .row-fluid .zone-html {
  width: fit-content;
}
.line-header .container-fluid .row-fluid .zone-html:nth-child(1) {
  z-index: 9999;
  padding-left: 15px;
  flex-grow: 2;
}
.line-header .container-fluid .row-fluid .zone-html:nth-child(1) .content img {
  max-width: 230px;
}
.line-header .container-fluid .row-fluid .zone-html:nth-child(2) {
  padding-right: 0;
}
.line-header .container-fluid .row-fluid .zone-html:nth-child(2) .content {
  height: 70px;
  display: flex;
  align-items: center;
}
.line-header .container-fluid .row-fluid .zone-html:nth-child(2) .content p {
  text-align: right;
  margin-bottom: 0;
  min-width: 120px;
}
.line-header .container-fluid .row-fluid .zone-html:nth-child(2) .content p a {
  width: fit-content;
  font-size: 14px;
  margin: 0;
  color: #000;
}
.line-header .container-fluid .row-fluid .zone-html:nth-child(2) .content p a:hover {
  color: #106DE5;
}
.line-header .container-fluid .row-fluid .zone-header {
  padding-top: 7px;
  padding-right: 15px;
  width: fit-content;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 0 0 0;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom {
  margin-right: 10px;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom p {
  width: fit-content;
  font-size: 14px;
  margin: 0;
  text-align: left;
  float: left;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .btn-secondary {
  margin: 0 24px !important;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger {
  overflow: hidden;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.5s;
}
@media (min-width: 992px) {
  .line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger {
    display: none;
  }
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger span {
  width: 17px;
  height: 3px;
  background-color: #000;
  color: transparent;
  display: block;
  line-height: 0;
  text-indent: -9999px;
  margin-top: 5px;
  transition: 0.5s;
  border-radius: 5px;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger span:nth-child(2) {
  width: 24px;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger:hover, .line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger:focus {
  cursor: pointer;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger:hover span, .line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger:focus span {
  background-color: #000;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login {
  margin-left: 26px;
  padding-bottom: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login {
    display: none;
  }
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login .member-greeting {
  font-size: 16px !important;
  color: #3b4180 !important;
  font-weight: 400 !important;
  text-transform: none !important;
  line-height: 15px !important;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  vertical-align: text-bottom;
  line-height: 15px;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a:hover {
  color: #000;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login {
  border: 0;
  padding: 0;
  height: auto;
  text-transform: capitalize;
  background-color: transparent;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login:hover {
  color: #106DE5;
  text-decoration: none;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  background-color: #fff;
  color: #106DE5;
  transition: all 150ms;
  border: 1px solid #106DE5;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:hover, .line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:active, .line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register {
    white-space: normal !important;
  }
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:hover, .line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:active, .line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:focus {
  background-color: #106DE5;
  border: 1px solid #fff;
  color: #fff;
}
.line-header .container-fluid .row-fluid .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login .separator {
  height: 4px;
  width: 36px;
}

body.member--isConnected .header-ext-login {
  flex-direction: row !important;
}

.line-infolettre {
  border-top: 1px solid #ccc;
  background-color: #f4f4f4;
  padding: 90px 0;
}
.line-infolettre .container .row {
  padding-bottom: 60px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 991px) {
  .line-infolettre .container .row .zone-html:first-child {
    width: 100%;
  }
}
.line-infolettre .container .row .zone-html:first-child .content {
  padding-right: 60px;
}
@media (max-width: 767px) {
  .line-infolettre .container .row .zone-html:first-child .content {
    padding-right: 0;
  }
}
.line-infolettre .container .row .zone-html:first-child .content h2 {
  line-height: 65px;
}
@media (max-width: 991px) {
  .line-infolettre .container .row .zone-html:first-child .content h2 {
    line-height: 45px;
  }
}
@media (max-width: 991px) {
  .line-infolettre .container .row .zone-html:last-child {
    width: 100%;
  }
}
.line-infolettre .container .row .zone-html:last-child .content img {
  position: relative;
  left: -50px;
  padding: 16px 0;
}
@media (max-width: 991px) {
  .line-infolettre .container .row .zone-html:last-child .content img {
    left: 0;
  }
}

.line-footer-1 {
  border-bottom: 1px solid #ccc;
  padding: 45px 0 20px 0;
}
.line-footer-1 .container .row {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .line-footer-1 .container .row {
    flex-direction: column;
  }
}
.line-footer-1 .container .row .zone-html:first-child .content img {
  max-width: 320px;
}
.line-footer-1 .container .row .zone-html:last-child .content {
  display: flex;
  text-align: right;
}
.line-footer-1 .container .row .zone-html:last-child .content img {
  margin-right: 16px;
}
.line-footer-1 .container .row .zone-html:last-child .content a .up {
  display: inline-block;
}
.line-footer-1 .container .row .zone-html:last-child .content a .hover {
  display: none;
}
.line-footer-1 .container .row .zone-html:last-child .content a:hover .up, .line-footer-1 .container .row .zone-html:last-child .content a:active .up, .line-footer-1 .container .row .zone-html:last-child .content a:focus .up {
  display: none;
}
.line-footer-1 .container .row .zone-html:last-child .content a:hover .hover, .line-footer-1 .container .row .zone-html:last-child .content a:active .hover, .line-footer-1 .container .row .zone-html:last-child .content a:focus .hover {
  display: inline-block;
}

.line-footer-2 {
  padding-top: 75px;
  padding-bottom: 45px;
  border-bottom: 1px solid #ccc;
}
.line-footer-2 .container .row .zone-html .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .line-footer-2 .container .row .zone-html .content {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .line-footer-2 .container .row .zone-html .content {
    flex-direction: column;
  }
}
.line-footer-2 .container .row .zone-html .content div.footer-box {
  width: fit-content;
}
@media (max-width: 991px) {
  .line-footer-2 .container .row .zone-html .content div.footer-box {
    width: 33%;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .line-footer-2 .container .row .zone-html .content div.footer-box {
    width: 100%;
    padding-right: 0;
    margin-bottom: 32px;
    text-align: center;
  }
}
.line-footer-2 .container .row .zone-html .content div.footer-box p {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000;
}
.line-footer-2 .container .row .zone-html .content div.footer-box a {
  color: #000 !important;
}
.line-footer-2 .container .row .zone-html .content div.footer-box a:hover {
  color: #106DE5 !important;
}
@media (max-width: 991px) {
  .line-footer-2 .container .row .zone-html .content div.footer-box:last-child {
    width: 100%;
    display: flex;
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .line-footer-2 .container .row .zone-html .content div.footer-box:last-child {
    flex-direction: column;
  }
}
.line-footer-2 .container .row .zone-html .content div.footer-box:last-child p {
  margin-bottom: 0;
}
.line-footer-2 .container .row .zone-html .content div.footer-box:last-child p a.btn {
  margin-top: 0;
}
.line-footer-2 .container .row .zone-html .content div.footer-box:last-child p a.btn:hover, .line-footer-2 .container .row .zone-html .content div.footer-box:last-child p a.btn:focus, .line-footer-2 .container .row .zone-html .content div.footer-box:last-child p a.btn:active {
  color: #fff !important;
}

.line-footer-3 {
  padding: 32px 0;
}
.line-footer-3 .container .row .zone-html .content {
  text-align: center;
}
.line-footer-3 .container .row .zone-html .content p {
  font-size: 14px;
}

@media (min-width: 992px) {
  .line-menu {
    height: 150px;
    background-color: transparent;
  }
  .line-menu:after {
    display: none;
  }
  .line-menu > .container-fluid {
    transition: top 250ms;
  }
  .line-menu > .container-fluid::before {
    width: 98%;
    height: 150px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    background: linear-gradient(to top, #16509B, #106DE5);
    position: absolute;
  }
  .line-menu > .container-fluid .zone-menu {
    padding: 20px 0 0 0;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-header {
    background-color: transparent !important;
    z-index: 1;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-header .logo {
    display: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-header .donner {
    display: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse {
    border-top: 1px solid rgba(0, 71, 147, 0.3725490196);
    border-bottom: 1px solid rgba(0, 71, 147, 0.3725490196);
    z-index: 10;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .header-ext-login, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .header-ext-custom, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .icn-social {
    display: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav {
    float: right;
    text-align: right;
    background-color: transparent;
    padding-right: 50px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li {
    float: none;
    display: inline-block;
    min-height: 55px;
    padding-left: 20px;
    /* Selector
    &:nth-last-child(2) {
    }
    */
    /* Selector
    &[rel=data-menu-67896] {
    }
    */
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    color: #fff;
    padding: 15px 10px;
    text-transform: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a.dropdown-toggle {
    display: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container {
    display: none !important;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:hover, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:focus, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.active {
    background-color: transparent !important;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:hover a, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:focus a, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.active a {
    color: #fff;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu {
    overflow: hidden;
    box-shadow: 4px 3px 4px -2px rgba(0, 0, 0, 0.3);
    border: none;
    padding: 20px 0;
    border-radius: 8px;
    background-color: #fff;
    overflow: visible;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li a {
    color: #000;
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    text-transform: none;
    padding: 3px 30px !important;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li a:hover, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li a:focus {
    color: #fff !important;
    background-color: transparent;
  }
  .line-menu.homepage .container-fluid::before {
    display: none;
  }
  .line-menu.grey {
    background-color: #f4f4f4;
  }
}
@media (max-width: 991px) {
  .line-menu {
    background-color: #fff;
    padding: 0;
    height: 100px;
  }
  .line-menu.menuopened > .container-fluid {
    background-color: #fff !important;
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
  }
  .line-menu.menuopened > .container-fluid .icon-bar {
    background-color: #106DE5 !important;
  }
  .line-menu > .container-fluid {
    width: 100% !important;
    padding-left: 30px;
    padding-right: 30px;
  }
  .line-menu > .container-fluid .zone-html {
    width: 70%;
    height: 100px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .line-menu > .container-fluid .zone-html a img {
    max-width: 230px;
  }
  .line-menu > .container-fluid .zone-menu {
    padding: 0;
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .line-menu > .container-fluid .zone-menu .navbar {
    z-index: 1;
  }
  .line-menu > .container-fluid .zone-menu .navbar::before, .line-menu > .container-fluid .zone-menu .navbar::after {
    display: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-header .logo {
    flex-grow: 3;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-header .logo img {
    max-width: 200px;
    padding-left: 30px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-header .donner {
    flex-grow: 1;
    max-width: 50px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-header .navbar-toggle {
    flex-grow: 1;
    margin-top: 25px;
    margin-right: 35px;
    margin-bottom: 25px;
    max-width: 50px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-header .navbar-toggle .icon-bar {
    background-color: #106DE5;
    width: 40px;
    border-radius: 0px;
    height: 2px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-header .navbar-toggle.collapsed .icon-bar {
    height: 2px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-header .navbar-toggle.collapsed .icon-bar + .icon-bar {
    margin-top: 8px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-header .navbar-toggle.collapsed > span:last-child {
    display: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse {
    transition: height 150ms linear;
    border-color: #fff;
    overflow-x: hidden;
    height: 0;
    width: 100%;
    background-color: #fff;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse.collapse.in {
    height: 100vh;
    width: 100%;
    padding-bottom: 0;
    overflow-x: hidden;
    border: none;
    box-shadow: none;
    border-color: #fff;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav {
    background-color: #fff;
    float: none;
    text-align: left;
    padding: 0 50px 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li {
    width: 100%;
    display: block;
    text-align: left;
    background-color: transparent;
    border-bottom: 1px solid #ccc;
    padding: 0;
    min-height: 60px;
    /* JQuery copy social to mobile menu
    &.menu-social-container {
        order: 20;
        border-bottom: 0;
        padding-top: 40px;
        table {
            width: 220px!important;
            margin-left: auto;
            margin-right: auto;
            td {
                text-align: center;
                a {
                    padding: 0;
                    img {
                        width: 52px!important;
                        height: 52px!important;
                    }
                }
            }
        }
    }*/
    /* Selector
    &:nth-last-child(2) {
    }
    */
    /* Selector
    &[rel=data-menu-67896] {
    }
    */
    /* JQuery copy social to mobile menu*/
    /* JQuery copy Connexion to mobile menu*/
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:before {
    content: "";
    background-image: url(https://cdn.ca.yapla.com/company/CPYXY5pcsfVTdJxtOSKN2gQ3m/asset/images/Logos%20et%20Icons/menumobilearrow.svg);
    height: 29px;
    width: 35px;
    background-size: contain;
    display: block;
    position: absolute;
    left: 0;
    top: 15px;
    display: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    color: #106DE5;
    padding: 19px 0 5px 0;
    text-transform: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a:hover, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a:focus {
    color: #000 !important;
    background-color: transparent;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a.dropdown-toggle {
    display: block;
    text-align: right;
    margin-top: -46px;
    height: 60px !important;
    padding: 0 !important;
    width: 100%;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li a.dropdown-toggle .caret {
    content: "";
    width: 15px;
    height: 15px;
    margin-top: 30px;
    right: 10px !important;
    top: 17px !important;
    position: initial !important;
    display: block;
    float: right;
    background-image: url("https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/caret-blue.svg");
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container {
    border-bottom: 0;
    text-align: center;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links {
    display: block !important;
    order: 3;
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links a.social-link {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-bottom: -2px;
    background-size: cover !important;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links a.social-link span {
    display: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links a.social-link.facebook {
    background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/fb-round.svg") center center no-repeat;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links a.social-link.linkedin {
    background: url("https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/linkedin-rond.svg") center center no-repeat;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links a.social-link:hover {
    filter: brightness(4) hue-rotate(-244deg);
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-social-container .header-ext-social-links a.social-link:not(:first-child) {
    margin-left: 18px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container {
    text-align: center;
    border-bottom: 0;
    min-height: 50px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login .member-greeting {
    display: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    margin-right: 0;
    margin-bottom: 10px !important;
    text-transform: initial !important;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a.member-myprofile {
    height: 47px !important;
    padding: 0px 30px !important;
    background-color: #106DE5 !important;
    color: #fff !important;
    transition: all 150ms !important;
    border: 1px solid #106DE5 !important;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a.member-myprofile:hover, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a.member-myprofile:active, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login a.member-myprofile:focus {
    text-decoration: none !important;
    background-color: transparent !important;
    border: 1px solid #106DE5 !important;
    color: #106DE5 !important;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.menu-login-container .header-ext-login .separator {
    display: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.open .dropdown-toggle .caret {
    transform: rotate(-90deg);
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.open .dropdown-menu {
    max-height: 800px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:hover a, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li:focus a, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li.active a {
    color: #106DE5;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu {
    overflow: hidden;
    box-shadow: none;
    border: none;
    display: block !important;
    transition: max-height 500ms;
    background-color: transparent;
    height: auto;
    max-height: 0;
    padding: 0 10px !important;
    margin-bottom: 0;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu.dropdown-menu-level-2 li.active, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu.dropdown-menu-level-2 li:hover, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu.dropdown-menu-level-3 li.active, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu.dropdown-menu-level-3 li:hover {
    background-color: #fff;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li {
    width: 100%;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li:last-child {
    padding-bottom: 40px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li a {
    position: relative;
    font-size: 16px;
    line-height: 23px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
    color: #106DE5;
    padding: 10px 0 5px 0;
    text-transform: none;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li a:hover, .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li a:focus {
    color: #106DE5 !important;
    background-color: transparent;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li.open .dropdown-menu {
    padding: 10px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .nav.navbar-nav > li .dropdown-menu li.active:hover a {
    color: #106DE5;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .header-ext-login {
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .header-ext-custom {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    padding-left: 30px;
    padding-right: 30px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .header-ext-custom p {
    width: fit-content;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .header-ext-custom p a.btn-donner {
    color: #fff !important;
    margin-right: 15px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .icn-social {
    padding-left: 30px;
    padding-right: 30px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .icn-social a {
    max-width: 36px;
  }
  .line-menu > .container-fluid .zone-menu .navbar .navbar-collapse .icn-social a:nth-child(2) {
    padding: 0 16px;
  }
  .overflowhidden .line-menu:not(.sticked) .navbar-header {
    height: 100px;
  }
  .overflowhidden .line-menu > .container-fluid {
    height: 100px;
    border-bottom: none;
  }
  .overflowhidden .line-menu > .container-fluid .zone-image a {
    margin-left: 5px;
  }
}
@media (min-width: 992px) {
  .line-menu:not(.sticked, .menuopened) > .container-fluid, .line-header:not(.sticked, .menuopened) > .container-fluid {
    top: -100px;
    position: static;
  }
  .line-menu.sticked > .container-fluid::before, .line-header.sticked > .container-fluid::before {
    display: none;
  }
  .line-menu.sticked > .container-fluid > .row .zone-html, .line-header.sticked > .container-fluid > .row .zone-html {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .line-menu.sticked > .container-fluid > .row .zone-html .content img, .line-header.sticked > .container-fluid > .row .zone-html .content img {
    width: 210px;
  }
  .line-menu.sticked > .container-fluid > .row .zone-menu, .line-header.sticked > .container-fluid > .row .zone-menu {
    padding-right: 0;
    padding-top: 0;
  }
  .line-menu.sticked > .container-fluid > .row .zone-menu .navbar .navbar-collapse, .line-header.sticked > .container-fluid > .row .zone-menu .navbar .navbar-collapse {
    border: 0;
  }
  .line-menu.sticked > .container-fluid > .row .zone-menu .navbar .navbar-collapse .navbar-nav, .line-header.sticked > .container-fluid > .row .zone-menu .navbar .navbar-collapse .navbar-nav {
    margin-top: 8px;
  }
  .line-menu.sticked > .container-fluid > .row .zone-menu .navbar .navbar-collapse .navbar-nav li.menu-type-separator a.dropdown-toggle span.caret, .line-header.sticked > .container-fluid > .row .zone-menu .navbar .navbar-collapse .navbar-nav li.menu-type-separator a.dropdown-toggle span.caret {
    top: 5px !important;
  }
  .line-menu.sticked > .container-fluid > .row .zone-menu .navbar .navbar-collapse .navbar-nav > li > a, .line-header.sticked > .container-fluid > .row .zone-menu .navbar .navbar-collapse .navbar-nav > li > a {
    padding: 15px 10px;
  }
  .line-menu.sticked > .container-fluid > .row .zone-menu .navbar .navbar-collapse .navbar-nav li.menu-type-separator a.dropdown-toggle span.caret, .line-header.sticked > .container-fluid > .row .zone-menu .navbar .navbar-collapse .navbar-nav li.menu-type-separator a.dropdown-toggle span.caret {
    top: 5px !important;
  }
  .line-menu.sticked:not(.menuopened) > .container-fluid, .line-header.sticked:not(.menuopened) > .container-fluid {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    padding: 0 45px;
    border-bottom: 0;
    z-index: 9999;
  }
  .line-menu.sticked:not(.menuopened) > .container-fluid .row, .line-header.sticked:not(.menuopened) > .container-fluid .row {
    align-items: center;
  }
  .line-menu.sticked:not(.menuopened) > .container-fluid .row .zone-html .content, .line-header.sticked:not(.menuopened) > .container-fluid .row .zone-html .content {
    padding-top: 8px;
  }
  .line-header.sticked {
    height: 70px;
  }
  .line-header.sticked:not(.menuopened) > .container-fluid {
    background-color: #fff !important;
  }
  .line-menu.sticked {
    height: 70px;
  }
  .line-menu.sticked:not(.menuopened) > .container-fluid {
    background-color: #106DE5 !important;
    top: 85px;
    z-index: 9998;
  }
  .line-menu.sticked:not(.menuopened) > .container-fluid .row {
    height: 70px;
  }
}
@media (max-width: 991px) {
  .line-menu:not(.sticked, .menuopened) > .container-fluid, .line-header:not(.sticked, .menuopened) > .container-fluid {
    top: -100px;
    position: static;
    height: 0;
    padding-left: 45px;
    padding-right: 47px;
  }
  .line-menu.sticked, .line-header.sticked {
    height: 100px;
  }
  .line-menu.sticked > .container-fluid > .row .zone-html .content img, .line-header.sticked > .container-fluid > .row .zone-html .content img {
    width: 210px;
  }
  .line-menu.sticked > .container-fluid > .row .zone-menu .navbar-toggle, .line-header.sticked > .container-fluid > .row .zone-menu .navbar-toggle {
    margin-right: 30px !important;
    margin-top: 30px;
  }
  .line-menu.sticked > .container-fluid > .row .zone-menu .navbar .navbar-collapse.collapse.in, .line-header.sticked > .container-fluid > .row .zone-menu .navbar .navbar-collapse.collapse.in {
    height: 100vh;
  }
  .line-menu.sticked > .container-fluid > .row .zone-menu .navbar .navbar-nav, .line-header.sticked > .container-fluid > .row .zone-menu .navbar .navbar-nav {
    margin-top: 8px;
  }
  .line-menu.sticked > .container-fluid > .row .zone-menu .navbar .navbar-nav li.menu-type-separator a.dropdown-toggle span.caret, .line-header.sticked > .container-fluid > .row .zone-menu .navbar .navbar-nav li.menu-type-separator a.dropdown-toggle span.caret {
    top: 5px !important;
  }
  .line-menu.sticked:not(.menuopened) > .container-fluid, .line-header.sticked:not(.menuopened) > .container-fluid {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    padding: 0 45px;
    border-bottom: 1px solid #E4E4E4;
    transition-property: top;
    transition-duration: 0.3s;
  }
  .line-menu.sticked:not(.menuopened) > .container-fluid .zone-html .content, .line-header.sticked:not(.menuopened) > .container-fluid .zone-html .content {
    padding-top: 8px;
  }
  .line-menu.sticked:not(.menuopened) > .container-fluid .zone-html .content img, .line-header.sticked:not(.menuopened) > .container-fluid .zone-html .content img {
    max-width: 250px;
  }
  .line-menu.sticked.menuopened > .container-fluid, .line-header.sticked.menuopened > .container-fluid {
    position: fixed;
    background-color: #fff;
    padding-left: 45px;
    padding-right: 47px;
    height: 120px;
  }
  .line-menu.sticked.menuopened .zone-html .content, .line-header.sticked.menuopened .zone-html .content {
    padding-top: 15px;
  }
  .line-menu.sticked.menuopened .zone-html .content img, .line-header.sticked.menuopened .zone-html .content img {
    transition: width 250ms;
  }
  .line-menu.sticked.menuopened .zone-menu .navbar-toggle, .line-header.sticked.menuopened .zone-menu .navbar-toggle {
    margin-top: 30px !important;
    margin-bottom: 40px !important;
  }
  .line-header {
    display: none;
  }
  .line-menu.sticked:not(.menuopened) > .container-fluid {
    top: 0px !important;
    z-index: 9998;
  }
}
/* OPTION - Hide munu item when logged
body {
	&.member--isConnected {
		.nav.navbar-nav {
			> li {
				&[rel=data-menu-67910] {
					display: none!important;
				}
			}
		}
	}
}
*/
/*@import "menu_v1/header.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: #000;
}
.article-main .container .row .zone-article .mod-article__wrapper {
  max-width: 920px;
}
.article-main .container .row .zone-article .mod-article__wrapper .mod-article__title {
  margin-top: 70px;
  margin-bottom: 56px;
  color: #106DE5;
  padding-bottom: 80px;
  border-bottom: 1px solid #ccc;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__img {
  margin-bottom: 78px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content p {
  font-size: 20px !important;
  line-height: 25px !important;
  font-weight: 400 !important;
  margin-bottom: 15px !important;
  color: #000 !important;
}
@media (max-width: 991px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content p {
    font-size: 16px !important;
    line-height: 22px !important;
  }
}
@media (max-width: 767px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content p {
    font-size: 18px !important;
    line-height: 23px !important;
  }
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content p span {
  font-size: 20px !important;
  line-height: 25px !important;
  font-weight: 400 !important;
  margin-bottom: 15px !important;
  color: #000 !important;
}
@media (max-width: 991px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content p span {
    font-size: 16px !important;
    line-height: 22px !important;
  }
}
@media (max-width: 767px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content p span {
    font-size: 18px !important;
    line-height: 23px !important;
  }
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
  color: #16509B;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content .quote {
  font-size: 36px;
  line-height: 44px;
  font-weight: 300;
  text-transform: initial;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 64px;
  border-left: 11px solid #106DE5;
}
@media (max-width: 991px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content .quote {
    font-size: 30px;
    line-height: 37px;
  }
}
.article-main.legal {
  margin-top: 50px;
  margin-bottom: 80px;
}
.article-main.legal .container .row .zone-article .mod-article__content h2 {
  font-size: 30px !important;
  line-height: 35px !important;
  margin-bottom: 16px !important;
  margin-top: 40px;
}
.article-main.legal .container .row .zone-article .mod-article__content h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
  color: #16509B;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .article-main.legal .container .row .zone-article .mod-article__content h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-article-retour {
  padding-top: 45px;
  padding-bottom: 90px;
}
.line-article-retour .container .row .zone-html .content a {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  height: 47px !important;
  padding: 0px 30px !important;
  background-color: #106DE5 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: 1px solid #106DE5 !important;
}
.line-article-retour .container .row .zone-html .content a:hover, .line-article-retour .container .row .zone-html .content a:active, .line-article-retour .container .row .zone-html .content a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-article-retour .container .row .zone-html .content a {
    white-space: normal !important;
  }
}
.line-article-retour .container .row .zone-html .content a:hover, .line-article-retour .container .row .zone-html .content a:active, .line-article-retour .container .row .zone-html .content a:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #106DE5 !important;
  color: #106DE5 !important;
}

.zone-news .search-form {
  padding-bottom: 85px;
}
.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: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #000;
  text-transform: initial;
  margin-bottom: 20px;
  margin-bottom: 0;
  text-decoration: none;
  margin-left: 5px;
}
.zone-news #news_content.news-mosaic .row > div a.news-category:hover {
  text-decoration: none;
  color: #106DE5;
}
.zone-news #news_content.news-mosaic .row > div p.news-published-date.e-date {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #000;
  text-transform: initial;
  margin-bottom: 20px;
  margin-bottom: 0;
  width: fit-content;
  float: left;
}
.zone-news #news_content.news-mosaic .row > div p.news-published-date.e-date::after {
  content: " - ";
}
.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: #000;
  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: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  background-color: #106DE5;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #106DE5;
  /*margin-top: 0;*/
  margin-top: 7px;
}
.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: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: 1px solid #106DE5;
  color: #106DE5;
}

/* 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;
}
.line-zone-membre {
  background-color: #f4f4f4;
}
.line-zone-membre .zone-login {
  background-color: #EFF0F4;
  padding: 64px;
}
@media (max-width: 767px) {
  .line-zone-membre .zone-login {
    padding: 64px 32px;
  }
}
.line-zone-membre .zone-member .member-login-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .line-zone-membre .zone-member .member-login-wrapper {
    align-items: center;
  }
}
.line-zone-membre .zone-member .member-login-wrapper h1 {
  margin-bottom: 64px;
  text-align: center;
  color: #106DE5;
}
.line-zone-membre .zone-member .member-login-wrapper #profile_login_form {
  width: 50%;
}
@media (max-width: 767px) {
  .line-zone-membre .zone-member .member-login-wrapper #profile_login_form {
    width: 100%;
  }
}
.line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form div.form-element-email .col-md-12 #profile-email {
  background-color: #fff !important;
}
.line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form div.form-element-password .col-md-12 #profile-password {
  background-color: #fff !important;
}
.line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type {
  padding: 8px 0 64px 0;
  text-align: right;
}
@media (max-width: 767px) {
  .line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type {
    text-align: center;
  }
}
.line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type a.reset-password {
  text-decoration: none;
}
.line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type a.reset-password:hover {
  color: #106DE5;
}
.line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form input#submit {
  height: 47px !important;
  padding: 0px 30px !important;
  background-color: #106DE5 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: 1px solid #106DE5 !important;
  text-align: center;
}
.line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form input#submit:hover, .line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form input#submit:active, .line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form input#submit:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #106DE5 !important;
  color: #106DE5 !important;
}
.line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription {
  margin-right: 16px;
  background-color: #fff;
  color: #106DE5;
  transition: all 150ms;
  border: 1px solid #106DE5;
  text-align: center;
}
.line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:hover, .line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:active, .line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:focus {
  background-color: #106DE5;
  border: 1px solid #fff;
  color: #fff;
}
@media (max-width: 991px) {
  .line-zone-membre .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription {
    margin-right: 0;
  }
}
.line-zone-membre .zone-member .member-resetpassword-wrapper {
  padding-top: 70px;
}
.line-zone-membre .zone-member .member-resetpassword-wrapper h1 {
  font-size: 27px;
}
.line-zone-membre .zone-member .member-resetpassword-wrapper #forget_password_form .form-element-email {
  margin-bottom: 2.8rem;
}
.line-zone-membre .zone-member .member-resetpassword-wrapper #forget_password_form .form-element-email input#login-email {
  background-color: #fff !important;
}
.line-zone-membre .zone-member .member-resetpassword-wrapper #forget_password_form .btn {
  margin-right: 30px;
}
/*Form Connexion Membre*/
#section_432231 {
  max-width: 576px;
}

/* Espace Evenement - Mosaique */
.zone-event .search-form {
  margin-bottom: 56px;
}
.zone-event .search-form .form-element-category select {
  background-color: #fff !important;
  font-size: 16px;
}
.zone-event .search-form .form-element-category select option {
  font-size: 16px;
}
.zone-event .search-form .form-element-keyword .chosen-choices {
  background-color: #fff !important;
  font-size: 16px;
}
.zone-event .events-mosaic .row .col-sm-24 {
  background-color: #fff;
  border-radius: 60px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137);
  padding: 50px;
}
.zone-event .events-mosaic .row .col-sm-24 .item h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
  font-weight: 700;
  color: #16509b;
}
.zone-event .events-mosaic .row .col-sm-24 .item .e-date {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 5px;
  color: #000;
}
.zone-event .events-mosaic .row .col-sm-24 .item hr {
  display: none;
}
.zone-event .events-mosaic .row .col-sm-24 .item .events-mosaic-tags {
  font-weight: 700;
}
.zone-event .events-mosaic .row .col-sm-24 .item .place {
  display: none;
}
.zone-event .events-mosaic .row .col-sm-24 .item .address {
  display: none;
}
.zone-event .events-mosaic .row .col-sm-24 .item .contact {
  display: none;
}
.zone-event .events-mosaic .row .col-sm-24 .item .actions {
  margin-bottom: 0;
}
.zone-event .events-mosaic .row .col-sm-24 .item p:nth-last-child(2) {
  display: none;
}
.zone-event .events-mosaic .row + .row {
  margin-top: 0rem;
}

/*###########################  ESPACE MEMBRE  ###########################*/
.member--isConnected .line-header {
  margin-right: 20px;
}
.member--isConnected .line-menu {
  background-color: #fff;
}
.member--isConnected .line-zone-membre {
  background-color: #fff;
}
.member--isConnected .line-zone-membre .container {
  width: 100%;
  padding-left: 8%;
  padding-right: 8%;
}
@media (max-width: 991px) {
  .member--isConnected .line-zone-membre .container {
    max-width: 100%;
  }
}

.zone-member .sidebar__member-zone {
  width: 33%;
}
@media (max-width: 991px) {
  .zone-member .sidebar__member-zone {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone {
    width: 100%;
  }
}
.zone-member .sidebar__member-zone .member-sidebar__inner {
  background-color: transparent;
  padding: 0px 25px 35px 25px;
  margin-right: 15px;
  border-radius: 3px;
}
@media (max-width: 991px) {
  .zone-member .sidebar__member-zone .member-sidebar__inner {
    padding: 0px;
  }
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone .member-sidebar__inner {
    margin-right: 0;
  }
}
.zone-member .sidebar__member-zone .member-sidebar__member-header {
  padding: 0;
  border: none;
}
.zone-member .sidebar__member-zone .member-sidebar__member-header__title {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #000;
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer {
  padding-left: 0;
  padding-right: 0;
  padding-top: 36px;
  background: transparent;
  border-top: 1px solid #ccc;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  background-color: #fff;
  color: #106DE5;
  transition: all 150ms;
  border: 1px solid #106DE5;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a:hover, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:active, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone .member-sidebar__member-footer a {
    white-space: normal !important;
  }
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a:hover, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:active, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:focus {
  background-color: #106DE5;
  border: 1px solid #fff;
  color: #fff;
}
.zone-member .sidebar__member-zone .member-sidebar__menu {
  padding-left: 0;
  padding-right: 0;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li {
  padding: 0;
  margin-bottom: 5px;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  color: #106DE5;
  text-transform: inherit;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a:hover {
  color: #000;
  text-decoration: none;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li.active {
  display: inline-block;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li.active a {
  color: #000;
}
.zone-member .member {
  width: 66%;
}
@media (max-width: 991px) {
  .zone-member .member {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .zone-member .member {
    width: 100%;
  }
}
.zone-member .member .section {
  margin-bottom: 40px;
}
.zone-member .member .section label.control-label {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #000;
  margin-bottom: 5px;
  margin-top: 10px;
}
.zone-member .member h1 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #000;
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
}
.zone-member .member h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  color: #000;
}
.zone-member .member input#submit {
  float: left !important;
}
.zone-member .member #registration-member .form-withProgress__wrapper, .zone-member .member #registration-member #member_adhesion_form {
  background: #fff !important;
}
.zone-member .input-file .preview #preview img {
  padding-bottom: 0;
  margin-bottom: 25px;
  height: 250px !important;
  width: 250px;
  border-radius: 50%;
  margin-left: auto;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}
.zone-member .preview.row {
  margin-left: 0;
  margin-right: 0;
}
.zone-member .field-object-temp h2 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #000;
}
.zone-member .field-object-temp .object-top-action input {
  margin-right: 16px;
}
.zone-member .field-object-temp .object-main-title {
  margin-bottom: 64px;
}
.zone-member .field-object-temp .object-main-title h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 300;
  text-transform: initial;
}
@media (max-width: 991px) {
  .zone-member .field-object-temp .object-main-title h2 {
    font-size: 30px;
    line-height: 37px;
  }
}
.zone-member .field-object-temp .field-object-next-element, .zone-member .field-object-temp .field-object-prev-element {
  height: 47px !important;
  padding: 0px 30px !important;
  background-color: #106DE5 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: 1px solid #106DE5 !important;
}
.zone-member .field-object-temp .field-object-next-element:hover, .zone-member .field-object-temp .field-object-next-element:active, .zone-member .field-object-temp .field-object-next-element:focus, .zone-member .field-object-temp .field-object-prev-element:hover, .zone-member .field-object-temp .field-object-prev-element:active, .zone-member .field-object-temp .field-object-prev-element:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #106DE5 !important;
  color: #106DE5 !important;
}
.zone-member .field-object-temp .crm-entity__info-wrapper {
  border: 1px solid #dddddd;
}
.zone-member .field-object-temp .crm-entity__info-wrapper .section-title-toggle {
  display: none;
}
.zone-member .field-object-temp .list-group__wrapper .list-group__title {
  border: 1px solid #dddddd;
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  text-transform: initial;
}
@media (max-width: 991px) {
  .zone-member .field-object-temp .list-group__wrapper .list-group__title {
    font-size: 22px;
    line-height: 27px;
  }
}
.zone-member .field-object-temp .object-form-action {
  margin-bottom: 32px;
}
.zone-member .field-object-temp .object-form-action a.btn {
  margin-top: 0 !important;
}

/*É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 - Module Donnes*/
.zone-crm {
  padding: 0;
}
/*###########################  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: #000;
  font-weight: 500;
  padding: 0 10px;
}
.line-breadcrumbs .zone-breadcrumbs ul li.active {
  color: #106DE5;
}

.zone-donation {
  padding-top: 60px;
  padding-bottom: 100px;
}
.zone-donation > h2 {
  display: none;
}
.zone-donation .campaign-header {
  margin-bottom: 0;
}
.zone-donation .campaign-details {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .zone-donation .campaign-details {
    padding-bottom: 60px;
  }
}
.zone-donation .campaign-details::after {
  content: " ";
  position: relative;
  display: block;
  width: 82%;
  height: 1px;
  background-color: #ccc;
  margin-top: 0px;
  float: right;
}
@media (max-width: 767px) {
  .zone-donation .campaign-details::after {
    width: 63%;
  }
}
.zone-donation .campaign-details h1 {
  color: #106DE5;
}
.zone-donation .campaign-details h1::after {
  content: " ";
  background: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/big-bubble-arrow.svg) center left;
  background-repeat: no-repeat;
  background-size: 91px;
  position: relative;
  display: block;
  width: 91px;
  height: 91px;
  top: 40px;
}
@media (max-width: 767px) {
  .zone-donation ul#don-form-box .disabled {
    display: none !important;
  }
  .zone-donation ul#don-form-box .active {
    display: flex !important;
    justify-content: center;
  }
}
.zone-donation .don-form-wrapper h4 {
  font-size: 32px;
  line-height: 47px;
  font-weight: 300;
  color: #000;
  padding-top: 32px;
}
@media (max-width: 767px) {
  .zone-donation .don-form-wrapper h4 {
    font-size: 24px;
    line-height: 30px;
  }
}
.zone-donation .don-form-wrapper div.donation-footer-frame button#validate,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  height: 47px !important;
  padding: 0px 30px !important;
  background-color: #106DE5 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: 1px solid #106DE5 !important;
  margin-left: 16px;
}
.zone-donation .don-form-wrapper div.donation-footer-frame button#validate:hover, .zone-donation .don-form-wrapper div.donation-footer-frame button#validate:active, .zone-donation .don-form-wrapper div.donation-footer-frame button#validate:focus,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment:hover,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment:active,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-donation .don-form-wrapper div.donation-footer-frame button#validate,
  .zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment {
    white-space: normal !important;
  }
}
.zone-donation .don-form-wrapper div.donation-footer-frame button#validate:hover, .zone-donation .don-form-wrapper div.donation-footer-frame button#validate:active, .zone-donation .don-form-wrapper div.donation-footer-frame button#validate:focus,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment:hover,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment:active,
.zone-donation .don-form-wrapper div.donation-footer-frame button#external_payment:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #106DE5 !important;
  color: #106DE5 !important;
}
.zone-donation .don-form-wrapper div.donation-footer-frame a.btn-link {
  margin-left: 0 !important;
  border-bottom-color: #16509B !important;
}
.zone-donation .don-form-wrapper div.donation-footer-frame input#submit,
.zone-donation .don-form-wrapper div.donation-footer-frame input#js-btn-submit {
  margin-left: 16px;
  /*
  font-size: 14px;
  border: 1px solid $primary;
  margin: 15px;
  width: fit-content;
  color: #000;
  */
}
@media (max-width: 767px) {
  .zone-donation .don-form-wrapper div.donation-footer-frame input#submit,
  .zone-donation .don-form-wrapper div.donation-footer-frame input#js-btn-submit {
    float: left;
  }
}
.step-donation_infos .line-soutenir {
  padding-top: 90px;
  height: auto;
}
.step-donation_infos .line-soutenir h2 {
  display: block;
  margin-bottom: 0;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step {
  margin: 20px 0;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  height: 47px !important;
  padding: 0px 30px !important;
  background-color: #106DE5 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: 1px solid #106DE5 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  color: #106DE5 !important;
  text-transform: initial;
  padding: 10px 35px;
  margin-top: 10px;
  margin-left: 0;
  background-color: transparent !important;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:hover, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:active, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline {
    white-space: normal !important;
  }
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:hover, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:active, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #106DE5 !important;
  color: #106DE5 !important;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:hover, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:active, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline:focus {
  color: #fff !important;
  background-color: #16509B !important;
  border: 1px solid #16509B !important;
}
@media (max-width: 767px) {
  .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline {
    margin-right: 8px;
  }
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  height: 47px !important;
  padding: 0px 30px !important;
  background-color: #106DE5 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: 1px solid #106DE5 !important;
  padding: 10px 35px;
  margin-left: 0;
  background-color: #106DE5 !important;
  text-transform: initial;
  color: #fff !important;
  pointer-events: none;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:hover, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:active, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active {
    white-space: normal !important;
  }
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:hover, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:active, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #106DE5 !important;
  color: #106DE5 !important;
}
@media (max-width: 767px) {
  .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active {
    margin-right: 8px;
  }
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:hover, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:active, .step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step .radio-inline.radio-active:focus {
  color: #fff !important;
  background-color: #16509B !important;
  border: 1px solid #16509B !important;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-donation_choice_id {
  float: left;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount {
  float: left;
  clear: both;
  padding-top: 24px;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount label {
  display: block;
  font-size: 18px;
  padding-left: 2px;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount .col-md-12 {
  margin-left: 0;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount .col-md-12:after {
  color: #106DE5;
  font-size: 16px;
  line-height: 50px;
  position: absolute;
  top: -5px;
  left: 125px;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfos .rf-section .form-element-custom_amount .col-md-12 #custom_amount {
  width: 150px;
  border-radius: 100px;
  border: 0 !important;
  font-size: inherit;
  height: 40px !important;
  background-color: #fff !important;
  box-shadow: none !important;
  font-size: 16px;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-donation_choice_idrecurrent {
  float: left;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-custom_amountrecurrent {
  float: left;
  clear: both;
  padding-top: 24px;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-custom_amountrecurrent label {
  display: block;
  font-size: 18px;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-custom_amountrecurrent .col-md-12 {
  margin-left: 0;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-custom_amountrecurrent .col-md-12:after {
  color: #106DE5;
  font-size: 16px;
  line-height: 50px;
  position: absolute;
  top: -5px;
  left: 125px;
}
.step-donation_infos .zone-donation .don-form-wrapper .form-donation__info-step #fieldset-AmountInfosrecurrent .rf-section .form-element-custom_amountrecurrent .col-md-12 #custom_amountrecurrent {
  width: 150px;
  border-radius: 100px;
  border: 0 !important;
  font-size: inherit;
  height: 40px !important;
  background-color: #fff !important;
  box-shadow: none !important;
  font-size: 16px;
}

.step-donor_infos .line-soutenir {
  padding-top: 90px;
  height: auto;
}
.step-donor_infos .line-soutenir h2 {
  display: block;
  margin-bottom: 0;
}
.step-donor_infos .zone-donation h1 {
  color: #16509B !important;
}
.step-donor_infos .zone-donation .don-form-wrapper .form-donor-infos-step .section h2.section-title {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  text-transform: initial;
}
@media (max-width: 991px) {
  .step-donor_infos .zone-donation .don-form-wrapper .form-donor-infos-step .section h2.section-title {
    font-size: 22px;
    line-height: 27px;
  }
}
.step-donor_infos .zone-donation .don-form-wrapper .form-donor-infos-step .section .row .col-sm-18 {
  padding-left: 0 !important;
}
.step-donor_infos .zone-donation .don-form-wrapper .form-donor-infos-step .section .row .col-sm-18 textarea {
  border: 1px solid #16509B !important;
}

.step-payment .line-soutenir {
  padding-top: 90px;
  height: auto;
}
.step-payment .line-soutenir h2 {
  display: block;
  margin-bottom: 0;
}
.step-payment .zone-donation h1 {
  color: #16509B !important;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 {
  padding: 20px;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-card_injectedinfo .row {
  padding-left: 16px;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-card_injectedinfo .row .col-sm-20 {
  padding: 0;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-card_injectedinfo .row .col-sm-20 .form-element-card_owner_in .col-md-24 {
  padding: 0;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-section_payment_summary {
  margin-bottom: 0;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-section_payment_summary h4 {
  font-size: 18px;
  padding-top: 0;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-section_payment_summary strong {
  padding-right: 12px;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-section_payment_grand_total .total-amount-section {
  background-color: #fff;
  border: 1px solid #16509B;
  border-radius: 15px;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-section_payment_grand_total .total-amount-section h4.total-amount-price span {
  color: #000 !important;
}
.step-payment .zone-donation .don-form-wrapper #sub_step_3 #fieldset-section_payment_grand_total .total-amount-section h4 {
  padding-top: 16px !important;
}

.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: #EFF0F4;
  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: #000;
  display: block;
}
.zone-community .row .sidebar .jumbotron a {
  display: block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #000;
  text-transform: initial;
  padding-top: 17px;
  padding-bottom: 17px;
}
.zone-community .row .sidebar .jumbotron a:first-of-type {
  border-top: 1px solid #000;
}
.zone-community .row .sidebar .jumbotron a:first-of-type:hover, .zone-community .row .sidebar .jumbotron a:first-of-type:focus {
  color: #000;
  text-decoration: none;
}
.zone-community .row .sidebar .jumbotron a:last-of-type {
  border-top: 1px solid #000;
  height: 125px;
  font-size: 30px;
  line-height: 35px;
  border-radius: 63px;
  padding: 0 112px 0 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: left;
  text-transform: inherit;
  font-weight: 700;
  background-color: #106DE5;
  border: 2px solid #106DE5;
  transition: all 300ms;
}
@media (max-width: 991px) {
  .zone-community .row .sidebar .jumbotron a:last-of-type {
    font-size: 20px;
    padding: 0 100px 0 42px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .zone-community .row .sidebar .jumbotron a:last-of-type {
    font-size: 20px;
    padding: 0 70px 0 42px;
    width: 100%;
    height: 100px;
    justify-content: flex-start;
  }
}
.zone-community .row .sidebar .jumbotron a:last-of-type:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: 60px;
  margin-top: -2px;
  position: relative;
  display: inline-block;
  width: 36px;
  min-width: 36px;
  height: 34px;
  animation-name: none;
}
@media (max-width: 991px) {
  .zone-community .row .sidebar .jumbotron a:last-of-type:after {
    left: 40px;
  }
}
.zone-community .row .sidebar .jumbotron a:last-of-type:hover, .zone-community .row .sidebar .jumbotron a:last-of-type:focus {
  background-color: #fff !important;
  text-decoration: none;
  color: #106DE5;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:hover:after, .zone-community .row .sidebar .jumbotron a:last-of-type:focus:after {
  background: url("https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/arrow_blue.svg");
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-name: bounce_arrow;
  -moz-animation-name: bounce_arrow;
}
.zone-community .row .sidebar .jumbotron a:last-of-type span {
  font-size: 16px;
}
.zone-community .row .sidebar .jumbotron + p {
  font-size: 21px;
  line-height: 26px;
  color: #000;
  font-weight: 700;
  display: block;
  margin-left: 25px;
  margin-bottom: 20px;
}
.zone-community .row .sidebar ul {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 25px 0 15px 0;
  margin-left: 25px;
  margin-right: 25px;
  list-style: none;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.zone-community .row .sidebar ul li {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 9px;
}
.zone-community .row .sidebar ul li a:hover, .zone-community .row .sidebar ul li a:focus {
  color: #000;
  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: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  height: 47px !important;
  padding: 0px 30px !important;
  background-color: #fff !important;
  color: #106DE5 !important;
  transition: all 150ms !important;
  border: 1px solid #106DE5 !important;
  letter-spacing: 0;
}
.zone-community .row .content ul.nav li a:hover, .zone-community .row .content ul.nav li a:active, .zone-community .row .content ul.nav li a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-community .row .content ul.nav li a {
    white-space: normal !important;
  }
}
.zone-community .row .content ul.nav li a:hover, .zone-community .row .content ul.nav li a:active, .zone-community .row .content ul.nav li a:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #106DE5 !important;
  color: #000 !important;
}
.zone-community .row .content ul.nav li.active a {
  font-weight: 600;
  color: #000 !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: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .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: #000;
}
.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: #000;
}
.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: #000 !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;
}

.line-banner {
  padding-top: 60px;
}
.line-banner .container .row .zone-html::after {
  content: " ";
  background: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/big-bubble-arrow.svg) center left;
  background-repeat: no-repeat;
  background-size: 91px;
  position: relative;
  display: block;
  width: 910px;
  height: 91px;
  top: -40px;
}
@media (max-width: 991px) {
  .line-banner .container .row .zone-html::after {
    width: 100%;
  }
}
.line-banner .container .row .zone-html .content::after {
  content: " ";
  position: relative;
  display: block;
  width: 82%;
  height: 1px;
  background-color: #ccc;
  margin-top: 0px;
  float: right;
  z-index: -1;
}
@media (max-width: 767px) {
  .line-banner .container .row .zone-html .content::after {
    width: 68%;
  }
}
.line-banner .container .row .zone-html .content h1 {
  color: #106DE5;
  padding-bottom: 80px;
  word-break: keep-all;
}
@media (max-width: 991px) {
  .line-banner .container .row .zone-html .content h1 br {
    display: none;
  }
}
.line-banner.carrieres {
  padding-bottom: 60px;
}
.line-banner.carrieres .container .row .zone-html:after {
  display: none;
}
.line-banner.carrieres .container .row .content:after {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 60%;
}
@media (max-width: 767px) {
  .line-banner.carrieres .container .row .content:after {
    display: none;
  }
}
@media (max-width: 991px) {
  .line-banner.carrieres .container .row .content:after {
    width: 44%;
  }
}
.line-banner.carrieres .container .row .content h1 {
  padding-bottom: 40px;
}
.line-banner.carrieres .container .row .content p a {
  margin-right: 25px;
}
.line-banner.carrieres .container .row .content p a img.anchor-hover {
  display: none;
}
.line-banner.carrieres .container .row .content p a:hover img.anchor-hover {
  display: inline;
}
.line-banner.carrieres .container .row .content p a:hover img.anchor-up {
  display: none;
}
.line-banner.carrieres .container .row .content p span {
  font-size: 30px;
  line-height: 35px;
  color: #16509B;
}
@media (max-width: 767px) {
  .line-banner.carrieres .container .row .content p span {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .home-header {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .home-header {
    margin-bottom: 330px;
  }
}
.home-header::before {
  content: " ";
  background: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/Homepage-Banner.png) no-repeat;
  background-size: 108%;
  position: relative;
  display: block;
  width: 98%;
  height: auto;
  top: -160px;
  left: 15px;
  padding-top: 56.25%;
  z-index: -1;
}
@media (max-width: 991px) {
  .home-header::before {
    top: 90px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 738px;
  }
}
@media (max-width: 767px) {
  .home-header::before {
    background: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/BG-HomeBanner-Mobile.png) no-repeat;
    min-height: 770px;
    max-width: 360px;
  }
}
.home-header .line-banner.homepage {
  padding-top: 10px;
}
.home-header .line-banner.homepage .container {
  margin-top: -86vh;
  margin-bottom: -100px;
}
@media (max-width: 991px) {
  .home-header .line-banner.homepage .container {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .home-header .line-banner.homepage .container .row {
    max-width: 360px;
    margin: 0 auto;
  }
}
.home-header .line-banner.homepage .container .row .zone-html {
  z-index: 1;
}
@media (max-width: 767px) {
  .home-header .line-banner.homepage .container .row .zone-html {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.home-header .line-banner.homepage .container .row .zone-html::after {
  display: none;
}
@media (max-width: 991px) {
  .home-header .line-banner.homepage .container .row .zone-html .content {
    padding: 25px;
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .home-header .line-banner.homepage .container .row .zone-html .content {
    padding: 30px 0px;
    max-width: 330px;
  }
}
.home-header .line-banner.homepage .container .row .zone-html .content::before {
  display: none;
}
.home-header .line-banner.homepage .container .row .zone-html .content::after {
  display: none;
}
.home-header .line-banner.homepage .container .row .zone-html .content h1 {
  color: #fff;
  max-width: 670px;
  padding-bottom: 0px;
}
.home-header .line-banner.homepage .container .row .zone-html .content h2 {
  font-size: 40px;
  line-height: 47px;
  font-weight: 300;
}
@media (max-width: 991px) {
  .home-header .line-banner.homepage .container .row .zone-html .content h2 {
    font-size: 30px;
    line-height: 37px;
    font-weight: 300;
  }
}
.home-header .line-banner.homepage .container .row .zone-html .content img {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .home-header .line-banner.homepage .container .row .zone-html .content img {
    max-width: 80px;
  }
}

.box-news-article-multiple {
  background-color: #f4f4f4;
  padding-bottom: 100px;
  padding-top: 100px;
  border-bottom: 1px solid #ccc;
}
.box-news-article-multiple .zone-news .search-form {
  padding-bottom: 85px;
}
.box-news-article-multiple .zone-news #news_content.news-mosaic {
  gap: 70px 30px;
}
.box-news-article-multiple .zone-news #news_content.news-mosaic .row > div {
  padding: 50px 55px 60px 55px;
  background-color: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137);
  border-radius: 66px;
}
.box-news-article-multiple .zone-news #news_content.news-mosaic .row > div h3.news-title {
  text-transform: initial;
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
}
.box-news-article-multiple .zone-news #news_content.news-mosaic .row > div h3.news-title a {
  text-decoration: none;
  color: #16509B;
}
.box-news-article-multiple .zone-news #news_content.news-mosaic .row > div h3.news-title a:hover {
  text-decoration: none;
  color: #106DE5;
}
.box-news-article-multiple .zone-news #news_content.news-mosaic .row > div a.news-category:hover {
  text-decoration: none;
}
.box-news-article-multiple .zone-news #news_content.news-mosaic .row > div div.news-intro {
  margin-top: 20px;
}
.box-news-article-multiple .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  background-color: #106DE5;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #106DE5;
  /*margin-top: 0;*/
  margin-top: 20px;
}
.box-news-article-multiple .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:hover, .box-news-article-multiple .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:active, .box-news-article-multiple .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .box-news-article-multiple .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type {
    white-space: normal !important;
  }
}
.box-news-article-multiple .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:hover, .box-news-article-multiple .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:active, .box-news-article-multiple .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):last-of-type:focus {
  background-color: transparent;
  border: 1px solid #106DE5;
  color: #106DE5;
}

.line-img-feature-left {
  background-color: #106DE5;
}
.line-img-feature-left .container .row {
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1199px) {
  .line-img-feature-left .container .row {
    max-height: 650px;
  }
}
@media (max-width: 991px) {
  .line-img-feature-left .container .row {
    max-height: 100%;
  }
}
@media (max-width: 767px) {
  .line-img-feature-left .container .row {
    flex-direction: column;
  }
}
.line-img-feature-left .container .row > div:first-child {
  width: 40%;
  position: absolute;
  left: -1vw;
  padding: 0;
}
@media (max-width: 991px) {
  .line-img-feature-left .container .row > div:first-child {
    width: 50%;
    height: 738px;
    left: 0;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .line-img-feature-left .container .row > div:first-child {
    position: relative;
    margin-top: 0;
    width: 100vw;
    height: auto;
    min-width: 100%;
  }
}
.line-img-feature-left .container .row > div:first-child .content img {
  object-fit: cover;
  object-position: center center;
  max-height: 650px;
  min-height: 650px;
}
@media (max-width: 991px) {
  .line-img-feature-left .container .row > div:first-child .content img {
    min-height: 736px !important;
  }
}
@media (max-width: 767px) {
  .line-img-feature-left .container .row > div:first-child .content img {
    max-height: 300px !important;
    min-height: auto !important;
    width: 100vw !important;
  }
}
.line-img-feature-left .container .row > div:last-child {
  width: 60%;
  float: right;
  padding: 40px 0;
}
@media (max-width: 991px) {
  .line-img-feature-left .container .row > div:last-child {
    width: 50%;
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .line-img-feature-left .container .row > div:last-child {
    width: 100%;
    padding: 50px 15px;
  }
}
@media (max-width: 1199px) {
  .line-img-feature-left .container .row > div:last-child .content {
    padding-left: 50px;
  }
}
@media (max-width: 991px) {
  .line-img-feature-left .container .row > div:last-child .content {
    padding-left: 0;
  }
}
.line-img-feature-left .container .row > div:last-child .content h2 {
  color: #fff;
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .line-img-feature-left .container .row > div:last-child .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-img-feature-left .container .row > div:last-child .content p {
  color: #fff;
}
.line-img-feature-left .container .row > div:last-child .content p:last-child {
  margin-top: 40px;
}

.line-img-feature-right {
  background-color: #16509B;
}
.line-img-feature-right .container .row {
  height: 570px !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .line-img-feature-right .container .row {
    display: flex;
    flex-direction: column-reverse;
    height: 100% !important;
  }
}
.line-img-feature-right .container .row > div:first-child {
  width: 60%;
  float: left;
}
@media (max-width: 991px) {
  .line-img-feature-right .container .row > div:first-child {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .line-img-feature-right .container .row > div:first-child {
    width: 100%;
    float: none;
    padding: 50px 30px;
  }
}
.line-img-feature-right .container .row > div:first-child .content h2 {
  color: #fff;
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .line-img-feature-right .container .row > div:first-child .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-img-feature-right .container .row > div:first-child .content p {
  color: #fff;
}
.line-img-feature-right .container .row > div:first-child .content p:last-child {
  margin-top: 40px;
}
.line-img-feature-right .container .row > div:last-child {
  width: 40%;
  position: absolute;
  right: 0vw;
  padding: 0;
}
@media (max-width: 991px) {
  .line-img-feature-right .container .row > div:last-child {
    width: 50%;
    right: 0;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .line-img-feature-right .container .row > div:last-child {
    position: relative;
    width: 100vw;
    min-width: 100%;
    left: -8px;
    top: -10px;
  }
}
.line-img-feature-right .container .row > div:last-child .content {
  text-align: right;
}
.line-img-feature-right .container .row > div:last-child .content img {
  object-fit: cover;
  object-position: right center;
  min-height: 570px;
  max-height: 570px;
}
@media (max-width: 991px) {
  .line-img-feature-right .container .row > div:last-child .content img {
    min-height: 570px !important;
  }
}
@media (max-width: 767px) {
  .line-img-feature-right .container .row > div:last-child .content img {
    max-height: 230px !important;
    min-height: auto !important;
    min-width: 100vw;
  }
}

.line-page-intro {
  padding-bottom: 100px;
}
.line-page-intro .container .row .zone-html .content {
  margin-top: -50px;
}
.line-page-intro .container .row .zone-html .content img {
  float: right;
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .line-page-intro .container .row .zone-html .content img {
    float: none;
    margin-top: 36px;
    margin-bottom: 36px;
  }
}
.line-page-intro .container .row .zone-html .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
}
.line-page-intro .container .row .zone-html .content .padding-box {
  max-width: 700px;
  clear: both;
}

.line-services-cta {
  padding: 60px 0;
}
@media (max-width: 1199px) {
  .line-services-cta.onebtn .container .row .zone-html:first-child {
    display: none;
  }
}
@media (max-width: 1199px) {
  .line-services-cta.onebtn .container .row .zone-html:last-child {
    max-width: 360px;
  }
}

.line-bottom-nav {
  padding: 60px 0;
}
.line-bottom-nav .container .row .zone-html .content {
  display: flex;
}
@media (max-width: 767px) {
  .line-bottom-nav .container .row .zone-html .content {
    flex-direction: column;
  }
}
.line-bottom-nav .container .row .zone-html .content p {
  text-align: center;
}
.line-bottom-nav .container .row .zone-html .content p a.btn-arrow {
  line-height: normal;
}
.line-bottom-nav .container .row .zone-html .content p:first-child {
  margin-right: 16px;
}

.line-page-intro-img .container .row .zone-html .content img {
  min-width: 82%;
  float: right;
  margin-bottom: 70px;
}
@media (min-width: 992px) {
  .line-page-intro-img .container .row .zone-html .content img {
    margin-top: -45px;
  }
}

.line-page-intro-txt .container .row .zone-html .content {
  max-width: 700px;
}
.line-page-intro-txt .container .row .zone-html .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
}

.line-devenir-form-title {
  background-color: #f4f4f4;
  padding: 80px 0 32px 0;
}
.line-devenir-form-title .container .row .zone-html .content {
  max-width: 768px;
}
.line-devenir-form-title .container .row .zone-html .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-devenir-form-title .container .row .zone-html .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-devenir-form {
  background-color: #f4f4f4;
  padding-bottom: 80px;
}
.btn-donner {
  color: #fff;
  width: 96px;
  height: 47px;
  display: block;
  background-color: #106DE5;
  padding: 15px;
  line-height: 14px;
  font-weight: 500;
  border-radius: 33px;
}
.btn-donner:hover {
  color: #fff;
  background-color: #16509B;
}
.btn-donner::after {
  content: "";
  width: 37px;
  height: 37px;
  display: block;
  background: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/hearth-btn.svg) center center no-repeat;
  background-size: 37px;
  position: relative;
  left: 40px;
  bottom: 24px;
}

#section-footer-search {
  padding: 0 15px;
}

.line-liste-participants .container .row .zone-formbuilder_search #section-footer-search {
  margin-bottom: 50px;
}
.line-liste-participants .container .row .zone-formbuilder_search .search-object-result .tab-pane {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px 50px;
}
@media (max-width: 767px) {
  .line-liste-participants .container .row .zone-formbuilder_search .search-object-result .tab-pane {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 50px 0px;
  }
}
.line-liste-participants .container .row .zone-formbuilder_search .search-object-result .tab-pane > div {
  max-width: 540px;
}
.line-liste-participants .container .row .zone-formbuilder_search .search-object-result .tab-pane > div .box {
  background-color: #fff;
  border-radius: 60px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}
.line-liste-participants .container .row .zone-formbuilder_search .search-object-result .tab-pane > div .box .name {
  font-weight: 600;
  font-size: 18px;
}
.line-liste-participants .container .row .zone-formbuilder_search .search-object-result .tab-pane > div .box .btn {
  margin-left: 50px;
}
.line-liste-participants .container .row .zone-formbuilder_search .search-object-detail-bloc {
  padding-top: 50px;
}
.line-liste-participants .container .row .zone-formbuilder_search .search-object-detail-bloc .formbox {
  margin-bottom: 50px;
}
.line-liste-participants .container .row .zone-formbuilder_search .search-object-detail-bloc .formbox h2 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .line-liste-participants .container .row .zone-formbuilder_search .search-object-detail-bloc .formbox h2 {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-liste-participants .container .row .zone-formbuilder_search .search-object-detail-bloc .formbox .info ul {
  padding-left: 0 !important;
}
.line-liste-participants .container .row .zone-formbuilder_search .search-object-detail-bloc .formbox .info ul li {
  font-size: 16px !important;
  padding-left: 0 !important;
}

.line-rapport-vedette {
  padding-top: 50px;
  padding-bottom: 50px;
}
.line-rapport-vedette .container > .row > div:first-child {
  padding-top: 15px;
}
@media (max-width: 767px) {
  .line-rapport-vedette .container > .row > div:first-child {
    margin-bottom: 45px;
  }
}
@media (min-width: 768px) {
  .line-rapport-vedette .container > .row > div:last-child {
    padding-left: 60px;
  }
}
.line-rapport-vedette .container > .row > div:last-child .mod-article__intro p:first-of-type {
  margin-bottom: 85px;
}
@media (max-width: 767px) {
  .line-rapport-vedette .container > .row > div:last-child .mod-article__intro p:first-of-type {
    margin-bottom: 45px;
  }
}

.line-rapports {
  padding-top: 90px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .line-rapports {
    padding-top: 45px;
  }
}

@media (max-width: 991px) {
  .line-404 {
    padding: 130px 0 10px 0 !important;
  }
}
.line-404 .row > div:first-child .content {
  text-align: center;
}
.line-404 .row > div:first-child .content h1 {
  color: #000;
  font-size: 30px;
}
.line-404 .row > div:first-child .content h1 strong {
  display: block;
  font-size: 200px;
  line-height: 160px;
}
@media (max-width: 991px) {
  .line-404 .row > div:first-child .content h1 strong {
    font-size: 160px;
    line-height: 120px;
  }
}
@media (max-width: 575px) {
  .line-404 .row > div:first-child .content h1 strong {
    font-size: 120px;
    line-height: 100px;
  }
}
@media (max-width: 767px) {
  .line-404 .row > div:last-child .content {
    margin-top: 60px;
    text-align: center;
  }
}
.line-404 .row > div:last-child .content p {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-404 .row > div:last-child .content p {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-accueil-video {
  padding-top: 50px;
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .line-accueil-video {
    padding-bottom: 50px;
  }
}
.line-accueil-video .container .row {
  display: flex;
}
@media (max-width: 767px) {
  .line-accueil-video .container .row {
    flex-direction: column;
  }
}
.line-accueil-video .container .row .zone-html:first-child .content h2 {
  margin-bottom: 36px;
}
.line-accueil-video .container .row .zone-html:first-child .content p:last-child {
  margin-top: 36px;
}
.line-accueil-video .container .row .zone-html:last-child {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .line-accueil-video .container .row .zone-html:last-child {
    padding-top: 50px;
  }
}
.line-accueil-video .container .row .zone-html:last-child .content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.line-accueil-video .container .row .zone-html:last-child .content img {
  max-width: 490px;
  padding-left: 36px;
}
@media (max-width: 1199px) {
  .line-accueil-video .container .row .zone-html:last-child .content img {
    max-width: 360px;
  }
}
@media (max-width: 767px) {
  .line-accueil-video .container .row .zone-html:last-child .content img {
    padding-left: 0;
    max-width: 300px;
  }
}
.line-accueil-video .container .row .zone-html:last-child .content img:hover {
  cursor: pointer;
}
.line-accueil-video .container .row .zone-html:last-child .content strong {
  color: #106DE5;
  font-weight: 700;
  padding-left: 23%;
}
.line-important {
  padding-top: 0px;
  padding-bottom: 80px;
}
@media (max-width: 1199px) {
  .line-important {
    padding-top: 50px;
    padding-bottom: 0px;
    margin-top: -190px;
  }
}
@media (max-width: 767px) {
  .line-important {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0;
  }
}
.line-important .container .row > div .content {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
@media (max-width: 991px) {
  .line-important .container .row > div .content {
    max-width: 90%;
  }
}
@media (max-width: 991px) {
  .line-important .container .row > div .content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    margin-top: 36px;
  }
}
.line-important .container .row > div .content .col-one {
  border-top-left-radius: 19px;
  border-bottom-left-radius: 19px;
  background: #106DE5;
  width: 20%;
  display: flex;
  align-items: center;
  border: 1px solid #106DE5;
}
@media (max-width: 1199px) {
  .line-important .container .row > div .content .col-one {
    width: 28%;
  }
}
@media (max-width: 991px) {
  .line-important .container .row > div .content .col-one {
    width: 100%;
    border-bottom-left-radius: 0;
    border-top-right-radius: 19px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0;
  }
}
.line-important .container .row > div .content .col-one h4 {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .line-important .container .row > div .content .col-one h4 {
    font-size: 28px;
    font-weight: 400;
  }
}
.line-important .container .row > div .content .col-two {
  width: 60%;
  border: 1px solid #106DE5;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .line-important .container .row > div .content .col-two {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .line-important .container .row > div .content .col-two {
    width: 100%;
  }
}
.line-important .container .row > div .content .col-two h5 {
  text-align: center;
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .line-important .container .row > div .content .col-two h5 {
    margin-bottom: 8px;
  }
}
.line-important .container .row > div .content .col-two p {
  color: #000;
}
@media (max-width: 767px) {
  .line-important .container .row > div .content .col-two p {
    text-align: center;
  }
}
.line-important .container .row > div .content .col-three {
  width: 20%;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 35px;
  padding-left: 35px;
  border-top: 1px solid #3faab9;
  border-right: 1px solid #3faab9;
  border-bottom: 1px solid #3faab9;
  border-radius: 0 19px 19px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .line-important .container .row > div .content .col-three {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .line-important .container .row > div .content .col-three {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    border-radius: 0 0 19px 19px;
    border-left: 1px solid #106DE5;
    border-top: none;
    justify-content: center;
  }
}
.line-important .container .row > div .content .col-three p {
  max-width: fit-content;
  margin-bottom: 0;
}
.line-important .container .row > div .content .col-three p .btn {
  margin-top: 0;
  margin-bottom: 0;
}

.line-accueil-service {
  background-color: #f4f4f4;
  padding: 110px 0;
}
@media (max-width: 991px) {
  .line-accueil-service {
    padding: 90px 0;
  }
}
.line-accueil-service .zone-news_flash .news {
  gap: 30px 30px;
}
.line-accueil-service .zone-news_flash .news .row .item {
  margin-left: 0;
  margin-right: 0;
  padding: 40px 5px;
  background-color: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137);
  height: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  border-radius: 66px;
}
@media (max-width: 991px) {
  .line-accueil-service .zone-news_flash .news .row .item {
    padding: 15px;
  }
}
.line-accueil-service .zone-news_flash .news .row .item .itemImage {
  margin-bottom: 0;
  width: 100%;
  position: relative;
  bottom: 35px;
  left: 15px;
}
@media (max-width: 991px) {
  .line-accueil-service .zone-news_flash .news .row .item .itemImage {
    bottom: 12px;
  }
}
.line-accueil-service .zone-news_flash .news .row .item .itemImage::after {
  content: "";
  width: 56%;
  float: right;
  margin-right: 70px;
  height: 1px;
  display: block;
  position: relative;
  top: 85px;
  background-color: #ccc;
}
@media (max-width: 1199px) {
  .line-accueil-service .zone-news_flash .news .row .item .itemImage::after {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .line-accueil-service .zone-news_flash .news .row .item .itemImage::after {
    top: -25px;
    width: 42%;
  }
}
.line-accueil-service .zone-news_flash .news .row .item .itemImage img.e-thumbnail {
  max-width: 135px;
}
.line-accueil-service .zone-news_flash .news .row .item div.intro h3 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  color: #16509B;
  max-width: 364px;
  margin: 0 auto;
  padding-bottom: 36px;
}
.line-accueil-service .zone-news_flash .news .row .item div.intro a {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  height: 47px !important;
  padding: 0px 30px !important;
  background-color: #106DE5 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: 1px solid #106DE5 !important;
}
.line-accueil-service .zone-news_flash .news .row .item div.intro a:hover, .line-accueil-service .zone-news_flash .news .row .item div.intro a:active, .line-accueil-service .zone-news_flash .news .row .item div.intro a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-accueil-service .zone-news_flash .news .row .item div.intro a {
    white-space: normal !important;
  }
}
.line-accueil-service .zone-news_flash .news .row .item div.intro a:hover, .line-accueil-service .zone-news_flash .news .row .item div.intro a:active, .line-accueil-service .zone-news_flash .news .row .item div.intro a:focus {
  text-decoration: none !important;
  background-color: transparent !important;
  border: 1px solid #106DE5 !important;
  color: #106DE5 !important;
}

.line-accueil-news-title {
  padding-top: 100px;
}
.line-accueil-news-title .container .row {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .line-accueil-news-title .container .row {
    flex-direction: column;
  }
}
.line-accueil-news-title .container .row .zone-html:first-child {
  width: 60%;
}
@media (max-width: 991px) {
  .line-accueil-news-title .container .row .zone-html:first-child {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .line-accueil-news-title .container .row .zone-html:first-child {
    width: 100%;
  }
}
.line-accueil-news-title .container .row .zone-html:last-child {
  width: 40%;
}
@media (max-width: 991px) {
  .line-accueil-news-title .container .row .zone-html:last-child {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .line-accueil-news-title .container .row .zone-html:last-child {
    width: 100%;
  }
}
.line-accueil-news-title .container .row .zone-html:last-child .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-accueil-news-title .container .row .zone-html:last-child .content {
    text-align: left;
  }
}

.line-accueil-news {
  padding: 90px 0;
}
@media (max-width: 767px) {
  .line-accueil-news .container .row {
    display: flex;
    flex-direction: column-reverse;
  }
}
.line-accueil-news .container .row .zone-news {
  width: 75%;
  position: relative;
}
@media (max-width: 991px) {
  .line-accueil-news .container .row .zone-news {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .line-accueil-news .container .row .zone-news {
    width: 100%;
  }
}
.line-accueil-news .container .row .zone-news .news-mosaic .row .col-sm-24 {
  border-bottom: 1px solid #ccc !important;
}
.line-accueil-news .container .row .zone-news .news-mosaic .row .col-sm-24 .news-title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-accueil-news .container .row .zone-news .news-mosaic .row .col-sm-24 .news-title {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-accueil-news .container .row .zone-news .news-mosaic .row .col-sm-24 .e-date {
  width: fit-content;
  float: left;
}
.line-accueil-news .container .row .zone-news .news-mosaic .row .col-sm-24 .e-date::after {
  content: " - ";
}
.line-accueil-news .container .row .zone-news .news-mosaic .row .col-sm-24 .news-category {
  margin-left: 5px;
  position: relative;
  bottom: 2px;
}
.line-accueil-news .container .row .zone-news .news-mosaic .row .col-sm-24 .news-category:hover {
  background-color: #106DE5;
}
.line-accueil-news .container .row .zone-news .news-mosaic .row .col-sm-24 > a:not(.news-category):last-of-type {
  margin-top: 28px !important;
  margin-bottom: 56px !important;
}
.line-accueil-news .container .row .zone-html {
  width: 25%;
  margin-top: 70px;
  position: absolute;
  right: -1vw;
  height: 82%;
}
@media (max-width: 991px) {
  .line-accueil-news .container .row .zone-html {
    width: 40%;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .line-accueil-news .container .row .zone-html {
    position: relative;
    margin-top: 0;
    width: 100%;
    left: 0px;
  }
}
.line-accueil-news .container .row .zone-html .content {
  position: relative;
  bottom: 65px;
}
@media (max-width: 767px) {
  .line-accueil-news .container .row .zone-html .content {
    height: 300px;
    overflow: hidden;
  }
}
.line-accueil-news .container .row .zone-html .content img {
  height: 600px !important;
  object-fit: cover;
  object-position: center center;
  float: inline-end;
}
@media (max-width: 767px) {
  .line-accueil-news .container .row .zone-html .content img {
    height: auto !important;
    width: 100% !important;
    margin-top: -260px;
  }
}

.line-contact-adress {
  padding-bottom: 80px;
}
.line-contact-adress .container .row {
  border-bottom: 1px solid #ccc;
}
.line-contact-adress .container .row .zone-html {
  width: 25%;
  position: absolute;
  left: -1vw;
}
@media (max-width: 991px) {
  .line-contact-adress .container .row .zone-html {
    display: none;
  }
}
.line-contact-adress .container .row .zone-html .content img {
  max-width: 400px;
}
.line-contact-adress .container .row .zone-news_flash {
  width: 75%;
  float: right;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .line-contact-adress .container .row .zone-news_flash {
    width: 100%;
  }
}
.line-contact-adress .container .row .zone-news_flash .newsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px 55px;
}
@media (max-width: 991px) {
  .line-contact-adress .container .row .zone-news_flash .newsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 55px;
  }
}
@media (max-width: 767px) {
  .line-contact-adress .container .row .zone-news_flash .newsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 35px 55px;
  }
}
.line-contact-adress .container .row .zone-news_flash .newsList .row {
  margin-top: 0;
  border: 0;
}
.line-contact-adress .container .row .zone-news_flash .newsList .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.line-contact-adress .container .row .zone-news_flash .newsList .row .item .itemImage {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .line-contact-adress .container .row .zone-news_flash .newsList .row .item .itemImage {
    max-width: 300px;
  }
}
.line-contact-adress .container .row .zone-news_flash .newsList .row .item .itemImage img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 160px !important;
  object-fit: cover;
  object-position: center center;
  border-bottom: 5px solid #106DE5;
}
.line-contact-adress .container .row .zone-news_flash .newsList .row .item div.intro h2 {
  font-size: 20px;
  line-height: 25px;
  color: #16509B;
}
.line-contact-adress .container .row .zone-news_flash a.viewAll {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  background-color: transparent;
  color: #106DE5;
  transition: all 150ms;
  border: 1px solid #000;
}
.line-contact-adress .container .row .zone-news_flash a.viewAll:hover, .line-contact-adress .container .row .zone-news_flash a.viewAll:active, .line-contact-adress .container .row .zone-news_flash a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-contact-adress .container .row .zone-news_flash a.viewAll {
    white-space: normal !important;
  }
}
.line-contact-adress .container .row .zone-news_flash a.viewAll:hover, .line-contact-adress .container .row .zone-news_flash a.viewAll:active, .line-contact-adress .container .row .zone-news_flash a.viewAll:focus {
  background-color: #106DE5;
  color: #fff;
  border: 1px solid #106DE5;
}

.line-contact-form-title {
  padding-bottom: 50px;
}
.line-contact-form-title .container .row .zone-html h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-contact-form-title .container .row .zone-html h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-contact-form {
  padding-bottom: 85px;
}
.line-contact-form .container .row .zone-crm {
  max-width: 920px;
}

.line-donner-banner .container .row .zone-html {
  margin-top: -50px;
}
.line-donner-banner .container .row .zone-html .content {
  max-width: 920px;
  float: right;
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .line-donner-banner .container .row .zone-html .content img {
    margin-top: 32px !important;
  }
}

.line-donner-intro .container .row .zone-html .content {
  max-width: 730px;
}
.line-donner-intro .container .row .zone-html .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-donner-intro .container .row .zone-html .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-donner-choix {
  padding-top: 70px;
  padding-bottom: 100px;
}
.line-donner-choix .container .row .zone-news_flash .news .row:last-child .item .intro h2 {
  margin-bottom: 16px;
}
.line-donner-choix .container .row .zone-news_flash .news .row .item {
  display: flex;
}
@media (max-width: 767px) {
  .line-donner-choix .container .row .zone-news_flash .news .row .item {
    flex-direction: column;
  }
}
.line-donner-choix .container .row .zone-news_flash .news .row .item .itemImage {
  min-width: 312px;
}
@media (max-width: 991px) {
  .line-donner-choix .container .row .zone-news_flash .news .row .item .itemImage {
    min-width: 190px;
  }
}
@media (max-width: 767px) {
  .line-donner-choix .container .row .zone-news_flash .news .row .item .itemImage {
    min-width: 100%;
  }
}
.line-donner-choix .container .row .zone-news_flash .news .row .item .intro {
  padding-left: 50px;
}
@media (max-width: 767px) {
  .line-donner-choix .container .row .zone-news_flash .news .row .item .intro {
    padding-left: 0;
  }
}
.line-donner-choix .container .row .zone-news_flash .news .row .item .intro h2 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .line-donner-choix .container .row .zone-news_flash .news .row .item .intro h2 {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-donner-choix .container .row .zone-news_flash .news .row .item .intro h3 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #16509B;
  margin-bottom: 16px;
}

.line-membre-intro {
  padding-bottom: 110px;
}
@media (max-width: 767px) {
  .line-membre-intro {
    padding-bottom: 70px;
  }
}
.line-membre-intro .container .row {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .line-membre-intro .container .row {
    flex-direction: column-reverse;
  }
}
.line-membre-intro .container .row .zone-html:first-child .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
  padding-bottom: 32px;
}
@media (max-width: 991px) {
  .line-membre-intro .container .row .zone-html:first-child .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 767px) {
  .line-membre-intro .container .row .zone-html:last-child {
    padding-bottom: 32px;
  }
}
.line-membre-intro .container .row .zone-html:last-child .content {
  max-width: 510px;
  text-align: right;
}
.line-membre-argument {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .line-membre-argument {
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .line-membre-argument .container .row .zone-html {
    padding-bottom: 32px;
  }
}
.line-membre-argument .container .row .zone-html:first-child .content img {
  max-width: 255px;
}
@media (max-width: 991px) {
  .line-membre-argument .container .row .zone-html:first-child .content img {
    max-width: 100%;
  }
}
.line-membre-argument .container .row .zone-html:last-child .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
  padding-bottom: 32px;
}
@media (max-width: 991px) {
  .line-membre-argument .container .row .zone-html:last-child .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-membre-quote .container .row .zone-news_flash .news .row .item {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .line-membre-quote .container .row .zone-news_flash .news .row .item {
    flex-direction: column;
  }
}
.line-membre-quote .container .row .zone-news_flash .news .row .item .itemImage {
  max-width: 300px;
  min-width: 300px;
  padding-left: 0px;
  padding-right: 20px;
}
@media (max-width: 991px) {
  .line-membre-quote .container .row .zone-news_flash .news .row .item .itemImage {
    padding-left: 0;
    padding-right: 0;
    max-width: 200px;
    min-width: 200px;
  }
}
.line-membre-quote .container .row .zone-news_flash .news .row .item .intro {
  padding-left: 50px;
}
@media (max-width: 767px) {
  .line-membre-quote .container .row .zone-news_flash .news .row .item .intro {
    padding-left: 0;
    padding-right: 0;
  }
}
.line-membre-quote .container .row .zone-news_flash .news .row .item .intro p:first-child {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-membre-quote .container .row .zone-news_flash .news .row .item .intro p:first-child {
    font-size: 22px;
    line-height: 27px;
  }
}
.line-membre-quote .container .row .zone-news_flash .news .row .item .intro p strong {
  font-weight: 700;
  color: #16509B;
}

.line-membre-services {
  padding-top: 100px;
}
.line-membre-services .container .row .zone-news_flash h2 {
  text-align: center;
  margin-bottom: 70px;
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-membre-services .container .row .zone-news_flash h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-membre-services .container .row .zone-news_flash .news .row .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.line-membre-services .container .row .zone-news_flash .news .row .item .intro {
  color: #16509B;
  font-weight: 700;
}

.line-membre-services-cta {
  padding-top: 45px;
  padding-bottom: 84px;
}

.line-membre-avantage {
  padding: 90px 0;
  background-color: #106DE5;
}
.line-membre-avantage .container .row {
  max-width: 920px;
  margin: 0 auto;
}
.line-membre-avantage .container .row .zone-html h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
  color: #fff;
  padding-bottom: 45px;
  text-align: center;
}
@media (max-width: 991px) {
  .line-membre-avantage .container .row .zone-html h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-membre-avantage .container .row .zone-html .content ol li {
  color: #fff;
  font-weight: 700;
  padding-left: 100px;
}
@media (max-width: 767px) {
  .line-membre-avantage .container .row .zone-html .content ol li {
    padding-left: 32px;
  }
}
.line-membre-avantage .container .row .zone-html .content ol li::marker {
  font-size: 30px;
  line-height: 35px;
  color: #fff;
}

.line-membre-cta {
  padding: 60px 0;
}
.line-membre-cta .container .row > div h3 {
  text-align: center;
}

.line-career-intro {
  padding-bottom: 100px;
}
.line-career-intro .container .row {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .line-career-intro .container .row {
    flex-direction: column;
  }
}
.line-career-intro .container .row .zone-html:first-child {
  width: 40%;
}
@media (max-width: 767px) {
  .line-career-intro .container .row .zone-html:first-child {
    width: 100%;
    margin-bottom: 30px;
  }
}
.line-career-intro .container .row .zone-html:last-child {
  width: 60%;
}
@media (max-width: 767px) {
  .line-career-intro .container .row .zone-html:last-child {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .line-career-intro .container .row .zone-html:last-child .content {
    padding-left: 100px;
  }
}
.line-career-intro .container .row .zone-html:last-child .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-career-intro .container .row .zone-html:last-child .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-experience-intro {
  padding-top: 84px;
  background-color: #F4F4F4;
}
.line-experience-intro .container .row {
  margin: 0 auto;
  max-width: 700px;
}
.line-experience-intro .container .row .zone-html .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-experience-intro .container .row .zone-html .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-experience-intro .container .row .zone-html .content img {
  padding-top: 50px;
}

.line-experience-argument {
  background-color: #F4F4F4;
  padding-bottom: 130px;
}
@media (max-width: 767px) {
  .line-experience-argument .container .row {
    margin-left: 0;
    margin-right: 0;
  }
}
.line-experience-argument .zone-news_flash .newsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .line-experience-argument .zone-news_flash .newsList {
    flex-direction: column;
  }
}
.line-experience-argument .zone-news_flash .newsList .row {
  width: 50%;
  flex-grow: 0;
  margin-top: 30px;
  padding: 15px 50px 45px 5px;
  background-color: #fff;
  border-radius: 60px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137);
}
@media (max-width: 767px) {
  .line-experience-argument .zone-news_flash .newsList .row {
    width: 100%;
    padding-right: 15px;
  }
}
.line-experience-argument .zone-news_flash .newsList .row:last-child {
  flex-grow: 2;
}
.line-experience-argument .zone-news_flash .newsList .row:last-child .item .itemImage::after {
  width: 80%;
}
.line-experience-argument .zone-news_flash .newsList .row .item .itemImage {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .line-experience-argument .zone-news_flash .newsList .row .item .itemImage {
    margin-bottom: 30px;
  }
}
.line-experience-argument .zone-news_flash .newsList .row .item .itemImage::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background-color: #f4f4f4;
  position: relative;
  float: right;
  top: 90px;
  left: 0;
}
@media (max-width: 767px) {
  .line-experience-argument .zone-news_flash .newsList .row .item .itemImage::after {
    display: none;
  }
}
.line-experience-argument .zone-news_flash .newsList .row .item h3 {
  color: #16509B;
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 32px;
}
.line-experience-argument .zone-news_flash .newsList .row .item div.intro {
  padding-left: 60px;
}
@media (max-width: 767px) {
  .line-experience-argument .zone-news_flash .newsList .row .item div.intro {
    padding-left: 30px;
  }
}
.line-career-processus-intro {
  padding-top: 110px;
  padding-bottom: 30px;
}
.line-career-processus-intro .container .row {
  max-width: 730px;
  margin: 0 auto;
}
.line-career-processus-intro .container .row .zone-html .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-career-processus-intro .container .row .zone-html .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-career-processus {
  padding-bottom: 110px;
}
.line-career-processus .container .row .zone-news_flash .newsList {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .line-career-processus .container .row .zone-news_flash .newsList {
    flex-direction: column;
  }
}
.line-career-processus .container .row .zone-news_flash .newsList .row {
  margin-top: 0;
  width: 20%;
}
@media (max-width: 767px) {
  .line-career-processus .container .row .zone-news_flash .newsList .row {
    width: 100%;
    margin-bottom: 45px;
  }
}
.line-career-processus .container .row .zone-news_flash .newsList .row::after {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  background-size: 46px;
  background: url("https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/carrer-arrow.svg") center center no-repeat;
  position: relative;
  top: -120px;
  left: 200px;
}
@media (max-width: 1199px) {
  .line-career-processus .container .row .zone-news_flash .newsList .row::after {
    left: 163px;
  }
}
@media (max-width: 991px) {
  .line-career-processus .container .row .zone-news_flash .newsList .row::after {
    left: 133px;
    top: -107px;
    width: 34px;
    height: 34px;
    background-size: 34px;
  }
}
@media (max-width: 767px) {
  .line-career-processus .container .row .zone-news_flash .newsList .row::after {
    left: 45%;
    top: -6px;
    transform: rotate(90deg);
  }
}
@media (max-width: 1199px) {
  .line-career-processus .container .row .zone-news_flash .newsList .row:first-child::after {
    top: -132px;
  }
}
@media (max-width: 991px) {
  .line-career-processus .container .row .zone-news_flash .newsList .row:first-child::after {
    top: -116px;
  }
}
@media (max-width: 767px) {
  .line-career-processus .container .row .zone-news_flash .newsList .row:first-child::after {
    top: -6px;
  }
}
.line-career-processus .container .row .zone-news_flash .newsList .row:last-child::after {
  background: url();
}
.line-career-processus .container .row .zone-news_flash .newsList .row .item {
  display: flex;
  flex-direction: column;
}
.line-career-processus .container .row .zone-news_flash .newsList .row .item .itemImage {
  text-align: center;
  min-height: 100px;
}
@media (max-width: 767px) {
  .line-career-processus .container .row .zone-news_flash .newsList .row .item .itemImage {
    min-height: 60px;
  }
}
.line-career-processus .container .row .zone-news_flash .newsList .row .item div.intro {
  padding-bottom: 36px;
}
.line-career-poste-dispo-title {
  background-color: #f4f4f4;
  padding-top: 95px;
  padding-bottom: 24px;
}

.line-career-poste-dispo {
  background-color: #f4f4f4;
  padding-bottom: 130px;
}
.line-career-poste-dispo .zone-news .news-mosaic .row > div h3.news-title {
  font-size: 30px !important;
  line-height: 35px !important;
}
.line-career-poste-dispo .zone-news .news-mosaic .row > div h3.news-title a {
  color: #16509B !important;
  font-size: 30px !important;
  line-height: 35px !important;
}
.line-career-poste-dispo .zone-news .news-mosaic .row > div div.news-intro {
  margin-bottom: 30px;
}
.line-career-separator .container-fluid .row .zone-html .content img {
  width: 100%;
}

.line-career-form-intro {
  padding-top: 80px;
  padding-bottom: 15px;
}
.line-career-form-intro .container .row {
  max-width: 920px;
  margin: 0 auto;
}
.line-career-form-intro .container .row .zone-html .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-career-form-intro .container .row .zone-html .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-career-form {
  padding-bottom: 80px;
}
.line-career-form .container .row {
  max-width: 920px;
  margin: 0 auto;
}
.line-career-form .container .row .zone-crm #form-formbuilder .section .input-file input {
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.line-services-intro {
  padding-top: 30px;
  padding-bottom: 90px;
}
.line-services-intro .container .row .zone-html:first-child .content {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .line-services-intro .container .row .zone-html:first-child .content {
    padding-left: 0;
  }
}
.line-services-intro .container .row .zone-html:first-child .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-services-intro .container .row .zone-html:first-child .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-services-list-title {
  padding-top: 100px;
  padding-bottom: 30px;
  background-color: #f4f4f4;
}
@media (max-width: 991px) {
  .line-services-list-title {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .line-services-list-title {
    padding-bottom: 50px;
  }
}
.line-services-list-title .container .row .zone-html .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .line-services-list-title .container .row .zone-html .content {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.line-services-list-title .container .row .zone-html .content h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 300;
  text-transform: initial;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .line-services-list-title .container .row .zone-html .content h2 {
    font-size: 30px;
    line-height: 37px;
  }
}
@media (max-width: 767px) {
  .line-services-list-title .container .row .zone-html .content h2 {
    text-align: center;
  }
}
.line-services-list-title .container .row .zone-html .content img {
  max-width: 210px;
}

.line-services-list {
  background-color: #f4f4f4;
  padding-bottom: 110px;
}
@media (max-width: 991px) {
  .line-services-list {
    padding-bottom: 70px;
  }
}
.line-services-list .container .row .zone-news_flash .news .row .item {
  background-color: #fff;
  border-radius: 60px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137);
  padding: 30px;
}
.line-services-list .container .row .zone-news_flash .news .row .item .intro h3 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #16509B;
  margin-bottom: 50px;
}
.line-services-info-banner {
  padding: 84px 0;
  background-color: #106DE5;
}
@media (max-width: 767px) {
  .line-services-info-banner {
    padding-top: 70px;
    padding-bottom: 42px;
  }
}
.line-services-info {
  background-color: #106DE5;
  padding-bottom: 50px;
}
.line-services-info.bottompad {
  padding-bottom: 100px;
}
.line-services-info .container .row .zone-html:first-child .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
  color: #fff;
  padding-right: 70px;
}
@media (max-width: 991px) {
  .line-services-info .container .row .zone-html:first-child .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-services-info .container .row .zone-html:last-child .content p {
  color: #fff;
}

.line-services-cta {
  padding: 60px 0;
}

.line-services-events {
  background-color: #f4f4f4;
  padding-top: 50px;
  padding-bottom: 90px;
}
.line-services-events .zone-event .events-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 60px;
}
@media (max-width: 767px) {
  .line-services-events .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 50px 0px;
  }
}
.line-services-events .zone-event .events-mosaic .row {
  margin-top: 0;
}

.line-services-article .container .row .zone-news .search-form .row > div #category, .line-services-article .container .row .zone-news .search-form .row > div .chosen-choices {
  background-color: #fff !important;
}
.line-service-form-title {
  padding-top: 90px;
}
.line-service-form-title .container {
  border-bottom: 1px solid #ccc;
}
.line-service-form-title .container .row .zone-article h1 {
  color: #106DE5;
  margin-bottom: 80px;
}

.line-service-form-detail {
  padding: 50px 0;
}
.line-service-form-detail .container {
  padding-top: 40px;
}
.line-service-form-detail .container .row .zone-article {
  width: 60%;
}
@media (max-width: 767px) {
  .line-service-form-detail .container .row .zone-article {
    width: 100%;
  }
}
.line-service-form-detail .container .row .zone-article h1 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
  padding-bottom: 32px;
}
@media (max-width: 991px) {
  .line-service-form-detail .container .row .zone-article h1 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-service-form-detail .container .row .zone-article .mod-article__content {
  padding-right: 32px;
}
.line-service-form-detail .container .row .zone-article .mod-article__content h2, .line-service-form-detail .container .row .zone-article .mod-article__content h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
  padding-top: 32px;
}
@media (max-width: 991px) {
  .line-service-form-detail .container .row .zone-article .mod-article__content h2, .line-service-form-detail .container .row .zone-article .mod-article__content h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-service-form-detail .container .row .zone-article .mod-article__content .mod-article__img {
  margin-bottom: 32px;
}
.line-service-form-detail .container .row .zone-crm {
  width: 40%;
}
@media (max-width: 767px) {
  .line-service-form-detail .container .row .zone-crm {
    width: 100%;
    padding-top: 56px;
  }
}
.line-service-form-detail .container .row .zone-crm > h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-service-form-detail .container .row .zone-crm > h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-service-form-detail .container .row .zone-crm .section {
  padding-top: 56px;
}
.line-service-form-detail .container .row .zone-crm .section .section-title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-service-form-detail .container .row .zone-crm .section .section-title {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-instal-intro {
  margin-bottom: 100px;
}
.line-instal-intro .container .row .zone-html:first-child .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-instal-intro .container .row .zone-html:first-child .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-instal-menu {
  background: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/AL-BG-Installation-2k.png) center center no-repeat;
  background-size: cover;
  padding: 115px 0;
}
.line-instal-menu .container .row .zone-news_flash .newsList {
  gap: 60px 30px;
}
.line-instal-menu .container .row .zone-news_flash .newsList .row .item {
  background-color: #fff;
  border-radius: 60px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137);
  padding: 65px 58px 75px 58px;
}
@media (max-width: 991px) {
  .line-instal-menu .container .row .zone-news_flash .newsList .row .item {
    padding: 40px 50px;
  }
}
.line-instal-menu .container .row .zone-news_flash .newsList .row .item h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
  color: #16509B;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .line-instal-menu .container .row .zone-news_flash .newsList .row .item h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-instal-menu .container .row .zone-news_flash .newsList .row .item div.intro p {
  margin-bottom: 0;
}
.line-instal-menu .container .row .zone-news_flash .newsList .row .item div.intro p .btn {
  margin-bottom: 0;
}
.line-installations-description {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .line-installations-description {
    padding-bottom: 50px;
  }
}
.line-installations-description .container .row .zone-html:first-child {
  width: 45%;
}
@media (max-width: 767px) {
  .line-installations-description .container .row .zone-html:first-child {
    width: 100%;
  }
}
.line-installations-description .container .row .zone-html:first-child .content {
  max-width: 380px;
}
.line-installations-description .container .row .zone-html:first-child .content p {
  margin-bottom: 30px;
}
.line-installations-description .container .row .zone-html:last-child {
  width: 55%;
}
@media (max-width: 767px) {
  .line-installations-description .container .row .zone-html:last-child {
    width: 100%;
  }
}
.line-installations-description .container .row .zone-html:last-child .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-installations-description .container .row .zone-html:last-child .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-installations-description .container .row .zone-html:last-child .content hr {
  margin-top: 35px;
  margin-bottom: 35px;
  border-color: #ccc;
}
.line-installations-description .container .row .zone-html:last-child .content p strong {
  color: #16509B;
}
.line-installations-description .container .row .zone-html:last-child .content ul li {
  margin-bottom: 16px !important;
}

.line-installations-menu {
  background: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/AL-BG-Installation-2k.png) center center no-repeat;
  background-size: cover;
  padding: 115px 0;
}
.line-installations-menu .container .row .zone-news_flash .newsList .row .item {
  background-color: #fff;
  border-radius: 60px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137);
  padding: 50px 50px 30px 50px;
}
@media (max-width: 991px) {
  .line-installations-menu .container .row .zone-news_flash .newsList .row .item {
    padding: 40px;
  }
}
.line-installations-menu .container .row .zone-news_flash .newsList .row .item div.intro h3 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000;
  color: #16509B;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .line-installations-menu .container .row .zone-news_flash .newsList .row .item div.intro h3 {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .line-installations-menu .container .row .zone-news_flash .newsList .row .item div.intro h3 {
    font-size: 18px;
    line-height: 23px;
  }
}
.line-installations-menu.plateau .container .row .zone-news_flash .news .row:first-child {
  display: none;
}
.line-installations-menu.centre .container .row .zone-news_flash .news .row:nth-child(2) {
  display: none;
}
.line-installations-menu.bellerose .container .row .zone-news_flash .news .row:nth-child(3) {
  display: none;
}
.line-installations-menu.germain .container .row .zone-news_flash .news .row:nth-child(4) {
  display: none;
}

.line-formations-events {
  background-color: #f4f4f4;
  padding-top: 100px;
  padding-bottom: 100px;
}
.line-formations-events .container .row .zone-event .events-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 60px;
}
@media (max-width: 767px) {
  .line-formations-events .container .row .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 50px 0px;
  }
}
.line-formations-events .container .row .zone-event .events-mosaic .events-mosaic__short-description {
  font-size: 16px;
  line-height: 22px;
}
.line-formations-events .container .row .zone-event .events-mosaic .events-mosaic__short-description p {
  font-size: 16px;
  line-height: 22px;
}

.line-mois-intro .container .row .zone-html .content {
  margin-top: -50px;
}
@media (max-width: 991px) {
  .line-mois-intro .container .row .zone-html .content {
    margin-top: 0;
  }
}
.line-mois-intro .container .row .zone-html .content img {
  float: right;
  margin-bottom: 70px;
  min-width: 82%;
}
.line-mois-intro .container .row .zone-html .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
}
.line-mois-intro .container .row .zone-html .content .padding-box {
  max-width: 700px;
  clear: both;
}

.line-mois-activites {
  padding-top: 100px;
  padding-bottom: 100px;
}
.line-mois-activites .container .row .zone-news_flash h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 30px;
  line-height: 35px;
  color: #16509B;
}
.line-mois-activites .container .row .zone-news_flash .newsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.line-mois-activites .container .row .zone-news_flash .newsList .row .item {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-height: 300px;
}
.line-mois-activites .container .row .zone-news_flash .newsList .row .item div.intro {
  text-align: center;
  max-width: 170px;
  position: relative;
  bottom: 180px;
  z-index: 1;
}
.line-mois-activites .container .row .zone-news_flash .newsList .row .item div.intro p {
  font-size: 20px;
  font-weight: 700;
  color: #16509B;
}
.line-mois-activites .container .row .zone-news_flash .newsList .row:nth-child(3) div.intro {
  bottom: 200px;
}
.line-mois-activites .container .row .zone-news_flash .newsList .row:nth-child(5) div.intro {
  bottom: 200px;
}
.line-mois-activites .container .row .zone-news_flash .newsList .row + .row {
  margin-top: 0rem;
}
.line-mois-cta {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .line-mois-cta .container .row > div:first-child {
    width: 40%;
  }
}
@media (min-width: 768px) {
  .line-mois-cta .container .row > div:last-child {
    width: 60%;
  }
}

.line-tsa-action-title {
  padding-bottom: 50px;
}
.line-tsa-action-title .container .row .zone-html .content h2 {
  font-size: 30px;
  line-height: 35px;
  text-align: center;
}

.line-tsa-action {
  padding-bottom: 55px;
}
.line-tsa-action .zone-news_flash .newsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 30px;
}
@media (max-width: 991px) {
  .line-tsa-action .zone-news_flash .newsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px 30px;
  }
}
.line-tsa-action .zone-news_flash .newsList .row .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.line-tsa-action .zone-news_flash .newsList .row .item .itemImage img.e-thumbnail {
  max-width: 116px;
}
.line-tsa-action .zone-news_flash .newsList .row .item div.intro {
  text-align: center;
}
.line-tsa-action .zone-news_flash .newsList .row + .row {
  margin-top: 0rem;
}
.line-tsa-action-txt {
  padding-bottom: 55px;
}
.line-tsa-action-txt .container .row .zone-html .content p {
  font-size: 27px;
  line-height: 32px;
}

.line-tsa-carrefour {
  padding-top: 100px;
  padding-bottom: 60px;
  background-color: #106DE5;
}
@media (max-width: 991px) {
  .line-tsa-carrefour .container .row .zone-html:first-child {
    width: 100%;
  }
}
.line-tsa-carrefour .container .row .zone-html:first-child h2 {
  color: #fff;
}
@media (max-width: 991px) {
  .line-tsa-carrefour .container .row .zone-html:last-child {
    width: 100%;
  }
}
.line-tsa-carrefour .container .row .zone-html:last-child p, .line-tsa-carrefour .container .row .zone-html:last-child li {
  color: #fff !important;
  margin-bottom: 24px !important;
}

.line-tsa-origin {
  padding-top: 100px;
}
.line-tsa-origin .container .row {
  max-width: 875px;
  margin: 0 auto;
}
.line-tsa-origin .container .row .zone-html .content h3 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .line-tsa-origin .container .row .zone-html .content p, .line-tsa-origin .container .row .zone-html .content h2, .line-tsa-origin .container .row .zone-html .content h3 {
    text-align: left !important;
  }
}

.line-tsa-chronologie {
  padding-top: 50px;
  padding-bottom: 100px;
}
.line-tsa-chronologie .container .row {
  max-width: 875px;
  margin: 0 auto;
}
.line-tsa-chronologie .container .row .zone-html .content h2 {
  font-size: 27px;
  line-height: 32px;
  padding-bottom: 18px;
}
.line-tsa-chronologie .container .row .zone-html .content p {
  padding-bottom: 18px;
}
@media (max-width: 767px) {
  .line-tsa-chronologie .container .row .zone-html .content p, .line-tsa-chronologie .container .row .zone-html .content h2, .line-tsa-chronologie .container .row .zone-html .content h3 {
    text-align: left !important;
  }
}

.line-tsa-rdv {
  padding-top: 100px;
  padding-bottom: 60px;
  background-color: #106DE5;
}
.line-tsa-rdv .container .row .zone-html:first-child {
  width: 40%;
}
@media (max-width: 991px) {
  .line-tsa-rdv .container .row .zone-html:first-child {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-tsa-rdv .container .row .zone-html:first-child img {
    max-width: 160px;
    padding-bottom: 36px;
  }
}
.line-tsa-rdv .container .row .zone-html:last-child {
  width: 60%;
}
@media (max-width: 991px) {
  .line-tsa-rdv .container .row .zone-html:last-child {
    width: 100%;
  }
}
.line-tsa-rdv .container .row .zone-html:last-child .content h2, .line-tsa-rdv .container .row .zone-html:last-child .content h3, .line-tsa-rdv .container .row .zone-html:last-child .content p {
  color: #fff;
}
.line-tsa-rdv .container .row .zone-html:last-child .content h3 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 991px) {
  .line-tsa-rdv .container .row .zone-html:last-child .content h3 {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .line-tsa-rdv .container .row .zone-html:last-child .content h3 {
    font-size: 18px;
    line-height: 23px;
  }
}

body.evenement-detail .line-banner {
  display: none;
}
body.evenement-detail .line-services-events {
  background-color: #fff;
}
body.evenement-detail .line-formations-events {
  background-color: #fff;
}
body.evenement-detail .zone-event .row .event-detail .toph1 {
  color: #106DE5;
  padding-bottom: 60px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 991px) {
  body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right {
    display: flex;
    flex-wrap: wrap;
  }
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
  display: flex;
  border-right: 1px solid #ccc;
  width: 28%;
}
@media (max-width: 991px) {
  body.evenement-detail .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) {
  body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
    padding: 32px;
  }
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron {
  width: 100%;
  background-color: #fff;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__date {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 0;
  padding-bottom: 30px;
  color: #16509B;
}
body.evenement-detail .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: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #16509B;
  margin-bottom: 5px;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-place {
  font-size: 16px;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-event {
  font-size: 16px;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-full {
  font-size: 16px;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-country {
  font-size: 16px;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .event-detail__description-additional h3 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #16509B;
  margin-bottom: 5px;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .event-detail__description-additional p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
}
body.evenement-detail .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;
}
body.evenement-detail .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;
  padding-top: 10px;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #16509B;
  margin-bottom: 5px;
}
body.evenement-detail .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, body.evenement-detail .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, body.evenement-detail .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;
  font-size: 16px;
}
body.evenement-detail .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;
}
body.evenement-detail .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;
}
body.evenement-detail .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;
}
body.evenement-detail .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 a {
  color: #000 !important;
  font-weight: 400;
}
body.evenement-detail .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: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #16509B;
  padding-top: 32px;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
  font-family: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  background-color: #106DE5;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #106DE5;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:hover, body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:active, body.evenement-detail .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) {
  body.evenement-detail .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;
  }
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:hover, body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:active, body.evenement-detail .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: 1px solid #106DE5;
  color: #106DE5;
}
@media (max-width: 991px) {
  body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
    display: none;
  }
}
body.evenement-detail .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) {
  body.evenement-detail .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%;
  }
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__category {
  order: 1;
  font-style: normal;
  font-size: 21px;
  font-weight: 800;
  display: none;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__left-right__title {
  order: 0;
  font-size: 70px;
  line-height: 77px;
  font-weight: 900;
  text-transform: initial;
  color: #106DE5;
}
@media (max-width: 991px) {
  body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__left-right__title {
    font-size: 45px;
    line-height: 52px;
  }
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description {
  order: 2;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description h2 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  body.evenement-detail .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;
  }
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper h4 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #16509B;
  margin-top: 35px;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper hr {
  margin-bottom: 35px;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper h6 {
  font-size: 16px;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-additional {
  order: 3;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-additional h3 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #16509B;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-additional p {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper {
  order: 4;
}
body.evenement-detail .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: #000;
  background: transparent;
  padding-left: 5px;
  margin: 0;
  line-height: 27px;
  text-transform: none;
}
@media (max-width: 767px) {
  body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
    margin-bottom: 32px;
  }
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__tags {
  display: none;
}
@media (max-width: 767px) {
  body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav {
    flex-direction: column;
  }
}
body.evenement-detail .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: "Mulish", sans-serif;
  text-transform: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 47px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 24px;
  background-color: #106DE5;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #106DE5;
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:hover, body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:active, body.evenement-detail .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) {
  body.evenement-detail .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;
  }
}
body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:hover, body.evenement-detail .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:active, body.evenement-detail .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: 1px solid #106DE5;
  color: #106DE5;
}
.line-comprendre-quoi {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .line-comprendre-quoi .container .row {
    display: flex;
    flex-direction: column-reverse;
  }
}
.line-comprendre-quoi .container .row .zone-html:first-child {
  width: 70%;
}
@media (max-width: 991px) {
  .line-comprendre-quoi .container .row .zone-html:first-child {
    width: 100%;
  }
}
.line-comprendre-quoi .container .row .zone-html:first-child .content {
  padding-right: 100px;
}
@media (max-width: 991px) {
  .line-comprendre-quoi .container .row .zone-html:first-child .content {
    padding-right: 0;
  }
}
.line-comprendre-quoi .container .row .zone-html:first-child .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-comprendre-quoi .container .row .zone-html:first-child .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-comprendre-quoi .container .row .zone-html:last-child {
  width: 30%;
}
@media (max-width: 991px) {
  .line-comprendre-quoi .container .row .zone-html:last-child {
    width: 100%;
    padding-bottom: 30px;
  }
}

.line-comprendre-liste {
  padding-bottom: 100px;
}
.line-comprendre-liste .container .row .zone-news_flash .newsList .row .item {
  display: flex;
  align-items: center;
  padding-bottom: 50px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 991px) {
  .line-comprendre-liste .container .row .zone-news_flash .newsList .row .item {
    flex-direction: column;
  }
}
.line-comprendre-liste .container .row .zone-news_flash .newsList .row .item .itemImage {
  margin-right: 27px;
}
.line-comprendre-liste .container .row .zone-news_flash .newsList .row .item .itemImage img {
  min-width: 165px;
}
.line-comprendre-liste .container .row .zone-news_flash .newsList .row .item h3 {
  font-size: 30px;
  font-weight: 700;
  color: #16509B;
}
@media (max-width: 991px) {
  .line-comprendre-liste .container .row .zone-news_flash .newsList .row .item h3 {
    text-align: center;
  }
}
.line-comprendre-liste .container .row .zone-news_flash .newsList .row .item div.intro {
  max-width: 540px;
  font-size: 16px;
}
.blue-box {
  padding-top: 100px;
  padding-bottom: 20px;
  background-color: #106DE5;
}
.blue-box .line-comprendre-question .container .row .zone-html {
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .blue-box .line-comprendre-question .container .row .zone-html {
    padding-bottom: 32px;
  }
}
.blue-box .line-comprendre-question .container .row .zone-html:first-child h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 991px) {
  .blue-box .line-comprendre-question .container .row .zone-html:first-child h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.blue-box .line-comprendre-question .container .row .zone-html:last-child p {
  color: #fff;
}

.grey-box {
  background-color: #f4f4f4;
  padding-top: 100px;
  padding-bottom: 100px;
}
.grey-box .line-comprendre-signe-titre .container .row .zone-html {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .grey-box .line-comprendre-signe-titre .container .row .zone-html {
    padding-bottom: 32px;
  }
}
.grey-box .line-comprendre-signe-titre .container .row .zone-html .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .grey-box .line-comprendre-signe-titre .container .row .zone-html .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.grey-box .line-comprendre-signe .container .row .zone-html .content hr {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
  border-top: 1px solid #ccc;
}
@media (max-width: 767px) {
  .grey-box .line-comprendre-signe .container .row .zone-html .content img {
    padding-bottom: 32px;
  }
}

.line-accompagner-intro {
  padding-bottom: 80px;
}
.line-accompagner-intro .container .row .zone-html:first-child {
  width: 66.6%;
}
@media (max-width: 767px) {
  .line-accompagner-intro .container .row .zone-html:first-child {
    width: 100%;
  }
}
.line-accompagner-intro .container .row .zone-html:first-child h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-accompagner-intro .container .row .zone-html:first-child h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 767px) {
  .line-accompagner-intro .container .row .zone-html:first-child h2 {
    padding-bottom: 32px;
  }
}
.line-accompagner-intro .container .row .zone-html:last-child {
  width: 33.3%;
}
@media (max-width: 767px) {
  .line-accompagner-intro .container .row .zone-html:last-child {
    width: 100%;
  }
}
.line-accompagner-intro .container .row .zone-html:last-child .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-accompagner-intro .container .row .zone-html:last-child .content {
    text-align: center;
    padding-top: 32px;
  }
}
.line-accompagner-savoir-intro {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .line-accompagner-savoir-intro {
    padding-bottom: 32px;
  }
}
.line-accompagner-savoir-intro .container .row .zone-html .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-accompagner-savoir-intro .container .row .zone-html .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-accompagner-savoir {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .line-accompagner-savoir .container .row {
    display: flex;
    flex-direction: column-reverse;
  }
}
.line-accompagner-savoir .container .row .zone-html:first-child {
  width: 33.3%;
}
@media (max-width: 767px) {
  .line-accompagner-savoir .container .row .zone-html:first-child {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-accompagner-savoir .container .row .zone-html:first-child .content {
    padding-top: 32px;
    text-align: center;
  }
}
.line-accompagner-savoir .container .row .zone-html:last-child {
  width: 66.6%;
}
@media (max-width: 767px) {
  .line-accompagner-savoir .container .row .zone-html:last-child {
    width: 100%;
  }
}

.line-accompagner-strategie-intro {
  background-color: #106DE5;
  padding: 80px 0;
}
.line-accompagner-strategie-intro .container .row .zone-html .content {
  max-width: 700px;
}
.line-accompagner-strategie-intro .container .row .zone-html .content p {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 991px) {
  .line-accompagner-strategie-intro .container .row .zone-html .content p {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-accompagner-strategie {
  background-color: #106DE5;
  padding-bottom: 80px;
}

.line-accompagner-reflechir {
  padding: 80px 0;
  background-color: #f4f4f4;
}
@media (max-width: 767px) {
  .line-accompagner-reflechir {
    padding: 50px 0;
  }
}
.line-accompagner-reflechir .container .row .zone-html .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .line-accompagner-reflechir .container .row .zone-html .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-accompagner-reflechir .container .row .zone-html .content p {
  max-width: 700px;
}

.line-accompagner-handicap {
  background-color: #f4f4f4;
  padding-bottom: 100px;
}
.line-accompagner-handicap .container .row {
  max-width: 920px;
  margin: 0 auto;
}
.line-accompagner-handicap .container .row .zone-html {
  background-color: #fff;
  border-radius: 60px;
  padding: 50px 90px;
}
@media (max-width: 767px) {
  .line-accompagner-handicap .container .row .zone-html {
    padding: 50px 30px;
  }
}
.line-accompagner-handicap .container .row .zone-html .content h3 {
  color: #16509B;
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
  font-weight: 700;
  padding-bottom: 24px;
}
@media (max-width: 991px) {
  .line-accompagner-handicap .container .row .zone-html .content h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-liens-utiles {
  background-color: #f4f4f4;
}
@media (min-width: 992px) {
  .line-liens-utiles {
    padding: 80px;
  }
}
@media (max-width: 991px) {
  .line-liens-utiles {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.line-bottin-ressource {
  background-color: #f4f4f4;
}
@media (min-width: 992px) {
  .line-bottin-ressource {
    padding: 80px;
  }
}
@media (max-width: 991px) {
  .line-bottin-ressource {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .line-bottin-ressource .container .row .zone-formbuilder_search .search-object-form {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.line-bottin-ressource .container .row .zone-formbuilder_search .search-object-form input {
  margin-bottom: 100px;
}
.line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container {
  background-color: #fff;
  border-radius: 60px;
  padding: 25px 50px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container {
    padding: 25px 35px;
  }
}
.line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container .card-body {
  display: grid;
  grid-template-columns: 34% 26% 30% 10%;
}
@media (max-width: 991px) {
  .line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container .card-body {
    grid-template-columns: 34% 26% 25% 15%;
  }
}
@media (max-width: 767px) {
  .line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container .card-body {
    display: flex;
    flex-direction: column;
  }
}
.line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container .card-body .box-logo p {
  margin-bottom: 0;
}
.line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container .card-body .box-name {
  padding-right: 16px;
}
@media (min-width: 992px) {
  .line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container .card-body .box-name {
    min-width: 350px;
  }
}
@media (max-width: 991px) {
  .line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container .card-body .box-name {
    margin-bottom: 15px;
  }
}
.line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container .card-body .box-name h3 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #16509B;
  margin-bottom: 0;
}
.line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container .card-body .box-category p {
  font-size: 16px;
  line-height: 22px;
}
.line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container .card-body .box-contact {
  padding-right: 32px;
}
.line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container .card-body .box-contact p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 0;
}
.line-bottin-ressource .container .row .zone-formbuilder_search .search-object-result .tab-pane .card-container .card-body .box-contact a {
  font-size: 16px;
}
.line-bottin-ressource.details .container .row .zone-formbuilder_search .search-object-detail-bloc .card-container-details .org-title {
  margin-bottom: 60px;
}
.line-bottin-ressource.details .container .row .zone-formbuilder_search .search-object-detail-bloc .card-container-details .org-info .org-details .titre {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
  font-weight: 700;
  margin-top: 36px;
}
@media (max-width: 991px) {
  .line-bottin-ressource.details .container .row .zone-formbuilder_search .search-object-detail-bloc .card-container-details .org-info .org-details .titre {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-bottin-ressource.details .container .row .zone-formbuilder_search .search-object-detail-bloc .back-btn {
  padding-top: 60px;
}

.line-mission-intro {
  padding-bottom: 80px;
}
.line-mission-intro .container .row .zone-html:last-child .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
  padding-bottom: 36px;
}
@media (max-width: 991px) {
  .line-mission-intro .container .row .zone-html:last-child .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-mission-organisme-title {
  background-color: #f4f4f4;
  padding-top: 80px;
}
.line-mission-organisme-title .container .row .zone-html .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-mission-organisme-title .container .row .zone-html .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-mission-organisme {
  background-color: #f4f4f4;
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .line-mission-organisme .container .row .zone-news .panel-group .panel-news-accordion {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .line-mission-organisme .container .row .zone-news .panel-group .panel-news-accordion {
    padding: 20px;
  }
}
.line-mission-organisme .container .row .zone-news .panel-group .panel-default .panel-heading {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .line-mission-organisme .container .row .zone-news .panel-group .panel-default .panel-heading {
    flex-direction: column;
  }
}
.line-mission-organisme .container .row .zone-news .panel-group .panel-default .panel-heading img {
  max-width: 175px;
  margin-right: 32px;
}
.line-mission-organisme .container .row .zone-news .panel-group .panel-default .panel-heading h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-mission-organisme .container .row .zone-news .panel-group .panel-default .panel-heading h3 {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .line-mission-organisme .container .row .zone-news .panel-group .panel-default .panel-heading h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-mission-organisme .container .row .zone-news .panel-group .panel-default .panel-body .news-accordion-content p.news-accordion-text {
  display: none;
}
.line-mission-organisme .container .row .zone-news .panel-group .panel-default .panel-body .news-accordion-content h3 {
  color: #16509B;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-top: 45px;
}
.line-mission-organisme .container .row .zone-news .panel-group .panel-default:first-child .panel-body .news-accordion-content h3:first-of-type {
  margin-top: 0;
}

.line-impact-stats {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .line-impact-stats {
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .line-impact-stats .zone-news_flash {
    max-height: 450px;
  }
}
.line-impact-stats .zone-news_flash .newsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 30px;
}
@media (max-width: 767px) {
  .line-impact-stats .zone-news_flash .newsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px 30px;
  }
}
.line-impact-stats .zone-news_flash .newsList .row .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .line-impact-stats .zone-news_flash .newsList .row .item {
    max-height: 380px;
  }
}
.line-impact-stats .zone-news_flash .newsList .row .item div.intro {
  text-align: center;
  max-width: 200px;
  position: relative;
  bottom: 270px;
  z-index: 1;
}
@media (max-width: 991px) {
  .line-impact-stats .zone-news_flash .newsList .row .item div.intro {
    bottom: 215px;
  }
}
@media (max-width: 767px) {
  .line-impact-stats .zone-news_flash .newsList .row .item div.intro {
    bottom: 255px;
  }
}
.line-impact-stats .zone-news_flash .newsList .row .item div.intro p {
  font-size: 16px;
}
@media (max-width: 767px) {
  .line-impact-stats .zone-news_flash .newsList .row .item div.intro p br {
    display: block !important;
  }
}
.line-impact-stats .zone-news_flash .newsList .row .item div.intro span {
  color: #106DE5;
  font-size: 45px;
  line-height: 53px;
}
@media (max-width: 991px) {
  .line-impact-stats .zone-news_flash .newsList .row .item div.intro span {
    font-size: 34px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .line-impact-stats .zone-news_flash .newsList .row .item div.intro span {
    font-size: 40px;
    line-height: 48px;
  }
}
.line-impact-stats .zone-news_flash .newsList .row .item div.intro span strong {
  font-weight: 900;
}
.line-impact-stats .zone-news_flash .newsList .row + .row {
  margin-top: 0rem;
}
.line-impact-temoignages {
  background-color: #f4f4f4;
  padding: 100px 0 170px 0;
}
.line-impact-temoignages .container .row .zone-carousel .carousel {
  overflow: visible;
}
.line-impact-temoignages .container .row .zone-carousel .carousel .carousel-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.line-impact-temoignages .container .row .zone-carousel .carousel .carousel-inner .item {
  max-width: 920px;
  background-color: #fff;
  border-radius: 60px;
  padding: 80px;
}
@media (max-width: 767px) {
  .line-impact-temoignages .container .row .zone-carousel .carousel .carousel-inner .item {
    padding: 35px;
  }
}
.line-impact-temoignages .container .row .zone-carousel .carousel .carousel-inner .item .carousel-text::before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/quote.svg);
  width: 34px;
  height: 90px;
  position: absolute;
  left: 35px;
  top: -10px;
  z-index: 1;
}
.line-impact-temoignages .container .row .zone-carousel .carousel .carousel-inner .item .carousel-text::after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYlU7BaMXnDrYsE4pgQO2SPe/asset/images/quote.svg);
  width: 34px;
  height: 90px;
  position: absolute;
  right: 40px;
  bottom: 50px;
  transform: rotate(180deg);
  z-index: 1;
}
.line-impact-temoignages .container .row .zone-carousel .carousel .carousel-inner .item .carousel-text .caption-intro {
  min-height: 200px;
}
.line-impact-temoignages .container .row .zone-carousel .carousel .carousel-control {
  background-image: none !important;
}
@media (max-width: 767px) {
  .line-impact-temoignages .container .row .zone-carousel .carousel .carousel-control {
    min-width: 80%;
  }
}
@media (max-width: 767px) {
  .line-impact-temoignages .container .row .zone-carousel .carousel .carousel-control .glyphicon-chevron-right, .line-impact-temoignages .container .row .zone-carousel .carousel .carousel-control .glyphicon-chevron-left {
    width: 50px;
    height: 50px;
  }
}
.line-impact-temoignages .container .row .zone-carousel .carousel .left {
  right: 12%;
  bottom: -85%;
}
@media (max-width: 991px) {
  .line-impact-temoignages .container .row .zone-carousel .carousel .left {
    right: 22%;
  }
}
@media (max-width: 767px) {
  .line-impact-temoignages .container .row .zone-carousel .carousel .left {
    right: 0;
    left: 0;
  }
}
.line-impact-temoignages .container .row .zone-carousel .carousel .left span {
  border-radius: 50%;
  background-color: #106DE5;
}
.line-impact-temoignages .container .row .zone-carousel .carousel .right {
  left: 12%;
  bottom: -85%;
}
@media (max-width: 991px) {
  .line-impact-temoignages .container .row .zone-carousel .carousel .right {
    left: 22%;
  }
}
@media (max-width: 767px) {
  .line-impact-temoignages .container .row .zone-carousel .carousel .right {
    right: 0;
  }
}
.line-impact-temoignages .container .row .zone-carousel .carousel .right span {
  border-radius: 50%;
  background-color: #106DE5;
}

.line-impact-activites {
  padding-top: 100px;
}
.line-impact-activites .container .row .zone-html .content h3 {
  text-align: center;
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .line-impact-activites .container .row .zone-html .content h3 {
    margin-bottom: 50px;
  }
}
.line-impact-activites .container .row .zone-html .content h3 span {
  color: #106DE5;
  font-weight: 900;
}
.line-impact-activites .container .row .zone-html .content p {
  text-align: center;
}
.line-impact-activites .container .row .zone-html .content p img {
  margin-top: 100px;
}

.line-impact-mission {
  padding-top: 80px;
}
.line-impact-mission .container .row .zone-html:first-child .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-impact-mission .container .row .zone-html:first-child .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-team-list {
  background-color: #f4f4f4;
  padding-top: 80px;
  padding-bottom: 80px;
}
.line-team-list .container .row .tab-pane {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px 150px;
}
@media (max-width: 991px) {
  .line-team-list .container .row .tab-pane {
    grid-gap: 60px;
  }
}
@media (max-width: 767px) {
  .line-team-list .container .row .tab-pane {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 60px 30px;
  }
}
.line-team-list .container .row .tab-pane > div .member-card {
  background-color: #fff;
  border-radius: 60px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137);
  padding: 50px;
}
@media (max-width: 767px) {
  .line-team-list .container .row .tab-pane > div .member-card {
    padding: 30px;
  }
}
.line-team-list .container .row .tab-pane > div .member-card img {
  border-radius: 50%;
  max-width: 250px;
}
.line-team-list .container .row .tab-pane > div .member-card .member-name {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-transform: initial;
  color: #16509B;
  font-weight: bold;
  padding-top: 32px;
}
@media (max-width: 991px) {
  .line-team-list .container .row .tab-pane > div .member-card .member-name {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-team-list .container .row .tab-pane > div .member-card .member-title {
  font-size: 16px;
  margin-bottom: 0;
}
.line-team-list .container .row .tab-pane > div .member-card .member-title:last-child {
  margin-bottom: 28px;
}
.line-team-list .container .row .tab-pane > div .member-card .member-email {
  font-size: 16px;
  color: #106DE5;
}
.line-team-list .container .row .tab-pane > div .member-card table.accordeon tbody::before {
  top: 75px;
}
@media (max-width: 991px) {
  .line-team-list .container .row .tab-pane > div .member-card table.accordeon tbody::before {
    width: 65%;
  }
}
.line-team-list .container .row .tab-pane > div .member-card table.accordeon tbody tr {
  padding: 15px 0;
}
.line-team-list .container .row .tab-pane > div .member-card table.accordeon tbody tr:first-child {
  min-height: 100px !important;
}
.line-mosaic-partenaire {
  background-color: #f4f4f4;
  padding: 60px 0;
}
.line-mosaic-partenaire .zone-news_flash h2 {
  color: #16509B;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 32px;
}
.line-mosaic-partenaire .zone-news_flash .newsList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0px 30px;
}
@media (max-width: 1199px) {
  .line-mosaic-partenaire .zone-news_flash .newsList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0px 30px;
  }
}
@media (max-width: 991px) {
  .line-mosaic-partenaire .zone-news_flash .newsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0px 30px;
  }
}
@media (max-width: 767px) {
  .line-mosaic-partenaire .zone-news_flash .newsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0px 30px;
  }
}
.line-mosaic-partenaire .zone-news_flash .newsList .row + .row {
  margin-top: 0rem;
}
.line-devenir-partenaire-title {
  background-color: #f4f4f4;
  padding: 80px 0 32px 0;
}
.line-devenir-partenaire-title .container .row .zone-html .content {
  max-width: 768px;
}
.line-devenir-partenaire-title .container .row .zone-html .content h2 {
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-devenir-partenaire-title .container .row .zone-html .content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.line-devenir-partenaire {
  background-color: #f4f4f4;
  padding-bottom: 80px;
}

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