/*
 Theme Name:   Drew MacEwen 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: #004188;
	--darkBlue: #002E61;
	--gray: #464646;
	--lightGray: #EBEBEB;
	--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.63em;
	font-family: 'basic-sans', sans-serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1;
}

h2,
.h2 {
	color: var(--blue);
	font-family: 'basic-sans', sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 2.06em;
	line-height: 1;
}

h3,
.h3 {
	color: var(--blue);
	font-size: 1.44em;
	font-family: 'basic-sans', sans-serif;
	font-weight: 900;
	font-style: normal;
}

h4,
.h4 {
	color: var(--blue);
	font-size: 1.13em;
	font-family: 'basic-sans', sans-serif;
	font-weight: 900;
	font-style: normal;
}

p,
.p {

}

address {
	font-family: "basic-sans", sans-serif;
	font-weight: 400 !important;
}

.small {
	font-family: 'basic-sans', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 12px;
	line-height: 25px;
	color: var(--gray);
	opacity: 0.7;
}

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-family: 'ff-real-text-pro', sans-serif;
	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-family: 'basic-sans', sans-serif;
	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-family: 'basic-sans', sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	height: 37px;
	padding: 11px 20px;
	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;
}

.

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




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

body {

	color: var(--gray);
	font-family: 'basic-sans', sans-serif;
	font-size: 15px;
	background: var(--gray);
	overflow-x: hidden;
}

.myriad-pro {
	font-family: 'myriad-pro', sans-serif;
}

.basic-sans {
	font-family: 'basic-sans', sans-serif;
}

.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: 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(--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: 400;
	font-style: normal;
	font-size: 15px;
	line-height: 28px;
	text-align: center;
	text-transform: uppercase;
	color: var(--darkGray);
}

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

.main-menu-item a.active {
	font-weight: 900;
}

.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: 3px solid #fff;
}

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

.desktop-navigation .has-sub-menu:hover a {
	color: var(--red) !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: 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(--blue);
}

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

#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: 9px 20px;
    border: none;
}

.mobile-navigation .btn-donate:hover,
.mobile-navigation .btn-donate:focus,
.mobile-navigation .btn-donate:active {
	background: var(--darkGray);
	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(3),
.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: #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: 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 {
	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: var(--darkBlue);
}

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

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




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

.footer .footer-logo-wrap.brand-logo img {
	max-width: 420px;
	width: 100%;
}

.footer .donate-btn {
	margin: 30px 0;
}

.footer .social-icon a {
    background: var(--blue) !important;
    font-size: 18px;
}

.footer .social-icon a:hover {
    background: var(--gray) !important;
    font-size: 18px;
}

.footer .disclaimer {
	display: inline-block;
	line-height: 1;
	padding: 5px 10px;
	margin: 30px 0;
	border: 1px solid #707070;
	opacity: .7;
}

.footer address, .footer p {
	opacity: .7;
}



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




/* ------------------------------ 
    Gravity Forms
------------------------------ */
.form .gform_wrapper input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: var(--gray);
	opacity: 0.7;
	text-transform: uppercase;
}

.form .gform_wrapper input::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--gray);
	opacity: 0.7;
	text-transform: uppercase;
}

.form .gform_wrapper input:-ms-input-placeholder {
	/* IE 10+ */
	color: var(--gray);
	opacity: 0.7;
	text-transform: uppercase;
}

.form .gform_wrapper input:-moz-placeholder {
	/* Firefox 18- */
	color: var(--gray);
	opacity: 0.7;
	text-transform: uppercase;
}

.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: 'basic-sans', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 26px;
	color: var(--gray);
	text-transform: uppercase;
	height: 40px;
	width: 100%;
	background: var(--white);
	border: none;
	border-radius: 0;
	box-shadow: none;

}

.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: 'basic-sans', sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 26px;
	color: #fff;
	text-transform: uppercase;
	height: 40px;
	width: 100%;
	background: var(--blue);
	border: none;
	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;
}

.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(--gray);
	color: #fff;
 }

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

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



/* ------------------------------ 
	Hero
------------------------------ */
.hero {
	padding: 60px 0;
}

.hero .overlay {
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.hero h1 {
	color: var(--blue);
	font-size: 1em;
	font-family: 'basic-sans', sans-serif;
	line-height: 1;
}


.hero .large {
	font-weight: 900;
	font-size: 5.63em;
}

.hero .medium {
	font-weight: 900;
	font-size: 2.06em;
}

.hero p {
	color: var(--darkBlue);
	line-height: 1;
}




/* ------------------------------ 
	Home
------------------------------ */
#home header {
	display: none;
}

#home .home-hero {
	background: rgb(0,65,136);
	background: linear-gradient(90deg, rgba(0,65,136,1) 0%, rgba(0,46,97,1) 100%);
}

#home .home-hero h1 {
	color: #fff;
	font-size: 3.13em;
	text-transform: uppercase;
	margin-bottom: 30px;
}

#home .donate {
	background-color: var(--lightGray);
	padding: 30px;
}

#home .donate img {
	max-width: 340px;
}

#home .donate .subtitle {
	display: block;
	color: var(--darkGray);
	font-size: 1.88em;
	font-family:"market pro", sans-serif;
	line-height: 1.2;
	max-width: 270px;
	margin: 0 auto 30px;
}

#home .donate .desc {
	font-size: 1.13em;
}

#home .donate form {
	max-width: 290px;
	margin: 0 auto;
}

#home .btn-group-donate a {
	text-align: center;
	width: 88px;
	height: 37px;
	padding: 0;
	margin-bottom: 10px;
}

#home .btn-group-donate a .btn {
	background-color: #fff;
	color: var(--gray);
	font-weight: 400;
	padding-left: 0;
	padding-right: 0;
	border: none !important;
	outline: none;
}

#home .btn-group-donate a .btn:hover,  #home .btn-group-donate a.donate-active .btn {
	background-color: var(--blue);
	color: #fff;
	font-weight: 700;
}

#home .btn-group-donate a:last-of-type {
	width: 100%;
}

#home .btn-group-donate a:last-of-type .btn {
	background-color: var(--blue);
	color: #fff;
	font-weight: 900;
	max-width: 100%;
	width: 125px;
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 15px;
}

#home .btn-group-donate a:last-of-type .btn:hover {
	background-color: var(--darkGray);
}

#home .home-nav {
	background-color: var(--darkBlue);
}

#home .feeds {
	margin: 0 0 120px;
}

#home .feeds .feed-container {
	background-color: #fff;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

#home .feeds .feed-container .ctf-item ctf-author-drewmacewen ctf-with-logo{
	padding: 15px !important;
}

#home .issues {
	margin-bottom: 130px;
}




/* ------------------------------ 
	About
------------------------------ */
#about .hero p {
	color: var(--blue);
	font-size: 2.06em;
}

#about .hero .medium {
	color: var(--darkBlue);
	line-height: 1;
	max-width: 430px;
	margin: 0 auto;
}

#about .intro, #about .fullwidth-txt {
	max-width: 730px;
	margin: 0 auto;
	padding: 60px 0 130px;
}

#about .intro strong, 
#about .fullwidth-txt strong,
.text-overlay strong {
	color: var(--blue);
	font-size: 1.13em;
	font-weight: 700;
}

#about .intro h2 {
	font-size: 1.44em;
	margin: 0 auto 15px;
}

#about .text-overlay .bg-img{
	background-repeat: no-repeat;
}




/* ------------------------------ 
	Issues
------------------------------ */
#issues .hero .overlay {
	bottom: 0;
	height: 350px;
}

#issues .hero .medium {
	text-transform: uppercase;
}

#issues .fullwidth-txt {
	max-width: 920px;
	margin: 0 auto;
	padding: 90px 0;
}

#issues .fullwidth-txt.about-top {
	max-width: 730px;
}

#issues .fullwidth-txt.about-top p {
	font-size: 1.13em;
}

#issues .fullwidth-txt.about-bottom p {
	font-size: 2.06em;
	line-height: 1;
	letter-spacing: .01em;
}

#issues .fullwidth-txt.about-bottom p:first-child {
	margin-bottom: 15px;
}

.issue .icon {
	background-color: var(--blue);
	width: 65px;
	height: 65px;
}

.issue .icon.health {
	background-image: url('../drew-macewen-theme/assets/svgs/icon_health.svg');
}

.issue .icon.briefcase {
	background-image: url('../drew-macewen-theme/assets/svgs/icon_briefcase.svg');
}

.issue .icon.budget {
	background-image: url('../drew-macewen-theme/assets/svgs/icon_budget.svg');
}

.issue .icon.economy {
	background-image: url('../drew-macewen-theme/assets/svgs/icon_economy.svg');
}

.issue .icon.education {
	background-image: url('../drew-macewen-theme/assets/svgs/icon_education.svg');
}

.issue .icon.border {
	background-image: url('../drew-macewen-theme/assets/svgs/icon_border.svg');
}

.issue .icon.military {
	background-image: url('../drew-macewen-theme/assets/svgs/icon_military.svg');
}




/* ------------------------------ 
	Volunteer
------------------------------ */
#volunteer .form-wrapper {
	max-width: 540px;
	margin: 0 auto 100px;
}

#volunteer #gform_fields_2 {
	display: flex;
	flex-wrap: wrap;
}

#volunteer #field_2_1,
#volunteer #field_2_3 {
	width: 48.5%;
}

#volunteer #field_2_8,
#volunteer #field_2_9 {
	width: 100%;
}

#volunteer .address_city {
	width: 50%;
}

#volunteer .address_state {
	width: 28%;
}

#volunteer .address_zip {
	width: 22%;
}

#volunteer #field_2_10 {
	margin-top: 14px;
}

#volunteer .gfield_label_before_complex {
	font-size: 1.13em;
	max-width: 445px;
	margin-bottom: 30px;
}

#volunteer .gfield_label_before_complex .gfield_required {
	display: none;
}

#volunteer #input_2_4_4 {
	padding-top: 7px;
	color: #888;
}

#volunteer form select option {
	color: #000 !important;
}

#volunteer #field_2_10 .gfield_checkbox {
	display: unset;
}

#volunteer #field_2_10 .gfield_checkbox .gchoice {
	width: 50%;
	margin-bottom: 20px;
}

#volunteer #field_2_10 .gfield_checkbox .gchoice  input {
	width: 19px;
	height: 19px;
}

#volunteer #field_2_10 .gfield_checkbox .gchoice  label {
	color: var(--gray);
	opacity: .7;
}

#volunteer .gform_footer {
	width: 114px;
	height: 37px;
}



/* ------------------------------ 
	News
------------------------------ */
.news {
	padding: 40px 0 50px;
}

.news .container {
	max-width: 925px;
}

.news-content h3 {
	color: var(--blue);
	font-size: 1.44em;
	line-height: 1;
}

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

.page-numbers {
	color: var(--darkBlue);
	line-height: 1;
	padding: 3px 5px;
	margin: 0 2px;
	border: solid 1px var(--darkBlue);
}

.page-numbers:hover {
	background: var(--darkBlue);
	color: #fff;
}

.single-post .date {
	text-transform: uppercase;
}



/* ------------------------------ 
	Events
------------------------------ */
#events .events .container {
	max-width: 888px;
	padding-top: 90px;
}

#events .hero p {
	font-size: 1.44em;
}

#events .event {
	margin-bottom: 90px;
}

#events .event .event-img {
	min-width: 318px;
	margin: 0 30px 30px 0;
}

#events .event .event-title {
	color: var(--blue);
	font-size: 1.44em;
	font-weight: 900;
}


/* ------------------------------ 
	Endorsements
------------------------------ */
.endorsements {
	padding: 0 0 60px;
}

.endorsements .container {
	max-width: 950px;
}

.endorsements h2 {
	font-size: 1.44em;
	text-align: center;
	width: 100%;
}

.endorsements li {
	font-size: 15px;
	text-transform: uppercase;
}


/* ------------------------------ 
	Quotes
------------------------------ */
#endorsements .hero h1 .medium {
	text-transform: uppercase;
	font-weight: 900;
	margin-bottom: 30px;
}

#endorsements .hero h1 .part-three {
	font-size: 2.06em;
	font-weight: 100 !important;
}

.quotes {
	padding-top: 60px ;
}

.quotes .container {
	max-width: 950px;
}

.quotes .quote {
	margin-bottom: 60px;
}

.quotes .quote p {
	font-size: 1.13em;
}

.quotes .quote p .name {
	font-size: .9em;
	text-transform: uppercase;
	margin-top: 12px;
}




/* ------------------------------ 
	Privacy Policy
------------------------------ */
.privacy-policy p {
	margin-bottom: 15px;
}




/* ------------------------------ 
	Landing Page
------------------------------ */
.lp-hero {
	height: 100vh;
	width: 100%;
}

#landing-page .donate-btn {
	position: absolute;
    top: 40px;
    right: 5%;
}

#landing-page .brand-logo img {
	max-width: none;
}

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