div.avantages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
@media screen and (max-width: 767px) {
  div.avantages {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
}
div.avantages div.avantage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  div.avantages div.avantage {
    padding-bottom: 20px;
  }
}
div.avantages div.avantage:nth-child(n) {
  border-right: 1px solid #C0E2DB;
}
@media screen and (max-width: 767px) {
  div.avantages div.avantage:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid #C0E2DB;
  }
}
div.avantages div.avantage:last-child {
  border-right: 0;
}
@media screen and (max-width: 767px) {
  div.avantages div.avantage:last-child {
    border-bottom: 0;
  }
}
div.avantages div.avantage div.content > span {
  display: block;
  font-size: 32px;
  line-height: 34px;
  font-family: "Freigeist-XConBlack";
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}
div.avantages div.avantage div.content div.description {
  text-align: center;
  font-size: 15px;
}
div.avantages div.avantage div.content div.description p {
  text-align: center;
}
