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

* {
  box-sizing: border-box;
  font-family: "Commissioner", sans-serif;
  margin: 0;
  padding: 0;
}

.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 {
  background-color: #d4e4f7;
  display: block !important;
  width: 100%;
}

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

.width-90 {
  max-width: 90%;
}

img,
video,
embed {
  max-width: 100%;
}

a {
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0b213c;
  font-weight: 400;
  line-height: 1;
  font-family: "Bebas Neue", sans-serif;
  margin: 0 0 20px;
}

h2 {
  font-size: 47px;
  color: #0b213c;
}

.dark-blue {
  color: #0b213c;
}

p {
  color: #313033;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin: 20px 0;
}

ul,
ol {
  margin: 20px 0 20px 5%;
}

ul li,
ol li {
  margin: 10px 0;
  color: #313033;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

p a,
ul li a,
ol li a {
  color: #fd4959;
  text-decoration: none;
}

p a:hover,
ul li a:hover,
ol li a:hover {
  color: #313033;
  text-decoration: underline;
}

/* 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.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);
  }
}

/* HEADER --------------------------------------------------------------------*/
.main-header {
  background-color: transparent;
  padding: 20px 5%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.main-header .header-logo {
  width: 200px;
  transition: all 0.3s ease-in-out;
}

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

.main-header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.main-nav ul {
  align-items: center;
  display: flex;
  margin: 0;
  list-style: none;
}

.main-nav ul li {
  display: inline-block;
  margin: 0;
  margin-right: 20px;
}

.main-nav ul li a {
  color: #d4e4f7;
  display: inline-block;
  font-weight: 400;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  position: relative;
  font-size: 22px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.main-nav ul li a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background-color: #fd4959;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

.main-nav ul li.current_page_item a {
  color: #fd4959;
}

.main-nav ul li.current_page_item a::after {
  width: 100%;
}

.main-nav ul li.donate {
  margin-right: 0;
}

footer .main-nav ul li:last-child {
  /* margin-right: 0; */
}

a.donate {
  background: #fd4959;
  color: #fff;
  padding: 10px 25px;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 22px;
}

a.donate:hover {
  background-color: #fff;
  color: #fd4959;
}

a.donate::after {
  display: none;
}

.main-nav ul li a:hover {
  color: #fd4959;
}

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

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

.container {
  display: none;
}

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

.change .bar2 {
  opacity: 0;
}

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

.mobile-nav {
  background-color: #0b213c;
  background: linear-gradient(274deg, #0b213c 9.05%, #194883 96.73%);
  display: block;
  display: none;
  height: 100vh;
  padding: 75px 5% 50px;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  text-align: center;
  width: 100%;
  z-index: 200;
}

.mobile-nav img {
  height: auto;
  width: 200px;
}

.mobile-nav ul {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  gap: 20px;
  margin: 50px 0 0;
  padding: 0;
}

.mobile-nav .social-icons {
  justify-content: center;
  max-width: 100%;
  width: 300px;
  margin: 20px auto 0;
}

.nav-mobile li {
  margin: 20px 0;
}

.nav-mobile a {
  color: #d4e4f7;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}

.nav-mobile a:hover {
  color: #194883;
  text-decoration: none;
}

/* 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-inner {
  background: transparent !important;
}

.at fieldset legend {
  display: none;
}

.form-wrapper #NVSignupForm461119 input {
  background-color: transparent;
  border: none;
  color: #0b213c;
  font-size: 23px;
  padding: 13px 10px;
  border-radius: 0;
  height: 50px;
}

.form-wrapper #NVSignupForm461119 input::placeholder {
  color: #0b213c;
}

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

.form-wrapper #NVSignupForm461119 .at-form-submit .at-submit {
  box-sizing: border-box;
  display: inline-block;
  font-size: 22px;
  line-height: 1px;
  text-indent: 0px;
  text-transform: uppercase;
  width: 100%;
  color: #fbf9f2;
  background-color: #0b213c;
  font-family: "Bebas Neue", sans-serif !important;
  font-weight: 400;
  width: 100%;
  margin: 0;
  -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;
}

.form-wrapper #NVSignupForm461119 .at-form-submit .at-submit:hover {
  background-color: #fff;
  border: none;
  background-color: #fd4959;
  cursor: pointer;
}

.form-wrapper #NVSignupForm461119 .at-row.at-row-solo.EmailAddress {
  display: inline-block;
  vertical-align: top;
  width: 33%;
  margin: 0 2%;
}

.submit-btn {
  color: #fbf9f2;
  background-color: #0b213c;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  width: 31%;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-wrapper #NVSignupForm461119 .at-row.at-row-solo.FirstName {
  display: inline-block;
  vertical-align: top;
  width: 33%;
}

.form-wrapper .at-text {
  color: transparent;
  font-size: 0;
}

.at-row > [class^="at-"] {
  margin: 0 !important;
  min-width: 100px !important;
  font-weight: 700 !important;
  text-transform: uppercase !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;
}

/* HERO ----------------------------------------------------------------------*/
.hero {
  padding: 145px 5% 30px;
  /* border-bottom: 4px solid #194883; */
  background: #d4e4f7;
  position: relative;
  background: linear-gradient(274deg, #0b213c 9.05%, #194883 96.73%);
}

.error-content h1,
.hero h1 {
  color: #d4e4f7;
  font-family: "Bebas Neue", sans-serif;
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  text-align: center;
}

.error-content h1::before,
.hero h1::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37' height='34' viewBox='0 0 37 34' fill='none'%3E%3Cpath d='M18.5 0.5L22.6535 13.2832H36.0945L25.2205 21.1836L29.374 33.9668L18.5 26.0664L7.62597 33.9668L11.7795 21.1836L0.905455 13.2832H14.3465L18.5 0.5Z' fill='%23FD4959'/%3E%3C/svg%3E");
  display: inline-block;
  margin-right: 15px;
  vertical-align: text-top;
}

.hero h1::after,
.error-content h1::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37' height='34' viewBox='0 0 37 34' fill='none'%3E%3Cpath d='M18.5 0.5L22.6535 13.2832H36.0945L25.2205 21.1836L29.374 33.9668L18.5 26.0664L7.62597 33.9668L11.7795 21.1836L0.905455 13.2832H14.3465L18.5 0.5Z' fill='%23FD4959'/%3E%3C/svg%3E");
  display: inline-block;
  margin-left: 15px;
  vertical-align: text-top;
}

.hero.no-image {
  padding: 100px 5% 0;
  font-size: 0;
}

.hero.no-image h1 {
  padding: 0;
  text-align: left;
}

.hero.no-image h1::before,
.hero.no-image h1::after {
  display: none;
}

.hero.no-image .image-container {
  width: 58%;
}

.hero.no-image .content-container {
  width: 40%;
}

.hero.no-image .inner {
  display: flex;
  align-items: center;
}

.hero.no-image .inner p.pretitle {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 161.8%;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0;
}

.hero.no-image .inner p.posttitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 161.8%;
  margin: 0;
}

.off-white-box {
  /* border: 1px solid #0B213C;
	background: #D4E4F7; */
  padding: 20px;
}

.off-white-box.basic {
  padding: 0 20px;
}

/* PREFOOTER */
.prefooter {
  background: #194883;
  padding: 50px;
  width: 90%;
  margin: 0 auto -75px;
  max-width: 1200px;
  z-index: 1;
  position: relative;
}

.prefooter .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.prefooter .inner .left {
  width: 33%;
}

.prefooter h2 {
  color: #d4e4f7;
  font-size: 38px;
  text-align: left;
  margin: 0;
}

.prefooter svg {
  display: block;
  width: auto;
  margin: 0 0 10px;
}

.prefooter .donate-buttons-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0px;
  flex-wrap: wrap;
  width: 64%;
}

.prefooter .donate-btn {
  border: 2px solid #d4e4f7;
  backdrop-filter: blur(5px);
  color: #d4e4f7;
  font-size: 19px;
  font-weight: 500;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 18%;
  margin: 10px 1%;
}

.prefooter .donate-btn.other {
  color: #fff;
  background-color: #fd4959;
  letter-spacing: 1.8px;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  border-color: #fd4959;
}

.prefooter .donate-btn:hover {
  color: #194883;
  background-color: #d4e4f7;
  border-color: #d4e4f7;
}

.prefooter .donate-btn.other:hover {
  color: #194883;
  background-color: #d4e4f7;
  border-color: #d4e4f7;
}

.prefooter p {
  color: #d4e4f7;
  font-size: 15px;
  text-align: center;
  font-weight: 700;
  margin: 10px auto 0;
  max-width: 450px;
}

/* footer --------------------------------------------------------------------*/
.main-footer {
  background: #0b213c;
  padding: 50px 5% 50px;
}

.home .main-footer {
  padding: 150px 5% 50px;
}

footer p,
footer p a {
  color: #d4e4f7;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  letter-spacing: 0.45px;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-top img {
  width: 100%;
  max-width: 200px;
  transition: all 0.3s ease-in-out;
}

.footer-top img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 2px solid #d4e4f7;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
  margin-top: 20px;
}

p.paid-p {
  border: 1px solid #d4e4f7;
  padding: 10px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  max-width: 100%;
}

footer .footer-address p {
  margin-top: 0;
}

p.copyright {
  color: #d4e4f7;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0;
}

.disclaimer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}

.disclaimer a {
  color: #d4e4f7;
  text-decoration: none;
  margin: 11px 11px 0 0;
}

.disclaimer a:hover {
  color: #fd4959;
}

.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-left: 14px;
}

.social-icons a {
  display: inline-block;
  text-decoration: none;
  color: #d4e4f7;
  font-size: 22px;
}

.social-icons a:hover {
  color: #fd4959;
}

/* HERO IMAGE --------------------------------------------------------------------*/
.hero-wrapper {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: stretch;
  min-height: 600px;
}

.hero-content {
  position: relative;
  width: 45%;
  z-index: 4;
  padding: 100px 0 40px 5%;
  flex-shrink: 0;
  max-width: 675px;
  margin: 0 5% 0 auto;
  z-index: 3;
}

.hero-image {
  width: 100%;
  position: absolute;
  height: 100%;

  z-index: 2;
  flex-shrink: 0;
}

.hero-wrapper .social-icons {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  z-index: 10;
  background-color: #d4e4f7;
  padding: 10px;
  width: 315px;
}

.hero-wrapper .social-icons a {
  color: #0b213c;
  font-size: 20px;
}

.hero-wrapper .social-icons p {
  color: var(--text-accent-2, #0b213c);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.hero-wrapper .social-icons a:hover {
  color: #194883;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.gradient-fill {
  /* background: linear-gradient(270deg, rgba(245, 245, 240, 0.00) 38.59%, #D4E4F7 47.88%); */
  background: linear-gradient(0deg, #0b213c 0%, rgba(11, 33, 60, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 3;
  pointer-events: none;
}

.hero-wrapper h1 {
  color: #fff;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-top: 25px;
  text-align: right;
}

.FastAction.at-markup,
.at-markup.HeaderHtml {
  display: none !important;
}

.at-row,
.at-targets-have-images {
  gap: 10px !important;
}

.ngp-form.at input {
  color: #fff !important;
  font-family: "Commissioner", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  border: 2px solid #fff !important;
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(5px);
  text-transform: uppercase !important;
  height: auto !important;
}

.ngp-form.at input::placeholder {
  color: #fff !important;
  font-family: "Commissioner", sans-serif !important;
}

.flexible-inner {
  margin: 60px 0;
}

/* For better browser compatibility */
.ngp-form.at input::-webkit-input-placeholder {
  color: #fff !important;
  font-family: "Commissioner", sans-serif !important;
}

.ngp-form.at input::-moz-placeholder {
  color: #fff !important;
  font-family: "Commissioner", sans-serif !important;
}

.ngp-form.at input:-ms-input-placeholder {
  color: #fff !important;
  font-family: "Commissioner", sans-serif !important;
}

.ngp-form.at .at-markup.SmsLegalDisclaimer.at-legal p {
  color: #fff !important;
  /* font-family: "Bebas Neue", sans-serif !important; */
  font-size: 13px !important;
  font-weight: 700 !important;
}

.ngp-form.at input[type="submit"] {
  background: #d4e4f7 !important;
  color: #0b213c !important;
  font-size: 23px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: 1.8px;
  margin: 0 !important;
  font-family: "Bebas Neue", sans-serif !important;
  padding: 13px !important;
  width: 100% !important;
  text-transform: uppercase !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
}

.ngp-form.at input[type="submit"]:hover {
  background: #0b213c !important;
  color: #fff !important;
}

.at a {
  color: #fff !important;
  text-decoration: underline !important;
}

.at a:hover {
  color: #fd4959 !important;
}

.at input[type="checkbox"] + span {
  color: #fff !important;
}
body.takeover-active.home {
  overflow: hidden;
  height: 100vh;
}

/* Takeover Styling */
.takeover-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d4e4f7;
  z-index: 9999;
  display: none; /* Hidden by default - only show when body has takeover-open class */
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Show takeover only when body has takeover-open class */
body.takeover-open .takeover-bg {
  display: flex;
}

/* Ensure takeover stays hidden when closed */
body.takeover-closed .takeover-bg {
  display: none !important;
}

#takeover {
  width: 100%;
  height: 100%;
  position: relative;
}

#takeovercon {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

#closebtn {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

#closebtn:hover {
  transform: scale(1.1);
}

.tk-logo-container {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 200px;
  z-index: 10;
}

.tk-logo {
  height: auto;
  width: 100%;
}

#takeover .inner {
  display: flex;
  width: 90%;
  max-width: 1000px;
  height: 100%;
  gap: 0;
  align-items: center;
  position: relative;
  flex-direction: row;
  /* margin-top: 80px; */
}

.takeoverleft {
  width: 60%;
  width: 600px;
  width: 590px;
  max-width: 100%;
  position: relative;
  z-index: 2;
  margin-left: auto;
}
.takeoverleft svg {
  margin-left: auto;
  display: block;
  margin-bottom: 10px;
}

.mobile-hero-image {
  display: none;
}

.left-content {
  padding: 20px;
  /* background: #D4E4F7; */
}

.left-content h2 {
  color: #194883;
  text-align: right;
  font-family: "Bebas Neue", sans-serif;
  font-size: 66px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.tk-donation-buttons {
  display: flex;
  flex-wrap: wrap;
  width: 400px;
  margin-left: auto;
  max-width: 100%;
}

.tk-donation-buttons .donate-btn {
  background: #fd4959;
  color: #fff;
  border: none;
  padding: 15px 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
  width: 48%;
  margin: 1%;
}

.tk-donation-buttons .donate-btn:hover {
  background: #194883;
  color: #fff;
}

.tk-donation-buttons .tk-donate {
  background: #194883;
  color: #fff;
  border-color: #194883;
  /* width: 100%; */
}

.tk-donation-buttons .tk-donate:hover {
  background: #fff;
  color: #194883;
}

.tk-donation-buttons .disclaimer {
  color: #0b213c;
  font-size: 14px;
  margin: 10px 0;
  font-weight: 600;
  text-align: right;
}

.takeover-mobile-image {
  display: none;
}

#home-link {
  background: #d4e4f7;
  border: 2px solid #194883;
  color: #194883;
  padding: 15px 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  margin-top: 10px;
  gap: 10px;
  width: fit-content;
  transition: all 0.3s ease-in-out;
  margin-left: auto;
}

#home-link:hover {
  background: #194883;
  color: #fff;
}

.takeover-image {
  width: 60%;
  width: 500px;
  position: absolute;
  z-index: 3;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  left: 5%;
  bottom: 0;
  z-index: 1;
}

.video-container {
  width: 100%;
  position: relative;
}

.video-container video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.tk-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  width: 16%;
  height: auto;
}

.tk-play-icon:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.tk-play-icon.hidden {
  display: none;
}

/* side by side card */
.side-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 60px auto;
}

.side-card.right {
  flex-direction: row-reverse;
}

.side-card img {
  width: 48%;
  height: auto;
}

.side-card .text {
  width: 48%;
}

.side-card .pretitle {
  color: #fd4959;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 161.8%;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: left;
}

.side-card .text .title {
  color: #0b213c;
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
}

.side-card .text .title svg {
  display: block;
  margin-bottom: 10px;
}

.side-card .text .copy p {
  color: var(--Neutral-20, #313033);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.618;
}

.side-card .text .button {
  color: #194883;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 161.8%;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  vertical-align: middle;
}

.side-card .text .button svg {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

.side-card .text .button:hover {
  color: #fd4959;
  transition: all 0.3s ease-in-out;
}

.side-card .text .button:hover svg {
  transform: translateX(5px);
  transition: all 0.3s ease-in-out;
}

.side-card .text .button:hover svg path {
  fill: #fd4959;
  transition: all 0.3s ease-in-out;
}

.at input[type="checkbox"]:checked + span:after {
  background: rgba(0, 0, 0, 0.4);
  /* border: 1px solid #fff; */
  backdrop-filter: blur(5px);
  outline: none !important;
}

.at input[type="checkbox"] + span:before {
  border: 2px solid #fff !important;
  border-radius: 0 !important;
}

.hero-form {
  max-width: 420px;
  margin-left: auto;
}

.ngp-form.involved {
  margin: 50px auto;
  max-width: 550px !important;
}

.ngp-form.involved .at input[type="checkbox"] + span {
  color: #194883 !important;
}

.ngp-form.involved .at label {
  color: #194883 !important;
  font-weight: 700 !important;
}

.involved.ngp-form.at .at-markup.SmsLegalDisclaimer.at-legal p {
  color: #194883 !important;
}

.involved.ngp-form.at input,
.involved.ngp-form.at textarea {
  background-color: transparent !important;
  border: 2px solid #194883 !important;
  color: #194883 !important;
  border-radius: 0 !important;
  font-weight: 500 !important;
}

.involved.ngp-form.at textarea {
  min-height: 100px !important;
  font-weight: 700 !important;
}

.involved.ngp-form.at input::placeholder,
.involved.ngp-form.at textarea::placeholder {
  color: #194883 !important;
}

.involved.ngp-form.at label small {
  color: #194883 !important;
}

.involved.ngp-form.at .at-markup.SmsLegalDisclaimer.at-legal p a {
  color: #0b213c !important;
}

.involved.ngp-form.at at-fieldset.AdditionalInformation {
  padding: 10px !important;
}

.involved.ngp-form.at input[type="checkbox"] + span:before {
  border: 2px solid #194883 !important;
}

.involved.ngp-form.at .ngp-form.at input[type="submit"] {
  background-color: #194883 !important;
  border-color: #194883 !important;
  color: #fff !important;
}

.involved.ngp-form.at .ngp-form.at input[type="submit"]:hover {
  background-color: #fff !important;
  color: #194883 !important;
}

.body-wrapper.error-page {
  background: linear-gradient(274deg, #0b213c 9.05%, #194883 96.73%);
}

.error404 .hero {
  display: none;
}

.basic-page-wrapper.error {
  padding: 200px 5%;
}

.error-text {
  color: var(--Neutral-100, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 161.8%; /* 29.124px */
  text-align: center;
}

.home-btn {
  background: #d4e4f7;
  backdrop-filter: blur(3px);
  color: #194883;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 161.8%; /* 38.832px */
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.home-btn:hover {
  background: #fff;
  color: #194883;
}
