#container {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 80px auto;
  align-items: stretch;
  flex-wrap: wrap;
}

div.review-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-radius: 10px;
  width: 30%;
  min-height: 420px;
  background-color: white;
  padding: 54px 34px 44px;
  margin: 10px 1%;
  box-sizing: border-box;
}

@media (max-width: 1300px) {
  #container {
    flex-direction: column;
    width: unset;
    align-items: center;
  }

  div.review-item {
    width: 90%;
  }
}



div.review-item p b{
  display: block;
  text-align: center;
  margin-top: 20px;
}
