body {
  background: #dc1f33;
  font-family: "Dosis", sans-serif;
  font-size: 18px;
}

body * {
  box-sizing: border-box;
}

ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.root-container {
  padding: 50px 50px;
  overflow: hidden;
}
.root-container > section {
  position: relative;
}
.root-container > section > .wrapper > .section-title, .root-container > section > .wrapper > .section-punchline {
  color: #fff;
  text-align: center;
  padding: 0 50px;
  margin-left: auto;
  margin-right: auto;
}
.root-container > section > .wrapper > .section-title {
  margin-top: 50px;
  font-size: 1.5em;
}
.root-container > section > .wrapper > .section-punchline {
  margin-top: 30px;
  font-size: 1.2em;
  width: 700px;
  max-width: calc(100% - 100px);
  opacity: 0.9;
}
.root-container > section > .wrapper > .section-sub-title {
  margin-top: 50px;
  font-size: 1.35em;
  font-weight: 500;
}

.picto {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  .root-container {
    padding: 50px 0 0;
  }
  .root-container > section > .wrapper {
    padding: 0 20px;
  }
  .root-container > section > .wrapper > .section-title, .root-container > section > .wrapper > .section-punchline {
    padding: 0 20px;
  }
  .root-container > section > .wrapper > .section-title {
    margin-top: 40px;
  }
  .root-container > section > .wrapper > .section-punchline {
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
  }
  .root-container > section > .wrapper > .section-sub-title {
    margin-top: 40px;
  }
}
.fixed-nav-frame .left-col, .fixed-nav-frame .right-col, .fixed-nav-frame header, .fixed-nav-frame footer {
  background: white;
  position: fixed;
}
.fixed-nav-frame .left-col, .fixed-nav-frame .right-col {
  top: 0;
  width: 50px;
  height: 100vh;
  z-index: 300;
}
.fixed-nav-frame .left-col {
  left: 0;
}
.fixed-nav-frame .right-col {
  right: 0;
}
.fixed-nav-frame header, .fixed-nav-frame footer {
  left: 0;
  height: 50px;
  width: 100%;
}
.fixed-nav-frame header {
  top: 0;
  z-index: 500;
}
.fixed-nav-frame footer {
  bottom: 0;
  z-index: 400;
}
.fixed-nav-frame .left-col.shadow,
.fixed-nav-frame .right-col.shadow,
.fixed-nav-frame header.shadow,
.fixed-nav-frame footer.shadow {
  z-index: 200;
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.06);
}
.fixed-nav-frame header, .fixed-nav-frame footer {
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.fixed-nav-frame header .box, .fixed-nav-frame footer .box {
  width: 30px;
  height: 30px;
  position: relative;
}
.fixed-nav-frame header .box .picto, .fixed-nav-frame header .box .logo-img, .fixed-nav-frame footer .box .picto, .fixed-nav-frame footer .box .logo-img {
  display: inline-block;
  width: 100%;
  height: 100%;
  transform: scale(0.8);
  transition: transform 0.15s, opacity 0.15s;
  position: absolute;
  top: 0;
  left: 0;
}
.fixed-nav-frame header .box .picto.close, .fixed-nav-frame header .box .logo-img.close, .fixed-nav-frame footer .box .picto.close, .fixed-nav-frame footer .box .logo-img.close {
  opacity: 0;
  transform: scale(0.65);
  pointer-events: none;
}
.fixed-nav-frame header .box:hover, .fixed-nav-frame footer .box:hover {
  cursor: pointer;
  opacity: 0.7;
}
.fixed-nav-frame header .box:hover > .picto, .fixed-nav-frame header .box:hover > .logo-img, .fixed-nav-frame footer .box:hover > .picto, .fixed-nav-frame footer .box:hover > .logo-img {
  transform: scale(0.7);
}
.fixed-nav-frame header .box:hover > .picto.close, .fixed-nav-frame header .box:hover > .logo-img.close, .fixed-nav-frame footer .box:hover > .picto.close, .fixed-nav-frame footer .box:hover > .logo-img.close {
  transform: scale(0.55);
  opacity: 0;
}
.fixed-nav-frame header .logo, .fixed-nav-frame footer .logo {
  margin-right: auto;
  position: relative;
  z-index: 500;
}
.fixed-nav-frame header .logo .logo-img, .fixed-nav-frame footer .logo .logo-img {
  background-image: url("../img/logo_Scop_It_icon_bee.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.fixed-nav-frame header .contact .picto, .fixed-nav-frame footer .contact .picto {
  background-image: url("../img/global_design/picto_paper_plane.svg");
}
.fixed-nav-frame header .linkedin-btn .picto, .fixed-nav-frame footer .linkedin-btn .picto {
  background-image: url("../img/social_networks/picto_logo_LinkedIn_squared.svg");
}
.fixed-nav-frame header .main-menu, .fixed-nav-frame footer .main-menu {
  width: 400px;
  position: fixed;
  z-index: 540;
  right: 0;
  top: 0;
  height: 100%;
  overflow: auto;
  display: block;
  background: rgba(220, 31, 51, 0.96);
  box-shadow: 0px 25px 100px 0px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
}
.fixed-nav-frame header .main-menu .pages, .fixed-nav-frame footer .main-menu .pages {
  width: calc(100% - 160px);
  margin: 10vh auto 5vh;
}
.fixed-nav-frame header .main-menu .pages .page .page-link, .fixed-nav-frame footer .main-menu .pages .page .page-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 5px;
  display: inline-block;
  transition: opacity 0.15s;
  position: relative;
  transition: color 0.15s;
  padding: 8px 26px 10px;
}
.fixed-nav-frame header .main-menu .pages .page .page-link::before, .fixed-nav-frame footer .main-menu .pages .page .page-link::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border-radius: 50px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  transform: scale(0.9);
  transition: opacity 0.15s, transform 0.15s;
}
.fixed-nav-frame header .main-menu .pages .page .page-link:hover, .fixed-nav-frame footer .main-menu .pages .page .page-link:hover {
  color: #dc1f33;
}
.fixed-nav-frame header .main-menu .pages .page .page-link:hover::before, .fixed-nav-frame footer .main-menu .pages .page .page-link:hover::before {
  opacity: 1;
  transform: scale(1);
}
.fixed-nav-frame header .burger-menu, .fixed-nav-frame footer .burger-menu {
  position: relative;
  z-index: 550;
}
.fixed-nav-frame header .burger-menu .picto.open, .fixed-nav-frame footer .burger-menu .picto.open {
  background-image: url("../img/global_design/picto_burger_menu.svg");
}
.fixed-nav-frame header .burger-menu .picto.close, .fixed-nav-frame footer .burger-menu .picto.close {
  background-image: url("../img/global_design/picto_close_cross.svg");
}
.fixed-nav-frame header .contact {
  display: none;
}
.fixed-nav-frame header .linkedin-btn {
  display: none;
}
.fixed-nav-frame footer {
  justify-content: center;
}
.fixed-nav-frame footer .contact {
  margin-right: 15px;
}

body.menu-on .fixed-nav-frame header .main-menu {
  opacity: 1;
  pointer-events: auto;
}
body.menu-on .fixed-nav-frame header .burger-menu .picto.open {
  opacity: 0;
  z-index: 9;
  pointer-events: none;
}
body.menu-on .fixed-nav-frame header .burger-menu .picto.close {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}

@media only screen and (max-width: 767px) {
  .fixed-nav-frame .left-col, .fixed-nav-frame .right-col {
    display: none;
  }
  .fixed-nav-frame header {
    background: #c01a2b;
  }
  .fixed-nav-frame header .picto, .fixed-nav-frame header .logo {
    filter: brightness(100);
  }
  .fixed-nav-frame footer {
    display: none;
  }
  .fixed-nav-frame header .contact, .fixed-nav-frame footer .contact {
    margin-right: 10px;
    display: inline-block;
  }
  .fixed-nav-frame header .linkedin-btn, .fixed-nav-frame footer .linkedin-btn {
    margin-right: 30px;
    display: inline-block;
  }
  .fixed-nav-frame header .main-menu, .fixed-nav-frame footer .main-menu {
    width: 100%;
  }
  .fixed-nav-frame header .main-menu .pages, .fixed-nav-frame footer .main-menu .pages {
    width: 100%;
    margin: 0;
    padding: 80px 40px 50px;
  }
  .fixed-nav-frame header .main-menu .pages .page .page-link, .fixed-nav-frame footer .main-menu .pages .page .page-link {
    font-size: 1.3em;
    margin-bottom: 5px;
    margin-left: 10%;
    padding: 8px 26px 10px;
  }
  .fixed-nav-frame header .main-menu .pages .page .page-link::before, .fixed-nav-frame footer .main-menu .pages .page .page-link::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border-radius: 50px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    transform: scale(0.9);
    transition: opacity 0.15s, transform 0.15s;
  }
  .fixed-nav-frame header .main-menu .pages .page .page-link:hover, .fixed-nav-frame footer .main-menu .pages .page .page-link:hover {
    color: #dc1f33;
  }
  .fixed-nav-frame header .main-menu .pages .page .page-link:hover::before, .fixed-nav-frame footer .main-menu .pages .page .page-link:hover::before {
    opacity: 1;
    transform: scale(1);
  }
}
section.legal-mentions {
  margin-top: 50px;
  background-color: #dc1f33;
  padding: 20px 50px;
  color: #fff;
  text-align: center;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
section.legal-mentions::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px) {
  section.legal-mentions {
    margin-top: 20px;
    background-color: #dc1f33;
    padding: 20px 40px;
    font-size: 1em;
    position: relative;
  }
}
.page-landing section.last-news, .page-post section.last-news, .page-customer-case section.last-news {
  padding: 100px 0 150px;
  background: white;
  margin-top: -2px;
  display: none;
}
.page-landing section.last-news .wrapper, .page-post section.last-news .wrapper, .page-customer-case section.last-news .wrapper {
  position: relative;
}
.page-landing section.last-news .wrapper .section-title, .page-post section.last-news .wrapper .section-title, .page-customer-case section.last-news .wrapper .section-title {
  color: #dc1f33;
  margin-bottom: 70px;
}
.page-landing section.last-news .wrapper .section-sub-title, .page-post section.last-news .wrapper .section-sub-title, .page-customer-case section.last-news .wrapper .section-sub-title {
  color: #dc1f33;
  width: 1150px;
  max-width: calc(85% - 100px);
  margin: 85px auto 35px;
}
.page-landing section.last-news .wrapper .section-sub-title::after, .page-post section.last-news .wrapper .section-sub-title::after, .page-customer-case section.last-news .wrapper .section-sub-title::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  border-radius: 20px;
  background: #dc1f33;
  margin-left: 25px;
  position: relative;
  top: -5px;
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles, .page-post section.last-news .wrapper .sub-wrapper.tiles, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles {
  display: flex;
  width: 1150px;
  max-width: calc(85% - 100px);
  margin: 0 auto;
  flex-wrap: wrap;
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles .tile, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile {
  position: relative;
  width: 31.5%;
  width: calc((100% - 60px) / 3);
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles .tile:nth-child(3) ~ .tile, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile:nth-child(3) ~ .tile, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile:nth-child(3) ~ .tile {
  margin-top: 30px;
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles .tile + .tile, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile + .tile, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile + .tile {
  margin-left: 30px;
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles .tile + .tile:nth-child(3n+1), .page-post section.last-news .wrapper .sub-wrapper.tiles .tile + .tile:nth-child(3n+1), .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile + .tile:nth-child(3n+1) {
  margin-left: 0;
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles .tile::after, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile::after, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile::after {
  content: "";
  z-index: 0;
  position: absolute;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: white;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles .tile:hover::after, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile:hover::after, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile:hover::after {
  transform: scale(1.1);
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles .tile:hover .tile-link .illustration-wrapper, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile:hover .tile-link .illustration-wrapper, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile:hover .tile-link .illustration-wrapper {
  transform: scale(1.1) translateY(-10px) !important;
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles .tile:hover .tile-link .illustration-wrapper img.illustration, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile:hover .tile-link .illustration-wrapper img.illustration, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile:hover .tile-link .illustration-wrapper img.illustration {
  transform: scale(1.1);
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0 0 40px;
  border-radius: 10px;
  text-decoration: none;
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .illustration-wrapper, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .illustration-wrapper, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .illustration-wrapper {
  width: 100%;
  overflow: hidden;
  display: block;
  border-radius: 5px 5px 0 0;
  transition: transform 0.15s;
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .illustration-wrapper img.illustration, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .illustration-wrapper img.illustration, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .illustration-wrapper img.illustration {
  width: 100%;
  transition: transform 0.15s;
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .title, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .title, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .title {
  color: #dc1f33;
  font-size: 1.05em;
  display: block;
  margin-top: 20px;
  padding: 0 30px;
  font-weight: 500;
}
.page-landing section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .description, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .description, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .description {
  color: #333;
  font-size: 0.9em;
  display: block;
  margin-top: 20px;
  padding: 0 30px;
}

@media only screen and (max-width: 1000px) {
  .page-landing section.last-news .wrapper .sub-wrapper.tiles, .page-post section.last-news .wrapper .sub-wrapper.tiles, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles {
    display: flex;
    flex-wrap: wrap;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles .tile, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile {
    width: calc((100% - 25px) / 2);
    height: auto;
    background: #fff;
    border-radius: 10px;
    padding-bottom: 40px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
    position: relative;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles .tile + .tile, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile + .tile, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile + .tile {
    margin-left: 25px;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles .tile + .tile:nth-child(2n+1), .page-post section.last-news .wrapper .sub-wrapper.tiles .tile + .tile:nth-child(2n+1), .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile + .tile:nth-child(2n+1) {
    margin-left: 0;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles .tile + .tile:nth-child(3n+1), .page-post section.last-news .wrapper .sub-wrapper.tiles .tile + .tile:nth-child(3n+1), .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile + .tile:nth-child(3n+1) {
    margin-left: 25px;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles .tile:nth-child(2) ~ .tile, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile:nth-child(2) ~ .tile, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile:nth-child(2) ~ .tile {
    margin-top: 30px;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles .tile:nth-child(4) ~ .tile, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile:nth-child(4) ~ .tile, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile:nth-child(4) ~ .tile {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .page-landing section.last-news, .page-post section.last-news, .page-customer-case section.last-news {
    padding: 40px 0 100px;
  }
  .page-landing section.last-news .wrapper .section-title, .page-post section.last-news .wrapper .section-title, .page-customer-case section.last-news .wrapper .section-title {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  .page-landing section.last-news .wrapper .section-sub-title, .page-post section.last-news .wrapper .section-sub-title, .page-customer-case section.last-news .wrapper .section-sub-title {
    width: 100%;
    max-width: 100%;
    margin: 55px auto 25px;
  }
  .page-landing section.last-news .wrapper .section-sub-title::after, .page-post section.last-news .wrapper .section-sub-title::after, .page-customer-case section.last-news .wrapper .section-sub-title::after {
    padding: 0 20px;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles, .page-post section.last-news .wrapper .sub-wrapper.tiles, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles .tile, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile {
    width: 100%;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles .tile:nth-child(3) ~ .tile, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile:nth-child(3) ~ .tile, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile:nth-child(3) ~ .tile {
    margin-top: 20px;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles .tile + .tile, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile + .tile, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile + .tile {
    margin-left: 0;
    margin-top: 30px;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles .tile + .tile:nth-child(3n+1), .page-post section.last-news .wrapper .sub-wrapper.tiles .tile + .tile:nth-child(3n+1), .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile + .tile:nth-child(3n+1) {
    margin-left: 0;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link {
    padding: 0 0 40px;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .title, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .title, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .title {
    font-size: 1.25em;
    margin-top: 20px;
    padding: 0 30px;
  }
  .page-landing section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .description, .page-post section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .description, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles .tile .tile-link .description {
    font-size: 1.15em;
    margin-top: 20px;
    padding: 0 30px;
  }
}
.page-landing section.landing {
  color: #fff;
  padding: 80px 0 90px;
  background-color: #dc1f33;
  z-index: 10;
}
.page-landing section.landing::before, .page-landing section.landing::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.page-landing section.landing::before {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/global_design/illustration_red_waves_fading.webp");
  opacity: 0.06;
  z-index: 0;
}
.page-landing section.landing::after {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 80%);
  opacity: 0.2;
  z-index: -2;
}
.page-landing section.landing .wrapper {
  padding: 0 50px;
  width: 1024px;
  max-width: calc(90% - 100px);
  margin: 0 auto;
}
.page-landing section.landing .wrapper h1 {
  font-weight: 600;
  display: flex;
  align-items: flex-end;
  font-size: 1.75em;
}
.page-landing section.landing .wrapper h1 img.logo {
  height: 124px;
  display: inline-block;
  position: relative;
  top: -9px;
  margin-left: 20px;
}
.page-landing section.landing .wrapper .punchline {
  font-size: 1.34em;
  max-width: 550px;
  position: relative;
  margin-top: -15px;
}
.page-landing section.landing .wrapper .description {
  font-size: 1.15em;
  margin-top: 10px;
  max-width: 650px;
  opacity: 0.85;
}
.page-landing section.landing .illustration-3d-cubes {
  width: 450px;
  width: calc(200px + 15vw);
  height: 450px;
  height: calc(200px + 15vw);
  position: absolute;
  top: calc(100% - 150px);
  top: calc(100% - 18vw + 80px);
  right: -50px;
  z-index: 100;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  background-image: url("../img/global_design/illutration_cubes_3d.webp");
}

@media only screen and (max-width: 1000px) {
  .page-landing section.landing .illustration-3d-cubes {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .page-landing section.landing {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-landing section.landing .wrapper {
    padding: 0 40px;
    width: 100%;
    max-width: 100%;
  }
  .page-landing section.landing .wrapper h1 {
    font-size: 1.5em;
  }
  .page-landing section.landing .wrapper h1 img.logo {
    height: auto;
    width: 28%;
    display: inline-block;
    position: relative;
    top: -8px;
    margin-left: 20px;
  }
  .page-landing section.landing .wrapper .punchline {
    max-width: 100%;
    margin-top: 20px;
    font-size: 1.25em;
  }
  .page-landing section.landing .wrapper .description {
    max-width: 100%;
    font-size: 1.1em;
  }
  .page-landing section.landing .illustration-3d-cubes {
    display: none;
  }
}
.page-landing section.cooperative {
  z-index: 8;
}
.page-landing section.cooperative .wrapper {
  position: relative;
}
.page-landing section.cooperative .wrapper .light-bkgd-box {
  background: gray;
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 749px;
}
.page-landing section.cooperative .wrapper .top-wavy-separator,
.page-landing section.cooperative .wrapper .second-wavy-separator {
  position: absolute;
  z-index: 50;
  width: 100%;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.page-landing section.cooperative .wrapper .top-wavy-separator {
  top: 0;
  height: 200px;
  background-image: url("../img/global_design/separator_red_wave.svg");
}
.page-landing section.cooperative .wrapper .second-wavy-separator {
  top: 200px;
  height: 550px;
  background-image: url("../img/global_design/separator_red_wave_2.svg");
}
.page-landing section.cooperative .wrapper .box.alveole {
  width: 500px;
  height: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 90;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../img/global_design/shape_hexagon.svg");
}
.page-landing section.cooperative .wrapper .box.alveole.first {
  margin-top: 0px;
}
.page-landing section.cooperative .wrapper .box.alveole:nth-child(odd) {
  left: -200px;
}
.page-landing section.cooperative .wrapper .box.alveole:nth-child(even) {
  left: 200px;
}
.page-landing section.cooperative .wrapper .box.alveole + .box.alveole {
  margin-top: -270px;
}
.page-landing section.cooperative .wrapper .box.shadow.alveole {
  position: absolute;
  filter: blur(250px);
  z-index: 9;
  opacity: 0.4;
  background-image: url("../img/global_design/shape_hexagon_black.svg");
}
.page-landing section.cooperative .wrapper .box.shadow.alveole.first {
  left: calc((100% - 500px) / 2 - 200px);
  top: 0;
  margin-top: 0;
}
.page-landing section.cooperative .wrapper .box.shadow.alveole.second {
  left: calc((100% - 500px) / 2 + 200px + 200px);
  top: 30px;
  margin-top: 0;
  opacity: 0.1;
  filter: blur(100px);
}
.page-landing section.cooperative .wrapper .box.ghost.alveole {
  opacity: 0.3;
  background-image: url("../img/global_design/shape_hexagon.svg");
  z-index: 10;
}
.page-landing section.cooperative .wrapper .box.ghost.alveole.first {
  position: absolute;
  left: calc((100% - 500px) / 2 + 200px);
  top: calc(0% - 230px);
  margin-top: 0;
}
.page-landing section.cooperative .wrapper .box.ghost.alveole.second {
  position: absolute;
  left: calc((100% - 500px) / 2 - 600px);
  top: calc(0% - 230px);
  margin-top: 0;
}
.page-landing section.cooperative .wrapper .box.ghost.alveole.third {
  position: absolute;
  left: calc((100% - 500px) / 2 - 600px);
  top: calc(0% - 270px + 500px);
  margin-top: 0;
}
.page-landing section.cooperative .wrapper .box.ghost.alveole.fourth {
  position: absolute;
  left: calc((100% - 500px) / 2 + 600px);
  top: calc(0% - 270px + 270px);
  margin-top: 0;
}
.page-landing section.cooperative .wrapper .box.alveole {
  text-align: center;
}
.page-landing section.cooperative .wrapper .box.alveole .picto {
  display: inline-block;
  width: 140px;
  height: 64px;
  margin-top: 90px;
  transform: scale(0.85);
}
.page-landing section.cooperative .wrapper .box.alveole h3 {
  margin-top: 25px;
  font-size: 1.15em;
  color: #dc1f33;
  padding: 0 30px;
}
.page-landing section.cooperative .wrapper .box.alveole .description {
  width: calc(100% - 60px);
  width: 60%;
  margin: 10px auto 0;
  font-size: 1.04em;
  font-size: 1em;
}
.page-landing section.cooperative .wrapper .box.alveole.entreprise-de-tous .picto {
  transform: scale(1);
  background-image: url("../img/global_design/picto_hand.svg");
}
.page-landing section.cooperative .wrapper .box.alveole.redistribution-equitable .picto {
  background-image: url("../img/global_design/picto_diagram.svg");
}
.page-landing section.cooperative .wrapper .box.alveole.decisions-collegiales .picto {
  background-image: url("../img/global_design/picto_comitee.svg");
}
.page-landing section.cooperative .wrapper .box.alveole.avantages-concrets .picto {
  background-image: url("../img/global_design/picto_stars_trio.svg");
}

@media only screen and (max-width: 1000px) {
  .page-landing section.cooperative .wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 0 25px;
  }
  .page-landing section.cooperative .wrapper .box.alveole {
    width: calc((100% - 25px) / 2);
    height: auto;
    background: #fff;
    border-radius: 10px;
    padding-bottom: 40px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
    position: relative;
  }
  .page-landing section.cooperative .wrapper .box.alveole + .box.alveole {
    margin-left: 25px;
  }
  .page-landing section.cooperative .wrapper .box.alveole + .box.alveole:nth-child(2n+1) {
    margin-left: 0;
  }
  .page-landing section.cooperative .wrapper .box.alveole:nth-child(2) ~ .box.alveole {
    margin-top: 30px;
  }
  .page-landing section.cooperative .wrapper .box.alveole:nth-child(odd) {
    left: 0;
  }
  .page-landing section.cooperative .wrapper .box.alveole:nth-child(even) {
    left: 0;
  }
  .page-landing section.cooperative .wrapper .box.alveole + .box.alveole {
    margin-top: 0;
    margin-left: 0px;
  }
  .page-landing section.cooperative .wrapper .box.shadow.alveole {
    display: none;
  }
  .page-landing section.cooperative .wrapper .box.ghost.alveole {
    display: none;
  }
  .page-landing section.cooperative .wrapper .box.alveole .picto {
    margin-top: 50px;
  }
  .page-landing section.cooperative .wrapper .box.alveole .description {
    width: calc(100% - 60px);
  }
}
@media only screen and (max-width: 767px) {
  .page-landing section.cooperative .wrapper .light-bkgd-box {
    height: 1000px;
    top: 400px;
  }
  .page-landing section.cooperative .wrapper .top-wavy-separator {
    top: 400px;
    height: 100px;
  }
  .page-landing section.cooperative .wrapper .second-wavy-separator {
    top: 1250px;
    height: 150px;
  }
  .page-landing section.cooperative .wrapper .box.alveole {
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 10px;
    padding-bottom: 40px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
  }
  .page-landing section.cooperative .wrapper .box.alveole:nth-child(odd) {
    left: 0;
  }
  .page-landing section.cooperative .wrapper .box.alveole:nth-child(even) {
    left: 0;
  }
  .page-landing section.cooperative .wrapper .box.alveole + .box.alveole {
    margin-top: 20px;
  }
  .page-landing section.cooperative .wrapper .box.shadow.alveole {
    display: none;
  }
  .page-landing section.cooperative .wrapper .box.ghost.alveole {
    display: none;
  }
  .page-landing section.cooperative .wrapper .box.alveole .picto {
    margin-top: 60px;
  }
  .page-landing section.cooperative .wrapper .box.alveole h3 {
    font-size: 1.3em;
    padding: 0 10%;
  }
  .page-landing section.cooperative .wrapper .box.alveole .description {
    width: 100%;
    padding: 0 10%;
    margin: 10px auto 0;
    font-size: 1.1em;
  }
}
.page-landing section.expertises {
  z-index: 8;
  padding-top: 80px;
}
.page-landing section.expertises .wrapper {
  position: relative;
}
.page-landing section.expertises .wrapper .section-punchline {
  z-index: 100;
  position: relative;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles {
  position: relative;
  margin-top: 60px;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .light-bkgd-box {
  background: gray;
  background: white;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1250px;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .bottom-wavy-separator {
  position: absolute;
  z-index: 50;
  width: 100%;
  height: 1250px;
  left: 0;
  bottom: 2px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/global_design/separator_red_wave_3.svg");
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole {
  width: 480px;
  height: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 90;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole.first {
  margin-top: 0px;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole:nth-child(odd) {
  left: -210px;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole:nth-child(even) {
  left: 210px;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole + .box.alveole {
  margin-top: -240px;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole {
  position: relative;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .alveole-shape,
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .alveole-shape-shadow,
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .alveole-shape-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .alveole-shape {
  z-index: -1;
  margin-top: 0;
  background-image: url("../img/global_design/shape_hexagon_2.svg");
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .alveole-shape-shadow {
  filter: blur(30px);
  z-index: -2;
  opacity: 0.1;
  background-image: url("../img/global_design/shape_hexagon_2_black.svg");
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .alveole-shape-ghost {
  opacity: 0.05;
  background-image: url("../img/global_design/shape_hexagon_2_small.svg");
  z-index: -3;
  transform: scale(0.68);
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole {
  text-align: center;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .picto {
  display: inline-block;
  width: 140px;
  height: 64px;
  margin-top: 80px;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole h3 {
  margin-top: 25px;
  font-size: 1.15em;
  color: #dc1f33;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .description {
  width: 60%;
  margin: 10px auto 0;
  font-size: 1em;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole.data-analytics .alveole-shape-ghost {
  left: 60%;
  top: -10px;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole.data-analytics .picto {
  transform: scale(0.9);
  background-image: url("../img/global_design/picto_database.svg");
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole.agilite .alveole-shape-ghost {
  left: -105%;
  top: 0px;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole.agilite .picto {
  background-image: url("../img/global_design/picto_agility_scrum.svg");
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole.services-applicatifs .alveole-shape-ghost {
  left: 105%;
  top: 0px;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole.services-applicatifs .picto {
  background-image: url("../img/global_design/picto_puzzle.svg");
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole.cloud .alveole-shape-ghost {
  left: -105%;
  top: 0px;
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole.cloud .picto {
  transform: scale(0.8);
  background-image: url("../img/global_design/picto_cloud.svg");
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole.cloud .techno-logos {
  margin: 20px auto 0;
  width: 100%;
  height: 68px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../img/global_design/techno_logos_cloud.webp");
}
.page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole.notre-ecosysteme .picto {
  transform: scale(0.95);
  background-image: url("../img/global_design/picto_ecosystem.svg");
}

@media only screen and (max-width: 1000px) {
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles {
    display: flex;
    flex-wrap: wrap;
    padding: 0 25px;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole {
    width: calc((100% - 25px) / 2);
    height: auto;
    background: #fff;
    border-radius: 10px;
    padding-bottom: 40px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
    position: relative;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole + .box.alveole {
    margin-left: 25px;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole + .box.alveole:nth-child(2n+1) {
    margin-left: 0;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole:nth-child(2) ~ .box.alveole {
    margin-top: 30px;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole:nth-child(odd) {
    left: 0;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole:nth-child(even) {
    left: 0;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole + .box.alveole {
    margin-top: 0;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .alveole-shape,
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .alveole-shape-shadow,
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .alveole-shape-ghost {
    display: none;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .picto {
    margin-top: 40px;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .description {
    width: calc(100% - 60px);
  }
}
@media only screen and (max-width: 767px) {
  .page-landing section.expertises {
    padding-top: 40px;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles {
    margin-top: 40px;
    padding-bottom: 60px;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .light-bkgd-box {
    height: 550px;
    width: calc(100% + 80px);
    bottom: 0;
    left: -40px;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .bottom-wavy-separator {
    height: 550px;
    width: calc(100% + 80px);
    bottom: 2px;
    left: -40px;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole {
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 10px;
    padding-bottom: 40px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole:nth-child(odd) {
    left: 0;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole:nth-child(even) {
    left: 0;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole + .box.alveole {
    margin-top: 20px;
    margin-left: 0px;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .alveole-shape,
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .alveole-shape-shadow,
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .alveole-shape-ghost {
    display: none;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .picto {
    margin-top: 40px;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole h3 {
    font-size: 1.3em;
    padding: 0 10%;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole .description {
    width: 100%;
    padding: 0 10%;
    margin: 10px auto 0;
    font-size: 1.1em;
  }
  .page-landing section.expertises .wrapper .sub-wrapper.alveoles .box.alveole.cloud .techno-logos {
    margin: 20px auto 0;
    width: 100%;
    height: 68px;
  }
}
.page-landing section.cas-clients {
  padding: 100px 0;
  background: white;
  display: none;
}
.page-landing section.cas-clients .wrapper {
  position: relative;
}
.page-landing section.cas-clients .wrapper .section-title {
  color: #dc1f33;
  margin-bottom: 80px;
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles {
  display: flex;
  justify-content: space-between;
  width: 1150px;
  max-width: calc(85% - 100px);
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .page-landing section.cas-clients .wrapper .sub-wrapper.tiles {
    max-width: calc(100% - 100px);
  }
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles:hover .tile::before {
  left: 0;
  top: 0;
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile {
  position: relative;
  width: 31%;
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile::before, .page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile::after {
  content: "";
  position: absolute;
  border-radius: 15px;
  z-index: 0;
  width: 100%;
  height: calc(100% - 10px);
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile::before {
  background: #dc1f33;
  top: 18px;
  left: 8px;
  transition: top 0.15s, left 0.15s, width 0.15s, height 0.15s;
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile::after {
  content: "";
  position: absolute;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: white;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile:hover::before {
  top: -20px;
  left: -18px;
  width: calc(100% + 36px);
  height: calc(100% + 40px);
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile:hover::after {
  transform: scale(1.05);
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile:hover .tile-link .illustration-wrapper {
  transform: scale(1.08) translateY(-10px) !important;
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile .tile-link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 20px 20px 40px;
  border-radius: 10px;
  text-decoration: none;
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile .tile-link .illustration-wrapper {
  width: 100%;
  overflow: hidden;
  display: block;
  border-radius: 5px;
  transition: transform 0.15s;
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile .tile-link .illustration-wrapper img.illustration {
  width: 100%;
  transition: transform 0.15s;
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile .tile-link .title {
  color: #dc1f33;
  font-size: 1.25em;
  display: block;
  margin-top: 20px;
  padding: 0 10px;
  font-weight: 500;
}
.page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile .tile-link .description {
  color: #333;
  font-size: 1em;
  display: block;
  margin-top: 20px;
  padding: 0 10px;
}

@media only screen and (max-width: 1000px) {
  .page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile {
    width: 47%;
  }
  .page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile + .tile + .tile {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .page-landing section.cas-clients {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-landing section.cas-clients .wrapper .sub-wrapper.tiles {
    display: block;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }
  .page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile {
    width: 100%;
  }
  .page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile + .tile {
    margin-top: 40px;
  }
  .page-landing section.cas-clients .wrapper .sub-wrapper.tiles .tile .tile-link .description {
    width: 100%;
    font-size: 1.1em;
  }
}
.page-landing section.team {
  padding: 80px 0px;
  background: white;
  margin-top: -2px;
}
.page-landing section.team .wrapper {
  position: relative;
  background: #dc1f33;
  border-radius: 25px;
  padding: 50px;
  margin: 0 auto;
  width: 1150px;
  max-width: calc(85% - 100px);
}
.page-landing section.team .wrapper > .section-punchline {
  width: 500px;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members {
  width: 468px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 50px auto 100px;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members ~ .sub-wrapper.tiles.team-members {
  margin-bottom: 50px;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member {
  width: 126px;
  height: 126px;
  position: relative;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member + .tile.member {
  margin-left: 45px;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member + .tile.member:nth-child(3n+1) {
  margin-left: 0;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member:nth-child(3) ~ .tile.member {
  margin-top: 30px;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .portrait-box {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .portrait-box .bkgd-decoration {
  box-shadow: 0px 25px 100px 0px rgba(0, 0, 0, 0.08);
  background: white;
  width: 100%;
  height: calc(100% - 14px);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  z-index: 2;
  transition: background 0.25s;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .portrait-box .portrait {
  width: 100%;
  position: relative;
  z-index: 4;
  filter: grayScale(1);
  transition: filter 0.25s;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .portrait-box .linkedin-link {
  position: absolute;
  bottom: 0;
  left: 0;
  background: white;
  border-radius: 0 5px 0 0;
  text-align: center;
  z-index: 6;
  width: 60%;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .portrait-box .linkedin-link .linkedin-img {
  width: 100%;
  height: 70%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../img/social_networks/logo_LinkedIn_red.webp");
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .info-team-member-box {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: -15px;
  left: -30px;
  background: white;
  width: 460px;
  padding-left: 186px;
  height: calc(100% + 44px);
  border-radius: 10px;
  overflow: hidden;
  padding-right: 30px;
  box-shadow: 0px 25px 100px 0px rgba(0, 0, 0, 0.08);
  transform: scale(0.9);
  transition: opacity 0.25s, transform 0.25s;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .info-team-member-box .member-name {
  font-size: 1.15em;
  color: #dc1f33;
  margin: 0;
  margin-top: 26px;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .info-team-member-box .member-status {
  font-size: 1.05em;
  opacity: 0.7;
  margin: 0;
  font-weight: 500;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .info-team-member-box .member-description {
  opacity: 0.8;
  margin: 0;
  margin-top: 5px;
  line-height: 1em;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .info-team-member-box .linkedin-link {
  display: none;
  margin-top: 10px;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .info-team-member-box .linkedin-link .linkedin-img {
  width: 80px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  background-image: url("../img/social_networks/logo_LinkedIn_red.webp");
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active {
  z-index: 10;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover .portrait-box .bkgd-decoration, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active .portrait-box .bkgd-decoration {
  background: #dc1f33;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover .portrait-box .portrait, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active .portrait-box .portrait {
  filter: grayScale(0);
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover .info-team-member-box, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active .info-team-member-box {
  transform: scale(1);
  opacity: 1;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members.hall-of-fame .tile.member .portrait-box .bkgd-decoration {
  background: #3B3434;
}
.page-landing section.team .wrapper .sub-wrapper.tiles.team-members.hall-of-fame .tile.member .portrait-box .bkgd-decoration::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent */
  background: radial-gradient(ellipse at center, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.15;
}

@media only screen and (max-width: 1200px) {
  .page-landing section.team .wrapper > .section-punchline {
    width: 100%;
    padding: 0 50px;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .info-team-member-box {
    top: calc(100% + 10px);
    left: calc(-100% - 20px);
    width: calc(300% + 90px);
    padding: 30px;
    height: auto;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .info-team-member-box .member-name {
    margin-top: 0;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .info-team-member-box .linkedin-link {
    display: none;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member:nth-child(3n+1) .info-team-member-box {
    left: 0;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member:nth-child(3n+2) .info-team-member-box {
    left: calc(-100% - 20px);
    left: calc(-100% - 45px);
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member:nth-child(3n) .info-team-member-box {
    left: unset;
    right: 0;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active {
    z-index: 10;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover .portrait-box .bkgd-decoration, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active .portrait-box .bkgd-decoration {
    background: #ff5164;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover .portrait-box .portrait, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active .portrait-box .portrait {
    filter: grayScale(0);
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover .info-team-member-box, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active .info-team-member-box {
    transform: scale(1);
    opacity: 1;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover .info-team-member-box .linkedin-link, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active .info-team-member-box .linkedin-link {
    display: none;
  }
}
@media only screen and (max-width: 890px) {
  .page-landing section.team .wrapper {
    max-width: calc(100% - 50px);
  }
}
@media only screen and (max-width: 767px) {
  .page-landing section.team {
    padding-top: 40px;
  }
  .page-landing section.team .wrapper {
    padding: 30px;
    margin: 0 auto;
    width: 100%;
    max-width: calc(100% - 40px);
  }
  .page-landing section.team .wrapper > .section-punchline {
    width: 100%;
    padding: 0 20px;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members {
    width: 100%;
    margin: 30px auto 50px;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members ~ .sub-wrapper.tiles.team-members {
    margin-bottom: 40px;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member {
    width: calc((100% - 40px) / 3);
    height: calc((100% - 40px) / 3);
    position: relative;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member + .tile.member {
    margin-left: 20px;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member:nth-child(3) ~ .tile.member {
    margin-top: 20px;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .portrait-box .linkedin-link {
    display: none;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .info-team-member-box {
    top: calc(100% + 10px);
    left: calc(-100% - 20px);
    width: calc(300% + 40px);
    padding: 30px;
    height: auto;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .info-team-member-box .member-name {
    margin-top: 0;
    font-size: 1.4em;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .info-team-member-box .member-status {
    font-size: 1.3em;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member .info-team-member-box .member-description {
    font-size: 1.2em;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member:nth-child(3n+1) .info-team-member-box {
    left: 0;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member:nth-child(3n+2) .info-team-member-box {
    left: calc(-100% - 20px);
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.member:nth-child(3n) .info-team-member-box {
    left: unset;
    right: 0;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active {
    z-index: 10;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover .portrait-box .bkgd-decoration, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active .portrait-box .bkgd-decoration {
    background: #ff5164;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover .portrait-box .portrait, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active .portrait-box .portrait {
    filter: grayScale(0);
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover .info-team-member-box, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active .info-team-member-box {
    transform: scale(1);
    opacity: 1;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover .info-team-member-box .linkedin-link, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active .info-team-member-box .linkedin-link {
    display: inline-block;
    margin-top: 20px;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile:hover .info-team-member-box .linkedin-link .linkedin-img, .page-landing section.team .wrapper .sub-wrapper.tiles.team-members .tile.active .info-team-member-box .linkedin-link .linkedin-img {
    width: 80px;
    height: 20px;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members.hall-of-fame .tile.member .portrait-box .bkgd-decoration {
    background: #3B3434;
  }
  .page-landing section.team .wrapper .sub-wrapper.tiles.team-members.hall-of-fame .tile.member .portrait-box .bkgd-decoration::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent */
    background: radial-gradient(ellipse at center, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.15;
  }
}
.page-landing section.contact .wrapper {
  position: relative;
  border-radius: 25px;
  padding: 40px 50px 20px;
  margin: 0 auto;
  width: 1150px;
  max-width: 100%;
  text-align: center;
}
.page-landing section.contact .wrapper > .section-punchline {
  width: 750px;
  max-width: 100%;
}
.page-landing section.contact .wrapper .cta.contact-link {
  background: #fff;
  color: #dc1f33;
  border-radius: 100px;
  padding: 14px 60px;
  display: inline-block;
  text-decoration: none;
  font-size: 1.35em;
  margin-top: 40px;
  font-weight: 600;
  position: relative;
  height: 66px;
  transition: background 0.15s, color 0.15s;
}
.page-landing section.contact .wrapper .cta.contact-link::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.1;
  border-radius: 100px;
  transition: transform 0.15s, width 0.15s, height 0.15s, left 0.15s, top 0.15s;
}
.page-landing section.contact .wrapper .cta.contact-link:hover::before {
  width: calc(100% + 20px);
  height: calc(100% + 16px);
  left: -10px;
  top: -8px;
}
.page-landing section.contact .wrapper .cta.contact-link:hover .picto {
  margin-right: 20px;
  width: 26px;
  height: 26px;
  width: 34px;
  height: 34px;
  margin-right: 26px;
}
.page-landing section.contact .wrapper .cta.contact-link .picto {
  width: 34px;
  height: 34px;
  background-image: url("../img/global_design/picto_paper_plane.svg");
  margin-right: 26px;
  margin-right: 20px;
  width: 26px;
  height: 26px;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  z-index: 5;
  top: -2px;
  transition: transform 0.15s, margin 0.15s, width 0.15s, height 0.15s;
}
.page-landing section.contact .wrapper .cta.contact-link .text-link {
  position: relative;
  z-index: 5;
}
.page-landing section.contact .wrapper .addresses {
  margin-top: 50px;
  opacity: 0.9;
}
.page-landing section.contact .wrapper .addresses .address-box {
  display: inline-block;
  color: #fff;
}
.page-landing section.contact .wrapper .addresses .address-box + .address-box::before {
  content: "";
  margin: -4px 20px 0;
  display: inline-block;
  height: 20px;
  width: 1px;
  background: #fff;
  opacity: 0.9;
  vertical-align: middle;
}
.page-landing section.contact .wrapper .addresses .address-box .picto {
  background-image: url("../img/global_design/picto_geo_pin.svg");
  margin-right: 10px;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
@media only screen and (max-width: 767px) {
  .page-landing section.contact {
    padding-bottom: 60px;
  }
  .page-landing section.contact .wrapper {
    padding: 40px 30px 20px;
    width: 100%;
    max-width: 100%;
  }
  .page-landing section.contact .wrapper > .section-title {
    margin-bottom: 30px;
    font-size: 1.7em;
  }
  .page-landing section.contact .wrapper > .section-punchline {
    width: 100%;
    font-size: 1.2em;
  }
  .page-landing section.contact .wrapper .cta.contact-link {
    padding: 14px 0;
    font-size: 1.15em;
    margin-top: 40px;
    height: auto;
    width: 100%;
  }
  .page-landing section.contact .wrapper .cta.contact-link:hover .picto {
    margin-right: 10px;
    width: 22px;
    height: 22px;
    top: -2px;
  }
  .page-landing section.contact .wrapper .cta.contact-link .picto {
    margin-right: 10px;
    width: 22px;
    height: 22px;
    top: -2px;
  }
  .page-landing section.contact .wrapper .addresses {
    margin-top: 50px;
    display: block;
  }
  .page-landing section.contact .wrapper .addresses .address-box {
    display: block;
    font-size: 1em;
  }
  .page-landing section.contact .wrapper .addresses .address-box + .address-box {
    margin-top: 10px;
  }
  .page-landing section.contact .wrapper .addresses .address-box + .address-box::before {
    display: none;
  }
  .page-landing section.contact .wrapper .addresses .address-box .picto {
    margin-right: 10px;
    width: 14px;
    height: 14px;
    top: -2px;
  }
}
.page-post, .page-customer-case {
  background: #fff;
  color: #333;
}
.page-post section.landing, .page-customer-case section.landing {
  color: #fff;
  padding: 40px 0 90px;
  z-index: 10;
}
.page-post section.landing::before, .page-post section.landing::after, .page-customer-case section.landing::before, .page-customer-case section.landing::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 300px;
}
.page-post section.landing::before, .page-customer-case section.landing::before {
  background-color: #dc1f33;
  z-index: -3;
}
.page-post section.landing::after, .page-customer-case section.landing::after {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 80%);
  opacity: 0.2;
  z-index: -2;
}
.page-post section.landing .top-wavy-separator, .page-customer-case section.landing .top-wavy-separator {
  position: absolute;
  z-index: 50;
  width: 100%;
  left: 0;
  top: 299px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/global_design/separator_red_wave.svg");
}
.page-post section.landing .wrapper, .page-customer-case section.landing .wrapper {
  padding: 0 50px;
  max-width: calc(90% - 100px);
  margin: 0 auto;
}
.page-post section.landing .wrapper .back-link-box, .page-customer-case section.landing .wrapper .back-link-box {
  margin: 0 auto;
  display: block;
  text-align: center;
  margin-bottom: 60px;
}
.page-post section.landing .wrapper .back-link-box .back-link, .page-customer-case section.landing .wrapper .back-link-box .back-link {
  text-decoration: none;
  color: #fff;
  font-size: 0.95em;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.page-post section.landing .wrapper .back-link-box .back-link:hover, .page-customer-case section.landing .wrapper .back-link-box .back-link:hover {
  opacity: 1;
}
.page-post section.landing .wrapper .back-link-box .back-link .picto, .page-customer-case section.landing .wrapper .back-link-box .back-link .picto {
  content: "";
  display: inline-block;
  width: 14px;
  height: 10px;
  background-image: url("../img/global_design/picto_arrow_left.svg");
  margin-right: 10px;
}
.page-post section.landing .wrapper h1, .page-customer-case section.landing .wrapper h1 {
  font-weight: 600;
  text-align: center;
  font-size: 1.75em;
}
.page-post section.landing .wrapper h1 img.logo, .page-customer-case section.landing .wrapper h1 img.logo {
  height: 124px;
  display: inline-block;
  position: relative;
  top: -9px;
  margin-left: 20px;
}
.page-post section.landing .wrapper .meta-information, .page-customer-case section.landing .wrapper .meta-information {
  font-size: 1.05em;
  margin-top: -10px;
  opacity: 0.75;
  text-align: center;
}
.page-post section.landing .wrapper .meta-information .date::before, .page-customer-case section.landing .wrapper .meta-information .date::before {
  content: "";
  margin: -4px 20px 0;
  display: inline-block;
  height: 20px;
  width: 1px;
  background: #fff;
  opacity: 0.9;
  vertical-align: middle;
}
.page-post section.landing .main-illustration, .page-customer-case section.landing .main-illustration {
  width: 1000px;
  max-width: 100%;
  position: relative;
  z-index: 50;
  margin: 60px auto 0;
}
.page-post section.landing .main-illustration img, .page-customer-case section.landing .main-illustration img {
  width: 100%;
  border-radius: 5px;
}

@media only screen and (max-width: 767px) {
  .page-post section.landing, .page-customer-case section.landing {
    padding: 40px 0 50px;
  }
  .page-post section.landing::before, .page-post section.landing::after, .page-customer-case section.landing::before, .page-customer-case section.landing::after {
    width: 100%;
    height: 400px;
  }
  .page-post section.landing .top-wavy-separator, .page-customer-case section.landing .top-wavy-separator {
    width: 100%;
    top: 399px;
    height: 100px;
  }
  .page-post section.landing .wrapper, .page-customer-case section.landing .wrapper {
    padding: 0 40px;
    max-width: 100%;
  }
  .page-post section.landing .wrapper .back-link-box, .page-customer-case section.landing .wrapper .back-link-box {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .page-post section.landing .wrapper .back-link-box .back-link, .page-customer-case section.landing .wrapper .back-link-box .back-link {
    font-size: 1.2em;
  }
  .page-post section.landing .wrapper .back-link-box .back-link:hover, .page-customer-case section.landing .wrapper .back-link-box .back-link:hover {
    opacity: 1;
  }
  .page-post section.landing .wrapper .back-link-box .back-link .picto, .page-customer-case section.landing .wrapper .back-link-box .back-link .picto {
    width: 14px;
    height: 10px;
  }
  .page-post section.landing .wrapper h1, .page-customer-case section.landing .wrapper h1 {
    font-size: 1.75em;
  }
  .page-post section.landing .wrapper h1 img.logo, .page-customer-case section.landing .wrapper h1 img.logo {
    height: 124px;
    margin-left: 20px;
  }
  .page-post section.landing .wrapper .meta-information, .page-customer-case section.landing .wrapper .meta-information {
    font-size: 1.05em;
    margin-top: 40px;
    z-index: 100;
    position: relative;
  }
  .page-post section.landing .wrapper .meta-information .author, .page-customer-case section.landing .wrapper .meta-information .author {
    display: block;
  }
  .page-post section.landing .wrapper .meta-information .date, .page-customer-case section.landing .wrapper .meta-information .date {
    display: block;
    margin-top: 10px;
    margin-bottom: 30px;
    text-transform: capitalize;
  }
  .page-post section.landing .wrapper .meta-information .date::before, .page-customer-case section.landing .wrapper .meta-information .date::before {
    display: none;
  }
  .page-post section.landing .main-illustration, .page-customer-case section.landing .main-illustration {
    width: 100%;
    margin: 40px auto 0;
  }
}
.page-post section.post-content .wrapper, .page-customer-case section.post-content .wrapper {
  width: 1000px;
  max-width: 90%;
  padding-left: 120px;
  padding-right: 50px;
  position: relative;
  margin: 20px auto 0;
}
.page-post section.post-content .wrapper ul.social-networks-btns, .page-customer-case section.post-content .wrapper ul.social-networks-btns {
  position: absolute;
  left: 20px;
  top: 0;
}
.page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  cursor: pointer;
  transition: opacity 0.15s;
}
.page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn + li.social-network-btn, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn + li.social-network-btn {
  margin-top: 10px;
}
.page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn:hover, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn:hover {
  opacity: 0.6;
}
.page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn .picto, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn .picto {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(0.7);
}
.page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn.facebook, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn.facebook {
  background-color: #4f93fb;
}
.page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn.facebook .picto, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn.facebook .picto {
  background-image: url("../img/blog/logo_Facebook_white.svg");
  transform: scale(0.85);
  position: relative;
  top: 4px;
}
.page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn.twitter, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn.twitter {
  background-color: #000;
}
.page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn.twitter .picto, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn.twitter .picto {
  background-image: url("../img/blog/logo_X_white.svg");
  transform: scale(0.6);
}
.page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn.pinterest, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn.pinterest {
  background-color: #ca2127;
}
.page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn.pinterest .picto, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn.pinterest .picto {
  background-image: url("../img/blog/logo_Pinterest_white.svg");
  transform: scale(0.6);
}
.page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn.youtube, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn.youtube {
  background-color: #ff0000;
}
.page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn.youtube .picto, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn.youtube .picto {
  background-image: url("../img/blog/logo_Youtube_white.svg");
}
.page-post section.post-content .wrapper h2.subtitle,
.page-post section.post-content .wrapper h3.subtitle,
.page-post section.post-content .wrapper h4.subtitle, .page-customer-case section.post-content .wrapper h2.subtitle,
.page-customer-case section.post-content .wrapper h3.subtitle,
.page-customer-case section.post-content .wrapper h4.subtitle {
  color: #dc1f33;
  font-weight: 500;
  margin: 50px 0 16px;
}
.page-post section.post-content .wrapper .social-networks-btns + h2.subtitle, .page-customer-case section.post-content .wrapper .social-networks-btns + h2.subtitle {
  margin-top: 0px;
}
.page-post section.post-content .wrapper h2.subtitle, .page-customer-case section.post-content .wrapper h2.subtitle {
  font-weight: 600;
  font-size: 1.35em;
}
.page-post section.post-content .wrapper > p, .page-customer-case section.post-content .wrapper > p {
  font-size: 1.15em;
  margin: 0 0 16px;
}
.page-post section.post-content .wrapper h3.subtitle, .page-customer-case section.post-content .wrapper h3.subtitle {
  font-weight: 500;
  font-size: 1.25em;
}
.page-post section.post-content .wrapper h4.subtitle, .page-customer-case section.post-content .wrapper h4.subtitle {
  font-weight: 500;
  font-size: 1.15em;
}
.page-post section.post-content .wrapper ul.list,
.page-post section.post-content .wrapper ol.list, .page-customer-case section.post-content .wrapper ul.list,
.page-customer-case section.post-content .wrapper ol.list {
  padding: 0;
  font-size: 1.15em;
  margin-bottom: 36px;
}
.page-post section.post-content .wrapper ul.list li.list-item,
.page-post section.post-content .wrapper ol.list li.list-item, .page-customer-case section.post-content .wrapper ul.list li.list-item,
.page-customer-case section.post-content .wrapper ol.list li.list-item {
  padding-left: 1.5em;
}
.page-post section.post-content .wrapper ul.list li.list-item + li.list-item,
.page-post section.post-content .wrapper ol.list li.list-item + li.list-item, .page-customer-case section.post-content .wrapper ul.list li.list-item + li.list-item,
.page-customer-case section.post-content .wrapper ol.list li.list-item + li.list-item {
  margin-top: 0.6em;
}
.page-post section.post-content .wrapper ul.list li.list-item, .page-customer-case section.post-content .wrapper ul.list li.list-item {
  margin-left: 0.4em;
  position: relative;
}
.page-post section.post-content .wrapper ul.list li.list-item::before, .page-customer-case section.post-content .wrapper ul.list li.list-item::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0.4em;
  display: inline-block;
  height: 5px;
  width: 5px;
  border-radius: 100%;
  background: #dc1f33;
}
.page-post section.post-content .wrapper ol.list li.list-item, .page-customer-case section.post-content .wrapper ol.list li.list-item {
  list-style: unset;
  padding-left: 0.8em;
  margin-left: 1.4em;
}
.page-post section.post-content .wrapper strong, .page-customer-case section.post-content .wrapper strong {
  font-weight: 600;
}
.page-post section.post-content .wrapper blockquote, .page-customer-case section.post-content .wrapper blockquote {
  display: block;
  width: 100%;
  background-color: #fbf5f4;
  padding: 40px 40px 40px 90px;
  position: relative;
  font-size: 1.2em;
  border-radius: 10px;
  margin: 60px 0 60px 0;
}
.page-post section.post-content .wrapper blockquote .picto, .page-customer-case section.post-content .wrapper blockquote .picto {
  position: absolute;
  top: -6px;
  left: 30px;
  width: 20px;
  height: 20px;
  background-image: url("../img/global_design/picto_quote.svg");
}
.page-post section.post-author .wrapper, .page-customer-case section.post-author .wrapper {
  width: 1000px;
  max-width: 90%;
  position: relative;
  margin: 20px auto 0;
  padding: 0 0 0 120px;
  overflow: hidden;
}
.page-post section.post-author .wrapper::before, .page-post section.post-author .wrapper::after, .page-customer-case section.post-author .wrapper::before, .page-customer-case section.post-author .wrapper::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(0, 0, 0, 0.08);
  margin-top: 70px;
  margin-bottom: 70px;
}
.page-post section.post-author .wrapper .sub-wrapper, .page-customer-case section.post-author .wrapper .sub-wrapper {
  display: flex;
}
.page-post section.post-author .wrapper .sub-wrapper .portrait-box, .page-customer-case section.post-author .wrapper .sub-wrapper .portrait-box {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.page-post section.post-author .wrapper .sub-wrapper .portrait-box .bkgd-decoration, .page-customer-case section.post-author .wrapper .sub-wrapper .portrait-box .bkgd-decoration {
  box-shadow: 0px 25px 100px 0px rgba(0, 0, 0, 0.08);
  background: white;
  background: #dc1f33;
  width: 100%;
  height: calc(100% - 14px);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  z-index: 2;
  transition: background 0.25s;
}
.page-post section.post-author .wrapper .sub-wrapper .portrait-box .portrait, .page-customer-case section.post-author .wrapper .sub-wrapper .portrait-box .portrait {
  width: 100%;
  position: relative;
  z-index: 4;
}
.page-post section.post-author .wrapper .sub-wrapper .portrait-box .linkedin-link, .page-customer-case section.post-author .wrapper .sub-wrapper .portrait-box .linkedin-link {
  position: absolute;
  bottom: 0;
  left: 0;
  background: white;
  border-radius: 0 5px 0 0;
  text-align: center;
  z-index: 6;
  width: 60%;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-post section.post-author .wrapper .sub-wrapper .portrait-box .linkedin-link .linkedin-img, .page-customer-case section.post-author .wrapper .sub-wrapper .portrait-box .linkedin-link .linkedin-img {
  width: 100%;
  height: 70%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../img/social_networks/logo_LinkedIn_red.webp");
}
.page-post section.post-author .wrapper .sub-wrapper .info-team-member-box, .page-customer-case section.post-author .wrapper .sub-wrapper .info-team-member-box {
  margin-left: 40px;
}
.page-post section.post-author .wrapper .sub-wrapper .info-team-member-box .member-name, .page-customer-case section.post-author .wrapper .sub-wrapper .info-team-member-box .member-name {
  font-size: 1.15em;
  color: #dc1f33;
  margin: 0;
  margin-top: 26px;
}
.page-post section.post-author .wrapper .sub-wrapper .info-team-member-box .member-status, .page-customer-case section.post-author .wrapper .sub-wrapper .info-team-member-box .member-status {
  font-size: 1em;
  opacity: 0.7;
  margin: 0;
  font-weight: 500;
}
.page-post section.post-author .wrapper .sub-wrapper .info-team-member-box .member-description, .page-customer-case section.post-author .wrapper .sub-wrapper .info-team-member-box .member-description {
  font-size: 0.95em;
  opacity: 0.8;
  margin: 0;
  margin-top: 5px;
  line-height: 1em;
}
.page-post section.last-news, .page-customer-case section.last-news {
  padding: 0;
  margin: 0;
  background: white;
}
.page-post section.last-news .wrapper, .page-customer-case section.last-news .wrapper {
  width: 1000px;
  max-width: 90%;
  position: relative;
  margin: 0 auto 0;
  padding: 0 0 0 120px;
}
.page-post section.last-news .wrapper .section-sub-title, .page-customer-case section.last-news .wrapper .section-sub-title {
  margin-left: 0;
  margin-top: 0;
}
.page-post section.last-news .wrapper .section-sub-title::after, .page-customer-case section.last-news .wrapper .section-sub-title::after {
  display: none;
}
.page-post section.last-news .wrapper .sub-wrapper.tiles, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .page-post section.post-content .wrapper, .page-customer-case section.post-content .wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
    margin: 20px auto 0;
  }
  .page-post section.post-content .wrapper ul.social-networks-btns, .page-customer-case section.post-content .wrapper ul.social-networks-btns {
    position: relative;
    left: 0;
    top: 0;
  }
  .page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn {
    display: inline-block;
    width: 34px;
    height: 34px;
  }
  .page-post section.post-content .wrapper ul.social-networks-btns li.social-network-btn + li.social-network-btn, .page-customer-case section.post-content .wrapper ul.social-networks-btns li.social-network-btn + li.social-network-btn {
    margin-left: 10px;
    margin-top: 0;
  }
  .page-post section.post-content .wrapper h2.subtitle,
  .page-post section.post-content .wrapper h3.subtitle,
  .page-post section.post-content .wrapper h4.subtitle, .page-customer-case section.post-content .wrapper h2.subtitle,
  .page-customer-case section.post-content .wrapper h3.subtitle,
  .page-customer-case section.post-content .wrapper h4.subtitle {
    margin: 40px 0 16px;
  }
  .page-post section.post-content .wrapper .social-networks-btns + h2.subtitle, .page-customer-case section.post-content .wrapper .social-networks-btns + h2.subtitle {
    margin-top: 40px;
  }
  .page-post section.post-content .wrapper h2.subtitle, .page-customer-case section.post-content .wrapper h2.subtitle {
    font-size: 1.35em;
  }
  .page-post section.post-content .wrapper > p, .page-customer-case section.post-content .wrapper > p {
    font-size: 1.15em;
    margin: 0 0 16px;
  }
  .page-post section.post-content .wrapper h3.subtitle, .page-customer-case section.post-content .wrapper h3.subtitle {
    font-size: 1.25em;
  }
  .page-post section.post-content .wrapper h4.subtitle, .page-customer-case section.post-content .wrapper h4.subtitle {
    font-size: 1.15em;
  }
  .page-post section.post-content .wrapper ul.list,
  .page-post section.post-content .wrapper ol.list, .page-customer-case section.post-content .wrapper ul.list,
  .page-customer-case section.post-content .wrapper ol.list {
    font-size: 1.15em;
    margin-bottom: 36px;
  }
  .page-post section.post-content .wrapper blockquote, .page-customer-case section.post-content .wrapper blockquote {
    width: 100%;
    padding: 40px 40px 40px 40px;
    font-size: 1.2em;
    margin: 60px 0 60px 0;
  }
  .page-post section.post-content .wrapper blockquote .picto, .page-customer-case section.post-content .wrapper blockquote .picto {
    top: -6px;
    left: 30px;
    width: 20px;
    height: 20px;
  }
  .page-post section.post-author .wrapper, .page-customer-case section.post-author .wrapper {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0;
    padding: 0 40px 0;
  }
  .page-post section.post-author .wrapper::before, .page-post section.post-author .wrapper::after, .page-customer-case section.post-author .wrapper::before, .page-customer-case section.post-author .wrapper::after {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .page-post section.post-author .wrapper .sub-wrapper, .page-customer-case section.post-author .wrapper .sub-wrapper {
    display: flex;
  }
  .page-post section.post-author .wrapper .sub-wrapper .portrait-box, .page-customer-case section.post-author .wrapper .sub-wrapper .portrait-box {
    width: 120px;
    height: 120px;
  }
  .page-post section.post-author .wrapper .sub-wrapper .portrait-box .linkedin-link, .page-customer-case section.post-author .wrapper .sub-wrapper .portrait-box .linkedin-link {
    width: 60%;
    height: 20px;
  }
  .page-post section.post-author .wrapper .sub-wrapper .portrait-box .linkedin-link .linkedin-img, .page-customer-case section.post-author .wrapper .sub-wrapper .portrait-box .linkedin-link .linkedin-img {
    width: 100%;
    height: 70%;
  }
  .page-post section.post-author .wrapper .sub-wrapper .info-team-member-box, .page-customer-case section.post-author .wrapper .sub-wrapper .info-team-member-box {
    margin-left: 40px;
  }
  .page-post section.post-author .wrapper .sub-wrapper .info-team-member-box .member-name, .page-customer-case section.post-author .wrapper .sub-wrapper .info-team-member-box .member-name {
    font-size: 1.4em;
    margin-top: 6px;
  }
  .page-post section.post-author .wrapper .sub-wrapper .info-team-member-box .member-status, .page-customer-case section.post-author .wrapper .sub-wrapper .info-team-member-box .member-status {
    font-size: 1.2em;
  }
  .page-post section.post-author .wrapper .sub-wrapper .info-team-member-box .member-description, .page-customer-case section.post-author .wrapper .sub-wrapper .info-team-member-box .member-description {
    font-size: 1.15em;
    margin-top: 5px;
  }
  .page-post section.last-news, .page-customer-case section.last-news {
    padding: 0;
    margin: 0;
  }
  .page-post section.last-news .wrapper, .page-customer-case section.last-news .wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 0;
    padding: 0 40px 0;
  }
  .page-post section.last-news .wrapper .section-sub-title, .page-customer-case section.last-news .wrapper .section-sub-title {
    margin-left: 0;
    margin-top: 0;
    padding: 0;
  }
  .page-post section.last-news .wrapper .sub-wrapper.tiles, .page-customer-case section.last-news .wrapper .sub-wrapper.tiles {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    padding-bottom: 50px;
  }
}
.page-404 {
  background: #dc1f33;
  color: white;
}
.page-404.light {
  background: white;
  color: #333;
}
.page-404 .root-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 550px;
}
.page-404 .root-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 80%);
  opacity: 0.2;
  z-index: -2;
}
.page-404 section.unique {
  text-align: center;
  padding: 50px 40px 120px;
  width: 100%;
}
.page-404 section.unique h1 {
  margin: 40px 0;
}
.page-404 section.unique p {
  font-size: 1.1em;
}
@media only screen and (max-width: 767px) {
  .page-404 section.unique p {
    font-size: 1.4em;
  }
}
.page-404 section.unique p img.illustration-404 {
  width: auto;
  height: 150px;
  filter: brightness(100);
}
.page-404 section.unique p.mention {
  width: 500px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.page-404 section.unique a.text-link {
  color: #dc1f33;
  font-size: 1.1em;
}
@media only screen and (max-width: 767px) {
  .page-404 section.unique a.text-link {
    font-size: 1.4em;
  }
}
.page-404 section.unique a.text-link:hover {
  opacity: 0.7;
}

.page-404.light {
  background: white;
  color: #333;
}
.page-404.light .root-container::before {
  display: none;
}
.page-404.light section.unique p img.illustration-404 {
  filter: none;
}/*# sourceMappingURL=styles.css.map */