#header {
  padding-top: 8px;
  padding-left: 24px;
  padding-right: 24px;
}

#inner-header {
  border-bottom: 1px solid #d5d9dd;
  padding-bottom: 17px;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 56px;
  margin-bottom: 24px;
}

#top-nav-container {
  display: flex;
  margin-left: 120px;

  a {
    display: flex;
    font-weight: 600;
  }
}

#content {
  display: flex;
  flex-direction: column;
  margin-left: 260px;
  margin-right: 260px;
}

#subheader {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 16px;
}

footer {
  #links {
    display: flex;
    align-items: center;
    gap: 8px;

    a {
      font-family: Inter;
      font-size: 14px;
      font-weight: 600;
      line-height: 21px;
      text-align: center;
    }

    p {
      /* divider */
      font-family: Neue Haas Grotesk Text Pro;
      font-size: 14px;
      font-weight: 500;
      line-height: 20px;
      text-align: center;
    }
  }
}

#inner-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 48px;
  margin-right: 48px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid #d5d9dd;
}

#copyright {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  color: #4c4d4b;
}

#logos {
  display: flex;
  gap: 40px;
}

#content-header {
  margin-bottom: 4.25rem;
}

@media (max-width: 900px) {
  #content {
    margin-left: 5%;
    margin-right: 5%;
  }

  #top-nav-container {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;

    a {
      margin-left: 5%;
      width: 0;
      flex-basis: 100%;
    }
  }
}
