body main section#banner {
  background-image: url("/assets/document.webp");
}
body main section .documents-flexbox {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
}
body main section .documents-flexbox .document {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  width: 11rem;
  height: 100%;
  background: var(--bgprimary);
  padding: 0.75rem;
  border-radius: 1.875rem;
}
body main section .documents-flexbox .document .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 3rem;
  height: 3rem;
}
body main section .documents-flexbox .document .img.green {
  background-image: url("/assets/icons/file-color-green-icon.svg");
}
body main section .documents-flexbox .document .img.blue {
  background-image: url("/assets/icons/file-color-blue-icon.svg");
}
body main section .documents-flexbox .document .img.red {
  background-image: url("/assets/icons/file-color-red-icon.svg");
}
body main section .documents-flexbox .document .desc {
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
}/*# sourceMappingURL=documents.css.map */