.pd_section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
  row-gap: 16px;
}

.pd-block {
  font-size: 14px;
}


.pd-header {
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 990px) {
  .pd_section {
    grid-template-columns:1fr;
  }
}