@import url(font.css);
@import url(grid.css);
@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined);

* {
  box-sizing: border-box;
  font-family: "Made Evolve Sans", Arial, Helvetica, sans-serif;
  background-color: white;
  color: #666666;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100vh;
}

header,
main {
  margin: 0 1rem;
}

main {
  flex-grow: 1;
}

footer,
footer * {
  background: #036491;
  color: white;
}

footer {
  padding: 0 1rem;
}

footer a {
  color: #FFD343;
  text-decoration: none;
}

footer a:hover {
  color: white;
}

p {
  line-height: 1.7rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #036491;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

a {
  color: #3E8125;
}

a:hover {
  color: #036491;
}

header {
  height: 4rem;
  position: sticky;
  top: 0;
}

.logo {
  height: 4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.logo img {
  max-height: 2rem;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0;
  z-index: 999;
}

.nav-links.open {
  width: 100%;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.nav-icon {
  position: absolute;
  right: 0.5rem;
  top: 1.25rem;
  display: flex;
  justify-content: flex-end;
  text-decoration: none;
}

.nav-links.open a {
  display: unset;
}

.nav-link {
  display: none;
}

.nav-link {
  color: black;
  text-decoration: none;
  padding: 0.2rem 0;
}

.nav-link:last-of-type {
  padding-bottom: 1rem;
}

.nav-link:hover {
  color: #3E8125;
}

.nav-link.active {
  color: #3E8125;
}

.nav-link.active:hover {
  color: black;
}

.outline-button {
  text-decoration: none;
  padding: 0.2rem 0.3rem;
  border-radius: 3px;
  border: 1px solid #3E8125;
}

.outline-button:hover {
  border: 1px solid #036491;
}

.quote {
  border-left: #036491 5px solid;
  padding-left: 1.2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0
}

input {
  background-color: #eee;
  border-width: 0;
  border-radius: 0;
  font-size: 1rem;
  padding: 1rem;
}

textarea {
  background-color: #eee;
  width: 100%;
  min-height: 8rem;
  border-width: 0;
  border-radius: 0;
  font-size: 1rem;
  padding: 1rem;
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.focus-text {
  font-size: 2rem;
  color: #036491;
}

@media (prefers-color-scheme: dark) {
  * {
    background-color: #333333;
    color: #d4d4d4;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a {
    color: #04A6F1;
  }

  a {
    color: #8CBD79;
  }

  a:hover {
    color: #04A6F1;
  }

  .nav-link {
    color: white;
  }

  .nav-link:hover {
    color: #8CBD79;
  }

  .nav-link.active {
    color: #8CBD79;
  }

  .nav-link.active:hover {
    color: white;
  }

  .quote {
    border-color: #04A6F1;
  }

  .focus-text {
    color: #04A6F1;
  }
}

/* Large phones, tablets in portrait */
@media only screen and (min-width: 481px) {}

/* Laptops, tablets in landscapes, small desktop monitors */
@media only screen and (min-width: 769px) {
  .nav-link {
    padding: unset;
  }

  .nav-link:last-of-type {
    padding-bottom: unset;
  }

  .nav-link {
    display: block;
  }

  a.nav-icon {
    display: none;
  }
}

/* Larger desktop monitors */
@media only screen and (min-width: 1280px) {
  .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
  }
}