*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

/*** FONTS ***/

/*** COLORS ***/

/* Media Query Mixin */

/* Based off of: http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/ */

body footer,
body div#newsletter-signup div.constrain {
  width: 100%;
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}

body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element legend.checkboxlist-instructions {
  margin-bottom: 20px;
  line-height: 1.5em;
}

body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element button {
  padding: 10px 25px;
  display: inline-block;
  -webkit-appearance: none;
  border: none;
  background-color: #8eda44;
  border-radius: 40px;
  cursor: pointer;
  font-family: "Gotham SSm A", "Gotham SSm B";
  color: #363636;
  font-size: 0.9em;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media screen and (min-width: 768px) {
  body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element button {
    padding: 14px 40px;
  }
}

body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element button:hover,
body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element button:focus {
  background-color: #7ac047;
}

/* Media Query Mixin */

/* Based off of: http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/ */

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #363636;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
 * Spin
 */

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */

.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.noscroll {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.is-desktop header div.container div.dropdown-menu nav#nav > ul > li:hover > a {
  border-bottom-color: #8eda44;
}

body.is-desktop header div.container div.dropdown-menu nav#nav > ul > li:hover ul.sub-nav li:hover a {
  color: #8eda44;
}

.visually-hidden {
  display: inline-block;
  padding: 5px 3px;
  margin: 1px 0 0 0;
  outline: 1px solid red;
  background-color: #fff;
  position: fixed;
  z-index: 100;
  top: 0;
  left: -200em;
}

.visually-hidden:focus {
  left: 0;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  /* IE10+ specific styles go here */

  body header > div.container {
    display: -moz-flex;
    display: flex;
    flex-wrap: nowrap;
  }

  body header > div.container a#logo {
    width: 175px;
    margin-right: 20px;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 960px), screen and (-ms-high-contrast: none) and (min-width: 960px) {
  body header > div.container a#logo {
    width: 260px;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  body header > div.container div.dropdown-menu {
    width: calc(100% - 175px);
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 960px), screen and (-ms-high-contrast: none) and (min-width: 960px) {
  body header > div.container div.dropdown-menu {
    width: calc(100% - 260px);
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  body header > div.container div.dropdown-menu {
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  body header > div.container div.dropdown-menu div#search {
    width: calc(100% - 130px);
    margin-bottom: 20px;
    display: -moz-flex;
    display: flex;
    flex-wrap: nowrap;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  body header > div.container div.dropdown-menu div#search form {
    display: -moz-flex;
    display: flex;
    flex-wrap: nowrap;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }

  body header > div.container div.dropdown-menu div#search form label {
    display: block;
    width: 80px;
  }

  body header > div.container div.dropdown-menu div#search form input {
    display: block;
    width: 100%;
  }

  body header > div.container div.dropdown-menu div#search form button {
    display: block;
    margin-left: 5px;
    width: 90px;
    height: 40px;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  body header > div.container div.dropdown-menu div#social {
    width: 130px;
    margin-bottom: 20px;
  }

  body header > div.container div.dropdown-menu div#social ul {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  body header > div.container div.dropdown-menu nav#nav {
    width: 100%;
  }

  body header > div.container div.dropdown-menu nav#nav ul {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
}

@supports (display: grid) {
  header > div.container {
    display: grid;
    grid-template-columns: 175px 1fr;
  }

@media screen and (min-width: 960px) {
    header > div.container {
      grid-template-columns: 260px 1fr;
    }
}

@media screen and (min-width: 768px) {
    header > div.container div.dropdown-menu {
      display: grid;
      grid-row-gap: 20px;
      grid-column-gap: 20px;
      grid-template-columns: 1fr auto;
    }
}

@media screen and (min-width: 768px) {
    header > div.container div.dropdown-menu nav#nav {
      grid-column: 1/span 2;
    }
}

  header > div.container div.dropdown-menu div#search form {
    display: grid;
    grid-template-columns: 60px 1fr 80px;
  }
}

header {
  width: 100%;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid #e3e3e3;
}

header div.news-alert {
  background-color: #000;
  padding: 10px 0;
}

@media screen and (min-width: 960px) {
  header div.news-alert div.container {
    display: -moz-flex;
    display: flex;
  }
}

header div.news-alert div.alert {
  padding: 0 0 10px;
}

@media screen and (min-width: 960px) {
  header div.news-alert div.alert {
    padding: 0;
    -moz-flex: 1 0;
    flex: 1 0;
    width: calc(100%/3);
  }
}

header div.news-alert div.alert:last-child {
  padding: 0;
}

header div.news-alert a {
  display: block;
  color: #fff;
}

@media screen and (min-width: 960px) {
  header div.news-alert a {
    padding: 0 5px;
  }
}

header div.container {
  width: 100%;
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}

header a#logo {
  margin: 10px 0;
  display: block;
  width: 160px;
  height: 54px;
}

@media screen and (min-width: 960px) {
  header a#logo {
    width: 240px;
    height: 82px;
  }
}

header a#logo svg {
  display: block;
  width: 160px;
  height: 54px;
}

@media screen and (min-width: 960px) {
  header a#logo svg {
    width: 240px;
    height: 82px;
  }
}

header div.hamburger-wrap {
  display: inline-block;
  justify-self: end;
  align-self: center;
}

@media screen and (min-width: 768px) {
  header div.hamburger-wrap {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  header div.dropdown-menu {
    padding: 15px 0 0 0;
  }
}

@media screen and (max-width: 767px) {
  header div.dropdown-menu {
    display: none;
    margin-top: -25px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  header div.dropdown-menu.open {
    display: block;
    transition: opacity 0.2s linear, margin-top 0.2s linear;
    opacity: 1;
    pointer-events: auto;
    margin-top: 0;
    background-color: #363636;
    height: calc(100vh - 75px);
    overflow-y: scroll;
  }
}

@media screen and (min-width: 768px) {
  header div.dropdown-menu > div,
  header div.dropdown-menu > nav {
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  header div.dropdown-menu div#search {
    background-color: #ffffff;
    padding: 11px 15px;
  }
}

header div.dropdown-menu div#search form {
  max-width: 375px;
}

@media screen and (max-width: 767px) {
  header div.dropdown-menu div#search form {
    margin: 0 auto;
  }
}

header div.dropdown-menu div#search form label {
  align-self: center;
  color: #363636;
  font-size: 0.9em;
}

header div.dropdown-menu div#search form input {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 5px;
  border: 1px solid #363636;
  color: #363636;
  font-family: "Gotham SSm A", "Gotham SSm B";
  font-size: 0.8em;
}

header div.dropdown-menu div#search form button {
  cursor: pointer;
  justify-self: end;
  width: 75px;
  height: 100%;
  padding: 0;
  margin: 0;
  background-color: #8eda44;
  -webkit-appearance: none;
  border: none;
  color: #363636;
  font-family: "Gotham SSm A", "Gotham SSm B";
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  header div.dropdown-menu div#social {
    align-self: center;
  }
}

@media screen and (max-width: 767px) {
  header div.dropdown-menu div#social {
    padding: 25px 0;
  }
}

header div.dropdown-menu div#social ul {
  display: -moz-flex;
  display: flex;
}

@media screen and (max-width: 767px) {
  header div.dropdown-menu div#social ul {
    -moz-justify-content: center;
    justify-content: center;
  }
}

header div.dropdown-menu div#social ul li {
  margin-right: 10px;
}

header div.dropdown-menu div#social ul li:last-child {
  margin-right: 0;
}

header div.dropdown-menu div#social ul li a {
  display: block;
}

header div.dropdown-menu div#social ul li a svg {
  display: block;
  width: 20px;
  height: 20px;
}

header div.dropdown-menu div#social ul li a svg path {
  fill: #ffffff;
}

@media screen and (min-width: 768px) {
  header div.dropdown-menu div#social ul li a svg path {
    fill: #363636;
  }
}

@media screen and (min-width: 768px) {
  header div.dropdown-menu nav#nav ul.main-nav {
    display: -moz-flex;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  header div.dropdown-menu nav#nav ul.main-nav {
    text-align: center;
  }
}

header div.dropdown-menu nav#nav ul.main-nav > li {
  position: relative;
}

@media screen and (max-width: 767px) {
  header div.dropdown-menu nav#nav ul.main-nav > li {
    padding: 15px 0;
  }
}

@media screen and (max-width: 767px) {
  header div.dropdown-menu nav#nav ul.main-nav > li.children {
    padding-bottom: 0;
  }
}

header div.dropdown-menu nav#nav ul.main-nav > li.children > a {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: center;
  justify-content: center;
}

header div.dropdown-menu nav#nav ul.main-nav > li.children > a span {
  margin: 0 3px 0 0;
}

header div.dropdown-menu nav#nav ul.main-nav > li.children ul.sub-nav {
  background-color: #363636;
}

@media screen and (min-width: 768px) {
  header div.dropdown-menu nav#nav ul.main-nav > li.children ul.sub-nav {
    display: none;
    opacity: 0;
    pointer-events: none;
    background-color: #363636;
    position: absolute;
    top: 100%;
    left: -25px;
    right: -75px;
    padding: 20px 25px 35px 25px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
  }
}

@media screen and (max-width: 767px) {
  header div.dropdown-menu nav#nav ul.main-nav > li.children ul.sub-nav {
    padding: 10px 0;
    margin: 10px 0;
    box-shadow: inset 0px 11px 8px -10px #2b2c2b, inset 0px -11px 8px -10px #2b2c2b;
  }
}

@media screen and (min-width: 768px) {
  header div.dropdown-menu nav#nav ul.main-nav > li.children ul.sub-nav.click-open,
  header div.dropdown-menu nav#nav ul.main-nav > li.children ul.sub-nav.hover-open {
    display: block;
    transition: opacity 0.2s linear, margin-top 0.2s linear;
    opacity: 1;
    pointer-events: auto;
  }
}

@media screen and (min-width: 768px) {
  header div.dropdown-menu nav#nav ul.main-nav > li.children ul.sub-nav li {
    margin: 15px 0;
  }
}

@media screen and (max-width: 767px) {
  header div.dropdown-menu nav#nav ul.main-nav > li.children ul.sub-nav li {
    padding: 5px 0;
  }
}

header div.dropdown-menu nav#nav ul.main-nav > li.children ul.sub-nav li.active a {
  color: #8eda44;
}

header div.dropdown-menu nav#nav ul.main-nav > li.children ul.sub-nav li a {
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  header div.dropdown-menu nav#nav ul.main-nav > li.sub-nav-active > a {
    border-bottom-color: #8eda44;
  }
}

@media screen and (min-width: 768px) {
  header div.dropdown-menu nav#nav ul.main-nav > li.active > a {
    border-bottom-color: #8eda44;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  header div.dropdown-menu nav#nav ul.main-nav > li > a {
    padding: 8px 15px 8px;
  }
}

@media screen and (min-width: 768px) {
  header div.dropdown-menu nav#nav ul.main-nav > li > a {
    height: 100%;
    padding: 0 12px 20px 12px;
    border-bottom: 5px solid #fff;
  }
}

header div.dropdown-menu nav#nav ul.main-nav > li > a span {
  display: inline-block;
}

header div.dropdown-menu nav#nav ul.main-nav > li > a svg {
  margin: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
}

header div.dropdown-menu nav#nav ul.main-nav > li > a svg polyline {
  stroke: #ffffff;
}

@media screen and (min-width: 768px) {
  header div.dropdown-menu nav#nav ul.main-nav > li > a svg polyline {
    stroke: #363636;
  }
}

header div.dropdown-menu nav#nav ul.main-nav > li a {
  color: #ffffff;
  font-size: 1em;
  font-weight: 700;
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  header div.dropdown-menu nav#nav ul.main-nav > li a {
    font-size: 0.9em;
  }
}

@media screen and (min-width: 768px) {
  header div.dropdown-menu nav#nav ul.main-nav > li a {
    color: #363636;
  }
}

header div.dropdown-menu ul {
  list-style: none;
}

header div.dropdown-menu ul li a {
  display: block;
  text-decoration: none;
}

@media print {
  header {
    width: 100%;
    border-bottom: none;
  }

  header div.container {
    max-width: unset;
    padding: 1rem;
  }

  header div.container a#logo:link,
  header div.container a#logo:visited {
    margin: unset;
  }

  header div.container div.hamburger-wrap {
    display: none;
  }

  header div.container div.dropdown-menu {
    display: none;
  }

  main section#low-content-islands {
    display: none;
  }

  footer {
    display: none;
  }
}

main#content section p > a {
  color: #066c7a;
}

abbr {
  text-decoration: none;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

html {
  font-size: 16px;
}

body {
  font-family: "Gotham SSm A", "Gotham SSm B";
  color: #363636;
}

body div#newsletter-signup {
  padding: 30px 0;
  background-color: #363636;
}

body div#newsletter-signup div.constrain {
  color: #ffffff;
}

body div#newsletter-signup div.constrain form div.form-body {
  max-width: 700px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  body div#newsletter-signup div.constrain form div.form-body {
    display: -moz-flex;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  body div#newsletter-signup div.constrain form div.form-body div.form-group {
    -moz-flex: 1 0;
    flex: 1 0;
  }
}

body div#newsletter-signup div.constrain form div.form-body div.form-group:last-child div.form-element:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  body div#newsletter-signup div.constrain form div.form-body div.form-group.categories {
    padding-right: 30px;
  }
}

@media screen and (min-width: 960px) {
  body div#newsletter-signup div.constrain form div.form-body div.form-group.categories {
    width: calc((100% / 3) * 2);
    -moz-flex: auto;
    flex: auto;
  }
}

body div#newsletter-signup div.constrain form div.form-body div.form-group.categories > p {
  margin-bottom: 20px;
  font-weight: 700;
}

body div#newsletter-signup div.constrain form div.form-body div.form-group.categories > p span {
  margin-top: 7px;
  display: block;
  color: #8eda44;
  font-size: 1.4em;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
}

body div#newsletter-signup div.constrain form div.form-body div.form-group.categories div.form-element > label {
  margin-bottom: 20px;
  line-height: 1.2em;
}

@media screen and (min-width: 960px) {
  body div#newsletter-signup div.constrain form div.form-body div.form-group.categories div.form-element div.checkbox-clusters {
    display: -moz-flex;
    display: flex;
  }
}

@media screen and (min-width: 960px) {
  body div#newsletter-signup div.constrain form div.form-body div.form-group.categories div.form-element div.checkbox-clusters div.cluster {
    -moz-flex: 1 0;
    flex: 1 0;
  }
}

body div#newsletter-signup div.constrain form div.form-body div.form-group.categories div.form-element div.checkbox-clusters div.cluster:last-child div.checkbox:last-child {
  margin-bottom: 0;
}

body div#newsletter-signup div.constrain form div.form-body div.form-group.categories div.form-element div.checkbox-clusters div.cluster div.checkbox {
  margin-bottom: 10px;
  display: -moz-flex;
  display: flex;
}

@media screen and (min-width: 960px) {
  body div#newsletter-signup div.constrain form div.form-body div.form-group.general {
    width: calc(100% / 3);
    -moz-flex: auto;
    flex: auto;
  }
}

body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element {
  margin-bottom: 20px;
}

body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element legend.checkboxlist-instructions {
  width: 100%;
  margin-bottom: 15px;
}

body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element label {
  margin-bottom: 5px;
  display: block;
}

body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element div.error {
  padding: 5px;
  margin-top: 5px;
  display: inline-block;
  background-color: #df0000;
  color: #ffffff;
}

body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element input[type=text],
body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element input[type=email] {
  width: 100%;
  padding: 5px;
  font-family: "Gotham SSm A", "Gotham SSm B";
  font-size: 1em;
}

body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element input[type=text].error,
body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element input[type=email].error {
  border: 2px solid #df0000;
}

body div#newsletter-signup div.constrain form div.form-body div.form-group div.form-element button {
  margin-top: 10px;
}

body footer {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 0.6em;
  color: #363636;
  line-height: 1.4em;
  text-transform: uppercase;
  text-align: center;
}

body footer a:link,
body footer a:visited {
  color: #363636;
}

