html {
  scroll-behavior: smooth;
}
.document-warpper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.document {
  width: 95%;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 40px;
  padding: 20px;
  margin: 16px 16px 40px 16px;
}
.document p,
.document a,
.document h1,
.document h2,
.document h3,
.document h4,
.document li {
  color: #00939d !important;
}
.document h1 {
  font-size: 20px;
  margin: 10px 0;
}
.document h2 {
  font-size: 18px;
  margin: 20px 0;
}
.document p {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  margin: 10px 0;
}
.document ul {
  margin-left: 20px;
  list-style-type: "- ";
}
.document ul > li,
.document ol > li {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  margin: 10px 20px;
}
.document ol {
  margin-left: 20px;
}
.sheet {
  width: 70%;
  border: solid 1px #00939d;
  margin: 40px auto;
}
.row {
  display: flex;
  border-bottom: 1px solid #00939d;
}
.row > p {
  margin: 0;
  padding: 20px 10px;
}
.row > h3 {
  margin: 0;
  text-align: center;
  padding: 20px 10px;
}
.row > *:first-child {
  width: 50%;
  border-right: solid 1px #00939d;
}
.row > *:last-child {
  width: 50%;
}
.row:last-child {
  border-bottom: none;
}

.sheet.three-cols .row > * {
  width: 33.33% !important;
  border-right: solid 1px #00939d;
}
.sheet.three-cols .row > *:last-child {
  border-right: none;
  width: 33.33% !important;
}
.sheet.three-cols .row > *:first-child {
  width: 33.33% !important;
}

.important-note {
  border-left: 5px solid #00939d;
  background: rgba(0, 147, 157, 0.1);
  padding: 15px;
  margin: 20px 0;
  border-radius: 8px;
}
