.cards-formation {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-formation {
  display: flex;
  padding: 25px 20px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 20px;
}

.card-content-formation {
  font-size: 16px;
  font-weight: 500;
}

.card-content-formation ul {
  margin: 10px 0 0 20px;
}

.green-border {
  border: 1px solid #42baa5;
}

.purple-border {
  border: 1px solid purple;
}

.gray-border {
  border: 1px solid gray;
}

.orange-border {
  border: 1px solid orange;
}

.banner_section {
  display: flex;
  padding: 30px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: #f4f4f4;
}

.banner_content {
  display: flex;
  padding: 10px 0px 10px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
}

.banner_content h3 {
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .cards-formation {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .card-formation {
    flex: 1;
    min-width: 0;
  }

  .banner_section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
}
