* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Host Grotesk", sans-serif, sans-serif;
}
body {
  color: #222;
  background: #fff;
}
/* Header */
.site-header {
  text-align: center;
  padding: 22px 0;
}
.logo-img {
  width: 120px;
  height: auto;
}
/* Mobile */
@media (max-width: 640px) {
  .logo-img {
    width: 70px;
  }
}
/* Hero */
.hero img {
  width: 100%;
  display: block;
}
/* Board */
.board {
  padding: 70px 6%;
  text-align: center;
}
.board h2 {
  font-size: 28px;
  margin-bottom: 50px;
  font-weight: 200;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
}
.card img {
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card h3 {
  margin-top: 14px;
  width: 200px;
  font-size: 15px;
  font-weight: 400;
  color: #272726;
  align-items: center;
}
.card p {
  width: 200px;
  font-size: 14px;
  color: #6D6C69;
  margin-top: 4px;
  font-weight: 200;
  align-items: center;
}
/* Documents */
.documents {
  background: #F8F6F0;
  padding: 70px 6%;
}
.doc-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 300;
  color: #272726;
}
.doc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 35px 0;
  border-top: 1px solid #ddd;
  font-weight: 200;
}
.doc-col h4 {
  font-size: 25px;
  margin-bottom: 12px;
  font-weight: 400;
}
.doc-col a {
  display: block;
  font-size: 14px;
  color: #716B63;
  text-decoration: underline;
  line-height: 1.6;
  margin-bottom: 4px;
}
/* Mobile */
@media (max-width: 640px) {
  .doc-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* Contact */
.contact {
  background: #A7ABA2;
  text-align: center;
  padding: 80px 20px;
  font-weight: 200;
  margin-top: 10px
}
.contact h2 {
  font-size: 50px;
  margin-bottom: 22px;
  font-weight: 200;
}
.contact p a {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 200;
  text-decoration: underline;
  color: #272726;
}
/* Footer */
.footer {
  background: #aeb2a6;
  text-align: center;
  padding: 30px 20px;
  font-size: 13px;
}
/* RESPONSIVE */
/* Tablet */
@media (max-width: 1024px) {
  .board-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Mobile */
@media (max-width: 640px) {
  .board-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}