.polices-and-reports {
  width: 100%;
  padding: 102px max(calc((100% - var(--view-port)) / 2), 5%);

  padding-bottom: 46px;

  display: flex;
  flex-direction: column;
}

.polices-and-reports-title {
  color: var( --blue-700);
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  

  margin-bottom: 32px;
}

.polices-and-reports-list {
  display: grid;

  grid-template-columns: 1fr 1fr 1fr;

  gap: 30px;
}

.spacing {
  width: 1px;
  height: 128px;
}

@media screen and (max-width: 1000px) {
  .polices-and-reports-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 750px) {
  .polices-and-reports-list {
    grid-template-columns: 1fr;
  }
}