@charset "UTF-8";
/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..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;}
    }
}*/
@media (min-width: 768px) {
  .container {
    width: 738px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1152px;
  }
}
.container {
  /*
  @include min-custom(1500px) {
      width: $xlg-container;
  }
  */
}

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

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

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

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

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

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

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

.xsmallpadding {
  padding: 30px 0 !important;
}

.xsmallpaddingtop {
  padding-top: 30px !important;
}

.xsmallpaddingbottom {
  padding-bottom: 30px !important;
}

.smallpadding {
  padding: 60px 0 !important;
}

.smallpaddingtop {
  padding-top: 60px !important;
}

.smallpaddingbottom {
  padding-bottom: 60px !important;
}

.largepadding {
  padding: 100px 0 !important;
}

.largepaddingtop {
  padding-top: 100px !important;
}

.largepaddingbottom {
  padding-bottom: 100px !important;
}

.xlargepadding {
  padding: 120px 0 !important;
}

.xlargepaddingtop {
  padding-top: 120px !important;
}

.xlargepaddingbottom {
  padding-bottom: 120px !important;
}

@media (max-width: 991px) {
  .smallpadding {
    padding: 40px 0 !important;
  }
  .smallpaddingtop {
    padding-top: 40px !important;
  }
  .smallpaddingbottom {
    padding-bottom: 40px !important;
  }
  .largepadding {
    padding: 60px 0 !important;
  }
  .largepaddingtop {
    padding-top: 60px !important;
  }
  .largepaddingbottom {
    padding-bottom: 60px !important;
  }
}
/********************************************************************/
/* 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;
}

.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6, .dark-bg p, .dark-bg .h1, .dark-bg .h2, .dark-bg .h3, .dark-bg .h4, .dark-bg .h5, .dark-bg .h6 {
  color: #fff !important;
}
.dark-bg p, .dark-bg .p, .dark-bg .p-small {
  color: #fff !important;
}
.dark-bg .btn-primary {
  color: #fff !important;
}
.dark-bg .btn-link {
  color: #fff !important;
}
.dark-bg .btn-link:after {
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/white-arrow.svg);
}

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

::selection {
  color: #fff;
  background: #2C2C2C;
}

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

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

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

/* ################################# */
/* Global animation */
/*
h1{
	opacity: 0;
}
.animate {
	@include text-fade-from-left;
}
*/
/*
.img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    animation: move 3s infinite ease alternate;
}
*/
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50%); /* Start off-screen to the left */
  }
  to {
    opacity: 1;
    transform: translateX(0); /* End at its original position */
  }
}
@keyframes fadeFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px); /* Start off-screen to the left */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* End at its original position */
  }
}
/**
 * ----------------------------------------
 * Smooth bounce
 * ----------------------------------------
 */
@keyframes move {
  from {
    transform: translate(0%, -50%);
  }
  to {
    transform: translate(-10px, -50%);
  }
}
@keyframes bounce-right {
  0%, 100% {
    transform: translate(-50%, -50%); /* Keeps the arrow vertically centered at its original position */
  }
  50% {
    transform: translate(10px, -50%); /* Move 10 pixels to the right while staying vertically centered */
  }
}
/**
 * ----------------------------------------
 * 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: "Inter", sans-serif;
}
body.overflowhidden {
  overflow: hidden;
}

/*###########################  TITRES  ###########################*/
h1, h2, h3, h4, h5, h6, p, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Inter", sans-serif;
  margin-bottom: 15px;
  width: 100%;
  color: #2C2C2C;
  text-transform: none;
}
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: 79px;
  line-height: 83px;
  font-weight: 700;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 44px;
    line-height: 50px;
  }
}
.h1-home {
  font-size: 65px;
  line-height: 68px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 1199px) {
  .h1-home {
    font-size: 58px;
    line-height: 61px;
  }
}
@media (max-width: 991px) {
  .h1-home {
    font-size: 44px;
    line-height: 50px;
  }
}
h2, .h2 {
  font-size: 55px;
  line-height: 57px;
  font-weight: 700;
  color: #2C2C2C;
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 37px;
    line-height: 43px;
  }
}
h3, .h3 {
  font-size: 47px;
  line-height: 53px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 991px) {
  h3, .h3 {
    font-size: 30px;
    line-height: 34px;
  }
}
h4, .h4 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 300;
  color: #2C2C2C;
}
@media (max-width: 991px) {
  h4, .h4 {
    font-size: 30px;
    line-height: 35px;
  }
}
h5, .h5 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
h6, .h6 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 767px) {
  h6, .h6 {
    font-size: 18px;
    line-height: 24px;
  }
}

p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #2C2C2C;
}
.p-small {
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
  color: #2C2C2C;
}
hr {
  border-color: rgba(0, 31, 78, 0.35);
}

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

ol, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) {
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 25px;
}
ol li, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services) li {
  padding-left: 0px;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
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: #2C2C2C;
  font-size: 13px;
}
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 ol {
  margin-top: 0;
  margin-bottom: 0;
}
ol 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) ul {
  list-style-type: square !important;
  margin-top: 0;
  margin-bottom: 0;
}
ol ul 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) ul li::marker {
  font-size: 16px;
  color: #000;
}

ol {
  padding-left: 15px;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, .h1 span, .h2 span, .h3 span, .h4 span, h5 span, .h6 span, .p span {
  color: #EB445D;
}

h2:not(.pol-conf h2), h3:not(.pol-conf h3), h4:not(.cn-body h4), h5, .btn:not(.actions-container .v-btn, .actions-container button), li:not(ul.dropdown-menu .menu-type-page, .pol-conf li, .poste-single .mod-article__content li, .actualite-single .mod-article__content li, ul.social li, ul.cm-services li.cm-service) {
  opacity: 0; /* Start hidden */
  transform: translateY(80px); /* Start below their normal position */
  transition: opacity 1s ease, transform 1s ease; /* Smooth transition for both opacity and transform */
}

h6, p:not(.consent-title, .consent-description, .cn-body p, .pol-conf p, .poste-single .mod-article__content p) {
  opacity: 0; /* Start hidden */
  transform: translateY(30px); /* Start below their normal position */
  transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition for both opacity and transform */
}

.v-btn {
  opacity: 1 !important;
  transform: none !important;
  margin-left: 30px !important;
}

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

/*###########################  BOUTONS RESET  ###########################*/
.btn, input.btn, a.btn {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.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: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: 1px solid #EB445D;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}
.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 {
  color: #fff;
  background-color: #EB445D;
  border: 1px solid #EB445D;
}
.btn.btn-primary.dark, .btn.btn-default.dark, input.btn.btn-primary.dark, input.btn.btn-default.dark, a.btn.btn-primary.dark, a.btn.btn-default.dark {
  color: #2C2C2C;
}
.btn.btn-primary.dark:hover, .btn.btn-primary.dark:active, .btn.btn-primary.dark:focus, .btn.btn-default.dark:hover, .btn.btn-default.dark:active, .btn.btn-default.dark:focus, input.btn.btn-primary.dark:hover, input.btn.btn-primary.dark:active, input.btn.btn-primary.dark:focus, input.btn.btn-default.dark:hover, input.btn.btn-default.dark:active, input.btn.btn-default.dark:focus, a.btn.btn-primary.dark:hover, a.btn.btn-primary.dark:active, a.btn.btn-primary.dark:focus, a.btn.btn-default.dark:hover, a.btn.btn-default.dark:active, a.btn.btn-default.dark:focus {
  color: #fff;
}
.btn.btn-primary.pink, .btn.btn-default.pink, input.btn.btn-primary.pink, input.btn.btn-default.pink, a.btn.btn-primary.pink, a.btn.btn-default.pink {
  color: #EB445D;
}
.btn.btn-primary.pink:hover, .btn.btn-primary.pink:active, .btn.btn-primary.pink:focus, .btn.btn-default.pink:hover, .btn.btn-default.pink:active, .btn.btn-default.pink:focus, input.btn.btn-primary.pink:hover, input.btn.btn-primary.pink:active, input.btn.btn-primary.pink:focus, input.btn.btn-default.pink:hover, input.btn.btn-default.pink:active, input.btn.btn-default.pink:focus, a.btn.btn-primary.pink:hover, a.btn.btn-primary.pink:active, a.btn.btn-primary.pink:focus, a.btn.btn-default.pink:hover, a.btn.btn-default.pink:active, a.btn.btn-default.pink:focus {
  color: #fff;
}
.btn.btn-secondary, input.btn.btn-secondary, a.btn.btn-secondary {
  background-color: #fff;
  color: #001F4E;
  transition: all 150ms;
  border: 1px solid #001F4E;
}
.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: #001F4E;
  border: 1px solid #001F4E;
  color: #2C2C2C;
}
.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: #2C2C2C;
  transition: all 150ms;
  border: none;
  padding-left: 0;
  position: relative;
  text-align: left;
  transition: all 0.8s ease;
}
.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: transparent;
  color: #EB445D;
  border: none;
}
.btn.btn-link:hover:after, .btn.btn-link:active:after, .btn.btn-link:focus:after, .btn.btn-back:hover:after, .btn.btn-back:active:after, .btn.btn-back:focus:after, input.btn.btn-link:hover:after, input.btn.btn-link:active:after, input.btn.btn-link:focus:after, input.btn.btn-back:hover:after, input.btn.btn-back:active:after, input.btn.btn-back:focus:after, a.btn.btn-link:hover:after, a.btn.btn-link:active:after, a.btn.btn-link:focus:after, a.btn.btn-back:hover:after, a.btn.btn-back:active:after, a.btn.btn-back:focus:after {
  animation: move 1s ease-in-out infinite alternate;
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-hover.svg);
}
.btn.btn-link:after, .btn.btn-back:after, input.btn.btn-link:after, input.btn.btn-back:after, a.btn.btn-link:after, a.btn.btn-back:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-up.svg);
  background-repeat: no-repeat;
  width: 47px;
  height: 47px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  transition: all 150ms;
}
@media (max-width: 991px) {
  .btn.btn-big-arrow, input.btn.btn-big-arrow, a.btn.btn-big-arrow {
    font-size: 18px;
    max-width: fit-content;
  }
}
.btn.btn-big-arrow, input.btn.btn-big-arrow, a.btn.btn-big-arrow {
  font-size: 28px;
  line-height: 34px;
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: none;
  padding-left: 0;
  position: relative;
}
.btn.btn-big-arrow:hover, .btn.btn-big-arrow:active, .btn.btn-big-arrow:focus, input.btn.btn-big-arrow:hover, input.btn.btn-big-arrow:active, input.btn.btn-big-arrow:focus, a.btn.btn-big-arrow:hover, a.btn.btn-big-arrow:active, a.btn.btn-big-arrow:focus {
  background-color: transparent;
  color: #EB445D;
  border: none;
}
.btn.btn-big-arrow:hover:after, .btn.btn-big-arrow:active:after, .btn.btn-big-arrow:focus:after, input.btn.btn-big-arrow:hover:after, input.btn.btn-big-arrow:active:after, input.btn.btn-big-arrow:focus:after, a.btn.btn-big-arrow:hover:after, a.btn.btn-big-arrow:active:after, a.btn.btn-big-arrow:focus:after {
  animation: move 1s ease-in-out infinite alternate;
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/big-arrow-hover.svg);
}
@media (max-width: 991px) {
  .btn.btn-big-arrow:after, input.btn.btn-big-arrow:after, a.btn.btn-big-arrow:after {
    right: -40px;
    width: 50px;
    height: 50px;
  }
}
.btn.btn-big-arrow:after, input.btn.btn-big-arrow:after, a.btn.btn-big-arrow:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/big-arrow-up.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 78px;
  height: 78px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -75px;
  transition: all 150ms;
}
.btn.back-btn, input.btn.back-btn, a.btn.back-btn {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: none;
  padding-right: 0px;
  padding-left: 70px;
  position: relative;
}
.btn.back-btn:hover, .btn.back-btn:active, .btn.back-btn:focus, input.btn.back-btn:hover, input.btn.back-btn:active, input.btn.back-btn:focus, a.btn.back-btn:hover, a.btn.back-btn:active, a.btn.back-btn:focus {
  background-color: transparent;
  color: #EB445D;
  border: none;
}
.btn.back-btn:hover:after, .btn.back-btn:active:after, .btn.back-btn:focus:after, input.btn.back-btn:hover:after, input.btn.back-btn:active:after, input.btn.back-btn:focus:after, a.btn.back-btn:hover:after, a.btn.back-btn:active:after, a.btn.back-btn:focus:after {
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-hover.svg);
}
.btn.back-btn:after, input.btn.back-btn:after, a.btn.back-btn:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-up.svg);
  background-repeat: no-repeat;
  width: 47px;
  height: 47px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  left: 0;
  transition: all 150ms;
}

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

.back-to-list {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: none;
  padding-left: 0;
  position: relative;
  text-align: left;
  transition: all 0.8s ease;
}
.back-to-list:hover, .back-to-list:active, .back-to-list:focus {
  background-color: transparent;
  color: #EB445D;
  border: none;
}
.back-to-list:hover:after, .back-to-list:active:after, .back-to-list:focus:after {
  animation: move 1s ease-in-out infinite alternate;
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-hover.svg);
}
.back-to-list:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-up.svg);
  background-repeat: no-repeat;
  width: 47px;
  height: 47px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  transition: all 150ms;
}

/*###########################  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: #001F4E;
  -webkit-box-shadow: 0 0 0 rgb(5, 5, 5) 0px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

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

/* Formulaire - Style Global */
form.form-horizontal,
form.search-form {
  /*Fix col-md-12 full width qui affiche a moitié - width égale*/
}
form.form-horizontal .col-sm-24 .col-md-12,
form.search-form .col-sm-24 .col-md-12 {
  width: 100%;
  /*
  @include min-md {
  	padding: 0 15px 0px 0!important;
  }
  */
}
form.form-horizontal .form-group,
form.search-form .form-group {
  margin-left: 0px;
  margin-right: 0px;
}
form.form-horizontal .form-group .col-md-12, form.form-horizontal .form-group .col-sm-17, form.form-horizontal .form-group .col-sm-24,
form.search-form .form-group .col-md-12,
form.search-form .form-group .col-sm-17,
form.search-form .form-group .col-sm-24 {
  padding: 0;
}
form.form-horizontal .form-group label.control-label,
form.search-form .form-group label.control-label {
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 0;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /* Required Red Star Styles */
}
form.form-horizontal .form-group label.control-label--required,
form.search-form .form-group label.control-label--required {
  padding-left: 5px;
  color: #2C2C2C;
}
form.form-horizontal .form-group .control-label--required,
form.search-form .form-group .control-label--required {
  color: #2C2C2C !important;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /* Input Global Style */
}
form.form-horizontal .form-group input:not(.btn), form.form-horizontal .form-group select, form.form-horizontal .form-group textarea,
form.search-form .form-group input:not(.btn),
form.search-form .form-group select,
form.search-form .form-group textarea {
  background-color: #EFEFEF !important;
  color: #2C2C2C !important;
  border: 1px solid #d3d3d3 !important;
  border-radius: 6px !important;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /* Direct input overrides */
}
form.form-horizontal .form-group select, form.form-horizontal .form-group input.form-control, form.form-horizontal .form-group .chosen-choices,
form.search-form .form-group select,
form.search-form .form-group input.form-control,
form.search-form .form-group .chosen-choices {
  border: 1px solid #d3d3d3 !important;
  padding: 15px !important;
  height: 51px !important;
  border-radius: 6px !important;
}
form.form-horizontal .form-group textarea,
form.search-form .form-group textarea {
  border: none !important;
  padding: 15px !important;
}
form.form-horizontal .form-group select,
form.search-form .form-group select {
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
}
form.form-horizontal .form-group .input-file,
form.search-form .form-group .input-file {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /*Category Dropdown Styles*/
}
form.form-horizontal .form-group select.moteur-recherche, form.form-horizontal .form-group select#category_id, form.form-horizontal .form-group .chosen-choices,
form.search-form .form-group select.moteur-recherche,
form.search-form .form-group select#category_id,
form.search-form .form-group .chosen-choices {
  width: 100%;
  max-width: 400px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #EFEFEF url(https://cdn.ca.yapla.com/images/icon-membogo-arrow-combo@2x.png) no-repeat right 5px center !important;
  background-size: 13px !important;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /*Keywords Dropdown Styles*/
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices, form.form-horizontal .form-group .chosen-container-multi .chosen-choices,
form.search-form .form-group .form-element-keywords .chosen-choices,
form.search-form .form-group .chosen-container-multi .chosen-choices {
  height: auto !important;
  padding-right: 60px !important;
}
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: #001F4E !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,
form.search-form .form-group {
  /*Error Text Style*/
}
form.form-horizontal .form-group ul.error,
form.search-form .form-group ul.error {
  margin: 0;
}
form.form-horizontal .form-group ul.error li.text-danger,
form.search-form .form-group ul.error li.text-danger {
  padding: 3px 10px 0px 10px;
  color: #000;
  background-color: #ffcece;
  font-size: 12px;
}
form.form-horizontal,
form.search-form {
  /*Static Text in forms*/
}
form.form-horizontal p.form-control-static,
form.search-form p.form-control-static {
  padding-top: 0;
  margin-top: 0;
}
form.form-horizontal .crm-footer-frame,
form.search-form .crm-footer-frame {
  margin-top: 30px;
}
form.form-horizontal .crm-footer-frame #submitform,
form.search-form .crm-footer-frame #submitform {
  color: #2C2C2C !important;
}
form.form-horizontal .crm-footer-frame #submitform:hover,
form.search-form .crm-footer-frame #submitform:hover {
  color: #fff !important;
}

/* Miscellaneous forms */
#ui-form .ui-section__content {
  background-color: rgba(0, 31, 78, 0.1);
}
#ui-form .ui-section__content h2 {
  color: #001F4E;
}

.overrideformtitle .zone-crm h1 {
  font-size: 55px;
  line-height: 57px;
  font-weight: 700;
  color: #2C2C2C;
}
@media (max-width: 991px) {
  .overrideformtitle .zone-crm h1 {
    font-size: 37px;
    line-height: 43px;
  }
}
.overrideformtitle .zone-crm h1 {
  text-align: center;
}

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

.formbuilder-confirmation-content h6 {
  margin-bottom: 30px;
}

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

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

.zone-event h1.form-withProgress__title-main,
.zone-member h1.form-withProgress__title-main {
  font-size: 56px;
}
@media (max-width: 991px) {
  .zone-event h1.form-withProgress__title-main,
  .zone-member h1.form-withProgress__title-main {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .zone-event h1.form-withProgress__title-main,
  .zone-member h1.form-withProgress__title-main {
    font-size: 31px;
    line-height: 35px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  padding: 50px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .zone-event .form-withProgress__wrapper,
  .zone-member .form-withProgress__wrapper {
    padding: 32px 16px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  /*Formulaire*/
}
.zone-event .form-withProgress__wrapper h2.section-title,
.zone-member .form-withProgress__wrapper h2.section-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  padding-bottom: 16px;
}
.zone-event .form-withProgress__wrapper .form-group input, .zone-event .form-withProgress__wrapper .form-group select,
.zone-member .form-withProgress__wrapper .form-group input,
.zone-member .form-withProgress__wrapper .form-group select {
  background-color: #f7f7f7;
}
.zone-event .form-withProgress__wrapper fieldset h2,
.zone-member .form-withProgress__wrapper fieldset h2 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.zone-event .form-withProgress__wrapper fieldset legend,
.zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 21px;
  line-height: 26px;
  font-weight: 400;
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  /*Récapitulatif*/
}
.zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
.zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
.zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
  color: #2C2C2C;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
  .zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
    font-size: 14px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  /*Total box*/
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-event .form-withProgress__wrapper #fieldset-total,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-member .form-withProgress__wrapper #fieldset-total {
  padding: 15px 0 30px 0;
  margin-bottom: 0 !important;
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title {
  text-transform: initial;
  font-size: 26px;
  color: #2C2C2C !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: #2C2C2C !important;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
  .zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price,
  .zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
  .zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price {
    font-size: 20px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  /*Bottom Nav*/
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer {
  padding-top: 60px;
  padding-bottom: 60px;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: 1px solid #EB445D;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}
.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 {
  color: #fff;
  background-color: #EB445D;
  border: 1px solid #EB445D;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.dark,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.dark,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.dark,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.dark,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.dark,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.dark,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.dark,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.dark {
  color: #2C2C2C;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.dark:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.dark:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.dark:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.dark:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.dark:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.dark:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.dark:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.dark:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.dark:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.dark:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.dark:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.dark:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.dark:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.dark:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.dark:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.dark:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.dark:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.dark:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.dark:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.dark:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.dark:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.dark:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.dark:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.dark:focus {
  color: #fff;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.pink,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.pink,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.pink,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.pink,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.pink,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.pink,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.pink,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.pink {
  color: #EB445D;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.pink:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.pink:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.pink:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.pink:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.pink:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.pink:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.pink:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.pink:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.pink:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.pink:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.pink:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.pink:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.pink:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.pink:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.pink:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.pink:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.pink:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.pink:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.pink:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.pink:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.pink:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.pink:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.pink:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.pink:focus {
  color: #fff;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover {
  color: #fff !important;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step {
  color: #2C2C2C;
  margin-right: 32px;
  text-decoration: none;
  padding-left: 70px;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:after,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:after,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:after,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:after {
  left: 0;
  transform: translateY(-50%) rotate(-180deg);
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover {
  background: transparent;
  color: #EB445D;
  border: none;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
  .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step,
  .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
  .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step {
    margin-right: 0;
    justify-content: center;
  }
}
.zone-event .membership-delegate-manage .header .membership-delegate-name,
.zone-member .membership-delegate-manage .header .membership-delegate-name {
  font-weight: 400;
}
.zone-event .membership-delegate-manage .header .membership-delegate-quantity,
.zone-member .membership-delegate-manage .header .membership-delegate-quantity {
  color: #EB445D;
}
.zone-event .membership-delegate-manage .footer .btn,
.zone-member .membership-delegate-manage .footer .btn {
  height: 44px !important;
  padding: 10px 28px !important;
  background-color: transparent !important;
  color: #EB445D !important;
  transition: all 150ms !important;
  border: 1px solid #EB445D !important;
  border-radius: 20px !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: #EB445D !important;
  border: 1px solid #EB445D !important;
  color: #fff !important;
}

.modal .modal-dialog .modal-content .modal-footer button {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: 1px solid #EB445D;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}
.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 {
  color: #fff;
  background-color: #EB445D;
  border: 1px solid #EB445D;
}
.modal .modal-dialog .modal-content .modal-footer button.dark {
  color: #2C2C2C;
}
.modal .modal-dialog .modal-content .modal-footer button.dark:hover, .modal .modal-dialog .modal-content .modal-footer button.dark:active, .modal .modal-dialog .modal-content .modal-footer button.dark:focus {
  color: #fff;
}
.modal .modal-dialog .modal-content .modal-footer button.pink {
  color: #EB445D;
}
.modal .modal-dialog .modal-content .modal-footer button.pink:hover, .modal .modal-dialog .modal-content .modal-footer button.pink:active, .modal .modal-dialog .modal-content .modal-footer button.pink:focus {
  color: #fff;
}

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

/*Étapes 2 - information de l'adherent*/
.step-register .zone-member {
  padding-top: 90px;
}
.step-register .zone-member .form-withProgress__wrapper .form-horizontal .section .row .form-group input.form-control {
  background-color: #f7f7f7 !important;
}
/*Étapes 3 - Résumé Informations*/
.step-resume .zone-member .form-withProgress__wrapper h2 {
  font-size: 47px;
  line-height: 53px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 991px) {
  .step-resume .zone-member .form-withProgress__wrapper h2 {
    font-size: 30px;
    line-height: 34px;
  }
}
.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: #2C2C2C;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset .col-sm-24 {
  padding: 0;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 47px;
  line-height: 53px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 991px) {
  .step-resume .zone-member .form-withProgress__wrapper fieldset legend {
    font-size: 30px;
    line-height: 34px;
  }
}
.step-resume .zone-member .form-withProgress__wrapper fieldset legend {
  color: #2C2C2C !important;
  padding-top: 32px !important;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset.row {
  margin-left: 0;
  margin-right: 0;
}
/*Étapes 4 - Paiements*/
.step-payment .zone-member h2 {
  padding-top: 56px;
}
@media (max-width: 991px) {
  .step-payment .zone-member .form-withProgress__wrapper {
    padding: 50px 64px;
  }
}
@media (max-width: 767px) {
  .step-payment .zone-member .form-withProgress__wrapper {
    padding: 0;
  }
}
.step-payment .zone-member .form-withProgress__wrapper input.form-control {
  background-color: #fff !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-paymentmethod h2 {
  padding-top: 56px;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 input.form-control {
  border: 1px solid #d6d6d6 !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps h6 {
  width: 80%;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps span {
  width: fit-content;
}
/*Étapes 5 - Confirmation*/
#registration-member {
  margin: 0 auto;
}
#registration-member .member-step-confirm {
  text-align: center;
}
#registration-member .member-step-confirm .member-profile-container {
  padding: 32px 0;
}
#registration-member .member-step-confirm .form-withProgress__navigation-footer p {
  display: none;
}

/*ETAPES INSCRIPTION EVENEMENT*/
/*Étapes 1 - Inscription*/
@media (max-width: 991px) {
  .zone-event h1.form-withProgress__title-main {
    padding-top: 0;
  }
}
.zone-event h1.form-withProgress__title-main {
  padding-top: 60px;
}
.zone-event .form-withProgress__wrapper {
  background: transparent;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc {
  padding: 32px 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc h3 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 300;
  color: #2C2C2C;
}
@media (max-width: 991px) {
  .zone-event .form-withProgress__wrapper .registration-event-bloc h3 {
    font-size: 30px;
    line-height: 35px;
  }
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition {
  padding-left: 0;
  background-color: transparent;
  border: 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:after {
  right: -60px;
}
.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 {
  text-decoration: none !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: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset legend {
  padding-top: 32px;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
/*Étapes 3 - Paiements*/
.step-payment .zone-event .form-withProgress__wrapper h2 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  padding-bottom: 16px;
}
@media (max-width: 991px) {
  .step-payment .zone-event .form-withProgress__wrapper {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .step-payment .zone-event .form-withProgress__wrapper {
    padding: 0;
  }
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 input.form-control {
  border: 1px solid #d6d6d6 !important;
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps h6 {
  width: 80%;
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps span {
  width: fit-content;
}
/*Étapes 4 - Confirmation*/
.zone-event .event-payment .form-withProgress__wrapper .payment-form-cms #fieldset-payment_billing .row .form-group .form-control {
  background: #fff !important;
}

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

.paginationControl {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  grid-column: span 3;
}
@media (max-width: 991px) {
  .paginationControl {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .paginationControl {
    grid-column: span 1;
  }
}
.paginationControl a {
  width: 35px;
  height: 35px;
  border: 1px solid #2C2C2C;
  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: #001F4E;
}
.paginationControl a.active {
  background-color: #2C2C2C;
  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-bottom: 1px solid #000 !important;
}
.panel-news-accordion:after {
  content: "";
  width: 100%;
  display: block;
}
.panel-news-accordion .panel-heading {
  /* title box */
  background-color: transparent;
  padding: 0;
  position: relative;
}
.panel-news-accordion .panel-heading .panel-title {
  /* title */
  font-size: 40px;
  line-height: 45px;
  font-weight: 300;
  color: #2C2C2C;
}
@media (max-width: 991px) {
  .panel-news-accordion .panel-heading .panel-title {
    font-size: 30px;
    line-height: 35px;
  }
}
.panel-news-accordion .panel-heading .panel-title {
  margin-bottom: 0;
  padding-right: 30px;
}
.panel-news-accordion .panel-heading .panel-title a {
  padding: 30px 15px 30px;
  color: #001F4E;
  text-decoration: none;
}
.panel-news-accordion .panel-heading .panel-title a:after {
  content: "−";
  display: block;
  position: absolute;
  right: 15px;
  top: 25px;
  font-size: 35px;
  font-weight: 900;
  color: #000;
  transition: transform 150ms;
}
.panel-news-accordion .panel-heading .panel-title a.collapsed:after {
  content: "+";
}
.panel-news-accordion .panel-heading p {
  display: none;
}
.panel-news-accordion .panel-heading:hover {
  cursor: pointer;
}
.panel-news-accordion .panel-collapse.in {
  border-bottom: 0;
}
.panel-news-accordion .panel-body {
  /* content */
  padding: 25px 15px 30px 15px;
  margin-top: -10px;
}
.panel-news-accordion .panel-body h4 {
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body p {
  color: #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;
}
table.accordeon tbody, table.accordeon tr, table.accordeon td {
  border: 0;
}
table.accordeon tbody {
  display: block;
}
table.accordeon tbody tr {
  /* Title/accordeon box */
}
table.accordeon tbody tr:first-child {
  cursor: pointer;
  display: block;
  background-color: transparent;
  padding: 15px;
  position: relative;
}
@media (max-width: 991px) {
  table.accordeon tbody tr:first-child:after {
    right: 30px;
    font-size: 72px;
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 767px) {
  table.accordeon tbody tr:first-child:after {
    bottom: initial;
    top: 470px;
    right: 15px;
    width: 54px;
    height: 54px;
  }
}
table.accordeon tbody tr:first-child:after {
  content: "+";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 15px;
  bottom: -15px;
  font-size: 100px;
  font-weight: 100;
  transition: transform 150ms;
  width: 96px;
  height: 96px;
  border: 1px solid #EB445D;
  border-radius: 50%;
  padding-bottom: 15px;
}
table.accordeon tbody tr:last-child {
  display: block;
}
table.accordeon tbody tr:last-child td {
  display: block;
  max-height: 0;
  overflow: hidden;
}
table.accordeon {
  /* active and opened content */
}
table.accordeon.active tbody tr:first-child:after {
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  table.accordeon.active tbody tr:last-child {
    padding-top: 15px;
  }
}
table.accordeon.active tbody tr:last-child {
  padding: 15px;
  padding-top: 40px;
  background-color: transparent;
}
table.accordeon.active tbody tr:last-child td {
  max-height: 5000px;
  transition: max-height 1.5s;
}

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

.modal {
  z-index: 10001 !important;
  top: 80px;
}
.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: #2C2C2C;
}
.modal .modal-dialog .modal-content .modal-header button.close:hover {
  color: #001F4E;
}
.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: #2C2C2C !important;
  border: none;
}
.nav-pills {
  background-image: none;
}

.nav-progress {
  margin: 8rem 0 0;
}
@media (max-width: 767px) {
  .nav-progress {
    flex-direction: column;
    justify-content: space-between;
  }
}
.nav-progress li.disabled {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  opacity: 1;
}
@media (max-width: 767px) {
  .nav-progress li.disabled {
    height: 0;
    opacity: 0;
  }
}
.nav-progress li.disabled a {
  font-family: "Inter", sans-serif;
  text-align: left;
  float: none;
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  text-transform: none;
  color: #000;
  margin-top: -32px;
  padding-left: 50px;
  padding-top: 0;
  position: relative;
}
@media (max-width: 991px) and (min-width: 768px) {
  .nav-progress li.disabled a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .nav-progress li.disabled a {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .nav-progress li.disabled a {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .nav-progress li.disabled a:before {
    top: -155px;
  }
}
.nav-progress li.disabled a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  margin: auto;
  height: 2px;
  bottom: -22px;
  border-radius: 0;
  background-color: #2C2C2C;
  top: -89px;
}
.nav-progress li.disabled a:hover, .nav-progress li.disabled a:focus {
  padding-left: 50px;
  margin-top: 0;
  padding-top: 0;
  margin-top: -32px;
  font-size: 20px;
  text-transform: none;
}
@media (max-width: 991px) and (min-width: 768px) {
  .nav-progress li.disabled a:hover, .nav-progress li.disabled a:focus {
    font-size: 14px !important;
  }
}
@media (max-width: 991px) {
  .nav-progress li.disabled a:hover, .nav-progress li.disabled a:focus {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .nav-progress li.disabled a:hover, .nav-progress li.disabled a:focus {
    font-size: 20px !important;
  }
}
.nav-progress li.disabled:before {
  float: none;
  width: 100%;
  text-align: left;
  font-size: 35px;
  font-weight: 300;
  border: none;
  color: #000;
  background-color: transparent;
  padding: 5px 20px;
}
@media (max-width: 1199px) {
  .nav-progress li.disabled:before {
    padding: 5px 5px;
  }
}
@media (max-width: 991px) {
  .nav-progress li.disabled:before {
    text-align: center;
  }
}
.nav-progress li.disabled:after {
  display: none;
}
.nav-progress li.disabled.active {
  opacity: 1;
}
@media (max-width: 767px) {
  .nav-progress li.disabled.active {
    opacity: 1;
    height: initial;
  }
}
.nav-progress li.disabled.active a {
  color: #EB445D;
}
@media (max-width: 991px) {
  .nav-progress li.disabled.active a:before {
    top: -155px;
  }
}
.nav-progress li.disabled.active a:before {
  background-color: #EB445D;
  height: 5px;
  top: -90px;
}
.nav-progress li.disabled.active:before {
  font-weight: 900;
  color: #EB445D;
  background-color: transparent;
}
.nav-progress li.disabled.active:after {
  display: none;
}
.nav-progress li.disabled.active ~ li a {
  color: #c2cad0;
}
@media (max-width: 991px) {
  .nav-progress li.disabled.active ~ li a:before {
    top: -155px;
  }
}
.nav-progress li.disabled.active ~ li a:before {
  background-color: #c2cad0;
  height: 2px;
  top: -89px;
}
.nav-progress li.disabled.active ~ li:before {
  color: #D1D1D0;
  border-color: #2C2C2C;
  background-color: transparent;
}
.nav-progress li.disabled.active ~ li:after {
  display: none;
}

@media (max-width: 767px) {
  .cookie-consent-modal {
    margin-right: 70px !important;
  }
}
.cookie-consent-modal h1, .cookie-consent-modal h2, .cookie-consent-modal h3, .cookie-consent-modal h4, .cookie-consent-modal h5, .cookie-consent-modal h6, .cookie-consent-modal p, .cookie-consent-modal span, .cookie-consent-modal ul, .cookie-consent-modal li, .cookie-consent-modal button {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.cookie-consent-modal P.consent-title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.cookie-consent-modal P.consent-title {
  /*
  font-size: 30px!important;
  line-height: 32px!important;
  font-weight: 600!important;
  color: $primary!important;
        */
}
.cookie-consent-modal p.consent-description {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #2C2C2C;
}
.cookie-consent-modal p.consent-description {
  color: #2C2C2C !important;
}
.cookie-consent-modal p.consent-description a {
  text-decoration: underline;
}
.cookie-consent-modal p.consent-description a:hover {
  text-decoration: none;
}
.cookie-consent-modal .actions-container {
  justify-content: space-between !important;
}
.cookie-consent-modal .actions-container .btn-link {
  /*@include btn-secondary;*/
}
.cookie-modal h1, .cookie-modal h2, .cookie-modal h3, .cookie-modal h4, .cookie-modal h5, .cookie-modal h6, .cookie-modal p, .cookie-modal span, .cookie-modal button, .cookie-modal ul, .cookie-modal li {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
@media (max-width: 991px) {
  .cookie-modal .cm-modal {
    padding: 15px 15px 35px 15px !important;
    margin: 0px 20px;
    width: auto !important;
  }
}
@media (min-width: 992px) {
  .cookie-modal .cm-modal {
    padding: 15px 30px 35px 30px !important;
  }
}
.cookie-modal .cm-modal .cm-services {
  padding-left: 0 !important;
  margin-top: 20px !important;
}
@media (max-width: 575px) {
  .cookie-modal .cm-modal .cm-footer-buttons {
    flex-direction: column-reverse !important;
    justify-content: center !important;
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .cookie-modal .cm-modal .cm-footer-buttons .cm-btn {
    min-width: 0 !important;
    width: fit-content;
  }
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:hover, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:active, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline {
    white-space: normal !important;
  }
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline {
  height: 44px !important;
  padding: 10px 28px !important;
  background-color: transparent !important;
  color: #EB445D !important;
  transition: all 150ms !important;
  border: 1px solid #EB445D !important;
  border-radius: 20px !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:hover, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:active, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:focus {
  text-decoration: none !important;
  background-color: #EB445D !important;
  border: 1px solid #EB445D !important;
  color: #fff !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:hover, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:active, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success {
    white-space: normal !important;
  }
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success {
  height: 44px !important;
  padding: 10px 28px !important;
  background-color: transparent !important;
  color: #EB445D !important;
  transition: all 150ms !important;
  border: 1px solid #EB445D !important;
  border-radius: 20px !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:hover, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:active, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:focus {
  text-decoration: none !important;
  background-color: #EB445D !important;
  border: 1px solid #EB445D !important;
  color: #fff !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success.cm-btn-info {
  border: 2px solid #2F2F2F !important;
  background-color: transparent !important;
  color: #2F2F2F !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success.cm-btn-info:hover {
  text-decoration: none !important;
  border: 2px solid #5d5d5d !important;
  color: #5d5d5d !important;
}

#yapla-consent-box .cookie-notice .cm-btn {
  min-width: 0 !important;
  width: fit-content !important;
}

.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: #2C2C2C;
}
/* Module articles en vedette */
.zone-news_flash .newsList .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.zone-news_flash .newsList .row .item .itemImage {
  margin-bottom: 0;
}
.zone-news_flash .newsList .row .item .itemImage a img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.zone-news_flash .newsList .row .item p.itemInfos.e-date {
  margin-bottom: 0;
}
.zone-news_flash .newsList .row .item p.news-keywords {
  margin-bottom: 0;
}
.zone-news_flash a.viewAll {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.zone-news_flash a.viewAll:hover, .zone-news_flash a.viewAll:active, .zone-news_flash a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-news_flash a.viewAll {
    white-space: normal !important;
  }
}
.zone-news_flash a.viewAll {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: none;
  padding-left: 0;
  position: relative;
  text-align: left;
  transition: all 0.8s ease;
}
.zone-news_flash a.viewAll:hover, .zone-news_flash a.viewAll:active, .zone-news_flash a.viewAll:focus {
  background-color: transparent;
  color: #EB445D;
  border: none;
}
.zone-news_flash a.viewAll:hover:after, .zone-news_flash a.viewAll:active:after, .zone-news_flash a.viewAll:focus:after {
  animation: move 1s ease-in-out infinite alternate;
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-hover.svg);
}
.zone-news_flash a.viewAll:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-up.svg);
  background-repeat: no-repeat;
  width: 47px;
  height: 47px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  transition: all 150ms;
}

/* Bannière - container pleine largeur */
/*###########################  CONNEXION  ###########################*/
/* Global Fix*/
form.form-horizontal .zend_form .col-md-12 {
  width: 100%;
}
form.form-horizontal .zend_form .col-md-12 input,
form.form-horizontal .zend_form .col-md-12 select,
form.form-horizontal .zend_form .col-md-12 textarea {
  box-shadow: none !important;
}
/*Form Connexion Membre*/
.zone-login {
  background-color: #EFF0F4;
  padding: 64px;
}
@media (max-width: 767px) {
  .zone-login {
    padding: 64px 32px;
  }
}

.zone-member .member-login-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.zone-member .member-login-wrapper h1 {
  margin: 64px 0;
}
.zone-member .member-login-wrapper #profile_login_form {
  width: 50%;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type {
  padding: 16px 0 64px 0;
  text-align: right;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type a.reset-password {
  text-decoration: none;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type a.reset-password:hover {
  color: #001F4E;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form input#submit {
  margin-right: 16px;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: 1px solid #EB445D;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:hover, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:active, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:focus {
  color: #fff;
  background-color: #EB445D;
  border: 1px solid #EB445D;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription.dark {
  color: #2C2C2C;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription.dark:hover, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription.dark:active, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription.dark:focus {
  color: #fff;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription.pink {
  color: #EB445D;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription.pink:hover, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription.pink:active, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription.pink:focus {
  color: #fff;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .form-element-email {
  margin-bottom: 2.8rem;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn {
  margin-right: 30px;
}
/* Contenue personalisé */
/*Espace Evenements - Vue Details*/
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right {
    display: flex;
    flex-wrap: wrap;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
  display: flex;
  border-right: 1px solid #c2cad0;
  width: 28%;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
    order: 2;
    border: none;
    background-color: #fff;
    padding: 64px;
    width: 100%;
    text-align: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
    padding: 32px;
    margin-bottom: 45px;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron {
  width: 100%;
  background-color: transparent;
  padding-top: 0;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__date {
  font-size: 25px;
  line-height: 30px;
  color: #EB445D;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 0;
  padding-bottom: 30px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info .event-info__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding-bottom: 25px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info:after {
  content: "";
  margin-top: 5px;
  border: none;
  background: url(https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/line-dashed.png) repeat-x left center;
  display: block;
  width: 100%;
  height: 7px;
  display: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .event-info__title {
  order: 1;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  padding-top: 20px;
  border-bottom: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .contact, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .phone, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .email {
  border-bottom: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .contact {
  order: 2;
  font-size: 18px;
  line-height: 24px;
}
.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;
  font-size: 18px;
  line-height: 24px;
}
.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;
  font-size: 14px;
  line-height: 24px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .places {
  order: 5;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  padding-bottom: 25px;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 15px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .places:before {
  content: "";
  order: 5;
  margin-top: 15px;
  margin-bottom: 20px;
  border: none;
  background: url(https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/line-dashed.png) repeat-x left center;
  display: block;
  width: 100%;
  height: 7px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
    white-space: normal !important;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: 1px solid #EB445D;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:focus {
  color: #fff;
  background-color: #EB445D;
  border: 1px solid #EB445D;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe.dark {
  color: #2C2C2C;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe.dark:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe.dark:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe.dark:focus {
  color: #fff;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe.pink {
  color: #EB445D;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe.pink:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe.pink:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe.pink:focus {
  color: #fff;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
    display: none;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
  display: flex;
  flex-direction: column;
  padding-left: 100px;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
    margin: 0 0 50px 0;
    padding: 0 30px;
    order: 1;
    width: 100%;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__category {
  order: 1;
  font-style: normal;
  font-size: 21;
  font-weight: 800;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__left-right__title {
  order: 0;
  font-size: 32px;
  line-height: 39px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description {
  margin-top: 0 !important;
  order: 2;
}
.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;
  font-weight: 700;
  color: #2C2C2C;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-additional {
  order: 3;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper {
  order: 4;
  margin-top: 0;
}
.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: #2C2C2C;
  background: transparent;
  padding-left: 5px;
  margin: 0;
  line-height: 27px;
  text-transform: none;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav {
    flex-direction: column;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
    white-space: normal !important;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: 1px solid #EB445D;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:focus {
  color: #fff;
  background-color: #EB445D;
  border: 1px solid #EB445D;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back.dark {
  color: #2C2C2C;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back.dark:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back.dark:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back.dark:focus {
  color: #fff;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back.pink {
  color: #EB445D;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back.pink:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back.pink:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back.pink:focus {
  color: #fff;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
  display: none;
}
/* Espace Evenement - Mosaique */
/*###########################  ESPACE MEMBRE  ###########################*/
.line-zone-membre {
  /*
  .container-fluid{
      max-width: 80%;

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

  }
  */
}

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

  @include max-sm {
      width: 100%;
  }
  */
}
.zone-member .sidebar__member-zone .member-sidebar__inner {
  background-color: transparent;
  padding: 0px 25px 35px 25px;
  margin-right: 15px;
  border-radius: 3px;
}
@media (max-width: 991px) {
  .zone-member .sidebar__member-zone .member-sidebar__inner {
    padding: 0px;
  }
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone .member-sidebar__inner {
    margin-right: 0;
  }
}
.zone-member .sidebar__member-zone .member-sidebar__member-header {
  padding: 0;
  border: none;
}
.zone-member .sidebar__member-zone .member-sidebar__member-header__title {
  color: #001F4E;
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  text-transform: inherit;
  border-bottom: 1px solid #ccc;
  padding-top: 5px;
  padding-bottom: 20px;
  margin-bottom: 5px;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer {
  padding-left: 0;
  padding-right: 0;
  padding: 1.4rem 0;
  background: transparent;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a {
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  color: #2C2C2C;
  text-transform: initial;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a:hover, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:focus {
  color: #2C2C2C;
  text-decoration: underline;
}
.zone-member .sidebar__member-zone .member-sidebar__menu {
  padding-left: 0;
  padding-right: 0;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li {
  padding: 0;
  margin-bottom: 5px;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a {
  color: #2C2C2C;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: initial;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a:hover {
  color: #EB445D;
  text-decoration: underline;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li.active {
  display: inline-block;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li.active a {
  color: #EB445D;
}
.zone-member .member .section {
  margin-bottom: 40px;
}
.zone-member .member .section label.control-label {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #323872;
  margin-bottom: 5px;
}
.zone-member .member h2 {
  color: #161E54;
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  text-transform: inherit;
  padding: 5px 0 8px 0;
}
.zone-member .member input#submit {
  float: left !important;
}
.zone-member .form-element-votre_photo .input-file .preview #preview {
  padding-bottom: 0;
  margin-bottom: 25px;
  height: 175px;
  width: 175px;
  border-radius: 100px;
  margin-left: auto;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.zone-member .preview.row {
  margin-left: 0;
  margin-right: 0;
}

/*Événements en vedette - affichage mosaïque*/
.zone-event_flash .eventsList .row .col-sm .mod-eventflash__item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.zone-event_flash .eventsList .row .col-sm .mod-eventflash__item a img {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
/*Formulaire de Contact*/
/* Formulaire - Module Donnes*/
/* Image - (Default alignée à gauche) */
/*###########################  FIL D'ARIANE  ###########################*/
.line-breadcrumbs {
  padding-top: 10px;
  padding-bottom: 60px;
}
.line-breadcrumbs .zone-breadcrumbs {
  text-align: right;
}
.line-breadcrumbs .zone-breadcrumbs ul li a.pathway {
  text-decoration: none !important;
}
.line-breadcrumbs .zone-breadcrumbs ul li a.pathway:hover, .line-breadcrumbs .zone-breadcrumbs ul li a.pathway:focus, .line-breadcrumbs .zone-breadcrumbs ul li a.pathway:active {
  text-decoration: underline !important;
}
.line-breadcrumbs .zone-breadcrumbs ul li a, .line-breadcrumbs .zone-breadcrumbs ul li span {
  font-size: 13px;
  font-weight: 500;
}
.line-breadcrumbs .zone-breadcrumbs ul li + li:before {
  content: "/";
  color: #2C2C2C;
  font-weight: 500;
  padding: 0 10px;
}
.line-breadcrumbs .zone-breadcrumbs ul li.active {
  color: #001F4E;
}

.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: #2C2C2C;
  display: block;
}
.zone-community .row .sidebar .jumbotron a {
  display: block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #2C2C2C;
  text-transform: initial;
  padding-top: 17px;
  padding-bottom: 17px;
}
.zone-community .row .sidebar .jumbotron a:first-of-type {
  border-top: 1px solid #2C2C2C;
}
.zone-community .row .sidebar .jumbotron a:first-of-type:hover, .zone-community .row .sidebar .jumbotron a:first-of-type:focus {
  color: #2C2C2C;
  text-decoration: none;
}
.zone-community .row .sidebar .jumbotron a:last-of-type {
  border-top: 1px solid #2C2C2C;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #2C2C2C;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
  transition: all 300ms;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-arrow.svg");
  background-repeat: no-repeat;
  right: -13px;
  margin-top: -2px;
  position: relative;
  display: inline-block;
  width: 5px;
  height: 8px;
  animation-name: none;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:hover, .zone-community .row .sidebar .jumbotron a:last-of-type:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #001F4E;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:hover:after, .zone-community .row .sidebar .jumbotron a:last-of-type:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-name: bounce_arrow;
  -moz-animation-name: bounce_arrow;
}
.zone-community .row .sidebar .jumbotron + p {
  font-size: 21px;
  line-height: 26px;
  color: #2C2C2C;
  font-weight: 700;
  display: block;
  margin-left: 25px;
  margin-bottom: 20px;
}
.zone-community .row .sidebar ul {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 25px 0 15px 0;
  margin-left: 25px;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.zone-community .row .sidebar ul {
  list-style: none;
}
.zone-community .row .sidebar ul li {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 9px;
}
.zone-community .row .sidebar ul li a:hover, .zone-community .row .sidebar ul li a:focus {
  color: #2C2C2C;
  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: "Inter", sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.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 {
  height: 55px !important;
  padding: 0px 30px !important;
  background-color: #fff !important;
  color: #001F4E !important;
  transition: all 150ms !important;
  border: 1px solid #001F4E !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: #001F4E !important;
  border: 1px solid #001F4E !important;
  color: #2C2C2C !important;
}
.zone-community .row .content ul.nav li a {
  letter-spacing: 0;
}
.zone-community .row .content ul.nav li.active a {
  font-weight: 600;
  color: #2C2C2C !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: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.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: #2C2C2C;
}
.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: #2C2C2C !important;
  text-transform: inherit;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  padding: 0 10px 0 0 !important;
  margin-right: 5px !important;
}
.forum-item__likes-wrapper button i:before {
  filter: hue-rotate(299deg);
}
.forum-item__likes-wrapper button[data-type=like] i:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-pouce.svg");
  width: 28px;
  height: 27px;
  display: block;
  margin-top: -9px;
  margin-right: 5px;
}
.forum-item__likes-wrapper button[data-type=follow] i:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-etoile.svg");
  width: 27px;
  height: 25px;
  display: block;
  margin-top: -7px;
  margin-right: 5px;
}
.forum-item__likes-wrapper .forum-item__action-count {
  margin: 0 5px 0 -5px;
}

.prebuilt-articles-vedette-col3 .newsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}
@media (max-width: 991px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
.prebuilt-articles-vedette-col3 .newsList .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item .itemImage {
  margin-bottom: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.prebuilt-articles-vedette-col3 .newsList .row .item h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.itemInfos.e-date {
  margin-bottom: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.news-keywords {
  margin-bottom: 0;
}
.prebuilt-articles-vedette-col3 a.viewAll {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.prebuilt-articles-vedette-col3 a.viewAll:hover, .prebuilt-articles-vedette-col3 a.viewAll:active, .prebuilt-articles-vedette-col3 a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-vedette-col3 a.viewAll {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: none;
  padding-left: 0;
  position: relative;
  text-align: left;
  transition: all 0.8s ease;
}
.prebuilt-articles-vedette-col3 a.viewAll:hover, .prebuilt-articles-vedette-col3 a.viewAll:active, .prebuilt-articles-vedette-col3 a.viewAll:focus {
  background-color: transparent;
  color: #EB445D;
  border: none;
}
.prebuilt-articles-vedette-col3 a.viewAll:hover:after, .prebuilt-articles-vedette-col3 a.viewAll:active:after, .prebuilt-articles-vedette-col3 a.viewAll:focus:after {
  animation: move 1s ease-in-out infinite alternate;
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-hover.svg);
}
.prebuilt-articles-vedette-col3 a.viewAll:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-up.svg);
  background-repeat: no-repeat;
  width: 47px;
  height: 47px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  transition: all 150ms;
}

.prebuilt-articles-vedette-title-left-text-right .container > .row > div h2 {
  margin-bottom: 35px;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row {
  padding-top: 30px;
  padding-bottom: 20px;
  margin: 0;
  border-bottom: 1px solid #2C2C2C;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row:nth-child(1) {
  border-top: 1px solid #2C2C2C;
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item {
    columns: 2;
    column-gap: 40px;
  }
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 {
    padding-right: 100px;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 300;
  color: #2C2C2C;
}
@media (max-width: 991px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 {
    font-size: 30px;
    line-height: 35px;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 a {
  color: #2C2C2C;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 a:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item h3 a:focus {
  color: #2C2C2C;
  text-decoration: none;
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .e-date {
    padding-right: 100px;
    break-after: column;
  }
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .intro {
    margin-left: -100px;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .intro {
  margin-bottom: 2rem;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .intro p {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions {
    margin-left: -100px;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions {
  margin-top: 0;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary {
    white-space: normal !important;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: none;
  padding-left: 0;
  position: relative;
  text-align: left;
  transition: all 0.8s ease;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:focus {
  background-color: transparent;
  color: #EB445D;
  border: none;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:hover:after, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:active:after, .prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:focus:after {
  animation: move 1s ease-in-out infinite alternate;
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-hover.svg);
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div .content > .row .item .actions .btn-primary:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-up.svg);
  background-repeat: no-repeat;
  width: 47px;
  height: 47px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  transition: all 150ms;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: 1px solid #EB445D;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll:focus {
  color: #fff;
  background-color: #EB445D;
  border: 1px solid #EB445D;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll.dark {
  color: #2C2C2C;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll.dark:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll.dark:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll.dark:focus {
  color: #fff;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll.pink {
  color: #EB445D;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll.pink:hover, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll.pink:active, .prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll.pink:focus {
  color: #fff;
}
.prebuilt-articles-vedette-title-left-text-right .container > .row > div a.viewAll {
  margin-top: 80px;
}

.prebuilt-articles-multiples-col3 .news-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}
@media (max-width: 991px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
.prebuilt-articles-multiples-col3 .news-mosaic .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item .itemImage {
  margin-bottom: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item .itemImage a img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item p.itemInfos.e-date {
  margin-bottom: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row .item p.news-keywords {
  margin-bottom: 0;
}
.prebuilt-articles-multiples-col3 a.viewAll {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.prebuilt-articles-multiples-col3 a.viewAll:hover, .prebuilt-articles-multiples-col3 a.viewAll:active, .prebuilt-articles-multiples-col3 a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-multiples-col3 a.viewAll {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: none;
  padding-left: 0;
  position: relative;
  text-align: left;
  transition: all 0.8s ease;
}
.prebuilt-articles-multiples-col3 a.viewAll:hover, .prebuilt-articles-multiples-col3 a.viewAll:active, .prebuilt-articles-multiples-col3 a.viewAll:focus {
  background-color: transparent;
  color: #EB445D;
  border: none;
}
.prebuilt-articles-multiples-col3 a.viewAll:hover:after, .prebuilt-articles-multiples-col3 a.viewAll:active:after, .prebuilt-articles-multiples-col3 a.viewAll:focus:after {
  animation: move 1s ease-in-out infinite alternate;
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-hover.svg);
}
.prebuilt-articles-multiples-col3 a.viewAll:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-up.svg);
  background-repeat: no-repeat;
  width: 47px;
  height: 47px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  transition: all 150ms;
}

/* 
Mosaique
1 collone
Résumer au centre
*/
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}
@media (max-width: 991px) {
  .prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
@media (max-width: 767px) {
  .prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row {
  margin-top: 0;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item a img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.prebuilt-evenement-en-vedette-list-3 {
  padding-top: 115px;
  padding-bottom: 80px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash h2 {
  margin-bottom: 35px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 15px;
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
@media (max-width: 767px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 50px 15px;
  }
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row {
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div {
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 235px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 175px !important;
  }
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 135px !important;
  }
}
@media (max-width: 767px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
    height: 185px !important;
  }
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item h3 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 300;
  color: #2C2C2C;
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item h3 {
    font-size: 30px;
    line-height: 35px;
  }
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item h3 {
  margin-bottom: 15px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item hr {
  display: none;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos {
  margin-bottom: 25px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos .e-date {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #2C2C2C;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos .e-date {
  text-transform: inherit;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions {
  margin-bottom: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a {
  margin-top: 20px;
  margin-bottom: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: 1px solid #EB445D;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:hover, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:active, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:focus {
  color: #fff;
  background-color: #EB445D;
  border: 1px solid #EB445D;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.dark {
  color: #2C2C2C;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.dark:hover, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.dark:active, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.dark:focus {
  color: #fff;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.pink {
  color: #EB445D;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.pink:hover, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.pink:active, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary.pink:focus {
  color: #fff;
}
/* Menu & Footer social icons*/
ul.social {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}
ul.social li {
  width: 50px;
}
ul.social li a {
  text-decoration: none !important;
}
ul.social li a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.971' height='19.927' viewBox='0 0 19.971 19.927'%3E%3Cg id='Group_72249' data-name='Group 72249' transform='translate(0 0.001)'%3E%3Crect id='Rectangle_6096' data-name='Rectangle 6096' width='4.179' height='13.248' transform='translate(0.284 6.678)' fill='%23fff'/%3E%3Cpath id='Path_4227' data-name='Path 4227' d='M2278.061,0a2.405,2.405,0,1,0,2.405,2.405A2.405,2.405,0,0,0,2278.061,0' transform='translate(-2275.656 -0.001)' fill='%23fff'/%3E%3Cpath id='Path_4228' data-name='Path 4228' d='M2432.875,132.577c-3.233,0-4.153,2.208-4.153,2.208v-1.814H2424.7v13.248h4.179V139.28c0-.946.289-3.075,2.444-3.075s2.155,2.5,2.155,2.5v7.518h4.127V138.36c0-3.732-1.5-5.783-4.731-5.783' transform='translate(-2417.636 -126.293)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  width: 21px;
  height: 20px;
  background-size: contain;
  display: block;
}
ul.social li a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.971' height='19.927' viewBox='0 0 19.971 19.927'%3E%3Cg id='Group_72249' data-name='Group 72249' transform='translate(0 0.001)'%3E%3Crect id='Rectangle_6096' data-name='Rectangle 6096' width='4.179' height='13.248' transform='translate(0.284 6.678)' fill='%23001f4e'/%3E%3Cpath id='Path_4227' data-name='Path 4227' d='M2278.061,0a2.405,2.405,0,1,0,2.405,2.405A2.405,2.405,0,0,0,2278.061,0' transform='translate(-2275.656 -0.001)' fill='%23001f4e'/%3E%3Cpath id='Path_4228' data-name='Path 4228' d='M2432.875,132.577c-3.233,0-4.153,2.208-4.153,2.208v-1.814H2424.7v13.248h4.179V139.28c0-.946.289-3.075,2.444-3.075s2.155,2.5,2.155,2.5v7.518h4.127V138.36c0-3.732-1.5-5.783-4.731-5.783' transform='translate(-2417.636 -126.293)' fill='%23001f4e'/%3E%3C/g%3E%3C/svg%3E%0A");
}
ul.social li a.facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.118' height='20.064' viewBox='0 0 11.118 20.064'%3E%3Cpath id='Path_4229' data-name='Path 4229' d='M9.174,6.438l1.944.051V2.951l-2.881-.1a4.9,4.9,0,0,0-4.9,4.9v3.133H0v3.79H3.335v8.238H7.53V14.676h2.982l.606-3.79H7.53v-2.8A1.644,1.644,0,0,1,9.174,6.438' transform='translate(0 -2.85)' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  width: 11px;
  height: 22px;
  display: block;
  background-size: contain;
  position: relative;
  left: 5px;
}
ul.social li a.facebook:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.118' height='20.064' viewBox='0 0 11.118 20.064'%3E%3Cpath id='Path_4229' data-name='Path 4229' d='M9.174,6.438l1.944.051V2.951l-2.881-.1a4.9,4.9,0,0,0-4.9,4.9v3.133H0v3.79H3.335v8.238H7.53V14.676h2.982l.606-3.79H7.53v-2.8A1.644,1.644,0,0,1,9.174,6.438' transform='translate(0 -2.85)' fill='%23001f4e'/%3E%3C/svg%3E%0A");
}
ul.social li a.youtube {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%231c1d1f'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 24px;
  height: 17px;
  display: block;
  position: relative;
  top: 2px;
}
ul.social li a.youtube:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%23182cca'/%3e%3c/svg%3e");
}
ul.social li a.twitter {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21.095' height='16.408' viewBox='0 0 21.095 16.408'%3e%3cpath id='Color_Overlay' data-name='Color Overlay' d='M2.918%2c15.914A14.188%2c14.188%2c0%2c0%2c1%2c0%2c14.667a5.923%2c5.923%2c0%2c0%2c1%2c1.216-.113%2c8.557%2c8.557%2c0%2c0%2c0%2c4.135-1.019l.85-.454-.973-.34a4.673%2c4.673%2c0%2c0%2c1-2.917-2.379c0-.34%2c0-.34.851-.34h.851l-.73-.34A4.478%2c4.478%2c0%2c0%2c1%2c1.216%2c7.871%2c4.012%2c4.012%2c0%2c0%2c1%2c.609%2c5.946c0-.113.365%2c0%2c.729.113%2c1.095.341%2c1.216.227.609-.34a3.8%2c3.8%2c0%2c0%2c1-.973-4.3L1.216.737l.973.906a13.311%2c13.311%2c0%2c0%2c0%2c7.3%2c3.285l.73.113V4.361A4.162%2c4.162%2c0%2c0%2c1%2c13.254.17a5.343%2c5.343%2c0%2c0%2c1%2c2.675%2c0%2c7.434%2c7.434%2c0%2c0%2c1%2c1.337.679l.729.453.851-.226A8.382%2c8.382%2c0%2c0%2c0%2c20.184.623%2c1.293%2c1.293%2c0%2c0%2c1%2c20.67.51%2c3.669%2c3.669%2c0%2c0%2c1%2c19.576%2c2.1c-.607.566-.486.679.851.227.729-.227.729-.227.607%2c0-.121.113-.607.679-1.094%2c1.133-.851.792-.851.906-.851%2c1.585a14.886%2c14.886%2c0%2c0%2c1-1.095%2c4.3%2c12.956%2c12.956%2c0%2c0%2c1-5.106%2c5.55%2c12.818%2c12.818%2c0%2c0%2c1-6.232%2c1.514A14.136%2c14.136%2c0%2c0%2c1%2c2.918%2c15.914Z' transform='translate(0 0)' fill='%231c1d1f'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 21px;
  height: 17px;
  display: block;
  position: relative;
  top: 2px;
}
ul.social li a.twitter:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21.095' height='16.408' viewBox='0 0 21.095 16.408'%3e%3cpath id='Color_Overlay' data-name='Color Overlay' d='M2.918%2c15.914A14.188%2c14.188%2c0%2c0%2c1%2c0%2c14.667a5.923%2c5.923%2c0%2c0%2c1%2c1.216-.113%2c8.557%2c8.557%2c0%2c0%2c0%2c4.135-1.019l.85-.454-.973-.34a4.673%2c4.673%2c0%2c0%2c1-2.917-2.379c0-.34%2c0-.34.851-.34h.851l-.73-.34A4.478%2c4.478%2c0%2c0%2c1%2c1.216%2c7.871%2c4.012%2c4.012%2c0%2c0%2c1%2c.609%2c5.946c0-.113.365%2c0%2c.729.113%2c1.095.341%2c1.216.227.609-.34a3.8%2c3.8%2c0%2c0%2c1-.973-4.3L1.216.737l.973.906a13.311%2c13.311%2c0%2c0%2c0%2c7.3%2c3.285l.73.113V4.361A4.162%2c4.162%2c0%2c0%2c1%2c13.254.17a5.343%2c5.343%2c0%2c0%2c1%2c2.675%2c0%2c7.434%2c7.434%2c0%2c0%2c1%2c1.337.679l.729.453.851-.226A8.382%2c8.382%2c0%2c0%2c0%2c20.184.623%2c1.293%2c1.293%2c0%2c0%2c1%2c20.67.51%2c3.669%2c3.669%2c0%2c0%2c1%2c19.576%2c2.1c-.607.566-.486.679.851.227.729-.227.729-.227.607%2c0-.121.113-.607.679-1.094%2c1.133-.851.792-.851.906-.851%2c1.585a14.886%2c14.886%2c0%2c0%2c1-1.095%2c4.3%2c12.956%2c12.956%2c0%2c0%2c1-5.106%2c5.55%2c12.818%2c12.818%2c0%2c0%2c1-6.232%2c1.514A14.136%2c14.136%2c0%2c0%2c1%2c2.918%2c15.914Z' transform='translate(0 0)' fill='%23182cca'/%3e%3c/svg%3e");
}
ul.social li.grey a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg id='Group_72249' data-name='Group 72249' xmlns='http://www.w3.org/2000/svg' width='19.971' height='19.927' viewBox='0 0 19.971 19.927'%3E%3Crect id='Rectangle_6096' data-name='Rectangle 6096' width='4.179' height='13.248' transform='translate(0.284 6.679)' fill='%23867f7d'/%3E%3Cpath id='Path_4227' data-name='Path 4227' d='M2278.061,0a2.405,2.405,0,1,0,2.405,2.405A2.405,2.405,0,0,0,2278.061,0' transform='translate(-2275.656 0)' fill='%23867f7d'/%3E%3Cpath id='Path_4228' data-name='Path 4228' d='M2432.875,132.577c-3.233,0-4.153,2.208-4.153,2.208v-1.814H2424.7v13.248h4.179V139.28c0-.946.289-3.075,2.444-3.075s2.155,2.5,2.155,2.5v7.518h4.127V138.36c0-3.732-1.5-5.783-4.731-5.783' transform='translate(-2417.636 -126.292)' fill='%23867f7d'/%3E%3C/svg%3E%0A");
}
ul.social li.grey a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg id='Group_72249' data-name='Group 72249' xmlns='http://www.w3.org/2000/svg' width='19.971' height='19.927' viewBox='0 0 19.971 19.927'%3E%3Crect id='Rectangle_6096' data-name='Rectangle 6096' width='4.179' height='13.248' transform='translate(0.284 6.679)' fill='%23eb445d'/%3E%3Cpath id='Path_4227' data-name='Path 4227' d='M2278.061,0a2.405,2.405,0,1,0,2.405,2.405A2.405,2.405,0,0,0,2278.061,0' transform='translate(-2275.656 0)' fill='%23eb445d'/%3E%3Cpath id='Path_4228' data-name='Path 4228' d='M2432.875,132.577c-3.233,0-4.153,2.208-4.153,2.208v-1.814H2424.7v13.248h4.179V139.28c0-.946.289-3.075,2.444-3.075s2.155,2.5,2.155,2.5v7.518h4.127V138.36c0-3.732-1.5-5.783-4.731-5.783' transform='translate(-2417.636 -126.292)' fill='%23eb445d'/%3E%3C/svg%3E%0A");
}
ul.social li.grey a.facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.118' height='20.064' viewBox='0 0 11.118 20.064'%3E%3Cpath id='Path_4229' data-name='Path 4229' d='M9.174,6.438l1.944.051V2.951l-2.881-.1a4.9,4.9,0,0,0-4.9,4.9v3.133H0v3.79H3.335v8.238H7.53V14.676h2.982l.606-3.79H7.53v-2.8A1.644,1.644,0,0,1,9.174,6.438' transform='translate(0 -2.85)' fill='%23867f7d'/%3E%3C/svg%3E%0A");
}
ul.social li.grey a.facebook:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.118' height='20.064' viewBox='0 0 11.118 20.064'%3E%3Cpath id='Path_4229' data-name='Path 4229' d='M9.174,6.438l1.944.051V2.951l-2.881-.1a4.9,4.9,0,0,0-4.9,4.9v3.133H0v3.79H3.335v8.238H7.53V14.676h2.982l.606-3.79H7.53v-2.8A1.644,1.644,0,0,1,9.174,6.438' transform='translate(0 -2.85)' fill='%23eb445d'/%3E%3C/svg%3E%0A");
}
ul.social li.grey a.youtube {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%23182CCA'/%3e%3c/svg%3e");
}
ul.social li.grey a.youtube:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%23000000'/%3e%3c/svg%3e");
}
ul.social li.grey a.twitter {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21.095' height='16.408' viewBox='0 0 21.095 16.408'%3e%3cpath id='Color_Overlay' data-name='Color Overlay' d='M2.918%2c15.914A14.188%2c14.188%2c0%2c0%2c1%2c0%2c14.667a5.923%2c5.923%2c0%2c0%2c1%2c1.216-.113%2c8.557%2c8.557%2c0%2c0%2c0%2c4.135-1.019l.85-.454-.973-.34a4.673%2c4.673%2c0%2c0%2c1-2.917-2.379c0-.34%2c0-.34.851-.34h.851l-.73-.34A4.478%2c4.478%2c0%2c0%2c1%2c1.216%2c7.871%2c4.012%2c4.012%2c0%2c0%2c1%2c.609%2c5.946c0-.113.365%2c0%2c.729.113%2c1.095.341%2c1.216.227.609-.34a3.8%2c3.8%2c0%2c0%2c1-.973-4.3L1.216.737l.973.906a13.311%2c13.311%2c0%2c0%2c0%2c7.3%2c3.285l.73.113V4.361A4.162%2c4.162%2c0%2c0%2c1%2c13.254.17a5.343%2c5.343%2c0%2c0%2c1%2c2.675%2c0%2c7.434%2c7.434%2c0%2c0%2c1%2c1.337.679l.729.453.851-.226A8.382%2c8.382%2c0%2c0%2c0%2c20.184.623%2c1.293%2c1.293%2c0%2c0%2c1%2c20.67.51%2c3.669%2c3.669%2c0%2c0%2c1%2c19.576%2c2.1c-.607.566-.486.679.851.227.729-.227.729-.227.607%2c0-.121.113-.607.679-1.094%2c1.133-.851.792-.851.906-.851%2c1.585a14.886%2c14.886%2c0%2c0%2c1-1.095%2c4.3%2c12.956%2c12.956%2c0%2c0%2c1-5.106%2c5.55%2c12.818%2c12.818%2c0%2c0%2c1-6.232%2c1.514A14.136%2c14.136%2c0%2c0%2c1%2c2.918%2c15.914Z' transform='translate(0 0)' fill='%23182CCA'/%3e%3c/svg%3e");
}
ul.social li.grey a.twitter:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='21.095' height='16.408' viewBox='0 0 21.095 16.408'%3e%3cpath id='Color_Overlay' data-name='Color Overlay' d='M2.918%2c15.914A14.188%2c14.188%2c0%2c0%2c1%2c0%2c14.667a5.923%2c5.923%2c0%2c0%2c1%2c1.216-.113%2c8.557%2c8.557%2c0%2c0%2c0%2c4.135-1.019l.85-.454-.973-.34a4.673%2c4.673%2c0%2c0%2c1-2.917-2.379c0-.34%2c0-.34.851-.34h.851l-.73-.34A4.478%2c4.478%2c0%2c0%2c1%2c1.216%2c7.871%2c4.012%2c4.012%2c0%2c0%2c1%2c.609%2c5.946c0-.113.365%2c0%2c.729.113%2c1.095.341%2c1.216.227.609-.34a3.8%2c3.8%2c0%2c0%2c1-.973-4.3L1.216.737l.973.906a13.311%2c13.311%2c0%2c0%2c0%2c7.3%2c3.285l.73.113V4.361A4.162%2c4.162%2c0%2c0%2c1%2c13.254.17a5.343%2c5.343%2c0%2c0%2c1%2c2.675%2c0%2c7.434%2c7.434%2c0%2c0%2c1%2c1.337.679l.729.453.851-.226A8.382%2c8.382%2c0%2c0%2c0%2c20.184.623%2c1.293%2c1.293%2c0%2c0%2c1%2c20.67.51%2c3.669%2c3.669%2c0%2c0%2c1%2c19.576%2c2.1c-.607.566-.486.679.851.227.729-.227.729-.227.607%2c0-.121.113-.607.679-1.094%2c1.133-.851.792-.851.906-.851%2c1.585a14.886%2c14.886%2c0%2c0%2c1-1.095%2c4.3%2c12.956%2c12.956%2c0%2c0%2c1-5.106%2c5.55%2c12.818%2c12.818%2c0%2c0%2c1-6.232%2c1.514A14.136%2c14.136%2c0%2c0%2c1%2c2.918%2c15.914Z' transform='translate(0 0)' fill='%23000000'/%3e%3c/svg%3e");
}
ul.social li.blue a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg id='Group_72249' data-name='Group 72249' xmlns='http://www.w3.org/2000/svg' width='19.971' height='19.927' viewBox='0 0 19.971 19.927'%3E%3Crect id='Rectangle_6096' data-name='Rectangle 6096' width='4.179' height='13.248' transform='translate(0.284 6.679)' fill='%23001f4e'/%3E%3Cpath id='Path_4227' data-name='Path 4227' d='M2278.061,0a2.405,2.405,0,1,0,2.405,2.405A2.405,2.405,0,0,0,2278.061,0' transform='translate(-2275.656 0)' fill='%23001f4e'/%3E%3Cpath id='Path_4228' data-name='Path 4228' d='M2432.875,132.577c-3.233,0-4.153,2.208-4.153,2.208v-1.814H2424.7v13.248h4.179V139.28c0-.946.289-3.075,2.444-3.075s2.155,2.5,2.155,2.5v7.518h4.127V138.36c0-3.732-1.5-5.783-4.731-5.783' transform='translate(-2417.636 -126.292)' fill='%23001f4e'/%3E%3C/svg%3E%0A");
}
ul.social li.blue a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg id='Group_72249' data-name='Group 72249' xmlns='http://www.w3.org/2000/svg' width='19.971' height='19.927' viewBox='0 0 19.971 19.927'%3E%3Crect id='Rectangle_6096' data-name='Rectangle 6096' width='4.179' height='13.248' transform='translate(0.284 6.679)' fill='%23eb445d'/%3E%3Cpath id='Path_4227' data-name='Path 4227' d='M2278.061,0a2.405,2.405,0,1,0,2.405,2.405A2.405,2.405,0,0,0,2278.061,0' transform='translate(-2275.656 0)' fill='%23eb445d'/%3E%3Cpath id='Path_4228' data-name='Path 4228' d='M2432.875,132.577c-3.233,0-4.153,2.208-4.153,2.208v-1.814H2424.7v13.248h4.179V139.28c0-.946.289-3.075,2.444-3.075s2.155,2.5,2.155,2.5v7.518h4.127V138.36c0-3.732-1.5-5.783-4.731-5.783' transform='translate(-2417.636 -126.292)' fill='%23eb445d'/%3E%3C/svg%3E%0A");
}
ul.social li.blue a.mail {
  background-image: url("data:image/svg+xml,%3Csvg id='Group_19288' data-name='Group 19288' xmlns='http://www.w3.org/2000/svg' width='13.603' height='9.851' viewBox='0 0 13.603 9.851'%3E%3Cpath id='Path_15847' data-name='Path 15847' d='M1645.491,432.883l1.281,1.281a.547.547,0,0,0,.771,0l5.926-5.928a.861.861,0,0,0-.423-.116h-11.867a.849.849,0,0,0-.364.085Z' transform='translate(-1640.311 -428.121)' fill='%23001f4e'/%3E%3Cpath id='Path_15848' data-name='Path 15848' d='M2227.327,459.174a.857.857,0,0,0-.114-.42l-4.478,4.48,4.478,4.478a.864.864,0,0,0,.114-.423Z' transform='translate(-2213.724 -458.306)' fill='%23001f4e'/%3E%3Cpath id='Path_15849' data-name='Path 15849' d='M1649.059,787.841l-1.117,1.117a.99.99,0,0,1-.159.129c-.023.016-.049.025-.074.039a1.043,1.043,0,0,1-.1.053c-.027.011-.056.016-.083.025a1.029,1.029,0,0,1-.1.031c-.032.006-.064.006-.1.009s-.064.009-.1.009h0a1.068,1.068,0,0,1-.13-.012c-.021,0-.043,0-.064-.006a1.009,1.009,0,0,1-.124-.037c-.021-.007-.043-.011-.064-.019a.971.971,0,0,1-.122-.064c-.018-.01-.037-.017-.054-.029a1.018,1.018,0,0,1-.159-.13l-1.115-1.115-4.51,4.508a.866.866,0,0,0,.363.084h11.868a.861.861,0,0,0,.422-.114Z' transform='translate(-1640.379 -782.582)' fill='%23001f4e'/%3E%3Cpath id='Path_15850' data-name='Path 15850' d='M1606.508,454.927a.86.86,0,0,0-.147.476v8.115a.861.861,0,0,0,.148.477l4.534-4.533Z' transform='translate(-1606.361 -454.535)' fill='%23001f4e'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
  width: 23px;
  height: 18px;
}
ul.social li.blue a.mail:hover {
  background-image: url("data:image/svg+xml,%3Csvg id='Group_19288' data-name='Group 19288' xmlns='http://www.w3.org/2000/svg' width='13.603' height='9.851' viewBox='0 0 13.603 9.851'%3E%3Cpath id='Path_15847' data-name='Path 15847' d='M1645.491,432.883l1.281,1.281a.547.547,0,0,0,.771,0l5.926-5.928a.861.861,0,0,0-.423-.116h-11.867a.849.849,0,0,0-.364.085Z' transform='translate(-1640.311 -428.121)' fill='%23eb445d'/%3E%3Cpath id='Path_15848' data-name='Path 15848' d='M2227.327,459.174a.857.857,0,0,0-.114-.42l-4.478,4.48,4.478,4.478a.864.864,0,0,0,.114-.423Z' transform='translate(-2213.724 -458.306)' fill='%23eb445d'/%3E%3Cpath id='Path_15849' data-name='Path 15849' d='M1649.059,787.841l-1.117,1.117a.99.99,0,0,1-.159.129c-.023.016-.049.025-.074.039a1.043,1.043,0,0,1-.1.053c-.027.011-.056.016-.083.025a1.029,1.029,0,0,1-.1.031c-.032.006-.064.006-.1.009s-.064.009-.1.009h0a1.068,1.068,0,0,1-.13-.012c-.021,0-.043,0-.064-.006a1.009,1.009,0,0,1-.124-.037c-.021-.007-.043-.011-.064-.019a.971.971,0,0,1-.122-.064c-.018-.01-.037-.017-.054-.029a1.018,1.018,0,0,1-.159-.13l-1.115-1.115-4.51,4.508a.866.866,0,0,0,.363.084h11.868a.861.861,0,0,0,.422-.114Z' transform='translate(-1640.379 -782.582)' fill='%23eb445d'/%3E%3Cpath id='Path_15850' data-name='Path 15850' d='M1606.508,454.927a.86.86,0,0,0-.147.476v8.115a.861.861,0,0,0,.148.477l4.534-4.533Z' transform='translate(-1606.361 -454.535)' fill='%23eb445d'/%3E%3C/svg%3E%0A");
}

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

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

.line-banner {
  padding-top: 85px;
  position: relative;
}
.line-banner.beige {
  background: #FCF8EF;
}
.line-banner.lite-grey {
  background: #E7EAEC;
}
.line-banner.dark-grey {
  background: #C2CAD0;
}
.line-banner.purple {
  background: #723E5E;
}
.line-banner.blue {
  background-color: #001F4E;
}
.line-banner .content h1 {
  animation: fadeFromBottom 1.5s ease-out forwards;
}
.line-banner.event-single .content h1 {
  padding-left: 20px;
  font-size: 65px;
  line-height: 68px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 1199px) {
  .line-banner.event-single .content h1 {
    font-size: 58px;
    line-height: 61px;
  }
}
@media (max-width: 991px) {
  .line-banner.event-single .content h1 {
    font-size: 44px;
    line-height: 50px;
  }
}
.line-banner.event-single .content h1 {
  margin-bottom: 70px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .line-banner.a-propos .content {
    max-width: 100%;
  }
}
.line-banner.a-propos .content {
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}
.line-banner.a-propos:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/01_Element-graphique.svg);
  width: 78px;
  height: 62px;
  position: absolute;
  top: 0;
  right: 105px;
}
@media (max-width: 767px) {
  .line-banner.equipe {
    padding-bottom: 90px;
  }
}
.line-banner.equipe {
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .line-banner.equipe .content {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-banner.equipe .content {
  position: relative;
}
.line-banner.equipe .content::after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/Rond.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 180px;
  height: 180px;
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
}
.line-banner.equipe .content h1 {
  display: block;
  position: relative;
  z-index: 999;
}
@media (max-width: 991px) {
  .line-banner.nous-joindre .content h1 br {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .line-banner.carrieres .content h1 {
    margin-bottom: 45px;
  }
}
.line-banner.carrieres .content h1 {
  margin-bottom: 50px;
}
.line-banner.events {
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .line-banner.events:before {
    width: 85px;
  }
}
.line-banner.events:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/01_Rond.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 195px;
  height: 178px;
  position: absolute;
  top: 0;
  left: 7%;
}
.line-banner.events .content h5 {
  color: #EB445D;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .line-banner.planif {
    padding-bottom: 225px;
  }
}
.line-banner.planif {
  padding-bottom: 325px;
  position: relative;
}
@media (max-width: 767px) {
  .line-banner.planif:after {
    width: 200px;
    bottom: -8px;
  }
}
.line-banner.planif:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/Planifions.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 259px;
  height: 230px;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
.line-banner.planif .content h1 {
  color: #fff;
}
@media (max-width: 991px) {
  .line-banner.accompagnement {
    padding-bottom: 80px;
  }
}
.line-banner.accompagnement {
  padding-bottom: 165px;
}
.line-banner.accompagnement .content {
  position: relative;
}
@media (max-width: 767px) {
  .line-banner.accompagnement .content:before {
    left: 30px;
  }
}
.line-banner.accompagnement .content:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_expertise/beeg-circle.svg);
  background-repeat: no-repeat;
  width: 324px;
  height: 324px;
  position: absolute;
  bottom: -197px;
  left: 85px;
}
.line-banner.accompagnement .content:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_expertise/smol-circle.svg);
  background-repeat: no-repeat;
  width: 125px;
  height: 125px;
  position: absolute;
  top: -32px;
  right: 197px;
}
@media (max-width: 767px) {
  .line-banner.accompagnement .content h1 {
    font-size: 39px;
    line-height: 46px;
  }
}
.line-banner.accompagnement .content h1 {
  color: #fff;
  display: block;
  position: relative;
}
.line-banner.etudes {
  padding-bottom: 200px;
}
.line-banner.etudes .content {
  position: relative;
}
.line-banner.etudes .content:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/chopped-circle.svg);
  width: 281px;
  height: 288px;
  position: absolute;
  bottom: -145px;
  left: 50%;
  transform: translateX(-50%);
}
.line-banner.etudes .content h1 {
  position: relative;
}
.line-banner.mandats {
  padding-bottom: 140px;
}
.line-banner.mandats .content {
  position: relative;
}
.line-banner.mandats .content:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/mandats-circles.svg);
  background-repeat: no-repeat;
  width: 300px;
  height: 291px;
  position: absolute;
  top: -90px;
  right: 260px;
}
.line-banner.mandats .content h1 {
  position: relative;
}
.line-banner.actualites {
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
  overflow: hidden;
}
.line-banner.actualites:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_etudes/etudes-top-circles.svg);
  background-repeat: no-repeat;
  width: 195px;
  height: 220px;
  position: absolute;
  top: -90px;
  right: 10%;
}

.line-form {
  padding-top: 100px;
  padding-bottom: 100px;
}
.line-form #formbuilder-add-wrapper > div:first-child {
  margin-bottom: 70px;
}
.line-form #formbuilder-add-wrapper > div:first-child h4 {
  margin-bottom: 30px;
}
.line-form #formbuilder-add-wrapper .formbuilder-confirmation-content .btn:hover, .line-form #formbuilder-add-wrapper .formbuilder-confirmation-content .btn:focus, .line-form #formbuilder-add-wrapper .formbuilder-confirmation-content .btn:active {
  color: #fff !important;
}
.line-form .form-horizontal {
  margin-left: auto;
  margin-right: auto;
  max-width: 85%;
}
.line-form .form-horizontal .section .form-element-message {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-form .form-horizontal .section .form-element-joindre_votre_cv {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .line-form .form-horizontal .section .form-element-joindre_votre_cv {
    max-width: 80%;
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.line-form .form-horizontal .section .form-element-joindre_votre_cv {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
@media (max-width: 767px) {
  .line-form .form-horizontal .section .form-element-joindre_votre_cv input#joindre_votre_cv {
    max-width: 100%;
  }
}
.line-form .form-horizontal .section .form-element-joindre_votre_cv label.control-label {
  text-align: right !important;
}
@media (max-width: 991px) {
  .line-form .form-horizontal .section .form-element-joindre_une_lettre_de_motivation {
    max-width: 95%;
  }
}
@media (max-width: 767px) {
  .line-form .form-horizontal .section .form-element-joindre_une_lettre_de_motivation {
    flex-direction: column;
    margin-bottom: 30px;
    max-width: 90%;
  }
}
.line-form .form-horizontal .section .form-element-joindre_une_lettre_de_motivation {
  max-width: 62%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.line-form .form-horizontal .section .form-element-joindre_une_lettre_de_motivation label.control-label {
  text-align: right !important;
}
@media (max-width: 767px) {
  .line-form .form-horizontal .section .form-element-joindre_une_lettre_de_motivation input#joindre_une_lettre_de_motivation {
    max-width: 100%;
  }
}
.line-form .form-horizontal .section .form-element-je_desire_minscrire_a_linfolettre_depisode .optin-field {
  text-align: center;
}
.line-form .form-horizontal .crm-footer-frame {
  text-align: center;
}
.line-form .form-horizontal .crm-footer-frame .btn:hover, .line-form .form-horizontal .crm-footer-frame .btn:focus, .line-form .form-horizontal .crm-footer-frame .btn:active {
  color: #fff !important;
}
.line-form .contactxrm-container .section .section-title {
  display: none;
}
.line-form .contactxrm-container .section > .row .col-sm-24 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.line-form .contactxrm-container .section > .row .col-sm-24 .form-element-firstname {
  width: 45%;
}
.line-form .contactxrm-container .section > .row .col-sm-24 .form-element-lastname {
  width: 45%;
}
.line-form .contactxrm-container .section > .row .col-sm-24 .form-element-email {
  width: 100%;
}
.line-form .contactxrm-container .section > .row .col-sm-24 .form-element-optin {
  width: 100%;
}

@media (max-width: 991px) {
  .pol-conf .container {
    max-width: 100%;
  }
}
.pol-conf .container {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.pol-conf .container .row > div h3 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.pol-conf .container .row > div h3 {
  margin-top: 45px;
}

.line-module-cont {
  padding-top: 50px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .line-module-cont .content h2, .line-module-cont .content h3, .line-module-cont .content h4, .line-module-cont .content h5, .line-module-cont .content h6 {
    width: 75%;
  }
}
@media (min-width: 768px) {
  .line-module-cont .content p:not(:last-child) {
    width: 75%;
  }
}

.line-404 {
  position: relative;
}
@media (max-width: 767px) {
  .line-404:before {
    display: none;
  }
}
.line-404:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/01_Rond.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 195px;
  height: 178px;
  position: absolute;
  top: 0;
  left: 7%;
}
.line-404:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/01_Element-graphique.svg);
  width: 78px;
  height: 62px;
  position: absolute;
  top: 0;
  right: 105px;
}
@media (max-width: 991px) {
  .line-404 {
    padding: 40px 0 10px 0 !important;
  }
}
.line-404 .row > div:first-child .content {
  text-align: center;
}
.line-404 .row > div:first-child .content h1 {
  color: #2C2C2C;
}
.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: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
@media (max-width: 767px) {
  .line-home-banner {
    padding-bottom: 475px;
  }
}
.line-home-banner {
  padding-top: 60px;
  padding-bottom: 210px;
}
@media (max-width: 767px) {
  .line-home-banner .container .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-home-banner .container .row > div:first-child {
    padding-top: 0;
    width: 65%;
  }
}
@media (max-width: 767px) {
  .line-home-banner .container .row > div:first-child {
    width: 100%;
  }
}
.line-home-banner .container .row > div:first-child {
  padding-top: 100px;
}
.line-home-banner .container .row > div:first-child .content h1 {
  margin-bottom: 45px;
  font-weight: 700;
  opacity: 0; /* Start invisible */
  transform: translateX(-100%);
  animation: slideInFromLeft 1.5s ease-out forwards;
}
@media (max-width: 991px) {
  .line-home-banner .container .row > div:first-child .content h1 br {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .line-home-banner .container .row > div:first-child .content h1 br {
    display: block !important;
  }
}
.line-home-banner .container .row > div:first-child .content .banner-btns {
  display: flex;
}
.line-home-banner .container .row > div:last-child {
  position: relative;
}
@media (max-width: 991px) {
  .line-home-banner .container .row > div:last-child {
    width: 35%;
  }
}
@media (max-width: 767px) {
  .line-home-banner .container .row > div:last-child {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .line-home-banner .container .row > div:last-child:after {
    right: 0;
    width: 550px;
  }
}
@media (max-width: 991px) {
  .line-home-banner .container .row > div:last-child:after {
    width: 342px;
    height: 380px;
    background-size: contain;
    right: 8px;
    top: 110px;
  }
}
@media (max-width: 767px) {
  .line-home-banner .container .row > div:last-child:after {
    top: 40px;
  }
}
.line-home-banner .container .row > div:last-child:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/Elan.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 634px;
  height: 627px;
  position: absolute;
  top: 0;
  right: -70px;
}
.line-home-banner.test .container .row > div:last-child:after {
  display: none;
}
@media (max-width: 1199px) {
  .line-home-banner.test .container .row > div:last-child dotlottie-player, .line-home-banner.test .container .row > div:last-child .player {
    max-width: 480px;
  }
}
@media (max-width: 991px) {
  .line-home-banner.test .container .row > div:last-child dotlottie-player, .line-home-banner.test .container .row > div:last-child .player {
    max-width: 340px;
    position: absolute;
    top: -20px;
    right: 8%;
  }
}
@media (max-width: 767px) {
  .line-home-banner.test .container .row > div:last-child dotlottie-player, .line-home-banner.test .container .row > div:last-child .player {
    max-width: 367px;
    top: -70px;
    right: 3%;
  }
}

@media (max-width: 767px) {
  .line-home-event .container .row > div .eventsList .item {
    padding-left: 0;
    padding-top: 100px;
  }
}
.line-home-event .container .row > div .eventsList .item {
  padding-left: 200px;
}
@media (max-width: 767px) {
  .line-home-event .container .row > div .eventsList .item .mod-eventflash__item-title {
    max-width: 90%;
  }
}
.line-home-event .container .row > div .eventsList .item .mod-eventflash__item-title {
  position: relative;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.line-home-event .container .row > div .eventsList .item .mod-eventflash__item-title {
  text-transform: none;
  max-width: 60%;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .line-home-event .container .row > div .eventsList .item .mod-eventflash__item-title:before {
    left: 0;
    top: -100px;
  }
}
.line-home-event .container .row > div .eventsList .item .mod-eventflash__item-title:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/big-arrow-up.svg);
  background-size: contain;
  width: 78px;
  height: 78px;
  position: absolute;
  top: 35px;
  left: -180px;
}
.line-home-event .container .row > div .eventsList .item .mod-eventflash__item-title:hover:before {
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/big-arrow-hover.svg);
}
.line-home-event .container .row > div .eventsList .item .e-thumbnail {
  display: none;
}
.line-home-event .container .row > div .eventsList .item .mod-eventflash__item-intro {
  display: none;
}
.line-home-event .container .row > div .eventsList .item .actions {
  margin-top: 0 !important;
}
.line-home-event .container .row > div .eventsList .item .actions .mod-eventflash__btn-register {
  margin-top: 0 !important;
}
@media (min-width: 992px) {
  .line-home-event .container .row > div .eventsList .item .actions .mod-eventflash__btn-register {
    position: absolute;
    top: 85px;
    right: 90px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-home-event .container .row > div .eventsList .item .actions .mod-eventflash__btn-register {
    position: absolute;
    top: 120px;
    right: 90px;
  }
}
@media (max-width: 767px) {
  .line-home-event .container .row > div .eventsList .item .actions .mod-eventflash__btn-register {
    margin-top: 25px !important;
  }
}

@media (max-width: 767px) {
  .line-home-news {
    padding-bottom: 60px !important;
  }
}
.line-home-news .container .row .zone-news_flash .newsList {
  position: relative;
}
.line-home-news .container .row .zone-news_flash .newsList > .row {
  opacity: 0;
  transform: translateY(20px); /* Slight move up effect for more visual appeal */
  transition: opacity 0.8s ease, transform 0.8s ease;
}
@media (max-width: 767px) {
  .line-home-news .container .row .zone-news_flash .newsList .item {
    padding-left: 0;
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .line-home-news .container .row .zone-news_flash .newsList .item .mod-eventflash__item-title {
    max-width: 90%;
  }
}
.line-home-news .container .row .zone-news_flash .newsList .item .mod-eventflash__item-title {
  position: relative;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.line-home-news .container .row .zone-news_flash .newsList .item .mod-eventflash__item-title {
  text-transform: none;
  max-width: 60%;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .line-home-news .container .row .zone-news_flash .newsList .item .mod-eventflash__item-title:before {
    left: 0;
    top: -100px;
  }
}
.line-home-news .container .row .zone-news_flash .newsList .item .mod-eventflash__item-title:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/big-arrow-up.svg);
  background-size: contain;
  width: 78px;
  height: 78px;
  position: absolute;
  top: 35px;
  left: -180px;
}
.line-home-news .container .row .zone-news_flash .newsList .item .mod-eventflash__item-title:hover:before {
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/big-arrow-hover.svg);
}
.line-home-news .container .row .zone-news_flash .newsList .item .itemInfos {
  margin-bottom: 0 !important;
}
.line-home-news .container .row .zone-news_flash .newsList .item .itemInfos .e-date {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}
.line-home-news .container .row .zone-news_flash .newsList .item .itemInfos .city {
  display: none;
}
.line-home-news .container .row .zone-news_flash .newsList .item .mod-eventflash__item-intro {
  display: none;
}
.line-home-news .container .row .zone-news_flash .newsList .item .actions {
  margin-top: 0 !important;
}
.line-home-news .container .row .zone-news_flash .newsList .item .actions .mod-eventflash__btn-register {
  margin-top: 0 !important;
}
@media (min-width: 992px) {
  .line-home-news .container .row .zone-news_flash .newsList .item .actions .mod-eventflash__btn-register {
    position: absolute;
    top: 85px;
    right: 90px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-home-news .container .row .zone-news_flash .newsList .item .actions .mod-eventflash__btn-register {
    position: absolute;
    top: 120px;
    right: 90px;
  }
}
@media (max-width: 767px) {
  .line-home-news .container .row .zone-news_flash .newsList .item .actions .mod-eventflash__btn-register {
    margin-top: 25px !important;
  }
}

@media (max-width: 767px) {
  .line-home-intro {
    padding-bottom: 210px;
  }
}
.line-home-intro {
  padding-top: 200px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 991px) {
  .line-home-intro:before {
    background-size: contain;
    width: 100%;
    max-width: 100%;
    height: 333px;
  }
}
@media (max-width: 767px) {
  .line-home-intro:before {
    width: 340px;
    height: 170px;
    bottom: -23px;
  }
}
.line-home-intro:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/element-grahphique2.svg);
  background-repeat: no-repeat;
  width: 854px;
  height: 370px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.line-home-intro .zone-html .content {
  position: relative;
}
.line-home-intro .zone-html .content:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/pink-heartish-icon.svg);
  width: 70px;
  height: 52px;
  position: absolute;
  top: -90px;
  left: 52%;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .line-home-intro .zone-html .content h2 {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .line-home-intro .zone-html .content h2 {
    margin-bottom: 60px;
  }
}
.line-home-intro .zone-html .content h2 {
  margin-bottom: 38px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .line-home-intro .zone-html .content h6 {
    max-width: 100%;
    margin-bottom: 80px;
  }
}
.line-home-intro .zone-html .content h6 {
  text-transform: none;
  max-width: 72%;
  margin: 0 auto;
  margin-bottom: 50px;
}
.line-home-intro .zone-html .content p {
  margin-bottom: 0;
}
.line-home-intro .zone-html .content p .btn {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .line-contribuer {
    padding-top: 87px;
    padding-bottom: 90px;
    overflow: hidden;
  }
}
.line-contribuer {
  padding-bottom: 135px;
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .line-contribuer .container {
    width: 1327px;
  }
}
@media (max-width: 991px) {
  .line-contribuer .container .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-contribuer .container .row > div:first-child {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-contribuer .container .row > div:first-child {
    padding-left: 0;
    padding-right: 0;
  }
}
.line-contribuer .container .row > div:first-child {
  position: relative;
}
@media (max-width: 991px) {
  .line-contribuer .container .row > div:first-child .content {
    width: 343px;
    height: 343px;
  }
}
.line-contribuer .container .row > div:first-child .content {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 435px;
  height: 435px;
  background: #EB445D;
  display: flex;
  align-items: center;
  border-radius: 50%;
}
.line-contribuer .container .row > div:first-child .content:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/inner-circles.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 435px;
  height: 435px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -5px;
  transition: width 1.5s ease, height 1.5s ease, left 1.5s ease;
}
.line-contribuer .container .row > div:first-child .content h3 {
  position: relative;
  color: #fff;
}
@media (max-width: 1199px) {
  .line-contribuer .container .row > div:first-child .content.animate:before {
    background-size: contain;
    width: 578px;
    height: 330px;
    left: -60px;
  }
}
@media (max-width: 991px) {
  .line-contribuer .container .row > div:first-child .content.animate:before {
    width: 425px;
    height: 257px;
    left: -42px;
  }
}
.line-contribuer .container .row > div:first-child .content.animate:before {
  width: 605px;
  height: 397px;
  left: -85px;
}
@media (max-width: 991px) {
  .line-contribuer .container .row > div:last-child {
    width: 100%;
    padding-top: 60px;
  }
}
.line-contribuer .container .row > div:last-child {
  padding-top: 75px;
}
@media (max-width: 991px) {
  .line-contribuer .container .row > div:last-child .content {
    padding-left: 0;
    text-align: center;
  }
}
.line-contribuer .container .row > div:last-child .content {
  padding-left: 80px;
}
@media (max-width: 767px) {
  .line-contribuer .container .row > div:last-child .content h3 {
    display: block;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-contribuer .container .row > div:last-child .content h3 {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .line-philantropie {
    padding-bottom: 60px !important;
  }
}
@media (min-width: 768px) {
  .line-philantropie .container .row > div .content h2 {
    max-width: 80%;
  }
}
.line-philantropie .container .row > div .content h2 {
  margin-bottom: 45px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-philantropie .container .row > div .content h4 {
    max-width: 100%;
  }
}
.line-philantropie .container .row > div .content h4 {
  margin-bottom: 50px;
  max-width: 86%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-philantropie .container .row > div .content .btn:first-of-type {
    margin-right: 0;
  }
}
.line-philantropie .container .row > div .content .btn:first-of-type {
  margin-right: 25px;
}

@media (max-width: 767px) {
  .line-actualites-title {
    padding-bottom: 40px;
  }
}
.line-actualites-title {
  padding-top: 40px;
  padding-bottom: 85px;
}
@media (max-width: 767px) {
  .line-actualites-title .container .row > div:last-child .content p {
    text-align: left !important;
  }
}
.line-actualites-title .container .row > div:last-child .content .btn {
  position: relative;
}
@media (max-width: 1199px) {
  .line-actualites-title .container .row > div:last-child .content .btn:after {
    width: 360px;
  }
}
@media (max-width: 991px) {
  .line-actualites-title .container .row > div:last-child .content .btn:after {
    width: 260px;
  }
}
@media (max-width: 767px) {
  .line-actualites-title .container .row > div:last-child .content .btn:after {
    display: none;
  }
}
.line-actualites-title .container .row > div:last-child .content .btn:after {
  content: "";
  display: block;
  height: 1px;
  width: 537px;
  background: #2c2c2c;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 232px;
}

.line-home-news {
  padding-bottom: 80px;
}
.line-home-news .newsList > .row .item .itemImage .e-thumbnail {
  border-radius: 6px;
  max-width: 350px;
  margin-bottom: 30px;
}
.line-home-news .newsList > .row .item h3 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 767px) {
  .line-home-news .newsList > .row .item h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
.line-home-news .newsList > .row .item h3 a {
  color: #2C2C2C !important;
}
@media (max-width: 767px) {
  .line-home-news .newsList > .row .item .actions .btn-primary {
    text-align: left;
  }
}
.line-home-news .newsList > .row .item .actions .btn-primary {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: none;
  padding-left: 0;
  position: relative;
  text-align: left;
  transition: all 0.8s ease;
}
.line-home-news .newsList > .row .item .actions .btn-primary:hover, .line-home-news .newsList > .row .item .actions .btn-primary:active, .line-home-news .newsList > .row .item .actions .btn-primary:focus {
  background-color: transparent;
  color: #EB445D;
  border: none;
}
.line-home-news .newsList > .row .item .actions .btn-primary:hover:after, .line-home-news .newsList > .row .item .actions .btn-primary:active:after, .line-home-news .newsList > .row .item .actions .btn-primary:focus:after {
  animation: move 1s ease-in-out infinite alternate;
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-hover.svg);
}
.line-home-news .newsList > .row .item .actions .btn-primary:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-up.svg);
  background-repeat: no-repeat;
  width: 47px;
  height: 47px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  transition: all 150ms;
}
@media (max-width: 767px) {
  .line-home-news .newsList > .row .item .actions .btn-primary:after {
    right: -20px;
  }
}

@media (max-width: 991px) {
  .line-travailler .container-fluid .row {
    flex-direction: column;
  }
}
.line-travailler .container-fluid .row {
  display: flex;
}
@media (max-width: 991px) {
  .line-travailler .container-fluid .row > div:first-child {
    width: 100%;
    padding-right: 0;
  }
}
.line-travailler .container-fluid .row > div:first-child .mod-banner__wrapper {
  height: 100%;
}
@media (max-width: 991px) {
  .line-travailler .container-fluid .row > div:first-child .mod-banner__wrapper .mod-banner__img {
    height: 500px;
    background-position: 0 -60px;
  }
}
.line-travailler .container-fluid .row > div:first-child .mod-banner__wrapper .mod-banner__img {
  min-height: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .line-travailler .container-fluid .row > div:first-child .mod-banner__wrapper .mod-banner__img:after {
    display: none;
  }
}
@media (max-width: 991px) {
  .line-travailler .container-fluid .row > div:first-child .mod-banner__wrapper .mod-banner__img:after {
    top: 50px;
  }
}
.line-travailler .container-fluid .row > div:first-child .mod-banner__wrapper .mod-banner__img:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/e-letter.svg);
  background-repeat: no-repeat;
  width: 279px;
  height: 394px;
  position: absolute;
  top: 135px;
  left: -135px;
}
@media (max-width: 991px) {
  .line-travailler .container-fluid .row > div:last-child {
    width: 100%;
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .line-travailler .container-fluid .row > div:last-child {
    padding-bottom: 60px;
  }
}
.line-travailler .container-fluid .row > div:last-child {
  padding-top: 135px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .line-travailler .container-fluid .row > div:last-child .content {
    padding-left: 0;
    text-align: center;
  }
}
.line-travailler .container-fluid .row > div:last-child .content {
  padding-left: 110px;
}
.line-travailler .container-fluid .row > div:last-child .content h2 {
  margin-bottom: 45px;
}
@media (min-width: 1200px) {
  .line-travailler .container-fluid .row > div:last-child .content h6 {
    max-width: 75%;
  }
}
.line-travailler .container-fluid .row > div:last-child .content h6 {
  display: block;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 45px;
}

@media (max-width: 991px) {
  .line-eee {
    display: none;
  }
}
@media (min-width: 992px) {
  .line-eee .content {
    margin-top: -625px;
    margin-left: -255px;
    max-width: 300px;
    overflow: hidden;
    height: 425px;
    position: absolute;
    left: -3%;
    /* Adjust to fit the container size */
  }
}

@media (max-width: 767px) {
  .line-quote {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.line-quote {
  padding-bottom: 130px;
  padding-top: 160px;
}
.line-quote .container .row > div:first-child img {
  max-width: 280px;
}
@media (max-width: 767px) {
  .line-quote .container .row > div:last-child .content {
    padding-left: 0;
    text-align: center;
  }
}
.line-quote .container .row > div:last-child .content {
  padding-top: 40px;
  padding-left: 85px;
  position: relative;
}
@media (max-width: 767px) {
  .line-quote .container .row > div:last-child .content:after {
    top: 0px;
    left: 115px;
  }
}
.line-quote .container .row > div:last-child .content:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/Citation.svg);
  width: 109px;
  height: 47px;
  position: absolute;
  top: -58px;
  left: 85px;
}
.line-quote .container .row > div:last-child .content h3 {
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .line-quote .container .row > div:last-child .content .p-small br {
    display: block !important;
  }
}
.line-quote.apropos .container .row > div:last-child .content {
  padding-top: 60px;
}
.line-quote.agnes .container .row > div:first-child {
  padding-top: 40px;
}
.line-quote.agnes .container .row > div:first-child img {
  max-width: 174px;
}
@media (max-width: 767px) {
  .line-quote.agnes .container .row > div:last-child .content {
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  .line-quote.agnes .container .row > div:last-child .content:after {
    top: 15px;
    left: 108px;
  }
}
@media (max-width: 767px) {
  .line-quote.amelie {
    padding-top: 80px;
  }
}
.line-quote.amelie {
  padding-top: 740px;
  position: relative;
}
@media (max-width: 991px) {
  .line-quote.amelie:before {
    width: 600px;
  }
}
@media (max-width: 767px) {
  .line-quote.amelie:before {
    display: none;
  }
}
.line-quote.amelie:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_apropos/Photo.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 687px;
  height: 587px;
  position: absolute;
  top: 138px;
  left: 120px;
}
@media (max-width: 767px) {
  .line-quote.amelie .container .row > div:first-child {
    padding-top: 20px;
  }
}
.line-quote.amelie .container .row > div:first-child {
  padding-top: 60px;
}
.line-quote.amelie .container .row > div:first-child img {
  max-width: 174px;
}
@media (max-width: 767px) {
  .line-quote.amelie .container .row > div:last-child .content {
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  .line-quote.amelie .container .row > div:last-child .content:after {
    top: 8px;
    left: 110px;
  }
}

.line-plusloin .content h2 {
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .line-plusloin .content h2 br {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .line-plusloin .content img {
    margin-bottom: 40px;
  }
}
.line-plusloin .content img {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .line-plusloin .content h6 {
    margin-bottom: 30px;
  }
}
.line-plusloin .content h6 {
  margin-bottom: 50px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-plusloin .content p {
    max-width: 100%;
  }
}
.line-plusloin .content p {
  margin-bottom: 30px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-plusloin .content p:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.line-plusloin .content p:last-child .btn {
  max-width: fit-content;
}
@media (max-width: 767px) {
  .line-plusloin .content p:last-child .btn:first-child {
    margin-right: 0;
  }
}

.line-experience {
  padding-top: 470px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .line-experience:before {
    width: 520px;
  }
}
.line-experience:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_apropos/Experience.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 687px;
  height: 587px;
  position: absolute;
  top: 0;
  right: 110px;
}
.line-experience:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/e-letter.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 279px;
  height: 394px;
  position: absolute;
  top: 75px;
  right: -140px;
}
.line-experience .content h2 {
  margin-bottom: 35px;
}
.line-experience .content p {
  margin-left: auto;
  margin-right: auto;
  max-width: 85%;
  margin-bottom: 25px;
}

.line-avant-garde .container .row > div .content h2 {
  margin-bottom: 45px;
}
.line-avant-garde .container .row > div .content p {
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 70%;
}

.line-discussion {
  padding-top: 100px !important;
  padding-bottom: 60px !important;
}
.line-discussion .content h2 {
  margin-bottom: 40px;
}
.line-discussion .content p:last-of-type {
  margin-bottom: 0;
}
.line-discussion .content .btn {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .equipe-intro {
    padding-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .line-equipe .container .row > div .search-object-result .tab-content .tab-pane {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.line-equipe .container .row > div .search-object-result .tab-content .tab-pane {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div {
    margin-bottom: 60px;
  }
}
.line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div table.accordeon {
    width: 350px !important;
  }
}
.line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div table.accordeon {
  width: 445px !important;
}
.line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div table.accordeon tr:first-child td p {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 0;
  position: relative;
}
@media (max-width: 991px) {
  .line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div table.accordeon tr:first-child td p:first-child {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div table.accordeon tr:first-child td p:first-child {
    width: 100%;
  }
}
.line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div table.accordeon tr:first-child td p:first-child {
  position: relative;
  display: block;
}
.line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div table.accordeon tr:first-child td p:first-child:before {
  content: "";
  background: linear-gradient(rgba(235, 68, 93, 0) 0%, rgba(235, 68, 93, 0.56) 96%, #eb445d 100%);
  opacity: 0.35;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
.line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div table.accordeon tr:first-child td p:first-child img {
  width: 445px;
  height: 438px !important;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  display: block;
}
@media (max-width: 767px) {
  .line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div table.accordeon tr:first-child td p.name {
    margin-top: 30px;
  }
}
.line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div table.accordeon tr:first-child td p.name {
  margin-top: 55px;
  color: #EB445D;
  font-weight: 700;
}
.line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div table.accordeon tr:first-child td p.title {
  max-width: 70%;
}
@media (min-width: 768px) {
  .line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div:nth-child(6n+1) table.accordeon tr:first-child td p img, .line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div:nth-child(6n+4) table.accordeon tr:first-child td p img, .line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div:nth-child(6n+5) table.accordeon tr:first-child td p img {
    width: 445px;
    height: 556px !important;
  }
}
@media (min-width: 768px) {
  .line-equipe .container .row > div .search-object-result .tab-content .tab-pane > div:nth-child(even) tr:first-child:after {
    bottom: -10px;
  }
}

.nos-collabos-title .content h2 {
  margin-bottom: 45px;
}
.nos-collabos-title .content h4 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 767px) {
  .nos-collabos-title .content h4 {
    font-size: 18px;
    line-height: 24px;
  }
}
.nos-collabos-title .content h4 {
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .nos-collabos .content ul {
    flex-direction: column;
  }
}
.nos-collabos .content ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .nos-collabos .content ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.nos-collabos .content ul li {
  width: 25%;
}
@media (max-width: 767px) {
  .nos-collabos .content ul li h5 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .nos-collabos .content ul li h5 a {
    text-align: center;
    padding-right: 0;
  }
}
.nos-collabos .content ul li h5 a {
  padding-bottom: 0;
  margin-bottom: 0;
  padding-top: 0;
  margin-top: 0;
  padding-right: 0;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.nos-collabos .content ul li h5 a {
  text-align: left;
  padding-bottom: 12px;
  border-bottom: 2px solid #EB445D;
}
.nos-collabos .content ul li h5 a:after {
  display: none;
}
@media (max-width: 767px) {
  .nos-collabos .content ul li h5 a:after {
    left: 50%;
    transform: translateX(-50%);
    display: none;
  }
}
.nos-collabos .content ul li h5 a:after {
  left: 0;
  right: 0;
  top: 128%;
}
.nos-collabos .content ul li h5 a:hover {
  border-bottom: 2px solid #2C2C2C;
}
@media (max-width: 767px) {
  .nos-collabos .content ul li br {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .line-carrieres-banner {
    padding-bottom: 45px;
  }
}
.line-carrieres-banner {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .line-carrieres-banner .container .row > div .mod-banner__wrapper .mod-banner__img {
    height: 270px;
  }
}
.line-carrieres-banner .container .row > div .mod-banner__wrapper .mod-banner__img {
  height: 470px;
}

@media (max-width: 991px) {
  .line-viens-contruire {
    padding-bottom: 80px;
  }
}
.line-viens-contruire {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .line-viens-contruire .container .row > div:first-child {
    margin-bottom: 45px;
  }
}
@media (min-width: 768px) {
  .line-viens-contruire .container .row > div:first-child .content {
    max-width: 90%;
  }
}
@media (max-width: 991px) {
  .line-viens-contruire .container .row > div:last-child .content {
    padding-top: 0;
  }
}
.line-viens-contruire .container .row > div:last-child .content {
  padding-top: 220px;
}

@media (max-width: 991px) {
  .line-lhumain {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .line-lhumain {
    padding-top: 80px;
    padding-bottom: 45px;
  }
}
.line-lhumain {
  padding-top: 130px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .line-lhumain .container .row .zone-html .content {
    padding-top: 0;
  }
}
.line-lhumain .container .row .zone-html .content {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .line-lhumain .container .row .zone-html .content h2 {
    max-width: 100%;
  }
}
.line-lhumain .container .row .zone-html .content h2 {
  max-width: 75%;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .line-lhumain .container .row .zone-html .content p {
    margin-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .line-lhumain .container .row .zone-image img {
    max-width: 300px;
  }
}
.line-lhumain .container .row .zone-image img {
  max-width: 445px;
}

@media (max-width: 991px) {
  .line-un-milieu {
    padding-bottom: 80px;
  }
}
.line-un-milieu {
  padding-bottom: 148px;
}
.line-un-milieu .container .row {
  display: flex;
}
@media (min-width: 768px) {
  .line-un-milieu .container .row {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .line-un-milieu .container .row {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .line-un-milieu .container .row .zone-image {
    order: 1;
  }
}
@media (max-width: 991px) {
  .line-un-milieu .container .row .zone-image img {
    max-width: 300px;
  }
}
.line-un-milieu .container .row .zone-image img {
  max-width: 445px;
}
@media (max-width: 767px) {
  .line-un-milieu .container .row .zone-html {
    order: 0;
  }
}
.line-un-milieu .container .row .zone-html .content h2 {
  max-width: 90%;
}
@media (max-width: 767px) {
  .line-un-milieu .container .row .zone-html .content p {
    margin-bottom: 45px;
  }
}

.line-valeurs-title {
  padding-top: 127px;
  padding-bottom: 85px;
}

@media (max-width: 991px) {
  .line-valeurs {
    padding-bottom: 80px;
  }
}
.line-valeurs {
  padding-bottom: 122px;
}
@media (max-width: 767px) {
  .line-valeurs .container .row > div h4, .line-valeurs .container .row > div p {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .line-valeurs .container .row > div:first-child, .line-valeurs .container .row > div:last-child {
    width: 30% !important;
  }
}
@media (min-width: 768px) {
  .line-valeurs .container .row > div:first-child, .line-valeurs .container .row > div:last-child {
    width: 33% !important;
  }
}
@media (max-width: 767px) {
  .line-valeurs .container .row > div:first-child .content h4, .line-valeurs .container .row > div:last-child .content h4 {
    margin-bottom: 15px;
  }
}
.line-valeurs .container .row > div:first-child .content h4, .line-valeurs .container .row > div:last-child .content h4 {
  color: #EB445D;
  margin-bottom: 30px;
}
.line-valeurs .container .row > div:first-child .content p, .line-valeurs .container .row > div:last-child .content p {
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .line-valeurs .container .row > div:first-child .content p br, .line-valeurs .container .row > div:last-child .content p br {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .line-valeurs .container .row > div:first-child .valeur:first-child {
    margin-bottom: 45px;
  }
}
.line-valeurs .container .row > div:first-child .valeur:first-child {
  margin-bottom: 60px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-valeurs .container .row > div:last-child .valeur:first-child {
    margin-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .line-valeurs .container .row > div:last-child .valeur:first-child {
    margin-bottom: 45px;
  }
}
.line-valeurs .container .row > div:last-child .valeur:first-child {
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .line-valeurs .container .row > div:nth-child(2) {
    width: 40% !important;
  }
}
@media (min-width: 768px) {
  .line-valeurs .container .row > div:nth-child(2) {
    width: 33% !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-valeurs .container .row > div:nth-child(2) .content {
    padding-top: 50%;
  }
}
.line-valeurs .container .row > div:nth-child(2) .content {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .line-valeurs .container .row > div:nth-child(2) .content img {
    max-width: 200px !important;
    padding-top: 45px;
    padding-bottom: 45px;
  }
}
.line-valeurs .container .row > div:nth-child(2) .content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.line-valeurs .container .row > div:nth-child(2) .content .carrieres-player, .line-valeurs .container .row > div:nth-child(2) .content dotlottie-player {
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.line-valeurs .container .row > div:nth-child(2) .content .carrieres-player.in-view, .line-valeurs .container .row > div:nth-child(2) .content dotlottie-player.in-view {
  opacity: 1;
}

@media (max-width: 991px) {
  .line-avantages-title {
    padding-bottom: 80px;
  }
}
.line-avantages-title {
  padding-top: 112px;
  padding-bottom: 95px;
}

@media (max-width: 1199px) {
  .line-avantages-desc {
    overflow: hidden;
  }
}
.line-avantages-desc {
  border-bottom: 1px solid #c2cad0;
  padding-bottom: 30px;
  position: relative;
}
@media (max-width: 991px) {
  .line-avantages-desc #equilibre {
    width: 140px !important;
  }
}
@media (max-width: 767px) {
  .line-avantages-desc #equilibre {
    width: 80px !important;
    top: 0;
    right: 0;
  }
}
.line-avantages-desc #equilibre {
  position: absolute;
  top: -55px;
  right: 15%;
}
@media (max-width: 991px) {
  .line-avantages-desc #bien {
    width: 140px !important;
    top: -55px;
  }
}
@media (max-width: 767px) {
  .line-avantages-desc #bien {
    width: 80px !important;
    top: -15px;
    left: 50%;
  }
}
.line-avantages-desc #bien {
  position: absolute;
  top: -102px;
  left: 25%;
}
@media (max-width: 991px) {
  .line-avantages-desc #croissance {
    width: 140px !important;
    right: 45px;
  }
}
@media (max-width: 767px) {
  .line-avantages-desc #croissance {
    width: 80px !important;
    top: 20px;
    right: 0;
  }
}
.line-avantages-desc #croissance {
  position: absolute;
  top: -38px;
  right: 0;
}

@media (max-width: 991px) {
  .line-avantages {
    padding-bottom: 80px;
  }
}
.line-avantages {
  padding-top: 48px;
  padding-bottom: 160px;
}
@media (max-width: 991px) {
  .line-avantages .container .row > div:first-child .content h6 {
    max-width: 100%;
  }
}
.line-avantages .container .row > div:first-child .content h6 {
  max-width: 70%;
}
@media (max-width: 991px) {
  .line-avantages .container .row > div:last-child .content {
    padding-left: 0;
  }
}
.line-avantages .container .row > div:last-child .content {
  padding-left: 100px;
}

.line-postes-title {
  padding-bottom: 60px !important;
}
@media (max-width: 991px) {
  .line-postes-title {
    padding-top: 80px !important;
    padding-bottom: 45px !important;
  }
}

@media (max-width: 991px) {
  .line-postes {
    padding-bottom: 80px;
  }
}
.line-postes {
  padding-bottom: 100px;
  border-bottom: 1px solid #c2cad0;
}
@media (max-width: 767px) {
  .line-postes .news-mosaic .row > div {
    margin-bottom: 60px;
  }
}
.line-postes .news-mosaic .row > div .news-title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.line-postes .news-mosaic .row > div .news-title > a {
  color: #2C2C2C !important;
}
.line-postes .news-mosaic .row > div .news-title > a:hover {
  color: #EB445D !important;
}
.line-postes .news-mosaic .row > div > a:last-of-type {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.line-postes .news-mosaic .row > div > a:last-of-type:hover, .line-postes .news-mosaic .row > div > a:last-of-type:active, .line-postes .news-mosaic .row > div > a:last-of-type:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-postes .news-mosaic .row > div > a:last-of-type {
    white-space: normal !important;
  }
}
.line-postes .news-mosaic .row > div > a:last-of-type {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: none;
  padding-left: 0;
  position: relative;
  text-align: left;
  transition: all 0.8s ease;
}
.line-postes .news-mosaic .row > div > a:last-of-type:hover, .line-postes .news-mosaic .row > div > a:last-of-type:active, .line-postes .news-mosaic .row > div > a:last-of-type:focus {
  background-color: transparent;
  color: #EB445D;
  border: none;
}
.line-postes .news-mosaic .row > div > a:last-of-type:hover:after, .line-postes .news-mosaic .row > div > a:last-of-type:active:after, .line-postes .news-mosaic .row > div > a:last-of-type:focus:after {
  animation: move 1s ease-in-out infinite alternate;
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-hover.svg);
}
.line-postes .news-mosaic .row > div > a:last-of-type:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-up.svg);
  background-repeat: no-repeat;
  width: 47px;
  height: 47px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  transition: all 150ms;
}
.line-postes .news-mosaic .row > div > a:last-of-type {
  border: none !important;
  padding-left: 0 !important;
  color: #2C2C2C !important;
}
.line-postes .news-mosaic .row > div > a:last-of-type:hover {
  background: transparent !important;
  color: #EB445D !important;
}

.poste-single {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .poste-single .container .row > div .mod-article__wrapper .mod-article__title {
    max-width: 100%;
  }
}
.poste-single .container .row > div .mod-article__wrapper .mod-article__title {
  font-size: 65px;
  line-height: 68px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 1199px) {
  .poste-single .container .row > div .mod-article__wrapper .mod-article__title {
    font-size: 58px;
    line-height: 61px;
  }
}
@media (max-width: 991px) {
  .poste-single .container .row > div .mod-article__wrapper .mod-article__title {
    font-size: 44px;
    line-height: 50px;
  }
}
.poste-single .container .row > div .mod-article__wrapper .mod-article__title {
  text-align: left;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}
@media (max-width: 767px) {
  .poste-single .container .row > div .mod-article__wrapper .news-content {
    max-width: 100%;
  }
}
.poste-single .container .row > div .mod-article__wrapper .news-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}
.poste-single .container .row > div .mod-article__wrapper .news-content .mod-article__intro {
  margin-bottom: 60px;
}
.poste-single .container .row > div .mod-article__wrapper .news-content .mod-article__intro p {
  font-size: 28px;
  line-height: 34px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 767px) {
  .poste-single .container .row > div .mod-article__wrapper .news-content .mod-article__intro p {
    font-size: 18px;
    line-height: 24px;
  }
}
.poste-single .container .row > div .mod-article__wrapper .news-content .mod-article__content p {
  opacity: 1 !important;
  transform: none !important;
}
.poste-single .container .row > div .mod-article__wrapper .news-content .mod-article__content ul li {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 991px) {
  .line-events {
    padding-top: 80px;
    overflow: hidden;
    padding-bottom: 80px;
  }
}
.line-events {
  padding-top: 170px;
  padding-bottom: 170px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .line-events:before {
    width: 110px;
    right: -55px;
  }
}
.line-events:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/02_Rond.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 160px;
  height: 160px;
  position: absolute;
  right: -80px;
  top: 0;
}
@media (max-width: 991px) {
  .line-events .eventsList > .row:not(:last-child) {
    margin-bottom: 45px;
  }
}
.line-events .eventsList > .row:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .line-events .eventsList > .row .item {
    display: flex;
    flex-direction: column;
  }
}
.line-events .eventsList > .row .item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 0px;
}
.line-events .eventsList > .row .item > a {
  grid-column: 1;
  grid-row: span 3;
}
@media (max-width: 1199px) {
  .line-events .eventsList > .row .item > a .e-thumbnail {
    max-width: 350px;
  }
}
@media (max-width: 991px) {
  .line-events .eventsList > .row .item > a .e-thumbnail {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .line-events .eventsList > .row .item > a .e-thumbnail {
    max-width: 100%;
  }
}
.line-events .eventsList > .row .item > a .e-thumbnail {
  max-width: 450px;
  border-radius: 6px;
}
.line-events .eventsList > .row .item .mod-eventflash__item-title {
  grid-column: 2;
  grid-row: 1;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.line-events .eventsList > .row .item .mod-eventflash__item-title {
  margin-bottom: 25px;
}
.line-events .eventsList > .row .item .mod-eventflash__item-itemInfos {
  margin-bottom: 0;
  grid-column: 2;
  grid-row: 2;
}
.line-events .eventsList > .row .item .mod-eventflash__item-itemInfos .e-date {
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
  color: #2C2C2C;
}
@media (max-width: 767px) {
  .line-events .eventsList > .row .item hr {
    display: none;
  }
}
.line-events .eventsList > .row .item .actions {
  grid-column: 2;
  grid-row: 3;
}

@media (max-width: 767px) {
  .line-single-event {
    padding-top: 0 !important;
  }
}
.line-single-event .container .row > div .event-detail .row-event-jumbotron__right .event-jumbotron__left-right__title {
  font-size: 65px;
  line-height: 68px;
  font-weight: 400;
}

.line-backbtn {
  padding-top: 60px;
}
.line-backbtn .content {
  padding-left: 30px;
}

.line-planif-intro {
  padding-bottom: 110px;
}
@media (max-width: 991px) {
  .line-planif-intro .content {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .line-planif-intro .content {
    max-width: 100%;
  }
}
.line-planif-intro .content {
  margin-left: auto;
  margin-right: auto;
  max-width: 66%;
}

.line-objectif .content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.line-diagnostic-title {
  padding-top: 110px;
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  .line-diagnostic-title .content h2 {
    max-width: 78%;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-diagnostic-title .content h2 {
  margin-bottom: 40px;
}
.line-diagnostic-title .content p {
  display: block;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.line-diagnostic .newsList {
  grid-gap: 60px 0;
}
.line-diagnostic .newsList .item {
  display: flex;
  flex-direction: column;
}
.line-diagnostic .newsList .item .itemImage {
  text-align: center;
}
.line-diagnostic .newsList .item .intro {
  order: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.line-diagnostic .newsList .item .intro dotlottie-player {
  margin-left: auto;
  margin-right: auto;
}
.line-diagnostic .newsList .item .intro.in-view {
  opacity: 1;
}
.line-diagnostic .newsList .item h3 {
  order: 1;
  text-align: center;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.line-intention {
  padding-top: 90px;
  padding-bottom: 75px;
}
.line-intention .content {
  position: relative;
}
.line-intention .content:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_expertise/funky-underline.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 32px;
  position: absolute;
  top: -45px;
  left: 10px;
  right: 0;
}

@media (max-width: 767px) {
  .line-analyse .container .row > div .content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .line-analyse .container .row > div .content h2 {
    margin-bottom: 45px;
  }
}

.line-aidons {
  padding-bottom: 110px;
}
.line-aidons .container .row > div:first-child .content {
  max-width: 86%;
}
.line-aidons .container .row > div:last-child .content p {
  font-weight: 700;
}

@media (max-width: 991px) {
  .line-planif-strat {
    padding-bottom: 80px;
  }
}
.line-planif-strat {
  padding-top: 275px;
  padding-bottom: 155px;
}
.line-planif-strat .container .row > div:first-child {
  position: relative;
}
.line-planif-strat .container .row > div:first-child:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_expertise/Loupe.svg);
  background-repeat: no-repeat;
  width: 124px;
  height: 154px;
  position: absolute;
  top: -175px;
  left: 0;
}
@media (max-width: 767px) {
  .line-planif-strat .container .row > div:first-child .content h2 {
    margin-bottom: 45px;
  }
}
.line-planif-strat .container .row > div:last-child .content h6 {
  margin-bottom: 40px;
}
.line-planif-strat .container .row > div:last-child .content p:first-of-type {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .line-cta-philanthropie {
    padding-bottom: 125px;
  }
}
.line-cta-philanthropie {
  border-top: 1px solid #c2cad0;
  border-bottom: 1px solid #c2cad0;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
@media (max-width: 1199px) {
  .line-cta-philanthropie:after {
    background-size: contain;
    width: 355px;
    top: 195px;
  }
}
.line-cta-philanthropie:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_expertise/e.svg);
  background-repeat: no-repeat;
  width: 413px;
  height: 582px;
  position: absolute;
  left: -206px;
  top: -287px;
}
@media (min-width: 768px) {
  .line-cta-philanthropie .content {
    width: 660px;
  }
}
.line-cta-philanthropie .content {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-cta-philanthropie .content h6 {
    text-align: center !important;
    border-right: none;
  }
}
.line-cta-philanthropie .content h6 {
  display: block;
  max-width: fit-content;
  margin-left: 0;
  margin-right: auto;
  padding-right: 35px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-right: 1px solid #c2cad0;
  position: relative;
}
.line-cta-philanthropie .content h6 a {
  color: #2C2C2C !important;
  position: relative;
}
@media (max-width: 767px) {
  .line-cta-philanthropie .content h6 a:after {
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    top: 110px;
  }
}
.line-cta-philanthropie .content h6 a:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_expertise/bigbig-arrow.svg);
  background-repeat: no-repeat;
  width: 94px;
  height: 94px;
  position: absolute;
  right: -170px;
  top: 50%;
  transform: translateY(-50%);
}
.line-cta-philanthropie .content h6 a:hover {
  color: #EB445D !important;
  text-decoration: none !important;
}
@media (max-width: 767px) {
  .line-cta-philanthropie .content h6 a br {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .accompagnement-intro {
    padding-bottom: 80px !important;
  }
}
@media (max-width: 991px) {
  .accompagnement-intro .content {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .accompagnement-intro .content {
    max-width: 100%;
    width: 100%;
  }
}
.accompagnement-intro .content {
  max-width: 65%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 767px) {
  .accompagnement-intro .content:before {
    background-size: contain;
    width: 160px;
    height: 160px;
    right: -25px;
  }
}
.accompagnement-intro .content:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_expertise/fading-circle.svg);
  background-repeat: no-repeat;
  width: 313px;
  height: 313px;
  position: absolute;
  top: -130px;
  right: -125px;
}
.accompagnement-intro .content h6 {
  position: relative;
}

@media (max-width: 991px) {
  .line-metho .container .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-metho .container .row > div:first-child {
    width: 100%;
    margin-bottom: 60px;
  }
}
.line-metho .container .row > div:first-child {
  padding-right: 0;
}
@media (max-width: 991px) {
  .line-metho .container .row > div:first-child .content {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .line-metho .container .row > div:first-child .content h2 {
    margin-bottom: 45px;
  }
}
.line-metho .container .row > div:first-child .content h2 {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .line-metho .container .row > div:first-child .content h2 br {
    display: none !important;
  }
}
.line-metho .container .row > div:first-child .content p:first-of-type {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-metho .container .row > div:last-child {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .line-metho .container .row > div:last-child .content {
    padding-left: 80px;
  }
}
@media (max-width: 991px) {
  .line-metho .container .row > div:last-child .content {
    padding-left: 0;
    text-align: center;
  }
}
.line-metho .container .row > div:last-child .content {
  padding-left: 130px;
}
@media (max-width: 991px) {
  .line-metho .container .row > div:last-child .content p {
    margin-left: auto;
    margin-right: auto;
    max-width: 55%;
  }
}
@media (max-width: 767px) {
  .line-metho .container .row > div:last-child .content p {
    max-width: 100%;
  }
}
.line-metho .container .row > div:last-child .content p {
  display: block;
  font-weight: 700;
  margin-bottom: 50px;
  max-width: 85%;
}
@media (max-width: 767px) {
  .line-metho .container .row > div:last-child .content img {
    max-width: 280px;
  }
}
.line-metho .container .row > div:last-child .content img {
  max-width: 386px;
}

@media (max-width: 767px) {
  .line-dev .container .row > div:first-child {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .line-dev .container .row > div:first-child img {
    max-width: 226px;
    padding-top: 0;
  }
}
.line-dev .container .row > div:first-child img {
  padding-top: 40px;
  max-width: 326px;
}
.line-dev .container .row > div:last-child {
  padding-right: 0;
}
.line-dev .container .row > div:last-child .content h2 {
  margin-bottom: 40px;
}

.line-deploiement .content h2 {
  margin-bottom: 25px;
}
@media (min-width: 1200px) {
  .line-deploiement .content img {
    width: 1200px !important;
  }
}
.line-deploiement .content img {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .line-deploiement .content p:nth-child(3), .line-deploiement .content p:last-child {
    max-width: 100%;
  }
}
.line-deploiement .content p:nth-child(3), .line-deploiement .content p:last-child {
  display: block;
  max-width: 75%;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 991px) {
  .line-coaching {
    padding-bottom: 80px;
  }
}
.line-coaching {
  padding-bottom: 190px;
}

@media (max-width: 991px) {
  .line-recrutement {
    padding-bottom: 100px;
    padding-top: 270px;
  }
}
.line-recrutement {
  padding-top: 292px;
  padding-bottom: 300px;
}
.line-recrutement .container .row > div:first-child {
  position: relative;
}
.line-recrutement .container .row > div:first-child:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_expertise/recrutement-icon.svg);
  background-repeat: no-repeat;
  width: 141px;
  height: 204px;
  position: absolute;
  top: -200px;
  left: 0;
}

.line-etudes .container .row > div form {
  display: none;
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box {
  border: none;
  padding: 0;
  padding-bottom: 90px;
  margin-bottom: 85px;
  border-bottom: 1px solid #c2cad0;
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:first-child {
    margin-right: 8%;
    margin-left: auto;
  }
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:first-child .news-blog__left {
  width: fit-content;
  position: relative;
}
@media (max-width: 991px) {
  .line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:first-child .news-blog__left:before {
    width: 300px;
    left: -366px;
  }
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:first-child .news-blog__left:before {
  content: "";
  background-color: #c2cad0;
  display: block;
  width: 360px;
  height: 1px;
  position: absolute;
  left: -484px;
  bottom: 0;
}
@media (max-width: 991px) {
  .line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:first-child .news-blog__left .news-blog__image {
    max-width: 300px;
  }
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:first-child .news-blog__left .news-blog__image {
  border-radius: 6px;
  width: 635px !important;
  max-width: 635px;
  box-shadow: 0 20px 20px -4px gray;
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child {
  width: 100%;
}
@media (max-width: 767px) {
  .line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right {
    margin-top: 60px;
  }
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right {
  position: relative;
}
@media (max-width: 991px) {
  .line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right .news-blog__title {
    border-bottom: none;
  }
}
@media (max-width: 767px) {
  .line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right .news-blog__title {
    margin-top: 0;
    padding-bottom: 0;
    margin-bottom: 25px;
  }
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right .news-blog__title {
  margin-top: -136px;
  padding-bottom: 45px;
  margin-bottom: 45px;
  display: block;
  max-width: 380px;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right .news-blog__title a {
  display: block;
  max-width: 308px;
  color: #2C2C2C !important;
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right .news-blog__title a:hover {
  color: #EB445D !important;
  text-decoration: none !important;
}
@media (max-width: 767px) {
  .line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right .news-blog__intro {
    max-width: 100%;
  }
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right .news-blog__intro {
  max-width: 70%;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 991px) {
  .line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right .news-blog__nav {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right .news-blog__nav {
    position: initial;
    margin-left: 0;
    margin-right: auto;
  }
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right .news-blog__nav {
  width: 25%;
  margin-right: 0;
  margin-left: auto;
  align-items: flex-start;
  justify-content: flex-end;
  position: absolute;
  top: 177px;
  right: 0;
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right .news-blog__nav .news-blog__cta {
  width: 68px;
  height: 68px;
  flex-grow: 0;
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right .news-blog__nav .news-blog__cta > a {
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_expertise/bigbig-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 68px;
  height: 68px;
}
.line-etudes .container .row > div .js-news-blog-items .news-blog__box > .row .col-sm-12:last-child .news-blog__right .news-blog__nav .news-blog__cta > a .fa {
  display: none;
}
@media (min-width: 768px) {
  .line-etudes .container .row > div .js-news-blog-items .news-blog__box:nth-child(1) .news-blog__title {
    margin-bottom: 75px !important;
  }
}
.line-etudes .container .row > div .js-news-blog-items .paginatorNbRow {
  display: none;
}

@media (max-width: 767px) {
  .etude-title {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.etude-title {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
.etude-title:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_etudes/etudes-top-circles.svg);
  background-repeat: no-repeat;
  width: 195px;
  height: 220px;
  position: absolute;
  top: -90px;
  right: 10%;
}
.etude-title .mod-article__title {
  font-size: 65px;
  line-height: 68px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 1199px) {
  .etude-title .mod-article__title {
    font-size: 58px;
    line-height: 61px;
  }
}
@media (max-width: 991px) {
  .etude-title .mod-article__title {
    font-size: 44px;
    line-height: 50px;
  }
}
.etude-title .mod-article__title {
  max-width: 91%;
  font-weight: 700;
}

@media (max-width: 767px) {
  .article-image {
    padding-bottom: 40px;
  }
}
.article-image {
  padding-bottom: 80px;
}
.article-image .container .row > div:first-child {
  width: 60%;
}
@media (max-width: 991px) {
  .article-image .container .row > div:first-child .mod-article__img {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .article-image .container .row > div:first-child .mod-article__img {
    max-width: 300px;
  }
}
.article-image .container .row > div:first-child .mod-article__img {
  max-width: 635px;
  box-shadow: 0 20px 20px -4px gray;
}
@media (max-width: 767px) {
  .article-image .container .row > div:last-child {
    width: 100%;
  }
}
.article-image .container .row > div:last-child {
  width: 40%;
}
.article-image .container .row > div:last-child .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.article-image .container .row > div:last-child .content p:first-child {
  border-top: 1px solid #c2cad0;
}
.article-image .container .row > div:last-child .content p:last-child a:last-child {
  text-align: center;
}
@media (max-width: 991px) {
  .article-image .container .row > div:last-child .content p {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.article-image .container .row > div:last-child .content p {
  padding-top: 45px;
  padding-bottom: 45px;
  border-bottom: 1px solid #c2cad0;
  display: flex;
  align-items: center;
}
.article-image .container .row > div:last-child .content p a {
  font-weight: bold;
  font-size: 25px;
  line-height: 30px;
}
@media (max-width: 991px) {
  .article-image .container .row > div:last-child .content p img {
    width: 70px !important;
    margin-right: 20px;
  }
}
.article-image .container .row > div:last-child .content p img {
  margin-right: 45px;
}

@media (max-width: 991px) {
  .article-content .container {
    padding-bottom: 80px;
  }
}
.article-content .container {
  padding-bottom: 125px;
  border-bottom: 1px solid #c2cad0;
}
@media (max-width: 767px) {
  .article-content .container .row > div:first-child {
    margin-bottom: 45px;
  }
}
.article-content .container .row > div:first-child .mod-article__content .list {
  display: none;
}
.article-content .container .row > div:last-child .mod-article__content .sommaire {
  display: none;
}

.line-collabos {
  padding-top: 45px;
  padding-bottom: 0px;
}
.line-collabos h5 {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .line-collabos .content {
    padding: 40px 30px;
  }
}
@media (max-width: 767px) {
  .line-collabos .content {
    padding: 45px;
  }
}
.line-collabos .content {
  background: #fff;
  border-radius: 6px;
  padding: 30px 50px;
}
@media (max-width: 767px) {
  .line-collabos .content ul {
    flex-direction: column;
  }
}
.line-collabos .content ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .line-collabos .content ul li {
    margin-bottom: 30px !important;
    margin-right: 0 !important;
    margin-bottom: 45px !important;
  }
}
.line-collabos .content ul li {
  margin-bottom: 0 !important;
}
.line-collabos .content ul li:not(:last-child) {
  margin-right: 60px;
}
.line-collabos.scale li img {
  transform: scale(0.5);
}

.line-mandats .container .row > div .news-mosaic {
  max-width: 825px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-mandats .container .row > div .news-mosaic > .row .col-sm-24 {
    margin-bottom: 60px;
  }
}
.line-mandats .container .row > div .news-mosaic > .row .col-sm-24 {
  margin-bottom: 120px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-mandats .container .row > div .news-mosaic > .row .col-sm-24 > a {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-mandats .container .row > div .news-mosaic > .row .col-sm-24 > a {
  order: 1;
  text-align: center;
}
@media (max-width: 991px) {
  .line-mandats .container .row > div .news-mosaic > .row .col-sm-24 > a .news-thumbnail {
    max-width: 600px;
    display: block;
    margin-left: 0;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .line-mandats .container .row > div .news-mosaic > .row .col-sm-24 > a .news-thumbnail {
    max-width: 300px;
  }
}
.line-mandats .container .row > div .news-mosaic > .row .col-sm-24 > a .news-thumbnail {
  max-width: 825px;
}
@media (max-width: 991px) {
  .line-mandats .container .row > div .news-mosaic > .row .col-sm-24 .news-title {
    max-width: 60%;
    text-align: left;
    display: block;
    margin-left: 0;
    margin-right: auto;
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .line-mandats .container .row > div .news-mosaic > .row .col-sm-24 .news-title {
    max-width: 100%;
    text-align: left;
    padding-left: 15px;
  }
}
.line-mandats .container .row > div .news-mosaic > .row .col-sm-24 .news-title {
  max-width: 40%;
  order: 0;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #2C2C2C;
}
.line-mandats .container .row > div .news-mosaic > .row .col-sm-24 .news-title {
  margin-bottom: 30px;
}

.mandat-single .container-fluid .row .zone-article .mod-article__wrapper {
  background: #FCF8EF;
}
@media (max-width: 991px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .mod-article__title {
    max-width: 90%;
  }
}
.mandat-single .container-fluid .row .zone-article .mod-article__wrapper .mod-article__title {
  max-width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .mod-article__title {
    width: 732px !important;
  }
}
@media (min-width: 992px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .mod-article__title {
    width: 952px !important;
  }
}
@media (min-width: 1200px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .mod-article__title {
    width: 1110px !important;
  }
}
.mandat-single .container-fluid .row .zone-article .mod-article__wrapper .mod-article__title {
  font-size: 65px;
  line-height: 68px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 1199px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .mod-article__title {
    font-size: 58px;
    line-height: 61px;
  }
}
@media (max-width: 991px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .mod-article__title {
    font-size: 44px;
    line-height: 50px;
  }
}
.mandat-single .container-fluid .row .zone-article .mod-article__wrapper .mod-article__title {
  font-weight: 700;
  padding-top: 80px;
  padding-bottom: 60px;
  text-align: center;
  max-width: 60%;
}
@media (max-width: 991px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__img {
    max-width: 625px;
  }
}
@media (max-width: 767px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__img {
    max-width: 300px;
  }
}
.mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__img {
  max-width: 825px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 90px;
}
.mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content {
  background: #fff;
  padding-top: 75px;
}
@media (min-width: 992px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 992px) and (min-width: 768px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table {
    width: 732px !important;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table {
    width: 952px !important;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table {
    width: 1110px !important;
  }
}
@media (max-width: 991px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table {
    width: 700px !important;
  }
}
@media (max-width: 767px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table {
    max-width: 100vw !important;
    width: 350px !important;
  }
}
.mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table {
  border: 0 !important;
  border-color: #fff !important;
  padding-top: 75px;
}
@media (max-width: 767px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr td {
    width: 100%;
  }
}
.mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr td h5, .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr td p {
  opacity: 1 !important;
  transform: none !important;
}
@media (max-width: 767px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr td:first-child {
    width: 100%;
    text-align: center;
  }
}
.mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr td:first-child {
  width: 40%;
  vertical-align: top;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #EB445D;
  padding-top: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr td:first-child:before {
    width: 100%;
  }
}
.mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr td:first-child:before {
  content: "";
  background: #c2cad0;
  width: 70%;
  height: 1px;
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
}
@media (max-width: 991px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr td:last-child {
    padding-bottom: 30px;
    padding-top: 0px;
  }
}
@media (max-width: 767px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr td:last-child {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
  }
}
.mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr td:last-child {
  width: 60%;
  padding-bottom: 75px;
}
.mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr td:last-child h5 {
  margin-bottom: 40px;
}
.mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr:last-child td:first-child:before {
  display: none;
}
@media (max-width: 767px) {
  .mandat-single .container-fluid .row .zone-article .mod-article__wrapper .news-content .mod-article__content table tbody tr:last-child td:last-child {
    padding-top: 0;
  }
}

.line-actualites .container .row > div .news-mosaic {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  gap: 60px 120px;
}
.line-actualites .container .row > div .news-mosaic > .row {
  opacity: 0;
  transform: translateY(20px); /* Slight move up effect for more visual appeal */
  transition: opacity 0.8s ease, transform 0.8s ease;
}
@media (max-width: 991px) {
  .line-actualites .container .row > div .news-mosaic > .row .news-thumbnail {
    max-width: 290px;
  }
}
@media (max-width: 767px) {
  .line-actualites .container .row > div .news-mosaic > .row .news-thumbnail {
    max-width: 250px;
  }
}
.line-actualites .container .row > div .news-mosaic > .row .news-thumbnail {
  border-radius: 6px;
  max-width: 350px;
  margin-bottom: 30px;
  margin-top: 16px;
}
@media (max-width: 991px) {
  .line-actualites .container .row > div .news-mosaic > .row:nth-child(6n+1) .news-thumbnail, .line-actualites .container .row > div .news-mosaic > .row:nth-child(6n+4) .news-thumbnail, .line-actualites .container .row > div .news-mosaic > .row:nth-child(6n+5) .news-thumbnail {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .line-actualites .container .row > div .news-mosaic > .row:nth-child(6n+1) .news-thumbnail, .line-actualites .container .row > div .news-mosaic > .row:nth-child(6n+4) .news-thumbnail, .line-actualites .container .row > div .news-mosaic > .row:nth-child(6n+5) .news-thumbnail {
    max-width: 250px;
  }
}
.line-actualites .container .row > div .news-mosaic > .row:nth-child(6n+1) .news-thumbnail, .line-actualites .container .row > div .news-mosaic > .row:nth-child(6n+4) .news-thumbnail, .line-actualites .container .row > div .news-mosaic > .row:nth-child(6n+5) .news-thumbnail {
  max-width: 445px;
}
@media (min-width: 992px) {
  .line-actualites .container .row > div .news-mosaic > .row:nth-child(4n+2) .col-sm-24 {
    padding-left: 50px;
  }
}
.line-actualites .container .row > div .news-mosaic > .row:nth-child(4n+4) .col-sm-24 {
  margin-left: -50px !important;
}
.line-actualites .container .row > div .news-mosaic > .row .news-title {
  max-width: 85%;
  font-size: 28px;
  line-height: 34px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 767px) {
  .line-actualites .container .row > div .news-mosaic > .row .news-title {
    font-size: 18px;
    line-height: 24px;
  }
}
.line-actualites .container .row > div .news-mosaic > .row .news-title {
  margin-bottom: 30px;
}
.line-actualites .container .row > div .news-mosaic > .row .news-title a {
  color: #2C2C2C !important;
}
.line-actualites .container .row > div .news-mosaic > .row .news-title a:hover {
  color: #EB445D !important;
  text-decoration: none !important;
}
.line-actualites .container .row > div .news-mosaic > .row .e-date {
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
  color: #2C2C2C;
}
.line-actualites .container .row > div .news-mosaic > .row .e-date {
  text-transform: none;
  font-weight: 700;
  margin-bottom: 16px;
}
.line-actualites .container .row > div .news-mosaic > .row .news-author {
  font-size: 16px;
  margin-bottom: 25px;
}
.line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 {
  display: flex;
  flex-direction: column;
}
.line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:first-child {
  order: 0;
}
.line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 .news-title {
  order: 1;
}
.line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 .e-date {
  order: 2;
}
.line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 .news-author {
  order: 3;
}
.line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type:hover, .line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type:active, .line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type {
    white-space: normal !important;
  }
}
.line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type {
  background-color: transparent;
  color: #2C2C2C;
  transition: all 150ms;
  border: none;
  padding-left: 0;
  position: relative;
  text-align: left;
  transition: all 0.8s ease;
}
.line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type:hover, .line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type:active, .line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type:focus {
  background-color: transparent;
  color: #EB445D;
  border: none;
}
.line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type:hover:after, .line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type:active:after, .line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type:focus:after {
  animation: move 1s ease-in-out infinite alternate;
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-hover.svg);
}
.line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-up.svg);
  background-repeat: no-repeat;
  width: 47px;
  height: 47px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  transition: all 150ms;
}
.line-actualites .container .row > div .news-mosaic > .row div.col-sm-24 > a:last-of-type {
  max-width: fit-content;
  order: 4;
}

.actualite-single .container-fluid .row > div .mod-article__wrapper {
  overflow: hidden;
  padding-top: 90px;
  background: #E7EAEC;
}
@media (max-width: 991px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .mod-article__title {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .mod-article__title {
  font-size: 55px;
  line-height: 57px;
  font-weight: 700;
  color: #2C2C2C;
}
@media (max-width: 991px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .mod-article__title {
    font-size: 37px;
    line-height: 43px;
  }
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .mod-article__title {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .mod-article__title {
    width: 955px;
  }
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .mod-article__author {
  text-align: center;
  margin-bottom: 30px;
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .mod-article__published-date {
  text-align: center;
  margin-bottom: 30px;
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .news-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content {
    width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__img {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__img {
    width: 100%;
    max-width: 100%;
    padding-right: 30px;
    margin-bottom: 45px;
  }
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__img {
  max-width: 50%;
  width: 347px;
  height: 297px !important;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__intro {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__intro {
    max-width: 100%;
    padding-left: 30px;
  }
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__intro {
  max-width: 50%;
  font-size: 28px;
  line-height: 34px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 767px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__intro {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__intro p {
    margin-bottom: 60px;
  }
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__intro p {
  font-size: 28px;
  line-height: 34px;
  font-weight: 400;
  color: #2C2C2C;
}
@media (max-width: 767px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__intro p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content {
  width: 100%;
  padding-top: 70px;
  background: #fff;
  position: relative;
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content:before {
  content: "";
  background: #fff;
  display: block;
  width: calc(100vw - 860px);
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content:after {
  content: "";
  background: #fff;
  display: block;
  width: calc(100vw - 860px);
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content h5 {
    margin-top: 45px;
  }
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content h1, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content h2, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content h3, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content h4, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content h5, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content h6, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content p, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content ul, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content ol {
  opacity: 1 !important;
  transform: none !important;
}
@media (min-width: 992px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content h1, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content h2, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content h3, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content h4, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content h5, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content h6, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content p, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content ul, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content ol {
    display: block;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
  }
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content .quote, .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content .auteur {
  font-size: 24px;
  line-height: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 64px;
  border-left: 11px solid #EB445D;
}
.actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content p.citation {
  padding: 20px 20px 20px 40px;
  background: #f5f5f5;
  font-size: 24px !important;
  line-height: 30px !important;
  border-left: 4px solid #EB445D;
  font-size: 40px;
  line-height: 45px;
  font-weight: 300;
  color: #2C2C2C;
}
@media (max-width: 991px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content p.citation {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (min-width: 768px) {
  .actualite-single .container-fluid .row > div .mod-article__wrapper .news-content .mod-article__content table.auteur {
    width: 60% !important;
  }
}

.line-coordo {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .line-coordo .zone-image .content {
    text-align: left;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .line-coordo .zone-image img {
    max-width: 300px;
  }
}
.line-coordo .zone-image img {
  max-width: 450px;
}
@media (max-width: 991px) {
  .line-coordo .zone-html .content {
    padding-left: 25px;
  }
}
.line-coordo .zone-html .content {
  padding-left: 100px;
}
.line-coordo .zone-html .content h5:first-of-type {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .line-coordo .zone-html .content p br {
    display: block !important;
  }
}
@media (max-width: 991px) {
  .line-coordo .zone-html .content .stm {
    flex-direction: column;
  }
}
.line-coordo .zone-html .content .stm {
  margin-top: 40px;
  display: flex;
}
.line-coordo .zone-html .content .stm .btn-link:after {
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/white-arrow.svg);
}
.line-coordo .zone-html .content .stm .btn-link:hover:after {
  background-image: url(https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/link-arrow-hover.svg);
}

.line-clients {
  border-bottom: 1px solid #c2cad0;
}
@media (max-width: 767px) {
  .line-clients .container .row > div .news-mosaic > .row + .row {
    margin-top: 0;
  }
}
.line-clients .container .row > div .news-mosaic .paginationControl {
  margin-top: 45px;
}
.line-clients .container .row > div .news-mosaic .paginationControl a {
  border-color: #EB445D;
}
.line-clients .container .row > div .news-mosaic .paginationControl a.active {
  background: #EB445D;
}

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

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

.line-header .zone-html:nth-child(1) {
  width: 75%;
  z-index: 100000;
  position: relative;
  display: inline-block;
  opacity: 0;
  transition: all 1s ease;
  left: -100%;
}
@media (max-width: 991px) {
  .line-header .zone-html:nth-child(1) {
    width: 65%;
  }
}
.line-header .zone-html:nth-child(1) .content a {
  position: relative;
  display: inline-block;
  padding: 25px 0 25px 0px;
  width: 213px;
}
@media (max-width: 991px) {
  .line-header .zone-html:nth-child(1) .content a {
    width: 183px;
    padding: 35px 0 25px 0px;
  }
}
@media (max-width: 767px) {
  .line-header .zone-html:nth-child(1) .content a {
    width: 160px;
    padding: 20px 0 25px 0px;
  }
}
.line-header .zone-html:nth-child(1) .content a img {
  position: absolute;
}
@media (max-width: 767px) {
  .line-header .zone-html:nth-child(1) .content a img {
    margin-top: 10px;
  }
}
.line-header .zone-html:nth-child(1) .content a img:nth-child(1) {
  -webkit-animation: 300ms ease 0s normal forwards 1 fadein;
  animation: 300ms ease 0s normal forwards 1 fadein;
}
.line-header .zone-html:nth-child(1) .content a img:nth-child(2) {
  -webkit-animation: 300ms ease 0s normal forwards 1 fadeout;
  animation: 300ms ease 0s normal forwards 1 fadeout;
}
@media (max-width: 991px) {
  .line-header .zone-html:nth-child(2) {
    width: 35%;
  }
}
.line-header .zone-html:nth-child(2) {
  width: 25%;
  z-index: 100;
  position: relative;
  display: inline-block;
  opacity: 0;
  transition: all 1s ease;
  right: -100%;
}
.line-header .zone-html:nth-child(2) .content {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .line-header .zone-html:nth-child(2) .content .contact-btn {
    display: none;
  }
}
.line-header .zone-html:nth-child(2) .content .contact-btn {
  margin-top: 15px;
}
.line-header .zone-html:nth-child(2) .content .contact-btn .btn-primary {
  opacity: 1 !important;
  transform: none !important;
}
.line-header.opened .zone-html:nth-child(1) .content a img:nth-child(1) {
  -webkit-animation: 300ms ease 0s normal forwards 1 fadeout;
  animation: 300ms ease 0s normal forwards 1 fadeout;
}
.line-header.opened .zone-html:nth-child(1) .content a img:nth-child(2) {
  -webkit-animation: 300ms ease 0s normal forwards 1 fadein;
  animation: 300ms ease 0s normal forwards 1 fadein;
}

.line-header {
  transition: top 250ms;
  height: 100px;
}
@media (max-width: 991px) {
  .line-header {
    height: 115px;
  }
}
@media (max-width: 767px) {
  .line-header {
    height: 93px;
  }
}
.line-header .container-fluid, .line-header .container {
  top: -100px;
  position: static;
  transition: all 250ms;
}
.line-header .menu-hamburger {
  width: 70px;
  height: 70px;
  background-color: #fff;
  margin-left: 25px;
  margin-right: 55px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: background-color 0.5s ease;
}
@media (max-width: 991px) {
  .line-header .menu-hamburger {
    transform: scale(0.85);
    margin-right: 20px;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .line-header .menu-hamburger {
    transform: scale(0.73);
    margin-right: 15px;
    margin-top: 15px;
  }
}
.line-header .menu-hamburger span {
  width: 39px;
  height: 2px;
  background-color: #EB445D;
  display: block;
  line-height: 0;
  text-indent: -9999px;
  margin-top: 8px;
  transition: transform 0.5s;
}
.line-header .menu-hamburger span:first-child {
  margin-top: 2px;
}
.line-header .menu-hamburger:hover, .line-header .menu-hamburger:focus {
  cursor: pointer;
}
.line-header .menu-hamburger:hover span, .line-header .menu-hamburger:focus span {
  background-color: #EB445D !important;
}
.line-header.opened .menu-hamburger:before {
  display: none;
}
.line-header.opened .menu-hamburger:hover span, .line-header.opened .menu-hamburger:focus span {
  background-color: #EB445D !important;
}
.line-header.opened .menu-hamburger span {
  margin-top: 0;
  width: 35px;
  background-color: #EB445D;
}
.line-header.opened .menu-hamburger span:first-child {
  transform: rotate(45deg);
}
.line-header.opened .menu-hamburger span:last-child {
  margin-top: -2px;
  transform: rotate(-45deg);
}
.line-header.opened .menu-hamburger span:hover, .line-header.opened .menu-hamburger span:focus {
  background-color: #EB445D;
}
.line-header.opened.sticked span {
  background-color: #2C2C2C;
}
.line-header.opened.sticked:hover span, .line-header.opened.sticked:focus span {
  background-color: #EB445D !important;
}
.line-header.sticked .container-fluid, .line-header.sticked .container {
  box-shadow: 0 7px 12px -10px gray;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  z-index: 1000000;
  padding-left: 8%;
  padding-right: 8%;
}
.line-header.sticked .container-fluid .row, .line-header.sticked .container .row {
  display: flex;
}
.line-header.sticked .container-fluid .row:before, .line-header.sticked .container .row:before {
  display: none;
}
.line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content, .line-header.sticked .container .row .zone-html:nth-child(1) .content {
  padding-top: 25px;
  width: 156px;
}
@media (max-width: 767px) {
  .line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content a, .line-header.sticked .container .row .zone-html:nth-child(1) .content a {
    padding: 0 0 25px 0;
  }
}
.line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content a, .line-header.sticked .container .row .zone-html:nth-child(1) .content a {
  padding: 0px 0 25px 0px;
  width: 213px;
}
.line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content a img, .line-header.sticked .container .row .zone-html:nth-child(1) .content a img {
  width: 156px;
}
@media (max-width: 991px) {
  .line-header.sticked .container-fluid .menu-hamburger, .line-header.sticked .container .menu-hamburger {
    margin-left: 3px;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .line-header.sticked .container-fluid .menu-hamburger, .line-header.sticked .container .menu-hamburger {
    margin-top: 17px;
  }
}
.line-header.sticked .container-fluid .menu-hamburger, .line-header.sticked .container .menu-hamburger {
  background-color: transparent;
  border: 1px transparent solid;
  margin-top: 6px;
}
.line-header.sticked .container-fluid .menu-hamburger:hover span, .line-header.sticked .container-fluid .menu-hamburger:focus span, .line-header.sticked .container .menu-hamburger:hover span, .line-header.sticked .container .menu-hamburger:focus span {
  background-color: #001F4E;
}
.line-header.sticked .container-fluid .menu-hamburger:before, .line-header.sticked .container .menu-hamburger:before {
  display: none;
}
.line-header.sticked.opened .container-fluid, .line-header.sticked.opened .container {
  background-color: #fff;
}

.menu-container {
  padding-top: 130px;
  z-index: 10000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 100px;
  bottom: 0;
  background-color: #EB445D;
  right: -110vw;
  transition: 0.5s right cubic-bezier(0.77, 0, 0.175, 1);
}
@media (max-width: 767px) {
  .menu-container.opened {
    justify-content: flex-start;
    padding-left: 15px;
    padding-right: 30px;
  }
}
.menu-container.opened {
  right: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .menu-container {
    padding-top: 80px;
  }
  .menu-container .line-menu .navbar-header {
    display: none;
  }
  .menu-container .line-menu .navbar-collapse, .menu-container .line-menu .collapse {
    border: none;
    box-shadow: none;
    display: block;
  }
}
@media (max-width: 767px) {
  .menu-container {
    padding-top: 40px;
    flex-direction: column;
    top: 93px;
  }
}
@media (min-width: 768px) {
  .menu-container .line-menu {
    background-color: #EB445D;
    width: 25%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-container .line-menu {
    width: 48%;
  }
}
@media (min-width: 768px) {
  .menu-container .line-menu:after {
    display: none;
  }
  .menu-container .line-menu .container {
    max-width: 100%;
  }
  .menu-container .line-menu .container .navbar-default .navbar-nav {
    display: flex;
    flex-direction: column;
  }
  .menu-container .line-menu .container .navbar-default .navbar-nav > li {
    z-index: 0;
    width: 180px;
  }
  .menu-container .line-menu .container .navbar-default .navbar-nav > li:hover {
    cursor: pointer;
  }
  .menu-container .line-menu .container .navbar-default .navbar-nav > li:hover > a {
    color: #723E5E !important;
  }
  .menu-container .line-menu .container .navbar-default .navbar-nav > li.active {
    color: #2C2C2C;
    background-color: transparent !important;
  }
  .menu-container .line-menu .container .navbar-default .navbar-nav > li.active > a {
    color: #723E5E;
  }
  .menu-container .line-menu .container .navbar-default .navbar-nav > li.active a.active {
    color: #723E5E !important;
  }
  .menu-container .line-menu ul.menu-vertical-items li {
    margin-bottom: 7px;
    position: relative;
  }
  .menu-container .line-menu ul.menu-vertical-items li a {
    padding: 4px 0;
  }
  .menu-container .line-menu ul.menu-vertical-items li:hover, .menu-container .line-menu ul.menu-vertical-items li:focus {
    color: #723E5E;
    background-color: transparent !important;
  }
  .menu-container .line-menu ul.menu-vertical-items li[rel=data-menu-95854] {
    margin-bottom: 15px;
  }
  .menu-container .line-menu ul.menu-vertical-items > li {
    color: #fff;
    font-size: 28px;
    line-height: 38px;
    font-weight: 200;
  }
}
@media (min-width: 768px) and (max-width: 1199px) and (min-width: 992px) {
  .menu-container .line-menu ul.menu-vertical-items > li {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) and (min-width: 768px) {
  .menu-container .line-menu ul.menu-vertical-items > li {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 768px) {
  .menu-container .line-menu ul.menu-vertical-items > li:hover {
    color: #2C2C2C !important;
  }
  .menu-container .line-menu ul.menu-vertical-items > li .child-link:hover {
    color: #2C2C2C !important;
  }
  .menu-container .line-menu ul.menu-vertical-items > li > a {
    font-size: 32px;
    line-height: 34px;
    font-weight: 700;
    text-transform: none;
    margin-top: 6px;
  }
  .menu-container .line-menu ul.menu-vertical-items > li > a:hover {
    color: #2C2C2C !important;
    cursor: default;
  }
  .menu-container .line-menu ul.menu-vertical-items > li > ul.dropdown-menu {
    padding-top: 0;
    margin-top: 5px;
    width: 69%;
  }
  .menu-container .line-menu ul.menu-vertical-items > li > ul.dropdown-menu li {
    display: block;
  }
  .menu-container .line-menu ul.menu-vertical-items > li > ul.dropdown-menu li:hover, .menu-container .line-menu ul.menu-vertical-items > li > ul.dropdown-menu li:focus, .menu-container .line-menu ul.menu-vertical-items > li > ul.dropdown-menu li:active {
    color: #fff !important;
    background: transparent !important;
  }
  .menu-container .line-menu ul.menu-vertical-items > li a {
    padding-left: 0;
    color: #fff;
    display: block;
    background-color: transparent !important;
    white-space: break-spaces;
  }
  .menu-container .line-menu ul.menu-vertical-items > li a:hover, .menu-container .line-menu ul.menu-vertical-items > li a:focus, .menu-container .line-menu ul.menu-vertical-items > li a:active {
    color: #723E5E;
    background-color: transparent !important;
  }
  .menu-container .line-menu ul.menu-vertical-items > li a.dropdown-toggle {
    display: block;
    text-align: right;
    margin-top: -46px;
    height: 60px !important;
    padding: 0 !important;
    width: 100%;
    position: relative;
  }
  .menu-container .line-menu ul.menu-vertical-items > li a.dropdown-toggle:hover {
    color: #723E5E !important;
  }
  .menu-container .line-menu ul.menu-vertical-items > li a.dropdown-toggle .caret {
    content: "";
    width: 19px;
    height: 10px;
    margin-top: 22px;
    right: -30px !important;
    top: 0px !important;
    position: absolute;
    display: block;
    float: right;
    background-image: url("https://cdn.ca.yapla.com/company/CPY4ixWeCZTSb8YG02lyfHORv/asset/images/_shapes-iconss/caret-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-container .line-menu ul.menu-vertical-items > li a.dropdown-toggle .caret {
    margin-right: 0px;
    right: 125px !important;
  }
}
@media (min-width: 768px) {
  .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu {
    background-color: transparent;
    position: relative;
    padding-left: 0;
    display: none;
    box-shadow: none;
    border: none;
    top: 0;
    max-width: 200px;
    z-index: 99999;
  }
  .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li {
    display: block;
  }
  .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li a {
    font-size: 18px;
    line-height: 19px;
    font-weight: 400;
    text-transform: none;
  }
  .menu-container .line-menu ul.menu-vertical-items > li.open .dropdown-toggle .caret {
    transform: rotate(-90deg);
    transition: all 0.5s;
  }
  .menu-container .line-menu ul.menu-vertical-items > li.open .dropdown-menu {
    display: block;
    z-index: 9999999;
    max-height: 800px;
    margin-bottom: 20px;
  }
  .menu-container .line-menu-header {
    padding: 0px 0 100px;
    width: 25%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-container .line-menu-header {
    width: 35%;
  }
}
@media (min-width: 768px) {
  .menu-container .line-menu-header .mod-header {
    padding-left: 0;
    text-align: left;
    display: flex;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    order: 2;
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra {
    padding-top: 10px;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra a {
    color: #fff !important;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra a:hover, .menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra a:focus {
    text-decoration: none !important;
    color: #723E5E !important;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra p:last-child {
    margin-bottom: 0;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra p:last-child a {
    text-decoration: underline;
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link {
    margin-bottom: 20px;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link a {
    padding: 0 7px;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link a img {
    filter: brightness(0) invert(1);
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link a:hover img, .menu-container .line-menu-header .mod-header .header-ext-custom .social-link a:focus img {
    filter: hue-rotate(-5deg) brightness(2.5);
  }
  .menu-container .line-menu-header .mod-header .header-ext-language {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-top: 0;
    padding-right: 70px;
    padding-top: 10px;
    position: relative;
    order: 1;
  }
  .menu-container .line-menu-header .mod-header .header-ext-language:before {
    display: none;
  }
  .menu-container .line-menu-header .mod-header .header-ext-language a {
    color: #fff;
    font-weight: 200;
  }
  .menu-container .line-menu-header .mod-header .header-ext-language a:hover, .menu-container .line-menu-header .mod-header .header-ext-language a:focus {
    text-decoration: none;
    color: #723E5E;
  }
}
@media (max-width: 767px) {
  .menu-container .line-menu {
    background-color: #EB445D;
  }
  .menu-container .line-menu:after {
    display: none;
  }
  .menu-container .line-menu ul.menu-vertical-items {
    transition: all 150ms linear;
  }
  .menu-container .line-menu ul.menu-vertical-items > li {
    display: flex;
    flex-wrap: wrap;
  }
  .menu-container .line-menu ul.menu-vertical-items > li a {
    padding: 10px 15px 4px 0;
  }
  .menu-container .line-menu ul.menu-vertical-items > li.open > ul.dropdown-menu {
    max-height: 400px;
    width: 100%;
    transition: all 0.5s ease;
  }
  .menu-container .line-menu ul.menu-vertical-items > li.open > ul.dropdown-menu li.focus, .menu-container .line-menu ul.menu-vertical-items > li.open > ul.dropdown-menu li:hover, .menu-container .line-menu ul.menu-vertical-items > li.open > ul.dropdown-menu li.active {
    color: #fff !important;
    background-color: transparent !important;
  }
  .menu-container .line-menu ul.menu-vertical-items > li.open > ul.dropdown-menu li a.focus, .menu-container .line-menu ul.menu-vertical-items > li.open > ul.dropdown-menu li a:hover, .menu-container .line-menu ul.menu-vertical-items > li.open > ul.dropdown-menu li a.active {
    color: #fff !important;
    background-color: transparent !important;
  }
  .menu-container .line-menu ul.menu-vertical-items > li.focus, .menu-container .line-menu ul.menu-vertical-items > li:hover, .menu-container .line-menu ul.menu-vertical-items > li.active {
    background-color: transparent !important;
  }
  .menu-container .line-menu ul.menu-vertical-items > li > a {
    width: 100%;
    font-size: 25px;
    line-height: 37px;
    color: #fff;
    font-weight: 700;
    padding: 10px 15px 9px 0;
    text-transform: none;
  }
  .menu-container .line-menu ul.menu-vertical-items > li > a.focus, .menu-container .line-menu ul.menu-vertical-items > li > a:hover, .menu-container .line-menu ul.menu-vertical-items > li > a.active {
    color: #fff !important;
    background-color: transparent !important;
  }
  .menu-container .line-menu ul.menu-vertical-items > li > a.dropdown-toggle {
    position: absolute;
    width: 100%;
    left: 0;
    height: 57px;
  }
  .menu-container .line-menu ul.menu-vertical-items > li > a.dropdown-toggle span {
    display: none;
  }
  .menu-container .line-menu ul.menu-vertical-items > li > a.dropdown-toggle:after {
    content: "";
    width: 15px;
    height: 15px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    right: 0;
    top: 17px;
    transform: rotate(45deg);
  }
  .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu {
    background-color: transparent !important;
    position: relative;
    padding-left: 0;
    box-shadow: none;
    border: none;
    top: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.3s;
    height: auto;
    max-height: 0;
    overflow: hidden;
    display: block;
  }
  .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li {
    display: block;
    margin-bottom: 2px;
  }
  .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li.focus, .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li:hover, .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li.active {
    color: #fff !important;
    background-color: transparent !important;
  }
  .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li a {
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    font-weight: 400;
    text-transform: none;
    white-space: break-spaces;
  }
  .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li a.focus, .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li a:hover, .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li a.active {
    color: #fff !important;
    background-color: transparent !important;
  }
  .menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li .child-link {
    background-color: transparent !important;
  }
  .menu-container .line-menu ul.menu-vertical-items > li .dropdown-menu-level-2 {
    /*padding-bottom: 25px!important;*/
  }
  .menu-container .line-menu ul.menu-vertical-items > li .dropdown-menu-level-2 li a.dropdown-toggle {
    display: none;
  }
  .menu-container .line-menu ul.menu-vertical-items > li .dropdown-menu-level-2 li:last-child {
    padding-bottom: 25px;
  }
  .menu-container .line-menu ul.menu-vertical-items > li .dropdown-menu-level-3 {
    left: 0 !important;
    padding-bottom: 0 !important;
    display: block !important;
    overflow: hidden;
    max-height: 0 !important;
    transition: max-height 0.3s ease-out;
    margin-bottom: 0 !important;
  }
  .menu-container .line-menu ul.menu-vertical-items > li .dropdown-menu-level-3.click-desktop-menu {
    display: block !important;
    max-height: 500px !important;
    transition: max-height 0.3s ease-in;
  }
  .menu-container .line-menu ul.menu-vertical-items > li.active {
    color: #2C2C2C;
    background: transparent !important;
  }
  .menu-container .line-menu .navbar-default .navbar-nav {
    display: flex;
    flex-direction: column;
  }
  .menu-container .line-menu .navbar-default .navbar-nav > li {
    z-index: 0;
    width: 200px;
  }
  .menu-container .line-menu .navbar-default .navbar-nav > li.active {
    color: #2C2C2C;
    background-color: transparent !important;
  }
  .menu-container .line-menu .navbar-default .navbar-nav > li.active > a {
    color: #2C2C2C;
  }
  .menu-container .line-menu .navbar-default .navbar-nav > li.active a.active {
    color: #2C2C2C !important;
  }
  .menu-container .line-menu-header .mod-header {
    padding-left: 0;
    text-align: left;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom {
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra {
    width: 100%;
    position: relative;
    text-align: center;
    order: 2;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra p {
    text-align: left;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra p a {
    color: #fff !important;
    font-weight: 400;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .menu-extra p a:hover {
    color: #723E5E;
    text-decoration: none;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link {
    width: 100%;
    position: relative;
    padding: 10px 0 9px 0;
    padding-top: 50px;
    margin-bottom: 15px;
    text-align: center;
    order: 1;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link a {
    padding: 0 7px;
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link a img {
    filter: brightness(0) invert(1);
  }
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link a:hover img, .menu-container .line-menu-header .mod-header .header-ext-custom .social-link a:focus img {
    filter: hue-rotate(-5deg) brightness(2.5);
  }
  .menu-container .line-menu-header .mod-header .header-ext-language {
    text-align: center;
    width: 100%;
    margin-left: 0;
    top: 6px;
  }
  .menu-container .line-menu-header .mod-header .header-ext-language a {
    color: #fff;
    font-weight: 200;
  }
  .menu-container .line-menu-header .mod-header .header-ext-language a:hover {
    color: #723E5E;
    text-decoration: none;
  }
}

.footer-one {
  margin-top: 40px;
  border-top: 1px solid #c2cad0;
  border-bottom: 1px solid #c2cad0;
}
@media (max-width: 991px) {
  .footer-one .container-fluid .row {
    display: flex;
  }
}
@media (max-width: 767px) {
  .footer-one .container-fluid .row {
    flex-direction: column;
  }
}
.footer-one .container-fluid .row {
  overflow: hidden;
}
@media (max-width: 767px) {
  .footer-one .container-fluid .row > div {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.footer-one .container-fluid .row > div {
  padding-top: 55px;
  padding-bottom: 55px;
}
.footer-one .container-fluid .row > div .content {
  text-align: center;
}
@media (max-width: 991px) {
  .footer-one .container-fluid .row > div:first-child {
    width: 100%;
    border-bottom: 1px solid #c2cad0;
  }
}
@media (max-width: 767px) {
  .footer-one .container-fluid .row > div:first-child {
    padding-right: 0;
  }
}
.footer-one .container-fluid .row > div:first-child {
  border-right: 1px solid #c2cad0;
  position: relative;
  opacity: 0;
  transition: all 1s ease;
  left: -100%;
}
@media (max-width: 991px) {
  .footer-one .container-fluid .row > div:last-child {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer-one .container-fluid .row > div:last-child {
    padding-left: 0;
  }
}
.footer-one .container-fluid .row > div:last-child {
  position: relative;
  opacity: 0;
  transition: all 1s ease;
  right: -100%;
}

.footer-two {
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer-two .content p {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .footer-two .content p img {
    width: 278px !important;
  }
}
@media (max-width: 991px) {
  .footer-two .content ul {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .footer-two .content ul {
    flex-direction: column;
    padding-left: 0 !important;
  }
}
.footer-two .content ul {
  list-style: none;
  padding-right: 0 !important;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-two .content ul li {
    padding-right: 15px;
    padding-left: 15px !important;
  }
}
.footer-two .content ul li {
  padding-right: 40px;
  padding-left: 40px !important;
}
.footer-two .content ul li a {
  color: #2C2C2C !important;
  font-size: 18px;
}
.footer-two .content ul li a:hover {
  color: #EB445D !important;
  text-decoration: none !important;
}

.footer-three {
  padding-bottom: 50px;
}
.footer-three .container .row > div .content ul.social {
  justify-content: center;
}
.footer-three .container .row > div .content ul.social li {
  width: 190px;
  display: flex;
  justify-content: center;
  position: relative;
}
.footer-three .container .row > div .content ul.social li:first-child:after {
  content: "";
  background-color: #867f7d;
  height: 1px;
  width: 127px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -68px;
}

@media (max-width: 991px) {
  .line-credits {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.line-credits {
  border-top: 1px solid #c2cad0;
  border-bottom: 1px solid #c2cad0;
  padding-top: 30px;
  padding-bottom: 30px;
}
.line-credits .content p {
  font-size: 12px;
  line-height: 37px;
  margin-bottom: 0;
}

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