/*
Theme Name: BLUEPRINT INTERACTIVE Theme
Author: Blueprint Interactive
Author URI: https://blueprintinteractive.com
Description: Blueprint Interactive Custom Theme.
Version: 1.0
License: GNU General Public License



/* -------------------------------------------------------------- */
/* Animate CSS
-------------------------------------------------------------- */
* {
  box-sizing: border-box;
  font-family: "gotham", sans-serif;
  margin: 0;
  padding: 0;
}

.pum-close {
  position: absolute;
  height: 34px;
  width: 34px;
  right: 20px;
  font-size: 40px !important;
  text-align: center;
  line-height: 31px !important;
  top: 30px;
  padding: 0px !important;
  color: #ffffff;
  transition: 0.75s ease-in-out;
  font-family: "gotham", sans-serif !important;
  z-index: 1000;
  cursor: pointer;
  font-weight: 400;

  border-radius: 50%;
  box-shadow: none;
  text-shadow: none;
  background-color: #3d3a1a;
}

.pum-close:hover {
  transform: rotate(90deg);
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  display: block !important;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

/* WAYPOINTS */
.fade-in-from-left {
  opacity: 0;
  animation-timing-function: ease-out;
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fade-in-from-left.animated {
  animation-name: fade-from-left;
  animation-duration: 0.7s;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@keyframes fade-from-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -o-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
  }

  45% {
    opacity: 0.5;
  }

  90% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fade-in-from-bottom {
  opacity: 0;
  animation-timing-function: ease-out;
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -o-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
}

.fade-in-from-bottom.animated {
  animation-name: fade-from-bottom;
  animation-duration: 1.4s;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@keyframes fade-from-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -o-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
  }

  90% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fade-in-from-right {
  opacity: 0;
  animation-timing-function: ease-out;
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -o-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
}

.fade-in-from-right.animated {
  animation-name: fade-from-right;
  animation-duration: 0.7s;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@keyframes fade-from-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -o-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }

  90% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fade-from-right-two {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -o-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }

  90% {
    opacity: 1;
    -webkit-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
    -o-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fade-in-from-right-two {
  opacity: 0;
  animation-timing-function: ease-out;
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -o-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
}

.fade-in-from-right-two.animated {
  animation-name: fade-from-right-two;
  animation-duration: 0.7s;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  60% {
    transform: translateX(-20px);
  }

  80% {
    transform: translateX(5px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-from-bottom.animated.fast {
  animation-duration: 0.2s;
}

.main-content-inner {
  padding: 40px 0;
  width: 80%;
  margin: 0 auto;
}

.main-content.inner {
  width: 90%;
}

.main-content-inner h1 {
  color: #3d3a1a;
  text-align: center;
  font-size: 60px;
  line-height: 80px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  margin: 40px 0;
}

h1.meet-title {
  color: #3d3a1a;
  text-align: center;
  font-size: 60px;
  line-height: 80px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  margin: 40px 0;
  padding-bottom: 40px;
}

/* PRIVACY POLICY PAGE -------------------------------------------------------*/

.basic-content {
  background-color: #efd9ba;
  padding: 50px 0;
}

.basic-content a {
  color: #3d3a1a;
}

.basic-content a:hover {
  color: #f0a816;
}

/* ALL FONTS */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "nexa-rust-slab-black", sans-serif !important;
  font-weight: 900;
  font-style: normal;
}

.inner {
  max-width: 1200px;
  margin: auto;
}

a,
svg .fill,
#thread svg,
#thread-footer svg {
  transition: all 0.4s ease-in-out;
}

a:hover {
  color: #f0a816;
}

p,
ul,
ol {
  color: #404041;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  margin: 20px 0;

  line-height: 1.3;
}

.pub-category a {
  color: #112656;
  text-decoration: none;
}
.pub-category a:hover {
  color: #bd1e2d;
  text-decoration: none;
}

.pub-info {
  padding-bottom: 30px;
}

.support-donate p {
  font-weight: 400;
}

/* HEADER --------------------------------------------------------------------*/
@keyframes slideGradient {
  from {
    background-position: 100% 0;
  }

  to {
    background-position: 0 0;
  }
}

.main-header {
  background: #3d3a1a;
  position: relative;
  width: 100%;
}

.main-header .inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  max-width: 2000px;
  width: 95%;
}

.main-header .main-logo-a {
  display: inline-block;
  max-width: 200px;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 10000;
}

.main-header .main-logo-a img {
  height: auto;
  width: 100%;
}

.main-header .main-logo-a:hover {
  transform: scale(0.98);
}

nav.main-menu ul {
  list-style: none;
}

nav.main-menu ul li {
  display: inline-block;

  margin-left: 20px;
}

.header-donate-btn-desktop {
  color: #3d3a1a;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 4px;
  margin-left: 20px;
}

.header-donate-btn-desktop:hover {
  background-color: #f0a816;
  color: #3d3a1a;
}

.header-donate-btn-mobile {
  display: none;
  color: #3d3a1a;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  background: #f0a816;
  border: 1px solid #f0a816;
  text-decoration: none;
  margin-bottom: 20px;
}

.header-donate-btn-mobile:hover {
  color: #f0a816;
  background-color: #fff;
  border: 1px solid #f0a816;
}

/* nav.main-menu ul li:last-of-type {
  margin-right: 0;
} */

.mobile-menu {
  list-style: none;
}

.mobile-menu {
  margin-top: 100px;
}

.mobile-menu a,
nav.main-menu a {
  color: #ffffff;
  font-size: 16px;
  font-style: normal;

  font-weight: 500;
  line-height: 161.8%; /* 38.832px */
  letter-spacing: 3%;
  text-transform: uppercase;
  text-decoration: none;
}
.main-content-inner p a {
  color: #195782;
  transition: 0.25s ease-in-out;
}

.main-content-inner p a:hover {
  color: #a11d21;
}

.mobile-menu .donate a,
nav.main-menu ul li.donate a {
  border-radius: 4px;
  background: var(--Light-Red, #a11d21);
  color: var(--Neutral-100, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 161.8%; /* 38.832px */
  letter-spacing: 0.72px;
  text-transform: uppercase;
  padding: 10px 20px;
}

.mobile-menu .donate a:hover,
nav.main-menu ul li.donate a:hover {
  background: #35618b;
  color: #fff;
}

.social-wrapper.mobile {
  display: none;
}

.social-wrapper a {
  display: inline-block;
  margin: 0px 10px 0 8px;
  text-decoration: none;
  vertical-align: middle;
}

.social-wrapper a svg {
  height: auto;
  width: 23px;
  vertical-align: middle;
}

.social-wrapper a svg path {
  transition: fill 0.2s ease;
}

.social-wrapper a:hover svg path,
.social-wrapper a:focus-visible svg path {
  fill: #f0a816;
}

.mobile-menu a:hover,
nav.main-menu a:hover {
  color: #f0a816;
}

.social-wrapper.mobile a:first-of-type {
  margin-right: 15px;
  margin-left: 4px;
}

.mobile-nav .main-logo-a img {
  width: 100%;
}

.social-wrapper.desktop {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}

/* MOBILE NAV */
.container {
  cursor: pointer;
  float: right;
  right: 5%;
  position: absolute;
  top: 41px;
  z-index: 10;
  display: none;
}

.header-nav {
  display: none;
  margin-top: 65px;
}

.bar1,
.bar2,
.bar3 {
  background-color: #efd9ba;
  height: 5px;
  margin: 6px 0;
  transition: all 0.4s;
  width: 35px;
}

.change .bar1 {
  -webkit-transform: rotate(45deg) translate(8px, 8px);
  transform: rotate(45deg) translate(8px, 8px);
  background-color: #efd9ba;
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(-45deg) translate(8px, -7px);
  transform: rotate(-45deg) translate(8px, -7px);
  background-color: #efd9ba;
}

.mobile-nav {
  background-color: #3d3a1a;
  border-bottom: 2px solid #f0a816;
  display: block;
  display: none;
  padding: 50px 5% 50px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 2;
}

/* MAIN ----------------------------------------------------------------------*/
.hero-wrapper {
  background-image: linear-gradient(to right, #f9f6ec00 49%, #efd9ba 64%),
    url(./images/new-hero.png);
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  display: flex;
  height: 900px;
  position: relative;
  flex-wrap: wrap;
}

.front .hero-wrapper {
  min-height: 500px;
}

.mobile-hero {
  display: none;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.desktop-hero {
  object-fit: cover;
  width: 60%;
  object-position: 10%;
}

.hero-inner-right {
  position: relative;
  width: 40%;
  left: 57%;
  max-width: 700px;
}

.hero-right-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.hero-inner-right h1 {
  color: #3d3a1a;
  font-size: 45px;
  text-align: center;
  font-style: normal;
  line-height: 1.1;

  text-transform: uppercase;
  margin-bottom: 45px;
}

.form-wrapper {
  margin-top: 20px;
}

.about-section .inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
  max-width: 1300px;
}
.news-preview {
  padding-top: 15px;
}
.news-preview a {
  color: #195782 !important;
}
.news-preview span,
.news-preview a,
.news-preview p {
  font-style: italic;
}

.support-wrapper {
  background-image: url(./images/donate_bkg2.JPG);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1000;
  position: relative;
}

.support-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(
    255,
    255,
    255,
    0.335
  ); /* makes it look like opacity 0.8 */
}

.support-wrapper .inner {
  margin: auto;
  max-width: 1300px;
  padding: 100px 5% 100px;
}

.support-donate {
  position: relative;
  width: 90%;
}

.running-inner h2,
.action-wrapper h2,
.donate-wrapper h2,
.about-section h2,
.support-donate h2 {
  color: #3d3a1a;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 124%; /* 58.28px */
  letter-spacing: -0.94px;
}

.about-section h2 {
  text-align: left;
}

.support-donate h2 {
  text-align: center;
  font-style: normal;
  width: 100%;
  text-align: center;
}

.support-donate h3 {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  margin: 20px auto;
  max-width: 600px;
}

.support-donate p {
  color: #3d3a1a;
  font-size: 15px;
  max-width: 670px;
  width: 100%;
  margin: 20px auto;
  background-color: #ffffff8a;
  padding: 10px;
  text-align: center;
}

.action-wrapper h2 {
  color: #fff;
}

.donate-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.donate-btns-wrapper a,
.donate-btns a {
  display: inline-block;
  border-radius: 4px;
  background: #3d3a1a;
  color: var(--Neutral-100, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.72px;
  font-size: 24px;
  margin: 7px auto;
  padding: 15px 0px 13px 0px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  width: 49%;
}

.single-donate {
  width: 99% !important;
  border: none !important;
  background: #f0a816 !important;
  color: #3d3a1a !important;
}

.single-donate:hover {
  border: none !important;
  color: #fff !important;
  background-color: #3d3a1a !important;
}

.donate-btns.alt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 75%;
  margin: 0 auto;
}

/* .donate-btns.alt a:hover {
  border: 1px solid #fff !important;
  background: #f0a816;
} */

.donate-btns.alt a {
  border: 1px solid #fff;
}

.donate-btns-wrapper a:hover {
  background-color: #f0a816;
  color: #3d3a1a;
}

.donate-btns a:hover {
  background: #f0a816;
  color: #3d3a1a;
}

.donate-btns-wrapper a:hover {
  background-color: #f0a816;
  color: #3d3a1a;
}

.donate-wrapper p,
.donate-btns p {
  color: #000;
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  margin: 20px auto;
  width: 97%;
}

.video-wrapper {
  position: relative;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.video-wrapper.embed {
  padding-bottom: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes enlargeplay {
  0% {
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -o-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }

  50% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.at small.info a {
  text-decoration: underline;
  color: white !important;
}

.didYouMean.info,
.didYouMean.info a {
  color: black !important;
}

.playbutton {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0%;
  right: 0%;
  text-align: center;
  z-index: 1;
}

.playbutton img {
  cursor: pointer;
  max-width: 100%;
  width: 55px;
  filter: saturate(0) brightness(5) drop-shadow(2px 4px 6px black);
}

.playbutton:hover img {
  animation: enlargeplay 0.5s;
}

.about-section {
  background-image: url(./images/expanded_about_bkg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-color: #ffffff;
  background-image: url(./images/about_bkg.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 40% 100%; */
  padding: 100px 5%;
  border-bottom: 20px solid #f0a816;
}

.about-section .inner-left {
  position: relative;
  width: 40%;
}

.about-section .inner-right {
  font-size: 0;
  position: relative;
  width: 53%;
}

a.blue-button {
  border-radius: 4px;
  background: #f0a816;
  color: #3d3a1a;
  font-size: 20px;
  font-style: normal;
  line-height: 161.8%; /* 38.832px */
  letter-spacing: 0.72px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
}

a.blue-button:hover {
  background: #3d3a1a;
  color: #f0a816;
}

/* .icon.mobile {
      display: none;
  } */

.about-section .inner-right img.headshot {
  max-width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 0%;
  border-radius: 10px;
  box-shadow: 0px 20px 80px -10px rgba(64, 64, 65, 0.2);
}

.about-section .inner-right img.headshot.animated {
  animation: bounceInRight 2.5s ease normal forwards;
}

/* running */
.running-wrapper {
  align-items: stretch;
  background-color: #efd9ba;
  flex-wrap: wrap;
  display: flex;
}

.running-wrapper .running-large-img {
  object-fit: cover;
  width: 40%;
}

.running-inner {
  padding: 100px 5%;
  position: relative;
  width: 60%;
}

.bullets {
  margin-top: 30px;
}

.bullet-card {
  margin-bottom: 20px;
}

.running-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 700px;
  width: 95%;
}
.SmsLegalDisclaimer p {
  padding-top: 10px;
}
p {
  margin-top: 10px;
}

.running-content img {
  height: auto;
  margin-right: 10px;
  margin-top: 10px;
  object-fit: cover;
  vertical-align: middle;
  width: 40px;
}

.running-content h3 {
  color: #000000;
  font-size: 20px;
  font-style: normal;

  vertical-align: middle;
}

.slide-wrap {
  background-image: linear-gradient(
    180deg,
    #195782 5.7%,
    #404041 50.95%,
    #fff 95.27%
  );
  padding: 100px 5%;
  position: relative;
}

.arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.arrow.prev {
  left: 0;
}

.arrow.next {
  right: 0;
}

.arrow .fill {
  transition: all 0.4s ease-in-out;
}

.arrow:hover .fill {
  fill: #a11d21;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.image-wrapper {
  background: linear-gradient(
    180deg,
    #195782 1.51%,
    rgba(25, 42, 88, 0) 89.31%
  );
  padding: 1px;
}

.image-inner {
  margin: 100px auto 0;
  width: 90%;
}

.slide-wrapper {
  max-width: 1300px;
  margin: 50px auto 0;
  width: 100%;
  min-width: 90%;
  position: relative;
}

.slick-track {
  max-width: 100% !important;
  transform: translate3d(0, 0, 0) !important;
  perspective: 100px;
}

.slide-wrapper .slick-list {
  padding-top: 10% !important;
  padding-bottom: 10% !important;
  padding-left: 15% !important;
  padding-right: 15% !important;
  width: 90%;
  margin: auto;
}

.slick-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  /* width: 100%!important; */
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s, opacity 0.3s;
}

.slick-sprev {
  opacity: 1;
  transform: translate3d(-20%, 0, 0px);
}

.slick-snext {
  opacity: 1;
  transform: translate3d(20%, 0, 0px);
  z-index: 1;
}

.slick-current {
  opacity: 1;
  filter: drop-shadow(2px -2px 4px rgba(0, 0, 0, 0.3));
  position: relative;
  display: block;
  transform: translate3d(0, 0, 20px);
  z-index: 2;
  max-height: 600px;
  object-fit: contain;
}

.card {
  text-align: center;
}

.card p {
  color: #195782;
  display: none;
  font-size: 15px;
  font-weight: 500;
}

.slide-wrapper img {
  height: auto;
  max-height: 450px;
  object-fit: cover;
  width: 100%;
}

.card.slick-current p {
  display: block;
}

.donate-btns-wrapper {
  display: flex;
  margin: 30px auto;
  /* flex-wrap: wrap; */
}

.donate-btns-wrapper a {
  background-color: #fff;
  width: 19%;
  margin: 1% 1% 1% 0;
  box-shadow: 1px 2px 5px rgb(26 64 98 / 30%);
}

.donate-btns-wrapper a:last-of-type {
  width: 20%;
  margin-right: 0;
}

.donate-wrapper p {
  max-width: 500px;
}

.inner-right {
  display: flex;
  justify-content: flex-end;
}

/* FOOTER --------------------------------------------------------------------*/
#footer-container {
  background: #3d3a1a;
  color: #fff;
  width: 100%;
  padding-top: 50px;
}

#footer-container .inner {
  align-items: center;
  display: flex;

  justify-content: center;
  flex-wrap: wrap;
  max-width: 2000px;
  width: 95%;
}

#footer-container nav.main-menu {
  text-align: left;
  width: auto;
}

#footer-container nav.main-menu ul {
  display: inline-block;
  text-align: left;
}

#footer-container .pp {
  display: flex;
}

#footer-container .pp a {
  text-decoration: none;
  color: #efd9ba;
  margin-right: 3px;
}

#footer-container .pp a:hover {
  color: #f0a816;
}

#footer-container .menu-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.bullet-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.disclaimer-wrapper {
  padding-top: 7px;
}

#footer-container .disclaimer-wrapper {
  border-top: 2px solid #efd9ba;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
  padding: 30px 0;
  width: 100%;
}

.social-wrapper a svg .color {
  transition: all 0.4s ease-in-out;
}

.home-popup-wrapper {
  display: none;
}

.meet-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 50px;
}

.meet-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.meet-row p {
  text-align: left;
}

.meet-text h2 {
  color: #3d3a1a;
  font-size: 22px;
  text-align: left;
}

.meet-row.reverse {
  flex-direction: row-reverse;
}
.meet-photo,
.meet-text {
  flex: 1 1 50%;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.at-checkbox-title {
  margin-bottom: 0px;
}
.meet-1 img {
  max-height: 550px;
  object-position: 50% 18%;
}

.SmsLegalDisclaimer {
  margin-top: 10px;
}
.form-wrapper .at * span {
  font-size: 14px !important;
}

.meet-photo img {
  max-width: 100%;
  max-height: 500px;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.meet-bottom-wrapper {
  display: flex;
  border-top: 20px solid #f0a816;
}

.meet-bottom-image {
  width: 100%;
  align-self: stretch;
  display: flex;
}
.meet-bottom-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.meet-bottom-text {
  background-color: #efd9ba;
  padding: 70px;
  width: 100%;
}

#footer-container .logo-a {
  display: block;
  max-width: 500px;
  margin: auto;
  text-decoration: none;
  transition: all ease-in-out 0.4s;
}

#footer-container .logo-a img {
  height: auto;
  transition: all ease-in-out 0.4s;
  width: 200px;
}

#footer-disclaimer {
  background-color: #504e34;
  padding: 30px 0;
}

#footer-disclaimer p {
  text-transform: none;
  font-weight: 500;
  text-align: center;
  color: #efd9ba;
  width: 60%;
  line-height: 162%;
  margin: 0;
}

.footer-right-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

#footer-container .logo-a:hover {
  transform: scale(0.98);
}

#footer-container .donate-a {
  border-radius: 4px;
  color: #3d3a1a;
  background-color: white;
  display: inline-block;
  font-style: normal;
  line-height: 1;
  margin: 0 auto 0;
  padding: 14px 27px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

#footer-container .donate-a:hover {
  color: #3d3a1a;
  background-color: #f0a816;
}

.disclaimer-wrapper p {
  color: #efd9ba;
  font-size: 18px;
  font-weight: 500;
  margin: 7px 0 5px;

  text-transform: uppercase;
}

.disclaimer-wrapper p span {
  display: block;
  font-weight: 500;
  margin-left: 20px;
}

.disclaimer-wrapper p.first {
  margin-top: 0;
}

.disclaimer-wrapper p span.line {
  display: inline-block;
  font-weight: 400;
}

#footer-container a,
.footer.main-menu a {
  color: #efd9ba;
}

#footer-container a:hover,
.footer.main-menu a:hover {
  color: #f0a816;
}

#footer-container .donate a,
.footer.main-menu .donate a {
  color: #efd9ba;
}

footer .paid-p {
  border: 2px solid #efd9ba;
  padding: 5px 10px;
}

footer .menu-wrapper {
  text-align: left;
}

footer article.menu-wrapper {
  width: 60%;
}

.footer.main-menu ul {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/* POPUP -------------------------------------------------------------------- */
.home-popup-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #efd9ba;
  height: 100%;
  position: fixed;
  overflow-y: scroll;
  z-index: 10000000000;
  padding-bottom: 50px;
}

.home.splash-open .no-splash {
  display: none;
}

.popup-logo {
  margin-top: 50px;
  margin-left: 50px;
}

.popup-logo img {
  width: 200px;
  height: auto;
}

.pop-img-wrapper {
  display: flex;
  align-self: stretch;
  width: 50%;
}

img.pop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 620px;
}

.close-div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 2px;
  background: #ffffff;
  border: 1px solid #3d3a1a;
  width: fit-content;
  margin: 0 auto;
  gap: 10px;
  transition: all 0.4s ease-in-out;
}

.arrow-icon {
  width: 10px;
  height: auto;
}

.close-div a {
  display: inline-block;
  color: #3d3a1a;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 161.8%; /* 38.832px */
  letter-spacing: 0.72px;
  text-transform: uppercase;
  text-decoration: none;
}

.close-div:hover {
  background: #f0a816;
  color: #3d3a1a;
  border: 1px solid #f0a816;
}

.popup-content {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  margin: 100px auto;
  max-width: 1500px;
  width: 73%;
}

.popup-content-right {
  margin: 0 auto;
  padding: 40px;
}

.popup-content h2 {
  text-align: center;
  color: #3d3a1a;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 124%;
  padding-bottom: 50px;
  width: 100%;
  margin: 0 auto;
  text-transform: uppercase;
}

.popup-content .donate-btns a {
  order-radius: 2px;
  background: #3d3a1a;
  color: var(--Neutral-100, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.72px;
  font-size: 24px;
  margin: 7px auto;
  padding: 15px 0px 13px 0px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  width: 49%;
  /* color: #EFE8D2; */
}

.popup-content .donate-btns a:hover {
  background: #f0a816;
  color: #3d3a1a;
}

/* NGP Form ------------------------------------------------------------------*/
.ngp-form {
  max-width: 100% !important;
  margin: 0 auto;
}

.at input[type="checkbox"] + span:before {
  border: 1px solid #3d3a1a !important;
  background: white !important;
}

.at input[type="checkbox"]:checked + span:before {
  background-color: #3d3a1a !important;
}

header.at-title {
  display: none;
}

.at h1,
.at h2,
.at h3,
.at h4,
.at h5,
.at h6 {
  display: none;
}

.at-inner,
.at-fields {
  background: transparent !important;
}

.at fieldset legend {
  display: none;
}

.form-wrapper .at * span {
  color: #fff;
  display: block;
  font-size: 14px !important;
  margin-bottom: 5px !important;
}

.form-wrapper input {
  border-radius: 4px;
  border: 1px solid #f0a816 !important;
  background: rgba(255, 255, 255, 0.4);
  color: #404041;
  font-size: 20px;
  height: 3rem !important;
  font-style: normal;
  font-weight: 500;
  font-family: "gotham", sans-serif !important;

  text-transform: uppercase;
}

.vol-wrapper-form::placeholder,
.form-wrapper input::placeholder {
  color: #404041 !important;
}

.form-wrapper .at-form-submit {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.vol-wrapper-form .at-form-submit .at-submit,
.form-wrap input[type="submit"],
.form-wrapper .at-form-submit .at-submit {
  background: #f0a816 !important;
  box-sizing: border-box;
  border: none !important;
  border-radius: 4px;
  color: #3d3a1a !important;
  display: inline-block;
  font-family: "gotham", sans-serif !important;
  font-size: 25px !important;
  line-height: 1;
  margin: 0;
  text-indent: 0px;
  text-shadow: none !important;
  text-transform: uppercase;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.at .error small.error {
  color: black !important;
}

.form-wrap input[type="submit"] {
  /* width: ; */
  margin-top: 10px;
}

.vol-wrapper-form .at-form-submit .at-submit:hover,
.form-wrap input[type="submit"]:hover,
.form-wrapper .at-form-submit .at-submit:hover {
  background: #3d3a1a !important;
  border: none !important;
  color: #fff !important;
  cursor: pointer;
}

.form-wrapper .at-text {
  color: transparent;
  flex: none !important;
  font-size: 0;
  width: 100% !important;
}

.at-row > [class^="at-"] {
  margin: 0 !important;
  min-width: 100px !important;
}

.at-form-submit {
  padding: 0 !important;
}

.at-fieldset .ContactInformation,
.ngp-form .at,
.at fieldset:last-of-type {
  padding: 0 !important;
}

div.at-markup.UpdateMyProfile {
  display: none !important;
}

.content.thankYou p,
.at-markup.SmsLegalDisclaimer.at-legal p {
  color: black;
  font-family: "gotham", sans-serif !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
}

.content.thankYou p {
  font-size: 17px;
}

#fastaction-signup-inner,
#NVSignupForm1721087-FastAction {
  display: none !important;
}

.action-wrapper {
  text-align: center;
}

.action-wrapper p {
  color: #fff;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0;
}

.form-wrap form {
  margin: auto;
  max-width: 700px;
  width: 100%;
}

.form-wrap input {
  background-color: #fff;
  border: none;
  border-radius: 0;
  color: #195782;

  font-size: 17px;
  font-weight: 600;
  margin: 1%;
  padding: 13px 10px;
  width: 48%;
}

.form-wrap label {
  align-items: center;
  color: #fff;
  display: grid;
  gap: 0.9em;
  grid-template-columns: 1em auto;
  font-size: 19px;
  padding: 10px 5px;
  /* text-transform: uppercase; */
}

.form-wrap label span {
  font-weight: 600;
  text-align: left;
  color: #fff;
  font-size: 16px;
}

.form-wrap input::placeholder {
  color: #195782 !important;
}

.form-wrap .at-check.YesSignMeUpForUpdatesForBinder {
  display: none !important;
}

.form-wrap .at .at-fieldset {
  padding: 0 !important;
}

.form-wrap input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: #fff;
  background-color: transparent;
  /* Not removed via appearance */
  margin: 0;

  font: inherit;
  color: #fff;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid #fff;
  border-radius: 0.15em;
  transform: translateY(-0.075em);

  display: grid;
  place-content: center;
  padding: 0;
}

.form-wrap .at-row > [class^="at-"] {
  font-size: 0 !important;
  padding: 0 5px !important;
}

.form-wrap .at-fieldset.Interests {
  margin-top: 20px;
}

.form-wrap input[type="checkbox"]::before {
  content: "";
  box-shadow: inset 1em 1em #195782;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  height: 0.65em;
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  width: 0.65em;
}

.form-wrap input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.form-wrap .at-text.CustomFormFieldQuestion_4445505424354575 {
  max-width: 350px;
}

input#zip {
  width: 98%;
}

input#other {
  width: 95%;
  margin: 0 0 5px auto;
}

input#other,
input#skills,
input#foreign {
  width: 98%;
}

label.other {
  font-weight: 600;
  text-align: left;
  color: #fff;
  font-size: 16px;
  grid-template-columns: unset;
}

label.updates {
  padding: 15px 5px;
}

article.menu-wrapper {
  /* width: 40%; */
  width: 510px;
}

nav.main-menu {
  text-align: right;
  width: 70%;
}

.volunteer-page p,
.volunteer-page .form-wrap label span,
.volunteer-page .form-wrap label {
  color: #195782;
}

.volunteer-page .form-wrap input[type="checkbox"] {
  border-color: #195782;
}

.volunteer-page .form-wrap {
  margin: 100px auto;
}

.volunteer-page .form-wrap input[type="submit"]:hover {
  background-color: #195782 !important;
  color: #fff !important;
}

/* endorsement page  */
.hero-wrapper.endorsements {
  background: #fff;
  padding: 75px 5% 15px;
}

.hero-wrapper.endorsements h1 {
  color: #195782;
  text-align: center;
  font-size: 75px;
  line-height: 0.9 !important;
  font-style: normal;
  font-weight: 400;
  line-height: 65%; /* 100.149px */
  text-transform: capitalize;
}

.hero-sub-page {
  display: block;
  margin: 0 auto 20px;
  max-width: 500px;
  width: 90%;
}

.endorsements-listing-wrapper {
  background: #fff;
  padding: 0px 9% 30px;
}

.endorsements-listing-wrapper h2 {
  color: #195782;
  text-align: center;
  font-size: 75px;
  font-style: normal;
  font-weight: 400;
  line-height: 111.5%; /* 100.149px */
  /* text-transform: capitalize; */
}

.select2-container--default * {
  text-align: center;
}
.single-quote-wrapper {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.single-quote-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto 30px;
}

#back-to-top {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  filter: drop-shadow(2px -2px 4px rgba(0, 0, 0, 0.3));
  height: 40px;
  background-color: #f0a816;
  color: #3d3a1a;
  text-align: center;
  line-height: 40px;
  text-decoration: none !important;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1000;
  transition: background-color 0.3s;
}

#back-to-top:hover {
  background-color: #3d3a1a;
  color: #f0a816;
}

.single-quote-wrap.no-image {
  padding: 0 35px;
}
.single-quote-wrap:nth-of-type(even) {
  flex-direction: row-reverse;
}

.single-quote-wrap.no-image .by span {
  color: #a11d21;
}
.single-quote-wrap.no-image p.by {
  color: #195782;
}

.single-quote-wrap:nth-of-type(even) .by {
  margin: 0 0 0 auto;
  text-align: right;
}

.single-quote-wrap:nth-of-type(even) img {
  margin-right: 0px;
  margin-left: 30px;
}

.single-quote-wrap img {
  border-radius: 50%;
  border: 5px solid #195782;
  height: 200px;
  object-fit: cover;
  width: 200px;
  margin-right: 30px;
}

.single-quote-wrap:nth-of-type(even) .quote-p {
  text-align: right !important;
}

.single-quote-wrap .quote-inner {
  display: flex;
  flex-wrap: wrap;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

.shake {
  animation: shake 1.3s ease-in-out;
}
.single-quote-wrap .by {
  color: #a11d21;
  font-size: 33px;

  font-style: normal;
  font-weight: 400;
  margin-top: 0px;
  line-height: 1.2;
}

.single-quote-wrap p.by {
  line-height: 0.9;
}
.single-quote-wrap p.by span {
  padding-top: 5px;
  line-height: 1.1;
}

.single-quote-wrap.no-image p {
  text-align: center !important;
  margin: 0 auto !important;
}

html {
  scroll-behavior: smooth;
}

.single-quote-wrap .quote-p {
  margin-bottom: 15px;
  margin-top: 0px;
}

.quote-p {
  font-size: 18px;
}

.single-quote-wrap .by span {
  display: block;

  font-size: 18px;
  color: #195782;
}

article.single-quote-wrap.no-image {
  flex-direction: column;
  margin: 35px 0 30px;
  width: 30%;
  min-width: 300px;
}

.my-select2 {
  width: 90%;
  text-align: center;
  margin: 10px auto;
  max-width: 270px;
  font-size: 18px;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

.pulsate {
  animation: pulsate 1s ease-in-out 2;
  /* 1 second for each pulsate, 2 times */
}
.endorser-dropdown {
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.endorser-dropdown * {
  text-align: center;
}
.select2-container--default,
.select2-container--default * {
  font-size: 17px;
  cursor: pointer;

  color: #195782 !important;
}

.select2-results__option.select2-results__option--highlighted {
  color: white !important;
  cursor: pointer;
}

.footer-image {
  height: auto;
  margin-bottom: -4px;
  width: 100%;
}

.wp-block-image .alignleft,
.wp-block-image .alignright {
  width: 50%;
}

/* firefox media query */
@-moz-document url-prefix() {
  .pum-close {
    line-height: 33px !important;
  }
  #back-to-top {
    line-height: 33px !important;

    font-size: 22px !important;
  }
}

.inner-right img {
  height: auto;
  object-fit: cover;
}

.about-section .inner-right img.headshot {
  max-height: 490px;
}
.support-donate a {
  height: 54px;
}
.popup-content p {
  margin: 5px auto 15px;
  text-align: center;
  font-size: 14px;
  max-width: 450px;
  width: 85%;
  line-height: 1.5;
}

.popup-content h3 {
  max-width: 500px;
  margin: 3px auto 7px;
  font-weight: 600;
  width: 85%;
}

#footer-container p {
  font-size: 15.5px;
}

.section .inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.basic-content ol,
.basic-content ul {
  margin-left: 35px;
}

.page-template-404 .basic-page-wrapper {
  min-height: 400px;
}

.page-template-404 .main-content,
.page-template-404 .basic-content,
.page-template-404 .main-content-inner h1 {
  background-color: #3d3a1a;
  color: #ffffff;

  margin-bottom: 0;
}

.page-template-404 .main-content-inner {
  padding-bottom: 0;
}

.page-template-404 .basic-content {
  padding: 0;
}

.page-template-404 .basic-content h1 {
  color: #ffffff;
  text-align: center;
}

.btn-404 {
  display: block;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  color: #3d3a1a;
  border: 1px solid #3d3a1a;
  padding: 10px 20px;
  background-color: #efd9ba;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  width: fit-content;
  margin-top: 40px;
}

.btn-404:hover {
  background-color: #f0a816;
  color: #ffffff !important;
}
