@charset "UTF-8";
.rewiews__heading {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
.rewiews__description p {
  flex-shrink: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.rewiews__tables {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
.rewiews__raiting {
  flex: 0 0 176px;
  display: flex;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(47, 43, 67, 0.04);
}
.rewiews__raiting p {
  margin: 0;
  color: #2F2B43;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 100%;
}
.rewiews__raiting span {
  color: #2F2B43;
  font-size: 18px;
  font-weight: 600;
}
.rewiews__cards {
  display: flex;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

i.star {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg width='18' height='17' viewBox='0 0 18 17' fill='none' xmlns='http://www.w3.org/2000/svg'%0A%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.88583 1.50269C8.34269 0.582435 9.65928 0.582435 10.1161 1.50269L11.9332 5.16273L15.998 5.75347C17.0146 5.90122 17.429 7.15048 16.6855 7.87051L13.7471 10.7161L14.4405 14.7354C14.6164 15.7556 13.5427 16.518 12.6362 16.0441L9.00099 14.1432L5.36573 16.0441C4.4593 16.518 3.38553 15.7556 3.56151 14.7354L4.25484 10.7161L1.31648 7.87051C0.572976 7.15048 0.987359 5.90122 2.00398 5.75347L6.06881 5.16273L7.88583 1.50269Z' fill='%23F5AF40' /%3E%3C/svg%3E%0A") center center/contain no-repeat;
}

.rewiew {
  flex: 1 1 calc(33.3333333333% - 20px);
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 20px;
  background: rgba(47, 43, 67, 0.04);
}
.rewiew__author {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}
.rewiew__avatar {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 999px;
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
}
.rewiew__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.rewiew__column h3 {
  margin: 0;
  color: #140A32;
  font-size: 18px;
  font-weight: 600;
}
.rewiew__column p {
  margin: 0;
  color: rgba(47, 43, 67, 0.5);
  font-size: 16px;
  font-weight: 400;
}
.rewiew__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.rewiew__header span {
  color: #140A32;
  text-align: right;
  font-size: 16px;
  font-weight: 500;
}
.rewiew__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rewiew__text {
  --lines: 10;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #140A32;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.8;
}
.rewiew.is-expanded .rewiew__text {
  -webkit-line-clamp: initial;
  display: block;
  overflow: visible;
}
.rewiew__btn {
  background: transparent;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  color: #123E8F;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
}
.rewiew__footer {
  margin-top: 20px;
  width: auto;
  display: flex;
  padding: 5px 15px;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  background: #FFF;
  color: rgba(47, 43, 67, 0.7);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
  /* --- сервисы --- */
}
.rewiew__footer::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
.rewiew__footer a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.rewiew__footer.yandex::before {
  background-image: url("../img/icons/yandex.png");
}
.rewiew__footer.y2gis::before {
  background-image: url("../img/icons/gis.png");
}
.rewiew__footer.google::before {
  background-image: url("../img/icons/google.png");
}
.rewiew__footer.prodoctor::before {
  background-image: url("../img/icons/pd.png");
}
.rewiew__footer.sber::before {
  background-image: url("../img/icons/sber.png");
}
.rewiew__footer.napopravku::before {
  background-image: url("../img/icons/yandex.png");
}

@media (max-width: 1100px) {
  .rewiew {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .rewiews__heading {
    flex-direction: column;
  }
  .rewiews__raiting {
    flex: 1 1 50%;
  }
  .rewiew {
    flex: 1 1 100%;
  }
}
.rewiews__card:nth-child(9n+1) .rewiew__avatar,
.rewiews__card:nth-child(9n+6) .rewiew__avatar,
.rewiews__card:nth-child(9n+8) .rewiew__avatar {
  background: #F285AA;
}

/* B */
.rewiews__card:nth-child(9n+2) .rewiew__avatar,
.rewiews__card:nth-child(9n+4) .rewiew__avatar,
.rewiews__card:nth-child(9n+9) .rewiew__avatar {
  background: #6CA632;
}

/* C */
.rewiews__card:nth-child(9n+3) .rewiew__avatar,
.rewiews__card:nth-child(9n+5) .rewiew__avatar,
.rewiews__card:nth-child(9n+7) .rewiew__avatar {
  background: #8585CC;
}/*# sourceMappingURL=reviews.css.map */