body {
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #222;
  margin: 0;
}
* {
  box-sizing: border-box;
}
a img {
  border: none;
  outline: none;
}
div.clear {
  clear: both;
  height: 0px;
  display: block;
  visibility: hidden;
}
/* jquery validate errors */
input.error {
  border-color: Red;
  margin-right: 5px;
}
label.error {
  color: Red;
}
/********* GENERIC CONTAINER ********/
.inner {
  width: 1200px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
/***** NAV *****/
nav {
  height: 110px;
  background: #1B1464;
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 1;
}
nav .inner {
  display: flex;
  align-items: center;
  height: 110px;
  padding: 0;
}
nav #launch-hamburger-menu {
  display: none;
}
nav #logo img {
  height: 100px;
}
nav span {
  cursor: pointer;
}
nav span,
nav a,
nav a:visited {
  color: #fff;
  text-decoration: none;
}
nav span:hover,
nav a:hover,
nav a:visited:hover {
  color: rgba(255, 255, 255, 0.8);
}
nav #logo {
  margin-right: 10px;
}
@media (min-width: 768px) and (max-width: 1150px) {
  nav #logo {
    margin-right: 10px;
  }
}
nav .menu-item {
  margin-right: 20px;
}
@media (min-width: 768px) and (max-width: 1150px) {
  nav .menu-item {
    margin-right: 10px;
  }
}
nav .menu-item {
  text-align: center;
}
nav .dropdown {
  position: relative;
  height: 110px;
  display: flex;
  align-items: center;
}
nav .dropdown ul {
  display: none;
  position: absolute;
  top: 80px;
  width: 280px;
  border: 1px solid #1B1464;
  background: #5c739c;
  margin: 0;
  padding: 0px;
}
nav .dropdown ul::before {
  content: url("images/dropdown-top.png");
  position: absolute;
  top: -15px;
  left: 15px;
}
nav .dropdown ul li {
  list-style-type: none;
}
nav .dropdown ul li a {
  display: block;
  padding: 8px;
}
nav .dropdown ul li:hover {
  background: #7184a6;
}
nav .dropdown:hover ul {
  display: block;
}
nav #topRightLinks {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav #topRightLinks > * {
  margin-left: 15px;
}
nav #topRightLinks .buttons {
  flex-direction: column;
  display: flex;
}
nav #topRightLinks .volunteer,
nav #topRightLinks .donate {
  background: #fff;
  border-radius: 8px;
  color: #1B1464;
  padding: 8px 12px;
  text-align: center;
  margin: 0.2em 0;
}
@media (max-width: 1055px) {
  nav {
    display: block;
    height: 70px;
  }
  nav .inner {
    height: 70px;
  }
  nav #launch-hamburger-menu {
    display: block;
    float: left;
    cursor: pointer;
  }
  nav #launch-hamburger-menu img {
    width: 30px;
  }
  nav #logo {
    margin: 0 auto;
  }
  nav #logo img {
    height: 60px;
  }
  nav .menu-item,
  nav #topRightLinks {
    display: none;
  }
}
#hamburger-menu {
  display: none;
  width: 100%;
  height: 100vh;
  overflow: scroll;
  background-color: #1B1464;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
#hamburger-menu ul.hamburger-menu {
  width: 100%;
  margin: 46px auto 0;
  padding: 0;
}
#hamburger-menu ul.hamburger-menu li {
  width: 100%;
  display: block;
  border-bottom: 1px solid white;
  padding: 0px 12px;
  cursor: pointer;
}
#hamburger-menu ul.hamburger-menu li:first-child {
  border-top: 1px solid white;
  margin-top: 24px;
}
#hamburger-menu ul.hamburger-menu li a {
  color: white;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  padding: 12px 0;
  display: block;
}
#hamburger-menu div#close-hamburger-menu {
  width: 59px;
  height: 43px;
  background: url('images/close.png') no-repeat center center;
  background-size: 22px 22px;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
}
/***** MAIN CONTENT *****/
#content {
  margin-top: 110px;
}
@media (max-width: 1055px) {
  #content {
    margin-top: 70px;
  }
}
.home-hero {
  position: relative;
  background: url('images/pikes-peak-desktop.jpg?v=2');
  background-position: center top;
  background-size: cover;
}
.home-hero .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
}
.home-hero .inner {
  overflow: hidden;
  position: relative;
}
.home-hero .inner .home-hero__content {
  float: left;
  max-width: calc(100% - 362px);
  padding-right: 25px;
  padding-top: 15px;
}
.home-hero .inner .home-hero__content__lead {
  margin-bottom: 40px;
  margin-top: 60px;
  font-size: 24px;
  text-align: center;
  padding: 0 60px;
}
.home-hero .inner .home-hero__content__paragraph {
  margin-top: 1em;
  margin-bottom: 1em;
}
.home-hero .inner > img {
  float: right;
  margin-top: 31px;
}
@media (max-width: 767px) {
  .home-hero {
    background-image: url('images/pikes-peaks-mobile.jpg');
  }
  .home-hero .inner .home-hero__content {
    float: none;
    max-width: 100%;
    padding-right: 0px;
  }
  .home-hero .inner .home-hero__content__lead {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 0px;
    font-size: 18px;
  }
  .home-hero .inner > img {
    float: none;
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
}
.news-heading {
  color: #1B1464;
  text-align: center;
  font-weight: 400;
  font-size: 26px;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  max-width: 338px;
  margin: 0 auto 30px;
  padding: 10px 0px;
}
.news-heading--wide {
  max-width: 600px;
  line-height: 34px;
}
.news {
  display: flex;
  margin-bottom: 20px;
}
.news a {
  text-align: center;
  color: #4b5797;
  padding: 0 10px;
}
.news a img {
  max-width: 100%;
}
@media (min-width: 768px) {
  .news a img.nine-news {
    max-width: 230px;
  }
}
.news a h4 {
  text-decoration: none;
  font-style: italic;
}
@media (min-width: 768px) {
  .news a:nth-child(2) h4 {
    margin-top: 7px;
  }
}
@media (min-width: 768px) {
  .news--two-a-column {
    flex-wrap: wrap;
    justify-content: center;
  }
  .news--two-a-column a {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .news {
    display: block;
  }
  .news a {
    display: block;
    padding: 0 28px;
  }
}
.home-hero__content .news a {
  padding: 0 20px;
}
.main-content {
  padding: 24px 0px;
}
.main-content h2 {
  color: #1B1464;
}
.main-content .inner.with-columns {
  display: flex;
}
.main-content .inner.with-columns > div:first-child {
  margin-right: 15px;
}
.main-content .inner.with-columns div.rafting-image {
  text-align: center;
  margin-top: 20px;
}
.main-content .inner.with-columns .show-on-mobile {
  display: none;
}
.main-content .inner.with-columns .image-caption {
  font-style: italic;
  font-size: 12px;
  text-align: center;
}
@media (max-width: 767px) {
  .main-content .inner.with-columns {
    display: block;
  }
  .main-content .inner.with-columns img {
    max-width: 100%;
  }
  .main-content .inner.with-columns .show-on-mobile {
    display: block;
    margin: 20px 0;
  }
  .main-content .inner.with-columns .hide-on-mobile {
    display: none;
  }
}
.main-content .inner > div {
  margin-bottom: 1em;
}
.main-content__quote {
  position: relative;
  background-color: #d3d9e4;
  padding: 20px 66px;
  border-radius: 8px;
  max-width: 800px;
}
.main-content__quote::before,
.main-content__quote::after {
  position: absolute;
  font-size: 120px;
  font-family: Georgia;
  color: #fff;
}
.main-content__quote::before {
  content: "“";
  left: 10px;
  top: 46px;
}
.main-content__quote::after {
  content: "”";
  right: 8px;
  bottom: 18px;
}
.main-content__quote__attribution {
  text-align: right;
  margin-top: 8px;
}
.main-content__quote--homepage {
  background: transparent;
  position: relative;
  top: -20px;
}
@media (min-width: 768px) {
  .main-content__quote--homepage-lionel::before {
    top: 169px !important;
  }
}
@media (min-width: 768px) {
  .main-content__quote--homepage-lionel::after {
    bottom: 123px !important;
  }
}
@media (min-width: 768px) {
  .main-content__quote--homepage-marv::before {
    top: 68px !important;
  }
}
@media (min-width: 768px) {
  .main-content__quote--homepage-marv::after {
    bottom: 31px !important;
  }
}
@media (min-width: 768px) {
  .main-content__quote--homepage-tim::after {
    bottom: 22px !important;
  }
}
.main-content__quote--homepage::before,
.main-content__quote--homepage::after {
  color: rgba(100, 100, 100, 0.5);
}
@media (max-width: 767px) {
  .main-content__quote--homepage::before {
    top: auto;
    bottom: -28px;
  }
}
@media (min-width: 768px) {
  .main-content__quote--homepage::after {
    bottom: 3px;
  }
}
@media (max-width: 767px) {
  .main-content__quote--homepage::after {
    top: 0px;
  }
}
.main-content__section-intro {
  margin-top: 2em;
  font-weight: bold;
}
.main-content .newspaper {
  background: #e1e1e1;
  color: #444;
  padding: 18px 12px;
  margin-top: 30px;
}
.main-content .newspaper h3 {
  font-family: "Times New Roman", Times, serif;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 0px;
  margin-top: 0px;
}
.main-content .newspaper__attribution {
  text-align: left;
  margin-top: 4px;
}
.main-content .newspaper__columns {
  display: flex;
  margin-top: 18px;
}
.main-content .newspaper__columns > div {
  width: 50%;
  padding-right: 2em;
  text-align: justify;
}
@media (max-width: 767px) {
  .main-content .newspaper__columns {
    display: block;
  }
  .main-content .newspaper__columns > div {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 1em;
  }
}
h1.endorsements-title {
  color: #1B1464;
  text-align: center;
  margin-bottom: 30px;
}
.endorsements-logos {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 3em !important;
  align-items: center;
  justify-content: center;
}
.endorsements-logos h2 {
  font-weight: normal;
  text-align: center;
}
.endorsements-logos h2 a {
  width: auto;
  max-width: none;
}
.endorsements-logos a {
  width: 50%;
  padding: 18px;
}
.endorsements-logos a img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .endorsements-logos {
    display: block;
  }
  .endorsements-logos a {
    max-width: 230px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
.endorsements {
  display: flex;
  flex-wrap: wrap;
}
.endorsements__people {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.endorsements__people div {
  margin: 1em;
}
.endorsements__people div > img {
  width: 100px;
  border-radius: 50px;
  display: block;
  margin: 0 auto 1em;
}
.endorsements__organizations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.endorsements__organizations div {
  margin: 1em;
}
.endorsements__organizations div > img {
  display: block;
  margin: 0 auto 1em;
  max-width: 100%;
}
.endorsements .endorsement {
  width: calc(50% - 24px);
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 24px;
  padding: 24px 12px 12px;
  background: #ccc;
  border-radius: 8px;
}
.endorsements .endorsement__logo {
  text-align: center;
}
.endorsements .endorsement__logo img {
  max-width: 100%;
  width: 300px;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
}
.endorsements .endorsement__quote {
  position: relative;
  padding: 20px 66px;
  border-radius: 8px;
  max-width: 800px;
}
.endorsements .endorsement__quote::before,
.endorsements .endorsement__quote::after {
  position: absolute;
  font-size: 120px;
  font-family: Georgia;
  color: #aaa;
}
.endorsements .endorsement__quote::before {
  content: "“";
  left: 10px;
  top: 46px;
}
.endorsements .endorsement__quote::after {
  content: "”";
  right: 8px;
  bottom: -16px;
}
@media (max-width: 767px) {
  .endorsements .endorsement__quote {
    padding: 20px 33px;
  }
  .endorsements .endorsement__quote::before,
  .endorsements .endorsement__quote::after {
    font-size: 60px;
  }
  .endorsements .endorsement__quote::before {
    content: "“";
    left: 5px;
    top: 29px;
  }
  .endorsements .endorsement__quote::after {
    content: "”";
    right: 4px;
    bottom: 5px;
  }
}
@media (max-width: 767px) {
  .endorsements {
    display: block;
  }
  .endorsements .endorsement {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.sos-menu {
  display: flex;
  align-items: center;
  list-style-type: none;
  font-weight: bold;
}
.sos-menu > li {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .sos-menu > li {
    margin-right: 0px;
    margin-bottom: 24px;
  }
}
.sos-menu ul {
  list-style-type: disc;
  font-weight: normal;
}
@media (max-width: 767px) {
  .sos-menu {
    display: block;
  }
}
.secondary-content {
  background: linear-gradient(#0073A9, #005ba9);
}
.secondary-content .inner {
  padding-top: 30px;
  padding-bottom: 30px;
}
.secondary-content h2 {
  color: white;
  text-align: center;
  margin-bottom: 25px;
  margin-top: 0px;
}
.secondary-content .campaign-ad {
  margin: 15px 0;
  text-align: center;
}
.secondary-content .campaign-ad iframe {
  margin: 0 auto;
}
.secondary-content .campaign-ad:first-child {
  margin-bottom: 28px;
}
.secondary-content .campaign-ad:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .secondary-content .campaign-ad iframe {
    max-width: 100%;
  }
}
/***** FOOTER *****/
#footer {
  background: linear-gradient(#0073A9, #005ba9);
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
#footer .content {
  position: relative;
  text-align: left;
  max-width: 100%;
  width: 1000px;
  padding: 0 15px;
}
#footer .content .individuals {
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .content .individuals div {
  margin-bottom: 8px;
  flex-grow: 1;
  text-align: center;
  align-items: center;
  color: #ddd;
  line-height: 20px;
  font-size: 14px;
}
#footer .content .individuals div h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}
#footer .content .paid-for {
  border: 1px solid #fff;
  padding: 8px;
  width: 350px;
  text-align: center;
  max-width: 100%;
  margin: 15px auto 25px;
}
#footer .content .attributions {
  font-size: 10px;
  margin: 25px auto;
  text-align: center;
}
#footer .content a,
#footer .content a:visited {
  color: #fff;
}
@media (max-width: 767px) {
  #footer {
    background-size: auto;
  }
  #footer .gradient-overlay {
    background: linear-gradient(rgba(6, 22, 95, 0.5), rgba(6, 22, 95, 0.9));
  }
  #footer .content .individuals {
    display: block;
  }
}
.awards-content {
  display: flex;
  text-align: center;
}
.awards-content div {
  width: 100%;
}
@media (max-width: 767px) {
  .awards-content div:first-child {
    padding-right: 1em;
  }
  .awards-content div:last-child {
    padding-left: 1em;
  }
}
.awards-content div div {
  display: block;
}
.awards-content div div span {
  display: block;
  max-width: 500px;
  margin: 0 auto;
}
.awards-content img {
  display: block;
  margin: 1em auto;
  width: 100%;
  max-width: 500px;
}
@media (max-width: 767px) {
  .awards-content {
    flex-direction: column;
  }
}
/* facebook icon from font awesome */
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  src: url("webfonts/fa-brands-400.eot");
  src: url("webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("webfonts/fa-brands-400.woff2") format("woff2"), url("webfonts/fa-brands-400.woff") format("woff"), url("webfonts/fa-brands-400.ttf") format("truetype"), url("webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: 'Font Awesome 5 Brands';
}
.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  color: white;
  line-height: 1;
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-facebook-f:before {
  content: "\f39e";
}
