@charset "UTF-8";
/* FONTS */
@font-face {
  font-family: "PPObjectSans-Regular";
  src: url("https://riposte-depot.s3.ca-central-1.amazonaws.com/goodman/PPObjectSans-Regular.eot");
  src: url("https://riposte-depot.s3.ca-central-1.amazonaws.com/goodman/PPObjectSans-Regular.woff") format("woff");
}
@font-face {
  font-family: "PPObjectSans-Bold";
  src: url("https://riposte-depot.s3.ca-central-1.amazonaws.com/goodman/PPObjectSans-Bold.eot");
  src: url("https://riposte-depot.s3.ca-central-1.amazonaws.com/goodman/PPObjectSans-Bold.woff") format("woff");
}
@font-face {
  font-family: "PPObjectSans-BoldSlanted";
  src: url("https://riposte-depot.s3.ca-central-1.amazonaws.com/goodman/PPObjectSans-BoldSlanted.eot");
  src: url("https://riposte-depot.s3.ca-central-1.amazonaws.com/goodman/PPObjectSans-BoldSlanted.woff") format("woff");
}
@font-face {
  font-family: "PPObjectSans-Slanted";
  src: url("https://riposte-depot.s3.ca-central-1.amazonaws.com/goodman/PPObjectSans-Slanted.eot");
  src: url("https://riposte-depot.s3.ca-central-1.amazonaws.com/goodman/PPObjectSans-Slanted.woff") format("woff");
}
/* 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 à 1200px */
/* Plus petit ou égal à 1199px */
/* Plus grand ou égal à 992px */
/* Plus petit ou égal à 991px */
/* Plus grand ou égal à 768px */
/* Plus petit ou égal à 767px */
/* Plus grand ou égal à 576px */
/* Plus petit ou égal à 575px */
/* Entre 1199px et 992px */
/* Entre 1199px et 768px */
/* Entre 1199px et 576px */
/* Entre 991px et 768px */
/* Entre 991px et 576px */
/* Entre 767px et 576px */
/*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 (max-width: 797px) and (min-width: 768px) {
  .container {
    width: 738px !important;
  }
}
@media (min-width: 768px) {
  .container {
    width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1152px;
  }
}

/* Global animation */
/*
h1{
	opacity: 0;
}
.animate {
	@include text-fade-from-left;
}
*/
.zone-crm.object-menu-hidden h1, .zone-crm.object-menu-hidden h2, .zone-crm.object-menu-hidden h3, .zone-crm.object-menu-hidden h4, .zone-crm.object-menu-hidden h5, .zone-crm.object-menu-hidden h6, .zone-crm.object-menu-hidden p, .zone-crm.object-menu-hidden ul, .zone-crm.object-menu-hidden li, .zone-crm.object-menu-hidden ol div, .zone-crm.object-menu-hidden span {
  opacity: 1 !important;
}

/**
* ----------------------------------------
* Submenu
* ----------------------------------------
*/
@keyframes submenu {
  0% {
    transform: translate(0, 10px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@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);
  }
}
@keyframes slideRight {
  0% {
    transform: translate3d(100%, 0, 0) rotate(90deg);
  }
  100% {
    transform: translate3d(0%, 0, 0) rotate(90deg);
  }
}
.slideRight {
  -webkit-animation: slideRight 1s;
  -moz-animation: slideRight 1s;
  -o-animation: slideRight 1s;
  animation: slideRight 1s;
}

/**
* ----------------------------------------
* Global bouton load
* ----------------------------------------
*/
@keyframes button_load {
  0% {
    transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/**
* ----------------------------------------
* Opacity fade
* ----------------------------------------
*/
@keyframes opacity_fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
* ----------------------------------------
* Breadcrumbs
* ----------------------------------------
*/
@keyframes breadcrumbs {
  0% {
    margin-top: -50px;
  }
  100% {
    margin-top: 0;
  }
}
/**
* ----------------------------------------
* Logo
* ----------------------------------------
*/
@keyframes logo {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/**
 * ----------------------------------------
 *  img appears
 * ----------------------------------------
 */
@keyframes img_appears {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
/**
* ----------------------------------------
* Line Banner Content
* ----------------------------------------
*/
@keyframes element_fade_slide {
  0% {
    transform: translate(50px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/**
* ----------------------------------------
* Line Banner red-bg-logo Content
* ----------------------------------------
*/
@keyframes logo_banner_slide {
  0% {
    transform: translate(-150px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
/**
* ----------------------------------------
* Line Banner red-bg-logo Content
* ----------------------------------------
*/
@keyframes logo_banner_fade_slide {
  0% {
    transform: translate(-150px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/**
* ----------------------------------------
* Line Research Areas
* ----------------------------------------
*/
@keyframes research_bounce_order {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
/**
* ----------------------------------------
* Line Banner Content
* ----------------------------------------
*/
@keyframes element_fade_slide_up {
  0% {
    transform: translate(0, 70px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* All titles */
/* col-grid */
/* Cancel UL LI list */
/* Solid background with opacity */
/* Solid background with opacity */
/* Solid background with gradient */
/* Background overlay with :after */
/* Gradient background overlay with :after, 6 variables to fill */
/* Absolute positions */
/* clear float after */
/* Fake container */
/* IMAGE Z LAYOUT */
/********************************************************************/
/* DISPLAY RESPONSIVE */
/********************************************************************/
.displaynone {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.whiteparagraphe p {
  color: #000;
}

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

.darkparagraphe p {
  color: #000;
}

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

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

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

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

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

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

::selection {
  color: #fff;
  background: #3E4E63;
}

/* 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;
  }
}
html {
  scroll-behavior: smooth;
}

/* FIX FLEX ON SAFARI, do not delete */
@media (min-width: 768px) {
  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24 {
    margin: 0 -1px;
  }
}
.zone-banner {
  margin: 0;
}
.zone-banner .col-xs-1, .zone-banner .col-sm-1, .zone-banner .col-md-1, .zone-banner .col-lg-1, .zone-banner .col-xs-2, .zone-banner .col-sm-2, .zone-banner .col-md-2, .zone-banner .col-lg-2, .zone-banner .col-xs-3, .zone-banner .col-sm-3, .zone-banner .col-md-3, .zone-banner .col-lg-3, .zone-banner .col-xs-4, .zone-banner .col-sm-4, .zone-banner .col-md-4, .zone-banner .col-lg-4, .zone-banner .col-xs-5, .zone-banner .col-sm-5, .zone-banner .col-md-5, .zone-banner .col-lg-5, .zone-banner .col-xs-6, .zone-banner .col-sm-6, .zone-banner .col-md-6, .zone-banner .col-lg-6, .zone-banner .col-xs-7, .zone-banner .col-sm-7, .zone-banner .col-md-7, .zone-banner .col-lg-7, .zone-banner .col-xs-8, .zone-banner .col-sm-8, .zone-banner .col-md-8, .zone-banner .col-lg-8, .zone-banner .col-xs-9, .zone-banner .col-sm-9, .zone-banner .col-md-9, .zone-banner .col-lg-9, .zone-banner .col-xs-10, .zone-banner .col-sm-10, .zone-banner .col-md-10, .zone-banner .col-lg-10, .zone-banner .col-xs-11, .zone-banner .col-sm-11, .zone-banner .col-md-11, .zone-banner .col-lg-11, .zone-banner .col-xs-12, .zone-banner .col-sm-12, .zone-banner .col-md-12, .zone-banner .col-lg-12, .zone-banner .col-xs-13, .zone-banner .col-sm-13, .zone-banner .col-md-13, .zone-banner .col-lg-13, .zone-banner .col-xs-14, .zone-banner .col-sm-14, .zone-banner .col-md-14, .zone-banner .col-lg-14, .zone-banner .col-xs-15, .zone-banner .col-sm-15, .zone-banner .col-md-15, .zone-banner .col-lg-15, .zone-banner .col-xs-16, .zone-banner .col-sm-16, .zone-banner .col-md-16, .zone-banner .col-lg-16, .zone-banner .col-xs-17, .zone-banner .col-sm-17, .zone-banner .col-md-17, .zone-banner .col-lg-17, .zone-banner .col-xs-18, .zone-banner .col-sm-18, .zone-banner .col-md-18, .zone-banner .col-lg-18, .zone-banner .col-xs-19, .zone-banner .col-sm-19, .zone-banner .col-md-19, .zone-banner .col-lg-19, .zone-banner .col-xs-20, .zone-banner .col-sm-20, .zone-banner .col-md-20, .zone-banner .col-lg-20, .zone-banner .col-xs-21, .zone-banner .col-sm-21, .zone-banner .col-md-21, .zone-banner .col-lg-21, .zone-banner .col-xs-22, .zone-banner .col-sm-22, .zone-banner .col-md-22, .zone-banner .col-lg-22, .zone-banner .col-xs-23, .zone-banner .col-sm-23, .zone-banner .col-md-23, .zone-banner .col-lg-23, .zone-banner .col-xs-24, .zone-banner .col-sm-24, .zone-banner .col-md-24, .zone-banner .col-lg-24 {
  margin: 0;
}

/* ################################# */
body {
  font-family: "PPObjectSans-Regular", sans-serif;
}
body.overflowhidden {
  overflow: hidden;
}

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

h1, .h1 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 40px;
    line-height: 45px;
  }
}

h2, .h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
h2.animate, .h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

h3, .h3 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
}
h3.animate, .h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
h3.animate a, .h3.animate a {
  opacity: 1 !important;
}

h4, .h4 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
}
h4.animate, .h4.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

h5, .h5 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
h6, .h6 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  text-transform: initial;
}
@media (max-width: 991px) {
  h6, .h6 {
    font-size: 19px;
    line-height: 30px;
  }
}
.p-intro {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.p-intro.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.p-large {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.p-large.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

hr {
  border-color: rgba(237, 27, 47, 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(.list-group-item.active) {
  color: #29292A;
  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(.list-group-item.active):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(.list-group-item.active):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(.list-group-item.active):focus {
  color: #29292A;
  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(.object-principal_investigator):not(.object-team_members) {
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 25px;
  list-style-type: none;
}
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(.object-principal_investigator):not(.object-team_members) li {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 0;
}
ol li.animate, 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(.object-principal_investigator):not(.object-team_members) li.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
ol li.animate, 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(.object-principal_investigator):not(.object-team_members) li.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
ol li.animate span, 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(.object-principal_investigator):not(.object-team_members) li.animate span {
  opacity: 1 !important;
}
ol li:before, 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(.object-principal_investigator):not(.object-team_members) li:before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #ED1B2F;
  position: absolute;
  margin-left: -20px;
  margin-top: 11px;
}
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(.object-principal_investigator):not(.object-team_members) li::marker {
  display: none;
}
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(.object-principal_investigator):not(.object-team_members) 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(.object-principal_investigator):not(.object-team_members) li ol {
  margin-top: 0;
  margin-bottom: 0;
}

ol {
  padding-left: 15px;
}

/*###########################  BOUTONS  ###########################*/
.btn, input.btn, a.btn {
  /*
  font-family: $font;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  height: 55px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  border-radius: 50px;
  &:hover, &:active, &:focus {
  	text-decoration: none;
  }
  @include max-sm {
  	white-space: normal !important;
  }
  */
}
.btn.btn-primary, .btn.btn-default, input.btn.btn-primary, input.btn.btn-default, a.btn.btn-primary, a.btn.btn-default {
  /*
  background-color: $secondary;
  color: $clrWhite;
  transition: all 150ms;
  border: 1px solid $secondary;
  &:hover, &:active, &:focus {
  	background-color: $primary;
  	border: 1px solid $primary;
  	color: $secondary;
  }
  */
}
.btn.btn-link, .btn.btn-back, .btn.btn-secondary, input.btn.btn-link, input.btn.btn-back, input.btn.btn-secondary, a.btn.btn-link, a.btn.btn-back, a.btn.btn-secondary {
  /*
  background-color: transparent;
  color: $secondary;
  transition: all 150ms;
  border: 1px solid $clrBlack;
  &:hover, &:active, &:focus {
  	background-color: $secondary;
  	color: $clrWhite;
  	border: 1px solid $secondary;
  }
  */
}

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

.back-to-list {
  /*
  height: 55px!important;
  padding: 0px 30px!important;
  background-color: transparent!important;
  color: $secondary!important;
  transition: all 150ms!important;
  border: 1px solid $clrBlack!important;
  &:hover, &:active, &:focus {
  	text-decoration: none!important;
  	background-color: $secondary!important;
  	color: $clrWhite!important;
  	border: 1px solid $secondary!important;
  }
  */
}

/*###########################  BOUTONS  ###########################*/
p:has(> a.btn-huge-arrow-top) {
  opacity: 1 !important;
}

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

.btn, input.btn, a.btn {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
}
.btn:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete), input.btn:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete), a.btn:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.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;
}
.btn:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate, input.btn:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate, a.btn:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .btn, input.btn, a.btn {
    white-space: normal !important;
  }
}
.btn.btn-primary, .btn.btn-default, input.btn.btn-primary, input.btn.btn-default, a.btn.btn-primary, a.btn.btn-default {
  background-color: transparent;
  color: #29292A;
  transition: all 150ms;
  border: 1px solid #ED1B2F;
  padding: 15px 35px;
  border-radius: 50px;
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus, .btn.btn-default:hover, .btn.btn-default:active, .btn.btn-default:focus, input.btn.btn-primary:hover, input.btn.btn-primary:active, input.btn.btn-primary:focus, input.btn.btn-default:hover, input.btn.btn-default:active, input.btn.btn-default:focus, a.btn.btn-primary:hover, a.btn.btn-primary:active, a.btn.btn-primary:focus, a.btn.btn-default:hover, a.btn.btn-default:active, a.btn.btn-default:focus {
  background-color: #ED1B2F;
  border: 1px solid #ED1B2F;
  color: #fff;
}
.btn.btn-primary-important, input.btn.btn-primary-important, a.btn.btn-primary-important {
  background-color: transparent !important;
  color: #29292A !important;
  transition: all 150ms !important;
  border: 1px solid #ED1B2F !important;
  padding: 15px 35px !important;
  border-radius: 50px !important;
}
.btn.btn-primary-important:hover, .btn.btn-primary-important:active, .btn.btn-primary-important:focus, input.btn.btn-primary-important:hover, input.btn.btn-primary-important:active, input.btn.btn-primary-important:focus, a.btn.btn-primary-important:hover, a.btn.btn-primary-important:active, a.btn.btn-primary-important:focus {
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  color: #fff !important;
}
.btn.btn-primary-revert, input.btn.btn-primary-revert, a.btn.btn-primary-revert {
  background-color: transparent;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #ED1B2F;
  padding: 15px 35px;
  border-radius: 50px;
}
.btn.btn-primary-revert:hover, .btn.btn-primary-revert:active, .btn.btn-primary-revert:focus, input.btn.btn-primary-revert:hover, input.btn.btn-primary-revert:active, input.btn.btn-primary-revert:focus, a.btn.btn-primary-revert:hover, a.btn.btn-primary-revert:active, a.btn.btn-primary-revert:focus {
  background-color: #ED1B2F;
  border: 1px solid #ED1B2F;
  color: #fff;
}
.btn.btn-primary-revert-important, input.btn.btn-primary-revert-important, a.btn.btn-primary-revert-important {
  background-color: transparent !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: 1px solid #ED1B2F !important;
  padding: 15px 35px !important;
  border-radius: 50px !important;
}
.btn.btn-primary-revert-important:hover, .btn.btn-primary-revert-important:active, .btn.btn-primary-revert-important:focus, input.btn.btn-primary-revert-important:hover, input.btn.btn-primary-revert-important:active, input.btn.btn-primary-revert-important:focus, a.btn.btn-primary-revert-important:hover, a.btn.btn-primary-revert-important:active, a.btn.btn-primary-revert-important:focus {
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  color: #fff !important;
}
.btn.btn-secondary, input.btn.btn-secondary, a.btn.btn-secondary {
  background-color: transparent;
  color: #3E4E63;
  transition: all 150ms;
  border: 0;
  border-bottom: 1px solid #ED1B2F;
  padding: 0 0 15px 0;
  border-radius: 0;
}
.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: transparent;
  border-bottom: 1px solid #3E4E63;
  color: #ED1B2F;
  text-decoration: none !important;
}
.btn.btn-link, .btn.btn-back, input.btn.btn-link, input.btn.btn-back, a.btn.btn-link, a.btn.btn-back {
  background-color: transparent;
  color: #ED1B2F;
  transition: all 150ms;
  border: 1px solid #000;
}
.btn.btn-link:hover, .btn.btn-link:active, .btn.btn-link:focus, .btn.btn-back:hover, .btn.btn-back:active, .btn.btn-back:focus, input.btn.btn-link:hover, input.btn.btn-link:active, input.btn.btn-link:focus, input.btn.btn-back:hover, input.btn.btn-back:active, input.btn.btn-back:focus, a.btn.btn-link:hover, a.btn.btn-link:active, a.btn.btn-link:focus, a.btn.btn-back:hover, a.btn.btn-back:active, a.btn.btn-back:focus {
  background-color: #ED1B2F;
  color: #fff;
  border: 1px solid #ED1B2F;
}

.btn-link {
  background-color: transparent;
  color: #ED1B2F;
  transition: all 150ms;
  border: 1px solid #000;
}
.btn-link:hover, .btn-link:active, .btn-link:focus {
  background-color: #ED1B2F;
  color: #fff;
  border: 1px solid #ED1B2F;
}

.btn-arrow {
  position: relative;
  display: block;
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  border-radius: 50px;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
  text-transform: inherit;
  transition: all 300ms;
}
.btn-arrow:after {
  content: "";
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/btn-arrow-icon.svg");
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  right: 7px;
  top: 10px;
  width: 11px;
  height: 7px;
}
.btn-arrow:hover, .btn-arrow:focus {
  background-color: #fff !important;
  border: 1px solid #ED1B2F;
  text-decoration: none;
}
.btn-arrow:hover:after, .btn-arrow:focus:after {
  filter: invert(20%) sepia(61%) saturate(4891%) hue-rotate(344deg) brightness(93%) contrast(100%);
}

.btn-arrow-big {
  position: relative;
  display: block;
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  border-radius: 50px;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  text-transform: inherit;
  transition: all 300ms;
}
.btn-arrow-big:after {
  content: "";
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/btn-arrow-icon.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  transform: rotate(-90deg);
  right: 7px;
  top: 12px;
  width: 17px;
  height: 8px;
}
.btn-arrow-big:hover, .btn-arrow-big:focus {
  background-color: #fff !important;
  border: 1px solid #ED1B2F;
  text-decoration: none;
}
.btn-arrow-big:hover:after, .btn-arrow-big:focus:after {
  filter: invert(20%) sepia(61%) saturate(4891%) hue-rotate(344deg) brightness(93%) contrast(100%);
}

.btn-arrow-big-down {
  position: relative;
  display: block;
  background-color: transparent !important;
  border: 2px solid #ED1B2F !important;
  border-radius: 50px;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
  width: 56px;
  height: 56px;
  padding: 0;
  margin: 0;
  text-transform: inherit;
  transition: all 300ms;
}
.btn-arrow-big-down:after {
  content: "";
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-btn-arrow-big.svg");
  background-repeat: no-repeat;
  right: 16px;
  top: 22px;
  width: 19px;
  height: 11px;
}
.btn-arrow-big-down:hover, .btn-arrow-big-down:focus {
  background-color: #fff !important;
  border: 1px solid #ED1B2F;
  text-decoration: none;
}
.btn-arrow-big-down:hover:after, .btn-arrow-big-down:focus:after {
  filter: invert(20%) sepia(61%) saturate(4891%) hue-rotate(344deg) brightness(93%) contrast(100%);
}

.btn-huge-arrow-top {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #ED1B2F !important;
  border: 2px solid #ED1B2F !important;
  color: #fff;
  text-decoration: none;
  border-radius: 87px;
  font-size: 36px !important;
  line-height: 41px !important;
  /*
  font-size: 40px!important;
  line-height: 45px!important;
  */
  padding: 40px 80px;
  margin: 0;
  min-width: 380px !important;
  text-transform: inherit;
  transition: all 1.5s;
}
@media (max-width: 991px) {
  .btn-huge-arrow-top {
    font-size: 30px !important;
    line-height: 35px !important;
    min-width: 320px !important;
    padding: 40px 60px;
  }
}
.btn-huge-arrow-top:after {
  content: "";
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-btn-arrow-big.svg") #fff;
  background-repeat: no-repeat;
  background-position: center center;
  left: calc(50% - 33px);
  top: -30px;
  border: 2px solid #ED1B2F !important;
  width: 56px;
  height: 56px;
  border-radius: 50px;
  transform: rotate(-90deg);
  -webkit-box-shadow: 0px 0px 0px 8px #fff;
  box-shadow: 0px 0px 0px 8px #fff;
}
.btn-huge-arrow-top:hover, .btn-huge-arrow-top:focus {
  background-color: #ED1B2F !important;
  border: 2px solid #ED1B2F;
  color: #fff;
  text-decoration: none;
}
.btn-huge-arrow-top.animate {
  transition: all 1.5s;
  background-color: transparent !important;
  color: #ED1B2F;
  border: 2px solid #ED1B2F !important;
  text-decoration: none;
}
.btn-huge-arrow-top.animate:hover, .btn-huge-arrow-top.animate:focus {
  background-color: #ED1B2F !important;
  border: 2px solid #ED1B2F;
  color: #fff;
  text-decoration: none;
}

.btn-plus {
  position: relative;
  display: block;
  text-transform: inherit;
  color: #29292A;
  padding-left: 40px;
  transition: all 300ms;
}
.btn-plus:before {
  content: "";
  position: absolute;
  display: block;
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  border-radius: 50px;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0 0 0 -40px;
  transition: all 300ms;
}
.btn-plus:after {
  content: "";
  position: absolute;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14.548" height="14.547" viewBox="0 0 14.548 14.547"><g id="Groupe_18035" data-name="Groupe 18035" transform="translate(-42.926 -4151.527)"><line id="Ligne_67" data-name="Ligne 67" x2="14.548" transform="translate(42.926 4158.801)" fill="none" stroke="%23fff" stroke-width="2"/><line id="Ligne_68" data-name="Ligne 68" x2="14.548" transform="translate(50.199 4151.527) rotate(90)" fill="none" stroke="%23fff" stroke-width="2"/></g></svg>');
  background-repeat: no-repeat;
  background-size: 14px;
  margin: 0px 0 0 -33px;
  width: 15px;
  height: 15px;
  transition: all 300ms;
}
.btn-plus:hover, .btn-plus:focus {
  text-decoration: none;
  color: #29292A;
}
.btn-plus:hover:before, .btn-plus:focus:before {
  background-color: #fff !important;
  border: 1px solid #ED1B2F;
}
.btn-plus:hover:after, .btn-plus:focus:after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14.548" height="14.547" viewBox="0 0 14.548 14.547"><g id="Groupe_18035" data-name="Groupe 18035" transform="translate(-42.926 -4151.527)"><line id="Ligne_67" data-name="Ligne 67" x2="14.548" transform="translate(42.926 4158.801)" fill="none" stroke="%23ED1B2F" stroke-width="2"/><line id="Ligne_68" data-name="Ligne 68" x2="14.548" transform="translate(50.199 4151.527) rotate(90)" fill="none" stroke="%23ED1B2F" stroke-width="2"/></g></svg>');
}

.btn-action {
  background-color: transparent !important;
  color: #29292A !important;
  transition: all 150ms !important;
  border: 1px solid #ED1B2F !important;
  padding: 15px 35px !important;
  border-radius: 50px !important;
}
.btn-action:hover, .btn-action:active, .btn-action:focus {
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  color: #fff !important;
}

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

/** Quick Fix **/
.field-object-create-element {
  background-color: transparent;
  color: #3E4E63;
  transition: all 150ms;
  border: 0;
  border-bottom: 1px solid #ED1B2F;
  padding: 0 0 15px 0;
  border-radius: 0;
}
.field-object-create-element:hover, .field-object-create-element:active, .field-object-create-element:focus {
  background-color: transparent;
  border-bottom: 1px solid #3E4E63;
  color: #ED1B2F;
  text-decoration: none !important;
}

.field-object-save-cancel {
  opacity: 1 !important;
  background-color: transparent !important;
  color: #3E4E63 !important;
  transition: all 150ms !important;
  border: 0 !important;
  border-bottom: 1px solid #ED1B2F !important;
  padding: 0 0 15px 0 !important;
  border-radius: 0 !important;
}
.field-object-save-cancel:hover, .field-object-save-cancel:active, .field-object-save-cancel:focus {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #3E4E63 !important;
  color: #ED1B2F !important;
}

.field-object-save-element {
  opacity: 1 !important;
}

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

form.form-horizontal .row .col-sm-12, form.form-horizontal .row .col-sm-24 {
  padding-left: 15px;
  padding-right: 15px;
}

/* 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 .section-title,
form.search-form .section-title {
  margin-top: 20px;
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
}
form.form-horizontal .section-title.animate,
form.search-form .section-title.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
form.form-horizontal .section-title.animate a,
form.search-form .section-title.animate a {
  opacity: 1 !important;
}
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 .control-label--required,
form.search-form .control-label--required {
  color: #29292A;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  /* 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-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 0;
}
form.form-horizontal .form-group label.control-label--required,
form.search-form .form-group label.control-label--required {
  padding-left: 5px;
  color: #3E4E63;
}
form.form-horizontal .form-group input:not(.btn):not(#q), form.form-horizontal .form-group select, form.form-horizontal .form-group textarea,
form.search-form .form-group input:not(.btn):not(#q),
form.search-form .form-group select,
form.search-form .form-group textarea {
  background-color: #F2F2F5;
  color: #3E4E63 !important;
  border: none;
  border-radius: 3px;
}
form.form-horizontal .form-group select, form.form-horizontal .form-group input.form-control, form.form-horizontal .form-group .chosen-choices,
form.search-form .form-group select,
form.search-form .form-group input.form-control,
form.search-form .form-group .chosen-choices {
  border: none !important;
  padding: 15px !important;
  height: 60px !important;
}
form.form-horizontal .form-group textarea,
form.search-form .form-group textarea {
  border: none !important;
  padding: 15px !important;
}
form.form-horizontal .form-group select,
form.search-form .form-group select {
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  background: #F2F2F5 url(https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-btn-arrow-big.svg) no-repeat right 15px center !important;
  border-radius: 3px;
  color: #29292A !important;
  padding-right: 0 !important;
  position: relative;
}
form.form-horizontal .form-group select:before,
form.search-form .form-group select:before {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: calc(100% - 25px);
  right: 48px;
  background-color: #C0C1CC;
}
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: #F2F2F5 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: #ED1B2F !important;
  font-size: 15px;
  padding-left: 15px !important;
  border: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice span, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice span,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice span,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice span {
  vertical-align: -webkit-baseline-middle;
  margin: 0px 5px 0px 0 !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice .search-choice-close, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice .search-choice-close,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice .search-choice-close {
  right: auto;
  left: 0;
  top: 9px !important;
  filter: invert(1);
}
form.form-horizontal .form-group ul.error,
form.search-form .form-group ul.error {
  margin: 0;
}
form.form-horizontal .form-group ul.error li.text-danger,
form.search-form .form-group ul.error li.text-danger {
  padding: 3px 10px 0px 10px;
  color: #000;
  background-color: #ffcece;
  font-size: 12px;
}
form.form-horizontal p.form-control-static,
form.search-form p.form-control-static {
  padding-top: 0;
  margin-top: 0;
}
form.form-horizontal .crm-footer-frame,
form.search-form .crm-footer-frame {
  margin-top: 5px;
}

/* Miscellaneous forms */
#ui-form .ui-section__content {
  background-color: rgba(237, 27, 47, 0.1);
}
#ui-form .ui-section__content h2 {
  color: #ED1B2F;
}

.overrideformtitle .zone-crm h1 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .overrideformtitle .zone-crm h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
.overrideformtitle .zone-crm h1.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

#form-formbuilder .help-block {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 15px;
  color: #3E4E63;
  font-size: 14px;
  line-height: 24px;
}

.chosen-container .chosen-results li.highlighted {
  background: #ED1B2F;
  color: #fff;
}

/* Formulaire Inscription membre/evenement*/
/*Styles Global*/
.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 {
  background-color: #fff;
  padding: 32px 0;
  /*Formulaire*/
  /*Récapitulatif*/
  /*Total box*/
  /*Bottom Nav*/
}
@media (max-width: 991px) {
  .zone-event .form-withProgress__wrapper,
  .zone-member .form-withProgress__wrapper {
    padding: 32px 16px;
  }
}
@media (max-width: 991px) {
  .zone-event .form-withProgress__wrapper,
  .zone-member .form-withProgress__wrapper {
    padding: 0;
  }
}
.zone-event .form-withProgress__wrapper .section > .row,
.zone-member .form-withProgress__wrapper .section > .row {
  /*
  margin-left: 0;
  margin-right: 0;
  */
}
.zone-event .form-withProgress__wrapper .section > .row > div,
.zone-member .form-withProgress__wrapper .section > .row > div {
  /*
  padding-left: 3px;
  padding-right: 3px;
  */
}
.zone-event .form-withProgress__wrapper .form-element-i1_price > div, .zone-event .form-withProgress__wrapper .form-element-i1_price > span,
.zone-member .form-withProgress__wrapper .form-element-i1_price > div,
.zone-member .form-withProgress__wrapper .form-element-i1_price > span {
  padding-left: 3px !important;
  padding-right: 3px;
}
.zone-event .form-withProgress__wrapper h2.section-title,
.zone-member .form-withProgress__wrapper h2.section-title {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  margin-top: 32px;
}
.zone-event .form-withProgress__wrapper h2.section-title.animate,
.zone-member .form-withProgress__wrapper h2.section-title.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .form-withProgress__wrapper h2.section-title.animate a,
.zone-member .form-withProgress__wrapper h2.section-title.animate a {
  opacity: 1 !important;
}
.zone-event .form-withProgress__wrapper fieldset h2,
.zone-member .form-withProgress__wrapper fieldset h2 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  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 fieldset > .row,
.zone-member .form-withProgress__wrapper fieldset > .row {
  /*
  margin-left: 0;
  margin-right: 0;
  */
}
.zone-event .form-withProgress__wrapper fieldset > .row > div,
.zone-member .form-withProgress__wrapper fieldset > .row > div {
  /*
  padding-left: 3px;
  padding-right: 3px;
  */
}
.zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
.zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  color: #3E4E63;
}
@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;
}
@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;
}
@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: #29292A;
  transition: all 150ms;
  border: 1px solid #ED1B2F;
  padding: 15px 35px;
  border-radius: 50px;
}
.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: #ED1B2F;
  border: 1px solid #ED1B2F;
  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 {
  background-color: transparent !important;
  color: #3E4E63 !important;
  transition: all 150ms !important;
  border: 0 !important;
  border-bottom: 1px solid #ED1B2F !important;
  padding: 0 0 15px 0 !important;
  border-radius: 0 !important;
  margin-right: 32px;
  /*@extend .blue;*/
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:active, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:active,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:active,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #3E4E63 !important;
  color: #ED1B2F !important;
}
@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 .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 {
  text-decoration: none !important;
}

/*ETAPES INSCRIPTION NOUVEAU MEMBRE*/
/*Étapes 1 - Type d'adhesion*/
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form {
    padding: 0;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list h2 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  padding-bottom: 16px;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list h2.animate a {
  opacity: 1 !important;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item {
  border: 0;
  border-bottom: 1px solid rgba(28, 29, 31, 0.3019607843);
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .price-membership-badge {
  font-size: 14px;
  font-weight: 400;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .radio label {
  font-size: 14px;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .adh-date {
  font-size: 14px;
}
/*Étapes 2 - information de l'adherent*/
/*Étapes 3 - Résumé Informations*/
.step-resume .zone-member .form-withProgress__wrapper h2 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
}
.step-resume .zone-member .form-withProgress__wrapper h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.step-resume .zone-member .form-withProgress__wrapper h2.animate a {
  opacity: 1 !important;
}
.step-resume .zone-member .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion {
  padding-left: 0px;
  padding-right: 0px;
}
.step-resume .zone-member .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion span {
  color: #3E4E63;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset .col-sm-24 {
  padding: 0;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  color: #3E4E63 !important;
  padding-top: 32px !important;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset legend.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset legend.animate a {
  opacity: 1 !important;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset.row {
  margin-left: 0;
  margin-right: 0;
}
/*Étapes 4 - Paiements*/
.step-payment .zone-member h2 {
  padding-top: 56px;
}
@media (max-width: 991px) {
  .step-payment .zone-member .form-withProgress__wrapper {
    padding: 50px 64px;
  }
}
@media (max-width: 767px) {
  .step-payment .zone-member .form-withProgress__wrapper {
    padding: 0;
  }
}
.step-payment .zone-member .form-withProgress__wrapper #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 .form-withProgress__wrapper {
  padding: 0 0 32px 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc {
  padding: 0 0 32px 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc h3 {
  display: none;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition {
  border: 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add {
  background-color: transparent !important;
  color: #3E4E63 !important;
  transition: all 150ms !important;
  border: 0 !important;
  border-bottom: 1px solid #ED1B2F !important;
  padding: 0 0 15px 0 !important;
  border-radius: 0 !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:hover, .zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:active, .zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:focus {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #3E4E63 !important;
  color: #ED1B2F !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add.btn i.fa {
  display: none !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:hover {
  background-color: transparent;
  text-decoration: none !important;
}
.zone-event .form-withProgress__wrapper #event-authentication-form h2 {
  font-size: 28px;
  line-height: 35px;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #event-authentication-form h2 {
    font-size: 21px;
    line-height: 28px;
  }
}
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication p {
  padding-bottom: 32px;
}
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication .form-group {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 16px;
}
.zone-event .event-login h1 {
  text-align: center;
  margin-bottom: 64px;
  font-size: 40px;
}
@media (max-width: 767px) {
  .zone-event .event-login h1 {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .zone-event .event-subscription {
    padding: 0;
  }
}

/*Étapes 2 - Résumé Informations*/
@media (max-width: 991px) {
  .step-resume .zone-event .form-withProgress__wrapper {
    padding: 32px;
  }
}
@media (max-width: 991px) {
  .step-resume .zone-event .form-withProgress__wrapper {
    padding: 0px;
  }
}
.step-resume .zone-event .form-withProgress__wrapper h2.section-title {
  margin-bottom: 0;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset .col-sm-12 {
  padding: 0;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset .col-sm-24 {
  padding: 0;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset legend {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  padding-top: 32px;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset legend.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset legend.animate a {
  opacity: 1 !important;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
/*Étapes 3 - Paiements*/
.step-payment .zone-event .form-withProgress__wrapper h2 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  padding-top: 32px;
}
.step-payment .zone-event .form-withProgress__wrapper h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.step-payment .zone-event .form-withProgress__wrapper h2.animate a {
  opacity: 1 !important;
}
@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*/
/*###########################  TABLEAU  ###########################*/
/* ARTICLE CONTENT */
.regular tbody > tr:first-child td {
  background-color: #C0C1CC !important;
}
.regular tbody > tr:first-child td h4 {
  margin-bottom: 0;
  font-size: 18px;
}
.regular tbody > tr:nth-child(even) > td {
  background-color: #fff;
}
.regular tbody > tr:nth-child(odd) > td {
  background-color: #f7f7f7;
}
.regular tbody tr td {
  font-size: 15px;
  padding: 20px 20px;
}
.regular tbody tr td p {
  font-size: 15px !important;
}
/* basically le bottin de yapla */
.table-striped {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .table-striped {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .table-striped.top tbody {
    display: table;
    width: 100%;
  }
}
.table-striped.top tbody > tr:first-child td {
  background-color: #29292A !important;
}
.table-striped.top tbody > tr:first-child td h4 {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
}
.table-striped tbody > tr:nth-child(even) > td {
  background-color: #fff;
}
.table-striped tbody > tr:nth-child(odd) > td {
  background-color: #F2F2F5;
}
.table-striped tbody tr td {
  font-size: 15px;
  padding: 10px 10px;
}
.table-striped tbody tr td:not(:last-child) {
  border-right: 2px #fff solid;
}
.table-striped tbody tr td p {
  font-size: 15px !important;
  margin-bottom: 0 !important;
}
/*###########################  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(237, 27, 47, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  font-family: "PPObjectSans-Regular", sans-serif;
  letter-spacing: 2px;
  padding: 10px 0px;
}
.nav-tabs li a:hover, .nav-tabs li a:focus {
  background-color: transparent;
  color: rgba(237, 27, 47, 0.4);
  border-color: transparent;
}
.nav-tabs li.active:hover a, .nav-tabs li.active a {
  border-bottom: 5px solid #3E4E63;
  color: #ED1B2F;
}

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

/*###########################  ACCORDÉONS  ###########################*/
/* Note that this style apply for both native yapla accordions only */
.panel-default {
  background-color: transparent;
}

.panel-default > .panel-heading {
  border-bottom: none;
}

.panel-news-accordion {
  /* first accordion container */
  margin-top: 0px !important;
  border-bottom: 1px solid #ED1B2F !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 */
  /*@include h4;*/
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 0;
  padding-left: 30px;
}
.panel-news-accordion .panel-heading .panel-title a {
  padding: 33px 15px 22px 75px;
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  color: #3E4E63;
  text-decoration: none;
  text-transform: initial;
}
@media (max-width: 991px) {
  .panel-news-accordion .panel-heading .panel-title a {
    font-size: 30px;
    line-height: 35px;
  }
}
.panel-news-accordion .panel-heading .panel-title a.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-heading .panel-title a {
    font-size: 24px;
    line-height: 28px;
    padding: 33px 15px 22px 35px;
  }
}
.panel-news-accordion .panel-heading .panel-title a:after {
  content: "−";
  display: block;
  position: absolute;
  left: 0;
  top: 25px;
  font-size: 70px;
  font-weight: 100;
  color: #ED1B2F;
  transition: transform 150ms;
}
.panel-news-accordion .panel-heading .panel-title a.collapsed:after {
  content: "+";
}
.panel-news-accordion .panel-heading .panel-title a:not(.collapsed) {
  color: #ED1B2F;
}
.panel-news-accordion .panel-heading .panel-title a:hover {
  color: #ED1B2F;
}
.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: 0 15px 30px 105px;
  margin-top: -10px;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-body {
    padding: 0 15px 30px 70px;
  }
}
@media (max-width: 575px) {
  .panel-news-accordion .panel-body {
    padding: 0 15px 30px 10px;
  }
}
.panel-news-accordion .panel-body .news-accordion-content {
  margin: 20px 0;
}
.panel-news-accordion .panel-body h4 {
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body p {
  color: #000;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.panel-news-accordion .panel-body p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.panel-news-accordion .panel-body p a:not(.btn) {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  text-decoration: underline;
}
.panel-news-accordion .panel-body p a:not(.btn).animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.panel-news-accordion .panel-body p a:not(.btn):hover {
  color: #ED1B2F !important;
}
.panel-news-accordion .panel-body p a {
  opacity: 1 !important;
}
.panel-news-accordion .panel-body p br {
  display: block !important;
}
.panel-news-accordion .panel-body img {
  margin-top: 20px;
  margin-bottom: 10px;
}
.panel-news-accordion .panel-body .btn-link {
  margin-bottom: 40px;
}

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

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

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

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

*/
table.accordeon {
  display: block;
  width: 100% !important;
  border: 0;
  margin-bottom: 10px;
  /* active and opened content */
}
table.accordeon tbody, table.accordeon tr, table.accordeon td {
  border: 0;
}
table.accordeon tbody {
  display: block;
}
table.accordeon tbody tr {
  /* Title/accordeon box */
}
table.accordeon tbody tr:first-child {
  cursor: pointer;
  display: block;
  background-color: #F5F5F5;
  padding: 15px;
  position: relative;
}
table.accordeon tbody tr:first-child:after {
  content: "+";
  display: block;
  position: absolute;
  right: 15px;
  top: 13px;
  font-size: 30px;
  font-weight: 400;
  transition: transform 150ms;
}
table.accordeon tbody tr:last-child {
  display: block;
}
table.accordeon tbody tr:last-child td {
  display: block;
  max-height: 0;
  overflow: hidden;
}
table.accordeon.active tbody tr:first-child:after {
  transform: rotate(45deg);
}
table.accordeon.active tbody tr:last-child {
  padding: 15px;
  background-color: #F5F5F5;
}
table.accordeon.active tbody tr:last-child td {
  max-height: 5000px;
  transition: max-height 1.5s;
}

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

.modal {
  z-index: 10001 !important;
}
.modal .modal-dialog .modal-content {
  background-color: #fff;
}
.modal .modal-dialog .modal-content .modal-header {
  margin-top: 8px;
  padding: 16px 31px;
  flex-direction: column;
}
.modal .modal-dialog .modal-content .modal-header button.close {
  color: #3E4E63;
}
.modal .modal-dialog .modal-content .modal-header button.close:hover {
  color: #ED1B2F;
}
.modal .modal-dialog .modal-content .modal-body {
  /* Input Global Style */
}
.modal .modal-dialog .modal-content .modal-body input:not(.btn), .modal .modal-dialog .modal-content .modal-body select, .modal .modal-dialog .modal-content .modal-body textarea {
  background-color: #F2F2F5 !important;
  color: #3E4E63 !important;
  border: none;
}
.modal .modal-dialog .modal-content .modal-body h2 {
  opacity: 1 !important;
}
/*###########################  BARRE DE PROGRÈS  ###########################*/
.nav-pills {
  background-image: none;
}

.nav-progress {
  margin: 8rem 0;
  position: relative;
}
@media (max-width: 575px) {
  .nav-progress {
    flex-direction: column;
    justify-content: space-between;
  }
}
.nav-progress:after {
  content: "";
  width: 100%;
  height: 2px;
  bottom: -28px;
  position: absolute;
  display: block;
  background-color: #cdcdcd;
}
.nav-progress li.disabled {
  opacity: 1;
}
@media (max-width: 575px) {
  .nav-progress li.disabled {
    height: 0;
    opacity: 0;
  }
}
.nav-progress li.disabled a {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-align: left;
  float: none;
  font-size: 20px;
  line-height: 22px;
  font-weight: 300;
  text-transform: none;
  color: #ED1B2F;
  margin-top: -28px;
  padding-left: 32px;
  padding-top: 0;
  position: relative;
  width: fit-content;
}
@media (max-width: 1199px) {
  .nav-progress li.disabled a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .nav-progress li.disabled a {
    font-size: 10px;
  }
}
.nav-progress li.disabled a:before {
  content: "";
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  margin: auto;
  height: 1px;
  top: inherit;
  bottom: -28px;
  border-radius: 0;
  background-color: #3E4E63;
}
.nav-progress li.disabled a:hover, .nav-progress li.disabled a:focus {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-align: left;
  float: none;
  font-size: 20px;
  line-height: 22px;
  font-weight: 300;
  text-transform: none;
  color: #ED1B2F;
  margin-top: -28px;
  padding-left: 32px;
  padding-top: 0;
  position: relative;
  width: fit-content;
}
@media (max-width: 1199px) {
  .nav-progress li.disabled a:hover, .nav-progress li.disabled a:focus {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .nav-progress li.disabled a:hover, .nav-progress li.disabled a:focus {
    font-size: 10px;
  }
}
.nav-progress li.disabled:before {
  float: none;
  width: 100%;
  text-align: left;
  font-size: 40px;
  font-weight: 500;
  border: none;
  color: #ED1B2F;
  background-color: transparent;
  padding: 5px 20px 5px 0;
}
@media (max-width: 1199px) {
  .nav-progress li.disabled:before {
    padding: 5px 5px;
    font-size: 30px;
  }
}
.nav-progress li.disabled:after {
  display: none;
}
.nav-progress li.disabled.active {
  opacity: 1;
}
@media (max-width: 575px) {
  .nav-progress li.disabled.active {
    opacity: 1;
    height: initial;
  }
}
.nav-progress li.disabled.active a {
  color: #000;
  font-weight: 300;
}
.nav-progress li.disabled.active a:before {
  background-color: #ED1B2F;
  height: 9px;
}
.nav-progress li.disabled.active:before {
  font-weight: 500;
  color: #000;
  background-color: transparent;
}
.nav-progress li.disabled.active:after {
  display: none;
}
.nav-progress li.disabled.active ~ li a {
  color: #cdcdcd;
}
.nav-progress li.disabled.active ~ li a:before {
  background-color: #cdcdcd;
  height: 1px;
}
.nav-progress li.disabled.active ~ li:before {
  color: #cdcdcd;
  border-color: #3E4E63;
  background-color: transparent;
}
.nav-progress li.disabled.active ~ li:after {
  display: none;
}

.cookie-notice {
  right: 0 !important;
  left: auto !important;
  max-width: 790px !important;
  padding: 35px 20px 35px 80px !important;
  background: #fff !important;
  position: relative;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19) !important;
}
@media (max-width: 767px) {
  .cookie-notice {
    max-width: 100% !important;
    padding: 35px 80px 35px 20px !important;
  }
}
.cookie-notice:before {
  content: "";
  width: 150px;
  height: 100%;
  background-color: #F2F2F5;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 98;
}
@media (max-width: 767px) {
  .cookie-notice:before {
    width: 70px;
  }
}
.cookie-notice:after {
  content: "";
  width: 115px;
  height: 206px;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/logo-gdpr.svg");
  background-repeat: no-repeat;
  position: absolute;
  bottom: 70px;
  right: 35px;
  z-index: 99;
}
@media (max-width: 767px) {
  .cookie-notice:after {
    background-size: 100%;
    width: 60px;
    height: 108px;
    right: 10px;
  }
}
.cookie-notice h1, .cookie-notice h2, .cookie-notice h3, .cookie-notice h4, .cookie-notice h5, .cookie-notice h6, .cookie-notice p, .cookie-notice span, .cookie-notice ul, .cookie-notice li, .cookie-notice button {
  opacity: 1 !important;
}
.cookie-notice p {
  font-size: 17px;
  line-height: 24px;
}
.cookie-notice .cn-body {
  margin-right: 230px !important;
  position: relative;
  z-index: 100;
}
@media (max-width: 767px) {
  .cookie-notice .cn-body {
    margin-right: 0 !important;
  }
}
.cookie-notice .cn-body P.consent_notice_title_title {
  font-size: 30px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  color: #29292A !important;
}
.cookie-notice .cn-body span {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #3E4E63 !important;
}
.cookie-notice .cn-body span.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.cookie-notice .cn-learn-more {
  color: #ED1B2F !important;
  font-weight: 500 !important;
}
.cookie-notice .cn-learn-more:hover {
  color: #5d5d5d !important;
  font-weight: 500 !important;
}
.cookie-notice .cn-ok {
  flex-direction: column-reverse !important;
  gap: 30px;
  margin-top: 15px !important;
}
.cookie-notice .cn-ok .cn-buttons {
  margin-top: 20px;
  display: flex !important;
  flex-direction: row-reverse;
  width: auto !important;
}
@media (max-width: 767px) {
  .cookie-notice .cn-ok .cn-buttons {
    flex-direction: column-reverse !important;
  }
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-danger {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent !important;
  color: #3E4E63 !important;
  transition: all 150ms !important;
  border: 0 !important;
  border-bottom: 1px solid #ED1B2F !important;
  padding: 0 0 15px 0 !important;
  border-radius: 0 !important;
  font-weight: 500 !important;
  background-color: transparent !important;
  color: #3E4E63 !important;
  padding: 15px 0 !important;
  width: fit-content !important;
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-danger:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-danger:hover, .cookie-notice .cn-ok .cn-buttons .cm-btn-danger:active, .cookie-notice .cn-ok .cn-buttons .cm-btn-danger:focus {
  text-decoration: none;
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-danger:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .cookie-notice .cn-ok .cn-buttons .cm-btn-danger {
    white-space: normal !important;
  }
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-danger:hover, .cookie-notice .cn-ok .cn-buttons .cm-btn-danger:active, .cookie-notice .cn-ok .cn-buttons .cm-btn-danger:focus {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #3E4E63 !important;
  color: #ED1B2F !important;
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-danger:hover {
  color: #5d5d5d !important;
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-success {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent !important;
  color: #29292A !important;
  transition: all 150ms !important;
  border: 1px solid #ED1B2F !important;
  padding: 15px 35px !important;
  border-radius: 50px !important;
  margin-right: 35px !important;
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-success:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-success:hover, .cookie-notice .cn-ok .cn-buttons .cm-btn-success:active, .cookie-notice .cn-ok .cn-buttons .cm-btn-success:focus {
  text-decoration: none;
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-success:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .cookie-notice .cn-ok .cn-buttons .cm-btn-success {
    white-space: normal !important;
  }
}
.cookie-notice .cn-ok .cn-buttons .cm-btn-success:hover, .cookie-notice .cn-ok .cn-buttons .cm-btn-success:active, .cookie-notice .cn-ok .cn-buttons .cm-btn-success:focus {
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  color: #fff !important;
}
@media (max-width: 767px) {
  .cookie-notice .cn-ok .cn-buttons .cm-btn-success {
    margin-top: 30px !important;
    width: auto !important;
  }
}

.cookie-modal h1, .cookie-modal h2, .cookie-modal h3, .cookie-modal h4, .cookie-modal h5, .cookie-modal h6, .cookie-modal p, .cookie-modal span, .cookie-modal ul, .cookie-modal li, .cookie-modal button {
  opacity: 1 !important;
}
@media (max-width: 991px) {
  .cookie-modal .cm-modal {
    padding: 15px 15px 35px 15px !important;
    margin: 0px 20px;
    width: auto !important;
  }
}
@media (min-width: 992px) {
  .cookie-modal .cm-modal {
    padding: 15px 30px 35px 30px !important;
  }
}
.cookie-modal .cm-modal .cm-services {
  padding-left: 0 !important;
  margin-top: 20px !important;
}
@media (max-width: 575px) {
  .cookie-modal .cm-modal .cm-footer-buttons {
    flex-direction: column-reverse !important;
    justify-content: center !important;
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .cookie-modal .cm-modal .cm-footer-buttons .cm-btn {
    min-width: auto !important;
    width: fit-content;
  }
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent;
  color: #3E4E63;
  transition: all 150ms;
  border: 0;
  border-bottom: 1px solid #ED1B2F;
  padding: 0 0 15px 0;
  border-radius: 0;
  font-weight: 500 !important;
  background-color: transparent !important;
  color: #2F2F2F !important;
  padding: 15px 0 !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:hover, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:active, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:focus {
  text-decoration: none;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline {
    white-space: normal !important;
  }
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:hover, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:active, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:focus {
  background-color: transparent;
  border-bottom: 1px solid #3E4E63;
  color: #ED1B2F;
  text-decoration: none !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:hover {
  color: #5d5d5d !important;
  border: 0 !important;
  border-bottom: 1px solid #5d5d5d !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent !important;
  color: #29292A !important;
  transition: all 150ms !important;
  border: 1px solid #ED1B2F !important;
  padding: 15px 35px !important;
  border-radius: 50px !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:hover, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:active, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:focus {
  text-decoration: none;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success {
    white-space: normal !important;
  }
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:hover, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:active, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:focus {
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  color: #fff !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success.cm-btn-info {
  border: 2px solid #2F2F2F !important;
  background-color: transparent !important;
  color: #2F2F2F !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success.cm-btn-info:hover {
  text-decoration: none !important;
  border: 2px solid #5d5d5d !important;
  color: #5d5d5d !important;
}

@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;
}
.cookie-consent-modal P.consent-title {
  font-size: 30px !important;
  line-height: 32px !important;
  font-weight: 600 !important;
  color: #3E4E63 !important;
}
.cookie-consent-modal p.consent-description {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #3E4E63 !important;
}
.cookie-consent-modal p.consent-description.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.cookie-consent-modal p.consent-description a {
  text-decoration: underline;
}
.cookie-consent-modal p.consent-description a:hover {
  text-decoration: none;
}
.cookie-consent-modal .actions-container {
  justify-content: space-between !important;
}
.cookie-consent-modal .actions-container .btn-link {
  background-color: transparent;
  color: #3E4E63;
  transition: all 150ms;
  border: 0;
  border-bottom: 1px solid #ED1B2F;
  padding: 0 0 15px 0;
  border-radius: 0;
}
.cookie-consent-modal .actions-container .btn-link:hover, .cookie-consent-modal .actions-container .btn-link:active, .cookie-consent-modal .actions-container .btn-link:focus {
  background-color: transparent;
  border-bottom: 1px solid #3E4E63;
  color: #ED1B2F;
  text-decoration: none !important;
}
.zone-event_activities .event_activity_list_filter .search-form .form-horizontal .col-sm-12 .fc-datepicker > input {
  background: #f7f7f7 !important;
}
.zone-event_activities .activities-mosaic .row > div .item > h3 {
  color: #3E4E63;
}
.zone-news .search-form {
  padding-bottom: 85px;
}
.zone-news #news_content.news-mosaic .row > div h3.news-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  text-transform: initial;
  margin-bottom: 16px;
}
.zone-news #news_content.news-mosaic .row > div h3.news-title a {
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div h3.news-title a:hover {
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div a.news-category {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #3E4E63;
  text-transform: initial;
  margin-bottom: 20px;
  margin-bottom: 0;
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div a.news-category:hover {
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div p.news-published-date.e-date {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #3E4E63;
  text-transform: initial;
  margin-bottom: 20px;
  margin-bottom: 0;
}
.zone-news #news_content.news-mosaic .row > div div.news-intro {
  padding-top: 16px;
  margin-right: 32px;
}
.zone-news #news_content.news-mosaic .row > div div.news-tags {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-bottom: 16px;
}
.zone-news #news_content.news-mosaic .row > div div.news-tags a.news-tags {
  width: auto;
  height: auto;
  min-height: 40px;
  border-radius: 8px;
  background-color: #fff;
  display: block;
  color: #3E4E63;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7px 20px;
  margin-bottom: 0;
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div div.news-tags a.news-tags:hover {
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div img.news-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):not(:first-child):last-of-type {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent;
  color: #3E4E63;
  transition: all 150ms;
  border: 0;
  border-bottom: 1px solid #ED1B2F;
  padding: 0 0 15px 0;
  border-radius: 0;
  /*margin-top: 0;*/
  margin-top: 7px;
  display: table;
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):not(:first-child):last-of-type:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):not(:first-child):last-of-type:hover, .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):not(:first-child):last-of-type:active, .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):not(:first-child):last-of-type:focus {
  text-decoration: none;
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):not(:first-child):last-of-type:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):not(:first-child):last-of-type {
    white-space: normal !important;
  }
}
.zone-news #news_content.news-mosaic .row > div > a:not(.news-category):not(:first-child):last-of-type:hover, .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):not(:first-child):last-of-type:active, .zone-news #news_content.news-mosaic .row > div > a:not(.news-category):not(:first-child):last-of-type:focus {
  background-color: transparent;
  border-bottom: 1px solid #3E4E63;
  color: #ED1B2F;
  text-decoration: none !important;
}

/* Module articles en vedette */
.zone-news_flash .newsList .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.zone-news_flash .newsList .row .item .itemImage {
  margin-bottom: 0;
}
.zone-news_flash .newsList .row .item .itemImage a img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  /*height: 210px!important;*/
  object-fit: cover;
  object-position: center center;
}
.zone-news_flash .newsList .row .item p.itemInfos.e-date {
  margin-bottom: 0;
}
.zone-news_flash .newsList .row .item p.news-keywords {
  margin-bottom: 0;
}
.zone-news_flash a.viewAll {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent;
  color: #ED1B2F;
  transition: all 150ms;
  border: 1px solid #000;
}
.zone-news_flash a.viewAll:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.zone-news_flash a.viewAll:hover, .zone-news_flash a.viewAll:active, .zone-news_flash a.viewAll:focus {
  text-decoration: none;
}
.zone-news_flash a.viewAll:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .zone-news_flash a.viewAll {
    white-space: normal !important;
  }
}
.zone-news_flash a.viewAll:hover, .zone-news_flash a.viewAll:active, .zone-news_flash a.viewAll:focus {
  background-color: #ED1B2F;
  color: #fff;
  border: 1px solid #ED1B2F;
}

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

.zone-member {
  padding-bottom: 50px;
}
.zone-member h1, .zone-member h2, .zone-member h3, .zone-member h4, .zone-member h5, .zone-member h6, .zone-member p, .zone-member ul, .zone-member li, .zone-member ol div, .zone-member span {
  opacity: 1 !important;
}
.zone-member h2.registrations-title {
  font-size: 65px !important;
  line-height: 75px !important;
  font-weight: 500 !important;
  color: #ED1B2F !important;
  text-transform: initial !important;
}
@media (max-width: 991px) {
  .zone-member h2.registrations-title {
    font-size: 45px !important;
    line-height: 52px !important;
  }
}
@media (max-width: 767px) {
  .zone-member h2.registrations-title {
    font-size: 40px !important;
    line-height: 45px !important;
  }
}
.zone-member .member-login-wrapper {
  padding-top: 70px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 540px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .zone-member .member-login-wrapper {
    width: 100%;
  }
}
.zone-member .member-login-wrapper h1 {
  margin: 64px 0 54px 0;
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  color: #000;
  text-align: left;
  display: none;
}
@media (max-width: 991px) {
  .zone-member .member-login-wrapper h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
.zone-member .member-login-wrapper h1.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-member .member-login-wrapper #profile_login_form {
  width: 100%;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form {
  margin-bottom: 0;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type {
  position: relative;
  padding: 0;
  top: 0;
  text-align: right;
  font-size: 14px;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type a.reset-password {
  text-decoration: none;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type a.reset-password:hover {
  color: #ED1B2F;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form input#submit {
  margin-right: 16px;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription {
  background-color: transparent;
  color: #29292A;
  transition: all 150ms;
  border: 1px solid #ED1B2F;
  padding: 15px 35px;
  border-radius: 50px;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:hover, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:active, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:focus {
  background-color: #ED1B2F;
  border: 1px solid #ED1B2F;
  color: #fff;
}
.zone-member .member-resetpassword-wrapper {
  padding-top: 0;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 540px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .zone-member .member-resetpassword-wrapper {
    width: 100%;
  }
}
.zone-member .member-resetpassword-wrapper h1 {
  margin: 64px 0 15px 0;
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  color: #000;
  text-align: left;
}
@media (max-width: 991px) {
  .zone-member .member-resetpassword-wrapper h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
.zone-member .member-resetpassword-wrapper h1.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-member .member-resetpassword-wrapper #forget_password_form {
  width: 100%;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .form-element-email {
  margin-bottom: 2.8rem;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn {
  margin-right: 30px;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn-link {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent !important;
  color: #3E4E63 !important;
  transition: all 150ms !important;
  border: 0 !important;
  border-bottom: 1px solid #ED1B2F !important;
  padding: 0 0 15px 0 !important;
  border-radius: 0 !important;
  padding: 0 0 14px 0 !important;
  margin-top: 29px;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn-link:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.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 {
  text-decoration: none;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn-link:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .zone-member .member-resetpassword-wrapper #forget_password_form .btn-link {
    white-space: normal !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 {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #3E4E63 !important;
  color: #ED1B2F !important;
}
.zone-member .form-element-team_members .table-striped tbody tr td:first-child {
  word-break: break-all;
}
.zone-member .object-top-action {
  gap: 20px;
}
.zone-member .object-top-action .btn-link {
  background-color: transparent !important;
  color: #3E4E63 !important;
  transition: all 150ms !important;
  border: 0 !important;
  border-bottom: 1px solid #ED1B2F !important;
  padding: 0 0 15px 0 !important;
  border-radius: 0 !important;
}
.zone-member .object-top-action .btn-link:hover, .zone-member .object-top-action .btn-link:active, .zone-member .object-top-action .btn-link:focus {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #3E4E63 !important;
  color: #ED1B2F !important;
}
.zone-member .o-layout-item__list-group .list-group__wrapper .yapla-icon {
  color: #ccc;
  display: none !important;
}

/* Contenue personalisé */
/*Espace Evenements - Vue Details*/
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right {
    display: flex;
    flex-wrap: wrap;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
  display: flex;
  border-right: 1px solid #C0C1CC;
  width: 28%;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
    order: 2;
    border: none;
    background-color: #fff;
    padding: 0;
    width: 100%;
    text-align: left;
    flex-direction: column;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron {
  width: 100%;
  background-color: #fff;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__date {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  text-transform: none;
  margin-bottom: 0;
  padding-bottom: 20px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__date.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__date.animate a {
  opacity: 1 !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left [data-component=calendar-link] {
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .calendar-link-content .btn {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info .event-info__title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  font-weight: 800;
  margin-bottom: 5px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info .event-info__title.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .event-detail__description-additional {
  margin-top: 0;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .event-detail__description-additional.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .event-detail__description-additional strong {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  font-weight: 800;
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .event-detail__description-additional strong.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding-bottom: 25px;
  /*
  &:after {
      content:"";
      margin-top: 5px;
      border: none;
      background: url(https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/line-dashed.png) repeat-x left center;
      display: block;
      width:100%;
      height: 7px;
  }
  */
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .event-info__title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  font-weight: 800;
  margin-bottom: 0;
  padding-top: 15px;
  order: 1;
  border-bottom: none;
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .event-info__title.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .contact, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .phone, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .email {
  border-bottom: none;
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .contact {
  order: 3;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 0;
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .contact.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .phone {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .phone.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .email {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  order: 4;
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .email.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .places {
  order: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  font-weight: 800;
  margin-bottom: 10px;
  padding-top: 0;
  margin-top: 0;
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
  /*
  &:before {
      content:"";
      order: 5;
      margin-top: 15px;
      margin-bottom: 20px;
      border: none;
      background: url(https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/line-dashed.png) repeat-x left center;
      display: block;
      width:100%;
      height: 7px;
  }
  */
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .places.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .event-detail__description-additional {
  margin-top: 0;
  margin-bottom: 20px !important;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .event-detail__description-additional.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .event-detail__description-additional strong {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  font-weight: 800;
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .event-detail__description-additional strong.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent !important;
  color: #3E4E63 !important;
  transition: all 150ms !important;
  border: 0 !important;
  border-bottom: 1px solid #ED1B2F !important;
  padding: 0 0 15px 0 !important;
  border-radius: 0 !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:focus {
  text-decoration: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
    white-space: normal !important;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:focus {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #3E4E63 !important;
  color: #ED1B2F !important;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
    display: none;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
  display: flex;
  flex-direction: column;
  padding-left: 100px;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
    margin: 0 0 50px 0;
    padding: 0 30px;
    order: 1;
    width: 100%;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__category {
  order: 1;
  font-style: normal;
  font-size: 21;
  font-weight: 800;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__left-right__title {
  order: 0;
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  margin-top: 20px;
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__left-right__title {
    font-size: 30px;
    line-height: 35px;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__left-right__title.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .plugin-addthis {
  margin: 0;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description {
  order: 2;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description h2 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__image-wrapper {
  padding-bottom: 15px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__image-wrapper img {
  width: 100%;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  opacity: 1 !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper p:nth-child(1) {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper p:nth-child(1).animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper p a {
  text-decoration: underline !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description .event-detail__description-wrapper p a:hover {
  text-decoration: none !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-additional {
  order: 3;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper {
  margin-top: 20px;
  order: 4;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  text-transform: uppercase;
  color: #3E4E63;
  background: transparent;
  padding-left: 5px;
  margin: 0;
  line-height: 27px;
  text-transform: none;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent !important;
  color: #3E4E63 !important;
  transition: all 150ms !important;
  border: 0 !important;
  border-bottom: 1px solid #ED1B2F !important;
  padding: 0 0 15px 0 !important;
  border-radius: 0 !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:focus {
  text-decoration: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
    white-space: normal !important;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:focus {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #3E4E63 !important;
  color: #ED1B2F !important;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta {
  display: flex;
  flex-direction: row;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary {
  order: 2;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-back {
  order: 1;
  margin-right: 30px;
  padding: 0 0 0 0 !important;
}

/* Espace Evenement - Mosaique */
/*###########################  ESPACE MEMBRE  ###########################*/
.line-zone-membre {
  /*
  .container-fluid{
      max-width: 80%;

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

  }
  */
}

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

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

/*Événements en vedette - affichage mosaïque*/
.zone-event_flash .eventsList .row .col-sm .mod-eventflash__item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.zone-event_flash .eventsList .row .col-sm .mod-eventflash__item a img {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
/*Formulaire de Contact*/
/* Formulaire - Module Donnes*/
/* Image - (Default alignée à gauche) */
/*###########################  FIL D'ARIANE  ###########################*/
.line-breadcrumbs {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 1;
  position: relative;
}
.line-breadcrumbs.no-breadcrumbs {
  display: none;
}
.line-breadcrumbs .zone-breadcrumbs {
  text-align: right;
  min-height: 0;
}
.line-breadcrumbs .zone-breadcrumbs ul {
  max-width: 55%;
  position: absolute;
  right: 0;
  padding: 2px 15px 8px 15px;
  margin-top: -50px;
  animation-name: breadcrumbs;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
@media (max-width: 767px) {
  .line-breadcrumbs .zone-breadcrumbs ul {
    max-width: 75%;
    background-color: rgba(255, 255, 255, 0.8901960784);
    padding: 4px 30px 4px 10px;
    border-radius: 0 0 4px 4px;
    font-size: 10px;
    line-height: 14px;
  }
}
.line-breadcrumbs .zone-breadcrumbs ul li {
  line-height: 10px;
}
.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: 12px;
  line-height: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .line-breadcrumbs .zone-breadcrumbs ul li a, .line-breadcrumbs .zone-breadcrumbs ul li span {
    font-size: 10px;
    line-height: 14px;
  }
}
.line-breadcrumbs .zone-breadcrumbs ul li + li:before {
  content: "|";
  color: #3E4E63;
  font-weight: 500;
  padding: 0 3px;
}
.line-breadcrumbs .zone-breadcrumbs ul li.active {
  color: #ED1B2F;
}

.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: #C0C1CC;
  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: #3E4E63;
  display: block;
}
.zone-community .row .sidebar .jumbotron a {
  display: block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #3E4E63;
  text-transform: initial;
  padding-top: 17px;
  padding-bottom: 17px;
}
.zone-community .row .sidebar .jumbotron a:first-of-type {
  border-top: 1px solid #3E4E63;
}
.zone-community .row .sidebar .jumbotron a:first-of-type:hover, .zone-community .row .sidebar .jumbotron a:first-of-type:focus {
  color: #3E4E63;
  text-decoration: none;
}
.zone-community .row .sidebar .jumbotron a:last-of-type {
  border-top: 1px solid #3E4E63;
  position: relative;
  display: block;
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  border-radius: 50px;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
  text-transform: inherit;
  transition: all 300ms;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:after {
  content: "";
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/btn-arrow-icon.svg");
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  right: 7px;
  top: 10px;
  width: 11px;
  height: 7px;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:hover, .zone-community .row .sidebar .jumbotron a:last-of-type:focus {
  background-color: #fff !important;
  border: 1px solid #ED1B2F;
  text-decoration: none;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:hover:after, .zone-community .row .sidebar .jumbotron a:last-of-type:focus:after {
  filter: invert(20%) sepia(61%) saturate(4891%) hue-rotate(344deg) brightness(93%) contrast(100%);
}
.zone-community .row .sidebar .jumbotron + p {
  font-size: 21px;
  line-height: 26px;
  color: #3E4E63;
  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: #3E4E63;
  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: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent !important;
  color: #3E4E63 !important;
  transition: all 150ms !important;
  border: 0 !important;
  border-bottom: 1px solid #ED1B2F !important;
  padding: 0 0 15px 0 !important;
  border-radius: 0 !important;
  letter-spacing: 0;
}
.zone-community .row .content ul.nav li a:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 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;
}
.zone-community .row .content ul.nav li a:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@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 {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #3E4E63 !important;
  color: #ED1B2F !important;
}
.zone-community .row .content ul.nav li.active a {
  font-weight: 600;
  color: #3E4E63 !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: 18px;
  line-height: 22px;
  font-weight: 500;
  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: #3E4E63;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-toggle, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-toggle {
  min-height: 0;
  padding: 10px;
  background-color: #fff;
  border: 0;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-toggle .caret, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-toggle .caret {
  color: #000;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-menu li, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-menu li {
  margin-bottom: 0;
}
.zone-community .row .content .forum-message-child {
  padding: 37px 30px 30px;
}
.zone-community .row .content .forum-item__wrapper .forum-item-title {
  margin-right: 0;
}
.zone-community .row .content .forum-form__addMessage-wrapper #community_form_add_message {
  padding-top: 30px;
}
.zone-community .row .content #community-forum #community_form_add_message .section .form-group:last-of-type {
  padding-top: 20px;
}
.zone-community .row .content #community-forum .forum-item__btn-addMessage {
  margin-right: 25px;
}

.forum-item__likes-wrapper {
  padding-left: 0;
  padding-right: 0;
}
.forum-item__likes-wrapper button {
  background-color: transparent !important;
  border: none !important;
  color: #3E4E63 !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;
}

/*
@import "blogue/prebuilt-articles-vedette-col3.scss";
@import "blogue/prebuilt-articles-multiples-col3.scss";
*/
.prebuilt-articles-vedette-title-text-left-img-right {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #F2F2F5;
}
.prebuilt-articles-vedette-title-text-left-img-right.top {
  padding-top: 95px;
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div h2 {
  margin-bottom: 15px;
  font-weight: 700;
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div .content > .row {
  padding-top: 30px;
  padding-bottom: 20px;
  margin: 0;
  /*border-bottom:1px solid $fourth;*/
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div .content > .row:nth-child(1) {
  /*border-top:1px solid $fourth;*/
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div .content > .row .item {
  display: flex;
  gap: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  /*
  .actions {
      @include min-sm {
          margin-left: -100px;
      }
      margin-top:0;
      .btn-primary {
          @include btn;
          @include btn-link;
      }
  }
  */
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-title-text-left-img-right .container > .row > div .content > .row .item {
    flex-direction: column;
  }
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div .content > .row .item .itemImage {
  order: 2;
  width: 50%;
  text-align: right;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-title-text-left-img-right .container > .row > div .content > .row .item .itemImage {
    order: 1;
    width: 100%;
    text-align: left;
  }
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div .content > .row .item .itemImage img {
  width: 100%;
  max-width: 445px;
  border-radius: 5px;
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div .content > .row .item .intro {
  order: 1;
  width: 50%;
}
@media (max-width: 1199px) {
  .prebuilt-articles-vedette-title-text-left-img-right .container > .row > div .content > .row .item .intro {
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .prebuilt-articles-vedette-title-text-left-img-right .container > .row > div .content > .row .item .intro {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-title-text-left-img-right .container > .row > div .content > .row .item .intro {
    padding-right: 0;
    order: 1;
    width: 100%;
  }
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div .content > .row .item .intro p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div .content > .row .item .intro p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div a.viewAll {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent;
  color: #29292A;
  transition: all 150ms;
  border: 1px solid #ED1B2F;
  padding: 15px 35px;
  border-radius: 50px;
  margin-top: 80px;
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div a.viewAll:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div a.viewAll:hover, .prebuilt-articles-vedette-title-text-left-img-right .container > .row > div a.viewAll:active, .prebuilt-articles-vedette-title-text-left-img-right .container > .row > div a.viewAll:focus {
  text-decoration: none;
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div a.viewAll:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-title-text-left-img-right .container > .row > div a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-vedette-title-text-left-img-right .container > .row > div a.viewAll:hover, .prebuilt-articles-vedette-title-text-left-img-right .container > .row > div a.viewAll:active, .prebuilt-articles-vedette-title-text-left-img-right .container > .row > div a.viewAll:focus {
  background-color: #ED1B2F;
  border: 1px solid #ED1B2F;
  color: #fff;
}

/* 
Mosaique
1 collone
Résumer au centre
*/
.prebuilt-espace-evenements-col3 .zone-event #event_filter .form-element-keyword label {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  margin-bottom: 15px;
}
.prebuilt-espace-evenements-col3 .zone-event #event_filter .form-element-keyword label.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
  padding-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 80px;
}
@media (max-width: 991px) {
  .prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 60px;
  }
}
@media (max-width: 767px) {
  .prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 60px;
  }
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row {
  margin-top: 0;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item a img.e-thumbnail {
  margin-bottom: 40px;
  width: 100%;
  height: auto !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
  border-radius: 3px;
  aspect-ratio: 16/10;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item h3 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  color: #ED1B2F;
  margin-bottom: 0;
  opacity: 1 !important;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .e-date {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  text-transform: inherit;
  font-weight: 600;
  margin-bottom: 25px;
  opacity: 1 !important;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .e-date.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .events-mosaic__short-description {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  opacity: 1 !important;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .events-mosaic__short-description.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .address {
  display: none;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .contact {
  display: none;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item p {
  opacity: 1 !important;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions {
  opacity: 1 !important;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn {
  opacity: 1 !important;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn-default {
  background-color: transparent !important;
  color: #3E4E63 !important;
  transition: all 150ms !important;
  border: 0 !important;
  border-bottom: 1px solid #ED1B2F !important;
  padding: 0 0 15px 0 !important;
  border-radius: 0 !important;
  margin-right: 35px;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn-default:hover, .prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn-default:active, .prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn-default:focus {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #3E4E63 !important;
  color: #ED1B2F !important;
}

.prebuilt-articles-multiples-col3 .search-form {
  padding-bottom: 50px;
}
.prebuilt-articles-multiples-col3 .news-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 75px;
}
@media (max-width: 991px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 75px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 .news-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 60px 75px;
  }
}
.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 {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a {
  opacity: 1 !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a img.news-thumbnail {
  margin-bottom: 4rem !important;
  width: 100%;
  height: auto !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
  border-radius: 3px;
  aspect-ratio: 16/10;
  opacity: 1 !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div h3 {
  margin-bottom: 0 !important;
  opacity: 1 !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div h3 a {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  font-weight: 700;
  color: #ED1B2F !important;
  opacity: 1 !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div h3 a.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div p.e-date {
  margin-bottom: 0;
  display: inline;
  font-size: 14px !important;
  line-height: 18px !important;
  font-weight: 700 !important;
  position: relative;
  padding-right: 10px;
  opacity: 1 !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div p.e-date:after {
  content: "/";
  position: absolute;
  right: 1px;
  top: -1px;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a.news-category {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  font-size: 14px !important;
  line-height: 18px !important;
  font-weight: 700 !important;
  opacity: 1 !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a.news-category.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div p.news-keywords {
  margin-bottom: 0;
  opacity: 1 !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro {
  padding-top: 25px !important;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 0;
  opacity: 1 !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.news-intro p {
  font-size: 17px;
  line-height: 24px;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div div.actions a {
  margin-bottom: 0;
  opacity: 1 !important;
}
.prebuilt-articles-multiples-col3 .news-mosaic .row > div a:not(.news-category):last-of-type {
  margin-top: 30px !important;
}
.prebuilt-articles-multiples-col3 a.viewAll {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent;
  color: #ED1B2F;
  transition: all 150ms;
  border: 1px solid #000;
}
.prebuilt-articles-multiples-col3 a.viewAll:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.prebuilt-articles-multiples-col3 a.viewAll:hover, .prebuilt-articles-multiples-col3 a.viewAll:active, .prebuilt-articles-multiples-col3 a.viewAll:focus {
  text-decoration: none;
}
.prebuilt-articles-multiples-col3 a.viewAll:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .prebuilt-articles-multiples-col3 a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-multiples-col3 a.viewAll:hover, .prebuilt-articles-multiples-col3 a.viewAll:active, .prebuilt-articles-multiples-col3 a.viewAll:focus {
  background-color: #ED1B2F;
  color: #fff;
  border: 1px solid #ED1B2F;
}

.prebuilt-articles-vedette-col3 .newsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 75px;
}
@media (max-width: 991px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 75px;
  }
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 .newsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 60px 75px;
  }
}
.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: 4rem !important;
  width: 100%;
  height: auto !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
  border-radius: 3px;
  aspect-ratio: 16/10;
}
.prebuilt-articles-vedette-col3 .newsList .row .item h3 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  text-transform: initial;
  margin-bottom: 0 !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item h3 a {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  font-weight: 700;
  color: #ED1B2F !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item h3 a.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.prebuilt-articles-vedette-col3 .newsList .row .item h3 a:hover {
  text-decoration: none !important;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.itemInfos.e-date {
  margin-bottom: 0;
  display: inline;
  font-size: 14px !important;
  line-height: 18px !important;
  font-weight: 700 !important;
  position: relative;
  padding-right: 10px;
  text-transform: inherit;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.itemInfos.e-date:after {
  content: "/";
  position: absolute;
  right: 1px;
  top: -1px;
}
.prebuilt-articles-vedette-col3 .newsList .row .item p.news-keywords {
  margin-bottom: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item div.intro {
  padding-top: 25px !important;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 0;
}
.prebuilt-articles-vedette-col3 .newsList .row .item div.intro.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.prebuilt-articles-vedette-col3 .newsList .row .item div.intro p {
  font-size: 17px;
  line-height: 24px;
}
.prebuilt-articles-vedette-col3 a.viewAll {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent;
  color: #ED1B2F;
  transition: all 150ms;
  border: 1px solid #000;
}
.prebuilt-articles-vedette-col3 a.viewAll:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.prebuilt-articles-vedette-col3 a.viewAll:hover, .prebuilt-articles-vedette-col3 a.viewAll:active, .prebuilt-articles-vedette-col3 a.viewAll:focus {
  text-decoration: none;
}
.prebuilt-articles-vedette-col3 a.viewAll:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .prebuilt-articles-vedette-col3 a.viewAll {
    white-space: normal !important;
  }
}
.prebuilt-articles-vedette-col3 a.viewAll:hover, .prebuilt-articles-vedette-col3 a.viewAll:active, .prebuilt-articles-vedette-col3 a.viewAll:focus {
  background-color: #ED1B2F;
  color: #fff;
  border: 1px solid #ED1B2F;
}

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

body.lang-fr .sticky-button-bottom-right {
  right: -110px;
}

.sticky-button-bottom-right {
  transform: rotate(90deg);
  -webkit-transform-origin: 50% 51%;
  background-color: #ED1B2F;
  position: fixed;
  right: -100px;
  top: 360px;
  border: 1px solid #ED1B2F;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
  overflow: hidden;
  transition: all 150ms;
  z-index: 1;
  -webkit-animation: slideRight 1s;
  -moz-animation: slideRight 1s;
  -o-animation: slideRight 1s;
  animation: slideRight 1s;
}
@media (max-width: 991px) {
  .sticky-button-bottom-right {
    display: none;
  }
}
.sticky-button-bottom-right:hover {
  background-color: #fff;
  transition: translate 300ms background-color 150ms;
}
.sticky-button-bottom-right:hover:after, .sticky-button-bottom-right:hover:before {
  content: "";
  background-image: url("https://cdn.ca.yapla.com/company/CPYrIasrSgml9Osscl6TbL5t/asset/images/FM%202023/white-arrow.svg") !important;
}
.sticky-button-bottom-right a {
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff !important;
  padding: 8px 33px 13px 33px;
  display: block;
  transition: all 150ms;
}
.sticky-button-bottom-right a:hover {
  color: #ED1B2F !important;
  text-decoration: none !important;
}

/*
.line-dark-carousel {
    padding-top:130px;
    padding-bottom: 105px;
    background-color: $third;
    position:relative;
    overflow: hidden;
    @include max-sm{
        padding:20px 0 10px 0;
    }
    &.blue {
        background-color: $primary;
    }
    .container {
        >.row {
            .zone-carousel {
                max-height: 100%;
                height: auto;
                .carousel {
                    max-height: 100%;
                    height: auto;
                    .carousel-inner {
                        .item {
                            max-height: 100%;
                            height: auto;
                            &:before {
                                content:"";
                                background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/About%20us/carousel-bg-element.svg");
                                background-position: center center;
                                position: absolute;
                                display: block;
                                width: 332px;
                                height: 209px;
                                top:150px;
                                left:90px;
                            }
                            img {
                                width: auto;
                                width: 310px;
                                height: 390px;
                                margin-left: 0;
                                position:absolute;
                                border-radius: 5px;
                            }
                            .carousel-caption {
                                position: relative;
                                padding: 200px 0 0 490px;
                                width: auto;
                                text-shadow: none;
                                background-color: transparent;
                                .caption-intro {
                                    h3 {
                                        color: $clrWhite;
                                        font-size: 24px;
                                        line-height: 36px;
                                        font-style:italic;
                                        margin-bottom:35px;
                                    }
                                    h4 {
                                        color: $clrWhite;
                                        margin-bottom:5px;
                                    }
                                    p {
                                        color: $clrWhite;
                                    }
                                }
                            }
                        }
                    }
                    .carousel-control {
                        display:none;
                    }
                }
            }
        }
    }
}

.line-dark-carousel-control {
    z-index: 20;
    position: relative;
    .container {
        >.row {
            >div {
                min-height: 0;
                &:nth-child(2) {
                    width: 100%;
                    .content {
                        z-index: 1;
                        text-align: right;
                        margin-top: 270px;
                        position: absolute;
                        right: 80px;
                        .left {
                            margin-right: 1px!important;
                            margin-left: 0!important;
                        }
                        .right {
                            margin-left: 1px!important;
                        }
                        .carousel-control {
                            position:relative;
                            left:auto;
                            right:0;
                            background-image:none;
                            &:hover {
                                img {
                                    filter: opacity(0.5);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
*/
.yt-wrapper {
  position: relative;
  /*overflow: hidden;*/
  width: 100%;
  padding-top: 56.25%;
}

.yt-wrapper iframe {
  position: absolute;
  /*display:none;*/
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.yt-wrapper .yt-overlay {
  position: absolute;
  /*top: -20px;*/
  bottom: 0;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  object-fit: contain;
}

.yt-wrapper .yt-overlay img {
  width: 100%;
  height: 100% !important;
}

.yt-max {
  /*max-width: 546px;*/
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .line > .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.bgGreyLight {
  background-color: #F2F2F5;
}

.content-center-720 .content {
  width: 100%;
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
}

.form-center-740 #formbuilder-add-wrapper {
  width: 100%;
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
}

.form-white-field form.form-horizontal .form-group input, .form-white-field form.form-horizontal .form-group textarea, .form-white-field form.form-horizontal .form-group select {
  background-color: #fff !important;
}

/** MIXINS **/
/*
$lg-container: 1152px;
$md-container: 952px;
$sm-container: 768px;*/
/*
@mixin line-border-top {
    &:before {
        content:"";
        display: block;
        width:calc($lg-container - 30px);
        height: 1px;
        background-color: $clrGrey;
        margin-left: auto;
        margin-right: auto;
    }
}
.line-border-top {
    @include line-border-top;
}
*/
.bg-line-margin:before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  background-color: #F2F2F5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: 0 30px 0 30px;
}
@media (max-width: 767px) {
  .bg-line-margin:before {
    margin: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .bg-line-margin .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1092px) {
  .bg-line-margin .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 868px) {
  .bg-line-margin .container {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 767px) {
  .bg-line-margin .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.line-top {
  position: relative;
  overflow: hidden;
}
.line-top:after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #C0C1CC;
  top: 0;
  left: 0;
  right: 0;
}

.line-banner {
  overflow: hidden;
}
.line-banner:not(.img-not-bg):not(.red-bg-logo) {
  padding-bottom: 60px;
}
.line-banner:not(.img-not-bg):not(.red-bg-logo).long-title .container-fluid > .row > div:nth-child(2) .content {
  max-width: 610px;
}
@media (max-width: 991px) {
  .line-banner:not(.img-not-bg):not(.red-bg-logo).long-title .container-fluid > .row > div:nth-child(2) .content {
    padding: 60px 70px 0 0;
  }
}
@media (max-width: 767px) {
  .line-banner:not(.img-not-bg):not(.red-bg-logo) {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(1) {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 30px !important;
  }
}
.line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(1) .content {
  padding-right: 60px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(1) .content {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(1) .content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(1) .content:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: #fff;
  animation-name: img_appears;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0s;
}
.line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(1) .content img {
  width: 100% !important;
  height: 500px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 0px 0px 5px 0px;
}
@media (max-width: 767px) {
  .line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(1) .content img {
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(2) {
    width: 100%;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
.line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(2) .content {
  max-width: 610px;
  padding: 130px 70px 0 0;
}
@media (max-width: 991px) {
  .line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(2) .content {
    padding: 0 70px 0 0;
  }
}
@media (max-width: 767px) {
  .line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(2) .content {
    max-width: 100%;
    padding: 30px 0 0 0;
  }
}
.line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(2) .content h1 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  color: #29292A;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(2) .content h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(2) .content h1.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-banner:not(.img-not-bg):not(.red-bg-logo) .container-fluid > .row > div:nth-child(2) .content .btn-arrow-big-down {
  margin-top: 0;
}
.line-banner.img-not-bg {
  padding-top: 60px;
  padding-bottom: 60px;
}
.line-banner.img-not-bg .container > .row > div:nth-child(1) .content img {
  margin-left: 40px;
  opacity: 0;
  transform: translate(-150px, 0);
  animation-name: logo_banner_fade_slide;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0s;
}
@media (max-width: 1199px) {
  .line-banner.img-not-bg .container > .row > div:nth-child(1) .content img {
    width: 320px !important;
  }
}
@media (max-width: 991px) {
  .line-banner.img-not-bg .container > .row > div:nth-child(1) .content img {
    margin-left: 0;
    width: 300px !important;
  }
}
@media (max-width: 767px) {
  .line-banner.img-not-bg .container > .row > div:nth-child(1) .content img {
    margin-bottom: 40px;
    width: 180px !important;
  }
}
.line-banner.red-bg-logo {
  padding-top: 0;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .line-banner.red-bg-logo {
    padding-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .line-banner.red-bg-logo .container-fluid > .row {
    flex-direction: column;
  }
}
.line-banner.red-bg-logo .container-fluid > .row > div:nth-child(1) {
  display: flex;
}
@media (max-width: 767px) {
  .line-banner.red-bg-logo .container-fluid > .row > div:nth-child(1) {
    width: 100%;
    height: 150px;
    padding-right: 0;
  }
}
.line-banner.red-bg-logo .container-fluid > .row > div:nth-child(1) .content {
  background-color: #ED1B2F;
  margin-right: 60px;
  width: 100%;
  border-bottom-right-radius: 5px;
}
@media (max-width: 767px) {
  .line-banner.red-bg-logo .container-fluid > .row > div:nth-child(1) .content {
    margin-right: 0;
    border-bottom-right-radius: 0;
  }
}
.line-banner.red-bg-logo .container-fluid > .row > div:nth-child(1) .content img {
  position: absolute;
  top: -178px;
  left: -345px;
  transform: translate(-150px, 0);
  animation-name: logo_banner_slide;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0s;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-banner.red-bg-logo .container-fluid > .row > div:nth-child(1) .content img {
    width: 480px !important;
    min-width: 480px !important;
  }
}
@media (max-width: 767px) {
  .line-banner.red-bg-logo .container-fluid > .row > div:nth-child(1) .content img {
    width: 382px !important;
    top: -158px;
    left: -285px;
  }
}
@media (max-width: 767px) {
  .line-banner.red-bg-logo .container-fluid > .row > div:nth-child(2) {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.line-banner.red-bg-logo .container-fluid > .row > div:nth-child(2) .content, .line-banner.red-bg-logo .container-fluid > .row > div:nth-child(2) .mod-article__wrapper {
  max-width: 540px;
  margin-top: 60px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .line-banner.red-bg-logo .container-fluid > .row > div:nth-child(2) .content, .line-banner.red-bg-logo .container-fluid > .row > div:nth-child(2) .mod-article__wrapper {
    max-width: 440px;
  }
}
@media (max-width: 767px) {
  .line-banner.red-bg-logo .container-fluid > .row > div:nth-child(2) .content, .line-banner.red-bg-logo .container-fluid > .row > div:nth-child(2) .mod-article__wrapper {
    max-width: 100%;
    margin-top: 45px;
  }
}
.line-banner.red-bg-logo .container-fluid > .row > div:nth-child(2) .content p:last-child, .line-banner.red-bg-logo .container-fluid > .row > div:nth-child(2) .mod-article__wrapper p:last-child {
  margin-bottom: 0;
}
.line-banner.red-bg-logo .container-fluid > .row > div .mod-article__wrapper {
  display: flex;
  flex-direction: column;
}
.line-banner.red-bg-logo .container-fluid > .row > div .mod-article__wrapper p {
  order: 1;
}
.line-banner.red-bg-logo .container-fluid > .row > div .mod-article__wrapper h1 {
  order: 2;
}
.line-banner.red-bg-logo .container-fluid > .row > div .mod-article__wrapper a {
  order: 3;
}
.line-banner.collaborative-space {
  padding-bottom: 0 !important;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Home/banner-home.jpg");
  background-position: center center;
  background-size: cover;
}
.line-banner.collaborative-space .container-fluid > .row > div:nth-child(1) .content {
  position: relative;
}
.line-banner.collaborative-space .container-fluid > .row > div:nth-child(1) .content:after {
  right: 60px !important;
}
.line-banner.collaborative-space .container-fluid > .row > div:nth-child(2) .content h1 {
  color: #fff !important;
}
.line-banner.goodman-experience .container-fluid > .row > div:nth-child(1) img {
  object-position: top center !important;
}
.line-banner .container-fluid > .row, .line-banner .container > .row {
  display: flex;
  flex-wrap: wrap;
}
.line-banner .container-fluid > .row > div:nth-child(2), .line-banner .container > .row > div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.line-banner .container-fluid > .row > div:nth-child(2) .content h1, .line-banner .container-fluid > .row > div:nth-child(2) .mod-article__wrapper h1, .line-banner .container > .row > div:nth-child(2) .content h1, .line-banner .container > .row > div:nth-child(2) .mod-article__wrapper h1 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  color: #29292A;
  margin-bottom: 30px;
  transform: translate(50%, 0);
  opacity: 0;
  animation-name: element_fade_slide !important;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1s;
}
@media (max-width: 991px) {
  .line-banner .container-fluid > .row > div:nth-child(2) .content h1, .line-banner .container-fluid > .row > div:nth-child(2) .mod-article__wrapper h1, .line-banner .container > .row > div:nth-child(2) .content h1, .line-banner .container > .row > div:nth-child(2) .mod-article__wrapper h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-banner .container-fluid > .row > div:nth-child(2) .content h1.animate, .line-banner .container-fluid > .row > div:nth-child(2) .mod-article__wrapper h1.animate, .line-banner .container > .row > div:nth-child(2) .content h1.animate, .line-banner .container > .row > div:nth-child(2) .mod-article__wrapper h1.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-banner .container-fluid > .row > div:nth-child(2) .content h2, .line-banner .container-fluid > .row > div:nth-child(2) .mod-article__wrapper h2, .line-banner .container > .row > div:nth-child(2) .content h2, .line-banner .container > .row > div:nth-child(2) .mod-article__wrapper h2 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  color: #ED1B2F;
  transform: translate(50%, 0);
  opacity: 0;
  animation-name: element_fade_slide !important;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1s;
}
.line-banner .container-fluid > .row > div:nth-child(2) .content h2.animate, .line-banner .container-fluid > .row > div:nth-child(2) .mod-article__wrapper h2.animate, .line-banner .container > .row > div:nth-child(2) .content h2.animate, .line-banner .container > .row > div:nth-child(2) .mod-article__wrapper h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-banner .container-fluid > .row > div:nth-child(2) .content h2.animate a, .line-banner .container-fluid > .row > div:nth-child(2) .mod-article__wrapper h2.animate a, .line-banner .container > .row > div:nth-child(2) .content h2.animate a, .line-banner .container > .row > div:nth-child(2) .mod-article__wrapper h2.animate a {
  opacity: 1 !important;
}
.line-banner .container-fluid > .row > div:nth-child(2) .content p, .line-banner .container-fluid > .row > div:nth-child(2) .mod-article__wrapper p, .line-banner .container > .row > div:nth-child(2) .content p, .line-banner .container > .row > div:nth-child(2) .mod-article__wrapper p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  transform: translate(50%, 0);
  opacity: 0;
  animation-name: element_fade_slide !important;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1s;
}
.line-banner .container-fluid > .row > div:nth-child(2) .content p.animate, .line-banner .container-fluid > .row > div:nth-child(2) .mod-article__wrapper p.animate, .line-banner .container > .row > div:nth-child(2) .content p.animate, .line-banner .container > .row > div:nth-child(2) .mod-article__wrapper p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-banner .container-fluid > .row > div:nth-child(2) .content .btn-secondary, .line-banner .container-fluid > .row > div:nth-child(2) .mod-article__wrapper .btn-secondary, .line-banner .container > .row > div:nth-child(2) .content .btn-secondary, .line-banner .container > .row > div:nth-child(2) .mod-article__wrapper .btn-secondary {
  margin-top: 35px;
  margin-right: 20px;
  opacity: 0;
  transform: translate(50px, 0);
  animation-name: element_fade_slide !important;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1.5s;
}
.line-banner .container-fluid > .row > div:nth-child(2) .content .btn-arrow-big-down, .line-banner .container-fluid > .row > div:nth-child(2) .mod-article__wrapper .btn-arrow-big-down, .line-banner .container > .row > div:nth-child(2) .content .btn-arrow-big-down, .line-banner .container > .row > div:nth-child(2) .mod-article__wrapper .btn-arrow-big-down {
  margin-top: 0;
  opacity: 0;
  transform: translate(50px, 0);
  animation-name: element_fade_slide !important;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1.5s;
}

.line-section-testimonies {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}
.line-section-testimonies.bgGrey {
  background-color: #F2F2F5;
}
.line-section-testimonies.bgBlue {
  padding-top: 125px;
  padding-bottom: 90px;
  background-color: #3E4E63;
}
.line-section-testimonies.bgBlue .container > .row > div:nth-child(2) .content h3, .line-section-testimonies.bgBlue .container > .row > div:nth-child(2) .content h4, .line-section-testimonies.bgBlue .container > .row > div:nth-child(2) .content p {
  color: #fff;
}
.line-section-testimonies.bgDark {
  padding-top: 125px;
  padding-bottom: 90px;
  background-color: #29292A;
}
.line-section-testimonies.bgDark .container > .row > div:nth-child(2) .content h3, .line-section-testimonies.bgDark .container > .row > div:nth-child(2) .content h4, .line-section-testimonies.bgDark .container > .row > div:nth-child(2) .content p {
  color: #fff;
}
.line-section-testimonies .container > .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.line-section-testimonies .container > .row > div:nth-child(1) {
  width: 40%;
}
@media (max-width: 1199px) {
  .line-section-testimonies .container > .row > div:nth-child(1) {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .line-section-testimonies .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-section-testimonies .container > .row > div:nth-child(1) .content p {
  position: relative;
}
.line-section-testimonies .container > .row > div:nth-child(1) .content p img {
  position: relative;
  z-index: 2;
  border-radius: 5px;
}
.line-section-testimonies .container > .row > div:nth-child(1) .content p:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/About%20us/carousel-bg-element.svg");
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 332px;
  height: 209px;
  top: 150px;
  left: 80px;
  z-index: 1;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .line-section-testimonies .container > .row > div:nth-child(1) .content p:before {
    background-size: 300px;
    top: 95px;
    left: 30px;
  }
}
.line-section-testimonies .container > .row > div:nth-child(2) {
  width: 60%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1199px) {
  .line-section-testimonies .container > .row > div:nth-child(2) {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .line-section-testimonies .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-section-testimonies .container > .row > div:nth-child(2) .content {
  padding-top: 192px;
  padding-left: 20px;
}
@media (max-width: 1199px) {
  .line-section-testimonies .container > .row > div:nth-child(2) .content {
    padding-top: 160px;
    padding-left: 120px;
  }
}
@media (max-width: 991px) {
  .line-section-testimonies .container > .row > div:nth-child(2) .content {
    padding-top: 90px;
    padding-left: 0;
    padding-right: 120px;
  }
}
@media (max-width: 767px) {
  .line-section-testimonies .container > .row > div:nth-child(2) .content {
    padding-right: 0;
  }
}
.line-section-testimonies .container > .row > div:nth-child(2) .content h3 {
  position: relative;
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  text-transform: initial;
  color: #29292A;
  font-style: italic;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .line-section-testimonies .container > .row > div:nth-child(2) .content h3 {
    font-size: 19px;
    line-height: 30px;
  }
}
.line-section-testimonies .container > .row > div:nth-child(2) .content h3:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-testimonies-2x.png") no-repeat;
  background-size: 73px 71px;
  width: 73px;
  height: 71px;
  position: absolute;
  right: 70px;
  top: -70px;
}
@media (max-width: 991px) {
  .line-section-testimonies .container > .row > div:nth-child(2) .content h3:before {
    background-size: 67px 74px;
    right: 50px;
  }
}
.line-section-testimonies .container > .row > div:nth-child(2) .content h4 {
  font-weight: 600;
  margin-bottom: 3px;
}
.line-section-testimonies-history {
  padding-top: 105px;
  padding-bottom: 110px;
  background-color: #29292A;
  position: relative;
}
.line-section-testimonies-history:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/History/bg-round-black-white-element.svg");
  background-position: center center;
  position: absolute;
  display: block;
  width: 72px;
  height: 73px;
  top: -37px;
  left: calc(50% - 36px);
}
.line-section-testimonies-history .container > .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.line-section-testimonies-history .container > .row > div:nth-child(1) {
  width: 40%;
}
@media (max-width: 767px) {
  .line-section-testimonies-history .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-section-testimonies-history .container > .row > div:nth-child(1) .content {
  text-align: right;
  margin-right: 35px;
}
@media (max-width: 767px) {
  .line-section-testimonies-history .container > .row > div:nth-child(1) .content {
    text-align: left;
    margin-right: 0;
    padding-bottom: 10px;
  }
}
.line-section-testimonies-history .container > .row > div:nth-child(1) .content p {
  position: relative;
}
.line-section-testimonies-history .container > .row > div:nth-child(1) .content p img {
  position: relative;
  z-index: 2;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .line-section-testimonies-history .container > .row > div:nth-child(1) .content p img {
    width: 100% !important;
  }
}
.line-section-testimonies-history .container > .row > div:nth-child(2) {
  width: 60%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .line-section-testimonies-history .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-section-testimonies-history .container > .row > div:nth-child(2) .content {
  padding-top: 30px;
  padding-left: 20px;
}
@media (max-width: 991px) {
  .line-section-testimonies-history .container > .row > div:nth-child(2) .content {
    padding-left: 0;
  }
}
.line-section-testimonies-history .container > .row > div:nth-child(2) .content h3, .line-section-testimonies-history .container > .row > div:nth-child(2) .content h4, .line-section-testimonies-history .container > .row > div:nth-child(2) .content p {
  color: #fff;
}
.line-section-testimonies-history .container > .row > div:nth-child(2) .content h3 {
  position: relative;
  font-size: 24px;
  line-height: 36px;
  font-style: italic;
  margin-top: 80px;
}
.line-section-testimonies-history .container > .row > div:nth-child(2) .content h3:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-testimonies-2x.png") no-repeat;
  background-size: 73px 71px;
  width: 73px;
  height: 71px;
  position: absolute;
  left: 0;
  top: -68px;
}
.line-section-testimonies-history .container > .row > div:nth-child(2) .content h4 {
  font-weight: 600;
  margin-bottom: 3px;
}
.line-section-testimonies-history .container > .row > div:nth-child(2) .content p {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  padding-right: 125px;
}
@media (max-width: 1199px) {
  .line-section-testimonies-history .container > .row > div:nth-child(2) .content p {
    padding-right: 85px;
  }
}
@media (max-width: 991px) {
  .line-section-testimonies-history .container > .row > div:nth-child(2) .content p {
    padding-right: 0;
  }
}

.line-page-article-look-title {
  padding-top: 65px;
  padding-bottom: 40px;
  position: relative;
}
@media (max-width: 1199px) {
  .line-page-article-look-title {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .line-page-article-look-title {
    padding-top: 195px;
    padding-bottom: 30px;
  }
}
.line-page-article-look-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 224px;
  height: 222px;
  background: #ED1B2F url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/logo-white-no-bg.svg") no-repeat;
  background-position: -325px -178px;
  border-bottom-right-radius: 5px;
}
@media (max-width: 767px) {
  .line-page-article-look-title:before {
    border-bottom-right-radius: 0;
    width: 100%;
    height: 150px;
    background-size: 382px auto;
    background-position: -285px -158px;
  }
}
.line-page-article-look-title.page-404 .container > .row > div .content h1 {
  color: #ED1B2F;
}
.line-page-article-look-title .container > .row > div .content {
  width: 100%;
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1239px) {
  .line-page-article-look-title .container > .row > div .content {
    margin-left: 230px;
  }
}
@media (max-width: 1199px) {
  .line-page-article-look-title .container > .row > div .content {
    max-width: fit-content;
    margin-left: 220px;
  }
}
@media (max-width: 767px) {
  .line-page-article-look-title .container > .row > div .content {
    margin-left: auto;
  }
}
.line-page-article-look-title .container > .row > div .content h1 {
  order: 2;
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  color: #29292A;
  margin-bottom: 30px;
  animation-name: element_fade_slide !important;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1s;
}
@media (max-width: 991px) {
  .line-page-article-look-title .container > .row > div .content h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-page-article-look-title .container > .row > div .content h1.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-page-article-look-title .container > .row > div .content p {
  opacity: 1;
}
.line-page-article-look-title .container > .row > div .content .btn-arrow-big-down {
  margin-top: 0;
  opacity: 0;
  transform: translate(50px, 0);
}
.line-page-article-look-title .container > .row > div .content .btn-arrow-big-down.animate {
  animation-name: element_fade_slide !important;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1.5s;
}

.line-page-article-look {
  padding-bottom: 55px;
}
.line-page-article-look.line-p-large .container > .row > div .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-page-article-look.line-p-large .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-page-article-look .container > .row > div .content {
  width: 100%;
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
}
.line-page-article-look .container > .row > div .content img {
  margin-bottom: 35px;
}
.line-page-article-look .container > .row > div .content h2 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  margin-top: 25px;
}
.line-page-article-look .container > .row > div .content h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-page-article-look .container > .row > div .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 20px;
}
.line-page-article-look .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-page-article-look .container > .row > div .content p:nth-child(-n+2) {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-page-article-look .container > .row > div .content p:nth-child(-n+2).animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-page-article-look .container > .row > div .content p a {
  color: #ED1B2F !important;
}
.line-page-article-look .container > .row > div .content ul {
  margin-top: 25px;
}
.line-page-article-look .container > .row > div .content ul li {
  font-size: 17px !important;
  line-height: 24px !important;
  margin-bottom: 11px !important;
}
.line-page-article-look .container > .row > div .content ul li a {
  color: #ED1B2F !important;
}
.line-page-article-look .container > .row > div .content ul li a:hover, .line-page-article-look .container > .row > div .content ul li a:focus, .line-page-article-look .container > .row > div .content ul li a:active {
  color: #29292A !important;
  text-decoration: none !important;
}

.line-research-areas.animate .container-fluid > .row > div .news-mosaic > .row > div a img {
  animation-name: research_bounce_order;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.line-research-areas.animate .container-fluid > .row > div .news-mosaic > .row:nth-child(1) a img {
  animation-delay: 0s;
}
.line-research-areas.animate .container-fluid > .row > div .news-mosaic > .row:nth-child(2) a img {
  animation-delay: 0.3s;
}
.line-research-areas.animate .container-fluid > .row > div .news-mosaic > .row:nth-child(3) a img {
  animation-delay: 0.6s;
}
.line-research-areas.animate .container-fluid > .row > div .news-mosaic > .row:nth-child(4) a img {
  animation-delay: 0.9s;
}
.line-research-areas.animate .container-fluid > .row > div .news-mosaic > .row:nth-child(5) a img {
  animation-delay: 1.2s;
}
.line-research-areas.animate .container-fluid > .row > div .news-mosaic > .row:nth-child(6) a img {
  animation-delay: 1.5s;
}
.line-research-areas.hide-news-intro .container-fluid > .row > div .news-mosaic > .row > div .news-intro {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.line-research-areas.hide-news-intro .container-fluid > .row > div .news-mosaic > .row > div .news-intro p {
  display: none;
}
.line-research-areas.disabled-1 .container-fluid > .row > div .news-mosaic > .row:nth-child(1) a, .line-research-areas.disabled-2 .container-fluid > .row > div .news-mosaic > .row:nth-child(2) a, .line-research-areas.disabled-3 .container-fluid > .row > div .news-mosaic > .row:nth-child(3) a, .line-research-areas.disabled-4 .container-fluid > .row > div .news-mosaic > .row:nth-child(4) a, .line-research-areas.disabled-5 .container-fluid > .row > div .news-mosaic > .row:nth-child(5) a, .line-research-areas.disabled-6 .container-fluid > .row > div .news-mosaic > .row:nth-child(6) a {
  opacity: 0.1;
  pointer-events: none;
}
.line-research-areas .container-fluid > .row > div .news-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 0;
  border-top: 1px solid #C0C1CC;
}
@media (max-width: 991px) {
  .line-research-areas .container-fluid > .row > div .news-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 0;
  }
}
@media (max-width: 767px) {
  .line-research-areas .container-fluid > .row > div .news-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0 0;
  }
}
.line-research-areas .container-fluid > .row > div .news-mosaic > .row {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  border-bottom: 1px solid #C0C1CC;
  border-right: 1px solid #C0C1CC;
}
@media (max-width: 767px) {
  .line-research-areas .container-fluid > .row > div .news-mosaic > .row {
    border-right: 0;
  }
}
@media (min-width: 992px) {
  .line-research-areas .container-fluid > .row > div .news-mosaic > .row:nth-child(3n) {
    border-right: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-research-areas .container-fluid > .row > div .news-mosaic > .row:nth-child(2n) {
    border-right: 0;
  }
}
.line-research-areas .container-fluid > .row > div .news-mosaic > .row > div {
  padding: 25px 25px 25px 25px;
  text-align: center;
  /*
  &:nth-child(1) {
      a {
          img {
              animation-delay: 0s;
          }
      }
  }
  */
}
.line-research-areas .container-fluid > .row > div .news-mosaic > .row > div > a:first-child {
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 20px;
  border: 0 !important;
  border-bottom: 0 !important;
  margin-bottom: 0 !important;
  background-color: transparent !important;
}
.line-research-areas .container-fluid > .row > div .news-mosaic > .row > div > a:first-child img {
  border: 0 !important;
  border-radius: 20px;
  margin-bottom: 0 !important;
  max-height: 300px;
  transform: scale(0.8);
  filter: brightness(1);
  transition: all 0.5s;
}
.line-research-areas .container-fluid > .row > div .news-mosaic > .row > div > a:hover img {
  filter: brightness(0.5);
  scale: 1.01;
  transition: all 0.5s;
}
.line-research-areas .container-fluid > .row > div .news-mosaic > .row > div .news-intro {
  margin-right: 0 !important;
  padding-top: 24px !important;
  padding-bottom: 34px !important;
}
.line-research-areas .container-fluid > .row > div .news-mosaic > .row > div .news-intro br {
  display: block !important;
}
.line-research-areas .container-fluid > .row > div .news-mosaic > .row > div .news-intro h3 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 300px;
  margin-bottom: 0;
  margin-top: 28%;
  color: #fff;
  pointer-events: none;
  opacity: 1 !important;
}
@media (min-width: 1400px) {
  .line-research-areas .container-fluid > .row > div .news-mosaic > .row > div .news-intro h3 {
    margin-top: 130px;
  }
}
@media (max-width: 767px) {
  .line-research-areas .container-fluid > .row > div .news-mosaic > .row > div .news-intro h3 {
    margin-top: 130px;
  }
}
@media (max-width: 575px) {
  .line-research-areas .container-fluid > .row > div .news-mosaic > .row > div .news-intro h3 {
    margin-top: 25%;
  }
}
.line-research-areas .container-fluid > .row > div .news-mosaic > .row > div .news-intro h3:after {
  content: "";
  width: 100px;
  height: 1px;
  margin-top: 35px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}
.line-research-areas .container-fluid > .row > div .news-mosaic > .row > div .news-intro p {
  color: #fff;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 0;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.line-research-areas .container-fluid > .row > div .news-mosaic > .row > div .news-intro p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-research-areas .container-fluid > .row > div .news-mosaic > .row > div .news-intro .btn-primary {
  margin-top: 40px;
  margin-bottom: 0;
}

.line-intro-1col-75percent {
  padding-top: 70px;
  padding-bottom: 45px;
  background-color: #F2F2F5;
}
.line-intro-1col-75percent .container > .row > div .content {
  max-width: 820px;
}
.line-intro-1col-75percent .container > .row > div .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .line-intro-1col-75percent .container > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-intro-1col-75percent .container > .row > div .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-intro-1col-75percent .container > .row > div .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-intro-1col-75percent .container > .row > div .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 35px;
}
.line-intro-1col-75percent .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-members-list {
  padding-top: 70px;
  padding-bottom: 85px;
  margin-bottom: 30px;
}
.line-members-list .zone-directory > div .js-directory-search-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
}
@media (max-width: 767px) {
  .line-members-list .zone-directory > div .js-directory-search-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.line-members-list .zone-directory > div .js-directory-search-box form {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.line-members-list .zone-directory > div .js-directory-search-box label {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 12px;
}
.line-members-list .zone-directory > div .js-directory-search-box label.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-members-list .zone-directory > div .js-directory-search-box .form-group {
  flex-basis: 100%;
  flex: 1;
  /* 
  .chosen-choices {
      background: #ffffff url(https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-btn-arrow-big.svg) no-repeat right 15px center !important;
      border: 2px solid $clrGrey!important;
      border-radius: 3px;
      color: $third!important;
      padding-right: 0 !important;
      position: relative;
      max-width: 440px;
      &:before {
          content:"";
          position: absolute;
          display: block;
          width:2px;
          height: calc(100% - 25px);
          right: 48px;
          background-color: $clrGrey;
      }
      input {
          color:$third!important;
      }
      a.search-choice-close {
          top: 11px !important;
      }
  }
  .chosen-results {
      .active-result {
          &.highlighted {
              background: $secondary;
          }
      }
  }
  */
}
.line-members-list .zone-directory > div .js-directory-search-box .form-group .search_input {
  width: 100%;
}
.line-members-list .zone-directory > div .js-directory-search-box .form-group .search_input input {
  background-color: #fff !important;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) {
  padding-top: 65px;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .nav-tabs {
  display: none;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px 30px;
}
@media (max-width: 767px) {
  .line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 45px 30px;
  }
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc {
  background-color: #fff;
  display: flex;
  min-height: 294px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc {
    min-height: 254px;
  }
}
@media (max-width: 575px) {
  .line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc {
    min-height: 254px;
  }
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-picture {
  flex: 1 1 0px;
  min-width: 42%;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-picture img {
  /*max-height: 292px!important;*/
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content {
  flex: 1 1 0px;
  padding: 30px 30px 22px 30px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content {
    padding: 30px 20px 22px 20px;
  }
}
@media (max-width: 575px) {
  .line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content {
    padding: 30px 20px 22px 20px;
  }
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content h3 {
  margin-bottom: 0;
  word-break: break-word;
  opacity: 1 !important;
}
@media (max-width: 991px) {
  .line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content h3 {
    font-size: 20px;
    line-height: 23px;
  }
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content h3 > span {
  word-break: normal;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content h3 ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content h3 ul li {
  opacity: 1 !important;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content h3 ul li span {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  color: #29292A;
  margin-bottom: 0;
  opacity: 1 !important;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content h3 ul li span.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content h3 ul li:before {
  display: none;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content h3 ul::marker {
  display: none;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content h4 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 5px;
  opacity: 1 !important;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content h4.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content ul {
  padding-left: 0 !important;
  margin-top: 0;
  margin-bottom: 10px !important;
  list-style-type: none;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content ul li {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #ED1B2F !important;
  opacity: 1 !important;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content ul li.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content ul li:before {
  display: none;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content ul::marker {
  display: none;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content p {
  opacity: 1 !important;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content p:last-child {
  height: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content p:last-child .btn-plus {
  margin-bottom: 0;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content .btn {
  opacity: 1 !important;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content ul.investigator-list-link {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  padding-bottom: 10px;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content ul.investigator-list-link li {
  width: 40px;
  opacity: 1 !important;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content ul.investigator-list-link li::marker {
  display: none;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a {
  text-decoration: none !important;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%23ed1b2f'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  width: 21px;
  height: 20px;
  display: block;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%2329292A'/%3E%3C/svg%3E%0A");
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.email {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><g id="Groupe_18293" data-name="Groupe 18293" transform="translate(-498 -500)"><g id="Rectangle_3013" data-name="Rectangle 3013" transform="translate(498 500)" fill="none" stroke="%23ed1b2f" stroke-width="1.5"><rect width="24" height="14" rx="2" stroke="none"/><rect x="0.75" y="0.75" width="22.5" height="12.5" rx="1.25" fill="none"/></g><path id="Tracé_14999" data-name="Tracé 14999" d="M-5411.427-21874l7.976,4.773,7.632-4.773" transform="translate(5913.409 22377.322)" fill="none" stroke="%23ed1b2f" stroke-width="1"/></g></svg>');
  background-repeat: no-repeat;
  width: 24px;
  height: 14px;
  display: block;
  margin-top: 6px;
}
.line-members-list .zone-directory > div > :not(.mod_directory__article):not(.js-directory-search-box) .mod_directory__result_bloc .tab-content .tab-pane .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.email:hover {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><g id="Groupe_18293" data-name="Groupe 18293" transform="translate(-498 -500)"><g id="Rectangle_3013" data-name="Rectangle 3013" transform="translate(498 500)" fill="none" stroke="%2329292A" stroke-width="1.5"><rect width="24" height="14" rx="2" stroke="none"/><rect x="0.75" y="0.75" width="22.5" height="12.5" rx="1.25" fill="none"/></g><path id="Tracé_14999" data-name="Tracé 14999" d="M-5411.427-21874l7.976,4.773,7.632-4.773" transform="translate(5913.409 22377.322)" fill="none" stroke="%2329292A" stroke-width="1"/></g></svg>');
  fill: #3E4E63;
}

/*
.line-members-list {
    padding-top: 70px;
    padding-bottom: 85px;
    margin-bottom: 30px;
    .zone-directory {
        .directory-member-detail-wrapper {
            display: flex;
            flex-direction: row;
            .col-img {
                width:25%;
            }
            .col-content {
                width:75%;
            }
        }
    }
}
*/
.line-home-banner {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Home/banner-home.jpg");
  background-position: center center;
  background-size: cover;
}
@media (max-width: 991px) {
  .line-home-banner {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .line-home-banner .container {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.line-home-banner .container > .row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .line-home-banner .container > .row {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .line-home-banner .container > .row > div {
    width: 100%;
  }
}
.line-home-banner .container > .row > div:nth-child(1) {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .line-home-banner .container > .row > div:nth-child(1) {
    align-items: flex-start;
    transform: translateX(0);
  }
}
@media (min-width: 992px) {
  .line-home-banner .container > .row > div:nth-child(1) {
    transform: translateX(-55px);
  }
}
@media (min-width: 1200px) {
  .line-home-banner .container > .row > div:nth-child(1) {
    transform: translateX(-65px);
  }
}
.line-home-banner .container > .row > div:nth-child(1) h5 {
  font-size: 14px;
  color: #fff;
  transform: rotate(270deg);
  -webkit-transform-origin: 50% 51%;
  position: relative;
  opacity: 0;
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 2s;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-home-banner .container > .row > div:nth-child(1) h5 {
    font-size: 13px;
    /*
    margin-left: -70px;
    margin-right: -20px;
    */
    margin-left: -72px;
    margin-right: -20px;
    min-width: 100px;
  }
}
@media (max-width: 767px) {
  .line-home-banner .container > .row > div:nth-child(1) h5 {
    position: absolute;
    top: -35vw;
    left: -100px;
    z-index: 1;
    width: 160px;
  }
}
.line-home-banner .container > .row > div:nth-child(1) h5:before {
  content: "";
  width: 110px;
  height: 1px;
  opacity: 0.24;
  position: absolute;
  background-color: #fff;
  margin-left: -135px;
  margin-top: 11px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-home-banner .container > .row > div:nth-child(1) h5:before {
    width: 80px;
    margin-left: -105px;
  }
}
.line-home-banner .container > .row > div:nth-child(1) h5:after {
  content: "";
  width: 110px;
  height: 1px;
  opacity: 0.24;
  position: absolute;
  background-color: #fff;
  right: -90px;
  margin-top: 11px;
}
@media (max-width: 1199px) {
  .line-home-banner .container > .row > div:nth-child(1) h5:after {
    right: -130px;
  }
}
@media (max-width: 991px) {
  .line-home-banner .container > .row > div:nth-child(1) h5:after {
    right: -125px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-home-banner .container > .row > div:nth-child(1) h5:after {
    width: 80px;
    right: -90px;
  }
}
@media (max-width: 767px) {
  .line-home-banner .container > .row > div:nth-child(1) h5:after {
    display: none;
  }
}
.line-home-banner .container > .row > div:nth-child(1) .content {
  padding-left: 10px;
  padding-right: 80px;
}
@media (max-width: 991px) {
  .line-home-banner .container > .row > div:nth-child(1) .content {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .line-home-banner .container > .row > div:nth-child(1) .content {
    padding-left: 0;
    padding-top: 15px;
    padding-right: 0;
  }
}
.line-home-banner .container > .row > div:nth-child(1) .content .item {
  display: flex;
  flex-direction: column;
}
.line-home-banner .container > .row > div:nth-child(1) .content .item h3 {
  color: #fff;
  order: 2;
  transform: translate(50%, 0);
  opacity: 0;
  animation-name: element_fade_slide;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1s;
}
.line-home-banner .container > .row > div:nth-child(1) .content .item h3 a {
  color: #fff !important;
}
.line-home-banner .container > .row > div:nth-child(1) .content .item h3 a:hover, .line-home-banner .container > .row > div:nth-child(1) .content .item h3 a:focus, .line-home-banner .container > .row > div:nth-child(1) .content .item h3 a:active {
  color: #fff !important;
  text-decoration: none !important;
}
.line-home-banner .container > .row > div:nth-child(1) .content .item .e-date {
  font-size: 14px;
  padding-bottom: 15px;
  color: #fff;
  font-weight: bold;
  order: 1;
  text-transform: none;
  transform: translate(50%, 0);
  opacity: 0;
  animation-name: element_fade_slide;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1s;
}
.line-home-banner .container > .row > div:nth-child(1) .content .item .actions {
  margin-top: 10px;
  order: 3;
  transform: translate(50%, 0);
  opacity: 0;
  animation-name: element_fade_slide;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1.5s;
}
.line-home-banner .container > .row > div:nth-child(1) .content .item .actions a {
  background-color: transparent;
  color: #fff;
  transition: all 150ms;
  border: 1px solid #ED1B2F;
  padding: 15px 35px;
  border-radius: 50px;
}
.line-home-banner .container > .row > div:nth-child(1) .content .item .actions a:hover, .line-home-banner .container > .row > div:nth-child(1) .content .item .actions a:active, .line-home-banner .container > .row > div:nth-child(1) .content .item .actions a:focus {
  background-color: #ED1B2F;
  border: 1px solid #ED1B2F;
  color: #fff;
}
.line-home-banner .container > .row > div:nth-child(2) .content .itemImage {
  /*
  &:after {
      content: "";    
      display: block;
      position: absolute;
      top: 0;
      width: 100%;
      height: calc(100% - 1.5rem);
      border-radius: 5px;
      background-color: #334051;
      animation-name: img_appears;

      animation-fill-mode: forwards;
      animation-duration: 1.5s;
      animation-delay: 0s;
  }
  */
}
.line-home-banner .container > .row > div:nth-child(2) .content .itemImage img {
  border-radius: 5px;
  opacity: 0;
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0s;
}

body.lang-fr .line-home-banner .container > .row > div:nth-child(1) h5 {
  min-width: 150px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  body.lang-fr .line-home-banner .container > .row > div:nth-child(1) h5 {
    margin-left: -22px;
    margin-right: -20px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  body.lang-fr .line-home-banner .container > .row > div:nth-child(1) h5 {
    margin-left: -92px;
    margin-right: -40px;
  }
}
@media (max-width: 767px) {
  body.lang-fr .line-home-banner .container > .row > div:nth-child(1) h5 {
    top: -24vw;
  }
}
body.lang-fr .line-home-banner .container > .row > div:nth-child(1) h5:after {
  right: -120px;
}
@media (max-width: 991px) and (min-width: 768px) {
  body.lang-fr .line-home-banner .container > .row > div:nth-child(1) h5:after {
    right: -80px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  body.lang-fr .line-home-banner .container > .row > div:nth-child(1) .content {
    padding-left: 0px;
  }
}
.line-home-banner-articles .container-fluid > .row > div {
  margin: 0;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.3647058824);
}
.line-home-banner-articles .container-fluid > .row > div .content {
  display: flex;
}
@media (max-width: 767px) {
  .line-home-banner-articles .container-fluid > .row > div .content {
    flex-direction: column;
  }
}
.line-home-banner-articles .container-fluid > .row > div .content > .row {
  margin-top: 0;
  flex: 1 1 0px;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  border-radius: 5px;
  animation-name: logo;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row:nth-child(1) {
  display: none;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row:nth-child(2) {
  background-color: #29292A;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row:nth-child(2):before {
  background-color: #000;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row:nth-child(3) {
  background-color: #222222;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row:nth-child(3):before {
  background-color: #000;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 2s;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row:nth-child(4) {
  background-color: #19191A;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row:nth-child(4):before {
  background-color: #000;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 2.5s;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item {
  height: 100%;
  padding: 35px 30px;
  display: grid;
  grid-template-columns: 175px auto;
  grid-template-rows: auto 100%;
  grid-template-areas: "a b" "a c" "a d";
}
@media (max-width: 1199px) {
  .line-home-banner-articles .container-fluid > .row > div .content > .row .item {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: "a" "b" "c" "d";
  }
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item .itemImage {
  grid-area: a;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item .itemImage a img {
  width: 160px;
  min-width: 160px;
  height: 90px !important;
  border-radius: 5px;
}
@media (max-width: 1199px) {
  .line-home-banner-articles .container-fluid > .row > div .content > .row .item .itemImage a img {
    width: 100%;
    height: 160px !important;
  }
}
@media (max-width: 991px) {
  .line-home-banner-articles .container-fluid > .row > div .content > .row .item .itemImage a img {
    height: 120px !important;
  }
}
@media (max-width: 767px) {
  .line-home-banner-articles .container-fluid > .row > div .content > .row .item .itemImage a img {
    aspect-ratio: 16/9;
    width: 50%;
    height: auto !important;
  }
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item h3 {
  grid-area: c;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 35px;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 1199px) {
  .line-home-banner-articles .container-fluid > .row > div .content > .row .item h3 {
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .line-home-banner-articles .container-fluid > .row > div .content > .row .item h3 {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .line-home-banner-articles .container-fluid > .row > div .content > .row .item h3 {
    padding-right: 100px;
  }
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item h3 a {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #fff !important;
  opacity: 1 !important;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item h3 a.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item h3 a:hover, .line-home-banner-articles .container-fluid > .row > div .content > .row .item h3 a:focus, .line-home-banner-articles .container-fluid > .row > div .content > .row .item h3 a:active {
  color: #fff !important;
  text-decoration: none !important;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item .e-date {
  grid-area: b;
  font-size: 14px;
  padding-bottom: 15px;
  font-weight: bold;
  color: #fff;
  order: 1;
  text-transform: none;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item .actions {
  grid-area: d;
  position: absolute;
  margin-top: 0;
  bottom: 18px;
  right: -6px;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item .actions a {
  position: relative;
  display: block;
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  border-radius: 50px;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
  text-transform: inherit;
  transition: all 300ms;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item .actions a:after {
  content: "";
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/btn-arrow-icon.svg");
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  right: 7px;
  top: 10px;
  width: 11px;
  height: 7px;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item .actions a:hover, .line-home-banner-articles .container-fluid > .row > div .content > .row .item .actions a:focus {
  background-color: #fff !important;
  border: 1px solid #ED1B2F;
  text-decoration: none;
}
.line-home-banner-articles .container-fluid > .row > div .content > .row .item .actions a:hover:after, .line-home-banner-articles .container-fluid > .row > div .content > .row .item .actions a:focus:after {
  filter: invert(20%) sepia(61%) saturate(4891%) hue-rotate(344deg) brightness(93%) contrast(100%);
}

.line-home-special {
  padding-top: 36px;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .line-home-special {
    padding-top: 60px;
    padding-bottom: 0;
  }
}
.line-home-special.collaborative-space {
  padding-bottom: 60px;
}
.line-home-special.collaborative-space .container > .row {
  display: flex;
  justify-content: center;
}
.line-home-special.collaborative-space .container > .row > div:nth-child(2) {
  display: none;
}
@media (max-width: 991px) {
  .line-home-special:not(.collaborative-space) .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-home-special:not(.collaborative-space) .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-home-special .container > .row > div:nth-child(1) .content {
  background-color: #fff;
  padding: 35px 65px 25px 45px;
  margin-top: 15px;
}
@media (max-width: 991px) {
  .line-home-special .container > .row > div:nth-child(1) .content {
    padding: 20px 25px 45px 25px;
  }
}
.line-home-special .container > .row > div:nth-child(1) .content h3 {
  color: #ED1B2F;
}
.line-home-special .container > .row > div:nth-child(1) .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.line-home-special .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-home-special .container > .row > div:nth-child(1) .content .btn-arrow {
  position: absolute;
  right: 30px;
  bottom: 20px;
}
@media (max-width: 991px) {
  .line-home-special .container > .row > div:nth-child(2) .content {
    padding-top: 20px;
  }
}
@media (min-width: 992px) {
  .line-home-special .container > .row > div:nth-child(2) .content {
    text-align: right;
  }
}

.line-home-knowledge {
  padding-top: 70px;
  padding-bottom: 80px;
  position: relative;
}
@media (max-width: 991px) {
  .line-home-knowledge {
    overflow: hidden;
  }
}
.line-home-knowledge .container-fluid > .row > div .content {
  /* width:100%;
   max-width:580px;
   margin-left: auto;
   margin-right: auto;*/
}
.line-home-knowledge .container-fluid > .row > div .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  background-image: -webkit-linear-gradient(top, transparent, transparent 72px, #C0C1CC 0);
  -webkit-background-size: 100% 73px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .line-home-knowledge .container-fluid > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-home-knowledge .container-fluid > .row > div .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 991px) {
  .line-home-knowledge .container-fluid > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
    background-image: -webkit-linear-gradient(top, transparent, transparent 50px, #C0C1CC 0);
    -webkit-background-size: 100% 51px;
  }
}
.line-home-knowledge .container-fluid > .row > div .content h2 br {
  display: block !important;
}
.line-home-knowledge .container-fluid > .row > div .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.line-home-knowledge .container-fluid > .row > div .content p:first-child {
  max-width: 100%;
  position: absolute;
  opacity: 1;
}
.line-home-knowledge .container-fluid > .row > div .content p:first-child img {
  width: 750px;
  height: 750px;
  position: absolute;
  bottom: -990px;
  left: -475px;
  opacity: 1;
}
@media (max-width: 991px) {
  .line-home-knowledge .container-fluid > .row > div .content p:first-child img {
    width: 410px !important;
    bottom: -768px;
    left: -293px;
  }
}
@media (max-width: 767px) {
  .line-home-knowledge .container-fluid > .row > div .content p:first-child img {
    width: 390px !important;
    bottom: -1100px;
    left: -280px;
  }
}
.line-home-knowledge .container-fluid > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-home-knowledge .container-fluid > .row > div .content p:last-of-type {
  max-width: 780px;
}
@media (max-width: 767px) {
  .line-home-knowledge .container-fluid > .row > div .content p:last-of-type {
    max-width: 360px;
    width: 100%;
  }
}
.line-home-knowledge .container-fluid > .row > div .content p:last-of-type .btn:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .line-home-knowledge .container-fluid > .row > div .content p {
    width: 70%;
  }
}
.line-home-knowledge .container-fluid > .row > div .content p strong {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  opacity: 1 !important;
}
.line-home-knowledge .container-fluid > .row > div .content p strong.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-home-knowledge .container-fluid > .row > div .content p .btn {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .line-home-knowledge .container-fluid > .row > div .content p .btn {
    margin-right: 0;
    margin-bottom: 0;
  }
}
.line-home-knowledge .container-fluid > .row > div .content h6 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #ED1B2F;
  padding-top: 30px;
  text-align: right !important;
  width: 100%;
  max-width: 614px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-home-knowledge .container-fluid > .row > div .content h6 {
    width: 100%;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.line-home-knowledge .container-fluid > .row > div .content .yt-max {
  display: block !important;
  margin-top: 60px;
  max-width: 614px;
  box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.22);
  position: relative;
}
.line-home-knowledge .container-fluid > .row > div .content .yt-max:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/shadow-video.png") no-repeat;
  position: absolute;
  background-position: top center;
  background-size: 100%;
  width: 100%;
  height: 100%;
  max-height: 85px;
  bottom: -85px;
}
@media (max-width: 767px) {
  .line-home-knowledge .container-fluid > .row > div .content .yt-max {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
.line-home-knowledge .container-fluid > .row > div .content .yt-max .yt-wrapper .yt-overlay img {
  width: 100% !important;
}

.line-home-training-career {
  padding-top: 315px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .line-home-training-career {
    padding-top: 275px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .line-home-training-career {
    padding-top: 250px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .line-home-training-career .container > .row > div:nth-child(2) {
    margin-top: 240px;
  }
}
.line-home-training-career .container > .row > div .content {
  position: relative;
  padding-top: 20px;
  padding-left: 100px;
  padding-right: 120px;
  border-left: 1px solid #C0C1CC;
}
@media (max-width: 1199px) {
  .line-home-training-career .container > .row > div .content {
    padding-left: 50px;
    padding-right: 6%;
  }
}
@media (max-width: 991px) {
  .line-home-training-career .container > .row > div .content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .line-home-training-career .container > .row > div .content {
    padding-top: 0;
  }
}
.line-home-training-career .container > .row > div .content img {
  /*
  position: absolute;
  left: 0;
  top: -165px;
  */
  max-width: 350px;
  max-height: 145px;
  object-fit: contain;
  object-position: center center;
  border-radius: 3px;
  opacity: 1 !important;
}
@media (max-width: 767px) {
  .line-home-training-career .container > .row > div .content img {
    width: auto !important;
    max-width: 100% !important;
  }
}
.line-home-training-career .container > .row > div .content h2 {
  margin-bottom: 25px;
}
.line-home-training-career .container > .row > div .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-home-training-career .container > .row > div .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.line-home-training-career .container > .row > div .content p.animate:nth-child(1):after {
  animation-name: img_appears;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0s;
}
.line-home-training-career .container > .row > div .content p:nth-child(1) {
  position: absolute;
  left: 0;
  top: -165px;
  max-width: 350px;
  max-height: 145px;
  opacity: 1 !important;
}
.line-home-training-career .container > .row > div .content p:nth-child(1):after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background-color: #fff;
}
.line-home-training-career .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-home-training-career .container > .row > div .content .btn {
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.line-home-events {
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .line-home-events {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.line-home-events .container > .row > div > h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  text-align: center;
  color: #29292A;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .line-home-events .container > .row > div > h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-home-events .container > .row > div > h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .line-home-events .container > .row > div > h2 {
    text-align: left;
    margin-bottom: 30px;
  }
}
.line-home-events .container > .row > div .content > .row:last-child > div .item:after {
  content: "";
  width: 6000px;
  height: 1px;
  left: -2500px;
  background-color: #C0C1CC;
  position: absolute;
  bottom: 0;
}
.line-home-events .container > .row > div .content > .row > div .item {
  position: relative;
  display: flex;
  padding: 50px 0 40px 0;
  gap: 20px;
}
@media (max-width: 575px) {
  .line-home-events .container > .row > div .content > .row > div .item {
    flex-direction: column;
    padding: 25px 0;
    gap: 0;
  }
}
.line-home-events .container > .row > div .content > .row > div .item:before {
  content: "";
  width: 6000px;
  height: 1px;
  left: -2500px;
  background-color: #C0C1CC;
  position: absolute;
  top: 0;
}
.line-home-events .container > .row > div .content > .row > div .item > a {
  display: none;
}
.line-home-events .container > .row > div .content > .row > div .item h3 {
  order: 2;
  width: 50%;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  color: #ED1B2F;
}
@media (max-width: 575px) {
  .line-home-events .container > .row > div .content > .row > div .item h3 {
    width: 80%;
  }
}
.line-home-events .container > .row > div .content > .row > div .item h3 a:hover {
  color: #29292A;
}
.line-home-events .container > .row > div .content > .row > div .item .itemInfos {
  order: 1;
  width: 25%;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .line-home-events .container > .row > div .content > .row > div .item .itemInfos {
    width: 100%;
    margin-bottom: 10px;
  }
}
.line-home-events .container > .row > div .content > .row > div .item .intro {
  display: none;
}
.line-home-events .container > .row > div .content > .row > div .item hr {
  display: none;
}
.line-home-events .container > .row > div .content > .row > div .item .actions {
  order: 3;
  width: 25%;
  margin-top: 0;
}
@media (max-width: 575px) {
  .line-home-events .container > .row > div .content > .row > div .item .actions {
    width: 100%;
  }
}
.line-home-events .container > .row > div .content > .row > div .item .actions .btn-primary {
  position: relative;
  display: block;
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  border-radius: 50px;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  text-transform: inherit;
  transition: all 300ms;
  margin-top: -5px;
  margin-left: auto;
}
.line-home-events .container > .row > div .content > .row > div .item .actions .btn-primary:after {
  content: "";
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/btn-arrow-icon.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  transform: rotate(-90deg);
  right: 7px;
  top: 12px;
  width: 17px;
  height: 8px;
}
.line-home-events .container > .row > div .content > .row > div .item .actions .btn-primary:hover, .line-home-events .container > .row > div .content > .row > div .item .actions .btn-primary:focus {
  background-color: #fff !important;
  border: 1px solid #ED1B2F;
  text-decoration: none;
}
.line-home-events .container > .row > div .content > .row > div .item .actions .btn-primary:hover:after, .line-home-events .container > .row > div .content > .row > div .item .actions .btn-primary:focus:after {
  filter: invert(20%) sepia(61%) saturate(4891%) hue-rotate(344deg) brightness(93%) contrast(100%);
}

.line-home-events-cta {
  padding-bottom: 65px;
}
@media (max-width: 767px) {
  .line-home-events-cta {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .line-home-events-cta .content p {
    text-align: left !important;
  }
}

.line-home-finding {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #3E4E63;
}
@media (max-width: 767px) {
  .line-home-finding {
    padding-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .line-home-finding.animate .container > .row > div:nth-child(2) {
    order: 1;
    padding-bottom: 55px;
  }
}
.line-home-finding.animate .container > .row > div:nth-child(2) .content:after {
  animation-name: img_appears;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0s;
}
@media (max-width: 767px) {
  .line-home-finding .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .line-home-finding .container > .row > div:nth-child(1) {
    order: 2;
  }
}
.line-home-finding .container > .row > div:nth-child(1) .content h2 {
  color: #fff;
  margin-bottom: 35px;
}
.line-home-finding .container > .row > div:nth-child(1) .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #fff;
}
.line-home-finding .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-home-finding .container > .row > div:nth-child(1) .content .btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .line-home-finding .container > .row > div:nth-child(1) .content .btn {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .line-home-finding .container > .row > div:nth-child(2) {
    order: 1;
    padding-bottom: 55px;
  }
}
.line-home-finding .container > .row > div:nth-child(2) .content:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background-color: #3E4E63;
}
.line-home-finding .container > .row > div:nth-child(2) .content img {
  border-radius: 5px;
}
@media (max-width: 767px) {
  .line-home-finding .container > .row > div:nth-child(2) .content img {
    float: none !important;
  }
}

.line-about-building {
  padding-top: 100px;
  padding-bottom: 165px;
  background-color: #ED1B2F;
  position: relative;
  z-index: 1;
}
.line-about-building .container {
  position: relative;
}
.line-about-building .container:after {
  content: "";
  width: 436px;
  height: 541px;
  position: absolute;
  right: 0;
  bottom: -300px;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/About%20us/Goodman-mcGill.png");
  background-position: bottom right;
  background-size: 436px 541px;
}
@media (max-width: 1199px) {
  .line-about-building .container:after {
    background-size: 85%;
    background-repeat: no-repeat;
  }
}
@media (max-width: 991px) {
  .line-about-building .container:after {
    background-size: 65%;
    bottom: -340px;
  }
}
@media (max-width: 767px) {
  .line-about-building .container:after {
    background-size: 40%;
    right: 45px;
    bottom: -220px;
  }
}
.line-about-building .container > .row > div .content {
  width: 100%;
}
.line-about-building .container > .row > div .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #fff;
  margin-bottom: 60px;
  max-width: 730px;
}
@media (max-width: 991px) {
  .line-about-building .container > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-about-building .container > .row > div .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-about-building .container > .row > div .content p {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  max-width: 540px;
}
.line-about-better-prevent-title {
  padding-top: 100px;
  padding-bottom: 100px;
}
.line-about-better-prevent-title .content {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.line-about-better-prevent-title .content h2 {
  margin-bottom: 25px;
}
.line-about-better-prevent-title .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-about-better-prevent-title .content h3 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
}
.line-about-better-prevent-title .content h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-about-better-prevent {
  padding-bottom: 130px;
}
.line-about-better-prevent .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 30px;
}
@media (max-width: 991px) {
  .line-about-better-prevent .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 100px 30px;
  }
}
.line-about-better-prevent .container > .row > div .content > .row {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
.line-about-better-prevent .container > .row > div .content > .row .item {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  background-color: #fff;
  height: 100%;
  padding: 0 35px 50px 35px;
}
.line-about-better-prevent .container > .row > div .content > .row .item .itemImage {
  width: 94px;
  height: 94px;
  border-radius: 94px;
  background-color: #29292A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: -48px;
  margin-bottom: 45px;
}
.line-about-better-prevent .container > .row > div .content > .row .item .itemImage img {
  margin-bottom: 0;
}
.line-about-better-prevent .container > .row > div .content > .row .item h3 {
  margin-bottom: 25px;
}
.line-about-better-prevent .container > .row > div .content > .row .item .intro p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.line-about-better-prevent .container > .row > div .content > .row .item .intro p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-about-research-themes-title {
  padding-top: 90px;
  padding-bottom: 65px;
}
.line-about-research-themes-title.areas {
  padding-bottom: 40px;
}
.line-about-research-themes-title h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
}
@media (max-width: 991px) {
  .line-about-research-themes-title h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-about-research-themes-title h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-about-research-themes-title h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-about-research-themes-title p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  padding-top: 10px;
}
.line-about-research-themes-title p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

/*
.line-about-research-themes {
    .container-fluid {
        >.row {
            >div {
                .content {
                    @include col-grid(3, 0, 0);
                    border-top: 1px solid $clrGrey;
                    >.row {
                        margin-top:0;
                        margin-left: 0;
                        margin-right: 0;
                        border-bottom: 1px solid $clrGrey;
                        border-right: 1px solid $clrGrey;
                        &:nth-child(3n) {
                            border-right: 0;
                        }
                        .item {
                            padding: 25px;
                            .itemImage {
                                top: 0;
                                bottom: 0;
                                left: 0;
                                right: 0;
                                img {
                                    border-radius: 20px;
                                    margin-bottom: 0;
                                }
                            }
                            .intro {
                                position: absolute;
                                top: 0;
                                bottom: 0;
                                left: 0;
                                right: 0;
                                display: flex;
                                align-items: center;
                                text-align: center;
                                p {
                                    color: $clrWhite;
                                    @include h3;
                                    margin-bottom: 0;
                                    &:after {
                                        content:"";
                                        width: 100px;
                                        height: 1px;
                                        margin-top: 35px;
                                        display: block;
                                        margin-left: auto;
                                        margin-right: auto;
                                        background-color: $clrWhite;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

    }
}
*/
.line-about-best-minds {
  padding-top: 45px;
  padding-bottom: 45px;
}
.line-about-best-minds .container > .row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .line-about-best-minds .container > .row > div:nth-child(1) {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .line-about-best-minds .container > .row > div:nth-child(1) {
    width: 100%;
    padding-bottom: 40px;
  }
  .line-about-best-minds .container > .row > div:nth-child(1) .content {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-about-best-minds .container > .row > div:nth-child(2) {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .line-about-best-minds .container > .row > div:nth-child(2) {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .line-about-best-minds .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-about-best-minds .container > .row > div:nth-child(2) .content {
  padding-left: 15%;
}
@media (max-width: 991px) {
  .line-about-best-minds .container > .row > div:nth-child(2) .content {
    padding-left: 10%;
  }
}
@media (max-width: 767px) {
  .line-about-best-minds .container > .row > div:nth-child(2) .content {
    padding-left: 0;
    text-align: center;
  }
}
.line-about-best-minds .container > .row > div:nth-child(2) .content h2 {
  margin-bottom: 30px;
}
.line-about-best-minds .container > .row > div:nth-child(2) .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-about-best-minds .container > .row > div:nth-child(2) .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #000;
}
.line-about-best-minds .container > .row > div:nth-child(2) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-about-strong-leadership {
  padding-top: 45px;
  padding-bottom: 90px;
}
.line-about-strong-leadership .container > .row {
  display: flex;
  flex-wrap: wrap;
}
.line-about-strong-leadership .container > .row > div:nth-child(1) {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .line-about-strong-leadership .container > .row > div:nth-child(1) {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .line-about-strong-leadership .container > .row > div:nth-child(1) {
    width: 100%;
    order: 2;
  }
}
.line-about-strong-leadership .container > .row > div:nth-child(1) .content {
  padding-right: 15%;
}
@media (max-width: 991px) {
  .line-about-strong-leadership .container > .row > div:nth-child(1) .content {
    padding-right: 10%;
  }
}
@media (max-width: 767px) {
  .line-about-strong-leadership .container > .row > div:nth-child(1) .content {
    padding-right: 0;
    text-align: center;
  }
}
.line-about-strong-leadership .container > .row > div:nth-child(1) .content h2 {
  margin-bottom: 30px;
}
.line-about-strong-leadership .container > .row > div:nth-child(1) .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-about-strong-leadership .container > .row > div:nth-child(1) .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #000;
}
.line-about-strong-leadership .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 991px) {
  .line-about-strong-leadership .container > .row > div:nth-child(2) {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .line-about-strong-leadership .container > .row > div:nth-child(2) {
    width: 100%;
    order: 1;
    padding-bottom: 40px;
  }
  .line-about-strong-leadership .container > .row > div:nth-child(2) .content {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .line-about-strong-leadership .container > .row > div:nth-child(2) .content {
    margin-left: 80px;
  }
}

/*
.line-about-excellence-rooted {
    background-color: $primary;
    padding-top: 45px;
    padding-bottom: 45px;
    .container {
        >.row {
            display: flex;
            flex-wrap: wrap;
            >div {
                &:nth-child(1) {
                    display: flex;
                    align-items: center;
                    .content {
                        padding-left: 15%;
                        h2 {
                            margin-bottom: 30px;
                            color: $clrWhite;
                            @include red-text;
                        }
                        p {
                            @include p-intro;
                            color: $clrWhite;
                        }
                    }
                }
                &:nth-child(2) {
                    .content {
                        text-align: right;
                    }
                }
            }
        }
    }
}
*/
.line-about-huge-btn {
  padding-top: 95px;
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .line-about-huge-btn {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .line-about-huge-btn {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .line-about-huge-btn .container > .row > div:nth-child(2) {
    padding-top: 60px;
  }
}
.line-about-huge-btn.last {
  padding-top: 30px;
  padding-bottom: 130px;
}
.line-about-huge-btn p {
  margin-bottom: 0;
}

.line-history-intro {
  padding-top: 100px;
  padding-bottom: 80px;
}
.line-history-intro .content {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.line-history-intro .content h2 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
}
.line-history-intro .content h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-history-intro .content h2.animate a {
  opacity: 1 !important;
}
.line-history-intro .content h3 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  font-weight: 500;
}
.line-history-timeline {
  position: relative;
  overflow: hidden;
  padding-bottom: 95px;
}
@media (max-width: 991px) {
  .line-history-timeline {
    padding-top: 40px;
  }
}
.line-history-timeline.legacy .newsList .row .item > h3 {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .line-history-timeline .newsList {
    padding-left: 15px;
  }
}
.line-history-timeline .newsList:before {
  content: "";
  height: calc(100% - 50px);
  position: absolute;
  border-right: 1px solid #C0C1CC;
  top: -16px;
  left: 50%;
}
@media (max-width: 767px) {
  .line-history-timeline .newsList:before {
    left: 26px;
  }
}
.line-history-timeline .newsList .row {
  width: 100%;
  display: flex;
  position: relative;
  margin: 0 !important;
  padding: 40px 0 20px 0;
}
@media (max-width: 767px) {
  .line-history-timeline .newsList .row {
    display: block;
  }
}
.line-history-timeline .newsList .row .item {
  width: 50%;
  margin: 0;
}
@media (max-width: 767px) {
  .line-history-timeline .newsList .row .item {
    width: 100%;
    padding-left: 15px;
  }
}
.line-history-timeline .newsList .row .item > h3 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  margin-bottom: 55px;
}
@media (max-width: 991px) {
  .line-history-timeline .newsList .row .item > h3 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-history-timeline .newsList .row .item > h3 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-history-timeline .newsList .row .item > h3:before {
  content: "";
  position: absolute;
  border-radius: 25px;
  width: 18px;
  height: 18px;
  background-color: #ED1B2F;
  margin-top: 30px;
  -webkit-box-shadow: 0px 0px 0px 14px #fff;
  box-shadow: 0px 0px 0px 14px #fff;
}
.line-history-timeline .newsList .row .item h2 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
}
.line-history-timeline .newsList .row .item h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-history-timeline .newsList .row .item h2.animate a {
  opacity: 1 !important;
}
.line-history-timeline .newsList .row .item .intro {
  border-radius: 7px;
}
.line-history-timeline .newsList .row .item .intro p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.line-history-timeline .newsList .row .item .intro p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-history-timeline .newsList .row:nth-child(odd) {
  justify-content: flex-end;
}
.line-history-timeline .newsList .row:nth-child(odd) .item > h3 {
  padding: 0 0 0 110px;
}
.line-history-timeline .newsList .row:nth-child(odd) .item > h3:before {
  left: -9px;
}
@media (max-width: 767px) {
  .line-history-timeline .newsList .row:nth-child(odd) .item > h3:before {
    left: -13px;
  }
}
@media (max-width: 1199px) {
  .line-history-timeline .newsList .row:nth-child(odd) .item > h3 {
    padding: 0 10px 0 95px;
  }
}
@media (max-width: 991px) {
  .line-history-timeline .newsList .row:nth-child(odd) .item > h3 {
    padding: 0 10px 0 65px;
  }
}
@media (max-width: 767px) {
  .line-history-timeline .newsList .row:nth-child(odd) .item > h3 {
    padding: 0;
    margin-left: 30px;
  }
}
.line-history-timeline .newsList .row:nth-child(odd) .item .intro {
  padding: 0 0 0 110px;
  border-radius: 7px;
}
@media (max-width: 1199px) {
  .line-history-timeline .newsList .row:nth-child(odd) .item .intro {
    padding: 0 25px 0 95px;
  }
}
@media (max-width: 991px) {
  .line-history-timeline .newsList .row:nth-child(odd) .item .intro {
    padding: 0 25px 0 65px;
  }
}
@media (max-width: 767px) {
  .line-history-timeline .newsList .row:nth-child(odd) .item .intro {
    padding: 0;
    margin-left: 30px;
  }
}
@media (max-width: 1199px) {
  .line-history-timeline .newsList .row:nth-child(odd) .item .intro img {
    width: 80% !important;
  }
}
@media (max-width: 767px) {
  .line-history-timeline .newsList .row:nth-child(odd) .item .intro img {
    width: inherit !important;
  }
}
@media (min-width: 768px) {
  .line-history-timeline .newsList .row:nth-child(odd) .item .intro img {
    position: absolute;
    top: 0;
    left: -90%;
  }
}
.line-history-timeline .newsList .row:nth-child(odd) .item .intro p:has(> img) {
  margin-bottom: 0;
}
.line-history-timeline .newsList .row:nth-child(even) {
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .line-history-timeline .newsList .row:nth-child(even) {
    justify-content: flex-end;
  }
}
.line-history-timeline .newsList .row:nth-child(even) .item {
  text-align: right;
}
@media (max-width: 767px) {
  .line-history-timeline .newsList .row:nth-child(even) .item {
    text-align: left;
  }
}
.line-history-timeline .newsList .row:nth-child(even) .item > h3 {
  padding: 0 110px 0 0;
}
.line-history-timeline .newsList .row:nth-child(even) .item > h3:before {
  right: -9px;
}
@media (max-width: 767px) {
  .line-history-timeline .newsList .row:nth-child(even) .item > h3:before {
    left: -13px;
  }
}
@media (max-width: 1199px) {
  .line-history-timeline .newsList .row:nth-child(even) .item > h3 {
    padding: 0 95px 0 25px;
  }
}
@media (max-width: 991px) {
  .line-history-timeline .newsList .row:nth-child(even) .item > h3 {
    padding: 0 65px 0 25px;
  }
}
@media (max-width: 767px) {
  .line-history-timeline .newsList .row:nth-child(even) .item > h3 {
    padding: 0;
    margin-left: 30px;
  }
}
.line-history-timeline .newsList .row:nth-child(even) .item .intro {
  padding: 0 110px 0 0;
  border-radius: 7px;
}
@media (max-width: 1199px) {
  .line-history-timeline .newsList .row:nth-child(even) .item .intro {
    padding: 0 95px 0 25px;
  }
}
@media (max-width: 991px) {
  .line-history-timeline .newsList .row:nth-child(even) .item .intro {
    padding: 0 65px 0 25px;
  }
}
@media (max-width: 767px) {
  .line-history-timeline .newsList .row:nth-child(even) .item .intro {
    padding: 0;
    margin-left: 30px;
  }
}
@media (max-width: 1199px) {
  .line-history-timeline .newsList .row:nth-child(even) .item .intro img {
    width: 80% !important;
  }
}
@media (max-width: 767px) {
  .line-history-timeline .newsList .row:nth-child(even) .item .intro img {
    width: inherit !important;
  }
}
@media (min-width: 768px) {
  .line-history-timeline .newsList .row:nth-child(even) .item .intro img {
    position: absolute;
    top: 0;
    right: -90%;
  }
}
.line-history-timeline .newsList .row:nth-child(even) .item .intro p:has(> img) {
  margin-bottom: 0;
}

.line-our-legacy-list {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #F2F2F5;
}
.line-our-legacy-list.first {
  padding-top: 95px;
  padding-bottom: 40px;
}
.line-our-legacy-list.last {
  padding-top: 40px;
  padding-bottom: 85px;
}
@media (max-width: 767px) {
  .line-our-legacy-list .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-our-legacy-list .container > .row > div:nth-child(1) {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .line-our-legacy-list .container > .row > div:nth-child(1) {
    width: 100%;
    order: 2;
  }
}
@media (max-width: 1199px) {
  .line-our-legacy-list .container > .row > div:nth-child(1) .content {
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .line-our-legacy-list .container > .row > div:nth-child(1) .content {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .line-our-legacy-list .container > .row > div:nth-child(1) .content {
    padding-right: 0;
  }
}
.line-our-legacy-list .container > .row > div:nth-child(1) .content h2 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
}
.line-our-legacy-list .container > .row > div:nth-child(1) .content h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-our-legacy-list .container > .row > div:nth-child(1) .content h2.animate a {
  opacity: 1 !important;
}
.line-our-legacy-list .container > .row > div:nth-child(1) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-our-legacy-list .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-our-legacy-list .container > .row > div:nth-child(1) .content a {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .line-our-legacy-list .container > .row > div:nth-child(1) .content br {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .line-our-legacy-list .container > .row > div:nth-child(2) {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .line-our-legacy-list .container > .row > div:nth-child(2) {
    width: 100%;
    order: 1;
    padding-bottom: 30px;
  }
}
.line-our-legacy-list .container > .row > div:nth-child(2) .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-our-legacy-list .container > .row > div:nth-child(2) .content {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .line-our-legacy-list .container > .row > div:nth-child(2) .content img {
    width: 100% !important;
  }
}
.line-our-legacy-list .container > .row > div:nth-child(2) .content h6 {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: right;
  font-size: 10px;
  line-height: 16px;
}
.line-our-legacy-list .container > .row > div:nth-child(2) .content h6:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #C0C1CC;
  position: absolute;
  margin-left: -45px;
  margin-top: 8px;
}

.line-legacy-intro {
  padding-top: 55px;
  padding-bottom: 80px;
  background-color: #F2F2F5;
}
.line-legacy-intro .container > .row > div:nth-child(1) {
  width: 40%;
}
@media (max-width: 767px) {
  .line-legacy-intro .container > .row > div:nth-child(1) {
    width: 100%;
    padding-bottom: 10px;
  }
}
.line-legacy-intro .container > .row > div:nth-child(1) .content {
  padding-right: 60px;
}
@media (max-width: 1199px) {
  .line-legacy-intro .container > .row > div:nth-child(1) .content {
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .line-legacy-intro .container > .row > div:nth-child(1) .content {
    padding-right: 20px;
  }
}
.line-legacy-intro .container > .row > div:nth-child(1) .content h2 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  margin-bottom: 30px;
}
.line-legacy-intro .container > .row > div:nth-child(1) .content h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-legacy-intro .container > .row > div:nth-child(1) .content h2.animate a {
  opacity: 1 !important;
}
.line-legacy-intro .container > .row > div:nth-child(1) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-legacy-intro .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-legacy-intro .container > .row > div:nth-child(2) {
  width: 60%;
}
@media (max-width: 767px) {
  .line-legacy-intro .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-legacy-intro .container > .row > div:nth-child(2) .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.line-legacy-intro .container > .row > div:nth-child(2) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-legacy-schema {
  padding-top: 100px;
  padding-bottom: 105px;
}

.line-legacy-collaboration {
  padding-top: 55px;
  padding-bottom: 60px;
  background-color: #F2F2F5;
}
.line-legacy-collaboration .container > .row > div:nth-child(1) {
  width: 70%;
}
@media (max-width: 991px) {
  .line-legacy-collaboration .container > .row > div:nth-child(1) {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .line-legacy-collaboration .container > .row > div:nth-child(1) {
    width: 90%;
  }
}
@media (max-width: 575px) {
  .line-legacy-collaboration .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-legacy-collaboration .container > .row > div:nth-child(1) .content h2 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  margin-top: 25px;
  margin-bottom: 20px;
}
.line-legacy-collaboration .container > .row > div:nth-child(1) .content h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-legacy-collaboration .container > .row > div:nth-child(1) .content h2.animate a {
  opacity: 1 !important;
}
.line-legacy-collaboration .container > .row > div:nth-child(1) .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.line-legacy-collaboration .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-legacy-collaboration .container > .row > div:nth-child(2) {
  width: 40%;
}

.line-legacy-photo-text {
  padding-top: 85px;
}
.line-legacy-photo-text .container > .row {
  display: flex;
  flex-direction: row;
  gap: 100px;
}
@media (max-width: 1199px) {
  .line-legacy-photo-text .container > .row {
    gap: 60px;
  }
}
@media (max-width: 991px) {
  .line-legacy-photo-text .container > .row {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .line-legacy-photo-text .container > .row {
    flex-direction: column;
  }
}
.line-legacy-photo-text .container > .row:before, .line-legacy-photo-text .container > .row:after {
  display: none;
}
.line-legacy-photo-text .container > .row > div:nth-child(1) {
  width: 36%;
}
@media (max-width: 767px) {
  .line-legacy-photo-text .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-legacy-photo-text .container > .row > div:nth-child(1) .content h6 {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-top: 10px;
}
.line-legacy-photo-text .container > .row > div:nth-child(1) .content h6.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-legacy-photo-text .container > .row > div:nth-child(2) {
  width: 64%;
}
@media (max-width: 767px) {
  .line-legacy-photo-text .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-legacy-photo-text .container > .row > div:nth-child(2) h2 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  margin-bottom: 20px;
}
.line-legacy-photo-text .container > .row > div:nth-child(2) h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-legacy-photo-text .container > .row > div:nth-child(2) h2.animate a {
  opacity: 1 !important;
}
.line-legacy-photo-text .container > .row > div:nth-child(2) p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-legacy-photo-text .container > .row > div:nth-child(2) p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-legacy-timeline-title {
  padding-top: 100px;
  padding-bottom: 60px;
  background-color: #F2F2F5;
}

.line-legacy-reference {
  padding-top: 0;
  padding-bottom: 75px;
  background-color: #F2F2F5;
}
.line-legacy-reference .container > .row .content h2 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  margin-bottom: 25px;
}
.line-legacy-reference .container > .row .content h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-legacy-reference .container > .row .content h2.animate a {
  opacity: 1 !important;
}
.line-legacy-reference .container > .row .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #ED1B2F;
  margin-bottom: 25px;
}
.line-legacy-reference .container > .row .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-legacy-reference .container > .row .content a {
  color: #ED1B2F !important;
}
.line-legacy-reference .container > .row .content a:hover {
  color: #ED1B2F !important;
}

.cta-details.view-directory-list .line-annual-reports-discover {
  display: none;
}

.our-team-detail-banner {
  padding-top: 10px;
}
@media (max-width: 767px) {
  .our-team-detail-banner .container-fluid > .row > div {
    padding-left: 0;
    padding-right: 0;
  }
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(1) img {
  width: 100%;
  height: 100% !important;
  max-width: 250px;
  min-height: 294px;
  object-fit: cover;
  object-position: center center;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(1) img[src=""] {
  display: block !important;
  margin-left: auto;
  margin-right: auto;
  background-image: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/crm/images/team_place-holder-1708440933.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  text-indent: -1000000px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .our-team-detail-banner .container-fluid > .row > div:nth-child(1) img {
    max-width: 170px;
    min-height: 214px;
  }
}
@media (max-width: 767px) {
  .our-team-detail-banner .container-fluid > .row > div:nth-child(1) img {
    margin-bottom: 40px;
  }
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) h2 {
  margin-bottom: 20px;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) h2 ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) h2 ul li span {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  color: #29292A;
  margin-bottom: 0;
  opacity: 1 !important;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) h2 ul li span.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) h2 ul li span.animate a {
  opacity: 1 !important;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) h2 ul li:before {
  display: none;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) h2 ul::marker {
  display: none;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) .title {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 32px;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) .title.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) .title.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) .bio {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) .bio.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) .bio.animate p {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) .bio p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) .bio p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) ul.investigator-list-link {
  display: flex;
  align-items: center;
  list-style-type: none !important;
  margin-top: 50px !important;
  margin-bottom: 0;
  padding-left: 0 !important;
  padding-bottom: 10px;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) ul.investigator-list-link li {
  width: 60px;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) ul.investigator-list-link li::marker {
  display: none;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) ul.investigator-list-link li:before {
  display: none;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) ul.investigator-list-link li a {
  text-decoration: none !important;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) ul.investigator-list-link li:has(> a.linkedin[href=""]) {
  display: none;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) ul.investigator-list-link li:has(> a.email[href="mailto:"]) {
  display: none;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) ul.investigator-list-link li a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%23ed1b2f'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  width: 21px;
  height: 20px;
  display: block;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) ul.investigator-list-link li a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%2329292A'/%3E%3C/svg%3E%0A");
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) ul.investigator-list-link li a.email {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><g id="Groupe_18293" data-name="Groupe 18293" transform="translate(-498 -500)"><g id="Rectangle_3013" data-name="Rectangle 3013" transform="translate(498 500)" fill="none" stroke="%23ed1b2f" stroke-width="1.5"><rect width="24" height="14" rx="2" stroke="none"/><rect x="0.75" y="0.75" width="22.5" height="12.5" rx="1.25" fill="none"/></g><path id="Tracé_14999" data-name="Tracé 14999" d="M-5411.427-21874l7.976,4.773,7.632-4.773" transform="translate(5913.409 22377.322)" fill="none" stroke="%23ed1b2f" stroke-width="1"/></g></svg>');
  background-repeat: no-repeat;
  width: 24px;
  height: 14px;
  display: block;
  margin-top: 6px;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) ul.investigator-list-link li a.email:hover {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><g id="Groupe_18293" data-name="Groupe 18293" transform="translate(-498 -500)"><g id="Rectangle_3013" data-name="Rectangle 3013" transform="translate(498 500)" fill="none" stroke="%2329292A" stroke-width="1.5"><rect width="24" height="14" rx="2" stroke="none"/><rect x="0.75" y="0.75" width="22.5" height="12.5" rx="1.25" fill="none"/></g><path id="Tracé_14999" data-name="Tracé 14999" d="M-5411.427-21874l7.976,4.773,7.632-4.773" transform="translate(5913.409 22377.322)" fill="none" stroke="%2329292A" stroke-width="1"/></g></svg>');
  fill: #3E4E63;
}
.our-team-detail-banner .container-fluid > .row > div:nth-child(2) .btn-primary {
  margin-top: 20px;
}

.line-working-with-us-propelling {
  background-color: #F2F2F5;
  padding-top: 80px;
  padding-bottom: 75px;
}
.line-working-with-us-propelling .container > .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .line-working-with-us-propelling .container > .row {
    flex-direction: column;
  }
}
@media (max-width: 1199px) {
  .line-working-with-us-propelling .container > .row > div:nth-child(1) {
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .line-working-with-us-propelling .container > .row > div:nth-child(1) .content {
    order: 2;
  }
}
.line-working-with-us-propelling .container > .row > div:nth-child(1) .content h2 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  margin-bottom: 25px;
}
.line-working-with-us-propelling .container > .row > div:nth-child(1) .content h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-working-with-us-propelling .container > .row > div:nth-child(1) .content h2.animate a {
  opacity: 1 !important;
}
.line-working-with-us-propelling .container > .row > div:nth-child(1) .content h2:first-of-type {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .line-working-with-us-propelling .container > .row > div:nth-child(1) .content h2:first-of-type {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-working-with-us-propelling .container > .row > div:nth-child(1) .content h2:first-of-type {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-working-with-us-propelling .container > .row > div:nth-child(1) .content h2:first-of-type strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-working-with-us-propelling .container > .row > div:nth-child(1) .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 25px;
}
.line-working-with-us-propelling .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-working-with-us-propelling .container > .row > div:nth-child(1) .content p:first-of-type {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 35px;
}
.line-working-with-us-propelling .container > .row > div:nth-child(1) .content p:first-of-type.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-working-with-us-propelling .container > .row > div:nth-child(2) {
  display: flex;
  align-items: end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .line-working-with-us-propelling .container > .row > div:nth-child(2) {
    order: 1;
    justify-content: flex-start;
  }
}
.line-working-with-us-propelling .container > .row > div:nth-child(2) .content img {
  border-radius: 5px;
  margin-bottom: 25px;
}

.line-working-with-us-community {
  padding-top: 90px;
  padding-bottom: 45px;
}
.line-working-with-us-community .container > .row > div:nth-child(1) {
  width: 40%;
}
@media (max-width: 991px) {
  .line-working-with-us-community .container > .row > div:nth-child(1) {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .line-working-with-us-community .container > .row > div:nth-child(1) {
    width: 100%;
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .line-working-with-us-community .container > .row > div:nth-child(1) .content img {
    max-width: 200px !important;
  }
}
.line-working-with-us-community .container > .row > div:nth-child(2) {
  width: 60%;
}
@media (max-width: 991px) {
  .line-working-with-us-community .container > .row > div:nth-child(2) {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .line-working-with-us-community .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-working-with-us-community .container > .row > div:nth-child(2) .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .line-working-with-us-community .container > .row > div:nth-child(2) .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-working-with-us-community .container > .row > div:nth-child(2) .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-working-with-us-community .container > .row > div:nth-child(2) .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-working-with-us-community .container > .row > div:nth-child(2) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 35px;
}
.line-working-with-us-community .container > .row > div:nth-child(2) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 991px) {
  .line-working-with-us-community .container > .row > div:nth-child(2) .content br {
    display: none !important;
  }
}

.line-working-with-us-matter-logo {
  padding-top: 70px;
  padding-bottom: 20px;
  background-color: #F2F2F5;
}

.line-working-with-us-matter {
  padding-top: 0;
  padding-bottom: 55px;
  background-color: #F2F2F5;
}
.line-working-with-us-matter .container {
  border-top: 1px solid #C0C1CC;
  border-bottom: 1px solid #C0C1CC;
  padding-top: 55px;
  padding-bottom: 25px;
}
.line-working-with-us-matter .container > .row > div .content {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.line-working-with-us-matter .container > .row > div .content h3 {
  margin-bottom: 35px;
}

.line-working-with-us-values-title {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #F2F2F5;
}
.line-working-with-us-values-title h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-working-with-us-values-title h2 strong {
  font-weight: 500;
}
.line-working-with-us-values-title br {
  display: block !important;
}

.line-working-with-us-values {
  padding-top: 20px;
  padding-bottom: 80px;
  background-color: #F2F2F5;
}
.line-working-with-us-values .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 35px 20px;
}
@media (max-width: 767px) {
  .line-working-with-us-values .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 80px;
  }
}
@media (max-width: 575px) {
  .line-working-with-us-values .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 35px 80px;
  }
}
.line-working-with-us-values .container > .row > div .content > .row {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.line-working-with-us-values .container > .row > div .content > .row .item {
  text-align: center;
  max-width: 310px;
}
.line-working-with-us-values .container > .row > div .content > .row .item .intro p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.line-working-with-us-values .container > .row > div .content > .row .item .intro p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-working-with-us-values .container > .row > div .content > .row .item .itemImage img {
  margin-bottom: 5px;
}

.line-working-with-us-opportunities-title {
  padding-top: 65px;
  padding-bottom: 10px;
}
.line-working-with-us-opportunities-title h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-working-with-us-opportunities-title h2 strong {
  font-weight: 500;
}

.line-working-with-us-opportunities {
  padding-top: 20px;
  padding-bottom: 35px;
}
.line-working-with-us-opportunities .container > .row {
  margin-left: 0;
  margin-right: 0;
}
.line-working-with-us-opportunities .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px 20px;
}
@media (max-width: 991px) {
  .line-working-with-us-opportunities .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 20px;
  }
}
@media (max-width: 575px) {
  .line-working-with-us-opportunities .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 25px 20px;
  }
}
.line-working-with-us-opportunities .container > .row > div .content > .row {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.line-working-with-us-opportunities .container > .row > div .content > .row .item .intro h4 {
  margin-bottom: 10px;
}
.line-working-with-us-opportunities .container > .row > div .content > .row .item .intro p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.line-working-with-us-opportunities .container > .row > div .content > .row .item .intro p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-working-with-us-opportunities .container > .row > div .content > .row .item .itemImage img {
  margin-bottom: 5px;
}

.line-green-initiative-starter {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #29292A;
}
.line-green-initiative-starter .container > .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.line-green-initiative-starter .container > .row > div:nth-child(1) {
  width: 33.33333%;
}
@media (max-width: 767px) {
  .line-green-initiative-starter .container > .row > div:nth-child(1) {
    width: 100%;
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .line-green-initiative-starter .container > .row > div:nth-child(1) .content img {
    width: 100% !important;
  }
}
.line-green-initiative-starter .container > .row > div:nth-child(2) {
  width: 66.66666%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .line-green-initiative-starter .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .line-green-initiative-starter .container > .row > div:nth-child(2) .content {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .line-green-initiative-starter .container > .row > div:nth-child(2) .content {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .line-green-initiative-starter .container > .row > div:nth-child(2) .content {
    padding-left: 0;
  }
}
.line-green-initiative-starter .container > .row > div:nth-child(2) .content h3, .line-green-initiative-starter .container > .row > div:nth-child(2) .content h4, .line-green-initiative-starter .container > .row > div:nth-child(2) .content h5, .line-green-initiative-starter .container > .row > div:nth-child(2) .content h6, .line-green-initiative-starter .container > .row > div:nth-child(2) .content p {
  color: #fff;
}
.line-green-initiative-starter .container > .row > div:nth-child(2) .content br {
  display: block !important;
}

.line-accessibility-accessible {
  padding-top: 70px;
  padding-bottom: 75px;
  background-color: #F2F2F5;
}
.line-accessibility-accessible .container > .row {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .line-accessibility-accessible .container > .row {
    flex-direction: column-reverse;
  }
}
.line-accessibility-accessible .container > .row > div:nth-child(1) {
  width: 66.66666%;
}
@media (max-width: 991px) {
  .line-accessibility-accessible .container > .row > div:nth-child(1) {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .line-accessibility-accessible .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-accessibility-accessible .container > .row > div:nth-child(1) .content {
    padding-top: 50px;
  }
}
.line-accessibility-accessible .container > .row > div:nth-child(1) .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-accessibility-accessible .container > .row > div:nth-child(1) .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-accessibility-accessible .container > .row > div:nth-child(1) .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-accessibility-accessible .container > .row > div:nth-child(1) .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-accessibility-accessible .container > .row > div:nth-child(1) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-accessibility-accessible .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-accessibility-accessible .container > .row > div:nth-child(2) {
  width: 33.33333%;
  width: 33.33333%;
}
@media (max-width: 991px) {
  .line-accessibility-accessible .container > .row > div:nth-child(2) {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .line-accessibility-accessible .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-accessibility-accessible .container > .row > div:nth-child(2) .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-accessibility-accessible .container > .row > div:nth-child(2) .content {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .line-accessibility-accessible .container > .row > div:nth-child(2) .content img {
    width: 136px !important;
  }
}

.line-accessibility-icons-title {
  padding-bottom: 40px;
  background-color: #F2F2F5;
}
.line-accessibility-icons-title .container {
  padding-top: 50px;
  border-top: 1px solid #C0C1CC;
}
.line-accessibility-icons-title .container > .row > div .content {
  /*padding-top: 100px;*/
}
.line-accessibility-icons-title .container > .row > div .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
}
@media (max-width: 991px) {
  .line-accessibility-icons-title .container > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-accessibility-icons-title .container > .row > div .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-accessibility-icons-title .container > .row > div .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 0px;
}
.line-accessibility-icons-title .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-accessibility-icons {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #F2F2F5;
}
@media (max-width: 767px) {
  .line-accessibility-icons {
    padding-bottom: 40px;
  }
}
.line-accessibility-icons .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 60px 60px;
}
@media (max-width: 991px) {
  .line-accessibility-icons .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 40px;
  }
}
@media (max-width: 767px) {
  .line-accessibility-icons .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 40px;
  }
}
.line-accessibility-icons .container > .row > div .content > .row {
  margin-top: 0;
}
.line-accessibility-icons .container > .row > div .content > .row .item .itemImage {
  text-align: center;
}
.line-accessibility-icons .container > .row > div .content > .row .item .intro {
  text-align: center;
}

.line-accessibility-icons-cta {
  padding-bottom: 80px;
  background-color: #F2F2F5;
}
.line-accessibility-icons-cta .container > .row > div .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
}
@media (max-width: 991px) {
  .line-accessibility-icons-cta .container > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-accessibility-icons-cta .container > .row > div .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-accessibility-icons-cta .container > .row > div .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 0px;
}
.line-accessibility-icons-cta .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-accessibility-form {
  padding-top: 70px;
  padding-bottom: 70px;
}
.line-accessibility-form .container > .row > div:nth-child(1) .content {
  padding-right: 70px;
}
@media (max-width: 1199px) {
  .line-accessibility-form .container > .row > div:nth-child(1) .content {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .line-accessibility-form .container > .row > div:nth-child(1) .content {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .line-accessibility-form .container > .row > div:nth-child(1) .content {
    padding-right: 0;
  }
}
.line-accessibility-form .container > .row > div:nth-child(1) .content h2 {
  color: #ED1B2F;
  margin-bottom: 50px;
}
.line-accessibility-form .container > .row > div:nth-child(1) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-accessibility-form .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-accessibility-form .container > .row > div:nth-child(2) #formbuilder-add-wrapper {
  margin-top: 60px;
}

.line-our-research-title {
  padding-top: 110px;
  padding-bottom: 20px;
  background-color: #F2F2F5;
}
.line-our-research-title .container > .row > div .content {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.line-our-research-title .container > .row > div .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 22px;
}
@media (max-width: 991px) {
  .line-our-research-title .container > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-our-research-title .container > .row > div .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-our-research-title .container > .row > div .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-our-research-title .container > .row > div .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-our-research-title .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-our-research-mission {
  padding-top: 0;
  padding-bottom: 30px;
  background-color: #F2F2F5;
  overflow: hidden;
}
.line-our-research-mission.no-last-line .container > .row > div .content > .row:last-child:after {
  display: none;
}
.line-our-research-mission .container > .row > div .content {
  position: relative;
}
.line-our-research-mission .container > .row > div .content > .row {
  display: flex;
  position: relative;
  margin-top: 0;
  padding: 65px 0;
}
.line-our-research-mission .container > .row > div .content > .row:after {
  content: "";
  position: absolute;
  width: 6000px;
  left: -3000px;
  height: 1px;
  bottom: 0;
  background-color: #C0C1CC;
}
.line-our-research-mission .container > .row > div .content > .row .item {
  display: flex;
}
@media (max-width: 767px) {
  .line-our-research-mission .container > .row > div .content > .row .item {
    flex-direction: column;
    gap: 30px;
  }
}
.line-our-research-mission .container > .row > div .content > .row .item .itemImage {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex: 620px;
}
@media (max-width: 767px) {
  .line-our-research-mission .container > .row > div .content > .row .item .itemImage {
    flex: 100%;
    justify-content: flex-start;
  }
}
.line-our-research-mission .container > .row > div .content > .row .item .itemImage img {
  margin-bottom: 0;
}
.line-our-research-mission .container > .row > div .content > .row .item .intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 100%;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .line-our-research-mission .container > .row > div .content > .row .item .intro {
    padding-right: 0;
  }
}
.line-our-research-mission .container > .row > div .content > .row .item .intro h3 {
  margin-bottom: 20px;
}
.line-our-research-mission .container > .row > div .content > .row .item .intro h3 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-our-research-mission .container > .row > div .content > .row .item .intro p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.line-our-research-mission .container > .row > div .content > .row .item .intro p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-cm-template-title {
  padding-top: 70px;
  padding-bottom: 75px;
  background-color: #F2F2F5;
}
.line-cm-template-title .container > .row > div .content {
  max-width: 820px;
}
.line-cm-template-title .container > .row > div .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .line-cm-template-title .container > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-cm-template-title .container > .row > div .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-cm-template-title .container > .row > div .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-cm-template-title .container > .row > div .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 35px;
}
.line-cm-template-title .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-cm-template-number {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
.line-cm-template-number .container > .row > div .content {
  position: relative;
  counter-reset: section;
}
.line-cm-template-number .container > .row > div .content > .row {
  display: flex;
  position: relative;
  margin-top: 0;
  padding: 65px 15px;
}
.line-cm-template-number .container > .row > div .content > .row:first-child:before {
  content: "";
  position: absolute;
  width: 6000px;
  left: -3000px;
  height: 1px;
  top: 0;
  background-color: #C0C1CC;
}
.line-cm-template-number .container > .row > div .content > .row:after {
  content: "";
  position: absolute;
  margin-left: -240px;
  width: 6000px;
  left: -3000px;
  height: 1px;
  bottom: 0;
  background-color: #C0C1CC;
}
.line-cm-template-number .container > .row > div .content > .row:last-child {
  padding: 65px 15px 30px 15px;
}
.line-cm-template-number .container > .row > div .content > .row:last-child:after {
  display: none;
}
.line-cm-template-number .container > .row > div .content > .row .item {
  display: flex;
}
.line-cm-template-number .container > .row > div .content > .row .item .intro {
  padding-left: 240px;
}
@media (max-width: 767px) {
  .line-cm-template-number .container > .row > div .content > .row .item .intro {
    padding-left: 0;
    padding-top: 240px;
  }
}
.line-cm-template-number .container > .row > div .content > .row .item .intro:before {
  counter-increment: section;
  content: counter(section);
  font-size: 200px;
  line-height: 227px;
  color: #ED1B2F;
  width: 130px;
  /*width: 240px;*/
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -200px;
}
@media (max-width: 991px) {
  .line-cm-template-number .container > .row > div .content > .row .item .intro:before {
    margin-left: -190px;
  }
}
@media (max-width: 767px) {
  .line-cm-template-number .container > .row > div .content > .row .item .intro:before {
    margin-left: 0;
    width: 100%;
    align-items: flex-start;
    top: 0;
  }
}
.line-cm-template-number .container > .row > div .content > .row .item .intro h3 {
  margin-bottom: 20px;
}
.line-cm-template-number .container > .row > div .content > .row .item .intro h3 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-cm-template-number .container > .row > div .content > .row .item .intro p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.line-cm-template-number .container > .row > div .content > .row .item .intro p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-cm-template-number-cta {
  padding-bottom: 60px;
}
.line-cm-template-number-cta .container > .row > div .content {
  padding-left: 225px;
}
@media (max-width: 767px) {
  .line-cm-template-number-cta .container > .row > div .content {
    padding-left: 0;
    text-align: center;
  }
}

.line-cm-template-team {
  padding-top: 65px;
  padding-bottom: 50px;
  background-color: #3E4E63;
}
.line-cm-template-team .investigator-detail-team > .container {
  width: 100% !important;
}
.line-cm-template-team .investigator-detail-team > .container > .row h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #fff;
  text-align: center;
  font-weight: 500;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .line-cm-template-team .investigator-detail-team > .container > .row h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-cm-template-team .investigator-detail-team > .container > .row h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul {
  padding-left: 0 !important;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px 70px;
}
@media (max-width: 991px) {
  .line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px 70px;
  }
}
@media (max-width: 767px) {
  .line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 70px;
  }
}
.line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li {
  text-align: center;
}
.line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li.animate span {
  opacity: 1 !important;
}
.line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li:before {
  display: none;
}
.line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li span {
  color: #fff;
}
.line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-photo {
  width: 160px;
  height: 160px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-photo {
    width: 100px;
    height: 100px;
  }
}
.line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-photo img {
  width: 160px !important;
  height: 160px !important;
  border-radius: 100px;
  object-fit: cover;
  object-position: center center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-photo img {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 40px;
  }
}
@media (max-width: 575px) {
  .line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-photo img {
    width: 100px !important;
    height: 100px !important;
  }
}
.line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-firstname, .line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-lastname {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  opacity: 1 !important;
}
.line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-firstname.animate, .line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-lastname.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-position_en, .line-cm-template-team .investigator-detail-team > .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-position_fr {
  display: block;
}

.line-cm-template-membre-team {
  padding-top: 65px;
  padding-bottom: 50px;
  background-color: #3E4E63;
}
.line-cm-template-membre-team > .container > .row .zone-directory h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #fff;
  text-align: center;
  font-weight: 500;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .line-cm-template-membre-team > .container > .row .zone-directory h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-cm-template-membre-team > .container > .row .zone-directory h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-cm-template-membre-team > .container > .row #directory-tabs {
  display: none;
}
.line-cm-template-membre-team > .container > .row .tab-content .tab-pane {
  /*
  @include col-grid (4, 60px, 70px);
  @include max-md {
      @include col-grid (3, 60px, 70px);
  }
  @include max-sm {
      @include col-grid (2, 60px, 70px);
  }
  */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 0;
}
.line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords {
  width: 25%;
}
@media (max-width: 991px) {
  .line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords {
    width: 33%;
  }
}
@media (max-width: 767px) {
  .line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords {
    width: 50%;
  }
}
.line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul {
  padding-left: 0 !important;
}
.line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li {
  text-align: center;
}
.line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li:before {
  display: none;
}
.line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li span {
  color: #fff;
}
.line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li span.object-team_members-field-photo {
  width: 160px;
  height: 160px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li span.object-team_members-field-photo {
    width: 100px;
    height: 100px;
  }
}
.line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li span.object-team_members-field-photo img {
  width: 160px !important;
  height: 160px !important;
  border-radius: 100px;
  object-fit: cover;
  object-position: center center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li span.object-team_members-field-photo img {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 40px;
  }
}
@media (max-width: 575px) {
  .line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li span.object-team_members-field-photo img {
    width: 100px !important;
    height: 100px !important;
  }
}
.line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li span.object-team_members-field-firstname, .line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li span.object-team_members-field-lastname {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  opacity: 1;
}
.line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li span.object-team_members-field-firstname.animate, .line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li span.object-team_members-field-lastname.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li span.object-team_members-field-position_en, .line-cm-template-membre-team > .container > .row .tab-content .tab-pane div.member-detail-team-keywords ul li span.object-team_members-field-position_fr {
  display: block;
}

.line-cm-template-accordeon-title {
  padding-top: 95px;
  padding-bottom: 5px;
  background-color: #F2F2F5;
}
.line-cm-template-accordeon-title .container > .row > div .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}

.line-cm-template-accordeon {
  padding-top: 20px;
  padding-bottom: 80px;
  background-color: #F2F2F5;
}
.line-cm-template-accordeon .panel-news-accordion .panel-heading .panel-title a {
  padding: 33px 15px 32px 75px;
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
}
.line-cm-template-accordeon .panel-news-accordion .panel-heading .panel-title a.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-cm-template-accordeon .panel-news-accordion .panel-heading .panel-title a.animate a {
  opacity: 1 !important;
}
@media (max-width: 767px) {
  .line-cm-template-accordeon .panel-news-accordion .panel-heading .panel-title a {
    padding: 33px 15px 32px 40px;
  }
}
.line-cm-template-accordeon .panel-news-accordion .accordion-pane .news-accordion-content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 25px;
}
.line-cm-template-accordeon .panel-news-accordion .accordion-pane .news-accordion-content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-cm-template-accordeon .panel-news-accordion .accordion-pane .news-accordion-content u {
  text-decoration: none;
  color: #ED1B2F;
}

.line-cm-template-partners-title {
  padding-top: 75px;
  padding-bottom: 20px;
}

.line-cm-template-partners {
  padding-top: 10px;
  padding-bottom: 40px;
  border-bottom: 1px solid #C0C1CC;
}
.line-cm-template-partners .container > .row > div .content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.line-cm-template-partners .container > .row > div .content p {
  width: 100%;
  max-width: 280px;
}

.line-cm-template-research-title {
  padding-top: 45px;
  padding-bottom: 30px;
}
.line-cm-template-research-title h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
}
@media (max-width: 991px) {
  .line-cm-template-research-title h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-cm-template-research-title h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-cm-template-research-title h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}

.line-news {
  padding-top: 10px;
  padding-bottom: 60px;
}
.line-news.no-category .news-published-date:after {
  display: none;
}
.line-news .container > .row > div form label {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  margin-bottom: 12px;
}
.line-news .container > .row > div form label.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-news .container > .row > div a {
  opacity: 1 !important;
}
.line-news .container > .row > div h3.news-title {
  opacity: 1 !important;
}
.line-news .container > .row > div h3.news-title a {
  opacity: 1 !important;
}
.line-news .container > .row > div p.news-published-date.e-date {
  opacity: 1 !important;
}
.line-news .container > .row > div div.news-intro {
  opacity: 1 !important;
}
.line-news .container > .row > div div.news-intro p {
  opacity: 1 !important;
}
.line-news .container > .row > div > a:not(.news-category):not(:first-child):last-of-type {
  opacity: 1 !important;
}

.line-news-details-title .mod-article__wrapper,
.line-news-details-title .content,
.line-news-details-button .mod-article__wrapper,
.line-news-details-button .content,
.line-news-details-content .mod-article__wrapper,
.line-news-details-content .content {
  width: 100%;
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
}

.line-news-details-title {
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
}
.line-news-details-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 224px;
  height: 242px;
  background: #ED1B2F url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/logo-white-no-bg.svg") no-repeat;
  background-position: -325px -178px;
}
.line-news-details-title .mod-article__wrapper {
  display: flex;
  flex-direction: column;
}
.line-news-details-title .mod-article__wrapper h1 {
  order: 2;
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
}
@media (max-width: 991px) {
  .line-news-details-title .mod-article__wrapper h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-news-details-title .mod-article__wrapper h1.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-news-details-title .mod-article__wrapper p.mod-article__published-date {
  order: 1;
  margin-bottom: 6px;
}

.line-news-details-content {
  padding-top: 35px;
  padding-bottom: 30px;
}
.line-news-details-content .news-content .mod-article__img {
  margin-bottom: 35px;
}
.line-news-details-content .news-content .mod-article__content h1, .line-news-details-content .news-content .mod-article__content h2, .line-news-details-content .news-content .mod-article__content h3, .line-news-details-content .news-content .mod-article__content h4, .line-news-details-content .news-content .mod-article__content h5 {
  padding-top: 20px;
}
.line-news-details-content .news-content .mod-article__content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.line-news-details-content .news-content .mod-article__content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-news-details-content .article-back-to-list-histo {
  display: none;
  /*
  margin-top: 45px;
  display:block;
  @include btn;
  @include btn-primary;
  */
}

.line-news-details-back {
  padding-bottom: 55px;
}

.line-calendar-events {
  padding-top: 15px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .line-calendar-events.no-search {
    padding-top: 0;
  }
}
.line-calendar-events.no-search .events-mosaic {
  padding-top: 25px;
}

body.calendar-events-details .line-calendar-events {
  padding-top: 120px;
}

.line-about-our-events {
  padding-top: 20px;
  padding-bottom: 100px;
  background-color: #F2F2F5;
}
.line-about-our-events .container > .row > div .news-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 30px;
}
@media (max-width: 767px) {
  .line-about-our-events .container > .row > div .news-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 30px;
  }
}
.line-about-our-events .container > .row > div .news-mosaic > .row {
  margin-top: 0;
}
.line-about-our-events .container > .row > div .news-mosaic > .row > div .news-intro {
  padding-top: 0 !important;
  margin-right: 0 !important;
}
.line-about-our-events .container > .row > div .news-mosaic > .row > div .news-intro table {
  margin-bottom: 0 !important;
}
.line-about-our-events .container > .row > div .news-mosaic > .row > div .news-intro table tr {
  background-color: #fff;
}
.line-about-our-events .container > .row > div .news-mosaic > .row > div .news-intro table tr:first-child {
  padding: 0;
}
.line-about-our-events .container > .row > div .news-mosaic > .row > div .news-intro table tr:first-child:after {
  display: none;
}
.line-about-our-events .container > .row > div .news-mosaic > .row > div .news-intro table tr:first-child td {
  text-align: center;
  padding-bottom: 20px;
}
.line-about-our-events .container > .row > div .news-mosaic > .row > div .news-intro table tr:first-child td h3 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  padding: 27px 15px 5px 15px;
  margin-bottom: 0;
}
.line-about-our-events .container > .row > div .news-mosaic > .row > div .news-intro table tr:first-child td h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-about-our-events .container > .row > div .news-mosaic > .row > div .news-intro table.active tr:last-child {
  padding: 0 25px 25px 25px;
}

.line-investigators-search {
  padding-top: 70px;
  padding-bottom: 85px;
  margin-bottom: 30px;
}
.line-investigators-search .search-object-bloc > div.search-object-form {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 35px;
}
@media (max-width: 767px) {
  .line-investigators-search .search-object-bloc > div.search-object-form {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.line-investigators-search .search-object-bloc > div.search-object-form form {
  width: 100%;
  max-width: 440px;
}
.line-investigators-search .search-object-bloc > div.search-object-form label {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 12px;
}
.line-investigators-search .search-object-bloc > div.search-object-form label.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-investigators-search .search-object-bloc > div.search-object-form .search_input {
  width: 100%;
}
.line-investigators-search .search-object-bloc > div.search-object-form .search_input .chosen-choices {
  background: #ffffff url(https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-btn-arrow-big.svg) no-repeat right 15px center !important;
  border: 2px solid #C0C1CC !important;
  border-radius: 3px;
  color: #29292A !important;
  padding-right: 0 !important;
  position: relative;
  max-width: 440px;
  min-height: 60px;
}
.line-investigators-search .search-object-bloc > div.search-object-form .search_input .chosen-choices:before {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: calc(100% - 25px);
  right: 48px;
  background-color: #C0C1CC;
}
.line-investigators-search .search-object-bloc > div.search-object-form .search_input .chosen-choices input {
  color: #29292A !important;
}
.line-investigators-search .search-object-bloc > div.search-object-form .search_input .chosen-choices a.search-choice-close {
  top: 11px !important;
}
.line-investigators-search .search-object-bloc > div.search-object-form .search_input .chosen-results .active-result.highlighted {
  background-color: #ED1B2F;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) {
  padding-top: 40px;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px 30px;
}
@media (max-width: 767px) {
  .line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 45px 30px;
  }
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div {
  background-color: #fff;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc {
  display: flex;
  min-height: 294px;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-picture {
  flex: 1 1 0px;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-picture img {
  /*max-height: 292px!important;*/
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content {
  flex: 1 1 0px;
  padding: 30px 30px 22px 30px;
  display: flex;
  flex-direction: column;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 {
  margin-bottom: 0;
  opacity: 1 !important;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 > span {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  color: #29292A;
  margin-bottom: 0;
  opacity: 1 !important;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 > span.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 ul li {
  margin-bottom: 0 !important;
  opacity: 1 !important;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 ul li span {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  color: #29292A;
  margin-bottom: 0;
  opacity: 1 !important;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 ul li span.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 ul li:before {
  display: none;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 ul::marker {
  display: none;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h4 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 5px;
  opacity: 1 !important;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h4.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul {
  padding-left: 0 !important;
  margin-top: 0;
  margin-bottom: 10px !important;
  list-style-type: none;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul li {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #ED1B2F !important;
  opacity: 1 !important;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul li.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul li span {
  opacity: 1 !important;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul li:before {
  display: none;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul::marker {
  display: none;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content p {
  opacity: 1 !important;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content p:last-child {
  height: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content p:last-child .btn-plus {
  margin-bottom: 0;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content .btn {
  opacity: 1 !important;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  padding-bottom: 10px;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li {
  width: 40px;
  opacity: 1 !important;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li::marker {
  display: none;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a {
  text-decoration: none !important;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li:has(> a.linkedin[href=""]) {
  display: none;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li:has(> a.email[href="mailto:"]) {
  display: none;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%23ed1b2f'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  width: 21px;
  height: 20px;
  display: block;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%2329292A'/%3E%3C/svg%3E%0A");
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.email {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><g id="Groupe_18293" data-name="Groupe 18293" transform="translate(-498 -500)"><g id="Rectangle_3013" data-name="Rectangle 3013" transform="translate(498 500)" fill="none" stroke="%23ed1b2f" stroke-width="1.5"><rect width="24" height="14" rx="2" stroke="none"/><rect x="0.75" y="0.75" width="22.5" height="12.5" rx="1.25" fill="none"/></g><path id="Tracé_14999" data-name="Tracé 14999" d="M-5411.427-21874l7.976,4.773,7.632-4.773" transform="translate(5913.409 22377.322)" fill="none" stroke="%23ed1b2f" stroke-width="1"/></g></svg>');
  background-repeat: no-repeat;
  width: 24px;
  height: 14px;
  display: block;
  margin-top: 6px;
}
.line-investigators-search .search-object-bloc > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.email:hover {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><g id="Groupe_18293" data-name="Groupe 18293" transform="translate(-498 -500)"><g id="Rectangle_3013" data-name="Rectangle 3013" transform="translate(498 500)" fill="none" stroke="%2329292A" stroke-width="1.5"><rect width="24" height="14" rx="2" stroke="none"/><rect x="0.75" y="0.75" width="22.5" height="12.5" rx="1.25" fill="none"/></g><path id="Tracé_14999" data-name="Tracé 14999" d="M-5411.427-21874l7.976,4.773,7.632-4.773" transform="translate(5913.409 22377.322)" fill="none" stroke="%2329292A" stroke-width="1"/></g></svg>');
  fill: #3E4E63;
}

.line-scientific-details {
  display: none;
}

.scientific-details .line-scientific-details {
  display: block;
}

body.investigator:not(.view-formbuilder-search) .line-banner {
  display: none;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search {
  padding-top: 0;
  padding-bottom: 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container {
  padding: 0;
  width: 100% !important;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row {
  margin-left: 0;
  margin-right: 0px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div {
  margin: 0;
  padding: 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner {
  position: relative;
  background-color: #fff;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner:before {
  content: "";
  position: absolute;
  display: block;
  width: 75%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #F2F2F5;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(1) {
    width: 40%;
  }
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(1) {
    width: 100%;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(1) .content {
  padding-right: 60px;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(1) .content {
    padding-right: 30px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(1) .content img {
  width: 100% !important;
  height: 500px !important;
  object-fit: cover;
  object-position: top center;
  border-radius: 0px 0px 5px 0px;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) {
    width: 60%;
  }
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) {
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content {
  margin: 60px 60px 100px 0;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content {
    margin: 60px 0 60px 0;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-carousel {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  position: relative;
  padding: 45px 30px 20px 30px;
  width: 100%;
  background-color: transparent;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-carousel h5 {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-shadow: none;
  font-style: italic;
  text-align: right;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-carousel h5:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-testimonies-2x.png") no-repeat;
  background-size: 44px 41px;
  width: 44px;
  height: 41px;
  position: absolute;
  top: 0;
  right: 25px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-title {
  border-top: 1px solid #C0C1CC;
  border-bottom: 1px solid #C0C1CC;
  padding: 28px 0 0 0;
  margin-bottom: 25px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-title h1 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  color: #29292A;
  display: inline-flex;
  flex-direction: column;
  opacity: 1 !important;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-title h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-title h1.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-title h1 ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-title h1 ul li span {
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  color: #29292A;
  opacity: 1 !important;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-title h1 ul li span {
    font-size: 30px;
    line-height: 35px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-title h1 ul li span.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-title h1 ul li:before {
  display: none;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-title h1 + ul {
  list-style-type: none;
  padding-left: 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-title h1 + ul li {
  position: relative;
  line-height: 16px;
  margin-left: 7px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-title h1 + ul li:before {
  content: "";
  position: absolute;
  display: block;
  color: #29292A;
  background-color: #29292A;
  width: 2px;
  height: 2px;
  border-radius: 5px;
  margin-left: -7px;
  margin-top: 8px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-sickness ul li {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-sickness ul li.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .investigator-detail-banner-sickness ul li:before {
  margin-top: 7px !important;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-banner .container-fluid > .row > div:nth-child(2) .content .btn-arrow-big-down {
  margin-top: 40px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs {
  background-color: #fff;
  padding: 80px 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container {
    width: 100% !important;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs {
  margin-top: 0;
  border: 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li {
  width: 50%;
  padding: 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li.active a {
  border-bottom: 5px solid #ED1B2F;
  color: #ED1B2F;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li:nth-child(2) {
  text-align: center;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li a {
  width: 100%;
  text-transform: inherit;
  font-family: "PPObjectSans-Regular", sans-serif;
  font-size: 27px;
  font-weight: normal;
  text-align: center;
  margin-right: 0;
}
@media (max-width: 575px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li a {
    font-size: 20px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li a.bt_publications {
  color: #ED1B2F;
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent !important;
  color: #29292A !important;
  transition: all 150ms !important;
  border: 1px solid #ED1B2F !important;
  padding: 15px 35px !important;
  border-radius: 50px !important;
  width: auto;
  margin-right: 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li a.bt_publications:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li a.bt_publications:hover, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li a.bt_publications:active, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li a.bt_publications:focus {
  text-decoration: none;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li a.bt_publications:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li a.bt_publications {
    white-space: normal !important;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li a.bt_publications:hover, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li a.bt_publications:active, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .nav-tabs li a.bt_publications:focus {
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  color: #fff !important;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .tab-content {
  padding-top: 65px;
  width: 100%;
  max-width: 800px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .tab-content h3 {
  margin-bottom: 35px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .tab-content h4 {
  margin-top: 35px;
  margin-bottom: 25px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .tab-content ol, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .tab-content ul {
  margin-bottom: 25px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .tab-content ol li, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .tab-content ul li {
  font-size: 18px !important;
  line-height: 22px !important;
  margin-bottom: 25px !important;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .tab-content ol li::marker, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .tab-content ul li::marker {
  color: #29292A !important;
  font-weight: 600;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .tab-content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs .container .tab-content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-content {
  padding: 100px 0 95px 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-content .container {
  background-color: #fff;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-content .container {
    width: calc(100% - 60px) !important;
    padding-left: 20px;
    padding-right: 20px;
    width: 932px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-content .container > .row {
  padding: 55px 85px;
}
@media (max-width: 1199px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-content .container > .row {
    padding: 55px 45px;
  }
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-content .container > .row {
    padding: 55px 15px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-content .container > .row h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-content .container > .row h2 br {
    display: none !important;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-content .container > .row p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-content .container > .row p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list {
  padding-bottom: 95px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 75px;
  padding-left: 0 !important;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 75px;
  }
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 60px 75px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul li {
  display: flex;
  flex-direction: column;
  opacity: 1 !important;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul li:before {
  display: none;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul li span.object-additional_topic-field-title_fr, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul li span.object-additional_topic-field-title_en {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  color: #ED1B2F;
  order: 2;
  margin-bottom: 20px;
  opacity: 1 !important;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul li span.object-additional_topic-field-title_fr.animate, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul li span.object-additional_topic-field-title_en.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul li span.object-additional_topic-field-text_fr, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul li span.object-additional_topic-field-text_en {
  order: 3;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  opacity: 1 !important;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul li span.object-additional_topic-field-text_fr.animate, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul li span.object-additional_topic-field-text_en.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul li span.object-additional_topic-field-image {
  order: 1;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-working-list .container > .row ul li span.object-additional_topic-field-image img {
  width: 100%;
  margin-bottom: 35px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 {
  background-color: #fff;
  padding: 80px 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .nav-tabs {
  margin-top: 0;
  border-bottom: none;
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .nav-tabs {
    display: flex;
    flex-direction: column;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .nav-tabs li {
  width: 50%;
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .nav-tabs li {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .nav-tabs li:nth-child(1) {
    margin-bottom: 20px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .nav-tabs li.active a {
  background-color: #ED1B2F;
  color: #fff;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .nav-tabs li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
  padding: 0px 60px 0 60px;
  text-transform: inherit;
  font-family: "PPObjectSans-Regular", sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: normal;
  text-align: center;
  color: #29292A;
  margin-right: 0;
  max-height: 150px;
  background-color: #fff;
  border: 2px solid #ED1B2F;
  border-radius: 8px;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .nav-tabs li a {
    font-size: 30px;
    line-height: 32px;
    padding: 0px 20px 0 20px;
  }
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .nav-tabs li a {
    padding: 20px 20px 20px 20px;
    height: auto;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .tab-content {
  padding-top: 65px;
  width: 100%;
  max-width: 50%;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .tab-content {
    max-width: 100%;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .tab-content h3 {
  margin-bottom: 35px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .tab-content h4 {
  margin-top: 35px;
  margin-bottom: 25px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .tab-content ol, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .tab-content ul {
  margin-bottom: 25px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .tab-content ol li, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .tab-content ul li {
  font-size: 17px !important;
  line-height: 24px !important;
  margin-bottom: 25px !important;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .tab-content ol li::marker, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .tab-content ul li::marker {
  color: #29292A !important;
  font-weight: 600;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .tab-content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-tabs-2 .tab-content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team {
  padding: 80px 15px;
  background-color: #3E4E63;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container {
    width: 100% !important;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul {
  padding-left: 0 !important;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px 70px;
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px 70px;
  }
}
@media (max-width: 575px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 70px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul li {
  text-align: center;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul li.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul li.animate span {
  opacity: 1 !important;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul li:before {
  display: none;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul li span {
  color: #fff;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-photo {
  display: block;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-photo img {
  max-width: 160px;
  max-height: 160px;
  width: 100% !important;
  height: auto !important;
  margin-bottom: 20px;
  border-radius: 150px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-firstname, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-lastname {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  opacity: 1;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-firstname.animate, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-lastname.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-position_en, body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-team .container > .row div.investigator-detail-team-keywords ul li span.object-team_members-field-position_fr {
  display: block;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-media {
  background-color: #fff;
  padding-top: 35px;
  padding-bottom: 75px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries {
  padding-top: 75px;
  padding-bottom: 60px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row {
  text-align: center;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  margin-bottom: 80px;
  color: #29292A;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 70px;
  padding-left: 0 !important;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 70px;
  }
}
@media (max-width: 767px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row ul {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px 70px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row ul li {
  display: flex;
  flex-direction: column;
  text-align: left;
  display: none;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row ul li:before {
  display: none;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row ul li:nth-child(-n+9) {
  display: flex;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row ul li .object-list_of_publications_to_highlight-field-year {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 8px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row ul li .object-list_of_publications_to_highlight-field-year.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row ul li .object-list_of_publications_to_highlight-field-title_and_link {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  color: #ED1B2F;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row ul li .object-list_of_publications_to_highlight-field-title_and_link.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-discoveries .container > .row ul li .object-list_of_publications_to_highlight-field-title_and_link a {
  color: #ED1B2F !important;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-partner {
  padding-top: 80px;
  padding-bottom: 10px;
  background-color: #fff;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-partner .container > .row {
  text-align: center;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-partner .container > .row h2 {
  margin-bottom: 30px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-partner .container > .row .investigator-detail-partner-logo {
  padding-top: 45px;
  padding-bottom: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  width: 100%;
  border-top: 1px solid #C0C1CC;
  border-bottom: 1px solid #C0C1CC;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-partner .container > .row .investigator-detail-partner-logo p {
  margin-bottom: 0;
  display: inline-block;
  width: 200px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-partner .container > .row .investigator-detail-partner-logo p a img {
  max-height: 90px;
  object-fit: contain;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch {
  padding-top: 55px;
  padding-bottom: 0;
  /*padding-bottom: 80px;*/
  background-color: #fff;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row {
  display: flex;
  flex-direction: row;
}
@media (max-width: 575px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row {
    flex-direction: column;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(1) {
  width: 50%;
}
@media (max-width: 575px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(1) {
    width: 100%;
    margin-bottom: 60px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(1) h2 {
  margin-bottom: 20px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(1) p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 0;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(1) p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(1) a {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #ED1B2F !important;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(1) a.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(1) p[data-state=""] {
  display: none;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(2) {
  width: 50%;
}
@media (max-width: 575px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(2) h2 {
  margin-bottom: 50px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(2) .investigator-detail-touch-social {
  padding-top: 90px;
  padding-bottom: 80px;
  width: 100%;
  border-top: 1px solid #C0C1CC;
  border-bottom: 1px solid #C0C1CC;
}
@media (max-width: 575px) {
  body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(2) .investigator-detail-touch-social {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(2) .investigator-detail-touch-social .social {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 calc(33% - 56px);
  /*
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  */
  width: 100%;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(2) .investigator-detail-touch-social .social li {
  justify-content: center;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(2) .investigator-detail-touch-social .social li:has(> a[href=""]) {
  display: none;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(2) .investigator-detail-touch-social .social li a.twitter {
  width: 34px;
  height: 34px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(2) .investigator-detail-touch-social .social li a.linkedin {
  width: 35px;
  height: 31px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(2) .investigator-detail-touch-social .social li a.researchgate {
  width: 43px;
  height: 45px;
}
body.investigator:not(.view-formbuilder-search) .line-investigators-search > .container > .row > div .search-object-detail-bloc .investigator-detail-touch .container > .row > div:nth-child(2) .investigator-detail-touch-social .social li a.instagram {
  width: 37px;
  height: 34px;
}

body.investigator.lang-en .investigator-detail-working-list .object-additional_topic-field-title_fr,
body.investigator.lang-en .investigator-detail-working-list .object-additional_topic-field-text_fr {
  display: none !important;
}
body.investigator.lang-en .line-investigators-search .object-team_members-field-position_fr {
  display: none !important;
}

body.investigator.lang-fr .investigator-detail-working-list .object-additional_topic-field-title_en,
body.investigator.lang-fr .investigator-detail-working-list .object-additional_topic-field-text_en {
  display: none !important;
}
body.investigator.lang-fr .line-investigators-search .object-team_members-field-position_en {
  display: none !important;
}

.line-contribute-overview-discoveries {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #F2F2F5;
}
@media (max-width: 991px) {
  .line-contribute-overview-discoveries {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.line-contribute-overview-discoveries .container > .row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 767px) {
  .line-contribute-overview-discoveries .container > .row {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-discoveries .container > .row > div {
    width: 100%;
  }
}
.line-contribute-overview-discoveries .container > .row > div:nth-child(1) .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-contribute-overview-discoveries .container > .row > div:nth-child(1) .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-discoveries .container > .row > div:nth-child(1) .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-contribute-overview-discoveries .container > .row > div:nth-child(1) .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .line-contribute-overview-discoveries .container > .row > div:nth-child(1) .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
.line-contribute-overview-discoveries .container > .row > div:nth-child(1) .content h3 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  margin-bottom: 30px;
}
.line-contribute-overview-discoveries .container > .row > div:nth-child(1) .content h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-contribute-overview-discoveries .container > .row > div:nth-child(1) .content h3.animate a {
  opacity: 1 !important;
}
.line-contribute-overview-discoveries .container > .row > div:nth-child(1) .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.line-contribute-overview-discoveries .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-contribute-overview-discoveries .container > .row > div:nth-child(2) {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-contribute-overview-discoveries .container > .row > div:nth-child(2) {
    /*align-items: center;*/
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-discoveries .container > .row > div:nth-child(2) {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-discoveries .container > .row > div:nth-child(2) .content {
    margin-bottom: 30px;
  }
}

.line-contribute-overview-bg-images .mod-banner__img {
  height: auto !important;
  aspect-ratio: 8/3;
}

.line-contribute-overview-key {
  padding-top: 90px;
  padding-bottom: 40px;
}
.line-contribute-overview-key .container > .row {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .line-contribute-overview-key .container > .row {
    flex-direction: column;
  }
}
.line-contribute-overview-key .container > .row > div:nth-child(1) {
  width: 33.33333%;
}
@media (max-width: 991px) {
  .line-contribute-overview-key .container > .row > div:nth-child(1) {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-key .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-key .container > .row > div:nth-child(1) .content img {
    width: 136px !important;
  }
}
.line-contribute-overview-key .container > .row > div:nth-child(2) {
  width: 66.66666%;
}
@media (max-width: 991px) {
  .line-contribute-overview-key .container > .row > div:nth-child(2) {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-key .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-contribute-overview-key .container > .row > div:nth-child(2) .content {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .line-contribute-overview-key .container > .row > div:nth-child(2) .content {
    padding-top: 50px;
  }
}
.line-contribute-overview-key .container > .row > div:nth-child(2) .content h2 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
}
.line-contribute-overview-key .container > .row > div:nth-child(2) .content h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-contribute-overview-key .container > .row > div:nth-child(2) .content h3 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-contribute-overview-key .container > .row > div:nth-child(2) .content h3 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-key .container > .row > div:nth-child(2) .content h3 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-contribute-overview-key .container > .row > div:nth-child(2) .content h3 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-contribute-overview-key .container > .row > div:nth-child(2) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 45px;
}
.line-contribute-overview-key .container > .row > div:nth-child(2) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-contribute-overview-minds {
  padding-top: 55px;
  padding-bottom: 55px;
}
@media (max-width: 767px) {
  .line-contribute-overview-minds {
    padding-top: 25px;
  }
}
.line-contribute-overview-minds .container > .row {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .line-contribute-overview-minds .container > .row {
    flex-direction: column-reverse;
  }
}
.line-contribute-overview-minds .container > .row > div:nth-child(1) {
  width: 66.66666%;
}
@media (max-width: 991px) {
  .line-contribute-overview-minds .container > .row > div:nth-child(1) {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-minds .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-contribute-overview-minds .container > .row > div:nth-child(1) .content {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .line-contribute-overview-minds .container > .row > div:nth-child(1) .content {
    padding-top: 50px;
  }
}
.line-contribute-overview-minds .container > .row > div:nth-child(1) .content h3 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
}
.line-contribute-overview-minds .container > .row > div:nth-child(1) .content h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-contribute-overview-minds .container > .row > div:nth-child(1) .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-contribute-overview-minds .container > .row > div:nth-child(1) .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-minds .container > .row > div:nth-child(1) .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-contribute-overview-minds .container > .row > div:nth-child(1) .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-contribute-overview-minds .container > .row > div:nth-child(1) .content h4 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  margin-bottom: 25px;
}
.line-contribute-overview-minds .container > .row > div:nth-child(1) .content h4.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-contribute-overview-minds .container > .row > div:nth-child(1) .content h4.animate a {
  opacity: 1 !important;
}
.line-contribute-overview-minds .container > .row > div:nth-child(1) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 45px;
}
.line-contribute-overview-minds .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-contribute-overview-minds .container > .row > div:nth-child(2) {
  width: 33.33333%;
}
@media (max-width: 991px) {
  .line-contribute-overview-minds .container > .row > div:nth-child(2) {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-minds .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-contribute-overview-minds .container > .row > div:nth-child(2) .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-contribute-overview-minds .container > .row > div:nth-child(2) .content {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-minds .container > .row > div:nth-child(2) .content img {
    width: 136px !important;
  }
}

.line-contribute-overview-stronger {
  padding-top: 110px;
  padding-bottom: 40px;
  background-color: #F2F2F5;
}
@media (max-width: 767px) {
  .line-contribute-overview-stronger {
    padding-top: 65px;
  }
}
.line-contribute-overview-stronger .container > .row {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .line-contribute-overview-stronger .container > .row {
    flex-direction: column-reverse;
  }
}
.line-contribute-overview-stronger .container > .row > div:nth-child(1) {
  width: 66.66666%;
}
@media (max-width: 991px) {
  .line-contribute-overview-stronger .container > .row > div:nth-child(1) {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-stronger .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-contribute-overview-stronger .container > .row > div:nth-child(1) .content {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .line-contribute-overview-stronger .container > .row > div:nth-child(1) .content {
    padding-top: 50px;
  }
}
.line-contribute-overview-stronger .container > .row > div:nth-child(1) .content h3 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
}
.line-contribute-overview-stronger .container > .row > div:nth-child(1) .content h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-contribute-overview-stronger .container > .row > div:nth-child(1) .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-contribute-overview-stronger .container > .row > div:nth-child(1) .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-stronger .container > .row > div:nth-child(1) .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-contribute-overview-stronger .container > .row > div:nth-child(1) .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-contribute-overview-stronger .container > .row > div:nth-child(1) .content h4 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  margin-bottom: 25px;
}
.line-contribute-overview-stronger .container > .row > div:nth-child(1) .content h4.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-contribute-overview-stronger .container > .row > div:nth-child(1) .content h4.animate a {
  opacity: 1 !important;
}
.line-contribute-overview-stronger .container > .row > div:nth-child(1) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 45px;
}
.line-contribute-overview-stronger .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-contribute-overview-stronger .container > .row > div:nth-child(2) {
  width: 33.33333%;
}
@media (max-width: 991px) {
  .line-contribute-overview-stronger .container > .row > div:nth-child(2) {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-stronger .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-stronger .container > .row > div:nth-child(2) .content img {
    width: 136px !important;
  }
}

.line-contribute-overview-huge-btn {
  padding-top: 130px;
  padding-bottom: 70px;
}
.line-contribute-overview-huge-btn.noPaddingTop {
  padding-top: 0;
}
.line-contribute-overview-huge-btn .content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
  justify-content: center;
}
@media (max-width: 767px) {
  .line-contribute-overview-huge-btn .content {
    flex-direction: column;
    align-items: center;
  }
}
.line-contribute-overview-huge-btn .content p {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 30%;
  max-width: 32%;
  flex: 1;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .line-contribute-overview-huge-btn .content p {
    min-width: 46% !important;
    max-width: 52% !important;
  }
}
@media (max-width: 767px) {
  .line-contribute-overview-huge-btn .content p {
    min-width: auto !important;
    max-width: 100% !important;
  }
}
.line-contribute-overview-huge-btn .content p a {
  white-space: normal;
  min-width: 350px !important;
}
.line-contribute-overview-huge-btn .content p a br {
  display: block !important;
}
@media (max-width: 1199px) {
  .line-contribute-overview-huge-btn .content p a {
    font-size: 30px !important;
    line-height: 35px !important;
    padding: 40px 60px;
    min-width: 100% !important;
  }
}

.line-contribute-overview-engaging {
  padding-top: 60px;
  padding-bottom: 35px;
  position: relative;
  overflow: hidden;
}
.line-contribute-overview-engaging .container > .row > div > h2 {
  text-align: center;
  margin-bottom: 30px;
}
.line-contribute-overview-engaging .container > .row > div .content {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px 100px;
  padding-top: 15px;
  padding-bottom: 14px;
}
@media (max-width: 767px) {
  .line-contribute-overview-engaging .container > .row > div .content {
    flex-direction: column;
    align-items: center;
    gap: 10px 100px;
    padding-top: 45px;
    padding-bottom: 44px;
  }
}
.line-contribute-overview-engaging .container > .row > div .content:before {
  content: "";
  position: absolute;
  width: 6000px;
  left: -3000px;
  height: 1px;
  top: 0;
  background-color: #C0C1CC;
}
.line-contribute-overview-engaging .container > .row > div .content:after {
  content: "";
  position: absolute;
  width: 6000px;
  left: -3000px;
  height: 1px;
  bottom: 0;
  background-color: #C0C1CC;
}
.line-contribute-overview-engaging .container > .row > div .content p {
  display: contents;
}

.line-ways-to-give-difference {
  padding-top: 95px;
  padding-bottom: 30px;
}
.line-ways-to-give-difference .container > .row > div .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  background-image: -webkit-linear-gradient(top, transparent, transparent 72px, #C0C1CC 0);
  -webkit-background-size: 100% 73px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .line-ways-to-give-difference .container > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-ways-to-give-difference .container > .row > div .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .line-ways-to-give-difference .container > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
    background-image: -webkit-linear-gradient(top, transparent, transparent 51px, #C0C1CC 0);
    -webkit-background-size: 100% 52px;
  }
}
.line-ways-to-give-difference .container > .row > div .content h2 br {
  display: block !important;
}
.line-ways-to-give-difference .container > .row > div .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.line-ways-to-give-difference .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-ways-to-give-contribution {
  padding-bottom: 45px;
}
.line-ways-to-give-contribution .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}

.line-support-our-circles {
  padding-top: 85px;
  padding-bottom: 70px;
  background-color: #F2F2F5;
}
@media (max-width: 767px) {
  .line-support-our-circles {
    padding-top: 65px;
    padding-bottom: 50px;
  }
}
.line-support-our-circles .container > .row {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .line-support-our-circles .container > .row {
    flex-direction: column-reverse;
  }
}
.line-support-our-circles .container > .row > div:nth-child(1) {
  width: 65%;
}
@media (max-width: 991px) {
  .line-support-our-circles .container > .row > div:nth-child(1) {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .line-support-our-circles .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-support-our-circles .container > .row > div:nth-child(1) .content {
  padding-top: 175px;
}
@media (max-width: 767px) {
  .line-support-our-circles .container > .row > div:nth-child(1) .content {
    padding-top: 50px;
  }
}
.line-support-our-circles .container > .row > div:nth-child(1) .content h4 {
  margin-bottom: 5px;
}
.line-support-our-circles .container > .row > div:nth-child(1) .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-support-our-circles .container > .row > div:nth-child(1) .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-support-our-circles .container > .row > div:nth-child(1) .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-support-our-circles .container > .row > div:nth-child(1) .content h2 strong {
  color: #29292A;
  font-weight: 500;
}
.line-support-our-circles .container > .row > div:nth-child(1) .content h3 {
  margin-bottom: 35px;
}
.line-support-our-circles .container > .row > div:nth-child(1) .content p {
  font-size: 18px;
  line-height: 22px;
  color: #29292A;
}
.line-support-our-circles .container > .row > div:nth-child(2) {
  width: 35%;
}
@media (max-width: 991px) {
  .line-support-our-circles .container > .row > div:nth-child(2) {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .line-support-our-circles .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-support-our-circles .container > .row > div:nth-child(2) .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-support-our-circles .container > .row > div:nth-child(2) .content {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .line-support-our-circles .container > .row > div:nth-child(2) .content img {
    width: 136px !important;
  }
}

.line-support-our-donations-title {
  padding-top: 65px;
  padding-bottom: 0;
  border-top: 1px solid #C0C1CC;
  background-color: #F2F2F5;
}
.line-support-our-donations-title .content strong {
  color: #ED1B2F;
  font-weight: 500;
}

.line-support-our-donations {
  padding-top: 0;
  padding-bottom: 90px;
  background-color: #F2F2F5;
  overflow: hidden;
}
.line-support-our-donations .container > .row > div .content {
  position: relative;
}
.line-support-our-donations .container > .row > div .content > .row {
  display: flex;
  position: relative;
  margin-top: 0;
  padding: 65px 0;
}
@media (max-width: 767px) {
  .line-support-our-donations .container > .row > div .content > .row {
    padding: 65px 0 35px 0;
    justify-content: center;
  }
}
.line-support-our-donations .container > .row > div .content > .row:after {
  content: "";
  position: absolute;
  width: 6000px;
  left: -3000px;
  height: 1px;
  bottom: 0;
  background-color: #C0C1CC;
}
.line-support-our-donations .container > .row > div .content > .row .item {
  display: flex;
}
@media (max-width: 767px) {
  .line-support-our-donations .container > .row > div .content > .row .item {
    flex-direction: column;
  }
}
.line-support-our-donations .container > .row > div .content > .row .item .itemImage {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex: 620px;
}
@media (max-width: 767px) {
  .line-support-our-donations .container > .row > div .content > .row .item .itemImage {
    flex: 220px;
  }
}
.line-support-our-donations .container > .row > div .content > .row .item .itemImage img {
  margin-bottom: 0;
}
.line-support-our-donations .container > .row > div .content > .row .item .intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 100%;
}
@media (max-width: 767px) {
  .line-support-our-donations .container > .row > div .content > .row .item .intro {
    text-align: center;
  }
}
.line-support-our-donations .container > .row > div .content > .row .item .intro h3 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
}
.line-support-our-donations .container > .row > div .content > .row .item .intro h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-support-our-donations .container > .row > div .content > .row .item .intro p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  max-width: 540px;
}
.line-support-our-donations .container > .row > div .content > .row .item .intro p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-support-our-come-on {
  padding-top: 90px;
  padding-bottom: 100px;
  background-color: #3E4E63;
}
@media (max-width: 767px) {
  .line-support-our-come-on.animate .container > .row > div:nth-child(2) {
    order: 1;
    padding-bottom: 55px;
  }
}
.line-support-our-come-on.animate .container > .row > div:nth-child(2) .content:after {
  animation-name: img_appears;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0s;
}
.line-support-our-come-on .container > .row {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .line-support-our-come-on .container > .row {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .line-support-our-come-on .container > .row > div:nth-child(1) {
    width: 100%;
    order: 2;
  }
}
.line-support-our-come-on .container > .row > div:nth-child(1) .content {
  padding-top: 25px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-support-our-come-on .container > .row > div:nth-child(1) .content {
    padding-right: 15px;
  }
}
.line-support-our-come-on .container > .row > div:nth-child(1) .content h2 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  color: #fff;
}
.line-support-our-come-on .container > .row > div:nth-child(1) .content h2.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-support-our-come-on .container > .row > div:nth-child(1) .content h3 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  color: #fff;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .line-support-our-come-on .container > .row > div:nth-child(1) .content h3 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-support-our-come-on .container > .row > div:nth-child(1) .content h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-support-our-come-on .container > .row > div:nth-child(1) .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #fff;
}
.line-support-our-come-on .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .line-support-our-come-on .container > .row > div:nth-child(2) {
    width: 100%;
    padding-bottom: 40px;
    order: 1;
  }
}
.line-support-our-come-on .container > .row > div:nth-child(2) .content {
  text-align: right;
}
@media (max-width: 767px) {
  .line-support-our-come-on .container > .row > div:nth-child(2) .content {
    text-align: left;
  }
}
.line-support-our-come-on .container > .row > div:nth-child(2) .content:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background-color: #3E4E63;
}
@media (max-width: 1199px) {
  .line-support-our-come-on .container > .row > div:nth-child(2) .content img {
    width: 100% !important;
    max-width: 360px;
  }
}
@media (max-width: 767px) {
  .line-support-our-come-on .container > .row > div:nth-child(2) .content img {
    max-width: 420px;
  }
}

.line-support-our-form-title {
  padding-top: 125px;
}
.line-support-our-form-title.small-top {
  padding-top: 80px;
}
.line-support-our-form-title .content h2 {
  margin-bottom: 25px;
}
.line-support-our-form-title .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-support-our-form-title .content h2 br {
  display: block !important;
}
.line-support-our-form-title .content h3 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
}
.line-support-our-form-title .content h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-support-our-form-title .content ol {
  list-style-type: decimal !important;
}
.line-support-our-form-title .content ol li {
  margin-left: 15px;
}
.line-support-our-form-title .content ol li:before {
  display: none;
}
.line-support-our-form-title .content ol li::marker {
  display: block !important;
}

.line-support-our-form {
  padding-top: 35px;
  padding-bottom: 40px;
}

.line-your-impact-discoveries-title {
  padding-top: 130px;
  padding-bottom: 120px;
}
.line-your-impact-discoveries-title .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .line-your-impact-discoveries-title .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-your-impact-discoveries-title .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-your-impact-discoveries-title .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-your-impact-discoveries-title .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
.line-your-impact-video {
  padding-top: 120px;
  padding-bottom: 70px;
  background-color: #3E4E63;
  position: relative;
}
.line-your-impact-video:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/element-round-gray.svg");
  background-position: center center;
  position: absolute;
  display: block;
  width: 72px;
  height: 73px;
  top: -37px;
  left: calc(50% - 36px);
}
.line-your-impact-video .container > .row > div:nth-child(1) {
  width: 40%;
}
@media (max-width: 767px) {
  .line-your-impact-video .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-your-impact-video .container > .row > div:nth-child(1) .content {
  padding-top: 10px;
}
.line-your-impact-video .container > .row > div:nth-child(1) .content h2 {
  color: #fff;
}
.line-your-impact-video .container > .row > div:nth-child(2) {
  width: 60%;
}
@media (max-width: 767px) {
  .line-your-impact-video .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-your-impact-video .container > .row > div:nth-child(2) .content .yt-max {
  border-radius: 10px;
}
.line-your-impact-video .container > .row > div:nth-child(2) .content .yt-max iframe {
  border-radius: 10px;
}

.line-your-impact-stories {
  padding-top: 30px;
  padding-bottom: 80px;
}

.line-affiliate-content {
  padding-top: 55px;
  padding-bottom: 0;
  background-color: #F2F2F5;
}
.line-affiliate-content .container > .row > div .content {
  max-width: 920px;
}
.line-affiliate-content .container > .row > div .content p {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
}
.line-affiliate-content .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-affiliate-content .container > .row > div .content p.animate a {
  opacity: 1 !important;
}

.line-affiliate-list {
  padding-top: 55px;
  padding-bottom: 80px;
  background-color: #F2F2F5;
}
.line-affiliate-list .container > .row > div .content {
  padding-top: 80px;
  border-top: 1px solid #C0C1CC;
  column-count: 3;
}
@media (max-width: 991px) {
  .line-affiliate-list .container > .row > div .content {
    column-count: 2;
  }
}
@media (max-width: 767px) {
  .line-affiliate-list .container > .row > div .content {
    column-count: 1;
  }
}
.line-affiliate-list .container > .row > div .content h3 {
  margin-bottom: 20px;
}
.line-affiliate-list .container > .row > div .content ul {
  padding-left: 0 !important;
  list-style: none !important;
  margin-bottom: 40px !important;
}
.line-affiliate-list .container > .row > div .content ul li {
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 20px !important;
  color: #3E4E63 !important;
}
.line-affiliate-list .container > .row > div .content ul li:before {
  display: none;
}
.line-affiliate-list .container > .row > div .content ul li a {
  text-decoration: underline;
}
.line-affiliate-list .container > .row > div .content ul li a:hover {
  color: #ED1B2F !important;
}

.line-affiliate-discover {
  padding-top: 85px;
  padding-bottom: 75px;
}

.line-research-partner-content {
  padding-top: 55px;
  padding-bottom: 60px;
  background-color: #F2F2F5;
}
.line-research-partner-content .container > .row > div .content {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.line-research-partner-content .container > .row > div .content p {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
}
.line-research-partner-content .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-research-partner-content .container > .row > div .content p.animate a {
  opacity: 1 !important;
}

.line-research-partner-title {
  padding-top: 10px;
  padding-bottom: 0;
  background-color: #F2F2F5;
}
.line-research-partner-title .container > .row > div .content {
  text-align: left;
}
.line-research-partner-title .container > .row > div .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}

.line-research-partner-logo {
  padding-top: 35px;
  padding-bottom: 80px;
  background-color: #F2F2F5;
}
.line-research-partner-logo .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 30px;
  position: relative;
}
@media (max-width: 991px) {
  .line-research-partner-logo .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 30px;
  }
}
@media (max-width: 575px) {
  .line-research-partner-logo .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 30px;
  }
}
.line-research-partner-logo .container > .row > div .content > .row {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 992px) {
  .line-research-partner-logo .container > .row > div .content > .row:nth-child(3n+1):before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #C0C1CC;
    margin-top: -15px;
  }
}
@media (max-width: 991px) and (min-width: 576px) {
  .line-research-partner-logo .container > .row > div .content > .row:nth-child(2n+1):before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #C0C1CC;
    margin-top: -15px;
  }
}
@media (max-width: 575px) {
  .line-research-partner-logo .container > .row > div .content > .row:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #C0C1CC;
    margin-top: -15px;
  }
}
.line-research-partner-logo .container > .row > div .content > .row .item {
  display: flex;
  flex-direction: column;
}
.line-research-partner-logo .container > .row > div .content > .row .item .itemImage {
  order: 2;
  margin-bottom: 1.5rem;
  height: auto !important;
}
.line-research-partner-logo .container > .row > div .content > .row .item h3 {
  order: 1;
  font-size: 12px;
  line-height: 16px;
  color: #ED1B2F;
  margin-bottom: 15px;
  min-height: 32px;
  display: flex;
  align-items: flex-end;
}

.line-research-partner-name {
  padding-top: 70px;
  padding-bottom: 55px;
}
.line-research-partner-name .content ul {
  column-count: 3;
  column-gap: 30px;
  list-style: none;
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .line-research-partner-name .content ul {
    column-count: 2;
  }
}
@media (max-width: 575px) {
  .line-research-partner-name .content ul {
    column-count: 1;
  }
}
.line-research-partner-name .content ul li {
  break-inside: avoid-column;
  border-bottom: 1px solid #C0C1CC;
  padding: 10px 0 4px 0;
}
.line-research-partner-name .content ul li:before {
  display: none;
}

.line-major-campaign-priority {
  padding-top: 125px;
  padding-bottom: 40px;
  background-color: #29292A;
}
.line-major-campaign-priority .container > .row > div:nth-child(1) .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-major-campaign-priority .container > .row > div:nth-child(1) .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-major-campaign-priority .container > .row > div:nth-child(1) .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-major-campaign-priority .container > .row > div:nth-child(1) .content h3 {
  color: #fff;
}
.line-major-campaign-priority .container > .row > div:nth-child(2) .content {
  padding-top: 140px;
  padding-left: 100px;
}
@media (max-width: 991px) {
  .line-major-campaign-priority .container > .row > div:nth-child(2) .content {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .line-major-campaign-priority .container > .row > div:nth-child(2) .content {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .line-major-campaign-priority .container > .row > div:nth-child(2) .content {
    padding-left: 0;
  }
}
.line-major-campaign-priority .container > .row > div:nth-child(2) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  color: #fff;
}
.line-major-campaign-priority .container > .row > div:nth-child(2) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-major-campaign-priority .container > .row > div:nth-child(2) .content ul {
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-bottom: 40px !important;
}
.line-major-campaign-priority .container > .row > div:nth-child(2) .content ul li {
  display: grid;
  grid-template-columns: 95px 120%;
  grid-template-rows: auto auto;
  grid-template-areas: "a b" "a c";
  margin-bottom: 25px !important;
  max-width: 210px;
}
@media (max-width: 991px) {
  .line-major-campaign-priority .container > .row > div:nth-child(2) .content ul li {
    grid-template-columns: 95px 100%;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .line-major-campaign-priority .container > .row > div:nth-child(2) .content ul li {
    grid-template-columns: 95px 120%;
  }
}
.line-major-campaign-priority .container > .row > div:nth-child(2) .content ul li:before {
  display: none;
}
.line-major-campaign-priority .container > .row > div:nth-child(2) .content ul li img {
  grid-area: a;
}
.line-major-campaign-priority .container > .row > div:nth-child(2) .content ul li h4 {
  color: #fff;
  margin-bottom: 2px;
  grid-area: b;
}
.line-major-campaign-priority .container > .row > div:nth-child(2) .content ul li p {
  grid-area: c;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #fff;
}
.line-major-campaign-priority .container > .row > div:nth-child(2) .content ul li p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-platforms-list {
  padding-top: 0;
  padding-bottom: 115px;
  background-color: #F2F2F5;
}
.line-platforms-list .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 30px;
}
@media (max-width: 767px) {
  .line-platforms-list .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 30px;
  }
}
.line-platforms-list .container > .row > div .content > .row {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
.line-platforms-list .container > .row > div .content > .row .item {
  background-color: #fff;
}
.line-platforms-list .container > .row > div .content > .row .item .itemImage img {
  margin-bottom: 0;
}
.line-platforms-list .container > .row > div .content > .row .item .intro {
  padding: 42px 20px 20px 20px;
  text-align: center;
}
.line-platforms-list .container > .row > div .content > .row .item .intro h3 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
}
.line-platforms-list .container > .row > div .content > .row .item .intro h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-platforms-list .container > .row > div .content > .row .item .intro .btn {
  margin-top: 10px;
}

.line-platform-pages-intro {
  padding-top: 100px;
  padding-bottom: 0;
  background-color: #F2F2F5;
}
.line-platform-pages-intro .container > .row > div .content h2 {
  font-size: 45px;
  line-height: 52px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .line-platform-pages-intro .container > .row > div .content h2 br {
    display: none;
  }
}
.line-platform-pages-intro .container > .row > div .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-platform-pages-intro .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-platform-pages-intro .container > .row > div .content p a {
  text-decoration: underline;
}
.line-platform-pages-intro .container > .row > div .content p a:hover {
  text-decoration: none !important;
}
.line-platform-pages-intro .container > .row > div .content hr {
  margin-top: 50px;
  margin-bottom: 50px;
  border-color: #C0C1CC;
}

.line-platform-pages-intro-accordeon {
  padding-top: 0;
  padding-bottom: 20px;
  background-color: #F2F2F5;
}
.line-platform-pages-intro-accordeon p {
  font-size: 17px !important;
  line-height: 24px !important;
}

body.lang-fr .line-platform-pages-accordeon.no-section {
  padding-top: 0;
  padding-bottom: 0;
}

.line-platform-pages-text {
  padding-top: 90px;
  padding-bottom: 0;
}
.line-platform-pages-text p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-platform-pages-text p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-platform-pages-accordeon {
  padding-top: 55px;
  padding-bottom: 0;
}
.line-platform-pages-accordeon .container > .row > div > h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
}
@media (max-width: 991px) {
  .line-platform-pages-accordeon .container > .row > div > h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-platform-pages-accordeon .container > .row > div > h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .line-platform-pages-accordeon .container > .row > div .news-accordion-content {
    overflow: hidden;
  }
}
.line-platform-pages-accordeon .container > .row > div .news-accordion-content h3 a {
  text-decoration: underline;
}
.line-platform-pages-accordeon .container > .row > div .news-accordion-content h3 a:hover {
  text-decoration: none !important;
}
.line-platform-pages-accordeon .container > .row > div .news-accordion-content ul {
  margin-top: 25px !important;
}
.line-platform-pages-accordeon .container > .row > div .news-accordion-content ul > li {
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 20px !important;
}
.line-platform-pages-accordeon .container > .row > div .news-accordion-content ul > li a {
  text-decoration: underline;
}
.line-platform-pages-accordeon .container > .row > div .news-accordion-content ul > li a:hover {
  text-decoration: none !important;
}
.line-platform-pages-accordeon .container > .row > div .news-accordion-content ul > li:before {
  width: 4px !important;
  height: 4px !important;
  background-color: #29292A !important;
  margin-top: 8px !important;
  border-radius: 25px !important;
}
.line-platform-pages-accordeon .container > .row > div .news-accordion-content ol {
  margin-top: 25px;
  list-style-type: decimal;
}
.line-platform-pages-accordeon .container > .row > div .news-accordion-content ol > li {
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 20px !important;
}
.line-platform-pages-accordeon .container > .row > div .news-accordion-content ol > li a {
  text-decoration: underline;
}
.line-platform-pages-accordeon .container > .row > div .news-accordion-content ol > li a:hover {
  text-decoration: none !important;
}
.line-platform-pages-accordeon .container > .row > div .news-accordion-content ol > li:before {
  display: none;
}

.line-biomarker-summary {
  padding-top: 0;
  padding-bottom: 60px;
}
.line-biomarker-summary .content h3 {
  margin-bottom: 25px;
}
.line-biomarker-summary .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-biomarker-summary .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-biomarker-heritage {
  padding-top: 95px;
  padding-bottom: 95px;
  background-color: #F2F2F5;
  position: relative;
}
.line-biomarker-heritage .container > .row {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .line-biomarker-heritage .container > .row {
    flex-direction: column;
  }
}
.line-biomarker-heritage .container > .row > div:nth-child(1) {
  width: 40%;
}
@media (max-width: 767px) {
  .line-biomarker-heritage .container > .row > div:nth-child(1) {
    width: 100%;
    order: 2;
  }
}
.line-biomarker-heritage .container > .row > div:nth-child(1) .content {
  padding-top: 10px;
  max-width: 340px;
}
@media (max-width: 767px) {
  .line-biomarker-heritage .container > .row > div:nth-child(1) .content {
    max-width: 100%;
  }
}
.line-biomarker-heritage .container > .row > div:nth-child(1) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-biomarker-heritage .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-biomarker-heritage .container > .row > div:nth-child(2) {
  width: 60%;
}
@media (max-width: 767px) {
  .line-biomarker-heritage .container > .row > div:nth-child(2) {
    width: 100%;
    order: 1;
    padding-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .line-biomarker-heritage .container > .row > div:nth-child(2) .content {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .line-biomarker-heritage .container > .row > div:nth-child(2) .content {
    padding-left: 0;
  }
}
.line-biomarker-heritage .container > .row > div:nth-child(2) .content .yt-max {
  border-radius: 10px;
  max-width: 635px;
  margin-right: 0;
}
@media (max-width: 767px) {
  .line-biomarker-heritage .container > .row > div:nth-child(2) .content .yt-max {
    margin-left: 0;
    margin-right: auto;
  }
}
.line-biomarker-heritage .container > .row > div:nth-child(2) .content .yt-max iframe {
  border-radius: 10px;
}

.line-student-intro-news {
  background-color: #29292A;
  padding-top: 95px;
  padding-bottom: 85px;
}
.line-student-intro-news .content {
  background-color: #fff;
  border-radius: 5px;
  width: 90%;
}
@media (max-width: 767px) {
  .line-student-intro-news .content {
    width: 100%;
  }
}
.line-student-intro-news .content > p {
  padding: 20px;
}
.line-student-intro-news .content > .row {
  margin-left: 0;
  margin-right: 0;
}
.line-student-intro-news .content > .row:not(:last-child) {
  border-bottom: 1px solid #C0C1CC;
}
.line-student-intro-news .content > .row > div {
  padding-left: 0;
  padding-right: 0;
}
.line-student-intro-news .content > .row > div .item {
  padding: 46px 46px 20px 50px;
  display: grid;
  grid-template-columns: 75% 32%;
  grid-template-rows: auto auto auto;
  grid-template-areas: "a d" "b d" "c d";
}
@media (max-width: 1199px) {
  .line-student-intro-news .content > .row > div .item {
    grid-template-columns: 65% 42%;
  }
}
@media (max-width: 991px) {
  .line-student-intro-news .content > .row > div .item {
    grid-template-columns: 55% 52%;
  }
}
@media (max-width: 767px) {
  .line-student-intro-news .content > .row > div .item {
    grid-template-columns: auto auto auto auto;
    grid-template-rows: auto;
    grid-template-areas: "d" "a" "b" "c";
  }
}
.line-student-intro-news .content > .row > div .item > a {
  grid-area: d;
}
.line-student-intro-news .content > .row > div .item > a img {
  margin-bottom: 0;
  border-radius: 3px;
  margin-left: 70px;
}
@media (max-width: 767px) {
  .line-student-intro-news .content > .row > div .item > a img {
    margin-left: 0;
    margin-bottom: 40px;
  }
}
.line-student-intro-news .content > .row > div .item h3 {
  color: #ED1B2F;
  grid-area: a;
}
.line-student-intro-news .content > .row > div .item hr, .line-student-intro-news .content > .row > div .item .itemInfos {
  display: none;
}
.line-student-intro-news .content > .row > div .item .intro {
  grid-area: b;
}
.line-student-intro-news .content > .row > div .item .intro p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
}
.line-student-intro-news .content > .row > div .item .intro p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-intro-news .content > .row > div .item .actions {
  grid-area: c;
  margin-top: 0;
}
.line-student-intro-news .content > .row > div .item .actions .btn-primary {
  background-color: transparent !important;
  color: #3E4E63 !important;
  transition: all 150ms !important;
  border: 0 !important;
  border-bottom: 1px solid #ED1B2F !important;
  padding: 0 0 15px 0 !important;
  border-radius: 0 !important;
}
.line-student-intro-news .content > .row > div .item .actions .btn-primary:hover, .line-student-intro-news .content > .row > div .item .actions .btn-primary:active, .line-student-intro-news .content > .row > div .item .actions .btn-primary:focus {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #3E4E63 !important;
  color: #ED1B2F !important;
}

.line-student-bg-only {
  height: 530px;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Student%20society/student-bg-only.jpg");
  background-size: cover;
  background-position: center center;
}

.line-student-about-title {
  padding-top: 80px;
  padding-bottom: 50px;
}
.line-student-about-title .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .line-student-about-title .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-student-about-title .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-student-about-title .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-student-about-title .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
.line-student-about {
  padding-bottom: 290px;
}
@media (max-width: 991px) {
  .line-student-about {
    padding-bottom: 250px;
  }
}
@media (max-width: 575px) {
  .line-student-about {
    padding-bottom: 150px;
  }
}
.line-student-about .container {
  background-color: #fff;
  border-radius: 3px;
  padding: 63px 100px 45px 100px;
}
@media (max-width: 991px) {
  .line-student-about .container {
    padding: 63px 70px 45px 70px;
  }
}
@media (max-width: 575px) {
  .line-student-about .container {
    padding: 63px 30px 45px 30px;
  }
}
.line-student-about .container > .row > div:nth-child(1) {
  width: 40%;
}
@media (max-width: 991px) {
  .line-student-about .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-student-about .container > .row > div:nth-child(1) .content h3 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
}
@media (max-width: 991px) {
  .line-student-about .container > .row > div:nth-child(1) .content h3 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-student-about .container > .row > div:nth-child(1) .content h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-about .container > .row > div:nth-child(1) .content h3 strong {
  color: #ED1B2F;
  font-weight: 500;
}
@media (max-width: 991px) {
  .line-student-about .container > .row > div:nth-child(1) .content h3 {
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .line-student-about .container > .row > div:nth-child(1) .content h3 br {
    display: none;
  }
}
.line-student-about .container > .row > div:nth-child(2) {
  width: 60%;
}
@media (max-width: 991px) {
  .line-student-about .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-student-about .container > .row > div:nth-child(2) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
.line-student-team-img {
  background-color: #3E4E63;
  position: relative;
  overflow-x: clip;
}
.line-student-team-img .container {
  position: relative;
}
.line-student-team-img .container:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/favicon.png");
  background-position: center center;
  background-size: contain;
  width: 410px;
  height: 410px;
  right: -40px;
  position: absolute;
  display: block;
}
@media (max-width: 1199px) {
  .line-student-team-img .container:before {
    width: 290px;
    height: 290px;
    right: -60px;
    top: 30px;
  }
}
@media (max-width: 991px) {
  .line-student-team-img .container:before {
    right: -70px;
    top: -40px;
  }
}
@media (max-width: 767px) {
  .line-student-team-img .container:before {
    width: 240px;
    height: 240px;
    right: -25px;
    bottom: -40%;
    top: auto;
  }
}
@media (max-width: 575px) {
  .line-student-team-img .container:before {
    width: 130px;
    height: 130px;
    right: -5px;
    bottom: -40%;
  }
}
.line-student-team-img .container > .row > div .content {
  margin-top: -205px;
  display: flex;
  justify-content: center;
  gap: 35px;
}
@media (max-width: 991px) {
  .line-student-team-img .container > .row > div .content {
    margin-top: -158px;
  }
}
@media (max-width: 767px) {
  .line-student-team-img .container > .row > div .content {
    gap: 15px;
    margin-top: -25%;
  }
}
.line-student-team-img .container > .row > div .content p {
  width: auto;
}
.line-student-team-img .container > .row > div .content p img {
  border-radius: 3px;
}

.line-student-team-title {
  background-color: #3E4E63;
  padding-top: 130px;
  padding-bottom: 45px;
}
@media (max-width: 1199px) {
  .line-student-team-title {
    padding-top: 60px;
  }
}
.line-student-team-title .container > .row {
  display: flex;
  flex-wrap: wrap;
}
.line-student-team-title .container > .row > div:nth-child(1) h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #fff;
}
@media (max-width: 991px) {
  .line-student-team-title .container > .row > div:nth-child(1) h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-student-team-title .container > .row > div:nth-child(1) h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-student-team-title .container > .row > div:nth-child(2) {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.line-student-team {
  background-color: #3E4E63;
  padding-top: 0;
  padding-bottom: 70px;
}
.line-student-team.animate .container-fluid > .row > div .content > .row {
  animation-name: element_fade_slide_up;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.line-student-team.animate .container-fluid > .row > div .content > .row:nth-child(1) {
  animation-delay: 0s;
}
.line-student-team.animate .container-fluid > .row > div .content > .row:nth-child(2) {
  animation-delay: 0.3s;
}
.line-student-team.animate .container-fluid > .row > div .content > .row:nth-child(3) {
  animation-delay: 0.6s;
}
.line-student-team.animate .container-fluid > .row > div .content > .row:nth-child(4) {
  animation-delay: 0.9s;
}
.line-student-team.animate .container-fluid > .row > div .content > .row:nth-child(5) {
  animation-delay: 1.2s;
}
.line-student-team .container-fluid > .row > div .content {
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 30px;
}
@media (max-width: 1199px) {
  .line-student-team .container-fluid > .row > div .content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 80px 30px;
  }
}
@media (max-width: 991px) {
  .line-student-team .container-fluid > .row > div .content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 80px 30px;
  }
}
@media (max-width: 767px) {
  .line-student-team .container-fluid > .row > div .content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 30px;
  }
}
@media (max-width: 575px) {
  .line-student-team .container-fluid > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 80px 30px;
  }
}
.line-student-team .container-fluid > .row > div .content > .row {
  margin: 0;
  opacity: 0;
}
.line-student-team .container-fluid > .row > div .content > .row .item img {
  aspect-ratio: 12/14;
  object-fit: cover;
  object-position: center center;
}
.line-student-team .container-fluid > .row > div .content > .row .item h4 {
  color: #fff !important;
  margin-bottom: 0;
}
.line-student-team .container-fluid > .row > div .content > .row .item p {
  color: #fff;
}

.line-student-team-member {
  background-color: #3E4E63;
  padding-top: 0;
  padding-bottom: 70px;
}
.line-student-team-member .js-directory-search-box {
  display: none;
}
.line-student-team-member #directory-tabs {
  display: none;
}
.line-student-team-member #directory-member {
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 30px;
}
@media (max-width: 1199px) {
  .line-student-team-member #directory-member {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 80px 30px;
  }
}
@media (max-width: 991px) {
  .line-student-team-member #directory-member {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 80px 30px;
  }
}
@media (max-width: 767px) {
  .line-student-team-member #directory-member {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 30px;
  }
}
@media (max-width: 575px) {
  .line-student-team-member #directory-member {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 80px 30px;
  }
}
.line-student-team-member #directory-member .investigator-list-bloc {
  display: flex;
  flex-direction: column;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-picture {
  flex: 1 1 0px;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-picture img {
  /*
  height: 100%!important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  */
  aspect-ratio: 12/14;
  object-fit: cover;
  object-position: center center;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content {
  flex: 1 1 0px;
  padding: 30px 30px 22px 30px;
  display: flex;
  flex-direction: column;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content h3 {
  margin-bottom: 0;
  opacity: 1 !important;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content h3 ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content h3 ul li {
  opacity: 1 !important;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content h3 ul li span {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  color: #29292A;
  margin-bottom: 0;
  opacity: 1 !important;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content h3 ul li span.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content h3 ul li:before {
  display: none;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content h3 ul::marker {
  display: none;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content h4 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 5px;
  opacity: 1 !important;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content h4.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content ul {
  padding-left: 0 !important;
  margin-top: 0;
  margin-bottom: 10px !important;
  list-style-type: none;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content ul li {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #ED1B2F !important;
  opacity: 1 !important;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content ul li.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content ul li:before {
  display: none;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content ul::marker {
  display: none;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content p {
  opacity: 1 !important;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content p:last-child {
  height: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content p:last-child .btn-plus {
  margin-bottom: 0;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content .btn {
  opacity: 1 !important;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  padding-bottom: 10px;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li {
  width: 40px;
  opacity: 1 !important;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li::marker {
  display: none;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a {
  text-decoration: none !important;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.email {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><g id="Groupe_18293" data-name="Groupe 18293" transform="translate(-498 -500)"><g id="Rectangle_3013" data-name="Rectangle 3013" transform="translate(498 500)" fill="none" stroke="%23ed1b2f" stroke-width="1.5"><rect width="24" height="14" rx="2" stroke="none"/><rect x="0.75" y="0.75" width="22.5" height="12.5" rx="1.25" fill="none"/></g><path id="Tracé_14999" data-name="Tracé 14999" d="M-5411.427-21874l7.976,4.773,7.632-4.773" transform="translate(5913.409 22377.322)" fill="none" stroke="%23ed1b2f" stroke-width="1"/></g></svg>');
  background-repeat: no-repeat;
  width: 24px;
  height: 14px;
  display: block;
  margin-top: 6px;
}
.line-student-team-member #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.email:hover {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><g id="Groupe_18293" data-name="Groupe 18293" transform="translate(-498 -500)"><g id="Rectangle_3013" data-name="Rectangle 3013" transform="translate(498 500)" fill="none" stroke="%2329292A" stroke-width="1.5"><rect width="24" height="14" rx="2" stroke="none"/><rect x="0.75" y="0.75" width="22.5" height="12.5" rx="1.25" fill="none"/></g><path id="Tracé_14999" data-name="Tracé 14999" d="M-5411.427-21874l7.976,4.773,7.632-4.773" transform="translate(5913.409 22377.322)" fill="none" stroke="%2329292A" stroke-width="1"/></g></svg>');
  fill: #3E4E63;
}

.line-student-events-title {
  padding-top: 100px;
}
.line-student-events-title .container > .row {
  display: flex;
  flex-wrap: wrap;
}
.line-student-events-title .container > .row > div:nth-child(1) h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
}
@media (max-width: 991px) {
  .line-student-events-title .container > .row > div:nth-child(1) h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-student-events-title .container > .row > div:nth-child(1) h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-student-events-title .container > .row > div:nth-child(1) h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-student-events-title .container > .row > div:nth-child(2) {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.line-student-events-title .container > .row > div:nth-child(2) .btn {
  margin-bottom: 30px;
}

.line-student-events {
  padding-top: 35px;
}

.line-student-story-title {
  padding-top: 15px;
}
.line-student-story-title .container > .row {
  display: flex;
  flex-wrap: wrap;
}
.line-student-story-title .container > .row > div:nth-child(1) h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
}
@media (max-width: 991px) {
  .line-student-story-title .container > .row > div:nth-child(1) h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-student-story-title .container > .row > div:nth-child(1) h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-student-story-title .container > .row > div:nth-child(2) {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.line-student-story-title .container > .row > div:nth-child(2) .content .btn-primary {
  margin-top: 0;
}

.line-student-story {
  padding-top: 35px;
  padding-bottom: 95px;
}

.line-student-social {
  padding-top: 100px;
  padding-bottom: 65px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .line-student-social {
    padding-top: 160px;
    padding-bottom: 125px;
  }
}
.line-student-social .container-fluid > .row > div .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 35px;
  opacity: 1 !important;
}
@media (max-width: 991px) {
  .line-student-social .container-fluid > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-student-social .container-fluid > .row > div .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-student-social .container-fluid > .row > div .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-student-social .container-fluid > .row > div .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.line-student-social .container-fluid > .row > div .content p:nth-child(1) {
  max-width: 100%;
  position: absolute;
  opacity: 1;
}
.line-student-social .container-fluid > .row > div .content p:nth-child(1) img {
  width: 600px;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: -140px;
  pointer-events: none;
}
@media (max-width: 991px) {
  .line-student-social .container-fluid > .row > div .content p:nth-child(1) img {
    left: -250px;
  }
}
@media (max-width: 767px) {
  .line-student-social .container-fluid > .row > div .content p:nth-child(1) img {
    width: 160px !important;
    top: -350px;
    left: 0px;
  }
}
.line-student-social .container-fluid > .row > div .content p:nth-child(2) {
  max-width: 100%;
  position: absolute;
  opacity: 1;
}
.line-student-social .container-fluid > .row > div .content p:nth-child(2) img {
  width: 600px;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  right: -140px;
  pointer-events: none;
}
@media (max-width: 991px) {
  .line-student-social .container-fluid > .row > div .content p:nth-child(2) img {
    right: -260px;
  }
}
@media (max-width: 767px) {
  .line-student-social .container-fluid > .row > div .content p:nth-child(2) img {
    width: 160px !important;
    top: 430px;
    right: -10px;
  }
}
.line-student-social .container-fluid > .row > div .content .social {
  padding-top: 60px;
  padding-bottom: 60px;
  justify-content: center;
}
.line-student-social .container-fluid > .row > div .content .social li {
  width: 180px;
  justify-content: center;
  position: relative;
}
.line-student-social .container-fluid > .row > div .content .social li:nth-child(1):after {
  content: "";
  position: absolute;
  height: 150px;
  width: 1px;
  background-color: #C0C1CC;
  right: 0;
  top: -32px;
}
.line-student-social .container-fluid > .row > div .content .social li a.facebook {
  width: 41px;
  height: 89px;
}
.line-student-social .container-fluid > .row > div .content .social li a.instagram {
  width: 81px;
  height: 80px;
  margin-top: -11px;
}

.line-student-form {
  padding-top: 75px;
  padding-bottom: 60px;
}
.line-student-form .container > .row > div:nth-child(1) .content {
  padding-right: 80px;
}
.line-student-form .container > .row > div:nth-child(1) .content h2 {
  margin-bottom: 40px;
}
.line-student-form .container > .row > div:nth-child(1) .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-student-form .container > .row > div:nth-child(1) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
.line-student-form .container > .row > div:nth-child(2) {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .line-student-form .container > .row > div:nth-child(2) {
    padding-top: 40px;
  }
}

.line-student-society-search {
  padding-top: 70px;
  padding-bottom: 85px;
  margin-bottom: 30px;
}
.line-student-society-search.small-footer-back {
  padding-bottom: 35px;
  margin-bottom: 0;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(2) {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1199px) {
  .line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(2) {
    flex-direction: column;
  }
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(2) form {
  width: 100%;
  /*max-width: 440px;*/
  display: flex;
}
@media (max-width: 767px) {
  .line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(2) form {
    flex-direction: column;
  }
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(2) label {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  opacity: 1;
  margin-bottom: 12px;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(2) label.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(2) .search_input {
  width: 100%;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(2) .search_input .chosen-choices {
  background: #ffffff url(https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-btn-arrow-big.svg) no-repeat right 15px center !important;
  border: 2px solid #C0C1CC !important;
  border-radius: 3px;
  color: #29292A !important;
  padding-right: 0 !important;
  position: relative;
  max-width: 440px;
  min-height: 60px;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(2) .search_input .chosen-choices:before {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: calc(100% - 25px);
  right: 48px;
  background-color: #C0C1CC;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(2) .search_input .chosen-choices input {
  color: #29292A !important;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(2) .search_input .chosen-choices a.search-choice-close {
  top: 11px !important;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(2) .search_input .chosen-results .active-result.highlighted {
  background-color: #ED1B2F;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(2) #section-footer-search {
  padding-top: 30px;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc #directory-tabs {
  display: none;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px 30px;
}
@media (max-width: 767px) {
  .line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 45px 30px;
  }
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc {
  background-color: #fff;
  display: flex;
  min-height: 294px;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-picture {
  flex: 1 1 0px;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-picture img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  /*
  &[src=""] {
      display:block!important;
      margin-left: auto;
      margin-right: auto;
      background-image: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/crm/images/team_place-holder-1708440933.jpg");
      background-repeat: no-repeat;
      background-position: center bottom;
      background-size: cover;
      width: auto;
      height: auto;
      margin: 0;
      padding: 0;
  }
  */
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-picture img[src=""] {
  display: block !important;
  margin-left: auto;
  margin-right: auto;
  background-image: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/crm/images/team_place-holder-1708440933.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content {
  flex: 1 1 0px;
  padding: 30px 30px 22px 30px;
  display: flex;
  flex-direction: column;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content h3 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  opacity: 1 !important;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content h3 ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content h3 ul li {
  opacity: 1 !important;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content h3 ul li span {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  color: #29292A;
  margin-bottom: 0;
  opacity: 1 !important;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content h3 ul li span.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content h3 ul li:before {
  display: none;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content h3 ul::marker {
  display: none;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content h4 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 5px;
  opacity: 1 !important;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content h4.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul {
  padding-left: 0 !important;
  margin-top: 0;
  margin-bottom: 10px !important;
  list-style-type: none;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul li {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #ED1B2F !important;
  opacity: 1 !important;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul li.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul li:before {
  display: none;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul::marker {
  display: none;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content .btn {
  opacity: 1 !important;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content p {
  opacity: 1 !important;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content p:last-child {
  height: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content p:last-child .btn-plus {
  margin-bottom: 0;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  padding-bottom: 10px;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li {
  width: 40px;
  opacity: 1 !important;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li::marker {
  display: none;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li:has(> a.linkedin[href=""]) {
  display: none;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li:has(> a.email[href="mailto:"]) {
  display: none;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a {
  text-decoration: none !important;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%23ed1b2f'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  width: 21px;
  height: 20px;
  display: block;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%2329292A'/%3E%3C/svg%3E%0A");
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.email {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><g id="Groupe_18293" data-name="Groupe 18293" transform="translate(-498 -500)"><g id="Rectangle_3013" data-name="Rectangle 3013" transform="translate(498 500)" fill="none" stroke="%23ed1b2f" stroke-width="1.5"><rect width="24" height="14" rx="2" stroke="none"/><rect x="0.75" y="0.75" width="22.5" height="12.5" rx="1.25" fill="none"/></g><path id="Tracé_14999" data-name="Tracé 14999" d="M-5411.427-21874l7.976,4.773,7.632-4.773" transform="translate(5913.409 22377.322)" fill="none" stroke="%23ed1b2f" stroke-width="1"/></g></svg>');
  background-repeat: no-repeat;
  width: 24px;
  height: 14px;
  display: block;
  margin-top: 6px;
}
.line-student-society-search .container > .row > .zone-directory > .row > div:nth-child(3) .mod_directory__result_bloc .tab-content #directory-member .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.email:hover {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><g id="Groupe_18293" data-name="Groupe 18293" transform="translate(-498 -500)"><g id="Rectangle_3013" data-name="Rectangle 3013" transform="translate(498 500)" fill="none" stroke="%2329292A" stroke-width="1.5"><rect width="24" height="14" rx="2" stroke="none"/><rect x="0.75" y="0.75" width="22.5" height="12.5" rx="1.25" fill="none"/></g><path id="Tracé_14999" data-name="Tracé 14999" d="M-5411.427-21874l7.976,4.773,7.632-4.773" transform="translate(5913.409 22377.322)" fill="none" stroke="%2329292A" stroke-width="1"/></g></svg>');
  fill: #3E4E63;
}
.line-student-society-search.employee-directory-search .js-directory-search-box {
  display: flex;
  align-items: end;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .line-student-society-search.employee-directory-search .js-directory-search-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.line-student-society-search.employee-directory-search .js-directory-search-box form .form-group {
  width: 340px;
  padding-right: 30px;
}
.line-student-society-search.employee-directory-search .js-directory-search-box form .form-group .search_input {
  width: 100% !important;
}
.line-student-society-search.employee-directory-search .js-directory-search-box form .form-group .search_input input.form-control {
  background-color: #fff !important;
}
.line-student-society-search.employee-directory-search .js-directory-search-box form .form-group .search_input select.form-control {
  background-color: #fff !important;
}
.line-student-society-search.employee-directory-search .js-directory-search-box #section-footer-search a {
  margin-right: 15px;
}
.line-student-society-search .js-directory-search-box > div {
  /*
  &.search-object-form {
      display:flex;
      justify-content: flex-start;
      align-items: flex-end;
      gap: 35px;
      @include max-sm {
          flex-direction: column;
          align-items: flex-start;
          gap: 0;
      }
      form {
          width:100%;
          max-width: 440px;
      }
      label {
          @include p-intro;
          margin-bottom: 12px;
      }
      .search_input {
          width: 100%;

          .chosen-choices {
              background: #ffffff url(https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-btn-arrow-big.svg) no-repeat right 15px center !important;
              border: 2px solid $clrGrey!important;
              border-radius: 3px;
              color: $third!important;
              padding-right: 0 !important;
              position: relative;
              max-width: 440px;
              &:before {
                  content:"";
                  position: absolute;
                  display: block;
                  width:2px;
                  height: calc(100% - 25px);
                  right: 48px;
                  background-color: $clrGrey;
              }
              input {
                  color:$third!important;
              }
              a.search-choice-close {
                  top: 11px !important;
              }
          }
          .chosen-results {
              .active-result {
                  &.highlighted {
                      background-color: $secondary;
                  }
              }
          }
      }

  }
  */
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) {
  padding-top: 0;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px 30px;
}
@media (max-width: 767px) {
  .line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 45px 30px;
  }
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div {
  background-color: #fff;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc {
  display: flex;
  min-height: 294px;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-picture {
  flex: 1 1 0px;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-picture img {
  /*max-height: 292px!important;*/
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content {
  flex: 1 1 0px;
  padding: 30px 30px 22px 30px;
  display: flex;
  flex-direction: column;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  color: #29292A;
  margin-bottom: 0;
  opacity: 1 !important;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 ul li {
  opacity: 1 !important;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 ul li span {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  color: #29292A;
  margin-bottom: 0;
  opacity: 1 !important;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 ul li span.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 ul li:before {
  display: none;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h3 ul::marker {
  display: none;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h4 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 5px;
  opacity: 1 !important;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content h4.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul {
  padding-left: 0 !important;
  margin-top: 0;
  margin-bottom: 10px !important;
  list-style-type: none;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul li {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #ED1B2F !important;
  opacity: 1 !important;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul li.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul li:before {
  display: none;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul::marker {
  display: none;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content p {
  opacity: 1 !important;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content p:last-child {
  height: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content p:last-child .btn-plus {
  margin-bottom: 0;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  padding-bottom: 10px;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li {
  width: 40px;
  opacity: 1 !important;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li::marker {
  display: none;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li:has(> a.linkedin[href=""]) {
  display: none;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li:has(> a.email[href="mailto:"]) {
  display: none;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a {
  text-decoration: none !important;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%23ed1b2f'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  width: 21px;
  height: 20px;
  display: block;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%2329292A'/%3E%3C/svg%3E%0A");
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.email {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><g id="Groupe_18293" data-name="Groupe 18293" transform="translate(-498 -500)"><g id="Rectangle_3013" data-name="Rectangle 3013" transform="translate(498 500)" fill="none" stroke="%23ed1b2f" stroke-width="1.5"><rect width="24" height="14" rx="2" stroke="none"/><rect x="0.75" y="0.75" width="22.5" height="12.5" rx="1.25" fill="none"/></g><path id="Tracé_14999" data-name="Tracé 14999" d="M-5411.427-21874l7.976,4.773,7.632-4.773" transform="translate(5913.409 22377.322)" fill="none" stroke="%23ed1b2f" stroke-width="1"/></g></svg>');
  background-repeat: no-repeat;
  width: 24px;
  height: 14px;
  display: block;
  margin-top: 6px;
}
.line-student-society-search .js-directory-search-box > div:nth-child(2) .search-object-result #search-object-tab-formbuilder > div .investigator-list-bloc .investigator-list-content ul.investigator-list-link li a.email:hover {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><g id="Groupe_18293" data-name="Groupe 18293" transform="translate(-498 -500)"><g id="Rectangle_3013" data-name="Rectangle 3013" transform="translate(498 500)" fill="none" stroke="%2329292A" stroke-width="1.5"><rect width="24" height="14" rx="2" stroke="none"/><rect x="0.75" y="0.75" width="22.5" height="12.5" rx="1.25" fill="none"/></g><path id="Tracé_14999" data-name="Tracé 14999" d="M-5411.427-21874l7.976,4.773,7.632-4.773" transform="translate(5913.409 22377.322)" fill="none" stroke="%2329292A" stroke-width="1"/></g></svg>');
  fill: #3E4E63;
}

.line-goodman-experience-career {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F2F2F5;
}
.line-goodman-experience-career .content {
  max-width: 700px;
}
.line-goodman-experience-career .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .line-goodman-experience-career .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-goodman-experience-career .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-goodman-experience-career .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-goodman-experience-career .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  max-width: 490px;
}
.line-goodman-experience-career .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-goodman-experience-collaborative {
  padding-top: 0;
  padding-bottom: 120px;
  background-color: #29292A;
}
.line-goodman-experience-collaborative .content {
  max-width: 800px;
}
.line-goodman-experience-collaborative .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #fff;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .line-goodman-experience-collaborative .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-goodman-experience-collaborative .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-goodman-experience-collaborative .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-goodman-experience-collaborative .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  color: #fff;
  max-width: 580px;
}
.line-goodman-experience-collaborative .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-goodman-experience-bg-only {
  height: 580px;
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/goodman%20experience/goodman-experience-bg-img-blue-1.jpg");
  background-size: cover;
  background-position: center center;
}

.line-goodman-experience-home {
  padding-top: 0;
  padding-bottom: 120px;
  background-color: #3E4E63;
}
.line-goodman-experience-home .content {
  max-width: 740px;
}
.line-goodman-experience-home .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #fff;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .line-goodman-experience-home .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-goodman-experience-home .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-goodman-experience-home .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  color: #fff;
  max-width: 590px;
}
.line-goodman-experience-home .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-goodman-experience-mcgill {
  padding-top: 80px;
  padding-bottom: 110px;
  background-color: #F2F2F5;
}
.line-goodman-experience-mcgill .container > .row {
  display: flex;
}
@media (max-width: 767px) {
  .line-goodman-experience-mcgill .container > .row {
    flex-direction: column;
  }
}
.line-goodman-experience-mcgill .container > .row > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .line-goodman-experience-mcgill .container > .row > div:nth-child(1) {
    width: 100%;
    order: 2;
  }
}
.line-goodman-experience-mcgill .container > .row > div:nth-child(1) .content h2 {
  margin-bottom: 35px;
}
.line-goodman-experience-mcgill .container > .row > div:nth-child(1) .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-goodman-experience-mcgill .container > .row > div:nth-child(1) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  max-width: 580px;
}
.line-goodman-experience-mcgill .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 1199px) {
  .line-goodman-experience-mcgill .container > .row > div:nth-child(1) .content br {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .line-goodman-experience-mcgill .container > .row > div:nth-child(2) {
    width: 100%;
    order: 1;
    padding-bottom: 40px;
  }
}

.line-goodman-experience-program {
  padding-top: 170px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .line-goodman-experience-program {
    padding-top: 120px;
  }
}
@media (max-width: 991px) {
  .line-goodman-experience-program.smallpaddingtop {
    padding-top: 0 !important;
  }
}
.line-goodman-experience-program .container > .row > div:nth-child(1) .content {
  margin-right: 120px;
}
@media (max-width: 1199px) {
  .line-goodman-experience-program .container > .row > div:nth-child(1) .content {
    margin-right: 80px;
  }
}
@media (max-width: 991px) {
  .line-goodman-experience-program .container > .row > div:nth-child(1) .content {
    margin-right: 40px;
  }
}
@media (max-width: 767px) {
  .line-goodman-experience-program .container > .row > div:nth-child(1) .content {
    margin-right: 40px;
  }
}
.line-goodman-experience-program .container > .row > div:nth-child(1) .content h2 {
  margin-bottom: 30px;
}
.line-goodman-experience-program .container > .row > div:nth-child(1) .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-goodman-experience-program .container > .row > div:nth-child(1) .content p:not(:last-child) {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 25px;
}
.line-goodman-experience-program .container > .row > div:nth-child(1) .content p:not(:last-child).animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-goodman-experience-program .container > .row > div:nth-child(2) ul {
  padding-top: 60px;
  list-style: none !important;
}
@media (max-width: 767px) {
  .line-goodman-experience-program .container > .row > div:nth-child(2) ul {
    padding-top: 20px;
  }
}
.line-goodman-experience-program .container > .row > div:nth-child(2) ul li {
  font-size: 27px !important;
  line-height: 30px !important;
  font-weight: 500 !important;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #C0C1CC;
}
.line-goodman-experience-program .container > .row > div:nth-child(2) ul li:before {
  display: none;
}

.line-recruitment-text {
  padding-top: 110px;
  padding-bottom: 60px;
  background-color: #F2F2F5;
}
.line-recruitment-text .container > .row > div .content {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.line-recruitment-text .container > .row > div .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 22px;
}
@media (max-width: 991px) {
  .line-recruitment-text .container > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-recruitment-text .container > .row > div .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-recruitment-text .container > .row > div .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-recruitment-text .container > .row > div .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-recruitment-text .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

.line-recruitment-accordion {
  background-color: #F2F2F5;
  padding-top: 40px;
  padding-bottom: 100px;
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px 30px;
}
@media (max-width: 991px) {
  .line-recruitment-accordion .container > .row > div .news-accordion-panel-group {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 80px 30px;
  }
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion {
  border-bottom: 0 !important;
  position: relative;
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion:before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  left: 0;
  right: 0;
  top: -45px;
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
  pointer-events: none;
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion:nth-child(1):before {
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Recruitment/icon-recruitment-application.svg") no-repeat center;
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion:nth-child(2):before {
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Recruitment/icon-recruitment-summary.svg") no-repeat center;
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion:nth-child(3):before {
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Recruitment/icon-recruitment-eligibility.svg") no-repeat center;
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion .panel-heading {
  background-color: #fff;
  border-radius: 3px;
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion .panel-heading .panel-title {
  padding-left: 0;
}
@media (min-width: 992px) {
  .line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion .panel-heading .panel-title {
    min-height: 315px;
  }
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion .panel-heading .panel-title a {
  text-align: center;
  padding: 110px 30px 112px 30px;
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion .panel-heading .panel-title a.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion .panel-heading .panel-title a.animate a {
  opacity: 1 !important;
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion .panel-heading .panel-title a:after {
  left: 0;
  right: 0;
  bottom: 40px;
  top: inherit;
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion .accordion-pane {
  background-color: #fff;
  border-radius: 3px;
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion .accordion-pane .panel-body {
  padding: 0 30px 30px 30px;
}
.line-recruitment-accordion .container > .row > div .news-accordion-panel-group .panel-news-accordion .accordion-pane .panel-body ul li {
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 20px !important;
  color: #3E4E63 !important;
}

.line-recruitment-bg-images .mod-banner__img {
  height: 540px;
}

.line-recent-publications-years {
  padding-top: 88px;
  padding-bottom: 20px;
}
.line-recent-publications-years .container > .row > div > h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .line-recent-publications-years .container > .row > div > h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-recent-publications-years .container > .row > div > h2 {
    font-size: 40px;
    line-height: 45px;
  }
}

.line-annual-reports-morgan {
  padding-top: 0;
  padding-bottom: 100px;
  background-color: #F2F2F5;
}
.line-annual-reports-morgan .content {
  max-width: 830px;
}
.line-annual-reports-morgan .content p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 25px;
}
.line-annual-reports-morgan .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-annual-reports-morgan .content h4 {
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 5px;
}
.line-annual-reports-morgan .content h5 {
  font-size: 14px;
  line-height: 16px;
}

.line-annual-reports-latest {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #29292A;
}
.line-annual-reports-latest .container > .row > div .content > .row {
  margin-left: 0;
  margin-right: 0;
}
.line-annual-reports-latest .container > .row > div .content > .row .item {
  display: flex;
  flex-direction: row;
  gap: 125px;
}
@media (max-width: 1199px) {
  .line-annual-reports-latest .container > .row > div .content > .row .item {
    gap: 85px;
  }
}
@media (max-width: 991px) {
  .line-annual-reports-latest .container > .row > div .content > .row .item {
    gap: 65px;
  }
}
@media (max-width: 767px) {
  .line-annual-reports-latest .container > .row > div .content > .row .item {
    flex-direction: column;
    gap: 35px;
  }
}
@media (min-width: 768px) {
  .line-annual-reports-latest .container > .row > div .content > .row .item .itemImage {
    min-width: 256px;
  }
}
@media (max-width: 767px) {
  .line-annual-reports-latest .container > .row > div .content > .row .item .itemImage img {
    max-width: 340px;
  }
}
.line-annual-reports-latest .container > .row > div .content > .row .item .intro h3 {
  color: #fff;
}
.line-annual-reports-latest .container > .row > div .content > .row .item .intro p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #3E4E63;
  opacity: 0;
  color: #fff;
}
.line-annual-reports-latest .container > .row > div .content > .row .item .intro p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-annual-reports-latest .container > .row > div .content > .row .item .intro .btn {
  margin-top: 25px;
  color: #fff;
}

.line-annual-reports {
  padding-top: 100px;
  padding-bottom: 80px;
}
.line-annual-reports .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 20px;
}
@media (max-width: 991px) {
  .line-annual-reports .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }
}
@media (max-width: 575px) {
  .line-annual-reports .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px 20px;
  }
}
.line-annual-reports .container > .row > div .content > .row {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}
.line-annual-reports .container > .row > div .content > .row .item {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 991px) {
  .line-annual-reports .container > .row > div .content > .row .item {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .line-annual-reports .container > .row > div .content > .row .item {
    align-items: center;
  }
}
.line-annual-reports .container > .row > div .content > .row .item .itemImage {
  max-width: 256px;
}
.line-annual-reports .container > .row > div .content > .row .item .itemImage img {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.line-annual-reports .container > .row > div .content > .row .item .intro {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 575px) {
  .line-annual-reports .container > .row > div .content > .row .item .intro {
    text-align: center;
  }
}
.line-annual-reports .container > .row > div .content > .row .item .intro h3 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
  text-transform: initial;
  opacity: 0;
  font-weight: 600;
  font-weight: bold !important;
  font-family: "PPObjectSans-Bold", sans-serif;
}
.line-annual-reports .container > .row > div .content > .row .item .intro h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-annual-reports .container > .row > div .content > .row .item .intro h3 strong {
  color: #ED1B2F;
}
.line-annual-reports .container > .row > div .content > .row .item .intro .btn {
  margin-top: 25px;
}
.line-annual-reports .container > .row > div .content > .row .item .intro br {
  display: block !important;
}

.line-annual-reports-discover {
  padding-top: 15px;
  padding-bottom: 75px;
}
.line-annual-reports-discover.no-border-top .container {
  border-top: 0;
}
.line-annual-reports-discover .container {
  padding-top: 100px;
  border-top: 1px solid #C0C1CC;
}

.line-financial-support-intro {
  padding-top: 80px;
  padding-bottom: 0;
  background-color: #F2F2F5;
}
.line-financial-support-intro .container > .row > div .content {
  max-width: 820px;
}
.line-financial-support-intro .container > .row > div .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .line-financial-support-intro .container > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-financial-support-intro .container > .row > div .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-financial-support-intro .container > .row > div .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-financial-support-intro .container > .row > div .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-financial-support-intro .container > .row > div .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-financial-support-intro .container > .row > div .content p a {
  text-decoration: underline;
}
.line-financial-support-intro .container > .row > div .content p a:hover {
  text-decoration: none !important;
}

.line-financial-support-funding {
  padding-top: 10px;
  padding-bottom: 80px;
}
.line-financial-support-funding .container > .row > div > h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .line-financial-support-funding .container > .row > div > h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-financial-support-funding .container > .row > div > h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-financial-support-funding .container > .row > div .news-accordion-content a:not(.btn) {
  color: #ED1B2F !important;
}
.line-financial-support-funding .container > .row > div .news-accordion-content a:not(.btn):hover {
  text-decoration: none !important;
}
.line-financial-support-funding .container > .row > div .news-accordion-content ul {
  margin-top: 25px !important;
}
.line-financial-support-funding .container > .row > div .news-accordion-content ul > li {
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 20px !important;
}
.line-financial-support-funding .container > .row > div .news-accordion-content ul > li a {
  text-decoration: underline;
}
.line-financial-support-funding .container > .row > div .news-accordion-content ul > li a:hover {
  text-decoration: none !important;
}
.line-financial-support-funding .container > .row > div .news-accordion-content ul > li:before {
  width: 4px !important;
  height: 4px !important;
  background-color: #29292A !important;
  margin-top: 8px !important;
  border-radius: 25px !important;
}
.line-financial-support-funding .container > .row > div .news-accordion-content ol {
  margin-top: 25px;
  list-style-type: lower-alpha;
}
.line-financial-support-funding .container > .row > div .news-accordion-content ol > li {
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 20px !important;
}
.line-financial-support-funding .container > .row > div .news-accordion-content ol > li a {
  text-decoration: underline;
}
.line-financial-support-funding .container > .row > div .news-accordion-content ol > li a:hover {
  text-decoration: none !important;
}
.line-financial-support-funding .container > .row > div .news-accordion-content ol > li:before {
  display: none;
}

.line-newsletter-content {
  padding-top: 90px;
  padding-bottom: 40px;
  background-color: #F2F2F5;
}
@media (max-width: 767px) {
  .line-newsletter-content {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .line-newsletter-content .container > .row {
    display: flex;
    flex-direction: column-reverse;
  }
}
.line-newsletter-content .container > .row > div:nth-child(1) {
  width: 66.66666%;
}
@media (max-width: 767px) {
  .line-newsletter-content .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-newsletter-content .container > .row > div:nth-child(1) .content {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .line-newsletter-content .container > .row > div:nth-child(1) .content {
    padding-top: 0;
  }
}
.line-newsletter-content .container > .row > div:nth-child(1) .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-newsletter-content .container > .row > div:nth-child(1) .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-newsletter-content .container > .row > div:nth-child(1) .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-newsletter-content .container > .row > div:nth-child(1) .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}
.line-newsletter-content .container > .row > div:nth-child(1) .content h3 {
  font-size: 27px;
  line-height: 30px;
  font-weight: 500;
  text-transform: initial;
  opacity: 0;
  margin-bottom: 25px;
}
.line-newsletter-content .container > .row > div:nth-child(1) .content h3.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-newsletter-content .container > .row > div:nth-child(1) .content h3.animate a {
  opacity: 1 !important;
}
.line-newsletter-content .container > .row > div:nth-child(1) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  margin-bottom: 45px;
}
.line-newsletter-content .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-newsletter-content .container > .row > div:nth-child(2) {
  width: 33.33333%;
}
@media (max-width: 767px) {
  .line-newsletter-content .container > .row > div:nth-child(2) {
    width: 100%;
    padding-bottom: 60px;
  }
}
.line-newsletter-form {
  padding-top: 15px;
  padding-bottom: 70px;
  background-color: #F2F2F5;
}
@media (max-width: 767px) {
  .line-newsletter-form {
    padding-top: 0;
  }
}
.line-newsletter-form .container > .row > div:nth-child(1) .content {
  padding-right: 70px;
  padding-top: 25px;
}
@media (max-width: 1199px) {
  .line-newsletter-form .container > .row > div:nth-child(1) .content {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .line-newsletter-form .container > .row > div:nth-child(1) .content {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .line-newsletter-form .container > .row > div:nth-child(1) .content {
    padding-right: 0;
  }
}
.line-newsletter-form .container > .row > div:nth-child(1) .content h2 {
  color: #ED1B2F;
  margin-bottom: 50px;
}
.line-newsletter-form .container > .row > div:nth-child(1) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-newsletter-form .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-contact-form {
  padding-top: 110px;
  padding-bottom: 70px;
  background-color: #F2F2F5;
}
@media (max-width: 991px) {
  .line-contact-form {
    padding-top: 80px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-contact-form .container > .row > div:nth-child(1) {
    width: 40%;
  }
}
.line-contact-form .container > .row > div:nth-child(1) .content {
  padding-right: 60px;
}
@media (max-width: 1199px) {
  .line-contact-form .container > .row > div:nth-child(1) .content {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .line-contact-form .container > .row > div:nth-child(1) .content {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .line-contact-form .container > .row > div:nth-child(1) .content {
    padding-right: 0;
    margin-bottom: 60px;
  }
}
.line-contact-form .container > .row > div:nth-child(1) .content h4 {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .line-contact-form .container > .row > div:nth-child(1) .content h4 img {
    width: 100% !important;
  }
}
.line-contact-form .container > .row > div:nth-child(1) .content h3 {
  margin-bottom: 6px;
  margin-top: 48px;
}
.line-contact-form .container > .row > div:nth-child(1) .content h3:before {
  content: "";
  position: absolute;
  width: 160px;
  height: 1px;
  margin-top: -24px;
  background-color: #C0C1CC;
}
.line-contact-form .container > .row > div:nth-child(1) .content h3 a {
  text-decoration: none !important;
}
.line-contact-form .container > .row > div:nth-child(1) .content h3 + p {
  margin-bottom: 45px;
  position: relative;
}
.line-contact-form .container > .row > div:nth-child(1) .content h3 + p:after {
  content: "";
  position: absolute;
  width: 160px;
  height: 1px;
  bottom: 0;
  left: 0;
  margin-bottom: -24px;
  background-color: #C0C1CC;
}
.line-contact-form .container > .row > div:nth-child(1) .content ul {
  margin-top: -8px;
  margin-bottom: 45px;
  position: relative;
}
.line-contact-form .container > .row > div:nth-child(1) .content ul:after {
  content: "";
  position: absolute;
  width: 160px;
  height: 1px;
  bottom: 0;
  left: 0;
  margin-bottom: -24px;
  background-color: #C0C1CC;
}
.line-contact-form .container > .row > div:nth-child(1) .content ul li {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
  font-size: 18px !important;
  line-height: 22px !important;
  margin-bottom: 4px;
}
.line-contact-form .container > .row > div:nth-child(1) .content ul li.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-contact-form .container > .row > div:nth-child(1) .content ul li::marker {
  color: #29292A;
}
.line-contact-form .container > .row > div:nth-child(1) .content ul li:before {
  content: "";
  border-radius: 15px !important;
  background-color: #29292A !important;
  margin-top: 9px !important;
}
.line-contact-form .container > .row > div:nth-child(1) .content ul + p strong {
  margin-top: 46px;
  margin-bottom: -15px;
  display: block !important;
}
.line-contact-form .container > .row > div:nth-child(1) .content ul + p br {
  display: block !important;
}
.line-contact-form .container > .row > div:nth-child(1) .content ul + p a {
  color: #ED1B2F !important;
  text-decoration: underline;
}
.line-contact-form .container > .row > div:nth-child(1) .content ul + p a br {
  /*display: none!important;*/
}
.line-contact-form .container > .row > div:nth-child(1) .content ul + p a:hover {
  text-decoration: none !important;
}
.line-contact-form .container > .row > div:nth-child(1) .content h2 {
  margin-bottom: 10px;
  margin-top: 48px;
}
.line-contact-form .container > .row > div:nth-child(1) .content p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-contact-form .container > .row > div:nth-child(1) .content p.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-contact-form .container > .row > div:nth-child(2) {
  padding-top: 10px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-contact-form .container > .row > div:nth-child(2) {
    width: 60%;
  }
}
.line-contact-form .container > .row > div:nth-child(2) > h2 {
  margin-bottom: 60px;
}

.line-contact-title-email {
  padding-top: 90px;
  padding-bottom: 50px;
}
.line-contact-title-email .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 185px;
}
@media (max-width: 1199px) {
  .line-contact-title-email .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px 100px;
  }
}
@media (max-width: 991px) {
  .line-contact-title-email .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px 60px;
  }
}
@media (max-width: 767px) {
  .line-contact-title-email .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 60px;
  }
}
@media (max-width: 575px) {
  .line-contact-title-email .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 60px 60px;
  }
}
.line-contact-title-email .container > .row > div .content > .row {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
.line-contact-title-email .container > .row > div .content > .row .item .itemImage img {
  margin-bottom: 30px;
  color: #3E4E63;
}
.line-contact-title-email .container > .row > div .content > .row .item .intro h4 {
  margin-bottom: 0px;
}

.line-cs-news-title {
  padding-top: 15px;
  background-color: #F2F2F5;
}
.line-cs-news-title.disable-top-line .container:before {
  display: none;
}
.line-cs-news-title .container:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #C0C1CC;
  margin-left: auto;
  margin-right: auto;
}
.line-cs-news-title .container > .row {
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
}
.line-cs-news-title .container > .row > div:nth-child(1) h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
}
@media (max-width: 991px) {
  .line-cs-news-title .container > .row > div:nth-child(1) h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-cs-news-title .container > .row > div:nth-child(1) h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-cs-news-title .container > .row > div:nth-child(2) {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.line-cs-news {
  background-color: #F2F2F5;
  padding-top: 40px;
  padding-bottom: 120px;
}

.line-cs-browse-title .container:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #C0C1CC;
  margin-left: auto;
  margin-right: auto;
}
.line-cs-browse-title .container > .row {
  display: flex;
  flex-wrap: wrap;
  padding-top: 60px;
}
.line-cs-browse-title .container > .row > div .content h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
}
@media (max-width: 991px) {
  .line-cs-browse-title .container > .row > div .content h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-cs-browse-title .container > .row > div .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-cs-browse-title .container > .row > div .content h2 strong {
  color: #ED1B2F;
  font-weight: 500;
}

.line-cs-logos-media-title {
  padding-top: 70px;
  padding-bottom: 50px;
  background-color: #F2F2F5;
}
.line-cs-logos-media-title h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
}
@media (max-width: 991px) {
  .line-cs-logos-media-title h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-cs-logos-media-title h2 {
    font-size: 40px;
    line-height: 45px;
  }
}

.line-cs-logos-media {
  padding-top: 0;
  padding-bottom: 80px;
  background-color: #F2F2F5;
  position: relative;
  overflow-x: clip;
}
.line-cs-logos-media .container:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Contribute-overview/contribute-overview-stronger.svg");
  background-position: center center;
  position: absolute;
  display: block;
  width: 226px;
  height: 251px;
  top: -150px;
  right: 90px;
}
@media (max-width: 991px) {
  .line-cs-logos-media .container:before {
    width: 113px;
    height: 125px;
    background-size: 113px 125px;
    top: -170px;
    right: 90px;
  }
}
@media (max-width: 767px) {
  .line-cs-logos-media .container:before {
    top: -160px;
    right: -20px;
  }
}
@media (max-width: 575px) {
  .line-cs-logos-media .container:before {
    top: -240px;
    right: -20px;
  }
}
.line-cs-logos-media .container > .row {
  display: flex;
  flex-wrap: wrap;
}
.line-cs-logos-media .container > .row > div:nth-child(1) {
  width: 40%;
}
@media (max-width: 1199px) {
  .line-cs-logos-media .container > .row > div:nth-child(1) {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .line-cs-logos-media .container > .row > div:nth-child(1) {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .line-cs-logos-media .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-cs-logos-media .container > .row > div:nth-child(1) .content {
  position: relative;
}
.line-cs-logos-media .container > .row > div:nth-child(1) .content:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/About%20us/carousel-bg-element.svg");
  background-position: center center;
  position: absolute;
  display: block;
  width: 332px;
  height: 209px;
  top: 150px;
  left: 90px;
}
@media (max-width: 991px) {
  .line-cs-logos-media .container > .row > div:nth-child(1) .content:before {
    width: 166px;
    height: 104px;
    background-size: 166px 204px;
    top: 220px;
    left: 160px;
  }
}
@media (max-width: 797px) {
  .line-cs-logos-media .container > .row > div:nth-child(1) .content:before {
    top: 205px;
    left: 140px;
  }
}
@media (max-width: 767px) {
  .line-cs-logos-media .container > .row > div:nth-child(1) .content:before {
    width: 332px;
    height: 209px;
    background-size: 332px 209px;
    top: 150px;
    left: 90px;
  }
}
.line-cs-logos-media .container > .row > div:nth-child(1) .content img {
  position: relative;
  object-fit: cover;
  object-position: center center;
  width: 310px;
  height: 390px !important;
}
@media (max-width: 991px) and (min-width: 768px) {
  .line-cs-logos-media .container > .row > div:nth-child(1) .content img {
    width: 264px;
    height: 332px !important;
  }
}
.line-cs-logos-media .container > .row > div:nth-child(2) {
  width: 60%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1199px) {
  .line-cs-logos-media .container > .row > div:nth-child(2) {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .line-cs-logos-media .container > .row > div:nth-child(2) {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .line-cs-logos-media .container > .row > div:nth-child(2) {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .line-cs-logos-media .container > .row > div:nth-child(2) .content {
    margin-left: 60px;
  }
}
@media (max-width: 767px) {
  .line-cs-logos-media .container > .row > div:nth-child(2) .content {
    margin-left: 0;
  }
}
.line-cs-logos-media .container > .row > div:nth-child(2) .content h2 {
  margin-bottom: 0px;
}
.line-cs-logos-media .container > .row > div:nth-child(2) .content h4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3E4E63;
  opacity: 0;
}
.line-cs-logos-media .container > .row > div:nth-child(2) .content h4.animate {
  animation-name: opacity_fade;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
.line-cs-logos-media .container > .row > div:nth-child(2) .content a {
  color: #ED1B2F !important;
  text-decoration: underline !important;
}
.line-cs-logos-media .container > .row > div:nth-child(2) .content a:hover {
  color: #ED1B2F !important;
  text-decoration: none !important;
}

.line-cs-logos-tools {
  padding-top: 95px;
  padding-bottom: 100px;
}
.line-cs-logos-tools .container > .row > div h2 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #ED1B2F;
  text-transform: initial;
  color: #29292A;
}
@media (max-width: 991px) {
  .line-cs-logos-tools .container > .row > div h2 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .line-cs-logos-tools .container > .row > div h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
.line-cs-logos-tools .container > .row > div .content {
  padding-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px 20px;
}
@media (max-width: 991px) {
  .line-cs-logos-tools .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 20px;
  }
}
@media (max-width: 767px) {
  .line-cs-logos-tools .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 35px 20px;
  }
}
.line-cs-logos-tools .container > .row > div .content > .row {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
.line-cs-logos-tools .container > .row > div .content > .row .item .intro img {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .line-cs-logos-tools .container > .row > div .content > .row .item .intro img {
    width: 100% !important;
  }
}
.line-cs-logos-tools .container > .row > div .content > .row .item .intro h3 {
  margin-bottom: 0;
}

.line-search-google {
  padding-top: 20px;
  padding-bottom: 80px;
}
.line-search-google input {
  padding: 15px !important;
  min-height: 40px;
  font-size: 14px;
  line-height: 1.42857143;
  height: 60px !important;
  border-radius: 3px;
  color: #3E4E63 !important;
}
.line-search-google .gsib_a {
  padding: 0;
}
.line-search-google .gsst_a {
  padding: 0px 15px 0 4px;
}
.line-search-google form.gsc-search-box {
  margin-bottom: 24px;
}
.line-search-google button.gsc-search-button {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent !important;
  color: #29292A !important;
  transition: all 150ms !important;
  border: 1px solid #ED1B2F !important;
  padding: 15px 35px !important;
  border-radius: 50px !important;
  margin-left: 10px;
}
.line-search-google button.gsc-search-button:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.line-search-google button.gsc-search-button:hover, .line-search-google button.gsc-search-button:active, .line-search-google button.gsc-search-button:focus {
  text-decoration: none;
}
.line-search-google button.gsc-search-button:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .line-search-google button.gsc-search-button {
    white-space: normal !important;
  }
}
.line-search-google button.gsc-search-button:hover, .line-search-google button.gsc-search-button:active, .line-search-google button.gsc-search-button:focus {
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  color: #fff !important;
}
.line-search-google button.gsc-search-button:hover svg, .line-search-google button.gsc-search-button:active svg, .line-search-google button.gsc-search-button:focus svg {
  fill: #ffffff !important;
  width: 24px;
  height: 18px;
}
.line-search-google button.gsc-search-button svg {
  width: 24px;
  height: 18px;
}

@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: #3E4E63;
  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: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: initial;
}
.line-header {
  padding: 0;
  height: 95px;
  background-color: #fff;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(192, 193, 204, 0.7490196078);
}
@media (max-width: 991px) {
  .line-header {
    height: 84px;
  }
}
.line-header .container-fluid {
  padding-left: 35px;
  padding-right: 35px;
}
.line-header .container-fluid .row-fluid {
  display: flex;
  justify-content: flex-start;
  position: relative;
  bottom: 0;
  margin-top: 6px;
  margin-left: 0;
  margin-right: 0;
}
.line-header .container-fluid .row-fluid div {
  align-items: center;
  padding: 0;
}
.line-header .container-fluid .row-fluid div.zone-html {
  width: 223px;
}
@media (max-width: 991px) {
  .line-header .container-fluid .row-fluid div.zone-html {
    width: 100%;
  }
}
.line-header .container-fluid .row-fluid div.zone-html .content {
  display: flex;
}
.line-header .container-fluid .row-fluid div.zone-html .content a {
  position: relative;
}
.line-header .container-fluid .row-fluid div.zone-html .content a:after {
  content: "";
  position: absolute;
  width: 65%;
  height: 70px;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-color: #fff;
  animation-name: logo;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
}
.line-header .container-fluid .row-fluid div.zone-html .content a img {
  padding-top: 12px;
}
@media (max-width: 991px) {
  .line-header .container-fluid .row-fluid div.zone-html .content a img {
    width: 196px !important;
  }
}
.line-header .container-fluid .row-fluid div.zone-html .content .menu-hamburger {
  overflow: hidden;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.5s;
}
@media (min-width: 992px) {
  .line-header .container-fluid .row-fluid div.zone-html .content .menu-hamburger {
    display: none;
  }
}
.line-header .container-fluid .row-fluid div.zone-html .content .menu-hamburger span {
  width: 28px;
  height: 1px;
  background-color: #ED1B2F;
  color: transparent;
  display: block;
  line-height: 0;
  text-indent: -9999px;
  margin-top: 7px;
  transition: 0.5s;
  border-radius: 5px;
}
.line-header .container-fluid .row-fluid div.zone-html .content .menu-hamburger span:nth-child(2) {
  /*width:24px;*/
}
.line-header .container-fluid .row-fluid div.zone-html .content .menu-hamburger:hover, .line-header .container-fluid .row-fluid div.zone-html .content .menu-hamburger:focus {
  cursor: pointer;
}
.line-header .container-fluid .row-fluid div.zone-html .content .menu-hamburger:hover span, .line-header .container-fluid .row-fluid div.zone-html .content .menu-hamburger:focus span {
  background-color: #3E4E63;
}
.line-header .container-fluid .row-fluid div.zone-header {
  padding: 0;
  width: calc(100% - 223px);
}
@media (max-width: 991px) {
  .line-header .container-fluid .row-fluid div.zone-header {
    display: none;
  }
}
.line-header .container-fluid .row-fluid div.zone-header a {
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}
.line-header .container-fluid .row-fluid div.zone-header a:hover {
  color: #ED1B2F;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom {
  margin-right: 10px;
  font-size: 14px;
  line-height: 30px;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a {
  font-size: 14px;
  line-height: 30px;
  color: #3E4E63;
  margin: 0 14px;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a:hover {
  color: #ED1B2F;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.search-header {
  position: relative;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.search-header:after {
  content: "";
  position: absolute;
  background-color: #C0C1CC;
  width: 1px;
  height: 20px;
  right: -15px;
  top: -2px;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.search-header img {
  margin-top: -2px;
  filter: saturate(0);
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.search-header:hover img {
  filter: saturate(1);
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger {
  overflow: hidden;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.5s;
}
@media (min-width: 992px) {
  .line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger {
    display: none;
  }
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger span {
  width: 24px;
  height: 1px;
  background-color: #ED1B2F;
  color: transparent;
  display: block;
  line-height: 0;
  text-indent: -9999px;
  margin-top: 5px;
  transition: 0.5s;
  border-radius: 5px;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger span:nth-child(2) {
  /*width:24px;*/
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger:hover, .line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger:focus {
  cursor: pointer;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger:hover span, .line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger:focus span {
  background-color: #3E4E63;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login {
  margin-left: 0;
  padding-bottom: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: none !important;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login {
    display: none;
  }
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login .member-greeting {
  display: none !important;
  font-size: 14px !important;
  line-height: 30px !important;
  color: #3E4E63 !important;
  font-weight: 400 !important;
  text-transform: none !important;
  color: #3b4180 !important;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a {
  font-size: 14px;
  line-height: 30px;
  color: #3E4E63;
  font-weight: 400;
  vertical-align: text-bottom;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a:hover {
  color: #3E4E63;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn {
  background-color: #fff !important;
  color: #29292A !important;
  transition: all 150ms !important;
  border: 1px solid #ED1B2F !important;
  padding: 0 10px !important;
  border-radius: 50px !important;
  line-height: 28px !important;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:hover, .line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:active, .line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:focus {
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  color: #fff !important;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-logout {
  background-color: #fff !important;
  color: #29292A !important;
  transition: all 150ms !important;
  border: 1px solid #ED1B2F !important;
  padding: 0 10px !important;
  border-radius: 50px !important;
  line-height: 28px !important;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-logout:hover, .line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-logout:active, .line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-logout:focus {
  background-color: #ED1B2F !important;
  border: 1px solid #ED1B2F !important;
  color: #fff !important;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register {
  font-family: "PPObjectSans-Regular", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  border: none;
  min-width: 0;
  background-color: transparent;
  color: #29292A;
  transition: all 150ms;
  border: 1px solid #ED1B2F;
  padding: 15px 35px;
  border-radius: 50px;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
  opacity: 0;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:hover, .line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:active, .line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:focus {
  text-decoration: none;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
  animation-name: button_load;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register {
    white-space: normal !important;
  }
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:hover, .line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:active, .line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:focus {
  background-color: #ED1B2F;
  border: 1px solid #ED1B2F;
  color: #fff;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login .separator {
  height: 4px;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-language a {
  font-size: 14px;
  line-height: 30px;
  color: #3E4E63;
}
.line-header .container-fluid .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-language a:hover {
  color: #ED1B2F;
}

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

.line-footer-social {
  padding-top: 82px;
  padding-bottom: 52px;
  position: relative;
}
.line-footer-social:before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  background-color: #F2F2F5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: 0 30px 0 30px;
}
@media (max-width: 767px) {
  .line-footer-social:before {
    margin: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .line-footer-social .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1092px) {
  .line-footer-social .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 868px) {
  .line-footer-social .container {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 767px) {
  .line-footer-social .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .line-footer-social {
    padding-top: 50px;
  }
}
.line-footer-social.top {
  margin-top: 35px;
}
.line-footer-social .container > .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .line-footer-social .container > .row {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .line-footer-social .container > .row > div:nth-child(1) {
    width: 100%;
    padding-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .line-footer-social .container > .row > div:nth-child(1) img {
    width: 243px !important;
  }
}
.line-footer-social .container > .row > div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 767px) {
  .line-footer-social .container > .row > div:nth-child(2) {
    width: 100%;
    justify-content: center;
  }
}
.line-footer-social .container > .row > div:nth-child(2) .content {
  display: flex;
}
@media (max-width: 767px) {
  .line-footer-social .container > .row > div .content {
    text-align: center;
  }
}

.line-footer-newsletter {
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.line-footer-newsletter:after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #C0C1CC;
  top: 0;
  left: 0;
  right: 0;
}
.line-footer-newsletter:before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  background-color: #F2F2F5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: 0 30px 0 30px;
}
@media (max-width: 767px) {
  .line-footer-newsletter:before {
    margin: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .line-footer-newsletter .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1092px) {
  .line-footer-newsletter .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 868px) {
  .line-footer-newsletter .container {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 767px) {
  .line-footer-newsletter .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .line-footer-newsletter {
    padding-top: 35px;
    padding-bottom: 30px;
  }
}
.line-footer-newsletter .container .row > div .content {
  display: flex;
  align-items: center;
  gap: 52px;
}
@media (max-width: 1199px) {
  .line-footer-newsletter .container .row > div .content {
    gap: 32px;
  }
}
@media (max-width: 991px) {
  .line-footer-newsletter .container .row > div .content {
    gap: 5px;
    flex-direction: column;
    text-align: center !important;
  }
}
.line-footer-newsletter .container .row > div .content h2 {
  margin-bottom: 0;
}
.line-footer-newsletter .container .row > div .content p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .line-footer-newsletter .container .row > div:nth-child(1) {
    padding-bottom: 25px;
  }
}
.line-footer-newsletter .container .row > div:nth-child(1) .content h2 {
  flex: 1;
}
.line-footer-newsletter .container .row > div:nth-child(2) .content {
  text-align: end;
}
.line-footer-newsletter .container .row > div:nth-child(2) .content p {
  flex: 1;
}

.line-footer-menu-big {
  padding-top: 18px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.line-footer-menu-big:after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #C0C1CC;
  top: 0;
  left: 0;
  right: 0;
}
.line-footer-menu-big:before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  background-color: #F2F2F5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: 0 30px 0 30px;
}
@media (max-width: 767px) {
  .line-footer-menu-big:before {
    margin: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .line-footer-menu-big .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1092px) {
  .line-footer-menu-big .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 868px) {
  .line-footer-menu-big .container {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 767px) {
  .line-footer-menu-big .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .line-footer-menu-big .content {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-footer-menu-big .content p {
  margin-bottom: 14px;
}
.line-footer-menu-big .content p a {
  font-size: 28px;
  line-height: 40px;
  color: #ED1B2F !important;
  margin-left: 25px;
  margin-right: 25px;
}
.line-footer-menu-big .content p a:hover, .line-footer-menu-big .content p a:focus, .line-footer-menu-big .content p a:focus {
  color: #29292A !important;
  text-decoration: none !important;
}
.line-footer-menu-big .content p a:first-child {
  margin-left: 0;
}
@media (max-width: 575px) {
  .line-footer-menu-big .content p a:nth-child(3) {
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .line-footer-menu-big .content p a:nth-child(5) {
    margin-left: 0;
  }
}
.line-footer-menu-big .content p a:last-child {
  margin-right: 0;
}
.line-footer-menu-big .content p span {
  position: relative;
  top: -3px;
  font-size: 20px;
}
@media (max-width: 575px) {
  .line-footer-menu-big .content p span:nth-of-type(2) {
    display: none;
  }
}

.line-footer-menu-small {
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.line-footer-menu-small:after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #C0C1CC;
  top: 0;
  left: 0;
  right: 0;
}
.line-footer-menu-small:before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  background-color: #F2F2F5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: 0 30px 0 30px;
}
@media (max-width: 767px) {
  .line-footer-menu-small:before {
    margin: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .line-footer-menu-small .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1092px) {
  .line-footer-menu-small .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 868px) {
  .line-footer-menu-small .container {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 767px) {
  .line-footer-menu-small .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.line-footer-menu-small p {
  margin-bottom: 16px;
  line-height: 26px;
}
.line-footer-menu-small p strong {
  margin-right: 15px;
  font-family: "PPObjectSans-Bold", sans-serif;
}
.line-footer-menu-small p a {
  margin-right: 15px;
  color: #29292A !important;
}
.line-footer-menu-small p a:hover, .line-footer-menu-small p a:focus, .line-footer-menu-small p a:focus {
  color: #ED1B2F !important;
  text-decoration: none !important;
}

.line-footer-copyright {
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.line-footer-copyright:after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #C0C1CC;
  top: 0;
  left: 0;
  right: 0;
}
.line-footer-copyright:before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  background-color: #F2F2F5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: 0 30px 0 30px;
}
@media (max-width: 767px) {
  .line-footer-copyright:before {
    margin: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .line-footer-copyright .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1092px) {
  .line-footer-copyright .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 868px) {
  .line-footer-copyright .container {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 767px) {
  .line-footer-copyright .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .line-footer-copyright {
    padding-top: 16px;
    padding-bottom: 10px;
  }
  .line-footer-copyright:after {
    top: 88px;
  }
}
@media (max-width: 767px) {
  .line-footer-copyright .container > .row > div .content {
    text-align: center;
  }
}
.line-footer-copyright .container > .row > div .content p {
  font-size: 11px;
  line-height: 14px;
}
@media (max-width: 767px) {
  .line-footer-copyright .container > .row > div .content p {
    text-align: center !important;
  }
}
.line-footer-copyright .container > .row > div .content p a {
  color: #ED1B2F !important;
}
.line-footer-copyright .container > .row > div .content p a:hover, .line-footer-copyright .container > .row > div .content p a:focus, .line-footer-copyright .container > .row > div .content p a:focus {
  color: #ED1B2F !important;
  text-decoration: underline;
}
.line-footer-copyright .container > .row > div .content p br {
  display: block !important;
}
.line-footer-copyright .container > .row > div:nth-child(1) {
  width: 35%;
}
@media (max-width: 1199px) {
  .line-footer-copyright .container > .row > div:nth-child(1) {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .line-footer-copyright .container > .row > div:nth-child(1) {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .line-footer-copyright .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-footer-copyright .container > .row > div:nth-child(2) {
  width: 65%;
}
@media (max-width: 1199px) {
  .line-footer-copyright .container > .row > div:nth-child(2) {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .line-footer-copyright .container > .row > div:nth-child(2) {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .line-footer-copyright .container > .row > div:nth-child(2) {
    padding-top: 60px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-footer-copyright .container > .row > div:nth-child(2) .content {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .line-menu-container .container-fluid {
    position: absolute;
    width: 100%;
    top: 48px;
    left: 0;
    right: 0;
  }
  .line-menu-container .container-fluid > .row > div.zone-html {
    display: none;
  }
  .line-menu-container .container-fluid > .row > div.zone-menu {
    width: 100%;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked {
    float: right;
    margin: 0;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked li {
    margin-top: 0;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked li.active > a {
    color: #ED1B2F;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked li a.child-link {
    flex: 1;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked li a {
    font-size: 16px;
    color: #29292A;
    transition: all 0.3s;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked li a:hover, .line-menu-container .container-fluid > .row > div ul.nav-stacked li a:focus, .line-menu-container .container-fluid > .row > div ul.nav-stacked li a:active {
    background-color: transparent;
    color: #ED1B2F;
    transition: all 0.3s;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked li ul.dropdown-menu {
    transform: translate(-70%, -50px);
    animation-name: submenu;
    animation-fill-mode: forwards;
    animation-duration: 0.2s;
    animation-delay: 0s;
    /*
    max-width: 300px;
    */
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked li:hover, .line-menu-container .container-fluid > .row > div ul.nav-stacked li:focus, .line-menu-container .container-fluid > .row > div ul.nav-stacked li:active {
    background-color: transparent;
    color: #ED1B2F;
    transition: all 0.3s;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked li[rel=data-menu-81416] a {
    position: relative;
    line-height: 0;
    font-size: 0;
    color: transparent;
    padding-right: 16px;
    transition: all 0.3s;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked li[rel=data-menu-81416] a:before {
    content: "";
    display: block;
    background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-home-red.svg");
    width: 16px;
    height: 16px;
    right: 0;
    top: 0;
    filter: saturate(0);
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked li[rel=data-menu-81416] a:after {
    content: "";
    position: absolute;
    background-color: #C0C1CC;
    width: 1px;
    height: 20px;
    right: 0;
    top: 8px;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked li[rel=data-menu-81416] a:hover:before {
    filter: saturate(1);
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked > li {
    position: relative;
    z-index: 9999;
    float: left;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked > li > a {
    padding-left: 12px;
    padding-right: 12px;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked > li > a.dropdown-toggle {
    display: none;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked > li:last-child > ul.dropdown-menu-level-2 {
    left: auto;
    right: -5px;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked > li > ul.dropdown-menu-level-2 > li > a {
    font-size: 14px;
  }
  .line-menu-container .container-fluid > .row > div ul.nav-stacked > li > ul.dropdown-menu-level-2 > li > a.active {
    color: #ED1B2F;
  }
}
@media (max-width: 991px) {
  .line-menu-container {
    padding-top: 30px;
    z-index: 10000;
    position: fixed;
    width: 490px;
    height: 100%;
    top: 0;
    bottom: 0;
    background-color: #F2F2F5;
    right: -110vw;
    transition: 1.5s right cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-box-shadow: 5px 5px 205px 5px #29292A;
    box-shadow: 5px 5px 205px 5px #29292A;
  }
  .line-menu-container.opened {
    right: 0;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .line-menu-container .container-fluid {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .line-menu-container .container-fluid > .row {
    display: flex;
    flex-direction: column;
    margin: 0 5px 0 15px;
  }
  .line-menu-container .container-fluid > .row > div {
    width: 100%;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) {
    padding-bottom: 20px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger {
    overflow: hidden;
    width: 40px;
    height: 40px;
    margin-left: auto;
    margin-right: 5px;
    margin-top: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger span {
    width: 26px;
    height: 1px;
    background-color: #ED1B2F;
    color: transparent;
    display: block;
    line-height: 0;
    text-indent: -9999px;
    text-align: left;
    margin-top: -1px;
    transition: 0.5s;
    border-radius: 5px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger span:nth-child(1) {
    transform: rotate(45deg);
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger span:nth-child(2) {
    transform: rotate(315deg);
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger:hover, .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger:focus {
    cursor: pointer;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger:hover span, .line-menu-container .container-fluid > .row > div:nth-child(1) .menu-hamburger:focus span {
    background-color: #29292A;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    display: flex;
    padding-bottom: 20px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items li {
    margin-bottom: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items li a {
    color: #ED1B2F;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items li a.active {
    color: #ED1B2F !important;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items li:hover, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items li:focus {
    color: #29292A;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items li .dropdown-backdrop {
    position: relative;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li {
    color: #ED1B2F;
    font-size: 19px;
    line-height: 21px;
    font-weight: 400;
    display: inline-block;
    width: 100%;
    z-index: 99;
    margin-left: 0 !important;
    border-bottom: 1px solid #C0C1CC;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:first-child {
    width: 190px;
    height: auto;
    margin-top: -65px;
    margin-bottom: 15px;
    border-bottom: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:first-child a {
    background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/logo-goodman.svg") no-repeat;
    background-position: left top;
    background-size: 190px 50px;
    width: 190px;
    height: auto;
    line-height: 0;
    text-indent: -9999px;
    padding: 0;
    margin: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:hover, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:focus, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.active {
    cursor: pointer;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:hover > a, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:focus > a, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.active > a {
    color: #29292A;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:hover > a:not(.dropdown-toggle), .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li:focus > a:not(.dropdown-toggle), .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.active > a:not(.dropdown-toggle) {
    /*background-color: $secondary;*/
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > a {
    padding: 17px 15px 17px 0;
    height: 57px !important;
    width: 100%;
    margin-left: 0;
    background-color: transparent;
    border-radius: 4px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > a.dropdown-toggle {
    display: block;
    text-align: right;
    margin-top: -57px;
    height: 57px !important;
    padding: 0 !important;
    margin-left: 0;
    width: 100%;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > a.dropdown-toggle .caret {
    content: "";
    width: 17px;
    height: 17px;
    margin-top: 20px;
    margin-right: 0px;
    right: 10px !important;
    top: 17px !important;
    position: initial !important;
    display: block;
    float: right;
    background-image: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-submenu-more.svg");
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    transform: rotate(-90deg);
    transition: all 0.5s;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.open > .dropdown-toggle .caret, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.active > .dropdown-toggle .caret {
    background-image: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-submenu-less.svg");
    transform: rotate(0);
    transition: all 0.5s;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.open > .dropdown-menu, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li.active > .dropdown-menu {
    max-height: 800px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu {
    position: relative;
    z-index: 1000;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: max-height 1000ms;
    background-color: transparent !important;
    max-width: 100%;
    display: flex !important;
    flex-wrap: wrap;
    height: auto;
    max-height: 0;
    height: auto;
    margin-bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li {
    padding: 0 20px 0 30px;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: right;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:first-child {
    margin-top: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:last-child {
    margin-bottom: 30px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:hover, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:focus {
    background-color: transparent !important;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > a {
    padding: 5px 0 5px 0;
    /*height: 29px!important;*/
    width: 100%;
    color: #29292A;
    margin-left: 0;
    background-color: transparent;
    border-radius: 4px;
    white-space: normal;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > a.dropdown-toggle {
    position: absolute;
    display: block;
    text-align: right;
    height: 26px !important;
    padding: 0 !important;
    margin-left: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > a.dropdown-toggle .caret {
    content: "";
    width: 7px;
    height: 8px;
    margin-top: 9px;
    margin-right: 15px;
    right: 10px !important;
    top: 17px !important;
    position: initial !important;
    display: block;
    float: right;
    background-image: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/AIDQ/_Assets/menu-caret.svg");
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    transition: all 0.5s;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:hover, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:focus, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.active {
    cursor: pointer;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:hover > a, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:focus > a, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.active > a {
    color: #fff;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:hover > a:not(.dropdown-toggle), .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li:focus > a:not(.dropdown-toggle), .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.active > a:not(.dropdown-toggle) {
    color: #ED1B2F;
    text-decoration: none;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.open > .dropdown-toggle .caret, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.active > .dropdown-toggle .caret {
    transform: rotate(-90deg);
    transition: all 0.5s;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.open > .dropdown-menu, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li.active > .dropdown-menu {
    max-height: 800px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu {
    position: relative;
    z-index: 1000;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: max-height 1000ms;
    background-color: transparent !important;
    max-width: 100%;
    display: flex !important;
    flex-wrap: wrap;
    height: auto;
    max-height: 0;
    height: auto;
    /*display:block!important;*/
    margin-bottom: 0;
    top: 0;
    left: 0;
    padding: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 0 20px 0 15px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li:first-child {
    margin-top: 10px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li:last-child {
    margin-bottom: 15px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li:hover, .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li:focus {
    background-color: transparent !important;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li > a {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 200;
    padding: 0;
    width: 100%;
    white-space: inherit;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li > a:hover {
    color: #ED1B2F;
    text-decoration: none;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(2) ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li > a.child-link {
    width: 100%;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) {
    padding-top: 30px;
    padding-bottom: 100px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 0 15px 0 0;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content {
    justify-content: left;
    flex-flow: wrap;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content a {
    font-size: 19px;
    line-height: 21px;
    color: #ED1B2F !important;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header {
    width: 100%;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row wrap;
    gap: 4px 0;
    padding: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom {
    margin-right: 10px;
    font-size: 14px;
    line-height: 30px;
    color: #ED1B2F;
    width: 100%;
    text-align: left;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a {
    font-size: 14px;
    line-height: 30px;
    color: #3E4E63;
    margin: 0 14px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a:nth-child(2) {
    margin-left: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a:hover {
    color: #29292A !important;
    text-decoration: none !important;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a.search-header {
    display: none;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login {
    margin-left: 0;
    padding-bottom: 0;
    min-height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-transform: none !important;
    flex-direction: row-reverse;
    position: relative !important;
    background-color: transparent !important;
    z-index: 1 !important;
    box-shadow: none !important;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login {
    display: none;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login .member-greeting {
    display: none !important;
    font-size: 14px !important;
    line-height: 30px !important;
    color: #3E4E63 !important;
    font-weight: 400 !important;
    text-transform: none !important;
    color: #3b4180 !important;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a {
    font-size: 14px;
    line-height: 30px;
    color: #3E4E63;
    font-weight: 400;
    vertical-align: text-bottom;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a:hover {
    color: #29292A !important;
    text-decoration: none !important;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn {
    background-color: transparent !important;
    color: #ED1B2F !important;
    transition: all 150ms !important;
    border: 1px solid #ED1B2F !important;
    padding: 0 10px !important;
    border-radius: 50px !important;
    line-height: 28px !important;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:hover, .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:active, .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:focus {
    background-color: #ED1B2F !important;
    border: 1px solid #ED1B2F !important;
    color: #fff !important;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register {
    font-family: "PPObjectSans-Regular", sans-serif;
    text-transform: inherit;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    border: none;
    min-width: 0;
    background-color: transparent;
    color: #29292A;
    transition: all 150ms;
    border: 1px solid #ED1B2F;
    padding: 15px 35px;
    border-radius: 50px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.zone-member .btn-primary):not(.zone-member .btn-link):not(.mgo-btn-delete) {
    opacity: 0;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:hover, .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:active, .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:focus {
    text-decoration: none;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:not(.btn-arrow-big-down):not(.btn-huge-arrow-top):not(.bt_publications):not(.btn-action):not(.mgo-btn-delete).animate {
    animation-name: button_load;
    animation-fill-mode: forwards;
    animation-duration: 1.5s;
    animation-delay: 0.2s;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register {
    white-space: normal !important;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:hover, .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:active, .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:focus {
    background-color: #ED1B2F;
    border: 1px solid #ED1B2F;
    color: #fff;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-login .separator {
    height: 4px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-language a {
    font-size: 14px;
    line-height: 30px;
    color: #3E4E63;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-header .mod-header.mod-header-wrapper .header-ext-language a:hover {
    color: #29292A !important;
    text-decoration: none !important;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-social {
    width: 100%;
    padding-top: 15px;
  }
  .line-menu-container .container-fluid > .row > div:nth-child(3) .content .menu-social .social {
    justify-content: flex-end;
  }
  .overflowhidden .line-menu-container:not(.sticked) .navbar-header {
    /*height: 110px;*/
  }
  .overflowhidden .line-menu-container > .container-fluid {
    /* height: 110px; */
    border-bottom: none;
  }
  .overflowhidden .line-menu-container > .container-fluid .zone-image a {
    margin-left: 5px;
  }
  .line-bg-menu-open {
    /*
    overflow: hidden;
    background-color: $primary;
    position:absolute;
    width: 100%;
    height: 100%;
    padding:0!important;
    margin:0!important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: all 1s;
    */
  }
  body.overflowhidden .line-bg-menu-open {
    /*
    opacity: .4;
    pointer-events:fill;
    cursor: pointer;
    */
  }
}
@media (max-width: 767px) {
  .line-menu-container {
    right: -200vw;
  }
}
@media (max-width: 575px) {
  .line-menu-container {
    width: 100%;
  }
}
/**
 * ----------------------------------------
 * animation Sticky menu
 * ----------------------------------------
 */
@-webkit-keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
@keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
/* CONTAINER */
.line-header:not(.sticked, .menuopened) {
  transition: top 250ms;
}
.line-header:not(.sticked, .menuopened) > .container-fluid {
  top: -100px;
  /*position: static;*/
  transition: top 250ms;
}
.line-header.sticked {
  -webkit-animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  z-index: 9999;
  height: 84px;
}
.line-header.sticked > .container-fluid > .row .zone-html img {
  width: 160px !important;
}
.line-header.sticked > .container-fluid > .row .zone-header {
  display: none;
}
.line-header.sticked:not(.menuopened) {
  position: sticky;
  top: 0;
}
/* CONTAINER */
.line-menu-container:not(.sticked, .menuopened) {
  transition: top 1.5s right cubic-bezier(0.77, 0, 0.175, 1);
}
.line-menu-container:not(.sticked, .menuopened) > .container {
  top: -100px;
  transition: top 250ms;
}
.line-menu-container.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;
  z-index: 9999;
}
.line-menu-container.sticked > .container-fluid {
  top: 30px;
}
@media (min-width: 992px) {
  .line-menu-container.sticked:not(.menuopened) {
    position: sticky;
    top: 0;
    padding-top: 80px;
    width: calc(100% - 223px);
    margin-left: auto;
  }
}
/* OPTION - Hide munu item when logged
body {
	&.member--isConnected {
		.nav.navbar-nav {
			> li {
				&[rel=data-menu-67910] {
					display: none!important;
				}
			}
		}
	}
}
*/
/* Menu & Footer social icons*/
ul.social {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}
ul.social li {
  width: 50px;
  display: flex;
  justify-content: end;
}
ul.social li a {
  text-decoration: none !important;
  background-size: 90%;
}
ul.social li a.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%23ED1B2F'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  width: 21px;
  height: 20px;
  display: block;
}
ul.social li a.linkedin:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.027' height='19.859' viewBox='0 0 21.027 19.859'%3E%3Cpath id='Color_Overlay' data-name='Color Overlay' d='M16.462,19.74V12.562c0-1.795-.6-2.991-2.283-2.991A2.494,2.494,0,0,0,11.9,11.246a2.941,2.941,0,0,0-.121,1.077v7.537H7.33V6.341h4.445V8.255A4.459,4.459,0,0,1,15.86,5.982c3,0,5.166,1.914,5.166,6.1v7.776Zm-16.1.12V6.341H4.807V19.859ZM0,2.273A2.276,2.276,0,0,1,2.523,0,2.275,2.275,0,0,1,5.046,2.273,2.341,2.341,0,0,1,2.523,4.546,2.416,2.416,0,0,1,0,2.273Z' fill='%233E4E63'/%3E%3C/svg%3E%0A");
}
ul.social li a.facebook {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='11.451' height='22.052' viewBox='0 0 11.451 22.052'%3e%3cpath id='Path_3552' data-name='Path 3552' d='M691.142%2c422.661h-2.075c-1.628%2c0-1.944.773-1.944%2c1.907v2.5h3.883l-.506%2c3.921h-3.377v10.059h-4.048V430.994h-3.385v-3.921h3.385v-2.89c0-3.356%2c2.049-5.182%2c5.041-5.182a27.655%2c27.655%2c0%2c0%2c1%2c3.025.154Z' transform='translate(-679.691 -419)' fill='%23ED1B2F'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 11px;
  height: 19px;
  display: block;
  position: relative;
  left: 0;
}
ul.social li a.facebook:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='11.451' height='22.052' viewBox='0 0 11.451 22.052'%3e%3cpath id='Path_3552' data-name='Path 3552' d='M691.142%2c422.661h-2.075c-1.628%2c0-1.944.773-1.944%2c1.907v2.5h3.883l-.506%2c3.921h-3.377v10.059h-4.048V430.994h-3.385v-3.921h3.385v-2.89c0-3.356%2c2.049-5.182%2c5.041-5.182a27.655%2c27.655%2c0%2c0%2c1%2c3.025.154Z' transform='translate(-679.691 -419)' fill='%233E4E63'/%3e%3c/svg%3e");
}
ul.social li a.youtube {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%23ED1B2F'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 24px;
  height: 17px;
  display: block;
  position: relative;
  top: 2px;
}
ul.social li a.youtube:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='23.881' height='16.718' viewBox='0 0 23.881 16.718'%3e%3cpath id='Path_3583' data-name='Path 3583' d='M107.932%2c87.649a2.991%2c2.991%2c0%2c0%2c0-2.111-2.111c-1.862-.5-9.33-.5-9.33-.5s-7.468%2c0-9.33.5a2.991%2c2.991%2c0%2c0%2c0-2.111%2c2.111%2c33.366%2c33.366%2c0%2c0%2c0%2c0%2c11.5%2c2.991%2c2.991%2c0%2c0%2c0%2c2.111%2c2.111c1.862.5%2c9.33.5%2c9.33.5s7.468%2c0%2c9.33-.5a2.991%2c2.991%2c0%2c0%2c0%2c2.111-2.111%2c33.365%2c33.365%2c0%2c0%2c0%2c0-11.5ZM94.1%2c96.98V89.815l6.2%2c3.583Z' transform='translate(-84.55 -85.039)' fill='%233E4E63'/%3e%3c/svg%3e");
}
ul.social li a.twitter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.281' height='18.683' viewBox='0 0 18.281 18.683'%3E%3Cpath id='Trac%C3%A9_15222' data-name='Trac%C3%A9 15222' d='M8.671 10.479h0L7.948 9.444 2.194 1.214H4.671L9.314 7.856l.723 1.034 6.036 8.634H13.6ZM16.073 0 10.163 6.869 5.444 0H0L7.137 10.387 0 18.683H1.613l6.24-7.254 4.984 7.254h5.444l-7.4-10.772h0L17.685 0Z' fill='%23ed1b2f'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 18px;
  height: 19px;
  display: block;
  position: relative;
  top: 2px;
}
ul.social li a.twitter:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.281' height='18.683' viewBox='0 0 18.281 18.683'%3E%3Cpath id='Trac%C3%A9_15222' data-name='Trac%C3%A9 15222' d='M8.671 10.479h0L7.948 9.444 2.194 1.214H4.671L9.314 7.856l.723 1.034 6.036 8.634H13.6ZM16.073 0 10.163 6.869 5.444 0H0L7.137 10.387 0 18.683H1.613l6.24-7.254 4.984 7.254h5.444l-7.4-10.772h0L17.685 0Z' fill='%233E4E63'/%3E%3C/svg%3E");
}
ul.social li a.instagram {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.518' height='18.653' viewBox='0 0 19.518 18.653'%3E%3Cpath id='Tracé_14959' data-name='Tracé 14959' d='M5.591,9.077a3.918,3.918,0,1,1,3.918,3.918A3.922,3.922,0,0,1,5.591,9.077m-1.3,0A5.221,5.221,0,1,0,9.509,3.855,5.227,5.227,0,0,0,4.288,9.077m9.279-5.061A1.083,1.083,0,1,0,14.65,2.932a1.083,1.083,0,0,0-1.083,1.084M1.3,12.287V5.866A4.567,4.567,0,0,1,5.866,1.3h7.287a4.567,4.567,0,0,1,4.562,4.562v6.422a4.567,4.567,0,0,1-4.562,4.562H5.866A4.567,4.567,0,0,1,1.3,12.287M5.866,0A5.872,5.872,0,0,0,0,5.866v6.422a5.872,5.872,0,0,0,5.866,5.866h7.287a5.872,5.872,0,0,0,5.865-5.866V5.866A5.872,5.872,0,0,0,13.153,0Z' transform='translate(0.25 0.25)' fill='%23ED1B2F' stroke='%23ED1B2F' stroke-width='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 22px;
  height: 20px;
  /*width: 21px;
  height: 17px;*/
  display: block;
  position: relative;
  top: 1px;
  /*top: 2px;*/
}
ul.social li a.instagram:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.518' height='18.653' viewBox='0 0 19.518 18.653'%3E%3Cpath id='Tracé_14959' data-name='Tracé 14959' d='M5.591,9.077a3.918,3.918,0,1,1,3.918,3.918A3.922,3.922,0,0,1,5.591,9.077m-1.3,0A5.221,5.221,0,1,0,9.509,3.855,5.227,5.227,0,0,0,4.288,9.077m9.279-5.061A1.083,1.083,0,1,0,14.65,2.932a1.083,1.083,0,0,0-1.083,1.084M1.3,12.287V5.866A4.567,4.567,0,0,1,5.866,1.3h7.287a4.567,4.567,0,0,1,4.562,4.562v6.422a4.567,4.567,0,0,1-4.562,4.562H5.866A4.567,4.567,0,0,1,1.3,12.287M5.866,0A5.872,5.872,0,0,0,0,5.866v6.422a5.872,5.872,0,0,0,5.866,5.866h7.287a5.872,5.872,0,0,0,5.865-5.866V5.866A5.872,5.872,0,0,0,13.153,0Z' transform='translate(0.25 0.25)' fill='%233E4E63' stroke='%233E4E63' stroke-width='0.5'/%3E%3C/svg%3E");
}
ul.social li a.researchgate {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20.746' height='20.746' viewBox='0 0 20.746 20.746'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 { fill: url(%23pattern); } %3C/style%3E%3Cpattern id='pattern' preserveAspectRatio='xMidYMid slice' width='100%25' height='100%25' viewBox='0 0 300 300'%3E%3Cimage width='300' height='300' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsCAYAAAB5fY51AAAABHNCSVQICAgIfAhkiAAAEyRJREFUeF7tnVtiYzcOBd3ryCKy/0VlDUmUthw/JJE8FyDxqPk1IRF1gOorudPz668//nzjfxCAAAQyEPiFsDLExB0hAIEbAYTFHEAAAmkIIKw0UXFRCEAAYTEDEIBAGgIIK01UXBQCEEBYzAAEIJCGAMJKExUXhQAEEBYzAAEIpCGAsNJExUUhAAGExQxAAAJpCCCsNFFxUQhAAGExAxCAQBoCCCtNVFwUAhBAWMwABCCQhgDCShMVF4UABBAWMwABCKQhgLDSRMVFixL4e7GvX4vnSx1HWKXipJnABFbFtNJKG4khrJWx4CwE1gh4SurVTcoKDGGtDSCnITAicEpSj+5VTlwIazR+/BwCcwQiier7jcuIC2HNDSOnIPCMQGRRlRMXwmIRIaATyCSrz12mfeJCWPqwUtmXQFZRpZcWwuq7dHSuEaggq3vn6Z60EJY2tFT1JFBJVimlhbB6Lh5drxOoKKt00kJY64NLRT8ClWWVSloIq9/y0fEagQ6ySiMthLU2vJzuRaCTrFJIC2H1WkC6XSPQUVg3QmF/e4iw1gaY030I7JCVIoYd9worLYTVZwHpdJ6AtxQUUT26vec9re44T33iJMKagMSRdgS8ROAlgWz3lQcKYcnoKCxKIOvye9zbS7Dy6CAsGR2FRQlkX3zr+4eSFsIqunW0JRGosuyWfSAsaZQogoA/gUqLXqmXj+R5wvJfAt4hBwHLBY/w1wIs+wnzlIWwciwTt/QnUHHBrXpCWP7zxztAYIlAueV+7/5KX2FEdU+SJ6ylmeZwUQJXlvo7kmhLrvQWrQe+wyq6eLSlEVCW+tE7RV30mf6i3v0LZ56wtAGnqhaBmYWe6Tjy0j/rMfKdfzBHWDNjyJnqBCyEFX3xP/cY/a5P5w1hVV9F+hsRsJBVhL/GMOqzxM8RVokYaeICAYR1Ad7uUoS1mzjvF42AhbDSfsSKFsboPghrRIifVyeAsBIljLAShcVVXQggLBesPi+KsHy48qp5CCCsPFm9IaxEYXFVFwJXhcX3Vy6xPH5RhLURNm8VjsBVWd0aQlgbY0VYG2HzVuEIIKxwkby+EMJKFhjXNSWAsExx+r8YwvJnzDvEJYCw4mbz8GYIK1lgXNeUAMIyxen/YgjLnzHvEJcAwoqbDU9YybLhuv4EEJY/Y9N34AnLFCcvlowAwkoWGMJKFhjXNSWAsExx+r8YwvJnzDvEJYCw4mbDd1jJsuG6/gQQlj9j03fgCcsUJy+WjADCShYYwkoWGNc1JYCwTHH6vxjC8mfMO8QlgLDiZsN3WMmy4br+BKILy+J+1hSP/usUPGFZx8nrZSJgIQTPBba4n3Uenv0O74qwhog4UJiAhRA8F9jiftbxefY7vCvCGiLiQGECFkLwXGCL+1nH59nv8K4Ia4iIA4UJWAjBc4Et7mcdn2e/w7sirCEiDhQmYCEEzwW2uJ91fJ79Du+KsIaIOFCYgIUQPBfY4n7W8Xn2O7wrwhoi4kBhAhZC8Fxgi/tZx+fZ7/CuCGuIiAOFCVgIwXOBLe5nHZ9nv8O7IqwhIg4UJmAhBM8FtrifdXye/Q7virCGiDhQmICFEDwX2OJ+1vF59ju8K8IaIuJAYQIWQvBcYIv7Wcfn2e/wrghriIgDhQlYCMFzgS3uZx2fZ7/DuyKsISIOFCZgIQTPBba4n3V8nv0O77pbWBEDGEIqcuDooAVlaDGPmbim7xdhBd2kTdfKtGweSNIv8CKU9P0irMXEGxzvJLH0C7w4j+n7RViLiTc7Xl1e6Rd4cR7T94uwFhNvfLyivNIv8OI8pu8XYS0mzvG3SuJKv8CL85i+X4S1mDjHvxDILq/0C7w4j+n7RViLiXP8IYGs4kq/wIvzmL5fhLWYOMefEsgorfQLvDiP6ftFWIuJc3xIIJu4ri5xpn6v9noL/2i/u4V1n3YLcMPN4cBRAkcHe6Fzi1ns0uvxPk8J69k8WQzPwqxy1JnA8QGf6M9i5jL0eUNxtdfjfUYT1qP5ugp5YmY54kjg+JAPerOYr+g9Wsjq+MfB/y7w1x9/Os6q+UtbDJf5pXjBKQJRl9pipqL29jmYEn1mExbfgU25IeyhiIttscghnj46PElmFZbVI6662ZEWz2rhVBardZHYWc5RtL6sn65CSDmzsCyHLfvSeQznKpOV89GW20L60XrymInjPWYX1ilpHQ9uwQ4Wy7jwdtNHIzG0YhSpJ2thheitgrBOSCtEeNNq+H3QaikX3/bl8SgcrdhE6cdaViE+Dv53iWS/JXw2/VYDN7uMEQdz9u67Wb26VxSOlkyi9HTnbtVbiL6qCGv3E0SI8GYN9eSc1SBfvMbZ/9Tj0+WteESaDaueeMK6OuUP6i3DGV0v0lCO7vrq5zuZRX/SsmQRZT6seorST5mPhDxhXdFWjO+3Ti+F1XLfk6jUz+lePqa70kfCndIKE+A1T32ptl7Y1atFYGrN4FRPln2c6uHh/CCs1bX6fT5UiFoLD6ssB1251mmuHv3v7sm6h933fzk3CEtZq7rC2vmU+oz86QWxXvhdf8B53HvX3ae3EGFNo/py8PRSabeer/Ia/pkbnGbr2btXb1539rrvzBzwkVCm9LMwXJCGvd1fymsJZq56mq9371b9ZbnnTOZTZ3jCmsL045DVwGnvvq/KeyE6fSy06nVXJiFnvJqwdn0HEzJMJ4/tWpDv1z/N+FTfTjEuvexp9k8vi7CWcvw4HDZQrZ2XVacWNwLjU707xLj0khHYt/gOiyespbmcPnxicSMszYm+p0NxOhiBO09YxuGGDtW415Nfwkfg3ElaEXi/HF8+EmrbHT5Yra1wHw2jcO4grSisEZbD8qYI16Hv3YsbifPu3h3ie/5Ja+ebXXkvnrA0epEWSetAqzqxtJFYn+hfS2q+KhLf4a0R1hDR419WaGXpq04sbLSFOsHAa3CisR32ibCGiBDWNwK7FzbiUu1moE3p66qIXId9IqwhIoSFsJ4OSUZxpRTVPQGEhbBWCZxY0shLdoLHamYf+64WRqlDWFoSkRdI62itaveSZuC9m8lKYhn4TfWDsKYw/ThUZgC09rf/X4Zl4h1JXJm4TY0iwprChLD4HksalBPyKiepz+QRljSHZf+J5FkauxexwhJ6MqvAZ2r2ENYUJp6wHmDyXMDvb1d5IVc4VuYwtYkIawoTwkJY2qBQZUsAYWk82/9J9y+2lScDjfL/VfC+SrBIPcLSgmSBEJY2OVRdIoCwNHwIC2Fpk0PVJQIIS8OHsPYK65YSzLVZLVWFsLQ4WR6EpU0OVZcIICwNH8JCWNrkUHWJAMLS8CGsvcKCtzan5aoQlhYpC4SwtMmh6hIBhKXhQ1gIS5scqi4RQFgaPoSFsLTJoeoSAYSl4UNYCEubHKouEUBYGj6EhbC0yaHqEgGEpeFDWAhLmxyqLhFAWBo+hIWwtMmh6hIBhKXh6y6snf9Swy2h7ry1KS1YhbC0ULsv0E5hdWetTWjRKoSlBdt9iRCWNjdUXSSAsDSACEvjplR1Z60wK1uDsLRouy8RT1ja3FB1kQDC0gB2Fhay0maGKgMCCEuDiLA0bqtVnTmvsmpxHmFpMXdeJJ6wtJmhyoAAwtIgdhUWstLmhSojAghLA4mwNG4rVV0ZrzBqdxZhaZF3XKadT1e3VDoy1qaxURXC0sLuuEw7hdWRrzaJzaoQlhZ4t4XaKSuerrSZbFGFsLSYEZbGbaaqG9sZJpx5J4CwtFHotFQ8XWkzQpUDAYSlQUVYGrdRVSeuIxb8/AEBhKWNRZfF4ulKmw+qnAggLA1sB2EhK202qHIkgLA0uNWFhay0uaDKmQDC0gAjLI3bs6rqPG1pNX41hKWFX3nBeLrSZoKqDQQQlga5qrCQlTYPVG0igLA00BWFtVtWN/IVOWoTRdUUAYQ1henHoUqLdkJUyEqbu/ZVCEsbgSrCQlZa/lQdIoCwNPAVhIWstOypOkgAYWnwMwvrlKjupDOz06aFKjMCCEtDmXHpTouK7620WaPqEwGEpY1DJmFFEBWy0uaMqm8EEJY2EhmEFUVUyEqbMaoeEEBY2lhEFVYkSfGdlTZbVL0ggLC08YgkrIiSQlbaXFE1IICwbEZkh8Aii+k7xR08bJLjVVIRQFip4kpxWWSVIqacl0RYOXOLemtkFTWZIvdCWEWCDNAGsgoQQvUrIKzqCfv3h6j8GfMO7wQQFqNwhQCyukKP2mUCCGsZGQX/EkBUjMERAgjrCPa0b4qo0kZX4+IIq0aO3l0gKm/CvP4UAYQ1hantIUTVNvqYjSOsmLmcvhWiOp0A7/+QAMJiMO4EkBSzEJ4AwgofkdsFEZQbWl7YiwDC8iKb43WRVo6cuOU7AYTFKCAtZiANAYSVJiq3iyIsN7S8sDUBhKUR9VzyE//ulWc/GmGqIPCAAMLSxsJzwRGWlglVDQggLC1kT2HdboS0tFyoKk4AYWkBIyyNG1UQuEQAYWn4vIXFU5aWC1XFCSAsLeAdwkJaWjZUFSaAsLRwEZbGjSoIXCKAsDR8u4TFU5aWD1VFCSAsLViEpXGjCgKXCCAsDd9OYfGUpWVEVUECCEsLtYOwbmR296mlQVUbAghLi/rEIvOXSbWsqCpEAGFpYZ4QFh8NtayoKkQAYWlhdhIWHw21GaHKgQDC0qCeEhZPWVpeVBUhgLC0ILsJi6csbU6oMiaAsDSgJ4V16ikLaWmzQpUhAYSlwTwtrFPSitC3lhhVJQggLC3GCIt74q858JSlzQtVRgQQlgYygrBOPWUhLW1mqDIggLA0iAhL40YVBC4RQFgavijC4ilLy4+qpAQQlhZcJGEhLS1DqhISQFhaaAjrN7doHLQ0qUpDAGFpUUVcVH5rqGVJVSICCEsLC2F95RaRh5YsVaEJICwtnqgLylOWlidVSQggLC2oqMLiC3gtT6qSEEBYWlAI6zG3yFy0pKkKRQBhaXFEX0w+Gmq5UhWcAMLSAoouLD4aarlSFZwAwtICQlivuWXgoyVP1VECCEvDn2UhT300vFHNwkibAKqOEEBYGvYsy4iwtHypCkoAYWnBZBHWye+yeMrSZouqFwQQljYemYSFtLSMqQpIAGFpoSCseW7ZWM13xsntBBCWhjzjEvJ9lpY1VYEIICwtjIzC4qOhljVVgQggLC0MhNWLm9YtVeYEEJaGNKuweMrS8qYqCAGEpQWRWVhIS8ucqgAEEJYWAsLSuN2rsvO71j3VMgGEpaGrsHAnf2t4o16BoTY9VMkEEJaGrsqyIS0tf6oOEUBYGniEpXH7XlWFow0NXmVIAGENET08UGnReMrSZoCqAwQQlga9krBO/9aQ77O0GWxZhbC02BGWxu1VVTWm9oR4xTeEpQ1BxeU6/dGQJy1tFltVISwt7orC4qOhNgtUbSSAsDTYVYWFtLR5oGoTAYSlgUZYGrfZqsp8Zxlw7gEBhKWNRfWF4vssbS6ociaAsDTA1YUV4aMhX8Jrs1m6CmFp8SIsjZtS1YG1wqVlDcLSYu+yRHw01OaDKicCCEsD20VYfDTU5oMqJwLVhLXriaCTsJCW0/LxsusEENY6s45fBu/6g2CURrc/KEY82v0cYWmRd1wcpKXNClWGBBCWBrOjsKJ8NOz4hKtNacEqhKWHirR0dhaVXflbsEv7GghLj67rwkT5aMiTlj67aSsrCWv3InUVVqSPhkgrrXq0iyMsjRuL8va2+w+IV0l1/sNDn+CElQjrWmjdFwVpXZsfqhcJVBHWqcVBWIsD53y8ex7OeM+/PMK6lgELEuujIR/Vr81z+OoKwjr1dHUPF2nFkxbiCq8e7YIIS+P2vQppIS2bSeJVXhLILqzTT1ef4SKtmNLiaauQBLMKK5KokNbXhSCbQoKI1kpGYUVdCL7T+n+6I2fEk3A0Cy3cJ4uwIi/ACHfXBYmeWddcRvMa+ucRhRV90K0C7bAwGbLskIPVzB5/nZPCyjDMJwOqskiZcq7C/OTcur73bmFlGl5X8Isvnn2RsuaenfvimMU/jrDiZ1Tl1/JZpcVvgQPtCMIKFMaLq1T5kz67tKrkkGPqH9wSYeWIrtqiZBVXtRxyTP+nWyKsHJFVXJSM0qqYQ44NeL8lwsoRV+VFySSuyjmk2ASElSKmtw6LkkFcHXIIvREIK3Q8H5frtCiRxdUph5CbgbBCxvLjUh0XJaK4OuYQakOyCSvrwFxdvqx9Ww37VX5W9+iegxVH+XV2C0u+KIUQeCdwSl7IKsAIIqwAIXCFywS8JIakLkdj+wIIy5YnrxabwGexIaPYWT28HcJKGBpXhkBXAgira/L0DYGEBBBWwtC4MgS6EkBYXZOnbwgkJICwEobGlSHQlQDC6po8fUMgIQGElTA0rgyBrgQQVtfk6RsCCQkgrIShcWUIdCWAsLomT98QSEgAYSUMjStDoCsBhNU1efqGQEICCCthaFwZAl0JIKyuydM3BBISQFgJQ+PKEOhKAGF1TZ6+IZCQAMJKGBpXhkBXAgira/L0DYGEBBBWwtC4MgS6EkBYXZOnbwgkJICwEobGlSHQlcA/7D5/zkCgUkAAAAAASUVORK5CYII='/%3E%3C/pattern%3E%3C/defs%3E%3Cpath id='researchGate' data-name='researchGate' class='cls-1' d='M0,0H20.746V20.746H0Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: block;
  position: relative;
  top: 2px;
}
ul.social li a.researchgate:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20.746' height='20.746' viewBox='0 0 20.746 20.746'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 { fill: url(%23pattern); } %3C/style%3E%3Cpattern id='pattern' preserveAspectRatio='xMidYMid slice' width='100%25' height='100%25' viewBox='0 0 300 300'%3E%3Cimage width='300' height='300' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsCAYAAAB5fY51AAAABHNCSVQICAgIfAhkiAAAEyRJREFUeF7tnVtiYzcOBd3ryCKy/0VlDUmUthw/JJE8FyDxqPk1IRF1gOorudPz668//nzjfxCAAAQyEPiFsDLExB0hAIEbAYTFHEAAAmkIIKw0UXFRCEAAYTEDEIBAGgIIK01UXBQCEEBYzAAEIJCGAMJKExUXhQAEEBYzAAEIpCGAsNJExUUhAAGExQxAAAJpCCCsNFFxUQhAAGExAxCAQBoCCCtNVFwUAhBAWMwABCCQhgDCShMVF4UABBAWMwABCKQhgLDSRMVFixL4e7GvX4vnSx1HWKXipJnABFbFtNJKG4khrJWx4CwE1gh4SurVTcoKDGGtDSCnITAicEpSj+5VTlwIazR+/BwCcwQiier7jcuIC2HNDSOnIPCMQGRRlRMXwmIRIaATyCSrz12mfeJCWPqwUtmXQFZRpZcWwuq7dHSuEaggq3vn6Z60EJY2tFT1JFBJVimlhbB6Lh5drxOoKKt00kJY64NLRT8ClWWVSloIq9/y0fEagQ6ySiMthLU2vJzuRaCTrFJIC2H1WkC6XSPQUVg3QmF/e4iw1gaY030I7JCVIoYd9worLYTVZwHpdJ6AtxQUUT26vec9re44T33iJMKagMSRdgS8ROAlgWz3lQcKYcnoKCxKIOvye9zbS7Dy6CAsGR2FRQlkX3zr+4eSFsIqunW0JRGosuyWfSAsaZQogoA/gUqLXqmXj+R5wvJfAt4hBwHLBY/w1wIs+wnzlIWwciwTt/QnUHHBrXpCWP7zxztAYIlAueV+7/5KX2FEdU+SJ6ylmeZwUQJXlvo7kmhLrvQWrQe+wyq6eLSlEVCW+tE7RV30mf6i3v0LZ56wtAGnqhaBmYWe6Tjy0j/rMfKdfzBHWDNjyJnqBCyEFX3xP/cY/a5P5w1hVV9F+hsRsJBVhL/GMOqzxM8RVokYaeICAYR1Ad7uUoS1mzjvF42AhbDSfsSKFsboPghrRIifVyeAsBIljLAShcVVXQggLBesPi+KsHy48qp5CCCsPFm9IaxEYXFVFwJXhcX3Vy6xPH5RhLURNm8VjsBVWd0aQlgbY0VYG2HzVuEIIKxwkby+EMJKFhjXNSWAsExx+r8YwvJnzDvEJYCw4mbz8GYIK1lgXNeUAMIyxen/YgjLnzHvEJcAwoqbDU9YybLhuv4EEJY/Y9N34AnLFCcvlowAwkoWGMJKFhjXNSWAsExx+r8YwvJnzDvEJYCw4mbDd1jJsuG6/gQQlj9j03fgCcsUJy+WjADCShYYwkoWGNc1JYCwTHH6vxjC8mfMO8QlgLDiZsN3WMmy4br+BKILy+J+1hSP/usUPGFZx8nrZSJgIQTPBba4n3Uenv0O74qwhog4UJiAhRA8F9jiftbxefY7vCvCGiLiQGECFkLwXGCL+1nH59nv8K4Ia4iIA4UJWAjBc4Et7mcdn2e/w7sirCEiDhQmYCEEzwW2uJ91fJ79Du+KsIaIOFCYgIUQPBfY4n7W8Xn2O7wrwhoi4kBhAhZC8Fxgi/tZx+fZ7/CuCGuIiAOFCVgIwXOBLe5nHZ9nv8O7IqwhIg4UJmAhBM8FtrifdXye/Q7virCGiDhQmICFEDwX2OJ+1vF59ju8K8IaIuJAYQIWQvBcYIv7Wcfn2e/wrghriIgDhQlYCMFzgS3uZx2fZ7/DuyKsISIOFCZgIQTPBba4n3V8nv0O77pbWBEDGEIqcuDooAVlaDGPmbim7xdhBd2kTdfKtGweSNIv8CKU9P0irMXEGxzvJLH0C7w4j+n7RViLiTc7Xl1e6Rd4cR7T94uwFhNvfLyivNIv8OI8pu8XYS0mzvG3SuJKv8CL85i+X4S1mDjHvxDILq/0C7w4j+n7RViLiXP8IYGs4kq/wIvzmL5fhLWYOMefEsgorfQLvDiP6ftFWIuJc3xIIJu4ri5xpn6v9noL/2i/u4V1n3YLcMPN4cBRAkcHe6Fzi1ns0uvxPk8J69k8WQzPwqxy1JnA8QGf6M9i5jL0eUNxtdfjfUYT1qP5ugp5YmY54kjg+JAPerOYr+g9Wsjq+MfB/y7w1x9/Os6q+UtbDJf5pXjBKQJRl9pipqL29jmYEn1mExbfgU25IeyhiIttscghnj46PElmFZbVI6662ZEWz2rhVBardZHYWc5RtL6sn65CSDmzsCyHLfvSeQznKpOV89GW20L60XrymInjPWYX1ilpHQ9uwQ4Wy7jwdtNHIzG0YhSpJ2thheitgrBOSCtEeNNq+H3QaikX3/bl8SgcrdhE6cdaViE+Dv53iWS/JXw2/VYDN7uMEQdz9u67Wb26VxSOlkyi9HTnbtVbiL6qCGv3E0SI8GYN9eSc1SBfvMbZ/9Tj0+WteESaDaueeMK6OuUP6i3DGV0v0lCO7vrq5zuZRX/SsmQRZT6seorST5mPhDxhXdFWjO+3Ti+F1XLfk6jUz+lePqa70kfCndIKE+A1T32ptl7Y1atFYGrN4FRPln2c6uHh/CCs1bX6fT5UiFoLD6ssB1251mmuHv3v7sm6h933fzk3CEtZq7rC2vmU+oz86QWxXvhdf8B53HvX3ae3EGFNo/py8PRSabeer/Ia/pkbnGbr2btXb1539rrvzBzwkVCm9LMwXJCGvd1fymsJZq56mq9371b9ZbnnTOZTZ3jCmsL045DVwGnvvq/KeyE6fSy06nVXJiFnvJqwdn0HEzJMJ4/tWpDv1z/N+FTfTjEuvexp9k8vi7CWcvw4HDZQrZ2XVacWNwLjU707xLj0khHYt/gOiyespbmcPnxicSMszYm+p0NxOhiBO09YxuGGDtW415Nfwkfg3ElaEXi/HF8+EmrbHT5Yra1wHw2jcO4grSisEZbD8qYI16Hv3YsbifPu3h3ie/5Ja+ebXXkvnrA0epEWSetAqzqxtJFYn+hfS2q+KhLf4a0R1hDR419WaGXpq04sbLSFOsHAa3CisR32ibCGiBDWNwK7FzbiUu1moE3p66qIXId9IqwhIoSFsJ4OSUZxpRTVPQGEhbBWCZxY0shLdoLHamYf+64WRqlDWFoSkRdI62itaveSZuC9m8lKYhn4TfWDsKYw/ThUZgC09rf/X4Zl4h1JXJm4TY0iwprChLD4HksalBPyKiepz+QRljSHZf+J5FkauxexwhJ6MqvAZ2r2ENYUJp6wHmDyXMDvb1d5IVc4VuYwtYkIawoTwkJY2qBQZUsAYWk82/9J9y+2lScDjfL/VfC+SrBIPcLSgmSBEJY2OVRdIoCwNHwIC2Fpk0PVJQIIS8OHsPYK65YSzLVZLVWFsLQ4WR6EpU0OVZcIICwNH8JCWNrkUHWJAMLS8CGsvcKCtzan5aoQlhYpC4SwtMmh6hIBhKXhQ1gIS5scqi4RQFgaPoSFsLTJoeoSAYSl4UNYCEubHKouEUBYGj6EhbC0yaHqEgGEpeFDWAhLmxyqLhFAWBo+hIWwtMmh6hIBhKXh6y6snf9Swy2h7ry1KS1YhbC0ULsv0E5hdWetTWjRKoSlBdt9iRCWNjdUXSSAsDSACEvjplR1Z60wK1uDsLRouy8RT1ja3FB1kQDC0gB2Fhay0maGKgMCCEuDiLA0bqtVnTmvsmpxHmFpMXdeJJ6wtJmhyoAAwtIgdhUWstLmhSojAghLA4mwNG4rVV0ZrzBqdxZhaZF3XKadT1e3VDoy1qaxURXC0sLuuEw7hdWRrzaJzaoQlhZ4t4XaKSuerrSZbFGFsLSYEZbGbaaqG9sZJpx5J4CwtFHotFQ8XWkzQpUDAYSlQUVYGrdRVSeuIxb8/AEBhKWNRZfF4ulKmw+qnAggLA1sB2EhK202qHIkgLA0uNWFhay0uaDKmQDC0gAjLI3bs6rqPG1pNX41hKWFX3nBeLrSZoKqDQQQlga5qrCQlTYPVG0igLA00BWFtVtWN/IVOWoTRdUUAYQ1henHoUqLdkJUyEqbu/ZVCEsbgSrCQlZa/lQdIoCwNPAVhIWstOypOkgAYWnwMwvrlKjupDOz06aFKjMCCEtDmXHpTouK7620WaPqEwGEpY1DJmFFEBWy0uaMqm8EEJY2EhmEFUVUyEqbMaoeEEBY2lhEFVYkSfGdlTZbVL0ggLC08YgkrIiSQlbaXFE1IICwbEZkh8Aii+k7xR08bJLjVVIRQFip4kpxWWSVIqacl0RYOXOLemtkFTWZIvdCWEWCDNAGsgoQQvUrIKzqCfv3h6j8GfMO7wQQFqNwhQCyukKP2mUCCGsZGQX/EkBUjMERAgjrCPa0b4qo0kZX4+IIq0aO3l0gKm/CvP4UAYQ1hantIUTVNvqYjSOsmLmcvhWiOp0A7/+QAMJiMO4EkBSzEJ4AwgofkdsFEZQbWl7YiwDC8iKb43WRVo6cuOU7AYTFKCAtZiANAYSVJiq3iyIsN7S8sDUBhKUR9VzyE//ulWc/GmGqIPCAAMLSxsJzwRGWlglVDQggLC1kT2HdboS0tFyoKk4AYWkBIyyNG1UQuEQAYWn4vIXFU5aWC1XFCSAsLeAdwkJaWjZUFSaAsLRwEZbGjSoIXCKAsDR8u4TFU5aWD1VFCSAsLViEpXGjCgKXCCAsDd9OYfGUpWVEVUECCEsLtYOwbmR296mlQVUbAghLi/rEIvOXSbWsqCpEAGFpYZ4QFh8NtayoKkQAYWlhdhIWHw21GaHKgQDC0qCeEhZPWVpeVBUhgLC0ILsJi6csbU6oMiaAsDSgJ4V16ikLaWmzQpUhAYSlwTwtrFPSitC3lhhVJQggLC3GCIt74q858JSlzQtVRgQQlgYygrBOPWUhLW1mqDIggLA0iAhL40YVBC4RQFgavijC4ilLy4+qpAQQlhZcJGEhLS1DqhISQFhaaAjrN7doHLQ0qUpDAGFpUUVcVH5rqGVJVSICCEsLC2F95RaRh5YsVaEJICwtnqgLylOWlidVSQggLC2oqMLiC3gtT6qSEEBYWlAI6zG3yFy0pKkKRQBhaXFEX0w+Gmq5UhWcAMLSAoouLD4aarlSFZwAwtICQlivuWXgoyVP1VECCEvDn2UhT300vFHNwkibAKqOEEBYGvYsy4iwtHypCkoAYWnBZBHWye+yeMrSZouqFwQQljYemYSFtLSMqQpIAGFpoSCseW7ZWM13xsntBBCWhjzjEvJ9lpY1VYEIICwtjIzC4qOhljVVgQggLC0MhNWLm9YtVeYEEJaGNKuweMrS8qYqCAGEpQWRWVhIS8ucqgAEEJYWAsLSuN2rsvO71j3VMgGEpaGrsHAnf2t4o16BoTY9VMkEEJaGrsqyIS0tf6oOEUBYGniEpXH7XlWFow0NXmVIAGENET08UGnReMrSZoCqAwQQlga9krBO/9aQ77O0GWxZhbC02BGWxu1VVTWm9oR4xTeEpQ1BxeU6/dGQJy1tFltVISwt7orC4qOhNgtUbSSAsDTYVYWFtLR5oGoTAYSlgUZYGrfZqsp8Zxlw7gEBhKWNRfWF4vssbS6ociaAsDTA1YUV4aMhX8Jrs1m6CmFp8SIsjZtS1YG1wqVlDcLSYu+yRHw01OaDKicCCEsD20VYfDTU5oMqJwLVhLXriaCTsJCW0/LxsusEENY6s45fBu/6g2CURrc/KEY82v0cYWmRd1wcpKXNClWGBBCWBrOjsKJ8NOz4hKtNacEqhKWHirR0dhaVXflbsEv7GghLj67rwkT5aMiTlj67aSsrCWv3InUVVqSPhkgrrXq0iyMsjRuL8va2+w+IV0l1/sNDn+CElQjrWmjdFwVpXZsfqhcJVBHWqcVBWIsD53y8ex7OeM+/PMK6lgELEuujIR/Vr81z+OoKwjr1dHUPF2nFkxbiCq8e7YIIS+P2vQppIS2bSeJVXhLILqzTT1ef4SKtmNLiaauQBLMKK5KokNbXhSCbQoKI1kpGYUVdCL7T+n+6I2fEk3A0Cy3cJ4uwIi/ACHfXBYmeWddcRvMa+ucRhRV90K0C7bAwGbLskIPVzB5/nZPCyjDMJwOqskiZcq7C/OTcur73bmFlGl5X8Isvnn2RsuaenfvimMU/jrDiZ1Tl1/JZpcVvgQPtCMIKFMaLq1T5kz67tKrkkGPqH9wSYeWIrtqiZBVXtRxyTP+nWyKsHJFVXJSM0qqYQ44NeL8lwsoRV+VFySSuyjmk2ASElSKmtw6LkkFcHXIIvREIK3Q8H5frtCiRxdUph5CbgbBCxvLjUh0XJaK4OuYQakOyCSvrwFxdvqx9Ww37VX5W9+iegxVH+XV2C0u+KIUQeCdwSl7IKsAIIqwAIXCFywS8JIakLkdj+wIIy5YnrxabwGexIaPYWT28HcJKGBpXhkBXAgira/L0DYGEBBBWwtC4MgS6EkBYXZOnbwgkJICwEobGlSHQlQDC6po8fUMgIQGElTA0rgyBrgQQVtfk6RsCCQkgrIShcWUIdCWAsLomT98QSEgAYSUMjStDoCsBhNU1efqGQEICCCthaFwZAl0JIKyuydM3BBISQFgJQ+PKEOhKAGF1TZ6+IZCQAMJKGBpXhkBXAgira/L0DYGEBBBWwtC4MgS6EkBYXZOnbwgkJICwEobGlSHQlcA/7D5/zkCgUkAAAAAASUVORK5CYII='/%3E%3C/pattern%3E%3C/defs%3E%3Cpath id='researchGate' data-name='researchGate' class='cls-1' d='M0,0H20.746V20.746H0Z'/%3E%3C/svg%3E");
  filter: hue-rotate(247deg) brightness(0.2) contrast(0.5);
}

/*@import "menu_v1/header.scss";*/

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