.testimonials .section__title-bold {
  font-family: 'Roboto';
  letter-spacing: -0.5px;
}

@media (max-width: 450px) {
  .testimonials .section__title-bold {
    font-size: 24px;
    line-height: 28px;
  }
}

.reviews {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 25px 0px;
}
.reviews__column {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review {
  background-color: rgb(28, 28, 28);
  border-radius: 20px;
  border: 1px solid #666666;
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
}
.review__header {
  display: flex;
  align-items: center;
  gap: 15px;
}
.review__avatar {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.review__avatar img {
  width: 100%;
  height: 100%;
}
.review__author {
  color: rgb(158, 158, 158);
  font-family: 'Inter';
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.review__rate {
  margin-top: 2px;
  display: flex;
  padding-bottom: 2px;
}
.review__rate img {
  width: 12px;
  height: 12px;
}
.review__content {
  color: rgb(173, 173, 173);
  font-size: 12px;
  font-family: 'Inter';
  font-weight: 500;
  line-height: 19.2px;
  margin-top: 15px;
}

@media (max-width: 1080px) {
  .reviews {
    padding: 0 20px;
    padding-bottom: 20px;
    gap: 12px;
  }
  .reviews__column {
    flex: 0 0 calc((100% - 24px) / 3);
  }
}

@media (max-width: 768px) {
  .reviews {
    padding-top: 10px;
    flex-direction: column;
  }
}