.combined_blocks {
  display: flex;
  justify-content: space-between;
}

.block {
  width: 30%;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
}

.block-title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  padding: 0px 15px;
  border-bottom: 2px solid #2B6385;
  min-height: 75px;
  background-color: #F5FAFA;
}

.block-title h2 {
  font-size: 16px;
  margin: 0;
}

.link_outils_first {
  padding: 20px;
}

.link_outils_first, .link_outils, .contact_info {
  list-style-type: none;
}

.link_outils_first li, .link_outils li, .contact_info p, .link_outils_first p {
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
}

@media screen and (max-width:992px) {
  .combined_blocks {
    flex-wrap: wrap;
  }

  .block {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    margin: 10px 0px;
  }
}