/*
 Theme Name:   Service First Fund Theme
 Theme URI:    https://wordpress.org/themes/twentyninteen/
 Description:  Custom theme built for Drew MacEwen
 Author: 	   
 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:  drew-macewen-theme
*/

/*
ADOBE FONTS

=== Black ===
font-family: 'myriad-pro', sans-serif;
font-weight: 900;
font-style: normal;


=== Regular ===
font-family: 'basic-sans', sans-serif;
font-weight: 400;
font-style: normal;

=== Bold ===
font-family: 'basic-sans', sans-serif;
font-weight: 700;
font-style: normal;

=== Black ===
font-family: 'basic-sans', sans-serif;
font-weight: 900;
font-style: normal;
*/


/* ========= COLOR REFERENCES ========= */
:root { 
	--blue: #00337D;
	--lightBlue: #2C96D0;
	--gray: #464646;
	--lightGray: #F2F2F2;
	--darkGray: #323335;
}

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


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


/* ------------------------------ 
    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 {
	color: var(--blue);
	font-size: 5.88em;
	font-family: freight-big-pro, serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1;
}

h2,
.h2 {
	color: var(--blue);
	font-family: adrianna, sans-serif;
	font-weight: 800;
	font-style: normal;
	font-size: 2.38em;
	line-height: 1.2;
}

h3,
.h3 {
	color: var(--blue);
	font-size: 1.44em;
	font-family: adrianna, sans-serif;
}

h4,
.h4 {
	color: var(--blue);
	font-family: adrianna, sans-serif;
}

p,
.p {
	font-size: 1em;
}

a {
	
	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(--darkGray);
	text-decoration: none;
}

.btn-blue {
	font-weight: 700;
	font-style: normal;
	font-size: 16px;
	letter-spacing: 0.08em;
	line-height: 28px;
	color: rgba(255, 255, 255, 0.8);
	background: var(--blue);
	border: 1px solid var(--blue);
	padding: 10px 22px;
	text-transform: uppercase;
	-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(--darkBlue);
	border: 1px solid var(--darkBlue);
	color: rgba(255, 255, 255, 0.8) !important;
}

.btn-donate {
	font-weight: 900;
	font-style: normal;
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 30px;
	color: #fff;
	text-transform: uppercase;
	height: 40px;
	max-width: 115px;
	width: 100%;
	padding: 5px 20px;
	background: var(--blue);
	border: 1px solid var(--blue);
	border-radius: 0;
	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:hover,
.btn:focus,
.btn:active,
.btn-donate:hover,
.btn-donate:focus,
.btn-donate:active {
	background: var(--gray);
	border: 1px solid var(--gray);
	color: #fff;
}

.btn {
	background: var(--blue);
	display: inline-block;
	font-weight: 700;
	font-style: normal;
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #fff;
	text-transform: capitalize;
	padding: 11px 20px;
	margin-bottom: 15px;
	border: 1px solid var(--blue);
	border-radius: 5px;
	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:hover {
	background: #fff;
	color: var(--blue);
}

.container {
	max-width: 1110px !important;
}
/* ------------------------------ 
    === 1. End Typography ===
------------------------------ */




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

body {
	color: var(--gray);
	font-size: 16px;
	font-family: adrianna, sans-serif;
	background: var(--gray);
	overflow-x: hidden;
}

.opacity-1 {
	opacity: 1;
}

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

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

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

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

.white {
	color: #fff !important;
}

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

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

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

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

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

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

.italic {
	font-style: italic;
}

.normal {
	font-style: normal;
}

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

.uppercase {
	text-transform: uppercase;
}

.lowercase {
	text-transform: none;
}

section {
	position: relative;
}

.no-padding {
	padding: 0;
}

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

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

img {
	width: 100%;
}

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

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

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

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

.bg-white {
	background: #fff;
}
/* ------------------------------ 
    === 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(--blue);
	margin: 6px 0;
	transition: 0.4s;
}

.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;
	background-color: var(--blue);
	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: 14px;
	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(--blue);
}

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

.main-menu-item a,
.desktop-navigation .main-menu-item span {
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	text-transform: capitalize;
	color: #fff;
}

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

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

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

.desktop-navigation .has-sub-menu:hover a {
	color: #fff !important;
}

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

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

ul.nav ul {
	display: none;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	padding: 5px 0 0 0;
	right: calc(50% - 120px);
	top: 5px;
	left: 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: transparent;
}

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

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

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

.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(--blue);
	border-top: 5px solid transparent;
}

/* Nav Extras */
header#masthead {
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
}

#masthead.scrolled {
	background: rgba(255, 255, 255, 0.5);
	-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);
}

#home header#masthead {
	background: transparent;
}

#masthead.scrolled .desktop-navigation .brand-logo img {
	max-width: 210px;
}

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

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

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

#mobile-navigation {
	position: absolute;
	width: 100%;
	left: 0;
	top: 100%;
	z-index: 2;
}

.mobile-navigation .btn-donate {
	background-color: #fff;
	color: var(--darkBlue);
	font-size: 15px;
    font-weight: 900;
    line-height: 1;
	padding-left: 0;
    border: none;
}

.mobile-navigation .logo-wrap {
	position: absolute;
	top: 30px;
}

.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: var(--blue);
}

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

.mobile-nav li:nth-last-child(2) {
	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: var(--blue);
	display: inline-block;
	z-index: 1;
	margin: 0;
	font-weight: 400;
}

.mobile-nav ul li a {
	color: var(--blue);
}

.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 {
	color: var(--blue);
	font-size: 14px;
	/* 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: 210px;
}

.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 {
	background-color: var(--blue);
	width: 30px;
	height: 30px;
	position: relative;
	margin: 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: #fff !important;
}

#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(--blue);
	-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(--blue);
}

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

/* Dark Nav */
.dark .main-menu-item a,
.dark .main-menu-item i,
.dark .main-menu-item span {
	color: var(--blue);
}

.dark .main-menu-item a:hover,
.dark .main-menu-item span:hover {
	color: var(--blue) !important;
}

.dark .main-menu-item .sub-menu-item a {
    color: var(--blue) !important;
}

.dark .main-menu-item .sub-menu-item a.active {
    color: var(--blue) !important;
}




/* ------------------------------ 
	Footer
------------------------------ */
footer {
	background-color: #fff;
	padding: 65px 0;
}

.footer .disclaimer {
	display: inline-block;
	color: #00337D;
	font-size: 1.13em;
	line-height: 1;
	padding: 5px 10px;
	margin: 0;
	border: 1px solid #00337D;
}




/* ------------------------------ 
    Videos/oEmbed
------------------------------ */
.embed-container { 
	position: relative; 
	padding-bottom: 56.25%;
	overflow: hidden;
	max-width: 100%;
	height: auto;
} 

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

.video-container {
	max-width: 600px;
	width: 100%;
}

.video-frame {
	aspect-ratio: 16 / 9;
	width: 100%;
  }




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

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

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

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

.form .gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-search input[type=text]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework .gfield:where(.gfield--type-select,
.form .gfield--input-type-select) .chosen-single:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework.gform-theme.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework.gform-theme.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework.gform-theme.gform_wrapper button.button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],
.form [type=reset]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],
.form [type=reset]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme--framework.gform-theme.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	font-family: adriana, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: capitalize;
	height: 45px;
	width: 100%;
	border: none;
	border-radius: 5px;
	box-shadow: none;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transform: all .3s ease-in-out;
}

.form .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],
.form [type=button],
.form [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],
.form [type=button],
.form [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.form .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	font-family: adriana, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: capitalize;
	color: #fff;
	height: 45px;
	width: 100%;
	background: var(--blue);
	border: none;
	border-radius: 5px;
	box-shadow: none;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transform: all .3s ease-in-out;
}

.form .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
.form .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
.form .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
.form .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
.form .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],
.form [type=button],
.form [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
.form .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],
.form [type=button],
.form [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
.form .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover {
	background: var(--lightBlue);
	color: #fff;
 }

.form .gform-theme--foundation .gform_fields {
    grid-row-gap: 12px;
}

.gform_confirmation_message {
	text-align: center !important;
}

#gform_fields_1 {
	display: flex;
	flex-wrap: wrap;
}

#field_1_1, #field_1_3 {
	width: 48.5%;
}

#field_1_4 {
	width: 100%;
}

.gform_footer {
	margin-top: 12px !important;
}

.form .gform_validation_errors, .form .validation_message {
	background-color: rgba(255, 255, 255, 0.5) !important;
}

.form .gform_confirmation_message {
	background-color: rgba(255, 255, 255, 0.75) !important;
	color: var(--blue);
	font-size: 1.35em;
	padding: 10px;
}

/* ------------------------------ 
	Hero
------------------------------ */
.home-hero {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 150px 0 80px;
	border-bottom: solid 10px var(--blue);
}

.home-hero .hero-content {
	max-width: 920px;
	margin: 0 auto;
}

.home-hero h1 {
	color: #fff;	
	font-size: 1em;
	line-height: 1;
	text-align: center;
}

.home-hero h1 .part-one {
	display: block;
	font-size: 5.88em;
	font-family: freight-big-pro, serif;
}

.home-hero h1 .part-two {
	display: block;
	background-color: var(--blue);
	width: 100%;
	height: 5px;
	margin: 30px 0;
}

.home-hero h1 .part-three {
	display: block;
	font-size: 1.31em;
	font-family: adrianna, sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .75em;
}


.home-hero .form {
	max-width: 540px;
	margin: 102px auto 0;
}





/* ------------------------------ 
	Hero
------------------------------ */
.hero {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 150px 0 0;
	border-bottom: solid 10px var(--blue);
}

.hero h1 {
	color: var(--blue);	
	font-size: 1em;
	font-family: freight-big-pro, serif;
	font-weight: 700;
	text-align: left;
	text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.23);
}

.hero h1 .part-one {
	display: inline-block;
	font-size: 2.38em;
	padding-bottom: 10px;
	border-bottom: solid 3px var(--blue);
}

.hero h1 .part-two {
	display: block;
	font-size: 4em;
	padding-top: 10px;
}





/* ------------------------------ 
	Agendas
------------------------------ */
.agendas {
	padding: 50px 0 0;
	overflow-x: hidden;
}

.agendas .agenda {
	margin-bottom: 100px;
}

.agendas h2 {
	font-size: 1em;
}

.agendas h2 .part-one {
	display: block;
	font-size: 2.38em;
}

.agendas h2 .part-two {
	display: block;
	font-size: 1.88em;
	font-weight: 400;
	margin: 20px 0 80px;
}

.agendas h3 {
	font-size: 1.31em;
	font-weight: 700;
	text-align: center;
}

.agendas a {
	color: var(--blue);
}

.agendas a:hover {
	color: var(--lightBlue);
}

.agendas .safety {
	width: 60px;
	height: 76px;
}

.agendas .economy {
	width: 76px;
	height: 54px;
	margin-top: 20px;
}

.agendas .elections {
	width: 70px;
	height: 76px;
}

.agendas .education {
	width: 76px;
	height: 78px;
}

.agendas .rural {
	width: 62px;
	height: 77px;
}

.agendas .accountability {
	width: 76px;
	height: 76px;
	margin-top: 20px;
}




/* ------------------------------ 
	Supporters
------------------------------ */
.supporters .container {
	max-width: 1250px !important;
}

.supporters .lps-btns .btn {
	width: 100%;
}




/* ------------------------------ 
	Leaders
------------------------------ */
.leaders {
	background-color: var(--blue);
	padding: 60px 0 40px;
}

.leaders h2 {
	color: #fff;
	font-size: 3.56em;
	font-family: freight-big-pro, serif;
	font-weight: 600;
	margin-bottom: 40px;
}

.leaders ul {
	text-align: center;
}

.leaders ul li {
	color: #fff;
	list-style-type: none;
	margin-bottom: 20px;
}




/* ------------------------------ 
	Agendas Content Block
------------------------------ */
.agenda-content-block.sm {
	padding: 45px 0;
}

.agenda-content-block.md {
	padding: 84px 0;
}

.agenda-content-block.lg {
	padding: 134px 0;
}

.agenda-content-block h2 {
	margin-bottom: 25px;
}

.agenda-content-block.blue-bg {
	background-color: var(--blue);
}

.agenda-content-block.blue-bg h2 {
	color: #fff;
}

.agenda-content-block.blue-bg p {
	color: #fff;
}



/* ------------------------------ 
	Elections
------------------------------ */
#elections .hero .overlay {
	background: rgb(255,255,255);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
}

#elections .hero .container {
	z-index: 2;
}

#elections #hamburger span {
	background: var(--blue);
}




/* ------------------------------ 
	Education
------------------------------ */
#education .hero {
	align-items: start;
	height: 670px;
}	





/* ------------------------------ 
	Pricacy Policy
------------------------------ */
.privacy-page {
	padding-bottom: 50px;
}

.privacy-page p {
	margin-bottom: 10px;
}

.privacy-page p strong {
	display: block;
	margin-top: 20px;
}




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