.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 4px;
  text-align: center;
}

/* Création de 4 colonnes égales l'une à côté de l'autre */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}
.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 260px;
}
.lead img {
  width: 750px;
}

/* Responsive layout - 2 colonnes au lieu de 4 */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - 2 colonnes l'une au-dessus de l'autre au lieu d'être côte à côte */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
  .lead img {
    width: 290px;
  }
}
/* Description */
.guide h2 {
  font-weight: 400;
}
.item-divider {
  margin: 2rem 0; /* Space out the Bootstrap <hr> more */
}
.item-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.05rem;
}

/* -- RESPONSIVE CSS -- */
@media (min-width: 40em) {
  .item-heading {
    font-size: 50px;
  }
}
@media (min-width: 62em) {
  .item-heading {
    margin-top: 0;
  }
}
