/*
Theme Name:   Sheepdog Theme
Theme URI:    https://wordpress.org/themes/twentyninteen/
Description:  Custom theme built for Adam Schwarze
Template:     twentynineteen
Version:      1.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  sheepdog-theme
*/

/*
ADOBE FONTS

=== LFT Etica Condensed - Regular ===
font-family: 'lft-etica-condensed', sans-serif;
font-weight: 400;
font-style: normal;
*/


/* ========= COLOR REFERENCES ========= */
:root {
	--gray: #707070;
	--red: #EF172E;
	--blue: #052D57;
	--blackish: #1A1818;
}

/* ==================================== */


/* ======== TABLE OF CONTENTS =========
	1. TYPOGRAPHY
	2. GLOBAL
	3. MAIN CONTENT
		- Navigation
		- Footer
		- Home Page
		- Videos/oEmbed
		- Gravity Forms
		- Privacy Policy
/* ==================================== */


/* ------------------------------ 
    1. Start Typography
------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
.btn,
button,
input {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
	margin: 0;
}

h1,
.h1,h2,
.h2,h3,
.h3 {
	font-family: "amboy-black", sans-serif;
	font-weight: 400;
	font-style: normal;
}

p,
.p {
	font-weight: 400;
	font-style: normal;
	font-size: 1.4em;
	line-height: 1.25;
}

a {
	color: var(--red);
	text-decoration: none;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
}

a:hover,
a:focus {
	color: var(--blue);
	text-decoration: none;
}

ul li {
	color: var(--gray);
	position: relative;
	margin-bottom: 5px;
}

.btn-red {
	font-family: 'lft-etica-condensed', sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 22px;
	line-height: 28px;
	color: #fff;
	display: block;
    background: var(--red);
    border: 1px solid var(--red);
    border-radius: 0;
    padding: 10px 20px 10px 20px;
	text-transform: uppercase;
	box-shadow: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transform: all .3s ease-in-out;
}

.btn-red:hover,
.btn-red:focus,
.btn-red:active {
	background: var(--blue);
	border: 1px solid var(--blue);
	color: #fff;
}

.btn-blue {
	font-family: 'lft-etica-condensed', sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 22px;
	line-height: 28px;
	color: #fff;
	display: block;
    background: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 0;
    padding: 10px 20px 10px 20px;
	text-transform: uppercase;
	box-shadow: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transform: all .3s ease-in-out;
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active {
	background: var(--yellow);
	border: 1px solid var(--yellow);
	color: #fff;
}

.btn-donate {
    font-weight: 800;
    font-style: normal;
    font-size: 28px;
    letter-spacing: 0.03em;
    line-height: 1;
    color: #fff;
	display: block;
    background: var(--red);
    padding: 10px 40px 14px 40px;
	text-transform: uppercase;
	box-shadow: 0 3px 6px rgba(0,0,0, .5);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transform: all .3s ease-in-out;
}

.btn-donate:hover,
.btn-donate:focus,
.btn-donate:active {
	background: var(--blue);
	color: #fff;
} 

/* ------------------------------ 
    === 1. End Typography ===
------------------------------ */




/* ------------------------------ 
    2. Start Global
------------------------------ */
@-ms-viewport {
	width: device-width;
}

html {
	overflow-x: hidden;
}

body {
	font-family: 'jaf-bernino-sans-narrow', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1;
	color: var(--white);
	overflow-x: hidden;
}

.opacity-1 {
	opacity: 1;
}

.opacity-01 {
	opacity: 0.1;
}

.opacity-02 {
	opacity: 0.2;
}

.opacity-03 {
	opacity: 0.3;
}

.opacity-04 {
	opacity: 0.4;
}

.opacity-05 {
	opacity: 0.5;
}

.opacity-06 {
	opacity: 0.6;
}

.gray {
	color: var(--gray) !important;
}

.red {
	color: var(--red) !important;
}

.blue {
	color: var(--blue) !important;
}

.white {
	color: #fff !important;
}

.black {
	color: #000 !important;
}

.f-100 {
	font-weight: 100;
	/* Thin */
}

.f-200 {
	font-weight: 200;
	/* Light */
}

.f-300 {
	font-weight: 300;
	/* Book */
}

.f-400 {
	font-weight: 400;
	/* Regular */
}

.f-500 {
	font-weight: 500;
	/* Medium */
}

.f-600 {
	font-weight: 600;
	/* SemiBold */
}

.f-700 {
	font-weight: 700;
	/* Bold */
}

.f-800 {
	font-weight: 800;
	/* Extra Bold */
}

.f-900 {
	font-weight: 900;
	/* Black/Heavy */
}

.italic {
	font-style: italic;
}

.normal {
	font-style: normal;
}

.letter-space-normal {
	letter-spacing: normal;
}

.letter-space-5 {
	letter-spacing: 0.05em;
}

.letter-space-3 {
	letter-spacing: 0.03em;
}

.letter-space-15 {
	letter-spacing: 0.15em;
} 

.uppercase {
	text-transform: uppercase;
}

.lowercase {
	text-transform: none;
}

.underline {
	text-decoration: underline;
}

.text-shadow {
	text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.24);
}

section {
	position: relative;
}

.no-padding {
	padding: 0;
}

.z-1 {
	z-index: 1;
}

.z-2 {
	z-index: 2;
}

img {
	width: 100%;
}

.bg-gray {
	background: var(--gray);
}

.bg-red {
	background: var(--red);
}

.bg-blue {
	background: var(--blue);
}

.bg-white {
	background: #fff;
}

.bg-black {
	background: #000;
}

.red-bar:after {
	content: '';
	height: 4px;
	width: 160px;
	position: absolute;
	bottom: -2px;
	left: 0;
	border-bottom: 4px solid var(--red);
}

/* ------------------------------ 
    === 2. End Global ===
------------------------------ */




/* ------------------------------ 
    3. Start Main Content
------------------------------ */
/* ------------------------------ 
	Navigation
------------------------------ */
/* Navigation hamburger menu slide out from the right side */
.menu-toggle {
	position: fixed;
	top: 20px;
	right: 20px;
	cursor: pointer;
	z-index: 999;
}

.bar {
	width: 30px;
	height: 3px;
	background-color: var(--yellow);
	margin: 6px 0;
	transition: 0.4s;
}

/* #home .bar {
	background-color: #fff;
} */

.menu.active .bar:nth-child(1) {
	background-color: #fff;
	transform: rotate(-45deg) translate(-5px, 6px);
}

.menu.active .bar:nth-child(2) {
	background-color: #fff;
	opacity: 0;
}

.menu.active .bar:nth-child(3) {
	background-color: #fff;
	transform: rotate(45deg) translate(-7px, -7px);
}

.menu {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	/* height: 100%; */
	background-color: var(--yellow);
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	transition: 0.4s;
}

.menu.active {
	right: 0;
}

.menu ul {
	list-style: none;
	padding: 0;
	margin: 60px 20px 40px;
}

.menu li {
	margin-bottom: 10px;
}

.menu a {
	text-decoration: none;
	color: #333;
	font-size: 18px;
	transition: color 0.3s;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
}

.menu a.active:bfore {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 5px;
	border-bottom: 5px solid var(--black);
}

/* Nav - Desktop */
.nav-bar {
	min-height: 80px;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
}

.desktop-navigation {
	color: #fff;
}

/* .desktop-navigation .main-menu-item {
	padding: 20px;
} */

.main-menu-item a.hvr-underline-from-left:before {
    background: var(--red);
    height: 3px;
}

.main-menu-item a,
.desktop-navigation .main-menu-item span {
	font-family: 'lft-etica-condensed', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 22px;
	color: #fff;
	/* transition: opacity .2s ease-in-out; */
}

.desktop-navigation .main-menu-item a.active:after,
.mobile-navigation .main-menu-item a.active:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	border-bottom: 5px solid var(--black);
}

.main-menu-item .sub-menu-item a.active {
	color: #fff !important;
}

.desktop-navigation .has-sub-menu:hover a {
	color: var(--yellow) !important;
}

.desktop-navigation .main-menu-item.has-sub-menu .fa-angle-down {
	position: relative;
	top: 2px;
}

/* .main-menu-item:last-of-type a,
.main-menu-item:last-of-type span {
    padding-right: 0;
} */

/* Sub-Menu */
ul.nav li {
	position: relative;
}

ul.nav ul {
	display: none;
	visibility: hidden;
	opacity: 0;
	position: relative;
	padding: 5px 5px 5px 60px;
	right: calc(50% - 120px);
	top: 0;
	transform: translateY(0em);
	min-width: 220px;
	width: 100%;
	list-style: none;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transform: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	z-index: 99;
	margin: 0;
	background: var(--yellow);
	/* border-bottom: 3px solid #fff; */
}

/* ul.nav ul:before {
	content: "";
	height: 36px;
	position: absolute;
	top: -36px;
	right: 0;
	width: 100%;
} */

ul.nav .sub-menu:after {
	content: "";
	height: 20px;
	position: absolute;
	top: -25px;
	left: 25px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid var(--yellow);
	width: 20px;
}

ul.nav .has-sub-sub-menu a {
	border: none !important;
}

ul.nav ul ul {
	top: 0;
	left: 100%;
}

ul.nav li:hover>ul {
	display: block;
	visibility: visible;
	opacity: 1;
	transform: translateY(20px);
	/* box-shadow: 0 6px 12px 0 rgb(0 0 0 / 18%); */
}

ul.nav ul li {
	/* min-width: 260px; */
	width: auto;
}

.desktop-navigation .sub-menu-item {
	padding: 0 10px;
	margin: 5px 0;
}

.desktop-navigation .sub-menu-item .border-bottom {
	padding: 10px 2px;
	border-bottom: none !important;
}

.desktop-navigation .sub-menu-item a:hover {
	font-weight: 400;
	/* border-left: 1px solid var(--pink); */
	padding: 10px 8px;
}

.desktop-navigation .sub-menu-item a {
	display: block;
	transition: all .3s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transform: all .2s ease-in-out;
}

.desktop-navigation .sub-menu-item:last-of-type .border-bottom {
	border: 0 !important;
}

.brand-logo img {
	max-width: 235px;
}

.has-sub-sub-menu.sub-menu-item {
	padding-top: 10px;
}

.has-sub-sub-menu.sub-menu-item a {
	padding-bottom: 0;
}

ul.nav ul ul.sub-sub-menu {
	position: relative;
	min-width: 0;
	display: block;
	visibility: visible;
	margin-top: 0;
	padding-top: 0 !important;
	opacity: 1;
	transform: none;
	border: none;
	top: 0;
	left: 0;
}

ul.nav ul ul.sub-sub-menu a {
	color: #fff;
	font-size: .75em;
	font-weight: 400;
	padding: 0;
}

ul.nav ul ul.sub-sub-menu:before {
	display: none;
}

ul.nav ul ul.sub-sub-menu li:after {
	display: none;
}

/* Sub-Menu With Children */
ul.nav ul li.has-sub:after {
	content: "";
	position: absolute;
	right: 10px;
	top: calc(50% - 7px);
	border-bottom: 5px solid transparent;
	border-left: 5px solid var(--yellow);
	border-top: 5px solid transparent;
}

/* Nav Extras */
header#masthead {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
}

#masthead.scrolled {
	background: rgba(5,45,87,0.7);
	-webkit-backdrop-filter: blur(30px);
	backdrop-filter: blur(30px);
	transition: all .1s ease-in-out;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

#masthead.scrolled .desktop-navigation .brand-logo img,
#masthead.scrolled .top-bar .brand-logo img {
	max-width: 200px;
}

/* #masthead.scrolled .nav-bar {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
} */

.brand-logo img {
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
}

.brand-logo img:hover {
	opacity: 0.7;
}

/* #masthead.scrolled .brand-logo img {
	display: none;
}

#masthead.scrolled .brand-logo-color {
	display: block !important;
} */

.brand-logo-color img {
	max-width: 315px;
}

/* Nav - Mobile */
.navbar {
	padding: 0;
	position: unset;
}

#mobile-navigation {
	position: absolute;
	width: 100%;
	left: 0;
	top: 100%;
	/* overflow-y: scroll; */
	/* height: calc(100vh - 70px); */
	z-index: 2;
}

.mobile-navigation .btn-donate {
	font-family: 'canada-type-gibson', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0.03em;
    line-height: 18px;
    color: #fff;
    background: var(--yellow);
    border: 1px solid var(--yellow);
    border-radius: 6px;
    padding: 6px 15px 6px 15px;
    text-transform: uppercase;
    box-shadow: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transform: all .3s ease-in-out;
}

.mobile-navigation .btn-donate:hover,
.mobile-navigation .btn-donate:focus,
.mobile-navigation .btn-donate:active {
	background: var(--lightBlue);
    border: 1px solid var(--lightBlue);
	color: #fff !important;
}

.mobile-nav .navbar-toggler {
	line-height: normal;
	width: auto;
	background: none;
}

.mobile-navigation .navbar-toggler {
	font-size: 1.5rem;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transform: all .3s ease-in-out;
}

.mobile-nav-btn {
	margin: 5px 15px;
	font-weight: 100;
	background: transparent !important;
}

.mobile-nav ul {
	list-style-type: none;
	padding: 30px 20px 10px 20px;
}

.mobile-nav li {
	border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
	border-bottom: 0;
	border-right: 0 !important;
	padding: 10px 15px;
	color: #fff;
}

.mobile-nav li:nth-child(1) {
	border-top: 0 !important;
}

.mobile-nav li:nth-last-child(1) {
	border: none !important;
}

li.sub-menu-item:first-of-type a {
	padding-top: 0;
}

.mobile-nav .menu-item-has-children:first-of-type {
	border: 0 !important;
}

.mobile-nav li a:after {
	display: none;
}

.mobile-nav ul li a {
	color: #fff;
	display: inline-block;
	z-index: 1;
	margin: 0;
	font-weight: 400;
}

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

.mobile-nav ul li a:hover,
.mobile-nav ul li a:visited {
	padding-left: 7px;
}

.mobile-nav ul li a.btn-nav:hover,
.mobile-nav ul li a.btn-nav:visited {
	padding-left: 20px;
}

.mobile-nav ul ul {
	margin-left: -20px;
	margin-right: -20px;
	padding: 10px 20px 0;
}

.mobile-nav ul ul li {
	line-height: 1;
	border: 0;
}

.mobile-nav ul ul a {
	font-size: 0.875em;
	/* 14px */
}

.mobile-nav ul ul ul a {
	padding-left: 80px !important;
}

.mobile-nav .sub-menu-item:first-of-type {
	border: 0 !important;
}

.mobile-nav .sub-menu-item a {
	font-weight: 400;
}

.mobile-nav .sub-menu-item .sub-sub-menu {
	display: block !important;
	border: none !important;
}

.mobile-nav .sub-menu-item .sub-sub-menu-item a {
	font-size: .75em;
	padding-left: 25px !important;
}

.mobile-navigation .brand-logo img {
	max-width: 180px;
}

.dropdown-caret svg {
	color: #fff;
	margin-left: 10px;
}

.dropdown-caret {
	padding-right: 20px;
	position: absolute;
	right: 0;
	display: inline-block;
	width: 100%;
	text-align: right;
	z-index: 999;
}

.mobile-social-menu {
	padding: 15px 0;
	margin: 25px -20px 0;
}

.social-nav {
	position: absolute;
	right: 30px;
}

/* Hamburger Bars */
#hamburger {
	width: 30px;
	height: 30px;
	position: relative;
	margin: 10px 15px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

#hamburger span {
	display: block;
	position: absolute;
	height: 5px;
	width: 100%;
	background: #fff;
	border-radius: 10px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#hamburger:hover span {
	background: var(--red);
}

#hamburger span:nth-child(1) {
	top: 0px;
}

#hamburger span:nth-child(2) {
	top: 10px;
	width: 20px;
	left: 8px;
}

#hamburger span:nth-child(3) {
	top: 20px;
}

#hamburger.open span:nth-child(1) {
	top: 12px;
	background: var(--red);
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

#hamburger.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
	background: var(--red);
}

#hamburger.open span:nth-child(3) {
	top: 12px;
	background: var(--red);
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

/* ------------------------------ 
	Footer
------------------------------ */
.footer p {
	color: var(--gray);
	font-size: 14px;
	border: solid 1px var(--gray);
	padding: 5px 10px;
}

.footer p:nth-child(2) {
	border: none;
}




/* ------------------------------ 
    Gravity Forms
------------------------------ */
.form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--lightBlue);
}

.form input::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--lightBlue);
}

.form input:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--lightBlue);
}

.form input:-moz-placeholder {
    /* Firefox 18- */
    color: var(--lightBlue);
}


/* ------------------------------ 
    Videos/oEmbed
------------------------------ */
.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	overflow: hidden;
	max-width: 100%;
	height: auto;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
	border-radius: 0;
}

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




/* ------------------------------ 
    Hero
------------------------------ */
.lp-hero {
	position: relative;
	height: 810px;
	margin-bottom: -130px;
	padding-bottom: 130px !important;
}

.lp-hero .overlay {
	background: rgb(0,31,69);
	background: radial-gradient(circle, rgba(0,31,69,0) 0%, rgba(0,40,85,1) 100%);
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	min-width: 100%;
	min-height: 100%;
}

.lp-hero .container {
	position: relative;
	z-index: 2;
}

.lp-hero .brand-logo img {
	max-width: 285px;
	width: 100%;
	margin: 0 auto 45px;
}

.lp-hero h1 {
	font-size: 6.56em;
	line-height: .9;
}

#myVideo {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
	min-width: 100%;
	min-height: 100%;
}




/* ------------------------------ 
    Top Form
------------------------------ */
.top-form {
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
	max-width: 635px;
	width: 100%;
	margin: 0 auto 260px;
}

.top-form .ribbon {
	background-image: url('/wp-content/uploads/sites/647/2025/03/ribbon.svg');
	background-size: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 3;
	height: 61px;
	margin-bottom: -7px;
}

.top-form .ribbon h2 {
	font-size: 39px;
	font-family: 'jaf-bernino-sans-narrow', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: .18em;
}

.top-form .form-container {
	background-color: var(--blue);
	display: flex;
	justify-content: center;
	width: 540px;
	margin: 0 auto;
	border: solid 3px #fff;
}

.top-form .form .form-heading {
	display: block;
	font-size: 28px;
	font-weight: 600;
	font-style: italic;
	text-align: center;
	padding: 30px 0 40px;
}

.top-form .form {
	width: 345px;
	margin: 0 auto;
}

.top-form #gform_fields_1 {
	position: relative;
	row-gap: 16px;
}

.top-form .gfield {
	display: flex;
	flex-wrap: nowrap;
}

.top-form .gfield .ginput_container {
	position: relative;
	width: 100%;
}

.top-form .gfield_label {
	display: flex !important;
	align-items: center !important;
	background-color: var(--red);
	color: var(--white) !important;
	font-size: 10px;
	font-weight: 700 !important;
	text-transform: uppercase;
	min-width: 100px;
	height: 50px;
	margin: 0 !important;
	padding-left: 16px;
}

.top-form .gfield .ginput_container input {
	color: var(--gray);
	font-size: 14px;
	font-weight: 600;
	height: 50px !important;
	width: 100% !important;
	margin: 0;
}

.top-form .gfield_label .gfield_required {
	display: none;
}

.top-form #field_1_8 .gfield_label  {
	background-color: transparent;
	display: block;
	font-size: 28px;
	font-weight: 600;
	font-style: italic;
	text-transform: none;
	text-align: center;
	width: 100%;
	padding: 0 0 40px;
}

.top-form .ginput_container_checkbox {
	width: 100%;
}

.top-form .gfield_checkbox {
	all: unset !important;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}

.top-form .gfield_checkbox .gchoice {
	width: 49%;
	margin-bottom: 20px;
}

.top-form .gfield_checkbox .gchoice .gform-field-label {
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	margin-left: 8px;
}

.top-form .gfield_checkbox .gchoice input {
    height: 16px !important;
    width: 16px !important;
	border: solid 1px var(--gray);
}

.top-form .gform_footer {
	width: 100%;
	margin-bottom: 50px;
}

.top-form .gform_footer {
	width: 100%;
	margin-bottom: 50px;
}

.top-form .gform_footer #gform_submit_button_1 {
	background-color: var(--red);
	font-size: 28px;
	font-weight: 800;
	text-transform: uppercase;
	width: 100%;
	padding: 15px 0;
	border-radius: none;
	border: solid 1px var(--red)
}

.top-form .gform_footer #gform_submit_button_1:hover {
	background-color: var(--blue);
	border: solid 1px #fff
}

.top-form .gform_validation_errors {
	background-color: #fff !important;
}

.top-form .gfield_validation_message {
	position: absolute;
	left: 120px;
	pointer-events: none;
}

textarea:focus, input:focus{
    outline: none;
}

.top-form #field_1_8 {
	display: block !important;
}

.top-form #field_1_8 .gfield_validation_message {
	position: relative;
	left: auto;
}

.top-form #gform_confirmation_message_1 {
	font-size: 1.5em;
	margin-bottom: 20px;
}

.top-form .gfield_description.instruction {
	color: #fff;
}




/* ------------------------------ 
	Why - Main Content
------------------------------ */
.blue-bg {
	background-color: var(--blue);
}

.red-bg {
	background-color: var(--red);
	margin-bottom: -75px;
	padding-bottom: 75px;
}

.main-copy {
	margin-bottom: 315px;
}

.main-copy h2 {
	font-size: 16px;
	line-height: 1;
	margin: -194px -9px 0;
}

.main-copy h2 .part-one {
	color: var(--blue);
	font-size: 13.375em;
}

.main-copy h2 .part-two {
	color: var(--red);
	font-size: 8.125em;
}

.main-copy h2 .part-three {
	font-size: 13.375em;
}

.main-copy h2 .part-four {
	font-size: 8.125em;
}

.main-copy .red-bg p {
	font-size: 28px;
	font-weight: 600;
}

.ftw-ptf {
	margin-bottom: 515px !important;
}

.ftw-ptf h2 .part-two {
	margin-bottom: 60px;
}

.ftw-ptf p {
	max-width: 825px;
	margin: 75px auto;
}

.ftw-ptf {
	margin-bottom: 515px !important;
}

.ftw-ptf .btn-donate:hover {
	background-color: #fff;
	color: var(--blue);
}

.tmimoa {
	margin-bottom: 200px;
}

.tmimoa  h2 {
	margin-top: -118px;
}

.tmimoa  h2 .part-two {
	color: var(--blue);
	font-size: 13.375em;
	margin-left: -61px;
}

.tmimoa  h2 .part-one {
	color: var(--red);
	font-size: 8.125em;
}

.tmimoa  h2 .part-three {
	margin-right: 60px;
}

.tmimoa  h2 .part-four {
	margin-right: 6px;
}

.tmimoa p {
	max-width: 920px;
	margin: 75px auto 55px;
}

.tmimoa .btn-donate:hover {
	background-color: #fff;
	color: var(--blue);
}




/* ------------------------------ 
	Privacy Policy
------------------------------ */
.privacy-policy h3, .privacy-policy p {
	color: var(--blackish);
}

.privacy-policy p {
	margin-bottom: 20px;
}

/* ------------------------------ 
	=== 3. End Main Content ===
------------------------------ */