:root {
  --primary-color: #756f6f;
  --secondary-color: #6e6d76; /* menu-gray */
  --background-color: #f8f9fa;
  --white-color: #fff;
  --menu-color: #6e6d76;
  --menu-hover-color: #333333;
  --green-color: #114779;
  --red-dot-color: #ed3337;
  --lightgray-color: #afadad;
}
main {
  margin: 3rem 0;
}
.contact-wrapper {
  min-height: 30rem;
}
.contact-section {
  margin-bottom: 2rem;
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  display: none;
}

.contact-section .contact-header {
  color: var(--green-color);
  margin-bottom: 1rem;
  font-size: 24px;
  text-align: center;
  margin-bottom: 5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.entry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 1rem;
  margin-bottom: 1rem;
}

.entry-details {
  display: flex;
  flex-direction: column;
  color: var(--menu-color);
  gap: 0.5rem;
}
.contact-section .entry-details p {
  font-size: 18px;
  line-height: 1.4;
}
.contact-section .entry-details p.organization {
  /* font-size: 1.2rem; */
  font-weight: 500;
}
.contact-section .entry-details p a,
.contact-section .entry-details p a:visited {
  color: var(--menu-color);
  text-decoration: none;
}
.contact-section .entry-details p a:hover,
.contact-section .entry-details p a:active {
  color: var(--green-color);
}

.entry-details p.province-abb,
.entry-details p.province {
  color: var(--green-color);
  margin-bottom: 1rem;
}
.entry-details p.province-abb {
  font-size: 1.3rem;
}

.entry-details p.province {
  font-size: 1.2rem;
}
.tab-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}
.tab {
  /* border: 1px solid #ccc; */
  background-color: #f1f1f1;
  display: inline-flex;
  justify-content: center;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #ccc;
}
.tabcontent {
  display: block;
}
.footnote p {
  font-size: 14px;
  color: var(--lightgray-color);
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  margin-top: 2rem;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .entry {
    grid-template-columns: repeat(2, 1fr);
  }
  .tab {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .tab {
    flex-direction: column;
  }
  .entry {
    grid-template-columns: repeat(1, 1fr);
  }
}
