*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
}
html {
  font-family: Arial, sans-serif;
}
blockquote,
li,
p {
  /* user agent lh varies, but 1.2 is given on mdn, they recommend 1.5 for paragraph for accessibility / readability */
  line-height: 1.52;
}
/* new media queries (px not rem) */
@media (min-width: 768px) {
  blockquote,
  li,
  p {
    line-height: 1.42;
  }
}
/* adding h1 to text-center */
h1,
h2 {
  text-align: center;
}
ul {
  list-style: none;
  padding: 0;
}
ol {
  padding-left: 2rem;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.list-checkmark,
.list-disc {
  padding-left: 2rem;
}
.list-checkmark {
  list-style-image: url(https://d2z65klgtz99km.cloudfront.net/img/checkmark1.png);
}
.list-disc {
  list-style-type: disc;
}

.cta {
  display: block;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #2580b5;
  font-size: 1.65rem;
}
.cta.cta-button {
  border-radius: 0.25rem;
  box-shadow: 1px 3px 5px #000;
  color: white;
  font-size: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 16.667rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: background-color ease-in-out 0.2s;
  width: 100%;
}
.cta-button:link,
.cta-button:visited {
  background-color: #07a007;
}
.cta-button:hover,
.cta-button:focus {
  background-color: #00d400;
}
.cta-button:active {
  background-color: #030;
}
/* new */
.cta-subtext {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-align: center;
}

/* new */
.flow-sm > * + * {
  margin-top: 0.5rem;
}
.flow > * + * {
  margin-top: 1rem;
}
.text-white {
  color: #fff;
}
.text-black {
  color: #000;
}
.text-red {
  color: #c00;
}
.bg-white {
  background-color: #fff;
}
.bg-gray {
  background-color: #eee;
}
.bg-black {
  background-color: #000;
}
.text-center {
  text-align: center;
}
.bold {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
.underline {
  text-decoration: underline;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-evenly {
  justify-content: space-evenly;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-center {
  justify-content: center;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.block {
  display: block;
}
.hidden {
  display: none;
}
.float-left {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.float-right {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
.clear {
  clear: both;
}
/* new */
.nobreak {
  white-space: nowrap;
}
.mt-0 {
  margin-top: 0;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  /* new */
  .md\:nobreak {
    white-space: nowrap;
  }
  .md\:block {
    display: block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:float-left {
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
  .md\:float-right {
    float: right;
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
  .md\:mt-0 {
    margin-top: 0;
  }
}
@media (min-width: 1366px) {
  .lg\:block {
    display: block;
  }
  .lg\:hidden {
    display: none;
  }
}

/* page specific styles */

/* nav */
nav {
  width: 100%;
  position: sticky;
  top: 0;
  background: white;
  z-index: 50;
  box-shadow: 0 0 2px 2px #eee;
}

.flex-nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.logo {
  width: 100%;
  max-width: 200px;
  max-width: clamp(150px, 22vw, 200px);
}

.nav-buttons {
  display: flex;
  justify-content: flex-end;
}

nav a,
nav button {
  color: var(--blue-dark);
  text-decoration: none;
  font-size: var(--nav-font-size);
  font-family: var(--roboto);
  padding: 0 2rem;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
}

nav a:hover {
  background-color: #eee;
}

@media (max-width: 650px) {
  nav a {
    padding: 0.5rem;
  }
}

@media (max-width: 349px) {
  nav a {
    padding: 0.25rem;
  }
}

/* / nav */
/* footer */
.footer {
  background: var(--blue-dark);
  color: #ccc;
  padding: 2rem 0.5rem;
}

.footer-links {
  padding: 1em;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-links a {
  color: #e6f1f7;
  text-decoration: none;
  font-weight: bold;
  font-family: var(--roboto);
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer p {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 16px;
  padding: 0.5em 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 1rem;
  }

  .footer p,
  .footer-links a {
    font-size: 0.875rem;
  }

  .footer-links {
    gap: 10px;
  }
}

/* misc */
.center-text {
  text-align: center;
}

.no-bottom-marg {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.mt-1 {
  margin-top: 2rem;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.font-md {
  font-size: 1.5rem;
}
