.pg_priem_row {
  border: 1px solid #000000;
  border-radius: 18px;
  padding: 34px 60px 0;
}
@media screen and (max-width: 768px) {
  .pg_priem_row {
    padding: 20px 15px 0;
  }
}
.pg_priem_row .item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 260px;
  grid-template-columns: 1fr 260px;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #4bbecf;
  margin: 0 0 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pg_priem_row .item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
  }
}
.pg_priem_row .item::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 18px;
  background: url(./img/triangle.svg) no-repeat center;
  background-size: cover;
  left: 0;
  top: 12px;
}
.pg_priem_row .item .item_title {
  font-size: 22px;
  font-weight: 400;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .pg_priem_row .item .item_title {
    font-size: 16px;
  }
}
.pg_priem_row .item .desc {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pg_priem_row .item .desc {
    text-align: left;
    font-size: 16px;
    padding-left: 30px;
  }
}
.pg_priem_row .item .desc span {
  display: block;
  -ms-flex-wrap: 400;
  flex-wrap: 400;
  font-size: 16px;
  color: #898989;
}