/*** HEADER ****************************************************************/
  header #hs_cos_wrapper_header-module-1 .button {
  padding: 10px 20px 10px 20px !important;
}

@media screen and (max-width: 767px) {
  header .header__bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: space-between;
    
    height: 100px;
    padding: 0 20px;
    border-bottom: 3px solid rgba(0,44,90,.08);
    box-shadow: 0px 0px 22px #00000017;
  }
}
@media screen and (min-width: 768px) {
  header .header__bottom { padding: 0; }
}

@media screen and (max-width: 767px) {
  header .header__bottom .header__wrapper--bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
  
  /*** BURGER ***/
  header .header__bottom .header__menu-toggle { line-height: 1; }
  
  /*** LOGO ***/
  header .header__bottom .header__logo-image {
    width: 70px;
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  header .header__bottom .header__wrapper--bottom {
    position: relative;
    height: 100px;
  }
}

@media screen and (min-width: 1400px) {
  header .header__bottom .header__wrapper { width: 100%; }
  
  /*** LOGO ***/
  header .header__bottom .header__logo-col {
    position: absolute;
    left: -148px;
    top: 30px;
  }
  
  /*** BOUTON RETOUR SITE ***/
  header .header__bottom .header__button-col {
    position: relative;
    right: -130px;
  }
}

/*** IMG RESET ***/
header .header__bottom img { display: block; }


/*** SUR MOBILE -> ON CACHE LE LIEN HUBSPOT ***/
@media screen and (max-width: 767px) {
  .hs-tools-menu { display: none; }
}

/*** SUR MOBILE -> ON AFFICHE LE BOUTON DE RETOUR ***/
@media (max-width: 767px) {
  header .header__bottom .header__wrapper .hidden-phone {
    display: block !important;
  }
}

/*** SUR MOBILE -> MODIFICATION ORDER DES ELEMENTS ***/
@media (max-width: 767px) {
  header .header__bottom .header__wrapper .header__logo-col { order: 2; }
  header .header__bottom .header__wrapper .header__menu-col {
    order: 1;
    margin-left: 0;
  }
  header .header__bottom .header__wrapper .header__button-col { order: 3; }
}




/*** STICKY *****************************************************************/
@media screen and (min-width: 768px) {
  .headerSticky { padding-top: 160px; }

  @keyframes stickAnim {
    0% { top: -400px; }
    100% { top: 0; }
  }

  .headerSticky header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;

    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
    animation: stickAnim ease-in-out .3s forwards;
  }

  .headerSticky header .header__bottom .header__wrapper--bottom { height: 60px; }

  .headerSticky header .header__bottom .header__logo-col { top: 20px; }
  .headerSticky header .header__bottom .header__logo-col img {
    width: auto;
    height: 80px;
  }

  .headerSticky header .header__bottom .header__button-col { top: 30px; }
}



/*** NAVIGATION ************************************************************/
header .hs-menu-wrapper > ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  header .hs-menu-wrapper > ul { background-color: rgba(0, 44, 90, 0.08); }
}

@media screen and (max-width: 767px) {
  header .hs-menu-wrapper > ul > li {
    margin: 0;
    border-top: 1px solid #eaedf1;
  }
  header .hs-menu-wrapper > ul > li:first-child { border-top: none; }
  header .hs-menu-wrapper > ul > li > a { border-bottom: 1px solid #eaedf1; }
}

header .hs-menu-wrapper > ul > li > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 60px;
  padding: 0 20px;

  color: #003ee7 !important;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  header .hs-menu-wrapper > ul > li > a {
    justify-content: center;
    
    position: relative;
    transition: all ease-in-out .3s;
  }
}

/*** DECO TIRET ***/
@media screen and (min-width: 768px) {
  header .hs-menu-wrapper > ul > li > a:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;

    width: 0;
    height: 1px;
    background-color: #07d2a3;

    opacity: 0;
    transition: all ease-in-out .3s;
  }

  /*** HOVER ***/
  header .hs-menu-wrapper > ul > li:hover > a {
    color: #003ee7;
    background-color: white;  
  }
  header .hs-menu-wrapper > ul > li:hover > a:before {
    width: 40px;
    opacity: 1;
  }
  header .hs-menu-wrapper > ul > li:hover > .hs-menu-children-wrapper { visibility: visible; }
}


/*** NAVIGATION MOBILE *****************************************************/
@media screen and (max-width: 767px) {
  header > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-span > .row-fluid-wrapper > .row-fluid > .widget-span > .row-fluid-wrapper:nth-child(2) {
    position: absolute;
    left: -100%;
    z-index: 10;
    width: 100%;
    background-color: white;
  }
  header > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-span > .row-fluid-wrapper > .row-fluid > .widget-span > .row-fluid-wrapper:nth-child(2) .hs-menu-wrapper .hs-menu-depth-1 > a {
    font-weight: 700;
  }
  
  /*** MENU MOB ACTIVE ***/
  .menuMobActive {
    height: 100%;
    overflow: hidden;
  }
  .menuMobActive header > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-span > .row-fluid-wrapper > .row-fluid > .widget-span > .row-fluid-wrapper:nth-child(2) {
    height: calc(100vh - 100px);
    left: 0;
  }
  
  /*** RESET ***/  
  .header__menu--show { display: none !important; }
}


/*** DROPDOWN ****/
@media screen and (max-width: 767px) {
  /* header .hs-menu-wrapper .hs-menu-children-wrapper { background-color: rgba(0,44,90,.08); } */

  header .hs-menu-wrapper .hs-menu-children-wrapper > li {
    margin: 0 !important;
    border-top: 1px solid white;
  }
  header .hs-menu-wrapper .hs-menu-children-wrapper > li > a {
    padding: 10px 20px 10px 35px;

    color: #003ee7;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  header .hs-menu-wrapper .hs-menu-children-wrapper {
    visibility: hidden;
    left: 0 !important;
    z-index: 10;

    min-width: 200%;
    padding: 20px 0;
    background-color: white;
    transition: all ease-in-out .3s;
  }
  header .hs-menu-wrapper .hs-menu-children-wrapper a {
    position: relative;
    padding: 5px 20px;

    color: #003ee7;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    text-decoration: none;
  }
  
  /*** TIRET ***/
  /*
  header .hs-menu-wrapper .hs-menu-children-wrapper a:before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 5px;

    height: 1px;
    background-color: #07d2a3;

    opacity: 0;
    transform: scaleX(0);
    transform-origin: center left;
    transition: all ease-in-out .3s;
  }
  */
  
  /*** HOVER ***/
  header .hs-menu-wrapper .hs-menu-children-wrapper li:hover a { color: #003ee7; }
  /*
  header .hs-menu-wrapper .hs-menu-children-wrapper li:hover a:before {
    opacity: 1;
    transform: scaleX(.4);
  }
  */
}




/*** BAN *******************************************************************/

/*** TITRE ***/
.hs-blog-listing > main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(1) h1 {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
  color: #003ee7;
}
.hs-blog-listing > main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(1) h1 span { color: #003ee7 !important; }

/*** TIRET ***/
.hs-blog-listing > main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(1) h1:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  
  width: 60px;
  height: 5px;
  background-color: #07d2a3;
  border-radius: 5px;
}

/*** IMAGE ***/
.hs-blog-listing > main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(1) h1 {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
}

/*** PARAGRAPH ***/
.hs-blog-listing > main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(1) p { margin: 0; }




/*** LISTING ***************************************************************/

/*** ITEM ***/
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid .blog-post-listing__post--card {
  background-color: white;
  box-shadow: 0px 0px 22px #00000017;
}

/*** IMAGES ***/
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid .blog-post-listing__post--card .blog-listing__post-image-wrapper {
  margin: 0 !important;
}

/*** INFO ***/
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid .blog-post-listing__post--card .blog-listing__post-content {
  padding: 15px 15px 30px 15px;
}

.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid .blog-post-listing__post--card .blog-listing__post-content .blog-listing__header {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 0 !important;
}

/*** DATE ***/
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid .blog-post-listing__post--card .blog-listing__post-content .blog-listing__post-timestamp {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 300;
}

/*** TITLE ***/
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid .blog-post-listing__post--card .blog-listing__post-content .blog-listing__post-title {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid .blog-post-listing__post--card .blog-listing__post-content .blog-listing__post-title a:hover {
  color: inherit;
}

/*** RESUME ***/
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid .blog-post-listing__post--card .blog-listing__post-content .blog-listing__post-summary {
  margin-bottom: 10px;
}
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid .blog-post-listing__post--card .blog-listing__post-content .blog-listing__post-summary p {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300 !important;
}
  
/*** BUTTON ***/
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid .blog-post-listing__post--card .blog-listing__post-content .blog-listing__post-button-wrapper a {
  padding: 0;
  
  color: #003ee7;
  font-size: 14px;
  font-weight: 300;
  
  background-color: transparent;
  border: none;
}
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid .blog-post-listing__post--card .blog-listing__post-content .blog-listing__post-button-wrapper a:hover {
  text-decoration: underline !important;
}




/*** PAGER ************************************************/
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) nav .pagination__link--number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  width: 40px;
  height: 40px;
  background-color: white;
  border: 1px solid #003ee7;
}
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) nav .pagination__link--number:hover {
  color: white !important;
  background-color: #003ee7;
}
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) nav .pagination__link--number.pagination__link--active {
  color: white !important;
  background-color: #003ee7;
}

/*** BOUTON PREV / NEXT ***/

/*** ON CACHE LE SVG ***/
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) nav .pagination__link .pagination__link-icon svg { display: none; }
/* .hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) nav .pagination__link .pagination__link-icon svg { fill: #003ee7 !important; } */


/*** ON REMPLACE LE PICTO ***/
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) nav .pagination__link--prev, 
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) nav .pagination__link--next {
  width: 40px;
  height: 40px;

  background-image: url(//25277590.fs1.hubspotusercontent-eu1.net/hubfs/25277590/raw_assets/public/Groupe%20PLG/chevron-right-blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 30px;
}
.hs-blog-listing main > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) nav .pagination__link--prev { transform: rotate(180deg); }




/*** DETAILS ARTICLE *******************************************************/

/*** RESET LARGEUR CONTENU PRINCIPAL ***/
.hs-blog-post > main > .content-wrapper {
  max-width: 100% !important;
  padding: 0 !important;
}

/*** LARGEUR DETAILS ARTICLE ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 100px 20px;
}


/*** BLOG POST CONTENT ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post {
  display: flex;
  flex-direction: column;
}

/*** ON CACHE LA DATE ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) time { display: none; }

/*** ON CACHE L'AUTEUR ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__author { display: none; }


/*** MODIFICATION ORDRE ELEMENTS ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body { order: 1; }
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__meta {
  order: 2;
  margin-top: 40px; 
}
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__tags { order: 3; }



/*** ON REDUIT LA LARGEUR DES BLOCKS -> SAUF LA BAN ***/
.hs-blog-post > main > .content-wrapper > .blog-post-section:nth-child(1) > .blog-post > .blog-post__body > .hs_cos_wrapper > *:not(:first-child),
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__meta, 
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__tags {
  width: 100% !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}



/*** CATEGS ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__tags {
  margin-top: 15px;
  padding-top: 20px;

  color: #07d2a3;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  text-decoration: none;

  border-top: 1px solid #1d1d1d;
}
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__tags .categLabel {
  color: #1d1d1d;
  font-weight: 700;
}

.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__tags .icon--light { display: none; }
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__tags span { margin-right: 10px; }

.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__tags a {
  color: #07d2a3;
  font-weight: 400;
  text-decoration: none;
}
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__tags a:hover {
  color: inherit;
  text-decoration: underline;
}



/*** SHARE ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__meta .social-sharing__share-text {
  color: #1d1d1d;
  font-size: 14px;
  line-height: 14px;
  font-weight: 300 !important;
}

/*** PICTO ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__meta .social-sharing__icon { padding: 5px; }
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__meta .social-sharing__icon:hover { background-color: #0677B5 !important; }
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__meta .social-sharing__icon svg {
  width: 25px;
  height: 25px;
}  





/*** BOUTON RETOUR ***/
.btRetour { margin: 20px auto; }
.btRetour a {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  
  color: #454044 !important;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}
.btRetour a:hover {
  color: #454044 !important;
  text-decoration: none;
}


/*** TITRE H1 ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post h1 { color: #003ee7; }

/*** TITRE H1 BAN ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body > .hs_cos_wrapper > .hs_cos_wrapper_widget { position: relative; }
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post .titreMotion {
  position: absolute;
  left: 40%;
  transform: translateX(-33%);
  bottom: 50px;
  
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  
  margin: 0;
  padding-bottom: 20px;
  color: white;
  font-size: 34px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post .titreMotion {
    font-size: 44px;
    line-height: 46px;
  }
}

/*** TIRET ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post .titreMotion:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  
  width: 60px;
  height: 5px;
  background-color: #07d2a3;
  border-radius: 5px;
}



/*** TITRE H2 ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body h2 {
  position: relative;
  padding-bottom: 8px;
  
  color: #003ee7;
  font-size: 22px !important;
  line-height: 25px !important;
  font-weight: 700;
  margin-bottom: 10px;
}

/*** DECO TIRET H2 ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  
  width: 40px;
  height: 2px;
  background-color: #07d2a3;
}


/*** TITRE H3 ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body h3 {
  color: #454044;
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 700;
}


/*** TITRE H4 ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body h4 {
  color: #454044;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 300;
  margin-bottom: 10px;
}



/*** PARAGRAPH ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body p {
  color: #454044;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  margin-top: 10px;   
  margin-bottom: 10px;
}
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body p a {
  color: #07d2a3;
  font-weight: 700 !important;
}


/*** PUPUCE ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body ul:not(.hs-image__grid__list) {
  padding: 0 0 0 30px;
  list-style-type: none;
}
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body ul:not(.hs-image__grid__list) li {
  display: flex;
  margin: 10px 0 0 0;

  color: #07d2a3;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
    margin-top: 10px;   
  margin-bottom: 10px;
}
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body ul:not(.hs-image__grid__list) li:first-child { margin-top: 0; }
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body ul:not(.hs-image__grid__list) li:before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  margin-right: 10px;
  background-color: #07d2a3;
}

/*** PUPUCE -> FIX POUR LES P (MAUVAIS COPIER / COLLER) ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body ul:not(.hs-image__grid__list) li p { margin: 0 !important; }


/*** IMAGE ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(1) .blog-post__body img {
  width: 100% !important;
  padding: 0;
}






/*** ARTICLES MIS EN AVANT *************************************************/

/*** CONTENEUR PRINCIPAL ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) {
  max-width: 100% !important;
  padding: 60px 0 80px 0;
  border-top: 8px solid #f7f7f7;
}

/*** LARGEUR TEASER ARTICLE ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/*** TITRE ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-listing__heading {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 20px;
  
  color: #1d1d1d;
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-listing__heading {
    font-size: 30px;
    line-height: 35px;
  }
}

/*** TIRET ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-listing__heading:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  
  width: 40px;
  height: 1px;
  background-color: #07d2a3;
}

  

/*** ARTICLE DU MILIEU PLUS GRAND QUE LES AUTRES ***/
@media screen and (min-width: 768px) {
  .articleContent {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .articleContent article {
    width: 30%;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: calc(5% / 2);
    margin-right: 0 !important;
  }
  .articleContent article:nth-child(2) {
    width: 35%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .articleContent article:first-child { margin-left: 0; }
}





/*** ITEM ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-post-listing__post--card {
  background-color: white;
  box-shadow: 0px 0px 22px #00000017;
}

/*** IMAGES ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-post-listing__post--card .blog-listing__post-image-wrapper { margin: 0 !important; }

/*** INFO ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-post-listing__post--card .blog-listing__post-content { padding: 15px 15px 30px 15px; }

.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-post-listing__post--card .blog-listing__header {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 0 !important;
}

/*** DATE ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-post-listing__post--card .blog-listing__post-timestamp {
  margin-bottom: 5px;
  color: #454044;
  font-size: 12px;
  font-weight: 300;
}

/*** TITLE ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-post-listing__post--card .blog-listing__post-title {
  margin-bottom: 20px;
  color: #003ee7;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-post-listing__post--card .blog-listing__post-title .blog-listing__post-title-link,
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-post-listing__post--card .blog-listing__post-title .blog-listing__post-title-link:hover {
  color: inherit;
}



/*** RESUME ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-post-listing__post--card .blog-listing__post-summary { margin-bottom: 10px; }
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-post-listing__post--card .blog-listing__post-summary p {
  margin: 0;
  color: #454044;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
}
  
/*** BUTTON ***/
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-post-listing__post--card .blog-listing__post-button-wrapper a {
  padding: 0;
  
  color: #003ee7;
  font-size: 14px;
  font-weight: 300;
  
  background-color: transparent;
  border: none;
}
.hs-blog-post > main > .content-wrapper .blog-post-section:nth-child(2) #hs_cos_wrapper_related_posts .blog-post-listing__post--card .blog-listing__post-button-wrapper a:hover { text-decoration: underline; }






/*** NEWSLETTER ************************************************************/
footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(1) h3,
footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(1) p { margin: 0; }

footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(1) h3 { color: #003ee7; }

footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(1) .row-depth-1.row-number-3 p { color: #003ee7; }



/*** NEWSLETTER FORM *******************************************************/

/*** FORM ***/
.hs-blog-listing .hs-form, 
.hs-blog-post .hs-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  margin: 10px auto 0 auto;
  max-width: 500px;
  
  /*** RESET ***/
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
}

/*** EMAIL ***/
.hs-blog-listing .hs-form > .hs_email, 
.hs-blog-post .hs-form > .hs_email {
  order: 1;
  flex: 1;
  margin: 0;
}
.hs-blog-listing .hs-form > .hs_email input,
.hs-blog-post .hs-form > .hs_email input {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0 15px;

  color: #1d1d1d;
  font-size: 14px;
  font-weight: 300;

  background: white;
  border: 1px solid rgba(0,44,90,.17);

  transition: all .2s;
  appearance: none;
  outline: none;
}

/*** HOVER & FOCUS ***/
.hs-blog-listing .hs-form > .hs_email input:hover,
.hs-blog-listing .hs-form > .hs_email input:focus,
.hs-blog-post .hs-form > .hs_email input:hover,
.hs-blog-post .hs-form > .hs_email input:focus { border-color: #9aa1b0; }

/*** ERROR ***/
/*
.hs-blog-listing .hs-form > .hs_email input.error,
.hs-blog-post .hs-form > .hs_email input.error { border: 1px solid red; }
*/

/*** ON CACHE LES LABELS ***/
.hs-blog-listing .hs-form > .hs_email > label,
.hs-blog-post .hs-form > .hs_email > label { display: none; }


/*** SUBMIT ***/
.hs-blog-listing .hs-form > .hs_submit,
.hs-blog-post .hs-form > .hs_submit { order: 2; }

.hs-blog-listing .hs-form > .hs_submit input,
.hs-blog-post .hs-form > .hs_submit input {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 40px;
  padding: 0 25px;

  color: white;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  text-transform: uppercase;

  background: #07d2a3;
  border: 1px solid #07d2a3;

  cursor: pointer;
}


/*** LEGAL CONSENT ***/
.hs-blog-listing .hs-form > .legal-consent-container,
.hs-blog-post .hs-form > .legal-consent-container {
  order: 3;
  width: 100%;
  margin-top: 10px;
  opacity: 1;
}

/*** RESET ***/
.hs-blog-listing .hs-form > .legal-consent-container .hs-fieldtype-booleancheckbox, 
.hs-blog-listing .hs-form > .legal-consent-container .hs-form-booleancheckbox,
.hs-blog-post .hs-form > .legal-consent-container .hs-fieldtype-booleancheckbox,
.hs-blog-post .hs-form > .legal-consent-container .hs-form-booleancheckbox { margin: 0; }


.hs-blog-listing .hs-form > .legal-consent-container label,
.hs-blog-post .hs-form > .legal-consent-container label {
  display: flex;
  flex-direction: row;
  align-items: center;
  
  margin: 0;
  padding: 0;
}

.hs-blog-listing .hs-form > .legal-consent-container label > span,
.hs-blog-post .hs-form > .legal-consent-container label > span {
  margin-left: 10px;
  line-height: 13px;
}

.hs-blog-listing .hs-form > .legal-consent-container label > span p,
.hs-blog-listing .hs-form > .legal-consent-container label > span a,
.hs-blog-post .hs-form > .legal-consent-container label > span p,
.hs-blog-post .hs-form > .legal-consent-container label > span a {
  color: #1d1d1d;
  font-size: 11px;
  line-height: 13px;
  font-weight: 400;
}

/*** CHECKBOX ***/
.hs-blog-listing .hs-form > .legal-consent-container input[type=checkbox],
.hs-blog-post .hs-form > .legal-consent-container input[type=checkbox] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0;

  color: #07d2a3;

  background: white;
  border: 1px solid #1d1d1d;
  border-radius: 2px;
  transition: all .2s;
}

/*** ERROR ***/

/*** ON CACHE LE MESSAGE GENERAL ***/
.hs-blog-listing .hs-form .hs_error_rollup, 
.hs-blog-post .hs-form .hs_error_rollup { display: none; }

/*** MESSAGE SPECIFIQUE ***/
.hs-blog-listing .hs-form .hs-error-msgs,
.hs-blog-post .hs-form .hs-error-msgs { margin: 0 !important; }

.hs-blog-listing .hs-form .hs-error-msgs > li,
.hs-blog-post .hs-form .hs-error-msgs > li { margin: 0 !important; }

.hs-blog-listing .hs-form .hs-error-msgs > li > label, 
.hs-blog-post .hs-form .hs-error-msgs > li > label {
  margin: 0 !important;
  padding: 5px 10px !important;
  color: #ed4337 !important;
  font-size: 13px !important;
}



/*** SUCCESS MESSAGE ***/
.hs-blog-listing .submitted-message,
.hs-blog-post .submitted-message {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  padding: 0;
  
  color: #07d2a3;
  font-size: 16px;
  line-height: 16px;
  background-color: unset;
}




/*** PRE FOOTER ************************************************************/
footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) { border-bottom: 1px solid #2b5076; }
footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid { max-width: 1100px !important; }

footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid { justify-content: center; }

footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(1),
footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(2),
footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(3) {
  width: initial;
}

footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(1),
footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(3) {
  flex-shrink: 0;
}

/*** LOGO ***/
@media screen and (max-width: 767px) {
  footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(1) { margin-bottom: 15px; }
}

/*** DESC ***/
@media screen and (max-width: 767px) {
  footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(2) p { text-align: center; }  
}
footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(2) p {
  margin: 0;
  font-size: 14px;
  line-height: 23px !important;
  font-weight: 300 !important;
}

/*** RESEAUX SOCIAUX ***/
@media screen and (max-width: 767px) {
  footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(3) {
    justify-content: space-between !important;
  }
  footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(3) .social-follow {
    margin-bottom: 5px;
  }
}


footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(3) p {
  margin: 0;
  line-height: 26px;
}

footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(3) .social-follow__icon { padding: 5px; }
footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(3) .social-follow__icon:hover { background-color: white !important; }
footer > .container-fluid > .row-fluid-wrapper > .row-fluid > .widget-type-cell > .row-fluid-wrapper:nth-child(2) > .row-fluid > .widget-type-cell > .row-fluid-wrapper > .row-fluid > .widget-type-cell:nth-child(3) .social-follow__icon svg {
  width: 30px !important;
  height: 30px !important;
}  




/*** FOOTER ****************************************************************/
footer .hs-menu-wrapper ul { justify-content: center; }

@media screen and (min-width: 768px) {
  footer .hs-menu-wrapper ul li { margin-left: 20px; }
  footer .hs-menu-wrapper ul li:first-child { margin-left: 0; }
}

footer .hs-menu-wrapper ul li a {
  color: white !important;
  font-size: 14px !important;
  font-weight: 300 !important;
}

/*** AVANT DERNIER ELEMENT SOULIGNE ***/
footer .hs-menu-wrapper ul li:nth-last-child(2) a { text-decoration: underline; }
footer .hs-menu-wrapper ul li:nth-last-child(2) a:hover { text-decoration: underline !important; }