/*Styles for accolades page*/
.accolade_list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-left: 12px;
  margin-right: 12px;
}

.accolade_list--item {
  /* width: 17rem; */
  width: 100%;
}

@media screen and (min-width: 476px) and (max-width: 768px) {
  .accolade_list {
    flex-wrap: wrap;
  }
  .accolade_list--item {
    width: 100%;
    padding-bottom: 36px;
  }
}

@media screen and (max-width: 475px) {
  .accolade_list {
    flex-wrap: wrap;
  }
  .accolade_list--item {
    width: 100%;
    padding-bottom: 36px;
  }
}
