/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/* 2. Remove default margin */
* {
  margin: 0;
}
/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}
/* 6. Improve media defaults */
/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}
/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
/*
    10. Create a root stacking context
  */
#root,
#__next {
  isolation: isolate;
}
table,
th,
td {
  border-collapse: collapse;
}
:root {
  --basefont: "Space Grotesk", sans-serif;
  --primary-col: #404041;
  --primary-col-50: #dcdcdc;
  --highlight-col: #E60000;
  --highlight-col-50: rgba(230, 0, 0, 0.5);
  --secondary-col: #283B8F;
  --secondary-col-50: #283b8f76;
  --borders: 2px;
}
html {
  background-image: url('../images/bg.jpg');
  background-repeat: repeat-y;
  background-size: contain;
  min-height: 100vh;
}
body {
  max-width: 90rem;
  margin: 0 auto;
  font-family: var(--basefont);
  padding: 0 1rem;
  background-color: white;
}
.logos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90% 10%;
  grid-template-columns: 90% 10%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem;
}
.logos a.apcche-logo img {
  height: 116px;
}
.logos a.ea-logo img {
  display: block;
  margin: 0 auto;
  width: 60px;
  height: auto;
}
nav {
  background-color: #F3F0F0;
}
nav ul {
  display: -ms-grid;
  display: grid;
  list-style-type: none;
  grid-template-columns: repeat(auto-fit, minmax(115px, 7rem));
  padding-left: 0;
}
nav ul li {
  text-align: center;
}
nav ul li a {
  display: block;
}
nav ul li a:link,
nav ul li a:visited {
  padding: 1rem 0;
  text-decoration: none;
  color: var(--primary-col);
}
@media screen and (max-width: 60rem) {
  nav ul li a:link,
  nav ul li a:visited {
    color: white;
    font-size: 1.5rem;
  }
}
nav ul li a:hover {
  background-color: white;
}
nav ul li a:hover,
nav ul li a.current {
  color: var(--highlight-col);
}
ul.navigation {
  padding-left: 0;
}
ul.navigation li.current a {
  font-weight: 700;
  background-color: var(--highlight-col);
  color: white;
}
#mainNav.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#mainNav.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}
/* Menu Button */
.menu-toggle {
  background: none;
  border: none;
  color: black;
  font-size: 2.5rem;
  cursor: pointer;
  display: none;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 60rem) {
  .menu-toggle {
    display: block;
  }
}
.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}
ul.subnav {
  list-style-type: none;
  padding-left: 0;
}
ul.subnav li {
  letter-spacing: -0.025rem;
}
ul.subnav li a:link,
ul.subnav li a:visited {
  display: block;
  padding: 0.7rem;
  color: var(--primary-col);
  text-decoration: none;
  background-color: var(--primary-col-50);
}
ul.subnav li a:hover {
  color: white;
  background-color: var(--secondary-col-50);
}
ul.subnav li.current a {
  background-color: var(--secondary-col);
  font-weight: bold;
  color: white;
}
section.banner {
  background-color: var(--primary-col);
  position: relative;
}
@media screen and (max-width: 60rem) {
  section.banner {
    height: 182px;
    overflow: hidden;
  }
}
section.banner img {
  display: block;
  max-width: 100%;
}
@media screen and (max-width: 60rem) {
  section.banner img {
    max-width: none;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
section.banner .heading-container {
  border-radius: var(--borders);
  position: absolute;
  width: 70%;
  background-color: rgba(230, 0, 0, 0.9);
  margin: 0;
  padding: 0;
  top: 50%;
  left: 0%;
  -webkit-transform: translate(15%, -50%);
          transform: translate(15%, -50%);
}
@media screen and (max-width: 60rem) {
  section.banner .heading-container {
    width: 96%;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    height: 10rem;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
section.banner h1 {
  padding: 1rem;
  color: white;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1;
  margin-top: 0;
}
@media screen and (max-width: 60rem) {
  section.banner h1 {
    font-size: 2rem;
  }
}
section.content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70% 2rem auto;
  grid-template-columns: 70% auto;
  direction: ltr;
  gap: 2rem;
  max-width: 110ch;
  padding: 3rem 0rem;
  margin: 0 auto;
}
@media screen and (max-width: 60rem) {
  section.content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
section.content h2,
section.content p {
  color: var(--primary-col);
}
section.content h2 {
  font-size: 1.8rem;
  text-wrap: balance;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 2rem;
}
section.content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  max-width: 60ch;
}
table {
  width: 100%;
  text-align: left;
}
table tr,
table td {
  padding: 0.5rem;
  vertical-align: top;
}
table tr th,
table td th {
  padding: 0.5rem;
  color: white;
}
table thead {
  background-color: var(--highlight-col);
}
table thead tr {
  font-size: 1.2rem;
  padding: 0.5rem;
}
table.global-members {
  width: 100%;
}
@media screen and (max-width: 60rem) {
  table.global-members tbody tr {
    text-align: center;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
table.global-members td {
  margin: 0;
}
table.global-members tbody tr td {
  vertical-align: middle;
}
table.global-members td.member-logo {
  width: 38%;
}
table.global-members td.member-title {
  padding-left: 1rem;
}
table.global-members td.member-url {
  text-align: right;
}
@media screen and (max-width: 60rem) {
  table.global-members td.member-url {
    text-align: center;
    border-bottom: 1px solid red;
    padding-bottom: 2rem;
  }
}
table.global-members tbody td {
  border-bottom: 1px solid red;
}
@media screen and (max-width: 60rem) {
  table.global-members tbody td {
    border-bottom: none;
  }
}
table.congress_history tr:nth-of-type(even),
table.board-members tr:nth-of-type(even) {
  background-color: var(--primary-col-50);
}
@media screen and (max-width: 60rem) {
  .sidebar {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.sidebar img {
  max-width: 90%;
  -webkit-box-shadow: 10px 10px 20px #999;
          box-shadow: 10px 10px 20px #999;
}
footer {
  background-color: var(--highlight-col);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border-radius: var(--borders);
}
footer p {
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  letter-spacing: -0.03rem;
}
@media screen and (max-width: 60rem) {
  footer p {
    text-align: center;
  }
}
a.edit-page,
a.edit-cms {
  position: fixed;
  bottom: 0;
  left: 0;
}
a.edit-page:link,
a.edit-cms:link,
a.edit-page:visited,
a.edit-cms:visited {
  background-color: red;
  font-size: 1rem;
  color: white;
  padding: 0.5rem;
  text-decoration: none;
}
a.edit-page:hover,
a.edit-cms:hover {
  background-color: black;
}
a.edit-cms {
  bottom: 2.5rem;
}
