/*
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: "proxima-nova", 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 {
	display: block !important;
	width: 100%;
}

main:not(.home main) {
	padding: 40px 5%;
}

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

.home .inner:not(.main-header .inner) {
	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: #1f212e;
	font-weight: 800;
	line-height: 1;
	margin: 0 0 20px;
}

.dark-blue {
	color: #002d5d;
}

p {
	color: #1f212e;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	margin: 20px 0;
}

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

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

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

p a:hover,
ul li a:hover,
ol li a:hover {
	color: #002d5d;
	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: #002d5d;
	padding: 20px 5%;
	position: relative;
	position: sticky;
    top: 0;
    z-index: 5;
}

.main-header .header-logo {
	width: 90px;
	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;
}

.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-right: 20px;
}

.nav-mobile li a,
.main-nav ul li a {
	color: #fff;
	display: inline-block;
	font-weight: 700;
	text-decoration: none;
	position: relative;
	padding-bottom: 5px;
	transition: all 0.3s ease;
}

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

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

.nav-mobile li.current_page_item a,
.main-nav ul li.current_page_item a {
	color: #fff;
}

.nav-mobile li.current_page_item a::after,
.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-color: #00a84f;
	color: #fff;
	letter-spacing: 1.8px;
	padding: 10px 20px;
	text-transform: uppercase;
	display: inline-block;
	text-decoration: none;
	font-weight: 700;
}

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

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

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

/* 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: #00a84f;
	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: #00a84f;
}

.change .bar2 {
	opacity: 0;
}

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

.mobile-nav {
	background-color: #002d5d;
	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: 90px;
}

.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: 10px auto 0;
}

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

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

.nav-mobile a:hover {
	color: #00a84f;
	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: #f5f5f0;
	border: none;
	color: #002d5d;
	font-size: 23px;
	padding: 13px 10px;
	border-radius: 0;
	height: 50px;
}

.form-wrapper #NVSignupForm461119 input::placeholder {
	color: #002d5d;
}

.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: #002d5d;
	font-family: "proxima-nova", sans-serif !important;
	font-weight: 800;
	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: #ee3a4e;
	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: #002d5d;
	font-family: "proxima-nova", sans-serif;
	font-weight: 800;
	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;
}

.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: 0 5%;
	border-bottom: 4px solid #00a84f;
	background: #f5f5f0;
	position: relative;
}

.hero h1 {
	color: #1f212e;
	font-size: 50px;
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 0.8;
	margin: 0;
}

.hero.no-image h1 {
	padding: 20px 0;
}

.banner-image {
	margin-bottom: 40px;
	min-height: 400px;
	object-fit: cover;
	max-height: 450px;
	width: 100%;
}

.off-white-box {
	border: 1px solid #002d5d;
	background: #f5f5f0;
	padding: 20px;
}

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

.off-white-box.blue h2,
.off-white-box.blue h3 {
	color: #002d5d;
}

.photo-wrap {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
}

.photo-wrap img {
	width: 32%;
	object-fit: cover;
	aspect-ratio: 4/3;
	aspect-ratio: 1/1;
}

/* PREFOOTER */
.prefooter {
	background: #00a84f;
	padding: 50px 5%;
}

.prefooter h2 {
	color: #002d5d;
	font-size: 40px;
	letter-spacing: -1.2px;
	text-align: center;
}

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

.prefooter .donate-buttons-wrapper {
	display: flex;
	gap: 10px;
	align-items: center;
	width: 100%;
	max-width: 900px;
	margin: 40px auto;
}

.prefooter .donate-btn {
	border: 1px solid #002d5d;
	background: #f5f5f0;
	color: #1f212e;
	font-size: 18px;
	font-weight: 700;
	padding: 10px 15px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 25%;
}

.prefooter .donate-btn.other {
	color: #fff;
	background-color: #002d5d;
	letter-spacing: 1.8px;
}

.prefooter .donate-btn:hover {
	color: #fff;
	background-color: #002d5d;
}

.prefooter .donate-btn.other:hover {
	color: #002d5d;
	background-color: #fff;
}

.prefooter p {
	color: #1f212e;
	font-size: 15px;
	text-align: center;
}

/* footer --------------------------------------------------------------------*/
footer {
	background: #002d5d;
	padding: 50px 5%;
}

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

footer p a:hover {
	color: #00a84f;
}

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

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

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

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

.footer-links p {
	display: flex;
	justify-content: space-between;

	
}

p.paid-p {
	border: 1px solid #f5f5f0;
	padding: 10px;
	font-weight: 400;
	font-size: 17px;
	text-align: center;
	margin-top: 0;
	max-width: 100%;
}

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

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

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

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

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

/*  */
.off-white-box.priorities {
	display: flex;
	gap: 20px;
	align-items: stretch;
	justify-content: space-between;
	margin: 30px 0;
}

.off-white-box.priorities.fliped,
.off-white-box.priorities.blue.fliped {
	flex-direction: row-reverse;
}

.off-white-box.priorities.fliped .image-wrap {
	overflow: hidden;
	position: relative;
}

.off-white-box.priorities.fliped .image-wrap img,
.off-white-box.priorities.blue.fliped .image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: unset;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.off-white-box.priorities .image-wrap {
	width: 40%;
}

.off-white-box.priorities .image-wrap img {
	width: 100%;
	object-fit: cover;
	height: 100%;
	aspect-ratio: 29/17;
}

/* .off-white-box.priorities.fliped .image-wrap img {
	max-height: 250px;
} */

.off-white-box.priorities .text-wrap {
	width: 58%;
}

.off-white-box.priorities.fliped h2 {
	margin-top: 20px;
	font-size: 34px;
}

.off-white-box.priorities.fliped p {
	font-size: 20px;
}

.priorities-wrapper.off-white-box h2.priorities-title {
	color: #002d5d;
	text-align: center;
	font-size: 40px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -1.2px;
	margin-bottom: 0;
}

.priorities-wrapper.off-white-box svg {
	display: block;
	margin: 20px auto 40px;
}

.priorities-wrapper.off-white-box .off-white-box.priorities.fliped {
	border: none;
	padding: 0;
}

.priorities-wrapper.off-white-box .off-white-box.priorities.fliped .text-wrap {
	width: 48%;
	height: fit-content;
	flex: 1;
	padding: 20px 0;
}

.priorities-wrapper.off-white-box .off-white-box.priorities.fliped .image-wrap {
	width: 48%;
	/* width: 42%; */
}

a.more-priorities {
	border: 1px solid #002d5d;
	background: #f5f5f0;
	color: #1f212e;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	padding: 10px 20px;
	text-transform: uppercase;
	display: block;
	text-align: center;
	width: 100%;
	margin: 40px auto 20px;
	text-decoration: none;
	width: fit-content;
}

a.more-priorities:hover {
	background-color: #002d5d;
	color: #fff;
}

.off-white-box.news {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	margin: 30px 0;
	flex-direction: column;
}

.off-white-box.news p {
	margin: 10px 0;
}

.off-white-box.news .date {
	color: #1f212e;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 10px;
	margin-top: 0;
}

.off-white-box.news h2 {
	margin: 10px 0;
}

.off-white-box.news h2 a {
	color: #002d5d;
	text-decoration: none;
	font-size: 30px;
}

.off-white-box.news h2 a:hover {
	color: #00a84f;
}

.off-white-box.news a.read-more {
	color: #1f212e;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 10px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-color: #00a84f;
	text-decoration-thickness: 20%;
	text-underline-offset: 40%;
	text-underline-position: from-font;
}

.off-white-box.news a.read-more:hover {
	color: #00a84f;
}

/* Endorsements --------------------------------------------------------------------*/
.endorsements-featured {}

.endorsements-featured h2 {
	color: #002d5d;
	font-size: 40px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -1.2px;
	margin-bottom: 20px;
}

.endorsements-list {
	background-color: #002d5d;
	padding: 20px;
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.endorsement-item {
    width: calc(25% - 15px);
}

.endorsement-item img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
}

.endorsement-item p {
	color: #f5f5f0;
	margin: 10px 0;
	font-size: 16px;
}

.endorsement-item p.name {
	font-weight: 600;
	font-size: 18px;
}

.endorsements-plain {
	display: flex;
    gap: 20px;
    align-items: stretch;
    justify-content: flex-start;
    margin: 30px 0;
    flex-wrap: wrap;
}

.endorsements-plain .endorsement-item {
	align-items: flex-start;
    display: flex;
    /* width: 24%; */
    flex-direction: column;
    justify-content: center;
}

.endorsements-plain .endorsement-item p {
	color: #1f212e;
	margin: 0;
	text-align: center;
	width: 100%;
}

.endorsements-plain .endorsement-item p.title {
	margin-top: 10px;
}

.endorsements-plain h2 {
	color: #002d5d;
	font-size: 40px;
	width: 100%;
}

.endorsements-plain.org {
	margin-bottom: 60px;
}

.endorsements-plain.org img {
	width: 100%;
	height: 125px;
	object-fit: contain;
	margin: auto;
	display: block;
	transition: all 0.3s ease-in-out;
}

.endorsements-plain.org p {
	margin-top: 10px;
}

.organization-link {
	width: 100%;
	text-decoration: none;
}

.organization-link:hover img {
	opacity: 0.8;
}

/* 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: 40px 0 40px 5%;
    flex-shrink: 0;
    max-width: 675px;
    margin: 0 5% 0 auto;
}

.hero-image {
	width: 48%;
	position: relative;
	height: 100%;
	min-height: 600px;
	z-index: 2;
	flex-shrink: 0;
}

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

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

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

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

.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%, #F5F5F0 47.88%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	pointer-events: none;
}

.hero-wrapper h1 {
	color: #002D5D;
	font-size: 50px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -2px;
	margin-top: 0;
}

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

.ngp-form.at input {
	color: #1F212E !important;
	font-family: "proxima-nova", sans-serif !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	background: #F5F5F0 !important;
	border: none !important;
	border-radius: 0 !important;
	border-bottom: 2px solid #002D5D !important;
}

.ngp-form.at input::placeholder {
	color: #1F212E !important;
	font-family: "proxima-nova", sans-serif !important;
	font-size: 18px !important;
	font-weight: 700 !important;
}

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

.at-fields {
	background: none !important;
}

.ngp-form.at label.at-text input[type=tel], .ngp-form.at label.at-text input[type=email] {
	background: #F5F5F0 !important;
}

div .at input[type=email]:focus {
	box-shadow: none !important;
}

/* For better browser compatibility */
.ngp-form.at input::-webkit-input-placeholder {
	color: #1F212E;
	font-family: "proxima-nova", sans-serif !important;
	font-size: 18px !important;
	font-weight: 700 !important;
}

.ngp-form.at input::-moz-placeholder {
	color: #1F212E !important;
	font-family: "proxima-nova", sans-serif !important;
	font-size: 18px !important;
	font-weight: 700 !important;
}

.ngp-form.at input:-ms-input-placeholder {
	color: #1F212E !important;
	font-family: "proxima-nova", sans-serif !important;
	font-size: 18px !important;
	font-weight: 700 !important;
}

.ngp-form.at .at-markup.SmsLegalDisclaimer.at-legal p {
	color: #1F212E !important;
	font-family: "proxima-nova", sans-serif !important;
	font-size: 14px !important;
	font-weight: 600 !important;
}

.ngp-form.at input[type=submit] {
	background: #002D5D !important;
	color: #F5F5F0 !important;
	font-size: 18px !important;
	font-style: normal !important;
	font-weight: 700 !important;
	letter-spacing: 1.8px;
	margin: 0 !important;
	padding: 13px !important;
	width: 100% !important;
	text-transform: uppercase !important;
	border: none !important;
}

.ngp-form.at input[type=submit]:hover {
	background: #00a84f !important;
}

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

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

/* Takeover Styling */
.takeover-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #002D5D;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;

	background: #002d5d45;
	backdrop-filter: blur(2px);
}

#takeover {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow-y: scroll;
}

#takeovercon {
    max-width: 1100px;
    height: fit-content;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #002d5d;
    padding: 21px;
    border-radius: 0;
    flex-direction: column;
	width: 90%;
    margin: 20px auto;
}

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

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

.tk-logo-container {
    display: block;
    margin: 0 auto 10px;
    width: 110px;
}

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

#takeover .inner {
    display: flex;
    width: 97%;
    /* max-width: 1200px; */
    height: 80%;
    gap: 0;
    align-items: center;
    position: relative;
    flex-direction: row-reverse;
}

.takeoverleft {
    width: 54%;
    position: relative;
    z-index: 2;
}

.left-content {
	padding: 20px 90px 20px 20px;
    border: 2px solid #002D5D;
    background: #F5F5F0;
    box-shadow: 10px 10px 0 0 #00a84f;
}

.left-content h2 {
	color: #002D5D;
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 30px;
	line-height: 1.2;
}

.tk-donation-buttons {
	display: flex;
	flex-wrap: wrap;
	/* gap: 15px; */
	/* margin-bottom: 30px; */
}

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

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

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

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

.tk-donation-buttons .disclaimer {
	color: #002D5D;
	font-size: 14px;
	margin: 10px 0;
	font-weight: 600;
}

#home-link {
	background: #fff;
	color: #002D5D;
	padding: 15px 25px;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px auto 0;
	gap: 10px;
	width: fit-content;
	transition: all 0.3s ease-in-out;
}

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

.takeoverright {
	width: 54%;
    position: relative;
    z-index: 3;
    margin-left: -61px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

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

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

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

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

.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;
}

.candidate-name {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}

.candidate-title {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 10px;
}

.dashed-lines {
	width: 40px;
	height: 2px;
	border-top: 2px dashed rgba(255, 255, 255, 0.6);
}

/* Meet Section Styling */
.meet-section {
	display: flex;
	align-items: flex-end;
	position: relative;
	min-height: 500px;
	margin: 60px auto;
}

.meet-section .image {
	width: 60%;
	position: relative;
	overflow: hidden;
	min-height: 450px;
}

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

.meet-section .text {
	width: 55%;
	background: #002D5D;
	color: #fff;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	margin-left: -100px;
	margin-bottom: 50px;
	z-index: 2;
}

.meet-section .text .title {
	color: #fff;
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 5px;
	line-height: 1.2;
}

.meet-section .text .title::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: #00a84f;
	margin-top: 15px;
}

.meet-section .text .body-content {
	margin-bottom: 10px;
}

.meet-section .text .body-content p {
	color: #fff;
}

.meet-section .read-more-button {
	background: #fff;
	color: #1F212E;
	padding: 10px 20px;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	width: fit-content;
	transition: all 0.3s ease;
}

.meet-section .read-more-button:hover {
	background: #00a84f;
	color: #fff;
}

/* Get Involved Section Specific Styling */
.meet-section.get-involved {
	align-items: flex-start;
}

.meet-section.get-involved .image {
	width: 55%;
	position: relative;
	overflow: hidden;
	height: 475px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 10px;
	/* padding: 10px; */
}

.meet-section.get-involved .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
}

.meet-section.get-involved .image img:nth-child(1) {
	grid-column: 1;
	grid-row: 1;
}

.meet-section.get-involved .image img:nth-child(2) {
	grid-column: 1;
	grid-row: 2;
}

.meet-section.get-involved .image img:nth-child(3) {
	grid-column: 2;
	grid-row: 1 / span 2;
}

.meet-section.get-involved .text {
	width: 55%;
	background: #F5F5F0;
	color: #1F212E;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	margin: 60px 0 0 -50px;
	z-index: 2;
	border: 2px solid #002D5D;
}

.meet-section.get-involved .text .title {
	color: #002D5D;
	font-size: 36px;
	font-weight: 800;
	margin: 0px;
	line-height: 1.2;
}

.meet-section.get-involved .text .title::after {
	display: none;
}

.meet-section.get-involved .text .body-content {
	margin-bottom: 0;
}

.meet-section.get-involved .text .body-content p {
	color: #002D5D;
	margin: 10px 0;
}

/* Style the form within get-involved section */
.meet-section.get-involved .text form {
	margin-top: 20px;
}

.meet-section.get-involved .text form input[type="text"],
.meet-section.get-involved .text form input[type="email"],
.meet-section.get-involved .text form input[type="tel"] {
	background: #F5F5F0;
	border: none;
	border-bottom: 2px solid #002D5D;
	padding: 10px 0;
	margin-bottom: 15px;
	width: 100%;
	font-family: "proxima-nova", sans-serif;
	font-size: 16px;
}

.meet-section.get-involved .text form input[type="text"]:focus,
.meet-section.get-involved .text form input[type="email"]:focus,
.meet-section.get-involved .text form input[type="tel"]:focus {
	outline: none;
	border-bottom-color: #00a84f;
}

.meet-section.get-involved .text form input::placeholder {
	color: #666;
}

.meet-section.get-involved .text form .form-row {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.meet-section.get-involved .text form .form-row input {
	width: 48%;
}

.meet-section.get-involved .text form input[type="submit"] {
	background: #002D5D;
	color: #F5F5F0;
	padding: 15px 30px;
	border: none;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	width: 100%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.meet-section.get-involved .text form input[type="submit"]:hover {
	background: #00a84f;
}

.meet-section.get-involved .text form .checkbox-wrapper {
	margin: 20px 0;
}

.meet-section.get-involved .text form .checkbox-wrapper label {
	color: #1F212E;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.meet-section.get-involved .text form .disclaimer {
	color: #666;
	font-size: 12px;
	line-height: 1.4;
	margin-top: 15px;
}

.at-row.FirstName.LastName,
.at-row.at-row-solo.PostalCode {
	gap: 10px;
}

.single-news-page {
	padding: 40px 0 60px;
}

.at input[type=checkbox]+span {
	color: #1F212E !important;
	font-weight: 600;
}

.at-indented {
	padding-left: 0 !important;
}

.at input[type=checkbox]:checked+span:before {
	background-color: #00a84f !important;
    border-color: #00a84f !important;
}

.error404 {
	background-color: #002D5D;
}

.error404 .hero {
	display: none;
}

.error-content {
	padding: 40px 5% 60px;
	min-height: 60vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.error-content .error-text {
	color: #F5F5F0;
}

.error-content img {
	width: 100px;
	height: auto;
}

.error-content svg {
	height: auto;
	width: 100%;
	max-width: 800px;
	margin: 40px auto;
}

.basic h1, .basic h2, .basic h3, .basic h4, .basic h5, .basic h6 {
	margin-top: 20px;
}

.basic h1, .basic h2 {
	font-size: 36px;
}

.basic h3 {
	font-size: 32px;
}

.basic h4 {
	font-size: 27px;
}

.basic h5, .basic h6 {
	font-size: 22px;
}

.page-id-114 .off-white-box.basic {
	border: none;
	background: none;
	padding: 0 5%;
}

.page-id-114 p {
	color: #002d5d;
	font-size: 20px;
}