/*
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
-------------------------------------------------------------- */

@import url("https://use.typekit.net/hgs4rzb.css");

@font-face {
  font-family: "AvenirLTStd-MediumOblique";
  src: url("./css/font/AvenirLTStd-MediumOblique.otf");
}

@font-face {
  font-family: "AvenirNextLTPro-Regular";
  src: url("./css/font/avenirnextltpro-regular-webfont.woff2") format("woff2"),
    url("./css/font/avenirnextltpro-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AvenirNextLTPro-Bold";
  src: url("./css/font/AvenirNextLTPro-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  /* font-family: 'AvenirNextLTPro-Regular', sans-serif; */
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: minion-pro, serif !important; */
  font-family: "gal-gothic-variable", sans-serif;
}

.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%;
  font-family: "gal-gothic-variable", sans-serif;
  font-variation-settings: "wght" 300;
  overflow-x: hidden;
}

/* ANIMATIONS -------- */
.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.5s;
  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: 1s;
  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.5s;
  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);
  }
}

article.basic-page-wrapper.interior-page {
  border: 4px solid #09425a !important;
  padding: 25px;
}
/* POPUP ------------------------- */
.home-popup-wrapper {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  /* background-color: rgb(0 45 114 / .8); */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  -ms-backdrop-filter: blur(20px);
  -moz-backdrop-filter: blur(20px);
  height: 100%;
  position: fixed;
  overflow-y: scroll;
  z-index: 10000000000;
  /* display: none; */
}

.home-popup-wrapper .home-popup-inner {
  background-color: #09425a;
  display: flex;
  margin: 20px auto;
  max-width: 800px;
  padding: 0;
  width: 90%;
  border-radius: 10px;
  position: relative;
  /* box-shadow: 4px 4px 18px rgb(0 0 0 / 25%); */
}

.home-popup-wrapper .home-popup-inner .close-btnn {
  cursor: pointer;
  position: absolute;
  height: auto;
  right: 15px;
  top: 15px;
  width: 26%;
  z-index: 3;
  display: flex;
  align-items: center;
  background: #c83d33;
  font-family: "gal-gothic-variable";
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0.01px;
  padding: 8px;
  justify-content: center;
  box-shadow: 4px 4px 18px rgb(0 0 0 / 25%);
  border: solid 1px transparent;
}

.home-popup-wrapper .home-popup-inner .close-btnn span {
  padding-left: 10px;
}

.home-popup-wrapper .home-popup-inner .close-btnn:hover {
  border: solid 1px #fff;
}

/* .home-popup-wrapper .home-popup-inner .close-btnn svg:hover {
    transition: all 0.2s ease-in-out;
    transform:scale(1.2);
} */

.home-popup-wrapper .home-popup-inner .inner-left {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 30%;
  border-radius: 10px 0 0 10px;
}

.home-popup-wrapper .home-popup-inner .inner-right {
  border-radius: 0 10px 10px 0;
  color: #fff;
  display: flex;
  text-align: center;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.home-popup-wrapper .home-popup-inner .inner-right h2 {
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 5px 0 15px;
  text-align: center;
  text-transform: uppercase;
}

.home-popup-wrapper .home-popup-inner .inner-right p {
  color: #fff;
  line-height: 1.2;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.home-popup-wrapper .home-popup-inner .inner-left {
  padding: 50px 20px;
  position: relative;
}

.home-popup-wrapper .home-popup-inner .logo-image {
  display: block;
  height: auto;
  margin: 0 auto 15px;
  max-width: 150px;
  width: 50%;
}

.home-popup-wrapper .home-popup-inner video {
  height: auto;
  width: 100%;
  max-width: 700px;
}

.donatebtns.popup {
  color: #fff;
  flex-wrap: wrap;
}

.donatebtns.popup .btnsleft {
  width: 100%;
}

.donatebtns.popup .btnsright {
  width: 100%;
}

.donatebtns.popup .btnsright a {
  display: inline-block;
  margin: 0 1% 2% 0;
  width: 47.5%;
}

.donatebtns.popup .border-left {
  border: none !important;
  padding: 0;
}

.donatebtns.popup h5 {
  font-size: 1.1rem;
  margin: 10px;
  text-align: left;
  text-transform: uppercase;
}

/* PRIVACY POLICY PAGE -------------------------------------------------------*/
.pp-main {
  padding: 100px 5%;
  width: 100%;
}
.pp-link {
  color: #fd6400;
  font-weight: 700;
  transition: all ease-in-out 0.4s;
}
.pp-link:hover {
  color: #002e68;
}
.pp-div {
  color: #202020;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
.pp-h-tag {
  color: #002e68;
  font-size: 2.5rem;
  margin: 10px 0;
}
.pp-main ol li,
.pp-main ul li {
  margin: 5px 0 5px 60px;
}
.pp-main p {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* HEADER --------------------------------------------------------------------*/
.main-header {
  padding: 20px 3%;
  position: relative;
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: auto;
  /* max-width: 1500px; */
  position: relative;
}

.header-logo-a {
  display: inline-block;
  text-decoration: none;
  width: 180px;
}

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

ul.menu {
  display: inline-block;
  list-style: none;
}

ul.menu li {
  display: inline-block;
  margin: 10px 12px;
}

ul.menu li a {
  color: #09425a;
  display: inline-block;
  font-size: 20px;
  font-family: "gal-gothic-variable", sans-serif;
  letter-spacing: 1px;
  line-height: 1;
  text-decoration: none;
  transition: all ease-in-out 0.4s;
  /* margin-right: 30px; */
  font-variation-settings: "wght" 600;
  border-bottom: solid 3px transparent;
}

ul.menu li a:hover {
  border-bottom: solid 3px #c83d33;
  color: #72bfdf;
}

/* donate button */
ul.menu li:nth-last-child(1) a,
ul.menu li:nth-last-child(2) a {
  background: #c83d33;
  color: #fff;
  padding: 13px 15px 8px;
  /* margin-right: 20px; */
  border-bottom: none;
}

ul.menu li:nth-last-child(1) a:hover,
ul.menu li:nth-last-child(2) a:hover {
  background: #09425a;
  color: #ffffff;
  border-bottom: none;
}

.social-wrapper {
  display: inline-block;
  vertical-align: middle;
}

.social-wrapper a {
  display: inline-block;
  margin: 0 3px;
}

.social-wrapper a svg {
  height: auto;
  width: 30px;
}

.social-wrapper a .background-color {
  fill: #09425a !important;
  transition: all ease-in-out 0.4s;
}

.social-wrapper a .color {
  fill: #ffffff !important;
  transition: all ease-in-out 0.4s;
}

#thread .color {
  fill: #09425a !important;
  transition: all ease-in-out 0.4s;
}

#thread .background-color {
  fill: #ffffff !important;
  transition: all ease-in-out 0.4s;
}

.social-wrapper a:hover .background-color {
  fill: #ffffff !important  ;
}

.social-wrapper a:hover .color {
  fill: #c83d33 !important;
}

#thread:hover .color {
  fill: #ffffff !important  ;
}

#thread:hover .background-color {
  fill: #c83d33 !important;
}

.social-wrapper .thread:hover,
.social-wrapper #threads:hover {
  fill: #fff !important;
  color: #fff !important;
  background-color: #c83d33 !important;
  border-radius: 50%;
  padding: 2px;
}

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

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

.bar1,
.bar2,
.bar3 {
  background-color: #c83d33;
  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: #c83d33;
}

.change .bar2 {
  opacity: 0;
}

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

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

.mobile-nav-logo {
  display: block;
  margin: 0 auto 30px;
  max-width: 200px;
}

.mobile-nav-logo img {
  height: auto;
  width: 100%;
}

.mobile-nav ul.menu li {
  display: block;
  margin: 20px auto;
}

.mobile-nav .social-wrapper {
  display: block;
  margin: 10px auto;
}

/* MAIN ----------------------------------------------------------------------*/
/* Hero */
.hero-wrapper {
  /* background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
  padding: 0;
  position: relative;
}

.desktop-hero {
  display: block;
  height: auto;
  width: 100%;
  margin-left: 18%;
}
.mobile-hero {
  display: none;
}

.hero-inner {
  height: 100%;
  max-width: 100%;
  padding: 135px 5%;
  background-image: linear-gradient(
    90deg,
    #72bfdf 50%,
    rgba(114, 191, 223, 0) 100%
  );
  position: absolute;
  width: 715px;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-inner h1 {
  font-size: 78px;
  color: #ffffff;
  letter-spacing: 1.54px;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 500px;
  font-family: "gal-gothic-variable";
  border-bottom: 7px solid #09425a;
  margin-bottom: 20px;
  font-variation-settings: "wght" 500;
}

.hero-inner .form-wrapper {
  max-width: 480px;
}

.hero-inner .form-wrapper form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hero-inner .form-wrapper .at label.at-text input {
  background-color: #ffffff !important;
  border: 2px solid #ffffff !important;
  border-radius: 0 !important;
  color: #09425a !important;
  display: inline-block;
  font-size: 1.1rem !important;
  margin: 5px 0 !important;
  padding: 7px 10px 6px;
  width: 98% !important;
}

.hero-inner .form-wrapper .at label.at-text input::placeholder {
  color: #09425a !important;
}

.at-form-submit .at-submit {
  float: none !important;
  margin: 0 !important;
}

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

.hero-inner .form-wrapper input[type="submit"],
.endorse-btn {
  background-color: #09425a !important;
  border: none;
  border-radius: 0px;
  color: #ffffff !important;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.3rem !important;
  padding: 10px 10px 9px;
  text-transform: uppercase;
  transition: all ease-in-out 0.4s;
  text-shadow: none !important;
  width: 100%;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  margin-top: 12px !important;
}

.endorse-btn-container {
  width: 100%;
  text-align: center;
  margin: 10% 0px;
}

.at-row.at-row-solo.at-row-full.SmsLegalDisclaimer.at-indented {
  font-size: 10px;
  margin-top: 2%;
  margin-left: -5%;
}

.hero-inner .form-wrapper input[type="submit"]:hover {
  background-color: #ffffff !important;
  color: #002e68 !important;
}

.endorse-btn:hover {
  background: #c83d33 !important;
  color: #fff !important;
}

/* 
.bold {
    transition: all 0.5s ease 0s;
}
.bold:hover {
    font-variation-settings: 'wght' 900;
} */

/* Donate Section */
/* .donatebox {
    padding: 50px 5%;
} */

.donatebox .donate-inner {
  background: #c83d33;
  padding: 2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.donatebox .donate-inner h2 {
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 300;
  font-family: "gal-gothic-variable";
  margin-right: 3%;
  font-variation-settings: "wght" 600;
  font-size: 43px;
}

.donatebox .donate-inner p {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.1;
  padding-top: 10px;
}

.donatebtns {
  display: flex;
}

.btnsleft {
  display: inline-block;
  width: 100%;
}
.home-popup-wrapper .donatebox .donate-inner .donatebtns a {
  width: 17%;
}

.donate-inner .donatebtns a {
  width: 14%;
}

.btnsright {
  display: inline-block;
  width: 35%;
}

.donate-inner h5 {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
}

.donatebtns a {
  background-color: #fff;
  color: #09425a;
  font-size: 30px;
  display: inline-block;
  line-height: 1.1;
  margin: 5px;
  padding: 12px 5px 5px 5px;
  text-align: center;
  text-decoration: none;
  transition: all ease-in-out 0.4s;
  font-variation-settings: "wght" 600;
}

.popup-body {
  padding-bottom: 20px;
}

.home-popup-wrapper .donatebtns .other {
  width: 26%;
  background-color: #c83d33;
  color: #fff;
  border: solid 1px transparent;
}

.donatebtns .other {
  width: 31% !important;
  background-color: #09425a;
  color: #fff;
}

.donatebtns .other:hover {
  border: solid 1px #fff;
}

.donatebtns a span {
  font-size: 1rem;
  vertical-align: super;
}

/* .donatebtns .btnsright a.active,
.donatebtns a:hover {
    background-color:  #C83D33;
    color: #FFFFFF;
} */

.popup-body .donatebtns a:hover {
  background-color: #c83d33;
  color: #ffffff;
}
.donatebtns a:hover {
  background-color: #09425a;
  color: #ffffff;
}

.donatebtns .btnsright a {
  display: block;
  font-size: 24px;
  font-style: normal;
  margin: 3% 0;
  padding: 13px 10px;
  text-transform: uppercase;
  width: 100%;
}

.btnsright h5 {
  color: #ffffff;
  padding-left: 5%;
}

.border-left {
  border-left: 3px solid #fff;
  padding-left: 5%;
}

/* About */
.about-wrapper {
  /* padding: 75px 5% ; */
}

.about-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #09425a;
}

.about-inner h2 {
  color: #fff;
  font-size: 3.5rem;
  margin: 0 auto 30px;
  font-family: "gal-gothic-variable";
  font-variation-settings: "wght" 600;
}

/* .about-copy-wrapper {
    width: 55%;
} */
.about-copy-inner {
  padding: 6%;
  width: 100%;
}

.about-inner img {
  /* max-height: 500px; */
  object-fit: cover;
  width: 50%;
}

img.alignright {
  float: right;
  margin: 20px 0 20px 20px;
  max-width: 100%;
}

img.alignleft {
  float: left;
  margin: 20px 20px 20px 0;
  max-width: 100%;
}

.about-copy-inner.width-half {
  padding-right: 5%;
  width: 50%;
}

.about-copy-inner p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 30px 0;
  font-variation-settings: "wght" 500;
}

.about-copy-inner ol,
.about-copy-inner ul {
  color: #202020;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 30px 0 30px 5%;
}

.about-copy-inner ol li,
.about-copy-inner ul li {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 30px 0;
  width: 95%;
}

.about-copy-inner p a,
.about-copy-inner ol a,
.about-copy-inner ul a {
  color: #fd6400;
  font-weight: 600;
  transition: all ease-in-out 0.4s;
  text-decoration: none;
}

.about-copy-inner p a:hover,
.about-copy-inner ol a:hover,
.about-copy-inner ul a:hover {
  color: #002e68;
}

.why-wrapper {
  padding: 50px 5%;
}

.why-inner {
  /* max-width: 1100px; */
  margin: auto;
}

.why-inner h2 {
  color: #09425a;
  font-size: 3.5rem;
  margin: 0 auto 30px;
  font-variation-settings: "wght" 600;
  margin-top: 40px;
}

.why-inner a {
  color: #09425a;
}
.why-inner a:hover {
  color: #72bfdf;
}

.image-wrapper-why img {
  height: auto;
  width: 100%;
}

.why-inner .about-copy-inner img {
  max-width: 50%;
}

blockquote p {
  /* font-family: "AvenirLTStd-MediumOblique", sans-serif; */
  font-size: 25px !important;
  color: #002e68 !important;
  font-style: italic;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

.about-copy-inner.card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-copy-inner.card:nth-of-type(2) {
  flex-direction: row-reverse;
}

.about-copy-inner.card .card-inner {
  width: 47%;
}

.about-copy-inner.card img {
  height: auto;
  width: 47%;
}

/* why page */

.why-copy-inner p {
  color: #09425a;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 30px 0;
  font-variation-settings: "wght" 500;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3% 0 2% 0;
  width: 99.9%;
  border: solid;
  max-width: 700px;
}

.why-wrapper .video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3% 0 2% 0;
  width: 99.9%;
  border: solid;
  max-width: 1600px;
}

.video-wrapper img,
.video-wrapper video {
  width: 100%;
  max-width: 1600px;
}

video[poster] {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

/* Image wrapper ----- */
.image-wrapper {
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  padding: 10px 5%;
}

.image-wrapper-full {
  display: flex;
  justify-content: center;
  margin: 10px 7% 10px 5%;
}
.image-wrapper-full img {
  width: 100%;
}

.image-wrapper img {
  height: auto;
  width: 50%;
  padding-right: 20px;
}

/* FOOTER --------------------------------------------------------------------*/
footer {
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  /* padding: 100px 5% 50px; */
}

.footer-inner {
  display: inline-block;
}

.footer-inner.left {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 5%;
}

.footer-inner.right {
  text-align: right;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 2%;
  flex-direction: column;
  /* margin-right: 5%; */
}

.footer-logo-a {
  display: inline-block;
  max-width: 100%;
  width: 180px;
}

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

.footer-nav {
  margin-top: 0px;
  display: flex;
  align-items: center;
}

.footer-nav .social-wrapper {
  display: block;
}

/* footer .social-wrapper a .color {
	fill: #588BC1;
    transition: all ease-in-out 0.4s;
}

footer ul.menu li a {
	color: #FFFFFF;
}

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

footer .social-wrapper a:hover .background-color {
	fill: #002961;
} */

footer p {
  font-size: 1rem;
  line-height: 1.1;
}

p.paid-p {
  border: 2px solid #fff;
  margin: 20px 0 20px auto;
  max-width: 100%;
  font-size: 18px;
  padding: 0.5rem;
  text-align: center;
}

footer .paid-p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer p a {
  color: black;
  transition: all ease-in-out 0.4s;
  font-size: 18px;
}

footer p a:hover {
  color: #fd6400;
}

.bottom-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottom-wrap-inner {
  max-width: 1400px;
}

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

header.at-title {
  display: none;
}

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

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

.at fieldset legend {
  display: none;
}

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

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

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

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

.at-text.MobilePhone input {
  margin-left: auto !important;
}

.at-markup.SmsLegalDisclaimer.at-legal {
  /* font-family: "din-2014", sans-serif !important; */
  font-size: 15px;
  color: #ffffff;
  line-height: 1.3;
}

.at-row,
.at-targets-have-images {
  align-items: center;
}

/* BASIC PAGE ------ */
.basic-page-wrapper {
  margin: 50px auto;
  max-width: 1100px;
  width: 90%;
}

.basic-page-wrapper h1,
.basic-page-wrapper h2,
.basic-page-wrapper h3,
.basic-page-wrapper h4,
.basic-page-wrapper h5,
.basic-page-wrapper h6 {
  color: #09425a;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 20px 0;
  font-variation-settings: "wght" 500;
}

.basic-page-wrapper h1 {
  margin: 20px 0 40px;
  color: #09425a;
  font-size: 50px;
  font-variation-settings: "wght" 600;
}

.basic-page-wrapper h2 {
  font-size: 2.5rem;
}

.basic-page-wrapper h3 {
  font-size: 2.1rem;
}

.basic-page-wrapper h4 {
  font-size: 1.9rem;
}

.basic-page-wrapper h5 {
  font-size: 1.7rem;
}

.basic-page-wrapper h6 {
  font-size: 1.7rem;
}

.basic-page-wrapper p {
  color: #202020;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 30px 0;
}

.page-template-page-endorsements p {
  margin: 0;
}

.basic-page-wrapper ul,
.basic-page-wrapper ol {
  color: #202020;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 30px 0 30px 5%;
}

.basic-page-wrapper p a,
.basic-page-wrapper ul a,
.basic-page-wrapper ol a {
  color: #fd6400;
  text-decoration: none;
  transition: all ease-in-out 0.4s;
}

.basic-page-wrapper p a:hover,
.basic-page-wrapper ul a:hover,
.basic-page-wrapper ol a:hover {
  color: #002e68;
}

.alignright img {
  margin: 0 0 20px 20px;
}

.alignleft img {
  margin: 0 20px 20px 0;
}

.footer-box {
  border: solid 1px;
  padding: 10px;
  margin-bottom: 15px;
}

.footer-box2,
.footer-box3 {
  padding: 5px 0;
}

.footer-box3,
.footer-box,
.footer-box2 {
  color: #09425a;
  display: inline-block;
  font-size: 15px;
  font-family: "gal-gothic-variable", sans-serif;
  text-decoration: none;
  transition: all ease-in-out 0.4s;
  font-variation-settings: "wght" 500;
}

.footer-box3:hover {
  border-bottom: solid 3px #c83d33;
  color: #72bfdf;
}

.contributions p {
  color: #fff !important;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 30px 0;
  font-variation-settings: "wght" 500;
}

label#NVSignupForm1623409-ContactInformation-PostalCode input {
  width: 96% !important;
}

.names {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  width: 90%;
  margin: 20px auto;
  max-width: 1300px;
}

.names p {
  width: 50%;
  text-align: left;
  color: #09425a;
  font-size: 20px;
  font-variation-settings: "wght" 500;
  margin: 5px 0;
}

.logos img {
  width: 100%;
  /* margin: 20px; */
  /* min-height: 150px; */
  object-fit: contain;
}

.logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px auto;
  width: 90%;
  max-width: 1300px;
}

.page-template-page-endorsements main.main-content {
  border-bottom: solid 5px #09425a;
}

.page-template-page-endorsements .desktop-hero {
  display: block;
  width: 100%;
  margin-left: 18%;
  object-fit: cover;
  max-height: 750px;
  object-position: top;
}

span#NVSignupForm1623409-AdditionalInformation-CustomFormFieldQuestion_4550952176442567-label {
  text-transform: uppercase;
  color: #09425a !important;
  font-weight: 800;
  font-size: 19px;
  font-family: "AvenirNextLTPro-Bold";
  margin: 0;
}

span.at-checkbox-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.at-form-submit.clearfix {
  margin: 0 !important;
  padding: 0 !important;
}
label#NVSignupForm1623409-AdditionalInformation-CustomFormFieldQuestion_4550952176442567 {
  padding-left: 20px;
}

a.endorse-btn {
  text-decoration: none;
  font-size: 19px;
  font-family: "AvenirNextLTPro-Bold";
  line-height: 0;
  padding: 15px;
  margin: 0;
  padding-top: 17px;
}

.logo-container {
  width: 26%;
  margin: 20px 0;
  min-height: 150px;
  object-fit: contain;
  text-align: center;
}

.logos p {
  color: #09425a;
  font-size: 20px;
  font-variation-settings: "wght" 500;
  margin: 5px 0;
}

video {
  max-width: 100%;
}

a.download-button {
  background: #c83d33;
  color: #fff;
  padding: 13px 15px 8px;
  border-bottom: none;
  display: inline-block;
  margin-top: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  font-family: "gal-gothic-variable", sans-serif;
  font-variation-settings: "wght" 600;
  text-align: center;
  width: fit-content;
}

a.download-button:hover {
  cursor: pointer;
  background: #09425a;
  color: #ffffff;
  border-bottom: none;
}

.page-template-page-media main.main-content {
  /* border-top: 5px solid red; */
}

article.basic-page-wrapper.interior-page {
  border: 4px solid red;
  padding: 25px;
}

.video-containter.animate.fade-in-from-bottom.animated {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner {
  background: #c83d33;
  padding: 20px 0;
  transition: all ease-out 300ms;
  text-align: center;
}

a.banner-button {
  font-size: 20px;
  font-family: "gal-gothic-variable", sans-serif;
  letter-spacing: 1px;
  line-height: 1;
  text-decoration: none;
  transition: all ease-in-out 0.4s;
  font-variation-settings: "wght" 600;
  color: white;
}

.banner:hover {
  background: #09425a;
  color: #ffffff;
  border-bottom: none;
  cursor: pointer;
}

body.page-template.page-template-page-media.page-template-page-media-php
  .main-content
  a {
  background: #c83d33;
  color: #fff;
  padding: 13px 15px 8px;
  border-bottom: none;
  display: inline-block;
  /* margin-top: 30px; */
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  font-family: "gal-gothic-variable", sans-serif;
  font-variation-settings: "wght" 600;
  text-align: center;
  width: fit-content;
}

body.page-template.page-template-page-media.page-template-page-media-php
  .main-content
  a:hover {
  cursor: pointer;
  background: #09425a;
  color: #ffffff;
  border-bottom: none;
}

body.page-template.page-template-blueprint.page-template-page-media
  .main-content
  a {
  background: #c83d33;
  color: #fff;
  padding: 13px 15px 8px;
  border-bottom: none;
  display: inline-block;
  /* margin-top: 30px; */
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  font-family: "gal-gothic-variable", sans-serif;
  font-variation-settings: "wght" 600;
  text-align: center;
  width: fit-content;
}

body.page-template.page-template-blueprint.page-template-page-media
  .main-content
  a:hover {
  cursor: pointer;
  background: #09425a;
  color: #ffffff;
  border-bottom: none;
}

.thank-you-social {
  display: flex;
  margin: 0 auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.thank-you-social a:hover {
  opacity: 0.7;
}

.thank-you-social img {
  max-width: 100px;
}

.FastAction {
  display: none !important;
}
.video-container {
  padding-bottom: 5px;
  padding-top: 10px;
}

.video-container a.download-button {
  margin: 20px auto;
  display: flex !important;
}

.sub-menu {
  position: relative;
  margin-left: -12px;
  margin-top: -6px;
  font-size: 12px;
  height: 0px;
  visibility: hidden;
  opacity: 0;
  width: 170px;
  transform: translateY(-10px);
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}
footer p a {
  color: #09425a;
  display: inline-block;
  font-size: 15px !important;
  font-family: "gal-gothic-variable", sans-serif;
  padding-bottom: 3px;
}
footer p a:hover {
  color: #c83d33 !important;
}
.FastAction.at-markup {
  display: none;
}

.menu-item-has-children:has(.sub-menu:hover) > a {
  border-bottom: solid 3px #c83d33;
  color: #72bfdf;
}

.menu-wrapper.desktop #menu-item-228,
.menu-wrapper.desktop #menu-item-277 {
  display: none;
}

.menu-wrapper.desktop {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
}

ul.menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}

ul.menu li a {
  padding-top: 13px !important;
  margin: 0 5px;
  padding-bottom: 0px;
}

.menu-wrapper.desktop li {
  max-height: 49px !important;
}
.menu-wrapper.desktop .social-wrapper {
  padding-top: 13px !important;
  margin: 0 10px;
}

.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}

.mobile-nav .sub-menu a {
  font-size: 19px !important;
}

.mobile-nav .sub-menu a {
  background: transparent !important;
  color: #09425a !important;
}

.mobile-nav .sub-menu a:hover {
  background: transparent !important;
}
ul.menu li a {
  font-size: 20px;
}

.sub-menu a {
  transition: 0.25s ease-in-out;
  font-size: 12px !important;
  background: #09425a !important;
}
#menu-item-83 {
  margin-right: 0px;
}

.sub-menu a:hover {
  transition: 0.25s ease-in-out;
  background: #72bfdf !important;
}

.footer-nav a {
  margin: 0px;
  font-size: 14px !important;
}

.footer-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.footer-nav .social-wrapper {
  margin-right: 10px;
}
.footer-nav .sub-menu {
  display: none;
}

.gallery img.thumbnail-media-logo {
  object-fit: contain;
  object-position: center;
  background: white;
}
