.reviews{
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
}
.card_item_review {
   flex-basis: 32%;
   display: flex;
   flex-direction: column;
   align-items: center;
 }
 .info-container p {
  font-size: 16px;
  font-weight: 700;
}
 .info-container .card-title {
  white-space: nowrap;
  font-size: 21px;
}
 .reviews_button {
   display: flex;
   justify-content: center;
   margin: 20px 0;
 }
 .card_item_review p {
   margin: 0 0 10px;
 }
 .reviews_button a {
   display: inline-flex;
   padding: 10px 20px;
   background-color: rgba(255,226,55,.8);
   color: #000;
   font-weight: 700;
   text-decoration: none;
   border-radius: 30px;
 }
 .reviews_button a:hover {
   background: rgba(255,226,55,.8);
 }
 .card_item_review a {
   display: inline-flex;
   padding: 0px 26px;
   background-color: #171781;
   color: #fff;
   text-decoration: none;
   outline: none;
   border-radius: 12px;
 }
 .card_item_review a:hover {
   background-color: #171781a6;
 }
 .card_item_review img {
   border-radius: 50%;
 }
 .image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.info-container p {
  text-align: center;
}
.ball-slider.bad {
  margin-bottom: 15px;
}
.reviews .image-container button {
  background-position: bottom;
  background-color: transparent;
  border: none;
  text-align: center;
  color: var(--white);
  width: 200px;
  height: 43px;
  padding: 0 0 0 15px;
  margin: -30px auto 0;
  background-size: contain;
  cursor: pointer;
  display: block;
  position: relative;
}
.card_item_box .slider {
  color: var(--black);
  width: calc(100% - 40px);
  display: inline-block;
  text-align: center;
  background-color: #f2f2f2;
  border-radius: 10px;
}
.card_item_box {
  padding: 20px;
  background: #fff;
  margin: 10px;
  box-shadow: 1px 1px 4px 1px rgb(0 0 0 / 20%);
}

 @media screen and (max-width:770px){
  .card_item_review {
    flex-basis: 48%;
  }
 }

 @media screen and (max-width:480px){
  .card_item_review {
    flex-basis: 100%;
  }
 }