section.block.block-valeurs {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  section.block.block-valeurs {
    padding-bottom: 0;
  }
}
section.block.block-valeurs .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  section.block.block-valeurs .container {
    flex-direction: column-reverse;
  }
}
section.block.block-valeurs .container .title {
  width: calc(var(--col) * 4);
  height: fit-content;
  display: block;
}
@media screen and (max-width: 768px) {
  section.block.block-valeurs .container .title {
    width: 100%;
  }
}
section.block.block-valeurs .container .valeurs {
  width: var(--col-6);
}
@media screen and (max-width: 768px) {
  section.block.block-valeurs .container .valeurs {
    width: 100%;
    margin-bottom: 30px;
  }
}