.text-orange {
  color: #FF9501;
}

.formation-card {
  height: 100%;
  max-width: 100%;
  transition: transform 0.3s ease;
}
.formation-card:hover {
  transform: translateY(-5px);
}

.formation-card img {
  height: 160px;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

.btn-animated {
  transition: all 0.3s ease;
  border-radius: 25px;
}
.btn-animated:hover {
  transform: scale(1.05);
  background-color: #FF9501;
  color: #fff;
  border-color: #FF9501;
}
