/*  Bouton d'accueil */
.btn-accueil a {
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-accueil a:hover {
    background-color:  #f6f8f9 !important;
    color: #fa6980 !important;
  }
  
/*  Agrandissement des blocs de voyage */
.bloc-voyage {
    transition: all 0.3s ease;
}

.bloc-voyage:hover {
    transform: scale(1.05);
}

/*  Transition de  couleur navigation */
.navigation {
    transition: all 0.3s ease;
}

.navigation:hover {
    color: #ff4d4d !important;
}