@charset "UTF-8";
/* FONTS */
/* RESPONSIVE MIXINS BREAKPOINT */
/* CUSTOM WIDTH CONTAINER */
/*
$xlg-container: 1200px;
$lg-container: 90%;
$md-container: 90%;
$sm-container: 90%;
*/
/* CUSTOM WIDTH CONTAINER DEFAULT */
/* CUSTOM COLORS VARIABLES */
/* BASICS COLORS VARIABLES */
/* PADDINGS */
/* PADDINGS FORM ADHESION/INSCRIPTION */
/* Plus grand ou égal custom */
/* Plus petit ou égal custom */
/* Plus grand ou égal à 1400px */
/* Plus petit ou égal à 1399px */
/* Plus grand ou égal à 1200px */
/* Plus petit ou égal à 1199px */
/* Plus grand ou égal à 992px */
/* Plus petit ou égal à 991px */
/* Plus grand ou égal à 768px */
/* Plus petit ou égal à 767px */
/* Plus grand ou égal à 576px */
/* Plus petit ou égal à 575px */
/* Entre 1399px et 1199px */
/* Entre 1199px et 992px */
/* Entre 1199px et 768px */
/* Entre 1199px et 576px */
/* Entre 991px et 768px */
/* Entre 991px et 576px */
/* Entre 767px et 576px */
/*Global variable for REM
    $rem : 16px;
*/
/* RESPONSIVE REM FONT-SIZE
html{
    font-size: $rem;
    @media only screen and (max-width : $lg) {
        html{font-size: 10px;}
    }
    @media only screen and (max-width : $md) {
        html{font-size: 8px;}
    }
    @media only screen and (max-width : $sm) {
        html{font-size: 5px;}
    }
    @media only screen and (max-width : $xs) {
        html{font-size: 5px;}
    }
}*/
.container {
  /*
  @include min-custom(1500px) {
      width: $xlg-container;
  }
  */
}
@media (min-width: 768px) {
  .container {
    width: calc(100vw - 80px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .container {
    width: calc(100vw - 80px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .container {
    width: calc(100vw - 80px);
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
  .smol-content .container > .row > div:first-child .content {
    padding-left: 80px;
    padding-right: 80px;
  }
}

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

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

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

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

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

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

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

.whiteparagraphe p {
  color: #1C1D1F;
}

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

.darkparagraphe p {
  color: #1C1D1F;
}

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation text-fade-from-left
 * ----------------------------------------
 */
/* Fade From Left */
@-webkit-keyframes text-fade-from-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes text-fade-from-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-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;
}

/*###########################  TITRES  ###########################*/
h1 {
  opacity: 0;
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 0.1s;
}

h1.textured {
  opacity: 0;
  animation: fadeInRight;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-delay: 0.5s;
}

h2:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), h3:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), h4:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), h5:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), h6:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .h1:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .h2:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .h3:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .h4:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .h5:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .h6:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  opacity: 0;
}
h2:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, h3:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, h4:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, h5:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, h6:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .h1:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .h2:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .h3:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .h4:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .h5:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate, .h6:not(.mod-article__content h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6).animate {
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 0.1s;
}

ul:not(.nav, .dropdown-menu, .line-textile-images ul) li {
  opacity: 0;
}
ul:not(.nav, .dropdown-menu, .line-textile-images ul) li.animate {
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 0.1s;
}

p:not(.play, .mod-article__content p) {
  opacity: 0;
}
p:not(.play, .mod-article__content p).animate {
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 0.1s;
}

img:not(#play, #play-text, .solution-grid img, #play-up, #play-hover, .line-usages img, .banner-icons img, .arrow-down) {
  opacity: 0;
}
img:not(#play, #play-text, .solution-grid img, #play-up, #play-hover, .line-usages img, .banner-icons img, .arrow-down).animate {
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 0.1s;
}

.line-usages img {
  opacity: 0;
}
.line-usages img.animate {
  animation-name: fadeInRight;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 0.1s;
}

.line-header .mod-header-container {
  animation-name: slide-down-header;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-header .container-fluid > .row > div:nth-child(1) .content {
  animation-name: slide-down-header;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-header .container-fluid > .row > div:nth-child(2) .mod-header-container {
  animation-name: slide-down-header;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

/**
* ----------------------------------------
* Submenu
* ----------------------------------------
*/
@keyframes submenu {
  0% {
    transform: translate(0, 10px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/*########################### CANCEL ANIMATION  ###########################*/
/** pop-up **/
.modal h2, .modal h3, .modal h4, .modal h5, .modal h6, .modal p, .modal .h1, .modal .h2, .modal .h3, .modal .h4, .modal .h5, .modal .h6 {
  opacity: 1;
  animation: none;
}

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

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

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

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

.zone-rs ul {
  opacity: 1 !important;
  animation: none !important;
}
.zone-rs ul li {
  opacity: 1 !important;
  animation: none !important;
}
.zone-rs ul li a {
  opacity: 1 !important;
  animation: none !important;
}
.zone-rs ul li a img {
  opacity: 1 !important;
  animation: none !important;
}

.line-textile-images ul li {
  opacity: 1 !important;
  animation: none !important;
}

.parallax-set1, .parallax-set2, .parallax-set3, #ent-play {
  opacity: 1 !important;
  animation: none !important;
}

body {
  font-family: "canada-type-gibson", sans-serif;
}
body.overflowhidden {
  overflow: hidden;
}

/*###########################  TITRES  ###########################*/
h1, h2, h3, h4, h5, h6, p, small, .h1, .h2, .h3, .h4, .h5, .h6, .small {
  font-family: "canada-type-gibson", sans-serif;
  margin-bottom: 15px;
  width: 100%;
  color: #1C1D1F;
  text-wrap: pretty;
}
h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover, p:hover, small:hover, .h1:hover, .h2:hover, .h3:hover, .h4:hover, .h5:hover, .h6:hover, .small: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, small a:hover, .h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover, .small a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  h1 br, h2 br, h3 br, h4 br, h5 br, h6 br, p br, small br, .h1 br, .h2 br, .h3 br, .h4 br, .h5 br, .h6 br, .small br {
    display: none !important;
  }
}
@media (max-width: 575px) {
  h1, h2, h3, h4, h5, h6, p, small, .h1, .h2, .h3, .h4, .h5, .h6, .small {
    word-break: keep-all;
  }
}

h1, .h1 {
  font-size: 95px;
  line-height: 98px;
  font-weight: 900;
  text-transform: initial;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 80px;
    line-height: 88px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 42px;
    line-height: 43px;
  }
}
h1 span, .h1 span {
  color: #E85652;
}

h2, .h2 {
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 30px;
    line-height: 34px;
  }
}
h2 span, .h2 span {
  color: #E85652;
}

h3, .h3 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 500;
  text-transform: initial;
  color: #E85652;
}
h4, .h4 {
  font-size: 25px;
  line-height: 27px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  h4, .h4 {
    font-size: 20px;
    line-height: 22px;
  }
}

h5, .h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
h6, .h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.text_default {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}
.p-small {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #E85652;
  color: #9695D3;
}
small, .small {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: initial;
  font-family: "canada-type-gibson", sans-serif;
  color: #9695D3;
}
@media (max-width: 767px) {
  small, .small {
    font-size: 15px;
    line-height: 22px;
  }
}

hr {
  border-color: rgba(63, 38, 103, 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: #1C1D1F;
  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: #1C1D1F;
  text-decoration: underline;
}

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

ol {
  padding-left: 15px;
}

/*###########################  BOUTONS  ###########################*/
/* Calendar event BTN  */
.calendar-link-content .v-btn {
  color: #3F2667 !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: #3F2667 !important;
  outline: 0;
  outline-offset: 0;
  box-shadow: none;
}
.calendar-link-content .v-btn:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYmVa1qSsf2Dxu9ZwPKEFGQd/asset/images/%2B_calendar.svg");
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.calendar-link-content .v-btn i {
  display: none;
}

/*###########################  BOUTONS RESET  ###########################*/
.btn, input.btn, a.btn {
  font-family: "canada-type-gibson", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 13px;
}
.btn:hover, .btn:active, .btn:focus, input.btn:hover, input.btn:active, input.btn:focus, a.btn:hover, a.btn:active, a.btn:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .btn, input.btn, a.btn {
    white-space: normal !important;
  }
}
.btn.btn-primary, input.btn.btn-primary, a.btn.btn-primary {
  background-color: transparent;
  color: #E85652;
  transition: all 300ms ease;
  border: 1px solid #E85652;
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus, input.btn.btn-primary:hover, input.btn.btn-primary:active, input.btn.btn-primary:focus, a.btn.btn-primary:hover, a.btn.btn-primary:active, a.btn.btn-primary:focus {
  background-color: #E85652;
  border: 1px solid #E85652;
  color: #fff;
}
.btn.btn-primary.white, input.btn.btn-primary.white, a.btn.btn-primary.white {
  color: #fff;
}
.btn.btn-primary.double-white, input.btn.btn-primary.double-white, a.btn.btn-primary.double-white {
  color: #fff;
  border-color: #fff;
}
.btn.btn-secondary, input.btn.btn-secondary, a.btn.btn-secondary {
  background-color: transparent;
  color: #3F2667;
  transition: all 300ms;
  border: 1px solid #3F2667;
}
.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: #3F2667;
  border: 1px solid #3F2667;
  color: #fff;
}
.btn.btn-third, input.btn.btn-third, a.btn.btn-third {
  background-color: #3F2667;
  color: #fff;
  transition: all 300ms;
  border: 1px solid #3F2667;
  text-transform: none;
}
.btn.btn-third:hover, .btn.btn-third:active, .btn.btn-third:focus, input.btn.btn-third:hover, input.btn.btn-third:active, input.btn.btn-third:focus, a.btn.btn-third:hover, a.btn.btn-third:active, a.btn.btn-third:focus {
  background-color: #fff;
  border: 1px solid #3F2667;
  color: #3F2667;
}
.btn.btn-fourth, input.btn.btn-fourth, a.btn.btn-fourth {
  background-color: #E85652;
  color: #fff;
  transition: all 300ms;
  border: 1px solid #E85652;
  text-transform: none;
}
.btn.btn-fourth:hover, .btn.btn-fourth:active, .btn.btn-fourth:focus, input.btn.btn-fourth:hover, input.btn.btn-fourth:active, input.btn.btn-fourth:focus, a.btn.btn-fourth:hover, a.btn.btn-fourth:active, a.btn.btn-fourth:focus {
  background-color: transparent;
  border: 1px solid #E85652;
  color: #E85652;
}
.btn.btn-fifth, input.btn.btn-fifth, a.btn.btn-fifth {
  background-color: #9695D3;
  color: #fff;
  transition: all 300ms;
  border: 1px solid #9695D3;
  text-transform: none;
}
.btn.btn-fifth:hover, .btn.btn-fifth:active, .btn.btn-fifth:focus, input.btn.btn-fifth:hover, input.btn.btn-fifth:active, input.btn.btn-fifth:focus, a.btn.btn-fifth:hover, a.btn.btn-fifth:active, a.btn.btn-fifth:focus {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn.btn-link, input.btn.btn-link, a.btn.btn-link {
  background-color: transparent;
  color: #E85652;
  padding: 15px 0;
  padding-right: 60px;
  transition: all 300ms;
  border: none;
  border-bottom: 1px solid #E85652;
  border-radius: 0;
  text-transform: none;
}
.btn.btn-link:after, input.btn.btn-link:after, a.btn.btn-link:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/red-caret.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: -60px;
  margin-top: 7px;
  position: relative;
  display: inline-block;
  width: 7px;
  height: 15px;
  animation-name: none;
  transition: all 300ms;
}
.btn.btn-link:hover, .btn.btn-link:active, .btn.btn-link:focus, input.btn.btn-link:hover, input.btn.btn-link:active, input.btn.btn-link:focus, a.btn.btn-link:hover, a.btn.btn-link:active, a.btn.btn-link:focus {
  background-color: transparent;
  color: #3F2667;
  border: none;
  border-bottom: 1px solid #3F2667;
  padding-left: 20px;
  padding-right: 40px;
}
.btn.btn-link:hover:after, .btn.btn-link:active:after, .btn.btn-link:focus:after, input.btn.btn-link:hover:after, input.btn.btn-link:active:after, input.btn.btn-link:focus:after, a.btn.btn-link:hover:after, a.btn.btn-link:active:after, a.btn.btn-link:focus:after {
  right: -40px;
}
.btn.btn-arrow, input.btn.btn-arrow, a.btn.btn-arrow {
  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: #E85652;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
  transition: all 300ms;
}
.btn.btn-arrow:after, input.btn.btn-arrow:after, a.btn.btn-arrow: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;
}
.btn.btn-arrow:hover, .btn.btn-arrow:focus, input.btn.btn-arrow:hover, input.btn.btn-arrow:focus, a.btn.btn-arrow:hover, a.btn.btn-arrow:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #3F2667;
}
.btn.btn-arrow:hover:after, .btn.btn-arrow:focus:after, input.btn.btn-arrow:hover:after, input.btn.btn-arrow:focus:after, a.btn.btn-arrow:hover:after, a.btn.btn-arrow:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-name: bounce_arrow;
  -moz-animation-name: bounce_arrow;
}
.btn.btn-back, input.btn.btn-back, a.btn.btn-back {
  font-size: 16px;
  line-height: 24px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #E85652;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
  transition: all 300ms;
  position: relative;
}
.btn.btn-back:before, input.btn.btn-back:before, a.btn.btn-back:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-arrow.svg");
  background-repeat: no-repeat;
  left: -13px;
  margin-top: -2px;
  position: relative;
  display: inline-block;
  width: 5px;
  height: 8px;
  animation-name: none;
  transform: rotate(180deg);
}
.btn.btn-back:hover, .btn.btn-back:focus, input.btn.btn-back:hover, input.btn.btn-back:focus, a.btn.btn-back:hover, a.btn.btn-back:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #3F2667;
}
.btn.btn-back:hover:before, .btn.btn-back:focus:before, input.btn.btn-back:hover:before, input.btn.btn-back:focus:before, a.btn.btn-back:hover:before, a.btn.btn-back:focus:before {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-name: bounce_arrow;
  -moz-animation-name: bounce_arrow;
}
.btn.btn-download, input.btn.btn-download, a.btn.btn-download {
  position: relative;
  background-color: transparent;
  color: #E85652;
  transition: all 150ms;
  border-bottom: 1px solid #3F2667;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  margin-left: 90px;
}
.btn.btn-download:hover, .btn.btn-download:active, .btn.btn-download:focus, input.btn.btn-download:hover, input.btn.btn-download:active, input.btn.btn-download:focus, a.btn.btn-download:hover, a.btn.btn-download:active, a.btn.btn-download:focus {
  background-color: transparent;
  border-bottom: 1px solid #3F2667;
  color: #3F2667;
}
.btn.btn-download:hover:before, .btn.btn-download:active:before, .btn.btn-download:focus:before, input.btn.btn-download:hover:before, input.btn.btn-download:active:before, input.btn.btn-download:focus:before, a.btn.btn-download:hover:before, a.btn.btn-download:active:before, a.btn.btn-download:focus:before {
  background-color: #3F2667;
}
.btn.btn-download:hover:after, .btn.btn-download:active:after, .btn.btn-download:focus:after, input.btn.btn-download:hover:after, input.btn.btn-download:active:after, input.btn.btn-download:focus:after, a.btn.btn-download:hover:after, a.btn.btn-download:active:after, a.btn.btn-download:focus:after {
  filter: brightness(100);
}
.btn.btn-download:before, input.btn.btn-download:before, a.btn.btn-download:before {
  content: "";
  border: 1px solid #3F2667;
  border-radius: 50px;
  width: 61px;
  height: 61px;
  position: absolute;
  left: -90px;
  top: 4px;
  transition: all 150ms;
}
.btn.btn-download:after, input.btn.btn-download:after, a.btn.btn-download:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYuU5C607f42zk9W8RyXQexD/asset/images/Assets/bt-download.svg");
  background-position: center center;
  background-repeat: no-repeat;
  width: 61px;
  height: 61px;
  position: absolute;
  left: -90px;
  top: 4px;
  transition: all 150ms;
}
.btn.btn-default, input.btn.btn-default, a.btn.btn-default {
  background-color: transparent;
  color: #E85652;
  transition: all 300ms ease;
  border: 1px solid #E85652;
}
.btn.btn-default:hover, .btn.btn-default:active, .btn.btn-default:focus, input.btn.btn-default:hover, input.btn.btn-default:active, input.btn.btn-default:focus, a.btn.btn-default:hover, a.btn.btn-default:active, a.btn.btn-default:focus {
  background-color: #E85652;
  border: 1px solid #E85652;
  color: #fff;
}
.btn.btn-default.white, input.btn.btn-default.white, a.btn.btn-default.white {
  color: #fff;
}
.btn.btn-default.double-white, input.btn.btn-default.double-white, a.btn.btn-default.double-white {
  color: #fff;
  border-color: #fff;
}

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

.back-to-list {
  background-color: transparent;
  color: #E85652;
  padding: 15px 0;
  padding-right: 60px;
  transition: all 300ms;
  border: none;
  border-bottom: 1px solid #E85652;
  border-radius: 0;
  text-transform: none;
}
.back-to-list:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/red-caret.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: -60px;
  margin-top: 7px;
  position: relative;
  display: inline-block;
  width: 7px;
  height: 15px;
  animation-name: none;
  transition: all 300ms;
}
.back-to-list:hover, .back-to-list:active, .back-to-list:focus {
  background-color: transparent;
  color: #3F2667;
  border: none;
  border-bottom: 1px solid #3F2667;
  padding-left: 20px;
  padding-right: 40px;
}
.back-to-list:hover:after, .back-to-list:active:after, .back-to-list:focus:after {
  right: -40px;
}

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

.formbuilder-confirmation-content h3 {
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
}
@media (max-width: 767px) {
  .formbuilder-confirmation-content h3 {
    font-size: 30px;
    line-height: 34px;
  }
}
.formbuilder-confirmation-content h3 span {
  color: #E85652;
}

/* Formulaire - Style Global */
form.form-horizontal,
form.search-form {
  /*Fix col-md-12 full width qui affiche a moitié - width égale*/
  /*Static Text in forms*/
}
form.form-horizontal h2.section-title,
form.search-form h2.section-title {
  margin-top: 40px;
}
form.form-horizontal .col-sm-24 .col-md-12,
form.search-form .col-sm-24 .col-md-12 {
  width: 100%;
  /*
  @include min-md {
  	padding: 0 15px 0px 0!important;
  }
  */
}
form.form-horizontal .form-group,
form.search-form .form-group {
  margin-left: 0px;
  margin-right: 0px;
  /* Required Red Star Styles */
  /* Input Global Style */
  /* Direct input overrides */
  /*Category Dropdown Styles*/
  /*Keywords Dropdown Styles*/
  /*Error Text Style*/
}
form.form-horizontal .form-group .col-md-12, form.form-horizontal .form-group .col-sm-17, form.form-horizontal .form-group .col-sm-24,
form.search-form .form-group .col-md-12,
form.search-form .form-group .col-sm-17,
form.search-form .form-group .col-sm-24 {
  padding: 0;
}
form.form-horizontal .form-group label.control-label,
form.search-form .form-group label.control-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 0;
  color: #1C1D1F;
}
form.form-horizontal .form-group span.control-label--required,
form.search-form .form-group span.control-label--required {
  padding-left: 2px;
  color: #9695D3;
}
form.form-horizontal .form-group input:not(.btn), form.form-horizontal .form-group select, form.form-horizontal .form-group textarea,
form.search-form .form-group input:not(.btn),
form.search-form .form-group select,
form.search-form .form-group textarea {
  background-color: #fff !important;
  color: #3F2667 !important;
  border: 1px solid #E85652;
}
form.form-horizontal .form-group input[type=checkbox],
form.search-form .form-group input[type=checkbox] {
  padding: 4px !important;
  width: 16px;
  height: 16px;
  top: 6px;
  left: 5px;
}
form.form-horizontal .form-group input[type=radio],
form.search-form .form-group input[type=radio] {
  padding: 4px !important;
  width: 16px;
  height: 16px;
  top: 6px;
  left: 25px;
}
form.form-horizontal .form-group .radio label, form.form-horizontal .form-group .checkbox label, form.form-horizontal .form-group .input-radio > div label,
form.search-form .form-group .radio label,
form.search-form .form-group .checkbox label,
form.search-form .form-group .input-radio > div label {
  padding-left: 28px;
}
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 #9695D3 !important;
  border-radius: 40px !important;
  padding: 15px !important;
  height: 51px !important;
}
form.form-horizontal .form-group textarea,
form.search-form .form-group textarea {
  padding: 15px !important;
}
form.form-horizontal .form-group select,
form.search-form .form-group select {
  background: #fff url(https://cdn.ca.yapla.com/company/CPY7p4CO2sE1afW3ImwiLyBND/asset/images/Site%20Web%202021/Icons/chevron-down-black%402x.png) no-repeat right 20px center !important;
  /*
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  */
}
form.form-horizontal .form-group .input-file,
form.search-form .form-group .input-file {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
form.form-horizontal .form-group select.moteur-recherche, form.form-horizontal .form-group select#category_id, form.form-horizontal .form-group .chosen-choices,
form.search-form .form-group select.moteur-recherche,
form.search-form .form-group select#category_id,
form.search-form .form-group .chosen-choices {
  width: 100%;
  max-width: 400px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(https://cdn.ca.yapla.com/images/icon-membogo-arrow-combo@2x.png) no-repeat right 5px center !important;
  background-size: 13px !important;
}
form.form-horizontal .form-group .form-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: #3F2667 !important;
  font-size: 15px;
  padding-left: 15px !important;
  border: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice span, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice span,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice span,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice span {
  vertical-align: -webkit-baseline-middle;
  margin: 0px 5px 0px 0 !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice .search-choice-close, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice .search-choice-close,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice .search-choice-close {
  right: auto;
  left: 0;
  top: 9px !important;
  filter: invert(1);
}
form.form-horizontal .form-group ul.error,
form.search-form .form-group ul.error {
  margin: 0;
}
form.form-horizontal .form-group ul.error li.text-danger,
form.search-form .form-group ul.error li.text-danger {
  padding: 3px 10px 0px 10px;
  color: #000;
  background-color: #ffcece;
  font-size: 12px;
}
form.form-horizontal p.form-control-static,
form.search-form p.form-control-static {
  padding-top: 0;
  margin-top: 0;
}
form.form-horizontal .crm-footer-frame,
form.search-form .crm-footer-frame {
  text-align: center;
  margin-top: 30px;
}

/* Miscellaneous forms */
#ui-form .ui-section__content {
  background-color: rgba(63, 38, 103, 0.1);
}
#ui-form .ui-section__content h2 {
  color: #3F2667;
}

.overrideformtitle .zone-crm h1 {
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
  text-align: center;
}
@media (max-width: 767px) {
  .overrideformtitle .zone-crm h1 {
    font-size: 30px;
    line-height: 34px;
  }
}
.overrideformtitle .zone-crm h1 span {
  color: #E85652;
}

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

/* Formulaire Inscription membre/evenement*/
/*Styles Global*/
.zone-member .form-withProgress__wrapper .section {
  margin-bottom: 50px;
}
.zone-member #login_content_box {
  background-color: transparent;
}
@media (max-width: 767px) {
  .zone-member #login_content_box {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}
.zone-member #member_adhesion_form {
  background-color: #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;
  /*Formulaire*/
  /*Récapitulatif*/
  /*Total box*/
  /*Bottom Nav*/
}
@media (max-width: 991px) {
  .zone-event .form-withProgress__wrapper,
  .zone-member .form-withProgress__wrapper {
    padding: 32px 16px;
  }
}
.zone-event .form-withProgress__wrapper h2.section-title,
.zone-member .form-withProgress__wrapper h2.section-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  padding-bottom: 16px;
}
.zone-event .form-withProgress__wrapper .form-group input, .zone-event .form-withProgress__wrapper .form-group select,
.zone-member .form-withProgress__wrapper .form-group input,
.zone-member .form-withProgress__wrapper .form-group select {
  background-color: #f7f7f7;
}
.zone-event .form-withProgress__wrapper fieldset h2,
.zone-member .form-withProgress__wrapper fieldset h2 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.zone-event .form-withProgress__wrapper fieldset legend,
.zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 21px;
  line-height: 26px;
  font-weight: 400;
}
.zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
.zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
  color: #E85652;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
  .zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
    font-size: 14px;
  }
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-event .form-withProgress__wrapper #fieldset-total,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-member .form-withProgress__wrapper #fieldset-total {
  padding: 15px 0 30px 0;
  margin-bottom: 0 !important;
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title {
  text-transform: initial;
  font-size: 26px;
  color: #E85652 !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: #E85652 !important;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
  .zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price,
  .zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
  .zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price {
    font-size: 20px;
  }
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment {
  background-color: transparent;
  color: #E85652;
  transition: all 300ms ease;
  border: 1px solid #E85652;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus {
  background-color: #E85652;
  border: 1px solid #E85652;
  color: #fff;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.white,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.white,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.white,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.white,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.white,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.white,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.white,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.white {
  color: #fff;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.double-white,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.double-white,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.double-white,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.double-white,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton.double-white,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#submit.double-white,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton.double-white,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment.double-white {
  color: #fff;
  border-color: #fff;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step {
  color: #6CA4DC;
  margin-right: 32px;
  text-decoration: underline;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover {
  background: transparent;
  color: #9695D3;
  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: #9695D3;
}
.zone-event .membership-delegate-manage .footer .btn,
.zone-member .membership-delegate-manage .footer .btn {
  height: 55px !important;
  padding: 15px 25px !important;
  background-color: transparent !important;
  color: #E85652 !important;
  transition: all 300ms ease !important;
  border: 1px solid #E85652 !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: #E85652 !important;
  border: 1px solid #E85652 !important;
  color: #fff !important;
}

.modal .modal-dialog .modal-content .modal-footer button {
  height: 55px !important;
  padding: 15px 25px !important;
  background-color: transparent !important;
  color: #E85652 !important;
  transition: all 300ms ease !important;
  border: 1px solid #E85652 !important;
}
.modal .modal-dialog .modal-content .modal-footer button:hover, .modal .modal-dialog .modal-content .modal-footer button:active, .modal .modal-dialog .modal-content .modal-footer button:focus {
  text-decoration: none !important;
  background-color: #E85652 !important;
  border: 1px solid #E85652 !important;
  color: #fff !important;
}

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

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

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

/*ETAPES INSCRIPTION EVENEMENT*/
/*Étapes 1 - Inscription*/
.zone-event h1.form-withProgress__title-main {
  padding-top: 60px;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc {
  padding: 32px 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition {
  background-color: #FFF7ED;
  border: 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add {
  background-color: transparent;
  color: #E85652;
  transition: all 300ms ease;
  border: 1px solid #E85652;
  padding: 15px !important;
  color: #E85652 !important;
  font-weight: 500 !important;
  border: 2px solid #3F2667 !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:hover, .zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:active, .zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:focus {
  background-color: #E85652;
  border: 1px solid #E85652;
  color: #fff;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add.white {
  color: #fff;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add.double-white {
  color: #fff;
  border-color: #fff;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add.btn i.fa {
  display: none !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:hover {
  background-color: #fff !important;
  text-decoration: none !important;
  border: 2px solid #3F2667 !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: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
  padding-top: 32px;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
/*Étapes - Résumé Informations*/
.step-resume .field-object-temp h2 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #E85652;
}
.step-resume .field-object-temp .object-top-action input {
  margin-right: 16px;
}
.step-resume .field-object-temp .object-main-title {
  margin-bottom: 64px;
}
.step-resume .field-object-temp .object-main-title h2 {
  font-size: 25px;
  line-height: 27px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  .step-resume .field-object-temp .object-main-title h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
.step-resume .field-object-temp .field-object-next-element, .step-resume .field-object-temp .field-object-prev-element {
  height: 55px !important;
  padding: 15px 25px !important;
  background-color: transparent !important;
  color: #E85652 !important;
  transition: all 300ms ease !important;
  border: 1px solid #E85652 !important;
}
.step-resume .field-object-temp .field-object-next-element:hover, .step-resume .field-object-temp .field-object-next-element:active, .step-resume .field-object-temp .field-object-next-element:focus, .step-resume .field-object-temp .field-object-prev-element:hover, .step-resume .field-object-temp .field-object-prev-element:active, .step-resume .field-object-temp .field-object-prev-element:focus {
  text-decoration: none !important;
  background-color: #E85652 !important;
  border: 1px solid #E85652 !important;
  color: #fff !important;
}
.step-resume .field-object-temp .crm-entity__info-wrapper {
  border: 1px solid #DDDDDD;
}
.step-resume .field-object-temp .crm-entity__info-wrapper .section-title-toggle {
  display: none;
}
.step-resume .field-object-temp .list-group__wrapper .list-group__title {
  border: 1px solid #DDDDDD;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.step-resume .field-object-temp .object-form-action {
  margin-bottom: 32px;
}
.step-resume .field-object-temp .object-form-action a.btn {
  margin-top: 0 !important;
}

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

/*###########################  TABLEAU  ###########################*/
/* basically le bottin de yapla */
.list-group__wrapper .list-group .list-group-item {
  color: #E85652;
}
.list-group__wrapper .list-group .list-group-item span {
  color: #E85652;
}
.list-group__wrapper .list-group .list-group-item.active {
  background-color: rgba(63, 38, 103, 0.25);
  border-color: #3F2667;
}

/*###########################  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(63, 38, 103, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  font-family: "canada-type-gibson", sans-serif;
  letter-spacing: 2px;
  padding: 10px 0px;
}
.nav-tabs li a:hover, .nav-tabs li a:focus {
  background-color: transparent;
  color: rgba(63, 38, 103, 0.4);
  border-color: transparent;
}
.nav-tabs li.active:hover a, .nav-tabs li.active a {
  border-bottom: 5px solid #E85652;
  color: #3F2667;
}

.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 {
  margin: 5px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #3F2667;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paginationControl a:hover, .paginationControl a:focus {
  text-decoration: none;
  color: #E85652;
}
.paginationControl a.active {
  color: #E85652;
  border-bottom: 1px solid #E85652;
}

/*###########################  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 #1C1D1F !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: 25px;
  line-height: 27px;
  font-weight: 500;
  text-transform: initial;
  margin-bottom: 0;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-heading .panel-title {
    font-size: 20px;
    line-height: 22px;
  }
}
.panel-news-accordion .panel-heading .panel-title a {
  padding: 30px 15px 30px;
  color: #3F2667;
  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: #1C1D1F;
  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: #1C1D1F;
  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;
  position: relative;
  /* active and opened content */
}
table.accordeon tbody, table.accordeon tr, table.accordeon td {
  border: 0;
}
table.accordeon tbody {
  display: block;
}
table.accordeon tbody tr {
  /* Title/accordeon box */
}
table.accordeon tbody tr:first-child {
  cursor: pointer;
  display: block;
  background-color: #9695D3;
  border-radius: 5px;
  padding: 35px 60px 0 25px;
  position: relative;
  height: 270px;
}
@media (max-width: 1199px) {
  table.accordeon tbody tr:first-child {
    height: 310px;
  }
}
@media (max-width: 767px) {
  table.accordeon tbody tr:first-child {
    height: 273px;
  }
}
table.accordeon tbody tr:first-child:after {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_travailler/Plus-blanc.svg);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  color: #fff;
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding-top: 10px;
  padding-left: 14px;
  transition: transform 150ms;
}
table.accordeon tbody tr:first-child td h3 {
  font-weight: 700;
}
@media (max-width: 1199px) {
  table.accordeon tbody tr:first-child td h3 {
    font-size: 26px;
    line-height: 30px;
  }
}
table.accordeon tbody tr:last-child {
  display: none;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 100px;
}
table.accordeon tbody tr:last-child td {
  display: block;
  max-height: 0;
  overflow: hidden;
}
table.accordeon tbody tr:last-child td p {
  color: #3F2667;
}
table.accordeon tbody tr:last-child td p span {
  color: #E85652;
  font-weight: 700;
}
table.accordeon tbody tr:last-child td ul li {
  color: #3F2667;
}
table.accordeon tbody tr:last-child td ul li::marker {
  color: #E85652 !important;
}
table.accordeon.active tbody tr:first-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
table.accordeon.active tbody tr:first-child:after {
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_travailler/Moins-blanc.svg);
  padding-left: 19px;
}
table.accordeon.active tbody tr:last-child {
  display: block;
  padding: 15px;
  background-color: #F5F5F5;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding-bottom: 55px;
}
@media (max-width: 1400px) {
  table.accordeon.active tbody tr:last-child {
    padding-bottom: 15px;
  }
}
table.accordeon.active tbody tr:last-child td {
  max-height: 5000px;
  transition: max-height 1.5s;
}
table.accordeon.light tbody tr:first-child {
  background: #EBEFFE;
}
table.accordeon.light tbody tr:first-child td h3 {
  color: #3F2667;
}
table.accordeon.light tbody tr:first-child:after {
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_travailler/Plus-violet.svg);
}
table.accordeon.light tbody tr:last-child {
  background: #EBEFFE;
}
table.accordeon.light.active tbody tr:first-child:after {
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_travailler/Moins-violet.svg);
}
table.accordeon.purple tbody tr:first-child {
  background: #9695D3;
}
table.accordeon.purple tbody tr:first-child td h3 {
  color: #fff;
}
table.accordeon.purple tbody tr:last-child {
  background: #9695D3;
}
table.accordeon.purple tbody tr:last-child td p span {
  color: #fff;
  font-weight: 700;
}
table.accordeon.purple tbody tr:last-child td ul li::marker {
  color: #fff !important;
}
table.accordeon.dark tbody tr:first-child {
  background: #3F2667;
}
table.accordeon.dark tbody tr:first-child td h3 {
  color: #fff;
}
table.accordeon.dark tbody tr:last-child {
  background: #3F2667;
}
table.accordeon.dark tbody tr:last-child td p {
  color: #fff;
}
table.accordeon.dark tbody tr:last-child td ul li {
  color: #fff;
}
table.accordeon.red tbody tr:first-child {
  background: #E85652;
}
table.accordeon.red tbody tr:first-child td h3 {
  color: #fff;
}
table.accordeon.red tbody tr:first-child td ul li {
  color: #fff;
}
table.accordeon.red tbody tr:last-child {
  background: #E85652;
}
table.accordeon.red tbody tr:last-child td p {
  color: #fff;
}
table.accordeon.red tbody tr:last-child td p span {
  color: #3F2667;
}
table.accordeon.red tbody tr:last-child td ul li {
  color: #fff;
}
table.accordeon.red tbody tr:last-child td ul li::marker {
  color: #3F2667 !important;
}

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

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

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modal-dialog {
  width: 90%;
  margin: 9.75rem auto 1.75rem auto;
  transform: none !important;
}
@media (max-width: 575px) {
  .modal .modal-dialog {
    width: 80%;
  }
}
.modal .modal-dialog .modal-content {
  width: auto;
  border: 0;
  background-color: #1C1D1F;
  aspect-ratio: 1/1;
  max-height: 80vh;
  margin-left: auto;
  margin-right: auto;
}
.modal .modal-dialog .modal-content .modal-header {
  margin-top: 0;
  padding: 0;
  flex-direction: column;
}
.modal .modal-dialog .modal-content .modal-header button.close {
  color: #E85652;
  font-size: 45px;
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 300;
  right: 0;
  position: absolute;
  margin-right: -35px;
  margin-top: -45px;
}
.modal .modal-dialog .modal-content .modal-header button.close:hover {
  color: #fff;
}
.modal .modal-dialog .modal-content .modal-body {
  /* Input Global Style */
  max-height: inherit;
  padding: 0;
}
.modal .modal-dialog .modal-content .modal-body > div {
  padding: 0;
}
.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: #F7F7F7 !important;
  color: #3F2667 !important;
  border: none;
}
.nav-pills {
  background-image: none;
}

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

.line-title-banner {
  padding-bottom: 96px;
}
@media (max-width: 767px) {
  .line-title-banner .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .line-title-banner .container > .row {
    margin-left: 0;
    margin-right: 0;
  }
}
.line-title-banner .container > .row > div:first-child {
  padding-right: 0;
}
@media (max-width: 1199px) {
  .line-title-banner .container > .row > div:first-child {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .line-title-banner .container > .row > div:first-child {
    width: 100%;
    padding-left: 0;
  }
}
.line-title-banner .container > .row > div:first-child .mod-banner__wrapper {
  position: relative;
}
.line-title-banner .container > .row > div:first-child .mod-banner__wrapper:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_stars/banner-stars1.svg);
  background-repeat: no-repeat;
  width: 238px;
  height: 376px;
  position: absolute;
  bottom: -240px;
  left: 80px;
  z-index: 1;
}
@media (max-width: 767px) {
  .line-title-banner .container > .row > div:first-child .mod-banner__wrapper:after {
    display: none;
  }
}
.line-title-banner .container > .row > div:first-child .mod-banner__wrapper .mod-banner__img {
  height: 730px;
}
@media (max-width: 767px) {
  .line-title-banner .container > .row > div:first-child .mod-banner__wrapper .mod-banner__img {
    height: 300px;
  }
}
.line-title-banner .container > .row > div:first-child .mod-banner__wrapper .mod-banner__img .mod-banner__content {
  padding-left: 40px;
  top: 42%;
  position: relative;
}
@media (min-width: 1200px) {
  .line-title-banner .container > .row > div:first-child .mod-banner__wrapper .mod-banner__img .mod-banner__content {
    padding-left: 80px;
  }
}
@media (max-width: 767px) {
  .line-title-banner .container > .row > div:first-child .mod-banner__wrapper .mod-banner__img .mod-banner__content {
    padding-right: 40px;
    top: 50%;
  }
}
.line-title-banner .container > .row > div:first-child .mod-banner__wrapper .mod-banner__img .mod-banner__content h1 {
  font-size: 23px;
  line-height: 1;
  color: #fff;
  background: #E85652;
  display: inline-block;
  padding: 15px 24px;
  border-radius: 62px;
  max-width: fit-content;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .line-title-banner .container > .row > div:first-child .mod-banner__wrapper .mod-banner__img .mod-banner__content h1 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.line-title-banner .container > .row > div:first-child .mod-banner__wrapper .mod-banner__img .mod-banner__content h2 {
  color: #fff;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-title-banner .container > .row > div:first-child .mod-banner__wrapper .mod-banner__img .mod-banner__content h2 {
    word-wrap: break-word;
  }
}
.line-title-banner .container > .row > div:first-child .mod-banner__wrapper .mod-banner__img .mod-banner__content h2 span {
  color: #E85652;
}
@media (max-width: 767px) {
  .line-title-banner .container > .row > div:first-child .mod-banner__wrapper .mod-banner__img .mod-banner__content h2 br {
    display: block !important;
  }
}
.line-title-banner .container > .row > div:last-child {
  padding-left: 0;
}
@media (max-width: 1199px) {
  .line-title-banner .container > .row > div:last-child {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .line-title-banner .container > .row > div:last-child {
    width: 100%;
    padding-right: 0;
  }
}
.line-title-banner .container > .row > div:last-child .mod-banner__wrapper {
  padding-top: 65px;
  position: relative;
}
@media (max-width: 767px) {
  .line-title-banner .container > .row > div:last-child .mod-banner__wrapper {
    padding-top: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-title-banner .container > .row > div:last-child .mod-banner__wrapper:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_stars/banner-stars2.svg);
  background-repeat: no-repeat;
  width: 238px;
  height: 376px;
  position: absolute;
  bottom: -250px;
  right: -30px;
}
@media (max-width: 767px) {
  .line-title-banner .container > .row > div:last-child .mod-banner__wrapper:after {
    background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/industrie-smol-stars1.svg);
    width: 238px;
    height: 88px;
    bottom: -35px;
  }
}
.line-title-banner .container > .row > div:last-child .mod-banner__wrapper .mod-banner__img {
  height: 600px;
}
@media (max-width: 767px) {
  .line-title-banner .container > .row > div:last-child .mod-banner__wrapper .mod-banner__img {
    height: 225px;
    max-width: 100%;
  }
}

.line-header .zone-html:nth-child(1) {
  width: 70%;
  z-index: 100000;
  position: relative;
  display: inline-block;
  transition: all 1s ease;
}
@media (max-width: 991px) {
  .line-header .zone-html:nth-child(1) {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .line-header .zone-html:nth-child(1) {
    padding-left: 0;
  }
}
.line-header .zone-html:nth-child(1) .content a {
  position: relative;
  display: inline-block;
  padding: 16px 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 {
    display: block;
    width: 160px;
    height: 80px;
    padding: 0;
  }
}
.line-header .zone-html:nth-child(1) .content a img {
  position: absolute;
}
@media (max-width: 991px) {
  .line-header .zone-html:nth-child(1) .content a img {
    width: 153px !important;
    top: 15px;
  }
}
@media (max-width: 767px) {
  .line-header .zone-html:nth-child(1) .content a img {
    margin-top: 0;
    top: 8px;
    width: 160px !important;
  }
}
.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;
}
.line-header .zone-html:nth-child(2) {
  width: 25%;
  z-index: 100;
  position: relative;
  display: inline-block;
  transition: all 1s ease;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .line-header .zone-html:nth-child(2) {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .line-header .zone-html:nth-child(2) {
    padding-right: 0;
  }
}
.line-header .zone-html:nth-child(2) .content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@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 .menu-hamburger .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;
}
@media (max-width: 991px) {
  .line-header.opened .zone-html:nth-child(1) .content a img {
    display: none;
  }
}
.line-header.opened .zone-html:last-child {
  z-index: 10000;
}
.line-header.opened .zone-html:last-child .contact-btn {
  visibility: hidden;
}
.line-header {
  transition: top 250ms;
  height: 90px;
}
@media (max-width: 767px) {
  .line-header {
    height: 80px;
  }
}
.line-header .container-fluid, .line-header .container {
  top: -100px;
  position: static;
  transition: all 250ms;
}
@media (min-width: 768px) {
  .line-header .container-fluid, .line-header .container {
    width: calc(100vw - 80px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .line-header .container-fluid, .line-header .container {
    padding: 0;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .line-header .container-fluid > .row, .line-header .container > .row {
    display: flex;
    align-items: center;
    min-height: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
}
.line-header .menu-hamburger {
  width: 52px;
  height: 52px;
  background-color: transparent;
  margin-left: 25px;
  margin-right: 0px;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: background-color 0.5s ease;
  border-radius: 50%;
}
.line-header .menu-hamburger #open {
  display: none;
}
@media (max-width: 991px) {
  .line-header .menu-hamburger {
    transform: scale(0.85);
    margin-right: 20px;
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .line-header .menu-hamburger {
    transform: scale(0.73);
    margin-top: 0px;
    margin-right: 0;
  }
}
.line-header .menu-hamburger:hover, .line-header .menu-hamburger:focus {
  cursor: pointer;
  background: #EBEFFE;
}
.line-header.opened .menu-hamburger #up {
  display: none;
}
.line-header.opened .menu-hamburger #open {
  display: block;
}
.line-header.opened .menu-hamburger:hover, .line-header.opened .menu-hamburger:focus {
  cursor: pointer;
  background: #3F2667;
}
.line-header.sticked {
  z-index: 99999;
}
.line-header.sticked .container-fluid, .line-header.sticked .container {
  box-shadow: 0 7px 12px -10px gray;
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background-color: #fff;
  z-index: 1000000;
  padding-left: 8%;
  padding-right: 8%;
  margin: 0;
}
@media (max-width: 991px) {
  .line-header.sticked .container-fluid, .line-header.sticked .container {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .line-header.sticked .container-fluid, .line-header.sticked .container {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0;
    padding-right: 0;
  }
}
.line-header.sticked .container-fluid .row, .line-header.sticked .container .row {
  display: flex;
  justify-content: space-between;
  height: 80px;
}
.line-header.sticked .container-fluid .row:before, .line-header.sticked .container .row:before {
  display: none;
}
.line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content, .line-header.sticked .container .row .zone-html:nth-child(1) .content {
  padding-top: 0px;
  width: 156px;
  height: 80px;
}
.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;
  width: 213px;
  min-height: 100%;
  display: flex;
  align-items: center;
}
.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: 160px !important;
  top: 14px;
}
@media (max-width: 991px) {
  .line-header.sticked .container-fluid .row .zone-html:nth-child(1) .content a img, .line-header.sticked .container .row .zone-html:nth-child(1) .content a img {
    top: 10px;
  }
}
@media (max-width: 991px) {
  .line-header.sticked .container-fluid .row .zone-html:nth-child(2) .btn-secondary, .line-header.sticked .container .row .zone-html:nth-child(2) .btn-secondary {
    padding: 8px 15px;
  }
}
@media (max-width: 991px) {
  .line-header.sticked .container-fluid .row .zone-html:nth-child(2) .menu-hamburger, .line-header.sticked .container .row .zone-html:nth-child(2) .menu-hamburger {
    margin-left: 15px;
  }
}
.line-header.sticked .container-fluid .menu-hamburger, .line-header.sticked .container .menu-hamburger {
  background-color: transparent;
  border: 1px transparent solid;
  margin-top: 6px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: background-color 0.5s ease;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .line-header.sticked .container-fluid .menu-hamburger, .line-header.sticked .container .menu-hamburger {
    margin-left: 3px;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .line-header.sticked .container-fluid .menu-hamburger, .line-header.sticked .container .menu-hamburger {
    margin-top: 0px;
  }
}
.line-header.sticked .container-fluid .menu-hamburger:hover, .line-header.sticked .container-fluid .menu-hamburger:focus, .line-header.sticked .container .menu-hamburger:hover, .line-header.sticked .container .menu-hamburger:focus {
  background: #EBEFFE;
}
.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: #3F2667;
}
.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;
}
.line-header.sticked.opened .container-fluid .menu-hamburger, .line-header.sticked.opened .container .menu-hamburger {
  background: #3F2667;
}

.menu-container {
  padding-top: 120px;
  z-index: 1000;
  position: fixed;
  width: 45%;
  height: 100%;
  top: 0px;
  bottom: 0;
  background-color: #3F2667;
  border-top: 1px solid #E0E7F4;
  right: -110vw;
  transition: 1.2s right cubic-bezier(0.107, 0, 0.375, 1);
}
@media (max-width: 1199px) {
  .menu-container {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .menu-container {
    width: 100%;
  }
}
.menu-container.opened {
  right: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #3F2667;
  filter: drop-shadow(-20px 0px 20px rgba(63, 38, 103, 0.2));
}
@media (max-width: 767px) {
  .menu-container.opened {
    justify-content: flex-start;
    padding-left: 15px;
    padding-right: 20px;
  }
}
@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: 80px;
    flex-direction: column;
    top: 0px;
  }
}
.menu-container .line-menu {
  background-color: #3F2667;
  width: 100%;
}
.menu-container .line-menu:after {
  display: none;
}
.menu-container .line-menu .container {
  max-width: 100%;
}
@media (max-width: 767px) {
  .menu-container .line-menu .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.menu-container .line-menu .container .navbar-default {
  padding-left: 30px;
}
@media (max-width: 767px) {
  .menu-container .line-menu .container .navbar-default {
    padding-left: 20px;
  }
}
.menu-container .line-menu .container .navbar-default .navbar-nav {
  display: flex;
  flex-direction: column;
  float: none;
  align-items: flex-start;
}
.menu-container .line-menu .container .navbar-default .navbar-nav > li {
  z-index: 0;
  width: 100%;
  text-align: left;
}
@media (max-width: 991px) {
  .menu-container .line-menu .container .navbar-default .navbar-nav > li {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .menu-container .line-menu .container .navbar-default .navbar-nav > li {
    width: 100%;
  }
}
.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: #E85652 !important;
}
.menu-container .line-menu .container .navbar-default .navbar-nav > li.active {
  color: #E85652;
  background-color: transparent !important;
}
.menu-container .line-menu .container .navbar-default .navbar-nav > li.active > a {
  color: #E85652;
}
.menu-container .line-menu .container .navbar-default .navbar-nav > li.active a.active {
  color: #E85652 !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: #EBEFFE;
  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 (max-width: 1199px) and (min-width: 992px) {
  .menu-container .line-menu ul.menu-vertical-items > li {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .menu-container .line-menu ul.menu-vertical-items > li {
    font-size: 20px;
    line-height: 30px;
  }
}
.menu-container .line-menu ul.menu-vertical-items > li:hover {
  color: #E85652 !important;
}
.menu-container .line-menu ul.menu-vertical-items > li .child-link:hover {
  color: #E85652 !important;
}
.menu-container .line-menu ul.menu-vertical-items > li > a {
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
  text-transform: none;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .menu-container .line-menu ul.menu-vertical-items > li > a {
    font-size: 28px;
  }
}
.menu-container .line-menu ul.menu-vertical-items > li > a:hover {
  color: #3F2667 !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: #EBEFFE;
  display: block;
  background-color: transparent !important;
  white-space: break-spaces;
  padding-bottom: 10px;
  transition: all 0.5s;
  cursor: pointer;
}
.menu-container .line-menu ul.menu-vertical-items > li a:hover, .menu-container .line-menu ul.menu-vertical-items > li a:focus, .menu-container .line-menu ul.menu-vertical-items > li a:active {
  color: #E85652;
  background-color: transparent !important;
  cursor: pointer;
}
.menu-container .line-menu ul.menu-vertical-items > li a.dropdown-toggle {
  display: block;
  text-align: right;
  margin-top: -46px;
  height: 60px !important;
  padding: 0 !important;
  width: 60%;
  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: 27px;
  height: 22px;
  margin-top: 8px;
  right: -30px !important;
  top: 0px !important;
  position: absolute;
  display: block;
  float: right;
  background-image: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/menu-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
}
@media (max-width: 991px) {
  .menu-container .line-menu ul.menu-vertical-items > li a.dropdown-toggle .caret {
    margin-right: 0px;
    right: 125px !important;
  }
}
@media (max-width: 767px) {
  .menu-container .line-menu ul.menu-vertical-items > li a.dropdown-toggle .caret {
    right: 0 !important;
    top: -5px !important;
  }
}
.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;
  transition: all 0.5s;
  color: #fff;
  cursor: pointer;
}
.menu-container .line-menu ul.menu-vertical-items > li ul.dropdown-menu li a:hover {
  color: #E85652;
  cursor: pointer;
}
.menu-container .line-menu ul.menu-vertical-items > li.open .dropdown-toggle .caret {
  background-image: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/menu-minus.svg");
  margin-top: 22px;
  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;
  padding-left: 30px;
}
.menu-container .line-menu-header {
  padding: 0px 0 100px;
  width: 100%;
}
@media (max-width: 767px) {
  .menu-container .line-menu-header {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .container {
    padding-right: 20px;
  }
}
.menu-container .line-menu-header .container > .row > div {
  padding-right: 0;
}
.menu-container .line-menu-header .mod-header {
  max-width: 75%;
  padding-left: 0;
  text-align: center;
  display: flex;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .menu-container .line-menu-header .mod-header {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header {
    justify-content: flex-end;
  }
}
.menu-container .line-menu-header .mod-header .header-ext + .header-ext {
  margin-left: 0;
}
.menu-container .line-menu-header .mod-header .header-ext-custom {
  display: flex;
  justify-content: space-between;
  width: 50%;
  order: 2;
  padding-left: 0px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom {
    margin-top: 15px;
    width: 100%;
  }
}
.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: #EBEFFE !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: #3F2667 !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;
  padding-top: 30px;
}
.menu-container .line-menu-header .mod-header .header-ext-custom .social-link ul.social {
  justify-content: space-between;
  width: 20%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link ul.social {
    order: 0;
  }
}
@media (max-width: 991px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link ul.social {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom .social-link ul.social {
    width: 80%;
  }
}
.menu-container .line-menu-header .mod-header .header-ext-custom .social-link ul.social li {
  margin-right: 15px;
}
.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);
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom ul.social {
    order: 0;
  }
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom ul.social li {
    margin-left: 15px;
    margin-right: 0;
  }
}
.menu-container .line-menu-header .mod-header .header-ext-custom .btn-primary {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .menu-container .line-menu-header .mod-header .header-ext-custom .btn-primary {
    order: 1;
    margin-bottom: 20px;
  }
}

/**
 * ----------------------------------------
 * animation Sticky menu
 * ----------------------------------------
 */
@-webkit-keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
@keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
.line-header:not(.sticked, .menuopened) {
  /*transition: top 250ms;*/
}
.line-header:not(.sticked, .menuopened) > .container {
  /*
  top: -100px;
  transition: top 250ms;*/
  /*position: static;*/
}
.line-header.sticked {
  -webkit-animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@media (max-width: 991px) {
  .line-header.sticked {
    background-color: #fff;
  }
}
.line-header.sticked > .container > .row {
  margin-top: 0;
  bottom: 0;
}
.line-header.sticked > .container > .row > div:nth-child(1) {
  /*
  .content {
      margin-top: 15px;
      .menu-hamburger {
          span {
              background-color: $primary;
          }
      }
  }
  */
}
.line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part .mod-header {
  margin-top: 6px;
}
.line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header, .member-login) {
  color: #E85652 !important;
}
.line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header, .member-login):hover, .line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header, .member-login):focus, .line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header, .member-login):active {
  color: #3F2667 !important;
}
@media (max-width: 991px) {
  .line-header.sticked.opened {
    background: #3F2667;
  }
}
@media (max-width: 991px) {
  .line-header.sticked.opened .container {
    background: #3F2667;
    box-shadow: none;
  }
}
.line-header.sticked:not(.menuopened) {
  position: sticky;
  top: 0;
}
/* OPTION - Hide munu item when logged
body {
	&.member--isConnected {
		.nav.navbar-nav {
			> li {
				&[rel=data-menu-67910] {
					display: none!important;
				}
			}
		}
	}
}
*/
.panel-header {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
.panel-header a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
  color: #fff !important;
  font-weight: 500;
}
.panel-header a:hover {
  color: #3F2667 !important;
  text-decoration: none !important;
}

.panel-connexion .member-login {
  font-family: "canada-type-gibson", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 13px;
  background-color: transparent;
  color: #3F2667;
  transition: all 300ms;
  border: 1px solid #3F2667;
}
.panel-connexion .member-login:hover, .panel-connexion .member-login:active, .panel-connexion .member-login:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .panel-connexion .member-login {
    white-space: normal !important;
  }
}
.panel-connexion .member-login:hover, .panel-connexion .member-login:active, .panel-connexion .member-login:focus {
  background-color: #3F2667;
  border: 1px solid #3F2667;
  color: #fff;
}

.panel-language a.switch-language {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
  color: #fff !important;
  font-weight: 500;
}
.panel-language a.switch-language:hover {
  color: #3F2667 !important;
  text-decoration: none !important;
}

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

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

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

.line-newsletter {
  padding-top: 155px;
}
.line-newsletter .container, .line-newsletter .container-fluid {
  width: calc(100vw - 80px);
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to top, #CE3043, #E85652);
  padding-top: 100px;
  padding-bottom: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .line-newsletter .container, .line-newsletter .container-fluid {
    width: calc(100vw - 40px);
  }
}
.line-newsletter .container:after, .line-newsletter .container-fluid:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/infoletter-img.svg);
  background-repeat: no-repeat;
  width: 116px;
  height: 133px;
  position: absolute;
  top: -90px;
  left: 200px;
}
@media (max-width: 767px) {
  .line-newsletter .container:after, .line-newsletter .container-fluid:after {
    background-size: contain;
    width: 50px;
    left: 60px;
    top: -40px;
  }
}
.line-newsletter .container > .row > div .content h2, .line-newsletter .container-fluid > .row > div .content h2 {
  color: #fff;
  margin-bottom: 30px;
}
.line-newsletter .container > .row > div .content h2 span, .line-newsletter .container-fluid > .row > div .content h2 span {
  color: #3F2667;
}
.line-newsletter .container > .row > div .content ul.social, .line-newsletter .container-fluid > .row > div .content ul.social {
  justify-content: center;
  margin-bottom: 40px;
}
.line-newsletter .container > .row > div .content p, .line-newsletter .container-fluid > .row > div .content p {
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .line-newsletter .container > .row > div .content p, .line-newsletter .container-fluid > .row > div .content p {
    max-width: 45%;
  }
}
.line-newsletter .container > .row > div .content p a:hover, .line-newsletter .container-fluid > .row > div .content p a:hover {
  background: #fff !important;
  color: #3F2667 !important;
  border-color: #3F2667 !important;
}

.line-footer-one {
  padding-top: 85px;
  padding-bottom: 75px;
}
.line-footer-one .container > .row > div .content h2 {
  text-align: center;
  color: #fff;
  display: block;
  max-width: fit-content;
  padding: 13px 35px 11px;
  background: #E85652;
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  border-radius: 50px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .line-footer-one .container > .row > div .content h2 {
    font-size: 20px;
  }
}
.line-footer-one .container > .row > div .content h3:first-of-type {
  font-size: 41px;
  line-height: 45px;
  letter-spacing: 6.03px;
  color: #3F2667;
  text-transform: uppercase;
  font-weight: 100;
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .line-footer-one .container > .row > div .content h3:first-of-type {
    font-size: 32px;
  }
}
.line-footer-one .container > .row > div .content h3.big {
  font-size: 69px;
  line-height: 72px;
  font-weight: 900;
  color: #3F2667;
  text-transform: uppercase;
  display: inline-block;
  padding-top: 0;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .line-footer-one .container > .row > div .content h3.big {
    font-size: 52px;
    line-height: 55px;
  }
}
.line-footer-one .container > .row > div .content h4 {
  margin-bottom: 50px;
}
.line-footer-one .container > .row > div .content h4 span {
  color: #E85652;
}
.line-footer-one .container > .row > div .content h6 {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #1C1D1F;
  margin-bottom: 40px;
  font-weight: 300;
}
.line-footer-one .container > .row > div .content h6:after {
  content: "";
  background: #E85652;
  width: 260px;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: -100px;
}
.line-footer-one .container > .row > div .content ul.footer-menu {
  padding-left: 0 !important;
  list-style: none;
  margin-top: 90px !important;
  display: flex;
  justify-content: space-between;
}
.line-footer-one .container > .row > div .content ul.footer-menu li {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 15px;
  padding-left: 0 !important;
}
.line-footer-one .container > .row > div .content ul.footer-menu li:before {
  display: none !important;
}
@media (max-width: 767px) {
  .line-footer-one .container > .row > div .content ul.footer-menu {
    flex-direction: column;
  }
}
.line-footer-one .container > .row > div .content ul.footer-menu li {
  font-size: 40px !important;
  line-height: 51px !important;
}
@media (max-width: 1199px) {
  .line-footer-one .container > .row > div .content ul.footer-menu li {
    font-size: 30px !important;
  }
}
@media (max-width: 991px) {
  .line-footer-one .container > .row > div .content ul.footer-menu li {
    font-size: 24px !important;
  }
}
@media (max-width: 767px) {
  .line-footer-one .container > .row > div .content ul.footer-menu li {
    font-size: 25px !important;
  }
}
.line-footer-one .container > .row > div .content ul.footer-menu li a {
  color: #E85652 !important;
}
.line-footer-one .container > .row > div .content ul.footer-menu li a:hover {
  color: #3F2667 !important;
  text-decoration: none !important;
}
.line-footer-one .container > .row > div .content ul.footer-menu li.separator {
  color: #E85652;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 767px) {
  .line-footer-one .container > .row > div .content ul.footer-menu li.separator {
    display: none;
  }
}

.line-footer-two {
  padding-bottom: 50px;
}
.line-footer-two .container > .row > div .content {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .line-footer-two .container > .row > div .content {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .line-footer-two .container > .row > div .content .logo-section:first-child {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .line-footer-two .container > .row > div .content .logo-section:first-child {
    margin-right: 30px;
  }
}
.line-footer-two .container > .row > div .content .logo-section:first-child h6 {
  margin-bottom: 30px;
}
.line-footer-two .container > .row > div .content .logo-section:first-child h6:after {
  content: "";
  background: #E85652;
  width: 314px;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: -25px;
}
@media (max-width: 767px) {
  .line-footer-two .container > .row > div .content .logo-section:first-child h6:after {
    width: 350xp;
  }
}
.line-footer-two .container > .row > div .content .logo-section:first-child .flex-logos img:first-child {
  margin-right: 20px;
}
.line-footer-two .container > .row > div .content .logo-section:last-child {
  display: flex;
  align-items: flex-end;
}
.line-footer-two .container > .row > div .content .logo-section:last-child h6:after {
  content: "";
  background: #E85652;
  width: 200px;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: -25px;
}
@media (max-width: 767px) {
  .line-footer-two .container > .row > div .content .logo-section:last-child h6:after {
    width: 350xp;
  }
}
.line-footer-two .container > .row > div .content .logo-section h6 {
  text-align: center;
  font-weight: 300;
  position: relative;
}
.line-footer-two .container > .row > div .content .logo-section .flex-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.line-footer-copyright {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
.line-footer-copyright .container > .row > div .content {
  text-align: center;
}
@media (max-width: 767px) {
  .line-footer-copyright .container > .row > div .content {
    max-width: 67%;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-footer-copyright .container > .row > div .content p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 2px;
  font-weight: 100;
}
.line-footer-copyright .container > .row > div .content p a {
  color: #1C1D1F !important;
}

.article-main {
  padding-bottom: 80px;
}
.article-main .container .row .zone-article .mod-article__wrapper {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
.article-main .container .row .zone-article .mod-article__wrapper .mod-article__title {
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
  color: #3F2667;
  background: #fff;
  text-align: center;
  order: 0;
  margin-bottom: 60px;
  padding-top: 75px;
  padding-left: 50px;
  padding-right: 50px;
  margin-top: -125px;
}
@media (max-width: 767px) {
  .article-main .container .row .zone-article .mod-article__wrapper .mod-article__title {
    font-size: 30px;
    line-height: 34px;
  }
}
.article-main .container .row .zone-article .mod-article__wrapper .mod-article__title span {
  color: #E85652;
}
@media (max-width: 1199px) {
  .article-main .container .row .zone-article .mod-article__wrapper .mod-article__title {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .article-main .container .row .zone-article .mod-article__wrapper .mod-article__title {
    max-width: 90%;
    padding-top: 30px;
    margin-top: -50px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.article-main .container .row .zone-article .mod-article__wrapper .mod-article__published-date {
  display: none;
}
.article-main .container .row .zone-article .mod-article__wrapper .mod-article__author {
  order: 1;
  text-align: center;
  color: #9695D3;
  margin-bottom: 50px;
}
.article-main .container .row .zone-article .mod-article__wrapper .mod-article__category {
  order: 2;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content {
  order: 3;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__img {
  margin-bottom: 25px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__intro {
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__intro > img {
  order: 1;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__intro p {
  order: 0;
  color: #3F2667;
  text-align: center;
  margin-bottom: 40px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content > img:first-child, .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content > img:first-of-type {
  display: none;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content p:first-of-type img {
  display: none;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content h2 {
  margin-bottom: 45px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content h3 {
  color: #000;
  font-weight: 400;
  margin-bottom: 32px;
  margin-top: 50px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content h4 {
  color: #000;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 30px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-weight: 300;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content .quote, .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content .auteur {
  font-size: 25px;
  line-height: 27px;
  font-weight: 500;
  text-transform: initial;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 64px;
  border-left: 11px solid #E85652;
}
@media (max-width: 767px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content .quote, .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content .auteur {
    font-size: 20px;
    line-height: 22px;
  }
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content p.citation {
  font-size: 25px;
  line-height: 27px;
  color: #3F2667;
  position: relative;
  display: block;
  max-width: 50%;
  font-weight: 500;
  padding-left: 64px;
  border-left: 11px solid #E85652;
}
@media (max-width: 767px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content p.citation {
    max-width: 100%;
  }
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.auteur {
  max-width: 300px;
}
@media (min-width: 768px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.auteur {
    width: 60% !important;
  }
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.auteur tbody tr td:first-child {
  max-width: 70px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.citation {
  position: relative;
  max-width: 75%;
  margin-top: 0px;
}
@media (max-width: 767px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.citation {
    max-width: 350px;
  }
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.citation:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_travailler/red-squigly.svg);
  background-repeat: no-repeat;
  width: 189px;
  height: 5px;
  position: absolute;
  left: 0px;
  top: 0px;
  display: none;
}
@media (max-width: 991px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.citation:before {
    top: 0;
    left: 0px;
  }
}
@media (max-width: 991px) {
  .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.citation tbody tr {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.citation tbody tr td:last-child h4, .article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.citation tbody tr td:last-child p {
  color: #3F2667;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.citation tbody tr td:last-child h4 {
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.citation tbody tr td:last-child p:first-of-type {
  font-weight: 700;
  margin-bottom: 0;
}
.article-main .container .row .zone-article .mod-article__wrapper .news-content .mod-article__content table.citation tbody tr td:last-child p:last-of-type {
  font-weight: 300;
}
.line-article-retour {
  padding-top: 45px;
  padding-bottom: 90px;
}
.line-article-retour .container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.line-article-retour .container .row .zone-html .content a {
  font-family: "canada-type-gibson", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 13px;
  height: 55px !important;
  padding: 15px 25px !important;
  background-color: transparent !important;
  color: #E85652 !important;
  transition: all 300ms ease !important;
  border: 1px solid #E85652 !important;
}
.line-article-retour .container .row .zone-html .content a:hover, .line-article-retour .container .row .zone-html .content a:active, .line-article-retour .container .row .zone-html .content a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-article-retour .container .row .zone-html .content a {
    white-space: normal !important;
  }
}
.line-article-retour .container .row .zone-html .content a:hover, .line-article-retour .container .row .zone-html .content a:active, .line-article-retour .container .row .zone-html .content a:focus {
  text-decoration: none !important;
  background-color: #E85652 !important;
  border: 1px solid #E85652 !important;
  color: #fff !important;
}

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

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

.zone-member {
  margin-top: 32px;
  margin-bottom: 32px;
}
.zone-member .sidebar__member-zone {
  width: 33%;
  /*
  @include max-md {
      width: 100%;
  }

  @include max-sm {
      width: 100%;
  }
  */
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone {
    width: 100%;
  }
}
.zone-member .sidebar__member-zone .member-sidebar__inner {
  background-color: transparent;
  padding: 0px 25px 35px 25px;
  margin-right: 15px;
  border-radius: 3px;
}
@media (max-width: 991px) {
  .zone-member .sidebar__member-zone .member-sidebar__inner {
    padding: 0px;
  }
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone .member-sidebar__inner {
    margin-right: 0;
  }
}
.zone-member .sidebar__member-zone .member-sidebar__member-header {
  padding: 0;
  border: none;
}
.zone-member .sidebar__member-zone .member-sidebar__member-header__title {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #E85652;
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer {
  padding-left: 0;
  padding-right: 0;
  padding-top: 36px;
  padding-bottom: 36px;
  background: transparent;
  border-top: 1px solid #ccc;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a {
  font-family: "canada-type-gibson", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 13px;
  background-color: transparent;
  color: #3F2667;
  transition: all 300ms;
  border: 1px solid #3F2667;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a:hover, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:active, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone .member-sidebar__member-footer a {
    white-space: normal !important;
  }
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a:hover, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:active, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:focus {
  background-color: #3F2667;
  border: 1px solid #3F2667;
  color: #fff;
}
.zone-member .sidebar__member-zone .member-sidebar__menu {
  padding-left: 0;
  padding-right: 0;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li {
  padding: 0;
  margin-bottom: 12px;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #3F2667;
  text-transform: inherit;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a:hover {
  color: #E85652;
  text-decoration: none;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li.active {
  display: inline-block;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li.active a {
  color: #E85652;
}
.zone-member .member {
  width: 66%;
}
@media (max-width: 767px) {
  .zone-member .member {
    width: 100%;
  }
}
.zone-member .member .section {
  margin-bottom: 40px;
}
.zone-member .member .section label.control-label {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #E85652;
  margin-bottom: 5px;
  margin-top: 10px;
}
.zone-member .member h1 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  color: #E85652;
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
}
.zone-member .member h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  color: #E85652;
}
.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;
}
.zone-member .heading-container .heading {
  font-size: 27px;
  line-height: 32px;
  font-weight: 300;
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
  color: #E85652;
}
.zone-member .registration-list .subtitle {
  margin-top: 25px;
}
.zone-member .field-object-temp .object-main-title h2 {
  width: auto;
}
.zone-member .field-object-temp .object-main-title .btn-link {
  margin-left: 30px;
}
.zone-member .field-object-temp .btn-link {
  padding: 0px 30px;
}
.zone-member .field-object-temp .btn-action {
  padding: 15px 25px !important;
  background-color: transparent !important;
  color: #3F2667 !important;
  transition: all 300ms !important;
  border: 1px solid #3F2667 !important;
}
.zone-member .field-object-temp .btn-action:hover, .zone-member .field-object-temp .btn-action:active, .zone-member .field-object-temp .btn-action:focus {
  text-decoration: none !important;
  background-color: #3F2667 !important;
  border: 1px solid #3F2667 !important;
  color: #fff !important;
}

/*Événements en vedette - affichage mosaïque*/
/*###########################  FIL D'ARIANE  ###########################*/
.line-breadcrumbs .zone-breadcrumbs {
  text-align: right;
}
.line-breadcrumbs .zone-breadcrumbs ul li a.pathway {
  text-decoration: none !important;
}
.line-breadcrumbs .zone-breadcrumbs ul li a.pathway:hover, .line-breadcrumbs .zone-breadcrumbs ul li a.pathway:focus, .line-breadcrumbs .zone-breadcrumbs ul li a.pathway:active {
  text-decoration: underline !important;
}
.line-breadcrumbs .zone-breadcrumbs ul li a, .line-breadcrumbs .zone-breadcrumbs ul li span {
  font-size: 13px;
  font-weight: 500;
}
.line-breadcrumbs .zone-breadcrumbs ul li + li:before {
  content: "/";
  color: #E85652;
  font-weight: 500;
  padding: 0 10px;
}
.line-breadcrumbs .zone-breadcrumbs ul li.active {
  color: #3F2667;
}

.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart thead h6.table-cart__heading {
  font-size: 30px;
  line-height: 34px;
  font-weight: 500;
  text-transform: initial;
  color: #E85652;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item h3.cart-item__name {
  font-size: 25px;
  line-height: 27px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item h3.cart-item__name {
    font-size: 20px;
    line-height: 22px;
  }
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item p.cart-item__description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit {
  font-family: "canada-type-gibson", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 13px;
  background-color: transparent;
  color: #E85652;
  padding: 15px 0;
  padding-right: 60px;
  transition: all 300ms;
  border: none;
  border-bottom: 1px solid #E85652;
  border-radius: 0;
  text-transform: none;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:hover, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:active, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit {
    white-space: normal !important;
  }
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/red-caret.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: -60px;
  margin-top: 7px;
  position: relative;
  display: inline-block;
  width: 7px;
  height: 15px;
  animation-name: none;
  transition: all 300ms;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:hover, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:active, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:focus {
  background-color: transparent;
  color: #3F2667;
  border: none;
  border-bottom: 1px solid #3F2667;
  padding-left: 20px;
  padding-right: 40px;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:hover:after, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:active:after, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:focus:after {
  right: -40px;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-edit:hover {
  text-decoration: none !important;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete {
  font-family: "canada-type-gibson", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 13px;
  background-color: transparent;
  color: #E85652;
  padding: 15px 0;
  padding-right: 60px;
  transition: all 300ms;
  border: none;
  border-bottom: 1px solid #E85652;
  border-radius: 0;
  text-transform: none;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:hover, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:active, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete {
    white-space: normal !important;
  }
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/red-caret.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: -60px;
  margin-top: 7px;
  position: relative;
  display: inline-block;
  width: 7px;
  height: 15px;
  animation-name: none;
  transition: all 300ms;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:hover, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:active, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:focus {
  background-color: transparent;
  color: #3F2667;
  border: none;
  border-bottom: 1px solid #3F2667;
  padding-left: 20px;
  padding-right: 40px;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:hover:after, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:active:after, .zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:focus:after {
  right: -40px;
}
.zone-cart .cart-summary__wrapper > .row > div:first-child .cart-wrapper table.table-cart tbody tr.cart-item .cart-item__controls a.item-delete:hover {
  text-decoration: none !important;
}
.zone-cart .cart-confirmation__wrapper .cart-wrapper--confirmation table.table-cart thead h6.table-cart__heading {
  font-size: 30px;
  line-height: 34px;
  font-weight: 500;
  text-transform: initial;
  color: #E85652;
}
.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: #F7F7F7;
  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: #E85652;
  display: block;
}
.zone-community .row .sidebar .jumbotron a {
  display: block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #E85652;
  text-transform: initial;
  padding-top: 17px;
  padding-bottom: 17px;
}
.zone-community .row .sidebar .jumbotron a:first-of-type {
  border-top: 1px solid #E85652;
}
.zone-community .row .sidebar .jumbotron a:first-of-type:hover, .zone-community .row .sidebar .jumbotron a:first-of-type:focus {
  color: #E85652;
  text-decoration: none;
}
.zone-community .row .sidebar .jumbotron a:last-of-type {
  border-top: 1px solid #E85652;
  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: #E85652;
  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: #3F2667;
}
.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: #E85652;
  font-weight: 700;
  display: block;
  margin-left: 25px;
  margin-bottom: 20px;
}
.zone-community .row .sidebar ul {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 25px 0 15px 0;
  margin-left: 25px;
  margin-right: 25px;
  list-style: none;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.zone-community .row .sidebar ul li {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 9px;
}
.zone-community .row .sidebar ul li a:hover, .zone-community .row .sidebar ul li a:focus {
  color: #E85652;
  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: "canada-type-gibson", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 13px;
  padding: 15px 25px !important;
  background-color: transparent !important;
  color: #3F2667 !important;
  transition: all 300ms !important;
  border: 1px solid #3F2667 !important;
  letter-spacing: 0;
}
.zone-community .row .content ul.nav li a:hover, .zone-community .row .content ul.nav li a:active, .zone-community .row .content ul.nav li a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-community .row .content ul.nav li a {
    white-space: normal !important;
  }
}
.zone-community .row .content ul.nav li a:hover, .zone-community .row .content ul.nav li a:active, .zone-community .row .content ul.nav li a:focus {
  text-decoration: none !important;
  background-color: #3F2667 !important;
  border: 1px solid #3F2667 !important;
  color: #fff !important;
}
.zone-community .row .content ul.nav li.active a {
  font-weight: 600;
  color: #E85652 !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: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.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: #E85652;
}
.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: #1C1D1F;
}
.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: #E85652 !important;
  text-transform: inherit;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  padding: 0 10px 0 0 !important;
  margin-right: 5px !important;
}
.forum-item__likes-wrapper button i:before {
  filter: hue-rotate(299deg);
}
.forum-item__likes-wrapper button[data-type=like] i:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-pouce.svg");
  width: 28px;
  height: 27px;
  display: block;
  margin-top: -9px;
  margin-right: 5px;
}
.forum-item__likes-wrapper button[data-type=follow] i:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-etoile.svg");
  width: 27px;
  height: 25px;
  display: block;
  margin-top: -7px;
  margin-right: 5px;
}
.forum-item__likes-wrapper .forum-item__action-count {
  margin: 0 5px 0 -5px;
}

.cookie-consent-modal {
  width: 90% !important;
  max-width: 550px !important;
}
@media (max-width: 767px) {
  .cookie-consent-modal {
    margin-right: 70px !important;
  }
}
.cookie-consent-modal h1, .cookie-consent-modal h2, .cookie-consent-modal h3, .cookie-consent-modal h4, .cookie-consent-modal h5, .cookie-consent-modal h6, .cookie-consent-modal p, .cookie-consent-modal span, .cookie-consent-modal ul, .cookie-consent-modal li, .cookie-consent-modal button {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.cookie-consent-modal p.consent-description {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}
.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-modal .cm-modal .cm-header a {
  color: #3F2667 !important;
}
.cookie-modal .cm-modal .cm-body .cm-services a {
  color: #3F2667 !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline {
  font-family: "canada-type-gibson", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 13px;
  font-weight: 500 !important;
  background-color: transparent !important;
  color: #3F2667 !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline:hover, .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline:active, .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline {
    white-space: normal !important;
  }
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-decline:hover {
  color: #E85652 !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success {
  font-family: "canada-type-gibson", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 13px;
  border: 2px solid #3F2667 !important;
  background-color: #3F2667 !important;
  font-weight: 500 !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success:hover, .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success:active, .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success {
    white-space: normal !important;
  }
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success:hover {
  border: 2px solid #E85652 !important;
  background-color: #E85652 !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success.cm-btn-info {
  border: 2px solid #3F2667 !important;
  background-color: transparent !important;
  color: #3F2667 !important;
}
.cookie-modal .cm-modal .cm-footer .cm-footer-buttons .cm-btn-success.cm-btn-info:hover {
  text-decoration: none !important;
  border: 2px solid #E85652 !important;
  color: #E85652 !important;
}

/* GRID SPACE **********/
/* columns */
/* rows */
/* ITEM **********/
/* img */
.prebuilt-articles-vedette-col3 .newsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px 15px;
}
@media (max-width: 991px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 15px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 80px 15px;
  }
}
.prebuilt-articles-vedette-col3 .newsList .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item .itemImage {
  margin-bottom: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
  margin-bottom: 20px;
  border-radius: 0;
  height: 210px !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
@media (max-width: 1199px) {
  .prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
    height: 180px !important;
  }
}
@media (max-width: 991px) {
  .prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
    height: 160px !important;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 .newsList .row .item .itemImage a img.e-thumbnail {
    height: 210px !important;
  }
}
.prebuilt-articles-vedette-col3 .newsList .row .item h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item a.news-category {
  order: 4;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #E85652;
  color: #9695D3;
  margin-bottom: 0;
  color: #E85652 !important;
  font-weight: 600;
  text-transform: inherit;
  text-decoration: none !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item a.news-category:hover {
  text-decoration: none !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.itemInfos.e-date {
  order: 3;
  margin-bottom: 5px;
  font-weight: 600;
  color: #E85652 !important;
  text-transform: inherit;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.news-keywords {
  margin-bottom: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #E85652;
  color: #9695D3;
  font-weight: 600;
  text-transform: inherit;
}
.prebuilt-articles-vedette-col3 .newsList .row .item div.actions {
  margin-top: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item div.actions a {
  margin-top: 30px;
}
.prebuilt-articles-vedette-col3 a.viewAll {
  font-family: "canada-type-gibson", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 13px;
  background-color: transparent;
  color: #E85652;
  padding: 15px 0;
  padding-right: 60px;
  transition: all 300ms;
  border: none;
  border-bottom: 1px solid #E85652;
  border-radius: 0;
  text-transform: none;
}
.prebuilt-articles-vedette-col3 a.viewAll:hover, .prebuilt-articles-vedette-col3 a.viewAll:active, .prebuilt-articles-vedette-col3 a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-vedette-col3 a.viewAll:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/red-caret.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: -60px;
  margin-top: 7px;
  position: relative;
  display: inline-block;
  width: 7px;
  height: 15px;
  animation-name: none;
  transition: all 300ms;
}
.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: #3F2667;
  border: none;
  border-bottom: 1px solid #3F2667;
  padding-left: 20px;
  padding-right: 40px;
}
.prebuilt-articles-vedette-col3 a.viewAll:hover:after, .prebuilt-articles-vedette-col3 a.viewAll:active:after, .prebuilt-articles-vedette-col3 a.viewAll:focus:after {
  right: -40px;
}

.prebuilt-articles-multiples-col3 {
  padding-top: 130px;
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 {
    padding-top: 60px;
  }
}
.prebuilt-articles-multiples-col3 #newsFilterForm {
  padding-bottom: 50px;
}
.prebuilt-articles-multiples-col3 .news-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px 15px;
}
@media (max-width: 991px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 15px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 80px 15px;
  }
}
.prebuilt-articles-multiples-col3 .news-mosaic .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div {
  display: flex;
  flex-direction: column;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a {
  order: 1;
  margin-bottom: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a img.news-thumbnail {
  margin-bottom: 20px;
  border-radius: 0;
  height: 210px !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
@media (max-width: 1199px) {
  .prebuilt-articles-multiples-col3 .news-mosaic .row > div a img.news-thumbnail {
    height: 180px !important;
  }
}
@media (max-width: 991px) {
  .prebuilt-articles-multiples-col3 .news-mosaic .row > div a img.news-thumbnail {
    height: 160px !important;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 .news-mosaic .row > div a img.news-thumbnail {
    height: 210px !important;
  }
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div h3 {
  order: 2;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a.news-category {
  order: 4;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #E85652;
  color: #9695D3;
  margin-bottom: 0;
  color: #E85652 !important;
  font-weight: 600;
  text-transform: inherit;
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a.news-category:hover {
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div .e-date {
  order: 3;
  margin-bottom: 5px;
  font-weight: 600;
  color: #E85652 !important;
  text-transform: inherit;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div p.news-keywords {
  order: 5;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #E85652;
  color: #9695D3;
  font-weight: 600;
  text-transform: inherit;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro {
  order: 6;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a {
  order: 7;
  font-family: "canada-type-gibson", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 13px;
  height: 55px !important;
  padding: 15px 25px !important;
  background-color: transparent !important;
  color: #E85652 !important;
  transition: all 300ms ease !important;
  border: 1px solid #E85652 !important;
  width: fit-content;
  margin-top: 30px;
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:hover, .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:active, .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a {
    white-space: normal !important;
  }
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:hover, .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:active, .prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:focus {
  text-decoration: none !important;
  background-color: #E85652 !important;
  border: 1px solid #E85652 !important;
  color: #fff !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro + a:hover {
  text-decoration: none !important;
}
> a:not(.prebuilt-articles-multiples-col3:first-child) {
  order: 6;
  font-family: "canada-type-gibson", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 13px;
  background-color: transparent;
  color: #E85652;
  padding: 15px 0;
  padding-right: 60px;
  transition: all 300ms;
  border: none;
  border-bottom: 1px solid #E85652;
  border-radius: 0;
  text-transform: none;
}
> a:not(.prebuilt-articles-multiples-col3:first-child):hover, > a:not(.prebuilt-articles-multiples-col3:first-child):active, > a:not(.prebuilt-articles-multiples-col3:first-child):focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  > a:not(.prebuilt-articles-multiples-col3:first-child) {
    white-space: normal !important;
  }
}
> a:not(.prebuilt-articles-multiples-col3:first-child):after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/red-caret.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: -60px;
  margin-top: 7px;
  position: relative;
  display: inline-block;
  width: 7px;
  height: 15px;
  animation-name: none;
  transition: all 300ms;
}
> a:not(.prebuilt-articles-multiples-col3:first-child):hover, > a:not(.prebuilt-articles-multiples-col3:first-child):active, > a:not(.prebuilt-articles-multiples-col3:first-child):focus {
  background-color: transparent;
  color: #3F2667;
  border: none;
  border-bottom: 1px solid #3F2667;
  padding-left: 20px;
  padding-right: 40px;
}
> a:not(.prebuilt-articles-multiples-col3:first-child):hover:after, > a:not(.prebuilt-articles-multiples-col3:first-child):active:after, > a:not(.prebuilt-articles-multiples-col3:first-child):focus:after {
  right: -40px;
}

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

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

@-webkit-keyframes anime-faire-don {
  0% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes anime-faire-don {
  0% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes anime-faire-don {
  0% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes anime-faire-don {
  0% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/* Menu & Footer social icons svg to css*/
/* https://www.svgbackgrounds.com/tools/svg-to-css/ */
/* Browser support: Legacy (IE9+) */
/* CSS Helpers: Basic background-image */
/** variables **/
/* Exemple couleur svg = %23 + #ffffff*/
/* scss*/
ul.social {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}
ul.social li {
  width: 44px;
  display: flex;
  justify-content: flex-end;
  margin-right: 15px;
}
ul.social li a {
  text-decoration: none !important;
  width: 20px;
}
ul.social li a.email {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='22' viewBox='0 0 34 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='32' height='20' rx='2' stroke='white' stroke-width='2'/%3E%3Cpath d='M3 2L17.79 10L32 2' stroke='%23074a8d' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 58px;
  height: 58px;
  display: block;
}
ul.social li a.email:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='22' viewBox='0 0 34 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='32' height='20' rx='2' stroke='white' stroke-width='2'/%3E%3Cpath d='M3 2L17.79 10L32 2' stroke='%23074a8d' stroke-width='2'/%3E%3C/svg%3E");
}
ul.social li a.bluesky {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 28 28'%3E%3Cdefs%3E%3Cstyle%3E .st0 %7B fill: %23%23188af5%3B %7D %3C/style%3E%3C/defs%3E%3Cg id='jyutC3.tif'%3E%3Cpath class='st0' d='M7.79 6.3c2.51 1.89 5.22 5.73 6.21 7.8v5.44c0-.12-.04.02-.14.3-.52 1.53-2.54 7.49-7.17 2.72-2.44-2.51-1.31-5.02 3.13-5.78-2.54.43-5.39-.28-6.17-3.09-.23-.81-.61-5.78-.61-6.45 0-3.37 2.94-2.31 4.75-.94ZM20.21 6.3c-2.51 1.89-5.22 5.73-6.21 7.8v5.44c0-.12.04.02.14.3.52 1.53 2.54 7.49 7.17 2.72 2.44-2.51 1.31-5.02-3.13-5.78 2.54.43 5.39-.28 6.17-3.09.23-.81.61-5.78.61-6.45 0-3.37-2.94-2.31-4.75-.94h0Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  display: block;
}
ul.social li a.bluesky:hover {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 28 28'%3E%3Cdefs%3E%3Cstyle%3E .st0 %7B fill: %23%23074a8d%3B %7D %3C/style%3E%3C/defs%3E%3Cg id='jyutC3.tif'%3E%3Cpath class='st0' d='M7.79 6.3c2.51 1.89 5.22 5.73 6.21 7.8v5.44c0-.12-.04.02-.14.3-.52 1.53-2.54 7.49-7.17 2.72-2.44-2.51-1.31-5.02 3.13-5.78-2.54.43-5.39-.28-6.17-3.09-.23-.81-.61-5.78-.61-6.45 0-3.37 2.94-2.31 4.75-.94ZM20.21 6.3c-2.51 1.89-5.22 5.73-6.21 7.8v5.44c0-.12.04.02.14.3.52 1.53 2.54 7.49 7.17 2.72 2.44-2.51 1.31-5.02-3.13-5.78 2.54.43 5.39-.28 6.17-3.09.23-.81.61-5.78.61-6.45 0-3.37-2.94-2.31-4.75-.94h0Z'/%3E%3C/g%3E%3C/svg%3E");
}
ul.social li a.instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Group_42168' data-name='Group 42168' transform='translate(0.213)'%3E%3Cg id='Ellipse_18' data-name='Ellipse 18' transform='translate(-0.213)' fill='none' stroke='%23e85652' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3Cpath id='Icon_akar-instagram-fill' data-name='Icon akar-instagram-fill' d='M11.2,1.6c1.759-.081,2.32-.1,6.8-.1s5.043.02,6.8.1a12.143,12.143,0,0,1,4.008.766,8.446,8.446,0,0,1,4.824,4.826A12.135,12.135,0,0,1,34.4,11.2c.081,1.762.1,2.323.1,6.8s-.02,5.043-.1,6.8a12.1,12.1,0,0,1-.768,4,8.424,8.424,0,0,1-4.824,4.826A12.135,12.135,0,0,1,24.8,34.4c-1.761.081-2.322.1-6.8.1s-5.043-.02-6.8-.1a12.1,12.1,0,0,1-4.005-.768,8.1,8.1,0,0,1-2.924-1.9,8.088,8.088,0,0,1-1.9-2.922A12.178,12.178,0,0,1,1.6,24.8c-.081-1.762-.1-2.323-.1-6.8s.02-5.043.1-6.8a12.143,12.143,0,0,1,.766-4.008,8.094,8.094,0,0,1,1.9-2.922,8.088,8.088,0,0,1,2.921-1.9,12.178,12.178,0,0,1,4-.766Zm13.47,2.97c-1.74-.08-2.262-.1-6.667-.1s-4.927.016-6.667.1a9.12,9.12,0,0,0-3.064.569,5.124,5.124,0,0,0-1.9,1.233,5.118,5.118,0,0,0-1.233,1.9,9.12,9.12,0,0,0-.568,3.064c-.08,1.74-.1,2.262-.1,6.667s.016,4.927.1,6.667a9.12,9.12,0,0,0,.569,3.065,5.449,5.449,0,0,0,3.13,3.131,9.12,9.12,0,0,0,3.064.569c1.74.08,2.26.1,6.667.1s4.927-.017,6.667-.1a9.12,9.12,0,0,0,3.065-.569,5.449,5.449,0,0,0,3.131-3.13,9.12,9.12,0,0,0,.569-3.065c.08-1.74.1-2.262.1-6.667s-.017-4.927-.1-6.667a9.12,9.12,0,0,0-.569-3.064,5.124,5.124,0,0,0-1.233-1.9,5.12,5.12,0,0,0-1.9-1.233,9.12,9.12,0,0,0-3.065-.569ZM15.892,23.087A5.505,5.505,0,1,0,12.5,18a5.5,5.5,0,0,0,3.4,5.086ZM12,12A8.481,8.481,0,1,1,12,24,8.481,8.481,0,0,1,12,12Zm16.359-1.221a2.005,2.005,0,1,0-2.794-.041,2.005,2.005,0,0,0,2.794.041Z' transform='translate(12.287 12.5)' fill='%23f7f7f7'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  display: block;
}
ul.social li a.instagram:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Group_42289' data-name='Group 42289' transform='translate(0.213)'%3E%3Cg id='Ellipse_18' data-name='Ellipse 18' transform='translate(-0.213)' fill='%23e85652' stroke='%23e85652' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3Cpath id='Icon_akar-instagram-fill' data-name='Icon akar-instagram-fill' d='M11.2,1.6c1.759-.081,2.32-.1,6.8-.1s5.043.02,6.8.1a12.143,12.143,0,0,1,4.008.766,8.446,8.446,0,0,1,4.824,4.826A12.135,12.135,0,0,1,34.4,11.2c.081,1.762.1,2.323.1,6.8s-.02,5.043-.1,6.8a12.1,12.1,0,0,1-.768,4,8.424,8.424,0,0,1-4.824,4.826A12.135,12.135,0,0,1,24.8,34.4c-1.761.081-2.322.1-6.8.1s-5.043-.02-6.8-.1a12.1,12.1,0,0,1-4.005-.768,8.1,8.1,0,0,1-2.924-1.9,8.088,8.088,0,0,1-1.9-2.922A12.178,12.178,0,0,1,1.6,24.8c-.081-1.762-.1-2.323-.1-6.8s.02-5.043.1-6.8a12.143,12.143,0,0,1,.766-4.008,8.094,8.094,0,0,1,1.9-2.922,8.088,8.088,0,0,1,2.921-1.9,12.178,12.178,0,0,1,4-.766Zm13.47,2.97c-1.74-.08-2.262-.1-6.667-.1s-4.927.016-6.667.1a9.12,9.12,0,0,0-3.064.569,5.124,5.124,0,0,0-1.9,1.233,5.118,5.118,0,0,0-1.233,1.9,9.12,9.12,0,0,0-.568,3.064c-.08,1.74-.1,2.262-.1,6.667s.016,4.927.1,6.667a9.12,9.12,0,0,0,.569,3.065,5.449,5.449,0,0,0,3.13,3.131,9.12,9.12,0,0,0,3.064.569c1.74.08,2.26.1,6.667.1s4.927-.017,6.667-.1a9.12,9.12,0,0,0,3.065-.569,5.449,5.449,0,0,0,3.131-3.13,9.12,9.12,0,0,0,.569-3.065c.08-1.74.1-2.262.1-6.667s-.017-4.927-.1-6.667a9.12,9.12,0,0,0-.569-3.064,5.124,5.124,0,0,0-1.233-1.9,5.12,5.12,0,0,0-1.9-1.233,9.12,9.12,0,0,0-3.065-.569ZM15.892,23.087A5.505,5.505,0,1,0,12.5,18a5.5,5.5,0,0,0,3.4,5.086ZM12,12A8.481,8.481,0,1,1,12,24,8.481,8.481,0,0,1,12,12Zm16.359-1.221a2.005,2.005,0,1,0-2.794-.041,2.005,2.005,0,0,0,2.794.041Z' transform='translate(12.287 12.5)' fill='%23f7f7f7'/%3E%3C/g%3E%3C/svg%3E%0A");
}
ul.social li a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Group_42101' data-name='Group 42101' transform='translate(0.213)'%3E%3Cpath id='Icon_akar-linkedin-fill' data-name='Icon akar-linkedin-fill' d='M13.962,13.283h5.48v2.73c.789-1.57,2.814-2.981,5.855-2.981,5.83,0,7.214,3.125,7.214,8.859v10.62h-5.9V23.2c0-3.265-.789-5.107-2.8-5.107-2.787,0-3.946,1.985-3.946,5.106v9.315h-5.9V13.283ZM3.841,32.261h5.9V13.033h-5.9V32.261Zm6.748-25.5A3.733,3.733,0,0,1,9.478,9.422,3.793,3.793,0,0,1,3,6.763,3.739,3.739,0,0,1,4.111,4.1a3.817,3.817,0,0,1,5.367,0A3.745,3.745,0,0,1,10.589,6.763Z' transform='translate(11.704 11.704)' fill='%23f7f7f7'/%3E%3Cg id='Ellipse_18' data-name='Ellipse 18' transform='translate(-0.213)' fill='none' stroke='%23e85652' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  display: block;
}
ul.social li a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Group_42289' data-name='Group 42289' transform='translate(0.213)'%3E%3Cg id='Ellipse_18' data-name='Ellipse 18' transform='translate(-0.213)' fill='%23e85652' stroke='%23e85652' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3Cpath id='Icon_akar-linkedin-fill' data-name='Icon akar-linkedin-fill' d='M13.962,13.283h5.48v2.73c.789-1.57,2.814-2.981,5.855-2.981,5.83,0,7.214,3.125,7.214,8.859v10.62h-5.9V23.2c0-3.265-.789-5.107-2.8-5.107-2.787,0-3.946,1.985-3.946,5.106v9.315h-5.9V13.283ZM3.841,32.261h5.9V13.033h-5.9V32.261Zm6.748-25.5A3.733,3.733,0,0,1,9.478,9.422,3.793,3.793,0,0,1,3,6.763,3.739,3.739,0,0,1,4.111,4.1a3.817,3.817,0,0,1,5.367,0A3.745,3.745,0,0,1,10.589,6.763Z' transform='translate(11.704 11.704)' fill='%23f7f7f7'/%3E%3C/g%3E%3C/svg%3E%0A");
}
ul.social li a.facebook {
  background-image: url("data:image/svg+xml,%3Csvg id='Group_42287' data-name='Group 42287' xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath id='Icon_corebrands-facebook-f' data-name='Icon corebrands-facebook-f' d='M24.416,18.046l.891-5.806H19.736V8.473c0-1.588.778-3.137,3.273-3.137h2.532V.393A30.894,30.894,0,0,0,21.046,0C16.458,0,13.46,2.782,13.46,7.816v4.425H8.36v5.806h5.1V32.083h6.276V18.047Z' transform='translate(13.125 14.034)' fill='%23f7f7f7'/%3E%3Cg id='Ellipse_17' data-name='Ellipse 17' fill='none' stroke='%23e85652' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  display: block;
  position: relative;
}
ul.social li a.facebook:hover {
  background-image: url("data:image/svg+xml,%3Csvg id='Group_42289' data-name='Group 42289' xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Ellipse_17' data-name='Ellipse 17' fill='%23e85652' stroke='%23e85652' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3Cpath id='Icon_corebrands-facebook-f' data-name='Icon corebrands-facebook-f' d='M24.416,18.046l.891-5.806H19.736V8.473c0-1.588.778-3.137,3.273-3.137h2.532V.393A30.894,30.894,0,0,0,21.046,0C16.458,0,13.46,2.782,13.46,7.816v4.425H8.36v5.806h5.1V32.083h6.276V18.047Z' transform='translate(13.125 14.034)' fill='%23f7f7f7'/%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='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Group_42169' data-name='Group 42169' transform='translate(0.213)'%3E%3Cg id='Ellipse_18' data-name='Ellipse 18' transform='translate(-0.213)' fill='none' stroke='%23e85652' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3Cpath id='Icon_akar-youtube-fill' data-name='Icon akar-youtube-fill' d='M35.25,9.76A4.179,4.179,0,0,0,34.1,7.855a4.575,4.575,0,0,0-2.007-1.113C29.277,6,17.991,6,17.991,6a114.934,114.934,0,0,0-14.085.7A4.74,4.74,0,0,0,1.9,7.845,4.345,4.345,0,0,0,.732,9.759,43.635,43.635,0,0,0,0,18a43.556,43.556,0,0,0,.732,8.241,4.24,4.24,0,0,0,1.163,1.9,4.643,4.643,0,0,0,2.011,1.115C6.76,30,17.991,30,17.991,30a115.2,115.2,0,0,0,14.1-.7A4.575,4.575,0,0,0,34.1,28.182a4.17,4.17,0,0,0,1.147-1.905A42.57,42.57,0,0,0,36,18.035a39.869,39.869,0,0,0-.75-8.276ZM14.4,23.136V12.866L23.793,18,14.4,23.136Z' transform='translate(11.785 12.5)' fill='%23f7f7f7'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  display: block;
  position: relative;
}
ul.social li a.youtube:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Group_42289' data-name='Group 42289' transform='translate(0.213)'%3E%3Cg id='Ellipse_18' data-name='Ellipse 18' transform='translate(-0.213)' fill='%23e85652' stroke='%23e85652' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3Cpath id='Icon_akar-youtube-fill' data-name='Icon akar-youtube-fill' d='M35.25,9.76A4.179,4.179,0,0,0,34.1,7.855a4.575,4.575,0,0,0-2.007-1.113C29.277,6,17.991,6,17.991,6a114.934,114.934,0,0,0-14.085.7A4.74,4.74,0,0,0,1.9,7.845,4.345,4.345,0,0,0,.732,9.759,43.635,43.635,0,0,0,0,18a43.556,43.556,0,0,0,.732,8.241,4.24,4.24,0,0,0,1.163,1.9,4.643,4.643,0,0,0,2.011,1.115C6.76,30,17.991,30,17.991,30a115.2,115.2,0,0,0,14.1-.7A4.575,4.575,0,0,0,34.1,28.182a4.17,4.17,0,0,0,1.147-1.905A42.57,42.57,0,0,0,36,18.035a39.869,39.869,0,0,0-.75-8.276ZM14.4,23.136V12.866L23.793,18,14.4,23.136Z' transform='translate(11.785 12.5)' fill='%23f7f7f7'/%3E%3C/g%3E%3C/svg%3E%0A");
}
ul.social li a.x {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_789_4937' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='28' height='28'%3E%3Cpath d='M28 0H0V28H28V0Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_789_4937)'%3E%3Cpath d='M7.08 6.12904H9.428L20.235 21.268H17.887L7.08 6.12904ZM20.236 5.00104L14.636 11.376L10.16 5.00104H5L11.765 14.642L5 22.342H6.528L12.442 15.608L17.166 22.342H22.325L15.312 12.342L21.764 5.00104H20.236Z' fill='%23188af5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  display: block;
  position: relative;
  top: 2px;
}
ul.social li a.x:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_789_4937' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='28' height='28'%3E%3Cpath d='M28 0H0V28H28V0Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_789_4937)'%3E%3Cpath d='M7.08 6.12904H9.428L20.235 21.268H17.887L7.08 6.12904ZM20.236 5.00104L14.636 11.376L10.16 5.00104H5L11.765 14.642L5 22.342H6.528L12.442 15.608L17.166 22.342H22.325L15.312 12.342L21.764 5.00104H20.236Z' fill='%23074a8d'/%3E%3C/g%3E%3C/svg%3E");
}
ul.social li.clear a.instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Group_42168' data-name='Group 42168' transform='translate(0.213)'%3E%3Cg id='Ellipse_18' data-name='Ellipse 18' transform='translate(-0.213)' fill='none' stroke='%233f2667' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3Cpath id='Icon_akar-instagram-fill' data-name='Icon akar-instagram-fill' d='M11.2,1.6c1.759-.081,2.32-.1,6.8-.1s5.043.02,6.8.1a12.143,12.143,0,0,1,4.008.766,8.446,8.446,0,0,1,4.824,4.826A12.135,12.135,0,0,1,34.4,11.2c.081,1.762.1,2.323.1,6.8s-.02,5.043-.1,6.8a12.1,12.1,0,0,1-.768,4,8.424,8.424,0,0,1-4.824,4.826A12.135,12.135,0,0,1,24.8,34.4c-1.761.081-2.322.1-6.8.1s-5.043-.02-6.8-.1a12.1,12.1,0,0,1-4.005-.768,8.1,8.1,0,0,1-2.924-1.9,8.088,8.088,0,0,1-1.9-2.922A12.178,12.178,0,0,1,1.6,24.8c-.081-1.762-.1-2.323-.1-6.8s.02-5.043.1-6.8a12.143,12.143,0,0,1,.766-4.008,8.094,8.094,0,0,1,1.9-2.922,8.088,8.088,0,0,1,2.921-1.9,12.178,12.178,0,0,1,4-.766Zm13.47,2.97c-1.74-.08-2.262-.1-6.667-.1s-4.927.016-6.667.1a9.12,9.12,0,0,0-3.064.569,5.124,5.124,0,0,0-1.9,1.233,5.118,5.118,0,0,0-1.233,1.9,9.12,9.12,0,0,0-.568,3.064c-.08,1.74-.1,2.262-.1,6.667s.016,4.927.1,6.667a9.12,9.12,0,0,0,.569,3.065,5.449,5.449,0,0,0,3.13,3.131,9.12,9.12,0,0,0,3.064.569c1.74.08,2.26.1,6.667.1s4.927-.017,6.667-.1a9.12,9.12,0,0,0,3.065-.569,5.449,5.449,0,0,0,3.131-3.13,9.12,9.12,0,0,0,.569-3.065c.08-1.74.1-2.262.1-6.667s-.017-4.927-.1-6.667a9.12,9.12,0,0,0-.569-3.064,5.124,5.124,0,0,0-1.233-1.9,5.12,5.12,0,0,0-1.9-1.233,9.12,9.12,0,0,0-3.065-.569ZM15.892,23.087A5.505,5.505,0,1,0,12.5,18a5.5,5.5,0,0,0,3.4,5.086ZM12,12A8.481,8.481,0,1,1,12,24,8.481,8.481,0,0,1,12,12Zm16.359-1.221a2.005,2.005,0,1,0-2.794-.041,2.005,2.005,0,0,0,2.794.041Z' transform='translate(12.287 12.5)' fill='%23f7f7f7'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  display: block;
}
ul.social li.clear a.instagram:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Group_42168' data-name='Group 42168' transform='translate(0.213)'%3E%3Cg id='Ellipse_18' data-name='Ellipse 18' transform='translate(-0.213)' fill='%233f2667' stroke='%233f2667' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3Cpath id='Icon_akar-instagram-fill' data-name='Icon akar-instagram-fill' d='M11.2,1.6c1.759-.081,2.32-.1,6.8-.1s5.043.02,6.8.1a12.143,12.143,0,0,1,4.008.766,8.446,8.446,0,0,1,4.824,4.826A12.135,12.135,0,0,1,34.4,11.2c.081,1.762.1,2.323.1,6.8s-.02,5.043-.1,6.8a12.1,12.1,0,0,1-.768,4,8.424,8.424,0,0,1-4.824,4.826A12.135,12.135,0,0,1,24.8,34.4c-1.761.081-2.322.1-6.8.1s-5.043-.02-6.8-.1a12.1,12.1,0,0,1-4.005-.768,8.1,8.1,0,0,1-2.924-1.9,8.088,8.088,0,0,1-1.9-2.922A12.178,12.178,0,0,1,1.6,24.8c-.081-1.762-.1-2.323-.1-6.8s.02-5.043.1-6.8a12.143,12.143,0,0,1,.766-4.008,8.094,8.094,0,0,1,1.9-2.922,8.088,8.088,0,0,1,2.921-1.9,12.178,12.178,0,0,1,4-.766Zm13.47,2.97c-1.74-.08-2.262-.1-6.667-.1s-4.927.016-6.667.1a9.12,9.12,0,0,0-3.064.569,5.124,5.124,0,0,0-1.9,1.233,5.118,5.118,0,0,0-1.233,1.9,9.12,9.12,0,0,0-.568,3.064c-.08,1.74-.1,2.262-.1,6.667s.016,4.927.1,6.667a9.12,9.12,0,0,0,.569,3.065,5.449,5.449,0,0,0,3.13,3.131,9.12,9.12,0,0,0,3.064.569c1.74.08,2.26.1,6.667.1s4.927-.017,6.667-.1a9.12,9.12,0,0,0,3.065-.569,5.449,5.449,0,0,0,3.131-3.13,9.12,9.12,0,0,0,.569-3.065c.08-1.74.1-2.262.1-6.667s-.017-4.927-.1-6.667a9.12,9.12,0,0,0-.569-3.064,5.124,5.124,0,0,0-1.233-1.9,5.12,5.12,0,0,0-1.9-1.233,9.12,9.12,0,0,0-3.065-.569ZM15.892,23.087A5.505,5.505,0,1,0,12.5,18a5.5,5.5,0,0,0,3.4,5.086ZM12,12A8.481,8.481,0,1,1,12,24,8.481,8.481,0,0,1,12,12Zm16.359-1.221a2.005,2.005,0,1,0-2.794-.041,2.005,2.005,0,0,0,2.794.041Z' transform='translate(12.287 12.5)' fill='%23f7f7f7'/%3E%3C/g%3E%3C/svg%3E%0A");
}
ul.social li.clear a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Group_42101' data-name='Group 42101' transform='translate(0.213)'%3E%3Cpath id='Icon_akar-linkedin-fill' data-name='Icon akar-linkedin-fill' d='M13.962,13.283h5.48v2.73c.789-1.57,2.814-2.981,5.855-2.981,5.83,0,7.214,3.125,7.214,8.859v10.62h-5.9V23.2c0-3.265-.789-5.107-2.8-5.107-2.787,0-3.946,1.985-3.946,5.106v9.315h-5.9V13.283ZM3.841,32.261h5.9V13.033h-5.9V32.261Zm6.748-25.5A3.733,3.733,0,0,1,9.478,9.422,3.793,3.793,0,0,1,3,6.763,3.739,3.739,0,0,1,4.111,4.1a3.817,3.817,0,0,1,5.367,0A3.745,3.745,0,0,1,10.589,6.763Z' transform='translate(11.704 11.704)' fill='%23f7f7f7'/%3E%3Cg id='Ellipse_18' data-name='Ellipse 18' transform='translate(-0.213)' fill='none' stroke='%233f2667' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  display: block;
}
ul.social li.clear a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Group_42101' data-name='Group 42101' transform='translate(0.213)'%3E%3Cg id='Ellipse_18' data-name='Ellipse 18' transform='translate(-0.213)' fill='%233f2667' stroke='%233f2667' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3Cpath id='Icon_akar-linkedin-fill' data-name='Icon akar-linkedin-fill' d='M13.962,13.283h5.48v2.73c.789-1.57,2.814-2.981,5.855-2.981,5.83,0,7.214,3.125,7.214,8.859v10.62h-5.9V23.2c0-3.265-.789-5.107-2.8-5.107-2.787,0-3.946,1.985-3.946,5.106v9.315h-5.9V13.283ZM3.841,32.261h5.9V13.033h-5.9V32.261Zm6.748-25.5A3.733,3.733,0,0,1,9.478,9.422,3.793,3.793,0,0,1,3,6.763,3.739,3.739,0,0,1,4.111,4.1a3.817,3.817,0,0,1,5.367,0A3.745,3.745,0,0,1,10.589,6.763Z' transform='translate(11.704 11.704)' fill='%23f7f7f7'/%3E%3C/g%3E%3C/svg%3E%0A");
}
ul.social li.clear a.facebook {
  background-image: url("data:image/svg+xml,%3Csvg id='Group_42100' data-name='Group 42100' xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath id='Icon_corebrands-facebook-f' data-name='Icon corebrands-facebook-f' d='M24.416,18.046l.891-5.806H19.736V8.473c0-1.588.778-3.137,3.273-3.137h2.532V.393A30.894,30.894,0,0,0,21.046,0C16.458,0,13.46,2.782,13.46,7.816v4.425H8.36v5.806h5.1V32.083h6.276V18.047Z' transform='translate(13.125 14.035)' fill='%23f7f7f7'/%3E%3Cg id='Ellipse_17' data-name='Ellipse 17' fill='none' stroke='%233f2667' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  display: block;
  position: relative;
}
ul.social li.clear a.facebook:hover {
  background-image: url("data:image/svg+xml,%3Csvg id='Group_42100' data-name='Group 42100' xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Ellipse_17' data-name='Ellipse 17' fill='%233f2667' stroke='%233f2667' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3Cpath id='Icon_corebrands-facebook-f' data-name='Icon corebrands-facebook-f' d='M24.416,18.046l.891-5.806H19.736V8.473c0-1.588.778-3.137,3.273-3.137h2.532V.393A30.894,30.894,0,0,0,21.046,0C16.458,0,13.46,2.782,13.46,7.816v4.425H8.36v5.806h5.1V32.083h6.276V18.047Z' transform='translate(13.125 14.035)' fill='%23f7f7f7'/%3E%3C/svg%3E%0A");
}
ul.social li.clear a.youtube {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Group_42169' data-name='Group 42169' transform='translate(0.213)'%3E%3Cg id='Ellipse_18' data-name='Ellipse 18' transform='translate(-0.213)' fill='none' stroke='%233f2667' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3Cpath id='Icon_akar-youtube-fill' data-name='Icon akar-youtube-fill' d='M35.25,9.76A4.179,4.179,0,0,0,34.1,7.855a4.575,4.575,0,0,0-2.007-1.113C29.277,6,17.991,6,17.991,6a114.934,114.934,0,0,0-14.085.7A4.74,4.74,0,0,0,1.9,7.845,4.345,4.345,0,0,0,.732,9.759,43.635,43.635,0,0,0,0,18a43.556,43.556,0,0,0,.732,8.241,4.24,4.24,0,0,0,1.163,1.9,4.643,4.643,0,0,0,2.011,1.115C6.76,30,17.991,30,17.991,30a115.2,115.2,0,0,0,14.1-.7A4.575,4.575,0,0,0,34.1,28.182a4.17,4.17,0,0,0,1.147-1.905A42.57,42.57,0,0,0,36,18.035a39.869,39.869,0,0,0-.75-8.276ZM14.4,23.136V12.866L23.793,18,14.4,23.136Z' transform='translate(11.785 12.5)' fill='%23f7f7f7'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  display: block;
  position: relative;
}
ul.social li.clear a.youtube:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg id='Group_42169' data-name='Group 42169' transform='translate(0.213)'%3E%3Cg id='Ellipse_18' data-name='Ellipse 18' transform='translate(-0.213)' fill='%233f2667' stroke='%233f2667' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='30' stroke='none'/%3E%3Ccircle cx='30' cy='30' r='29.5' fill='none'/%3E%3C/g%3E%3Cpath id='Icon_akar-youtube-fill' data-name='Icon akar-youtube-fill' d='M35.25,9.76A4.179,4.179,0,0,0,34.1,7.855a4.575,4.575,0,0,0-2.007-1.113C29.277,6,17.991,6,17.991,6a114.934,114.934,0,0,0-14.085.7A4.74,4.74,0,0,0,1.9,7.845,4.345,4.345,0,0,0,.732,9.759,43.635,43.635,0,0,0,0,18a43.556,43.556,0,0,0,.732,8.241,4.24,4.24,0,0,0,1.163,1.9,4.643,4.643,0,0,0,2.011,1.115C6.76,30,17.991,30,17.991,30a115.2,115.2,0,0,0,14.1-.7A4.575,4.575,0,0,0,34.1,28.182a4.17,4.17,0,0,0,1.147-1.905A42.57,42.57,0,0,0,36,18.035a39.869,39.869,0,0,0-.75-8.276ZM14.4,23.136V12.866L23.793,18,14.4,23.136Z' transform='translate(11.785 12.5)' fill='%23f7f7f7'/%3E%3C/g%3E%3C/svg%3E%0A");
}

@media (max-width: 991px) {
  .line-404 {
    padding: 130px 0 10px 0 !important;
  }
}
.line-404 .row > div:first-child .content {
  text-align: center;
}
.line-404 .row > div:first-child .content h1 {
  color: #E85652;
  font-size: 30px;
}
.line-404 .row > div:first-child .content h1 strong {
  display: block;
  font-size: 200px;
  line-height: 160px;
}
@media (max-width: 991px) {
  .line-404 .row > div:first-child .content h1 strong {
    font-size: 160px;
    line-height: 120px;
  }
}
@media (max-width: 575px) {
  .line-404 .row > div:first-child .content h1 strong {
    font-size: 120px;
    line-height: 100px;
  }
}
@media (max-width: 767px) {
  .line-404 .row > div:last-child .content {
    margin-top: 60px;
    text-align: center;
  }
}
.line-404 .row > div:last-child .content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.line-title-link-all {
  padding-top: 108px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .line-title-link-all {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .line-title-link-all .container > .row > div:nth-child(1) {
    margin-bottom: 20px;
  }
}
.line-title-link-all .container > .row > div:nth-child(1) .content h2 {
  color: #3F2667 !important;
  font-size: 25px;
  line-height: 27px;
  font-weight: 500;
  text-transform: initial;
  /*
  padding: 8px 14px 6px 10px;
  background-color: $third;
  border-radius: 5px;
  */
  max-width: fit-content;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .line-title-link-all .container > .row > div:nth-child(1) .content h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
.line-title-link-all .container > .row > div:nth-child(2) .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-title-link-all .container > .row > div:nth-child(2) .content {
    text-align: left;
  }
}
.line-title-link-all .container > .row > div:nth-child(2) .content .btn {
  margin-top: 0px;
}

.line-videos {
  padding-top: 180px;
}
@media (max-width: 767px) {
  .line-videos {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .line-videos .container > .row > div .newsList {
    gap: 30px 12px;
  }
}
.line-videos .container > .row > div .newsList > .row .item .intro div:last-child {
  display: none;
}
.line-videos .container > .row > div .newsList > .row .item .intro > p:first-of-type {
  position: relative;
  border-radius: 16px;
  max-width: 304px;
}
.line-videos .container > .row > div .newsList > .row .item .intro > p:first-of-type:before {
  content: "";
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_videos/play-button.svg);
  background-repeat: no-repeat;
  width: 73px;
  height: 73px;
  z-index: 3;
  position: absolute;
  bottom: 30px;
  right: 30px;
  transition: transform 0.3s ease;
}
@media (max-width: 991px) {
  .line-videos .container > .row > div .newsList > .row .item .intro > p:first-of-type:before {
    background-size: contain;
    width: 50px;
    height: 50px;
    bottom: 10px;
    right: 10px;
  }
}
.line-videos .container > .row > div .newsList > .row .item .intro > p:first-of-type:after {
  background: transparent;
  transition: all 0.5s smooth;
}
.line-videos .container > .row > div .newsList > .row .item .intro > p:first-of-type img {
  cursor: pointer;
  display: block;
  border-radius: 16px;
}
.line-videos .container > .row > div .newsList > .row .item .intro > p:first-of-type img:hover {
  cursor: pointer;
  transform: translate(0.9);
  color: #3F2667;
}
.line-videos .container > .row > div .newsList > .row .item .intro > p:first-of-type:hover {
  cursor: pointer;
}
.line-videos .container > .row > div .newsList > .row .item .intro > p:first-of-type:hover:before {
  transform: scale(1.2);
}
.line-videos .container > .row > div .newsList > .row .item .intro > p:first-of-type:hover:after {
  display: block;
  content: "";
  border-radius: 16px;
  width: 100%;
  height: 100%;
  background: rgba(63, 38, 103, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
.line-videos .container > .row > div .newsList > .row .item .intro .person-info p {
  color: #3F2667;
}
.line-videos .container > .row > div .newsList > .row .item .intro .person-info p:last-of-type {
  color: #E85652;
}
.line-videos .container > .row > div .newsList > .row .item .intro {
  display: flex;
  flex-direction: column;
}
.line-videos .container > .row > div .newsList > .row .item .intro p {
  margin-bottom: 5px;
}
.line-videos .container > .row > div .newsList > .row .item .intro p:first-of-type {
  order: 1;
}
.line-videos .container > .row > div .newsList > .row .item .intro .person-info {
  order: 2;
}
@media (max-width: 767px) {
  .line-videos .container > .row > div .newsList > .row .item .intro .person-info {
    order: 0;
  }
}
.line-videos .container > .row > div .newsList > .row .item .intro h4 {
  order: 0;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .line-videos .container > .row > div .newsList > .row .item .intro h4 {
    order: 2;
  }
}
.line-videos.home {
  padding-top: 0;
}
.line-videos.home .container > .row > div .newsList > .row:nth-child(4n+1) .item .intro, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+2) .item .intro {
  display: flex;
  flex-direction: column;
}
.line-videos.home .container > .row > div .newsList > .row:nth-child(4n+1) .item .intro p:first-of-type, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+2) .item .intro p:first-of-type {
  order: 1;
}
.line-videos.home .container > .row > div .newsList > .row:nth-child(4n+1) .item .intro .person-info, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+2) .item .intro .person-info {
  order: 2;
}
@media (max-width: 767px) {
  .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+1) .item .intro .person-info, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+2) .item .intro .person-info {
    order: 0;
  }
}
.line-videos.home .container > .row > div .newsList > .row:nth-child(4n+1) .item .intro h4, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+2) .item .intro h4 {
  order: 0;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+1) .item .intro h4, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+2) .item .intro h4 {
    order: 2;
  }
}
.line-videos.home .container > .row > div .newsList > .row:nth-child(4n+3) .item, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+4) .item {
  margin-top: -180px;
}
@media (max-width: 767px) {
  .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+3) .item, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+4) .item {
    margin-top: 0;
  }
}
.line-videos.home .container > .row > div .newsList > .row:nth-child(4n+3) .item .intro, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+4) .item .intro {
  display: flex;
  flex-direction: column;
}
.line-videos.home .container > .row > div .newsList > .row:nth-child(4n+3) .item .intro p:first-of-type, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+4) .item .intro p:first-of-type {
  order: 1;
}
.line-videos.home .container > .row > div .newsList > .row:nth-child(4n+3) .item .intro h4, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+4) .item .intro h4 {
  order: 2;
}
@media (max-width: 767px) {
  .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+3) .item .intro h4, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+4) .item .intro h4 {
    order: 0;
  }
}
.line-videos.home .container > .row > div .newsList > .row:nth-child(4n+3) .item .intro .person-info, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+4) .item .intro .person-info {
  order: 0;
}
@media (max-width: 767px) {
  .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+3) .item .intro .person-info, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+4) .item .intro .person-info {
    order: 2;
  }
}
.line-videos.home .container > .row > div .newsList > .row:nth-child(4n+3) .item .intro .iframe, .line-videos.home .container > .row > div .newsList > .row:nth-child(4n+4) .item .intro .iframe {
  order: 3;
}
.line-videos.home .container > .row > div .newsList > .row .item .intro > p {
  max-width: 304px;
}
.line-videos.home .container > .row > div .newsList > .row .item .intro div.person-info {
  display: none;
}

.line-videos-cta {
  padding-bottom: 250px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .line-videos-cta {
    padding-bottom: 145px;
  }
}

.line-blogue {
  padding-top: 100px;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .line-blogue {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .line-blogue .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.line-blogue .container > .row > div #news_content > .row > div .news-thumbnail, .line-blogue .container > .row > div .news-mosaic > .row > div .news-thumbnail {
  margin-bottom: 40px;
}
.line-blogue .container > .row > div #news_content > .row > div .news-title, .line-blogue .container > .row > div .news-mosaic > .row > div .news-title {
  font-size: 25px;
  line-height: 27px;
  font-weight: 500;
  text-transform: initial;
  max-width: 75%;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .line-blogue .container > .row > div #news_content > .row > div .news-title, .line-blogue .container > .row > div .news-mosaic > .row > div .news-title {
    font-size: 20px;
    line-height: 22px;
  }
}
.line-blogue .container > .row > div #news_content > .row > div .news-title > a:hover, .line-blogue .container > .row > div .news-mosaic > .row > div .news-title > a:hover {
  text-decoration: none;
  color: #E85652;
}
.line-blogue .container > .row > div #news_content > .row > div .news-intro, .line-blogue .container > .row > div .news-mosaic > .row > div .news-intro {
  margin-bottom: 20px;
}
.line-blogue .container > .row > div #news_content > .row > div .news-intro > img, .line-blogue .container > .row > div .news-mosaic > .row > div .news-intro > img {
  display: none;
}
.line-blogue .container > .row > div #news_content > .row > div .news-intro p, .line-blogue .container > .row > div .news-mosaic > .row > div .news-intro p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-weight: 400;
}
.line-blogue .container > .row > div #news_content > .row > div > a:not(.news-category):last-of-type, .line-blogue .container > .row > div .news-mosaic > .row > div > a:not(.news-category):last-of-type {
  background-color: transparent;
  color: #E85652;
  padding: 15px 0;
  padding-right: 60px;
  transition: all 300ms;
  border: none;
  border-bottom: 1px solid #E85652;
  border-radius: 0;
  text-transform: none;
}
.line-blogue .container > .row > div #news_content > .row > div > a:not(.news-category):last-of-type:after, .line-blogue .container > .row > div .news-mosaic > .row > div > a:not(.news-category):last-of-type:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/red-caret.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: -60px;
  margin-top: 7px;
  position: relative;
  display: inline-block;
  width: 7px;
  height: 15px;
  animation-name: none;
  transition: all 300ms;
}
.line-blogue .container > .row > div #news_content > .row > div > a:not(.news-category):last-of-type:hover, .line-blogue .container > .row > div #news_content > .row > div > a:not(.news-category):last-of-type:active, .line-blogue .container > .row > div #news_content > .row > div > a:not(.news-category):last-of-type:focus, .line-blogue .container > .row > div .news-mosaic > .row > div > a:not(.news-category):last-of-type:hover, .line-blogue .container > .row > div .news-mosaic > .row > div > a:not(.news-category):last-of-type:active, .line-blogue .container > .row > div .news-mosaic > .row > div > a:not(.news-category):last-of-type:focus {
  background-color: transparent;
  color: #3F2667;
  border: none;
  border-bottom: 1px solid #3F2667;
  padding-left: 20px;
  padding-right: 40px;
}
.line-blogue .container > .row > div #news_content > .row > div > a:not(.news-category):last-of-type:hover:after, .line-blogue .container > .row > div #news_content > .row > div > a:not(.news-category):last-of-type:active:after, .line-blogue .container > .row > div #news_content > .row > div > a:not(.news-category):last-of-type:focus:after, .line-blogue .container > .row > div .news-mosaic > .row > div > a:not(.news-category):last-of-type:hover:after, .line-blogue .container > .row > div .news-mosaic > .row > div > a:not(.news-category):last-of-type:active:after, .line-blogue .container > .row > div .news-mosaic > .row > div > a:not(.news-category):last-of-type:focus:after {
  right: -40px;
}

@media (max-width: 767px) {
  .img-banner .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.img-banner .container > .row > div .content .img-container {
  text-align: center;
  background: #3F2667;
  overflow: hidden;
  position: relative;
  max-height: 500px;
}
.img-banner .container > .row > div .content .img-container .mod-article__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.line-infolettre-title {
  padding-top: 160px;
  padding-bottom: 140px;
}
@media (max-width: 767px) {
  .line-infolettre-title {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.line-infolettre-title .content h1 {
  margin-bottom: 45px;
}
.line-infolettre-title .content h1 span {
  color: #E85652;
}
.line-infolettre-title .content h4 {
  color: #1C1D1F;
}

.line-form {
  padding-bottom: 95px;
}
.line-form #formbuilder-add-wrapper > div h2 {
  margin-bottom: 45px;
}
.line-form #formbuilder-add-wrapper .form-horizontal {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .line-form #formbuilder-add-wrapper .form-horizontal {
    max-width: 33%;
  }
}
@media (max-width: 991px) {
  .line-form #formbuilder-add-wrapper .form-horizontal {
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  .line-form #formbuilder-add-wrapper .form-horizontal {
    max-width: 90%;
  }
}

.line-video-modal .modal .modal-dialog {
  max-width: 90vw;
  width: fit-content;
  margin: auto;
}
.line-video-modal .modal .modal-dialog .modal-content {
  width: 90vw;
  max-width: 1280px;
  aspect-ratio: 16/9; /* ← replaces the broken 1/1 */
  max-height: 90vh;
  background-color: #1C1D1F;
  border: 0;
  margin-left: auto;
  margin-right: auto;
}
.line-video-modal .modal .modal-dialog .modal-content .modal-body {
  padding: 0;
  max-height: 100%;
  height: 100%;
}
.line-video-modal .modal .modal-dialog .modal-content .modal-body > div.iframe {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 !important; /* kill the 177.78% padding hack */
}
.line-video-modal .modal .modal-dialog .modal-content .modal-body > div.iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.line-video-modal-vertical .modal .modal-dialog {
  max-width: 90vw;
  width: fit-content;
  margin: 9.75rem auto 1.75rem auto;
}
.line-video-modal-vertical .modal .modal-dialog .modal-content {
  width: auto;
  border: 0;
  background-color: #000;
  aspect-ratio: 4/5;
  max-height: 80vh;
  height: 80vh;
  margin-left: auto;
  margin-right: auto;
}
.line-video-modal-vertical .modal .modal-dialog .modal-content .modal-header {
  padding: 0;
  border: 0;
}
.line-video-modal-vertical .modal .modal-dialog .modal-content .modal-body {
  padding: 0;
  flex: 1;
  min-height: 0;
  position: relative;
}
.line-video-modal-vertical .modal .modal-dialog .modal-content .modal-body > div.iframe {
  padding: 0 !important;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.line-video-modal-vertical .modal .modal-dialog .modal-content .modal-body > div.iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  .home .line-header:not(.sticked) #logo {
    /*display: none;*/
  }
}

.home-banner {
  padding-bottom: 360px;
}
.home-banner .container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .home-banner .container {
    width: calc(100vw - 80px);
  }
}
@media (max-width: 767px) {
  .home-banner .container {
    padding-right: 20px;
  }
}
.home-banner .container:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/home-purple-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 40vw;
  height: 107vh;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .home-banner .container:before {
    width: 85vw;
    height: 95vh;
  }
}
.home-banner .container > .row > div {
  padding-top: 60px;
  padding-left: 80px;
}
@media (max-width: 991px) {
  .home-banner .container > .row > div {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .home-banner .container > .row > div {
    padding-left: 5px;
    padding-right: 0;
  }
}
.home-banner .container > .row > div .content {
  background: linear-gradient(to top, rgba(206, 48, 67, 0.9), rgba(232, 86, 82, 0.9));
  padding: 110px 13% 148px 15%;
  position: relative;
}
@media (max-width: 1199px) {
  .home-banner .container > .row > div .content {
    padding-right: 5%;
  }
}
@media (max-width: 767px) {
  .home-banner .container > .row > div .content {
    padding: 40px 24px 40px 15px;
  }
}
.home-banner .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/stars.svg);
  background-repeat: no-repeat;
  width: 238px;
  height: 195px;
  position: absolute;
  bottom: -70px;
  right: -40px;
}
@media (max-width: 767px) {
  .home-banner .container > .row > div .content:after {
    width: 182px;
    height: 157px;
    right: 0px;
    bottom: -110px;
  }
}
.home-banner .container > .row > div .content > h3 {
  text-align: right;
  color: #3F2667;
  display: block;
  max-width: fit-content;
  padding: 10px 15px 14px;
  background: #F7F7F7;
  border-radius: 50px;
  margin-bottom: 30px;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 991px) {
  .home-banner .container > .row > div .content > h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .home-banner .container > .row > div .content > h3 {
    text-align: center;
    margin-right: auto;
    padding: 2px 20px;
    margin-bottom: 40px;
  }
}
.home-banner .container > .row > div .content h1:first-of-type {
  font-size: 35px;
  line-height: 39px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  display: inline-block;
  position: relative;
}
@media (max-width: 991px) {
  .home-banner .container > .row > div .content h1:first-of-type {
    font-size: 25px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .home-banner .container > .row > div .content h1:first-of-type {
    font-size: 22px;
  }
}
.home-banner .container > .row > div .content h1:first-of-type:after {
  content: "";
  background: #ffffff;
  height: 2px;
  width: 58%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .home-banner .container > .row > div .content h1:first-of-type:after {
    width: 130px;
    right: 0px;
    height: 1px;
  }
}
.home-banner .container > .row > div .content h1.textured {
  font-size: clamp(50px, 13.8vw, 200px);
  text-transform: uppercase;
  font-weight: bold;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_home/texture-Partout.jpg");
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text; /* For Safari */
  color: transparent;
  display: inline-block;
  padding-top: 30px;
  padding-bottom: 60px;
}
@media (min-width: 1550px) {
  .home-banner .container > .row > div .content h1.textured {
    font-size: 230px;
  }
}
@media (max-width: 1350px) {
  .home-banner .container > .row > div .content h1.textured {
    font-size: 150px;
  }
}
@media (max-width: 1130px) {
  .home-banner .container > .row > div .content h1.textured {
    font-size: 130px;
  }
}
@media (max-width: 991px) {
  .home-banner .container > .row > div .content h1.textured {
    font-size: 95px;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .home-banner .container > .row > div .content h1.textured {
    font-size: 72px;
    padding-bottom: 110px;
    padding-top: 20px;
  }
}
@media (max-width: 575px) {
  .home-banner .container > .row > div .content h1.textured {
    font-size: 68px;
  }
}
.home-banner .container > .row > div .content .home-banner-bottom {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .home-banner .container > .row > div .content .home-banner-bottom {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .home-banner .container > .row > div .content .home-banner-bottom {
    align-items: flex-start;
  }
}
.home-banner .container > .row > div .content .home-banner-bottom p.play {
  width: 0;
  opacity: 1 !important;
  transition: all 1s ease-in-out;
}
.home-banner .container > .row > div .content .home-banner-bottom p.play #play-hover {
  position: absolute;
  left: -205px;
  top: -100px;
  display: none;
  transition: all 1s ease-in-out;
}
@media (max-width: 1199px) {
  .home-banner .container > .row > div .content .home-banner-bottom p.play #play-hover {
    left: -180px;
  }
}
@media (max-width: 991px) {
  .home-banner .container > .row > div .content .home-banner-bottom p.play #play-hover {
    left: -125px;
  }
}
@media (max-width: 767px) {
  .home-banner .container > .row > div .content .home-banner-bottom p.play #play-hover {
    left: 0;
    top: -43px;
    max-width: 142px;
  }
}
.home-banner .container > .row > div .content .home-banner-bottom p.play #play {
  position: absolute;
  left: -205px;
  top: -100px;
  cursor: pointer;
  transition: all 1s ease-in-out;
}
@media (max-width: 1199px) {
  .home-banner .container > .row > div .content .home-banner-bottom p.play #play {
    left: -180px;
  }
}
@media (max-width: 991px) {
  .home-banner .container > .row > div .content .home-banner-bottom p.play #play {
    left: -125px;
  }
}
@media (max-width: 767px) {
  .home-banner .container > .row > div .content .home-banner-bottom p.play #play {
    left: 0;
    top: -43px;
    max-width: 142px;
  }
}
.home-banner .container > .row > div .content .home-banner-bottom p.play #play:hover {
  display: none;
}
.home-banner .container > .row > div .content .home-banner-bottom p.play:hover #play-hover {
  display: block;
  cursor: pointer;
  transition: all 1s ease-in-out;
}
.home-banner .container > .row > div .content .home-banner-bottom p.play:hover #play {
  display: none;
  transition: all 1s ease-in-out;
}
@media (max-width: 991px) {
  .home-banner .container > .row > div .content .home-banner-bottom p.play img {
    width: 200px !important;
  }
}
.home-banner .container > .row > div .content .home-banner-bottom p.jouer {
  padding-left: 100px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 0;
  position: relative;
}
@media (max-width: 1199px) {
  .home-banner .container > .row > div .content .home-banner-bottom p.jouer {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .home-banner .container > .row > div .content .home-banner-bottom p.jouer {
    padding-left: 160px;
    margin-bottom: 100px;
  }
}
.home-banner .container > .row > div .content .home-banner-bottom p.jouer:after {
  content: "";
  width: 35%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 230px;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .home-banner .container > .row > div .content .home-banner-bottom p.jouer:after {
    left: 260px;
    width: 50px;
  }
}
.home-banner .container > .row > div .content .home-banner-bottom p.jouer:hover {
  color: #9695D3;
}
.home-banner .container > .row > div .content .home-banner-bottom .home-banner-btns p {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .home-banner .container > .row > div .content .home-banner-bottom .home-banner-btns p {
    flex-direction: column;
    align-items: flex-start;
  }
}
.home-banner .container > .row > div .content .iframe {
  display: none;
}

.home-banner-2 {
  padding-bottom: 0;
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_home/header-premiere-ligne-de-defense.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .home-banner-2 {
    padding-bottom: 40px;
  }
}
.home-banner-2 .container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .home-banner-2 .container {
    width: calc(100vw - 80px);
  }
}
@media (max-width: 767px) {
  .home-banner-2 .container {
    padding-right: 20px;
  }
}
.home-banner-2 .container > .row > div {
  padding-top: 60px;
  padding-left: 80px;
}
@media (max-width: 991px) {
  .home-banner-2 .container > .row > div {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .home-banner-2 .container > .row > div {
    padding-left: 5px;
    padding-right: 0;
  }
}
.home-banner-2 .container > .row > div .content {
  padding: 110px 13% 148px 0;
  position: relative;
}
@media (max-width: 1199px) {
  .home-banner-2 .container > .row > div .content {
    padding-right: 5%;
  }
}
@media (max-width: 991px) {
  .home-banner-2 .container > .row > div .content {
    padding: 50px 0 100px 0;
  }
}
@media (max-width: 767px) {
  .home-banner-2 .container > .row > div .content {
    padding: 40px 24px 40px 0;
  }
}
.home-banner-2 .container > .row > div .content:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/stars.svg);
  background-repeat: no-repeat;
  width: 238px;
  height: 195px;
  position: absolute;
  bottom: -70px;
  left: 45px;
}
@media (max-width: 767px) {
  .home-banner-2 .container > .row > div .content:before {
    width: 182px;
    height: 157px;
    right: 0px;
    bottom: -110px;
  }
}
.home-banner-2 .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/stars.svg);
  background-repeat: no-repeat;
  width: 238px;
  height: 195px;
  position: absolute;
  bottom: -70px;
  right: -40px;
}
@media (max-width: 767px) {
  .home-banner-2 .container > .row > div .content:after {
    width: 182px;
    height: 157px;
    right: 0px;
    bottom: -110px;
  }
}
.home-banner-2 .container > .row > div .content > h3 {
  text-align: left;
  color: #fff;
  display: block;
  max-width: fit-content;
  padding: 13px 35px 11px;
  background: #E85652;
  font-size: 24px;
  font-weight: 400;
  border-radius: 50px;
  margin-bottom: 42px;
  margin-right: auto;
  margin-left: 0;
}
@media (max-width: 991px) {
  .home-banner-2 .container > .row > div .content > h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .home-banner-2 .container > .row > div .content > h3 {
    text-align: left;
    margin-right: auto;
    padding: 0px 20px 4px;
    margin-bottom: 40px;
  }
}
.home-banner-2 .container > .row > div .content h1:first-of-type {
  font-size: 65px;
  line-height: 40px;
  letter-spacing: 9.55px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 100;
  display: inline-block;
  position: relative;
}
@media (max-width: 1199px) {
  .home-banner-2 .container > .row > div .content h1:first-of-type {
    font-size: 55px;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .home-banner-2 .container > .row > div .content h1:first-of-type {
    font-size: 25px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .home-banner-2 .container > .row > div .content h1:first-of-type {
    font-size: 22px;
    line-height: auto;
  }
}
.home-banner-2 .container > .row > div .content h1.big {
  font-size: 110px;
  line-height: 67px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-block;
  padding-top: 30px;
  padding-bottom: 60px;
}
@media (max-width: 1199px) {
  .home-banner-2 .container > .row > div .content h1.big {
    font-size: 95px;
    line-height: 150px;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .home-banner-2 .container > .row > div .content h1.big {
    font-size: 65px;
    line-height: 95px;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .home-banner-2 .container > .row > div .content h1.big {
    font-size: 72px;
    padding-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .home-banner-2 .container > .row > div .content h1.big {
    font-size: 54px;
    line-height: 74px;
  }
}
.home-banner-2 .container > .row > div .content .home-banner-bottom {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 1199px) {
  .home-banner-2 .container > .row > div .content .home-banner-bottom {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .home-banner-2 .container > .row > div .content .home-banner-bottom {
    align-items: flex-start;
  }
}
.home-banner-2 .container > .row > div .content .home-banner-bottom p.play {
  width: 250px;
  height: 251px;
  position: absolute;
  right: -90px;
  top: -355px;
  opacity: 1 !important;
  transition: transform 0.3s ease;
}
@media (max-width: 1199px) {
  .home-banner-2 .container > .row > div .content .home-banner-bottom p.play {
    right: 0;
  }
}
@media (max-width: 991px) {
  .home-banner-2 .container > .row > div .content .home-banner-bottom p.play {
    right: 0;
    top: -320px;
  }
}
@media (max-width: 767px) {
  .home-banner-2 .container > .row > div .content .home-banner-bottom p.play {
    right: 0;
    top: -105px;
    max-width: 142px;
  }
}
.home-banner-2 .container > .row > div .content .home-banner-bottom p.play #play-text {
  cursor: pointer;
  animation: rotate-clockwise 14s linear infinite;
  transform-origin: center center;
}
.home-banner-2 .container > .row > div .content .home-banner-bottom p.play #play {
  position: absolute;
  right: 36px;
  top: 38px;
  cursor: pointer;
  transition: transform 0.3s ease;
  max-width: 175px;
}
@media (max-width: 767px) {
  .home-banner-2 .container > .row > div .content .home-banner-bottom p.play #play {
    max-width: 115px !important;
    right: 13px;
    top: 14px;
  }
}
.home-banner-2 .container > .row > div .content .home-banner-bottom p.play:hover {
  transform: scale(1.1);
}
.home-banner-2 .container > .row > div .content .home-banner-bottom p.play:hover #play, .home-banner-2 .container > .row > div .content .home-banner-bottom p.play:hover #play-text {
  transform: scale(1.1);
}
.home-banner-2 .container > .row > div .content .home-banner-bottom .home-banner-btns p {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .home-banner-2 .container > .row > div .content .home-banner-bottom .home-banner-btns p {
    flex-direction: column;
    align-items: flex-start;
  }
}
.home-banner-2 .container > .row > div .content .iframe {
  display: none;
}

@keyframes rotate-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.line-module {
  margin-top: 204px;
  padding-bottom: 140px;
}
.line-module .container > .row > div .content {
  margin-top: -260px;
  background: #fff;
  max-width: 37%;
  border: 1px solid #9695D3;
  margin-right: 9%;
  margin-left: auto;
  padding: 70px 80px 50px 80px;
  position: relative;
}
@media (max-width: 1199px) {
  .line-module .container > .row > div .content {
    max-width: 55%;
  }
}
@media (max-width: 767px) {
  .line-module .container > .row > div .content {
    margin-top: -200px;
    margin-right: 0;
    max-width: 100%;
    padding: 43px 50px 30px 15px;
  }
}
.line-module .container > .row > div .content:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/red-paperplane.svg);
  background-repeat: no-repeat;
  width: 100px;
  height: 115px;
  position: absolute;
  left: -47px;
  bottom: 50px;
}
@media (max-width: 767px) {
  .line-module .container > .row > div .content:before {
    width: 61px;
    height: 70px;
    background-size: contain;
    bottom: 0;
    left: 15px;
    top: -43px;
  }
}
.line-module .container > .row > div .content:after {
  content: "";
  background: #3F2667;
  width: 173px;
  height: 1px;
  position: absolute;
  bottom: 32px;
  right: -59px;
  transform: rotate(135deg);
}
@media (max-width: 767px) {
  .line-module .container > .row > div .content:after {
    width: 123px;
    right: -30px;
  }
}
@media (max-width: 1199px) {
  .line-module .container > .row > div .content h1 br {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .line-module .container > .row > div .content p br {
    display: block !important;
  }
}

.line-home-one {
  position: relative;
  padding-top: 170px;
}
@media (max-width: 767px) {
  .line-home-one {
    padding-bottom: 50px;
  }
}
.line-home-one .container > .row > div:first-child .content img {
  position: absolute;
  top: -330px;
  left: -105px;
}
@media (max-width: 767px) {
  .line-home-one .container > .row > div:first-child .content img {
    max-width: 164px;
    top: -200px;
    left: -63px;
  }
}
.line-home-one .container > .row > div:last-child .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-home-one .container > .row > div:last-child .content img {
    max-width: 190px;
  }
}

.line-home-two {
  padding-bottom: 0;
  position: relative;
}
@media (max-width: 991px) {
  .line-home-two {
    padding-top: 130px;
  }
}
@media (max-width: 991px) {
  .line-home-two .container > .row > div {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .line-home-two .container > .row > div:first-child {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .line-home-two .container > .row > div:first-child {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-home-two .container > .row > div:first-child {
    padding-bottom: 380px;
  }
}
.line-home-two .container > .row > div:first-child .content {
  margin-top: -130px;
}
@media (max-width: 767px) {
  .line-home-two .container > .row > div:first-child .content {
    position: relative;
  }
}
.line-home-two .container > .row > div:first-child .content h1 {
  position: relative;
  z-index: 2;
  padding-left: 80px;
}
@media (max-width: 991px) {
  .line-home-two .container > .row > div:first-child .content h1 {
    padding-left: 0;
  }
}
.line-home-two .container > .row > div:first-child .content h1 span {
  color: #E85652;
}
.line-home-two .container > .row > div:first-child .content img {
  position: relative;
  z-index: 1;
  margin-top: -165px;
  max-width: 85% !important;
}
@media (max-width: 991px) {
  .line-home-two .container > .row > div:first-child .content img {
    margin-top: -115px;
  }
}
@media (max-width: 767px) {
  .line-home-two .container > .row > div:first-child .content img {
    position: absolute;
    min-width: 100vw;
    left: -30px;
    top: 215px;
  }
}
.line-home-two .container > .row > div:last-child {
  padding-top: 360px;
}
@media (min-width: 768px) {
  .line-home-two .container > .row > div:last-child {
    width: 30%;
  }
}
@media (max-width: 1199px) {
  .line-home-two .container > .row > div:last-child {
    padding-top: 490px;
  }
}
@media (max-width: 991px) {
  .line-home-two .container > .row > div:last-child {
    width: 100%;
    padding-top: 0;
  }
}
.line-home-two .container > .row > div:last-child .content {
  position: relative;
  margin-right: 80px;
  z-index: 4;
  background: #F4F4FB;
  padding-top: 95px;
  padding-right: 80px;
  padding-left: 78px;
  padding-bottom: 269px;
  margin-left: -256px;
}
@media (max-width: 1199px) {
  .line-home-two .container > .row > div:last-child .content {
    padding-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .line-home-two .container > .row > div:last-child .content {
    margin-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .line-home-two .container > .row > div:last-child .content {
    padding-top: 45px;
    padding-right: 0;
    margin-right: 0 !important;
  }
}
.line-home-two .container > .row > div:last-child .content .btn {
  margin-top: 30px;
}
.line-home-two .container > .row > div:last-child .content img {
  position: absolute;
  bottom: -170px;
  right: 0;
}
@media (max-width: 767px) {
  .line-home-two .container > .row > div:last-child .content img {
    bottom: -40px;
  }
}

.line-video-title {
  padding-top: 165px;
  padding-bottom: 110px;
}
@media (max-width: 767px) {
  .line-video-title {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.line-video-title .container > .row > div .content {
  max-width: fit-content;
}
@media (max-width: 767px) {
  .line-video-title .container > .row > div .content {
    max-width: 55%;
  }
}
.line-video-title .container > .row > div .content h1 span {
  color: #E85652;
}

.line-textile-images {
  height: 130vh;
  position: relative;
}
@media (max-width: 1199px) {
  .line-textile-images {
    height: 90vh;
  }
}
@media (max-width: 991px) {
  .line-textile-images {
    height: 80vh;
  }
}
@media (max-width: 767px) {
  .line-textile-images {
    height: 100vh;
  }
}
.line-textile-images:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_home/larger-stars.svg);
  background-repeat: no-repeat;
  width: 618px;
  height: 691px;
  position: absolute;
  bottom: -215px;
  right: 145px;
}
@media (max-width: 767px) {
  .line-textile-images:before {
    width: 230px;
    height: 362px;
    bottom: -155px;
    right: 0;
  }
}
.line-textile-images .container-fluid > .row > div .content ul {
  padding-left: 0 !important;
  list-style: none;
}
.line-textile-images .container-fluid > .row > div .content ul li {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 15px;
  padding-left: 0 !important;
}
.line-textile-images .container-fluid > .row > div .content ul li:before {
  display: none !important;
}
.line-textile-images .container-fluid > .row > div .content ul li {
  position: absolute;
}
.line-textile-images .container-fluid > .row > div .content ul li:first-child {
  right: 0;
  top: -400px;
}
@media (max-width: 991px) {
  .line-textile-images .container-fluid > .row > div .content ul li:first-child {
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .line-textile-images .container-fluid > .row > div .content ul li:first-child {
    max-width: 187px;
    top: -85px;
  }
}
.line-textile-images .container-fluid > .row > div .content ul li:nth-child(2) {
  top: -200px;
  left: 42%;
}
@media (max-width: 991px) {
  .line-textile-images .container-fluid > .row > div .content ul li:nth-child(2) {
    max-width: 250px;
    top: 0;
    left: 32%;
  }
}
@media (max-width: 767px) {
  .line-textile-images .container-fluid > .row > div .content ul li:nth-child(2) {
    max-width: 144px;
    left: 14%;
  }
}
.line-textile-images .container-fluid > .row > div .content ul li:nth-child(3) {
  left: 13%;
  top: 50px;
}
@media (max-width: 991px) {
  .line-textile-images .container-fluid > .row > div .content ul li:nth-child(3) {
    left: 6%;
    max-width: 280px;
  }
}
@media (max-width: 767px) {
  .line-textile-images .container-fluid > .row > div .content ul li:nth-child(3) {
    max-width: 175px;
  }
}
.line-textile-images .container-fluid > .row > div .content ul li:nth-child(4) {
  right: 40px;
  top: 280px;
}
@media (max-width: 991px) {
  .line-textile-images .container-fluid > .row > div .content ul li:nth-child(4) {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .line-textile-images .container-fluid > .row > div .content ul li:nth-child(4) {
    max-width: 173px;
  }
}
.line-textile-images .container-fluid > .row > div .content ul li:nth-child(5) {
  left: 37%;
  top: 380px;
}
@media (max-width: 991px) {
  .line-textile-images .container-fluid > .row > div .content ul li:nth-child(5) {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .line-textile-images .container-fluid > .row > div .content ul li:nth-child(5) {
    max-width: 156px;
  }
}
.line-textile-images .container-fluid > .row > div .content ul li:nth-child(6) {
  left: 40px;
  top: 500px;
}
@media (max-width: 991px) {
  .line-textile-images .container-fluid > .row > div .content ul li:nth-child(6) {
    max-width: 300px;
    left: 6%;
  }
}
@media (max-width: 767px) {
  .line-textile-images .container-fluid > .row > div .content ul li:nth-child(6) {
    max-width: 175px;
    top: 150px;
  }
}

.line-textiles-title {
  padding-top: 265px;
  position: relative;
}
@media (max-width: 767px) {
  .line-textiles-title {
    padding-top: 145px;
  }
}
.line-textiles-title:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_home/line-purple.svg);
  background-repeat: no-repeat;
  width: 127px;
  height: 127px;
  position: absolute;
  top: -100px;
  left: 150px;
}
@media (max-width: 767px) {
  .line-textiles-title:before {
    left: 20px;
  }
}
.line-textiles-title .container > .row div .content h1 {
  padding-left: 80px;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .line-textiles-title .container > .row div .content h1 {
    padding-left: 0;
  }
}
.line-textiles-title .container > .row div .content h1 span {
  color: #9695D3;
}
.line-textiles-title .container > .row div .content img#doctors {
  position: absolute;
  top: -145px;
  z-index: 1;
}
@media (max-width: 767px) {
  .line-textiles-title .container > .row div .content img#doctors {
    max-width: 167px;
    top: -75px;
  }
}
.line-textiles-title .container > .row div .content img#rope {
  position: absolute;
  top: -380px;
  right: 210px;
}
@media (max-width: 1199px) {
  .line-textiles-title .container > .row div .content img#rope {
    right: 80px;
  }
}
@media (max-width: 991px) {
  .line-textiles-title .container > .row div .content img#rope {
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .line-textiles-title .container > .row div .content img#rope {
    max-width: 165px;
    right: 15px;
    top: -235px;
  }
}

.line-home-entreprise {
  padding-top: 295px;
  padding-bottom: 170px;
  position: relative;
}
@media (max-width: 767px) {
  .line-home-entreprise {
    padding-top: 180px;
  }
}
@media (max-width: 991px) {
  .line-home-entreprise .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-home-entreprise .container > .row > div:first-child {
    width: 100%;
    margin-bottom: 45px;
  }
}
.line-home-entreprise .container > .row > div:first-child .content {
  padding-top: 170px;
  padding-left: 80px;
}
@media (max-width: 991px) {
  .line-home-entreprise .container > .row > div:first-child .content {
    padding-top: 40px;
    padding-left: 0;
  }
}
.line-home-entreprise .container > .row > div:first-child .content img {
  position: absolute;
  top: -505px;
  left: 0;
  display: none;
}
@media (max-width: 767px) {
  .line-home-entreprise .container > .row > div:first-child .content img {
    max-width: 250px;
    left: -50px;
    top: -345px;
  }
}
.line-home-entreprise .container > .row > div:first-child .content h2 {
  margin-bottom: 38px;
}
.line-home-entreprise .container > .row > div:first-child .content h2 span {
  color: #E85652;
}
@media (max-width: 767px) {
  .line-home-entreprise .container > .row > div:first-child .content h2 br {
    display: block !important;
  }
}
.line-home-entreprise .container > .row > div:first-child .content p:first-of-type {
  display: block;
}
@media (min-width: 992px) {
  .line-home-entreprise .container > .row > div:first-child .content p:first-of-type {
    width: 70%;
  }
}
.line-home-entreprise .container > .row > div:first-child .content .btn {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .line-home-entreprise .container > .row > div:last-child {
    width: 100%;
  }
}
.line-home-entreprise .container > .row > div:last-child .content {
  text-align: right;
}
.line-home-entreprise .container > .row > div:last-child .content img {
  width: 100% !important;
}

.line-blog-title .container > .row > div .content {
  position: relative;
}
.line-blog-title .container > .row > div .content:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_home/line-purple.svg);
  background-repeat: no-repeat;
  width: 127px;
  height: 127px;
  position: absolute;
  top: -35px;
  right: 40%;
}
@media (max-width: 991px) {
  .line-blog-title .container > .row > div .content:before {
    right: 50%;
  }
}
@media (max-width: 767px) {
  .line-blog-title .container > .row > div .content:before {
    width: 65px;
    top: -70px;
  }
}
@media (min-width: 768px) {
  .line-blog-title .container > .row > div .content h1 {
    padding-right: 80px;
  }
}
.line-blog-title .container > .row > div .content h1 strong {
  color: #E85652;
}

.line-home-blog {
  padding-top: 80px;
}
.line-home-blog .container > .row > div .newsList > .row {
  padding-top: 0;
}
@media (min-width: 992px) {
  .line-home-blog .container > .row > div .newsList > .row {
    display: flex;
    justify-content: space-between;
  }
}
.line-home-blog .container > .row > div .newsList > .row .item {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .line-home-blog .container > .row > div .newsList > .row .item {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .line-home-blog .container > .row > div .newsList > .row .item {
    align-items: flex-start;
    margin-bottom: 60px;
  }
}
.line-home-blog .container > .row > div .newsList > .row .item .itemImage {
  margin-bottom: 34px;
}
.line-home-blog .container > .row > div .newsList > .row .item .itemImage img {
  max-width: 540px;
}
@media (max-width: 1199px) {
  .line-home-blog .container > .row > div .newsList > .row .item .itemImage img {
    max-width: 100%;
  }
}
.line-home-blog .container > .row > div .newsList > .row .item h3 {
  max-width: 70% !important;
  margin-bottom: 24px !important;
  font-size: 25px;
  line-height: 27px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-home-blog .container > .row > div .newsList > .row .item h3 {
    font-size: 20px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .line-home-blog .container > .row > div .newsList > .row .item h3 {
    max-width: 100%;
  }
}
.line-home-blog .container > .row > div .newsList > .row .item h3 a:hover {
  text-decoration: none !important;
  color: #E85652 !important;
}
@media (min-width: 768px) {
  .line-home-blog .container > .row > div .newsList > .row .item .intro {
    max-width: 70%;
  }
}
.line-home-blog .container > .row > div .newsList > .row .item .intro > img {
  display: none;
}
.line-home-blog .container > .row > div .newsList > .row .item .intro p {
  font-size: 16px;
}
.line-home-blog .container > .row > div .newsList > .row .item .actions {
  margin-top: 0;
}
.line-home-blog .container > .row > div .newsList > .row .item .actions .btn {
  background-color: transparent;
  color: #E85652;
  padding: 15px 0;
  padding-right: 60px;
  transition: all 300ms;
  border: none;
  border-bottom: 1px solid #E85652;
  border-radius: 0;
  text-transform: none;
}
.line-home-blog .container > .row > div .newsList > .row .item .actions .btn:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/red-caret.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: -60px;
  margin-top: 7px;
  position: relative;
  display: inline-block;
  width: 7px;
  height: 15px;
  animation-name: none;
  transition: all 300ms;
}
.line-home-blog .container > .row > div .newsList > .row .item .actions .btn:hover, .line-home-blog .container > .row > div .newsList > .row .item .actions .btn:active, .line-home-blog .container > .row > div .newsList > .row .item .actions .btn:focus {
  background-color: transparent;
  color: #3F2667;
  border: none;
  border-bottom: 1px solid #3F2667;
  padding-left: 20px;
  padding-right: 40px;
}
.line-home-blog .container > .row > div .newsList > .row .item .actions .btn:hover:after, .line-home-blog .container > .row > div .newsList > .row .item .actions .btn:active:after, .line-home-blog .container > .row > div .newsList > .row .item .actions .btn:focus:after {
  right: -40px;
}
@media (min-width: 768px) {
  .line-home-blog .container > .row > div .newsList > .row .item:last-child {
    padding-top: 130px;
  }
}

.home-blog-cta {
  padding-top: 70px;
}

.line-industrie-one {
  padding-bottom: 170px;
  position: relative;
}
@media (max-width: 767px) {
  .line-industrie-one {
    padding-bottom: 500px;
  }
}
.line-industrie-one:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/industrie-stars1.svg);
  background-repeat: no-repeat;
  width: 618px;
  height: 339px;
  position: absolute;
  bottom: -200px;
  right: 80px;
}
@media (max-width: 767px) {
  .line-industrie-one:after {
    background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/industrie-smol-star2.svg);
    width: 238px;
    height: 163px;
    right: 0;
    bottom: -110px;
  }
}
.line-industrie-one:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_home/line-purple.svg);
  background-repeat: no-repeat;
  width: 127px;
  height: 127px;
  position: absolute;
  top: -100px;
  right: 190px;
}
@media (max-width: 767px) {
  .line-industrie-one:before {
    right: 25px;
    width: 80px;
    height: 120px;
  }
}
.line-industrie-one .container > .row > div:first-child .content {
  padding-top: 155px;
}
@media (min-width: 992px) {
  .line-industrie-one .container > .row > div:first-child .content {
    padding-left: 80px;
    max-width: 88%;
  }
}
@media (max-width: 767px) {
  .line-industrie-one .container > .row > div:first-child .content {
    padding-top: 75px;
  }
}
.line-industrie-one .container > .row > div:first-child .content h2 {
  font-size: 95px;
  line-height: 98px;
  font-weight: 900;
  text-transform: initial;
  color: #fff;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .line-industrie-one .container > .row > div:first-child .content h2 {
    font-size: 80px;
    line-height: 88px;
  }
}
@media (max-width: 767px) {
  .line-industrie-one .container > .row > div:first-child .content h2 {
    font-size: 42px;
    line-height: 43px;
  }
}
.line-industrie-one .container > .row > div:first-child .content h2 span {
  color: #E85652;
}
.line-industrie-one .container > .row > div:first-child .content h2 span {
  color: #E85652;
}
@media (max-width: 767px) {
  .line-industrie-one .container > .row > div:first-child .content h2 br {
    display: block !important;
  }
}
.line-industrie-one .container > .row > div:first-child .content p {
  color: #fff;
}
.line-industrie-one .container > .row > div:last-child {
  position: relative;
}
.line-industrie-one .container > .row > div:last-child .content {
  padding-top: 60px;
}
.line-industrie-one .container > .row > div:last-child .content img {
  position: absolute;
}
.line-industrie-one .container > .row > div:last-child .content img:first-child {
  top: 60px;
  left: 0;
}
@media (max-width: 767px) {
  .line-industrie-one .container > .row > div:last-child .content img:first-child {
    max-width: 211px;
  }
}
.line-industrie-one .container > .row > div:last-child .content img:nth-child(2) {
  right: 0;
  top: 247px;
}
@media (max-width: 767px) {
  .line-industrie-one .container > .row > div:last-child .content img:nth-child(2) {
    max-width: 175px;
    top: 165px;
    right: 20px;
  }
}
.line-industrie-one .container > .row > div:last-child .content img:last-child {
  top: 443px;
  left: 40px;
}
@media (max-width: 767px) {
  .line-industrie-one .container > .row > div:last-child .content img:last-child {
    max-width: 142px;
    top: 280px;
    left: 13px;
  }
}

.line-qualites-title {
  padding-top: 173px;
  padding-bottom: 86px;
}
@media (max-width: 1199px) {
  .line-qualites-title h1 br {
    display: none !important;
  }
}

.line-qualites {
  padding-bottom: 170px;
  position: relative;
}
@media (max-width: 767px) {
  .line-qualites {
    padding-bottom: 110px;
  }
}
.line-qualites:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/industrie-stars2.svg);
  background-repeat: no-repeat;
  width: 618px;
  height: 269px;
  position: absolute;
  bottom: -115px;
  right: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .line-qualites:after {
    background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/industrie-smol-star2.svg);
    width: 238px;
    height: 163px;
    right: 0;
    bottom: -102px;
  }
}
.line-qualites .container > .row > div .content ul {
  padding-left: 0 !important;
  list-style: none;
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.line-qualites .container > .row > div .content ul li {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 15px;
  padding-left: 0 !important;
}
.line-qualites .container > .row > div .content ul li:before {
  display: none !important;
}
@media (max-width: 767px) {
  .line-qualites .container > .row > div .content ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px 30px;
  }
}
.line-qualites .container > .row > div .content ul li {
  text-align: center;
}
.line-qualites .container > .row > div .content ul li img {
  margin-bottom: 12px;
}
.line-qualites .container > .row > div .content ul li p {
  text-align: center;
  color: #3F2667;
  font-weight: 600;
}
@media (max-width: 767px) {
  .line-qualites .container > .row > div .content ul li p {
    word-wrap: break-word;
    font-size: 16px;
    margin-bottom: 0;
  }
}

.line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img {
  height: 110vh;
}
@media (max-width: 1199px) {
  .line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img {
    height: 78vh;
  }
}
@media (max-width: 767px) {
  .line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img {
    height: 1400px;
  }
}
@media (max-width: 767px) {
  .line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content {
    top: 51%;
  }
}
.line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content h2 {
  color: #fff;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content h2 {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content p {
  color: #fff;
  margin-bottom: 85px;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content p {
    width: 90%;
  }
}
.line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul {
  padding-left: 0 !important;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul li {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 15px;
  padding-left: 0 !important;
}
.line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul li:before {
  display: none !important;
}
@media (min-width: 1200px) {
  .line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul {
    flex-direction: column;
    align-items: center;
  }
}
.line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul li {
  text-align: center;
}
.line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul li h3 {
  text-align: center;
  color: #fff;
  font-size: 30px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul li h3 {
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 60px;
    margin-top: 10px;
  }
}
.line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul li h3 span {
  font-size: 60px;
  font-weight: 900;
  color: #E85652;
}
@media (max-width: 767px) {
  .line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul li h3 span {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul li h3 br {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul li:first-child img {
    max-width: 135px;
  }
}
@media (max-width: 767px) {
  .line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul li:nth-child(2) img {
    max-width: 147px;
  }
}
@media (max-width: 767px) {
  .line-moteur .container-fluid > .row > div .mod-banner__wrapper .mod-banner__img .mod-banner__content ul li:last-child img {
    max-width: 103px;
  }
}

.usages {
  background: linear-gradient(to top, #0b0213, #3F2667, #462772);
  position: relative;
}
.usages:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/industrie-stars2.svg);
  background-repeat: no-repeat;
  width: 618px;
  height: 269px;
  position: absolute;
  top: -35px;
  right: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .usages:before {
    display: none;
  }
}
.usages .line-usages-title {
  padding-top: 120px;
}
.usages .line-usages-title .content h1 {
  color: #fff;
}
.usages .line-usages {
  padding-top: 125px;
  padding-bottom: 142px;
  position: relative;
}
@media (max-width: 767px) {
  .usages .line-usages {
    padding-top: 70px;
  }
}
.usages .line-usages:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/industrie-stars2.svg);
  background-repeat: no-repeat;
  width: 618px;
  height: 269px;
  position: absolute;
  bottom: -97px;
  right: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .usages .line-usages:before {
    background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/industrie-smol-star2.svg);
    width: 238px;
    height: 163px;
    right: 0;
    bottom: -110px;
  }
}
.usages .line-usages .container > .row > div .newsList > .row + .row {
  margin-top: 0;
}
.usages .line-usages .container > .row > div .newsList > .row .item {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .usages .line-usages .container > .row > div .newsList > .row .item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }
}
.usages .line-usages .container > .row > div .newsList > .row .item:before {
  content: "";
  background: #E85652;
  width: 100vw;
  height: 100px;
  z-index: 0;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
@media (max-width: 767px) {
  .usages .line-usages .container > .row > div .newsList > .row .item:before {
    height: 100%;
    width: 104vw;
  }
}
.usages .line-usages .container > .row > div .newsList > .row .item h3 {
  order: 0;
  color: #fff;
  font-size: 40px;
  max-width: 50%;
  font-weight: 900;
  z-index: 3;
  margin-bottom: 0;
  padding-left: 80px;
}
@media (max-width: 767px) {
  .usages .line-usages .container > .row > div .newsList > .row .item h3 {
    padding-left: 0;
    font-size: 30px;
    line-height: 36px;
    max-width: 90%;
  }
}
.usages .line-usages .container > .row > div .newsList > .row .item .itemImage {
  order: 1;
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .usages .line-usages .container > .row > div .newsList > .row .item .itemImage {
    position: relative;
    transform: none;
  }
}
.usages .line-usages .container > .row > div .newsList > .row .item .itemImage img {
  max-width: 557px;
  filter: drop-shadow(0px 0px 50px #3F2667);
}
@media (max-width: 1199px) {
  .usages .line-usages .container > .row > div .newsList > .row .item .itemImage img {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .usages .line-usages .container > .row > div .newsList > .row .item .itemImage img {
    max-width: 350px;
  }
}
.usages .line-usages .container > .row > div .newsList > .row .item:hover {
  cursor: pointer;
}
.usages .line-usages .container > .row > div .newsList > .row .item:hover:before {
  display: block;
}
@media (max-width: 991px) {
  .usages .line-usages .container > .row > div .newsList > .row .item:hover h3 {
    margin-bottom: 50px;
  }
}
.usages .line-usages .container > .row > div .newsList > .row .item:hover .itemImage {
  display: block;
  z-index: 3;
}
.usages .line-usages .container > .row > div .newsList > .row .item.active:before {
  display: block;
}
.usages .line-usages .container > .row > div .newsList > .row .item.active .itemImage {
  display: block;
  z-index: 3;
}

.line-industrie-two {
  padding-top: 115px;
}
@media (max-width: 767px) {
  .line-industrie-two .container > .row > div:first-child {
    padding-bottom: 430px;
  }
}
.line-industrie-two .container > .row > div:first-child .content {
  padding-right: 0 !important;
  padding-top: 125px;
}
@media (max-width: 767px) {
  .line-industrie-two .container > .row > div:first-child .content {
    padding-top: 0;
  }
}
.line-industrie-two .container > .row > div:first-child .content h2 {
  color: #1C1D1F;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .line-industrie-two .container > .row > div:first-child .content p {
    max-width: 75%;
  }
}
.line-industrie-two .container > .row > div:last-child .content {
  position: relative;
}
@media (max-width: 1199px) {
  .line-industrie-two .container > .row > div:last-child .content img:first-child {
    max-width: 215px;
    position: absolute;
    left: 116px;
  }
}
@media (max-width: 767px) {
  .line-industrie-two .container > .row > div:last-child .content img:first-child {
    top: -400px;
    left: 0;
  }
}
.line-industrie-two .container > .row > div:last-child .content img:last-child {
  position: absolute;
  top: 255px;
  left: 237px;
}
@media (max-width: 1199px) {
  .line-industrie-two .container > .row > div:last-child .content img:last-child {
    left: 160px;
    max-width: 280px;
  }
}
@media (max-width: 767px) {
  .line-industrie-two .container > .row > div:last-child .content img:last-child {
    top: -220px;
    left: 120px;
    max-width: 210px;
  }
}
@media (max-width: 767px) {
  .line-industrie-two.sm-no-pt {
    padding-top: 45px;
  }
}

.line-industrie-cta {
  padding-top: 275px;
}
@media (max-width: 767px) {
  .line-industrie-cta {
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  .line-industrie-cta .container > .row > div {
    padding-left: 0;
    padding-right: 0;
  }
}
.line-industrie-cta .container > .row > div .content {
  display: flex;
  justify-content: space-around;
  position: relative;
  padding-right: 0 !important;
  gap: 15px;
}
@media (max-width: 1199px) {
  .line-industrie-cta .container > .row > div .content {
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .line-industrie-cta .container > .row > div .content {
    flex-wrap: wrap;
  }
}
.line-industrie-cta .container > .row > div .content:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/industie-stars4.svg);
  width: 295px;
  height: 312px;
  position: absolute;
  top: -120px;
  left: 20px;
  z-index: 0;
}
@media (max-width: 767px) {
  .line-industrie-cta .container > .row > div .content:before {
    display: none;
  }
}
.line-industrie-cta .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/industrie-stars5.svg);
  width: 295px;
  height: 312px;
  position: absolute;
  bottom: -120px;
  right: 20px;
  z-index: 0;
}
@media (max-width: 767px) {
  .line-industrie-cta .container > .row > div .content:after {
    display: none;
  }
}
.line-industrie-cta .container > .row > div .content h3 {
  cursor: pointer;
  text-align: center;
}
@media (max-width: 767px) {
  .line-industrie-cta .container > .row > div .content h3:first-child {
    width: 50%;
  }
}
.line-industrie-cta .container > .row > div .content h3:first-child span a {
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/decouvre-img.png);
}
.line-industrie-cta .container > .row > div .content h3:first-child span a:before {
  background: linear-gradient(to top, rgb(232, 86, 82) 0%, rgba(232, 86, 82, 0) 70%);
}
.line-industrie-cta .container > .row > div .content h3:first-child span a:hover {
  text-decoration: none !important;
}
.line-industrie-cta .container > .row > div .content h3:first-child span a:hover:before {
  background-size: 100% 180%;
  background-position: 0 100%; /* Start at the bottom */
}
.line-industrie-cta .container > .row > div .content h3:first-child span a:hover:after {
  animation: moveright-cta 1s ease-in-out infinite alternate;
}
.line-industrie-cta .container > .row > div .content h3:nth-child(2) {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .line-industrie-cta .container > .row > div .content h3:nth-child(2) {
    width: 50%;
    padding-top: 0;
  }
}
.line-industrie-cta .container > .row > div .content h3:nth-child(2) span a {
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/travailler-img.png);
}
.line-industrie-cta .container > .row > div .content h3:nth-child(2) span a:before {
  background: linear-gradient(to top, rgb(63, 38, 103) 0%, rgba(232, 86, 82, 0) 70%);
}
.line-industrie-cta .container > .row > div .content h3:nth-child(2) span a:hover {
  text-decoration: none !important;
}
.line-industrie-cta .container > .row > div .content h3:nth-child(2) span a:hover:before {
  background-size: 100% 180%;
  background-position: 0 100%; /* Start at the bottom */
}
.line-industrie-cta .container > .row > div .content h3:nth-child(2) span a:hover:after {
  animation: moveright-cta 1s ease-in-out infinite alternate;
}
@media (max-width: 767px) {
  .line-industrie-cta .container > .row > div .content h3:last-child {
    width: 100%;
  }
}
.line-industrie-cta .container > .row > div .content h3:last-child span a {
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/unposte-img.png);
}
.line-industrie-cta .container > .row > div .content h3:last-child span a:before {
  background: linear-gradient(to top, rgb(232, 86, 82) 0%, rgba(232, 86, 82, 0) 70%);
}
.line-industrie-cta .container > .row > div .content h3:last-child span a:hover {
  text-decoration: none !important;
}
.line-industrie-cta .container > .row > div .content h3:last-child span a:hover:before {
  background-size: 100% 180%;
  background-position: 0 100%; /* Start at the bottom */
}
.line-industrie-cta .container > .row > div .content h3:last-child span a:hover:after {
  animation: moveright-cta 1s ease-in-out infinite alternate;
}
.line-industrie-cta .container > .row > div .content h3 span a {
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: end;
  padding-bottom: 124px;
  width: 356px;
  height: 505px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  color: #fff !important;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .line-industrie-cta .container > .row > div .content h3 span a {
    width: 276px;
    height: 395px;
  }
}
@media (max-width: 991px) {
  .line-industrie-cta .container > .row > div .content h3 span a {
    width: 168px;
    height: 240px;
    font-size: 16px;
    line-height: 18px;
    padding-bottom: 74px;
  }
}
@media (max-width: 767px) {
  .line-industrie-cta .container > .row > div .content h3 span a {
    font-size: 16px;
    line-height: 18px;
  }
}
.line-industrie-cta .container > .row > div .content h3 span a:before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 100% 100%; /* Makes it twice as tall */
  background-position: 0 70%; /* Start at the bottom */
  border-radius: 178px;
  z-index: -1; /* Ensures it's above the background image but below text */
  transition: background 1s ease;
}
.line-industrie-cta .container > .row > div .content h3 span a:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/cta-arrow.svg);
  background-repeat: no-repeat;
  width: 111px;
  height: 62px;
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  animation: none;
}
@media (max-width: 1199px) {
  .line-industrie-cta .container > .row > div .content h3 span a:after {
    bottom: 45px;
  }
}
@media (max-width: 991px) {
  .line-industrie-cta .container > .row > div .content h3 span a:after {
    width: 52px;
    height: 29px;
    background-size: contain;
    bottom: 35px;
  }
}

.line-portraits {
  position: relative;
  overflow: visible;
  z-index: 3;
}
@media (min-width: 992px) {
  .line-portraits .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 767px) {
  .line-portraits .container > .row {
    margin-left: 0;
    margin-right: 0;
  }
}
.line-portraits .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 75px 55px;
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.line-portraits .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane > div .ent-list-bg {
  background-size: cover;
  background-position: bottom center;
  border-radius: 16px;
  background-repeat: no-repeat;
  height: 358px;
  position: relative;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane > div .ent-list-bg {
    height: 385px;
    background-size: cover;
  }
}
.line-portraits .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane > div .ent-list-bg .ent-list-logo {
  position: absolute;
  width: 209px;
  height: 111px;
  background: #fff;
  border-radius: 6px;
  top: 50%;
  left: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane > div .ent-list-bg .ent-list-logo {
    left: 50%;
    transform: translateX(-50%);
  }
}
.line-portraits .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane > div .ent-list-bg .ent-list-logo img {
  max-width: 90%;
}
.line-portraits .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane > div .text_default {
  font-weight: 300;
}
@media (min-width: 992px) {
  .line-portraits .container > .row > div .search-object-bloc .search-object-result .tab-content .tab-pane > div .text_default {
    max-width: 260px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .Cacher {
  display: none !important;
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .ent-banner {
    flex-direction: column;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-left {
  background-repeat: no-repeat;
  background-size: cover;
  height: 727px;
  width: 50%;
  position: relative;
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-left {
    width: 100%;
    height: 400px;
    min-width: 100vw;
  }
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-left {
    height: 260px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-left .ent-title {
  max-width: 100%;
  padding-right: 115px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 80px;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-left .ent-title {
    padding-right: 0;
    left: 30px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-left .ent-title h1 {
  color: #3F2667;
  word-wrap: break-word;
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-left .ent-title h1 {
    font-size: 30px;
    line-height: 34px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-left .ent-title h1 span {
  color: #E85652;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-left .ent-title h1 {
    font-size: 42px;
    line-height: 43px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-left .ent-title h3 {
  color: #1C1D1F;
  word-wrap: break-word;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-left .ent-title h3 {
    font-size: 25px;
    line-height: 27px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-left:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_stars/banner-stars1.svg);
  background-repeat: no-repeat;
  width: 238px;
  height: 376px;
  position: absolute;
  bottom: -240px;
  left: 80px;
  z-index: 1;
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-left:after {
    display: none;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-right {
  height: 680px;
  width: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  background-position: left center;
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-right {
    width: 100%;
    height: 250px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-right:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_stars/banner-stars2.svg);
  background-repeat: no-repeat;
  width: 238px;
  height: 376px;
  position: absolute;
  bottom: 0px;
  right: -30px;
}
@media (min-width: 1600px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-right:after {
    display: none;
  }
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .ent-banner-right:after {
    right: 0;
    bottom: -50px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner .iframe {
  display: none;
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner #ent-play {
  display: block;
  max-width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
  cursor: pointer;
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .ent-banner #ent-play {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .ent-banner #ent-play {
    top: 40%;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner #ent-play #play-hover {
  display: none;
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner #ent-play:hover #play-up {
  display: none;
}
.line-portraits .container > .row > div .search-object-detail-bloc .ent-banner #ent-play:hover #play-hover {
  display: block;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-citation {
  padding-top: 150px;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-citation table.quote {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-citation table.quote {
    max-width: 100%;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-citation table.quote:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_travailler/red-squigly.svg);
  background-repeat: no-repeat;
  width: 189px;
  height: 5px;
  position: absolute;
  left: 220px;
  top: -30px;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-citation table.quote:before {
    left: 50%;
    transform: translateX(-50%);
    top: 180px;
  }
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-citation table.quote tbody tr {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-citation table.quote tbody tr td:first-child {
  vertical-align: top;
  width: 170px;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-citation table.quote tbody tr td:first-child img {
  max-width: 170px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-citation table.quote tbody tr td:first-child img {
    margin-bottom: 30px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-citation table.quote tbody tr td:last-child {
  padding-left: 45px;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-citation table.quote tbody tr td:last-child {
    padding-left: 0;
    text-align: center;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-citation table.quote tbody tr td:last-child h4 {
  color: #3F2667;
  margin-bottom: 30px;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-citation table.quote tbody tr td:last-child p.name {
  margin-bottom: 0;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-description {
  padding-top: 80px;
}
@media (min-width: 992px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-description {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 768px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-description {
    display: flex;
  }
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-description {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content {
    width: 50%;
    padding-top: 145px;
  }
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content {
    width: 100%;
    margin-bottom: 45px;
    padding-top: 0px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content .desc-title {
  color: #1C1D1F;
  margin-bottom: 50px;
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content .desc-title {
    font-size: 30px;
    line-height: 34px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content .desc-title span {
  color: #E85652;
}
@media (min-width: 992px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content .desc-title {
    padding-right: 30px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content .desc-title strong {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content .desc-title span strong {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content .desc-title p {
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
  color: #1C1D1F;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content .desc-title p {
    font-size: 30px;
    line-height: 34px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content .desc-title p span {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content .desc-title p strong {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content h2 strong {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content p.description {
  max-width: 80%;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-content p.description {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-image {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-description .zone-image {
    width: 100%;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions {
  padding-top: 180px;
}
@media (min-width: 992px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions {
    padding-top: 80px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions > h2 {
  margin-bottom: 50px;
  max-width: 95%;
  color: #1C1D1F;
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions > h2 {
    font-size: 30px;
    line-height: 34px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions > h2 span {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions > h2 strong {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions > h2 p {
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
  color: #1C1D1F;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions > h2 p {
    font-size: 30px;
    line-height: 34px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions > h2 p span {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions > h2 p strong {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions .solution-grid ul {
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions .solution-grid ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions .solution-grid ul li {
  text-align: center;
  color: #1C1D1F;
  font-size: 25px;
  line-height: 27px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions .solution-grid ul li {
    font-size: 20px;
    line-height: 22px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-solutions .solution-grid ul li img {
  border-radius: 168px;
  max-width: 100%;
  margin-bottom: 15px;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere {
  padding-top: 112px;
}
@media (min-width: 992px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere {
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
  }
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere .zone-content {
    width: 50%;
    padding-top: 135px;
  }
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere .zone-content {
    width: 100%;
    margin-bottom: 45px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere .zone-content h2.carriere-title {
  margin-bottom: 50px;
  max-width: 95%;
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
  color: #1C1D1F;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere .zone-content h2.carriere-title {
    font-size: 30px;
    line-height: 34px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere .zone-content h2.carriere-title span {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere .zone-content h2.carriere-title strong {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere .zone-content h2.carriere-title p {
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
  color: #1C1D1F;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere .zone-content h2.carriere-title p {
    font-size: 30px;
    line-height: 34px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere .zone-content h2.carriere-title p span {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere .zone-content h2.carriere-title p strong {
  color: #E85652;
}
@media (min-width: 768px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere .zone-content p.carriere-desc {
    max-width: 80%;
  }
}
@media (min-width: 768px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere .zone-image {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-carriere .zone-image {
    width: 100%;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs {
  padding-top: 100px;
}
@media (min-width: 992px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs h2 {
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
  color: #1C1D1F;
  margin-bottom: 40px;
  max-width: 95%;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs h2 {
    font-size: 30px;
    line-height: 34px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs h2 span {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs h2 strong {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs h2 p {
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
  color: #1C1D1F;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs h2 p {
    font-size: 30px;
    line-height: 34px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs h2 p span {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs h2 p strong {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs .valeur-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs .valeur-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs .valeur-grid {
    gap: 10px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs .valeur-grid h3 {
  display: block;
  max-width: 280px;
  height: 130px;
  border-radius: 168px;
  background: #EBEFFE;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-valeurs .valeur-grid h3 {
    height: 100px;
    font-size: 22px;
    line-height: 22px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-article {
  padding-top: 190px;
}
@media (min-width: 992px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-article {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-article {
    padding-top: 80px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-article .articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 27px;
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-article .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-article .articles-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-article .articles-grid .article-item img {
  margin-bottom: 45px;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-article .articles-grid .article-item h4 {
  max-width: 80%;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-contact {
  padding-top: 215px;
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-contact {
    padding-top: 80px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content {
  text-align: center;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content h2 {
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
  color: #1C1D1F;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content h2 {
    font-size: 30px;
    line-height: 34px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content h2 span {
  color: #E85652;
}
@media (min-width: 992px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content h2 {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content h2 strong {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content h2 span strong {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content h2 p {
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  text-transform: initial;
  color: #3F2667;
  color: #1C1D1F;
}
@media (max-width: 767px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content h2 p {
    font-size: 30px;
    line-height: 34px;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content h2 p span {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content h2 p strong {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content h2 p span strong {
  color: #E85652;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content .contact-logo {
  margin-bottom: 20px;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content .contact-logo img {
  padding: 15px;
  max-width: 240px;
  border: 1px solid rgba(28, 29, 31, 0.25);
}
@media (max-width: 991px) {
  .line-portraits .container > .row > div .search-object-detail-bloc .zone-contact .zone-content .contact-adresse br {
    display: block !important;
  }
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-rs ul {
  display: flex;
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  justify-content: center;
  gap: 15px;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-rs ul li a img.up {
  display: inline-block;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-rs ul li a img.hover {
  display: none;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-rs ul li:hover a img.up {
  display: none;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-rs ul li:hover a img.hover {
  display: inline-block;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-cta {
  padding-top: 70px;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-cta p {
  text-align: center;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn {
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p {
  text-align: center;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_stars/starry-block.svg);
  background-repeat: no-repeat;
  width: 295px;
  height: 312px;
  position: absolute;
  top: 0;
  left: 75px;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_stars/starry-block.svg);
  background-repeat: no-repeat;
  width: 295px;
  height: 312px;
  position: absolute;
  bottom: 0;
  right: 75px;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn {
  position: relative;
  display: inline-flex;
  width: 356px;
  height: 505px;
  overflow: hidden;
  text-decoration: none !important;
  cursor: pointer;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 20, 100, 0.95) 0%, rgba(80, 35, 130, 0.6) 45%, rgba(90, 45, 140, 0.1) 100%);
  transition: opacity 0.3s ease;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding-bottom: 38px;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn__content:hover {
  text-decoration: none !important;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn__label {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  line-height: 35px;
  letter-spacing: 0.02em;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn__label:hover {
  text-decoration: none !important;
  display: block;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn__arrow {
  display: block;
  width: 100px;
  height: 61px;
  opacity: 0.9;
  transition: transform 0.25s ease;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn:hover .back-btn__overlay {
  opacity: 0.75;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn:hover .back-btn__label {
  text-decoration: none !important;
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn:hover .back-btn__arrow {
  transform: translateX(-4px);
}
.line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn, .line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn:hover, .line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn:focus, .line-portraits .container > .row > div .search-object-detail-bloc .zone-back-btn p .back-btn:visited {
  text-decoration: none;
}
.line-portraits.no-container .container {
  padding-left: 15px;
  padding-right: 15px;
}

/* Hide h3 in .valeur-grid if h3 itself is empty */
.valeur-grid h3:empty {
  display: none;
}

/* Hide h3 if the span inside is empty */
.valeur-grid h3:has(span:empty) {
  display: none;
}

.line-travailler-one {
  position: relative;
  padding-bottom: 280px;
  padding-top: 50px;
}
@media (max-width: 991px) {
  .line-travailler-one {
    padding-bottom: 470px;
  }
}
@media (max-width: 767px) {
  .line-travailler-one {
    padding-bottom: 340px;
  }
}
.line-travailler-one:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_travailler/travailler-stars1.svg);
  width: 238px;
  height: 306px;
  position: absolute;
  top: 0px;
  right: 95px;
  z-index: 0;
}
@media (max-width: 767px) {
  .line-travailler-one:before {
    display: none;
  }
}
.line-travailler-one:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_travailler/travailler-stars1.svg);
  width: 238px;
  height: 306px;
  position: absolute;
  bottom: 130px;
  right: 95px;
  z-index: 0;
}
@media (max-width: 767px) {
  .line-travailler-one:after {
    display: none;
  }
}
@media (max-width: 991px) {
  .line-travailler-one .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-travailler-one .container > .row > div:first-child {
    width: 100%;
  }
}
.line-travailler-one .container > .row > div:first-child .content {
  padding-top: 170px;
}
@media (max-width: 991px) {
  .line-travailler-one .container > .row > div:first-child .content {
    padding-top: 0;
  }
}
.line-travailler-one .container > .row > div:first-child .content h2 {
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .line-travailler-one .container > .row > div:first-child .content h2 {
    margin-bottom: 25px;
  }
}
.line-travailler-one .container > .row > div:first-child .content p:first-of-type {
  margin-bottom: 20px;
  max-width: 85%;
}
@media (max-width: 991px) {
  .line-travailler-one .container > .row > div:last-child {
    width: 100%;
  }
}
.line-travailler-one .container > .row > div:last-child .content {
  position: relative;
}
@media (max-width: 1199px) {
  .line-travailler-one .container > .row > div:last-child .content img:first-child {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .line-travailler-one .container > .row > div:last-child .content img:first-child {
    max-width: 216px;
  }
}
.line-travailler-one .container > .row > div:last-child .content img:nth-child(2) {
  position: absolute;
  top: 215px;
  left: 243px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .line-travailler-one .container > .row > div:last-child .content img:nth-child(2) {
    max-width: 220px;
  }
}
@media (max-width: 767px) {
  .line-travailler-one .container > .row > div:last-child .content img:nth-child(2) {
    max-width: 213px;
    top: 122px;
    left: 25%;
  }
}
.line-travailler-one .container > .row > div:last-child .content img:last-child {
  position: absolute;
  top: 385px;
  left: 20px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .line-travailler-one .container > .row > div:last-child .content img:last-child {
    max-width: 275px;
  }
}
@media (max-width: 767px) {
  .line-travailler-one .container > .row > div:last-child .content img:last-child {
    max-width: 203px;
    top: 240px;
  }
}

.line-travailler-quote {
  padding-bottom: 95px;
}
@media (min-width: 992px) {
  .line-travailler-quote .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 991px) {
  .line-travailler-quote .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-travailler-quote .container > .row > div:first-child {
    width: 100%;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .line-travailler-quote .container > .row > div:first-child .content {
    max-width: 85%;
  }
}
.line-travailler-quote .container > .row > div:first-child .content h3 {
  margin-bottom: 30px;
  color: #1C1D1F;
  font-weight: 700;
}
@media (max-width: 991px) {
  .line-travailler-quote .container > .row > div:last-child {
    width: 100%;
  }
}
.line-travailler-quote .container > .row > div:last-child .content table {
  position: relative;
}
.line-travailler-quote .container > .row > div:last-child .content table:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_travailler/red-squigly.svg);
  background-repeat: no-repeat;
  width: 189px;
  height: 5px;
  position: absolute;
  left: 220px;
  top: -30px;
}
@media (max-width: 991px) {
  .line-travailler-quote .container > .row > div:last-child .content table:before {
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  .line-travailler-quote .container > .row > div:last-child .content table tbody tr {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}
.line-travailler-quote .container > .row > div:last-child .content table tbody tr td:first-child {
  width: 170px;
  vertical-align: top;
}
@media (max-width: 991px) {
  .line-travailler-quote .container > .row > div:last-child .content table tbody tr td:first-child {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-travailler-quote .container > .row > div:last-child .content table tbody tr td:first-child img {
    margin-bottom: 65px;
  }
}
@media (min-width: 992px) {
  .line-travailler-quote .container > .row > div:last-child .content table tbody tr td:last-child {
    padding-left: 45px;
  }
}
.line-travailler-quote .container > .row > div:last-child .content table tbody tr td:last-child h4, .line-travailler-quote .container > .row > div:last-child .content table tbody tr td:last-child p {
  color: #3F2667;
}
.line-travailler-quote .container > .row > div:last-child .content table tbody tr td:last-child h4 {
  margin-bottom: 30px;
}
.line-travailler-quote .container > .row > div:last-child .content table tbody tr td:last-child p:first-of-type {
  font-weight: 700;
  margin-bottom: 0;
}
.line-travailler-quote .container > .row > div:last-child .content table tbody tr td:last-child p:last-of-type {
  font-weight: 300;
}

.line-raisons-title {
  padding-top: 112px;
  padding-bottom: 75px;
}
.line-raisons-title .content h2 {
  color: #1C1D1F;
}
@media (max-width: 991px) {
  .line-raisons-title .content h2 br {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .line-raisons .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.line-raisons .container > .row > div > .newsList {
  gap: 60px 22px;
}
.line-raisons .container > .row > div > .newsList > .row .item .itemImage {
  text-align: center;
  height: 132px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .line-raisons .container > .row > div > .newsList > .row .item .itemImage {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-raisons .container > .row > div > .newsList > .row .item .itemImage img {
  max-width: 120px;
  margin-bottom: 0;
}
.line-raisons .container > .row > div > .newsList > .row .item .intro h3 {
  color: #1C1D1F;
  margin-bottom: 55px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .line-raisons .container > .row > div > .newsList > .row .item .intro h3 {
    margin-bottom: 20px;
  }
}
.line-raisons .container > .row > div > .newsList > .row .item .intro h3 span {
  color: #E85652;
}
.line-raisons .container > .row > div > .newsList > .row .item .intro p {
  text-align: left !important;
}
@media (max-width: 767px) {
  .line-raisons .container > .row > div > .newsList > .row .item .intro p {
    text-align: center !important;
  }
}

.line-travailler-cta {
  padding-top: 110px;
}
@media (max-width: 767px) {
  .line-travailler-cta .container > .row > div {
    padding-left: 0;
    padding-right: 0;
  }
}
.line-travailler-cta .container > .row > div .content {
  display: flex;
  justify-content: space-around;
  position: relative;
  padding-right: 0 !important;
  gap: 15px;
}
@media (max-width: 1199px) {
  .line-travailler-cta .container > .row > div .content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .line-travailler-cta .container > .row > div .content {
    flex-wrap: wrap;
  }
}
.line-travailler-cta .container > .row > div .content:before {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/industie-stars4.svg);
  width: 295px;
  height: 312px;
  position: absolute;
  top: -120px;
  left: 20px;
  z-index: 0;
}
@media (max-width: 767px) {
  .line-travailler-cta .container > .row > div .content:before {
    display: none;
  }
}
.line-travailler-cta .container > .row > div .content:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/industrie-stars5.svg);
  width: 295px;
  height: 312px;
  position: absolute;
  bottom: -120px;
  right: 20px;
  z-index: 0;
}
@media (max-width: 767px) {
  .line-travailler-cta .container > .row > div .content:after {
    display: none;
  }
}
.line-travailler-cta .container > .row > div .content h3 {
  cursor: pointer;
  text-align: center;
}
@media (max-width: 767px) {
  .line-travailler-cta .container > .row > div .content h3:first-child {
    width: 50%;
  }
}
.line-travailler-cta .container > .row > div .content h3:first-child span a {
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/unposte-img.png);
}
.line-travailler-cta .container > .row > div .content h3:first-child span a:before {
  background: linear-gradient(to top, rgb(232, 86, 82) 0%, rgba(232, 86, 82, 0) 70%);
}
.line-travailler-cta .container > .row > div .content h3:first-child span a:hover {
  text-decoration: none !important;
}
.line-travailler-cta .container > .row > div .content h3:first-child span a:hover:before {
  background-size: 100% 180%;
  background-position: 0 100%; /* Start at the bottom */
}
.line-travailler-cta .container > .row > div .content h3:first-child span a:hover:after {
  animation: moveright-cta 1s ease-in-out infinite alternate;
}
@media (min-width: 992px) {
  .line-travailler-cta .container > .row > div .content h3:nth-child(2) {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .line-travailler-cta .container > .row > div .content h3:nth-child(2) {
    width: 50%;
  }
}
.line-travailler-cta .container > .row > div .content h3:nth-child(2) span a {
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_travailler/decouvre-metiers.png);
}
.line-travailler-cta .container > .row > div .content h3:nth-child(2) span a:before {
  background: linear-gradient(to top, rgb(63, 38, 103) 0%, rgba(232, 86, 82, 0) 70%);
}
.line-travailler-cta .container > .row > div .content h3:nth-child(2) span a:hover {
  text-decoration: none !important;
}
.line-travailler-cta .container > .row > div .content h3:nth-child(2) span a:hover:before {
  background-size: 100% 180%;
  background-position: 0 100%; /* Start at the bottom */
}
.line-travailler-cta .container > .row > div .content h3:nth-child(2) span a:hover:after {
  animation: moveright-cta 1s ease-in-out infinite alternate;
}
@media (max-width: 767px) {
  .line-travailler-cta .container > .row > div .content h3:last-child {
    width: 100%;
  }
}
.line-travailler-cta .container > .row > div .content h3:last-child span a {
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_travailler/temoignages-img.png);
}
.line-travailler-cta .container > .row > div .content h3:last-child span a:before {
  background: linear-gradient(to top, rgb(232, 86, 82) 0%, rgba(232, 86, 82, 0) 70%);
}
.line-travailler-cta .container > .row > div .content h3:last-child span a:hover {
  text-decoration: none !important;
}
.line-travailler-cta .container > .row > div .content h3:last-child span a:hover:before {
  background-size: 100% 180%;
  background-position: 0 100%; /* Start at the bottom */
}
.line-travailler-cta .container > .row > div .content h3:last-child span a:hover:after {
  animation: moveright-cta 1s ease-in-out infinite alternate;
}
.line-travailler-cta .container > .row > div .content h3 span a {
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: end;
  padding-bottom: 124px;
  width: 356px;
  height: 505px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  color: #fff !important;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .line-travailler-cta .container > .row > div .content h3 span a {
    width: 276px;
    height: 395px;
  }
}
@media (max-width: 991px) {
  .line-travailler-cta .container > .row > div .content h3 span a {
    width: 168px;
    height: 240px;
    font-size: 16px;
    line-height: 18px;
    padding-bottom: 74px;
  }
}
@media (max-width: 767px) {
  .line-travailler-cta .container > .row > div .content h3 span a {
    font-size: 16px;
    line-height: 18px;
  }
}
.line-travailler-cta .container > .row > div .content h3 span a:before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 100% 100%; /* Makes it twice as tall */
  background-position: 0 70%; /* Start at the bottom */
  border-radius: 178px;
  z-index: -1; /* Ensures it's above the background image but below text */
  transition: background 1s ease;
}
.line-travailler-cta .container > .row > div .content h3 span a:after {
  content: "";
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/cta-arrow.svg);
  background-repeat: no-repeat;
  width: 111px;
  height: 62px;
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  animation: none;
}
@media (max-width: 1199px) {
  .line-travailler-cta .container > .row > div .content h3 span a:after {
    bottom: 45px;
  }
}
@media (max-width: 991px) {
  .line-travailler-cta .container > .row > div .content h3 span a:after {
    width: 52px;
    height: 29px;
    background-size: contain;
    bottom: 35px;
  }
}
.line-travailler-cta.metiers {
  padding-top: 45px;
}
.line-travailler-cta.metiers .container > .row > div .content:before {
  left: 66px;
}
.line-travailler-cta.metiers .container > .row > div .content h3 span a {
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/Techniquement-partout/_industrie/unposte-img.png);
}

.line-metiers-title {
  padding-top: 130px;
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .line-metiers-title {
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .line-metiers .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 992px) {
  .line-metiers .container > .row > div .newsList {
    gap: 75px 40px;
  }
}
@media (min-width: 1500px) {
  .line-metiers .container > .row > div .newsList {
    gap: 100px 40px;
  }
}
@media (max-width: 1199px) {
  .line-metiers .container > .row > div .newsList {
    gap: 124px 40px;
  }
}
@media (max-width: 991px) {
  .line-metiers .container > .row > div .newsList {
    gap: 30px 40px;
  }
}

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