/* Liste Actus */
.liste_actualites {
  flex-wrap:wrap!important;
}

.liste_actualites .actualites-list__item {
  flex:inherit!important;
  width:23%;
  margin:1%;
}

/* ------------------------------------------- 
  MAX-WIDTH 1500px
------------------------------------------- */
@media (max-width: 1500px) {
  .liste_actualites .actualites-list__item {
    width: 31.33%;
  }
}

/* ------------------------------------------- 
  MAX-WIDTH 1000px
------------------------------------------- */
@media (max-width: 1000px) {
  .liste_actualites .actualites-list__item {
    width:48%;    
  }
}

/* ------------------------------------------- 
  MAX-WIDTH 700px
------------------------------------------- */
@media (max-width: 700px) {
  .liste_actualites .actualites-list__item {
    width: 100%;
    margin: 0 0 10% 0;
  }
}