.reviews {
  padding-bottom: 0;
  padding-top: 0;
}

.rev_title {
  font-weight: 600;
  font-size: 20px;
  line-height: 29px;
  padding-bottom: 16px;
}

.rev_top_t p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 23.4px;
}

.rev_items {
  margin-top: 43px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

.rev_item {
  position: relative;
}

.rev_ico {
  position: absolute;
  top: -19px;
  left: -9px;
  z-index: 2;
}

.rev_content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.rev_text {
  background-color: #f5f5f5;
  padding: 12px;
  border-radius: 8px;
  min-height: 99px;
}

.rev_text .stars {
  color: #FFC107;
  margin-bottom: 5px;
}

.rev_text p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
}

.rev_arr {
  position: absolute;
  bottom: 51px;
  left: 3px;
}

.rev_person {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-left: 31px;
}

.rev_person img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
}

.rev_p_info {
  display: flex;
  flex-direction: column;
}

.rev_p_info h5 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 23.4px;
}

.rev_p_info span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  color: #26262699;
}

.rev_btn {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

#show_rev {
  cursor: pointer;
  padding: 10px 25px;
  border-radius: 20px;
  border: 1px solid #262626;
  font-size: 1rem;
  line-height: 23.4px;
  text-align: center;
  background-color: #ffff;
}

#show_rev:hover {
  background-color: #edebeb;
}

@media(max-width:980px) {
  .reviews {
    /* padding-left: 15px; */
    /* padding-right: 15px; */
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

@media(max-width:820px) {
  .rev_text {
    min-height: 132px;
  }
}

@media(max-width:690px) {
  .rev_text {
    min-height: 144px;
  }
}

@media(max-width:640px) {
  .rev_items {
    grid-template-columns: repeat(2, 1fr);
  }

  .rev_text {
    min-height: 100px;
  }
}

@media(max-width:500px) {
  .rev_items {
    grid-template-columns: repeat(1, 1fr);
  }

  .rev_text {
    min-height: 100%;
  }
}