:root {
	--darkBlue: #2D3142;
	--midBlue: #4F5D75;
	--teal: #2A9D8F;
	--gold: #E9C46A;
	--melon: #F4A261;
}

* { box-sizing: border-box; }

/*--------------------------------------------------------------
# Custom CSS
--------------------------------------------------------------*/
html, body {
	/*background: #12385E;*/
	background-color: var(--darkBlue);
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}
body {
	overflow-x: hidden;
}

h2 {
	font-weight: 400;
}

h3._display {
	/*color: #002B60;*/
	color: var(--darkBlue);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  margin: 1rem auto;
  text-align: center;
  text-transform: uppercase;
  overflow-x: visible;
}
h3._display::after {
	border-bottom: 0.3125rem solid var(--midBlue);
	content: "";
	display: block;
	margin: 0.625rem auto;
	width: 15.625rem;
}

a, i, div, a:hover, a:active, a:focus {
	outline: 0;
	text-decoration: none;
}

a, div, input { transition-duration: .2s; }

section {
	margin: 0;
	padding: 2.75rem 4%;
	width: 100%;
}

._container {
	margin: 0 auto;
	max-width: 54.8rem;
	padding: 0;
	width: 100%;
}

.clearfix {
	clear: both;
	float: none;
	width: 100%;
}

::-moz-selection {
    color: #FFF;
    background: #072B3A;
}

::selection {
    color: #FFF;
    background: #072B3A;
}

._nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

._block {
	/*background-color: #12385E;*/
	background-color: var(--teal);
	color: #FFF;
	display: block;
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.0625rem;
	margin: .75rem auto;
	padding: .75rem;
	text-align: center;
	text-transform: uppercase;
	width: 17.1875rem;
}
._block:hover,
._block:focus {
	/*background-color: #5BB8CE;*/
	background-color: var(--gold);
	color: #FFF;
}

._flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
._third {
	width: calc((100% - 1rem) * .33);
}
@media screen and (min-width: 770px) {
	._flex {
		flex-wrap: nowrap;
	}

	._half {
		width: calc((100% - 1rem) * .5);
	}
}

.__actblue {
	margin: 1 auto;
	max-width: 31.25rem;
}
@media screen and (min-width: 770px) {
	.__actblue._flex {
		flex-wrap: wrap;
	}
}

.__actblue p {
	font-size: 0.8125rem;
  font-style: italic;
  margin: 0.5rem 0 0;
  opacity: .75;
  text-align: center;
  line-height: 1.1;
  width: 100%;
}

._fastlane {
	color: #404040;
	display: block;
	font-size: 1.2rem;
	margin: .5rem 0;
	position: relative;
	text-align: left;
	transition-duration: 0s;
}
._fastlane:hover,
._fastlane:focus {
	color: var(--teal);
}
._fastlane::before,
._fastlane::after {
	display: inline-block;
	font-family: 'Font Awesome 5 Pro';
}
._fastlane::before {
	/*color: #5BB8CE;*/
	color: var(--teal);
	content: "\f0c8";
	font-size: 1.3rem;
	height: 1.3rem;
	margin: 0 .5rem 0 0;
	width: 1.3rem;
}
._fastlane:hover::after,
._fastlane:focus::after {
	/*color: #072B3A;*/
	color: var(--darkBlue);
	content: "\f00c";
	font-size: 1.5rem;
	font-weight: 900;
	height: 1.5rem;
	left: -0.0625rem;
	position: absolute;
	top: -0.0625rem;
	width: 1.5rem;
}

.__form h4 {
	/*color: #12385E;*/
	color: var(--darkBlue);
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0.625rem auto;
	text-transform: uppercase;
}

.__form p {
	color: #000;
	font-size: 1.125rem;
	font-weight: 400;
	margin: 0.625rem auto;
	max-width: 33.75rem;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#masthead {
	align-items: flex-start;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	left: 0;
	/*padding: 0.3125rem 1.25rem;*/
	position: absolute;
	top: 0;
	width: 100%;
}

.site-logo {
	margin: 0.3125rem 0 0 1.25rem;
	position: relative;
	/*z-index: 10;*/
}

.site-logo a {
	display: block;
}

.site-logo img {
	display: block;
	height: 4.2rem!important;
	max-width: none;
	width: auto !important;
}

.site-header a {
	color: #FFF;
	letter-spacing: 0.0625rem;
  transition-duration: .2s;
	/*font-weight: bold!important;*/
	/*text-transform: uppercase!important;*/
}

@media screen and (min-width: 1281px) {
	.site-header a {
	    color: #FFF;
	    letter-spacing: 0.0625rem;
	    transition-duration: .2s;
	    font-size: 1.00rem;
		font-weight: bold;
		text-transform: uppercase;
	}
}

/*div#header-social-links {
	display: block;
	float: right;
	padding: 20px;
}

div#header-social-links a {
	font-size: 20px;
	margin: 0 5px;
}

div#header-social-links a:hover,
div#header-social-links a:focus {
	color: #5BB8CE;
}*/

.main-navigation {
	/*align-content: flex-start;*/
	/*align-items: stretch;*/
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	float: none;
	justify-content: space-between;
	width: 100%;
}

.main-navigation li {
	display: block;
	float: none;
	margin: 0 0.625rem;
}
#primary-menu li {
	margin: 0 1.25rem;
}

#primary-menu li ul.sub-menu li {
	margin: 0.65em 0;
}

#primary-menu,
#primary-social {
	align-items: center;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	/*width: 100%;*/
}
#primary-menu {
	/*align-items: center;*/
	justify-content: center;
	width: 100%;
}
#primary-social {
	flex: none;
}
#primary-social li:last-of-type {
	margin: 0 0 0 0.625rem;
}
#primary-social li:last-of-type a {
	background: var(--melon);
	display: block;
	font-weight: 600;
	margin: 0 0 0 0.625rem;
	padding: 1.25rem 1.875rem;
	text-align: center;
	text-transform: uppercase;
	transition-duration: .2s;
}

#primary-social li:last-of-type:hover a,
#primary-social li:last-of-type:focus a {
	background: var(--gold);
	color: #FFF;
}

#primary-menu a {
	border-bottom: 0.1875rem solid transparent;
	padding-bottom: 0.3125rem;
}

#primary-menu a:hover,
#primary-menu a:focus {
    border-bottom: 0.1875rem solid #fff;
}

div#menu-contribute {
	background: #87153A;
	display: block;
	float: right;
	position: relative;
	transition-duration: .3s;
	z-index: 3;
}

div#menu-contribute:hover,
div#menu-contribute:focus {
	background: #FFBA08;
}

div#menu-contribute a {
	color: #FFF;
	display: block;
	padding: 20px 30px;
	text-transform: uppercase;
	transition-duration: .3s;
}

/* Mobile Nav*/

@media screen and (max-width: 769px) {
	button.menu-toggle {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #FFF;
    font-size: 1.5625rem;
    left: calc(-3.8675rem - .25rem);
		margin: 1.25rem;
    outline: none;
    padding: 0;
    position: absolute;
    text-shadow: 0 0 0.125rem rgba(45, 49, 66, 1);
    top: 0;
    /*transition-duration: 0s;*/
    z-index: 2;
	}
	/*button.menu-toggle:hover {
		color: var(--teal);
	}*/

	.main-navigation {
		background: var(--midBlue);
		height: 100vh;
		flex-direction: column;
		justify-content: center;
		margin: 0;
		position: absolute;
		right: calc(-100vw - .25rem);
		top: 0;
		transition-duration: .2s;
		width: 100vw;
		z-index: 1;
	}
	.main-navigation.toggled {
		overflow-x: hidden;
		overflow-y: scroll;
		position: fixed;
		right: 0;
	}
	.main-navigation.toggled button.menu-toggle {
		left: auto;
		/*position: fixed;*/
		right: 0;
	}

	#primary-menu,
	#primary-social {
		flex-direction: column;
	}
	#primary-menu li {
		line-height: 1;
		margin: 1.25rem 0;
	}
	#primary-menu a {
		border: 0;
		padding: 0;
	}
	#primary-menu a:hover,
	#primary-menu a:focus {
		border: 0;
	}
	#primary-social {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
	#primary-social li {
		margin: 1.25rem;
		order: 2;
	}
	#primary-social li:last-of-type {
		flex: none;
		margin: 1.75rem auto;
		/*max-width: 21.875rem;*/
		order: 1;
		width: 100%;
	}
	#primary-social li:last-of-type a {
		box-shadow: 0 0 0.125rem 0 rgb(45, 49, 66);
		font-weight: 600;
		margin: 0 auto;
		max-width: 21.875rem;
		width: 90%;
	}
	
	ul.sub-menu {
		display: none!important;
	}


	/*.main-navigation li {

	}

	.main-navigation li:last-of-type {
		display: block;
	    height: auto;
	    margin: auto;
	    width: 90%;
	}*/

	/*div#menu-contribute { display: none; }*/

	/*.menu-primary-menu-container {
	    margin-top: 90px;
		width: 100%;
	}*/

	/*div#header-social-links {
	    display: none;
	    position: relative;
		text-align: center;
		top: 450px;
		width: 100%;
		z-index: 3;
	}*/
  .main-navigation a:hover,
  .main-navigation a:focus {
    border-bottom: 0;
    /*color: var(--gold);*/
  }
}


/*--------------------------------------------------------------
# Homepage
--------------------------------------------------------------*/
.hero {
	background-blend-mode: multiply, normal;
	/*background-image: linear-gradient(to top, rgba(45, 49, 66,0) 40%, rgba(45, 49, 66,.4)), url(../img/bg-rollins.jpg);*/
	background-image: linear-gradient(to top, rgba(45, 49, 66,0) 40%, rgba(45, 49, 66,.4)), url(../img/bg-rollins.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 18.75rem;
	padding: calc(4% + 5rem) 4% 4%;
	width: 100%;
}
@media screen and (min-width: 770px) {
	.hero:not(._home) {
		background-position: center center, top 35% center;
	}
}

.hero .__form ._actionnetwork {
	background-color: #FFF;
	/*border: 8px solid #002B60;*/
	border: 0.125rem solid var(--midBlue);
	border-radius: 0.125rem;
	/*box-shadow: 0 0 0.5rem 0 rgba(0,0,0,.35);*/
	margin: 0 auto;
	max-width: 43.75rem;
	padding: 1rem 1.5rem;
	position: relative;
	text-align: center;
	top: 17rem;
	width: 85%;
}

.can_embed li {
  list-style: none;
}

.home .action {
	background-color: #FFF;
	padding: 17rem 4% 2.75rem;
}

.__options {

}

._option {
	margin: 1.875rem auto;
	max-width: 35rem;
	width: 100%;
}
@media screen and (min-width: 770px) {
	._option {
		display: flex;
		flex-direction: column;
		/*flex-wrap: wrap;*/
		justify-content: space-between;
		padding: 0 1rem;
		width: calc((100% - 1rem) * .5);
	}
}

.__volunteer {
	text-align: center;
}
.__volunteer p {
	font-size: 1rem;
}

.__donate ._block {
	/*background-color: #87153A;*/
	background-color: var(--melon);
}
.__donate ._block:hover,
.__donate ._block:focus {
	/*background-color: #FFBA08;*/
	background-color: var(--gold);
}

.learn {
	/*background-color: #12385E;*/
	background-color: var(--darkBlue);
	color: #FFF;
	padding: 4.5rem 4%;
	text-align: center
}

.__more {
	margin: 0 auto;
	max-width: 26rem;
}

.__more img {
	display: block;
	height: auto;
	margin: 0 auto;
	width: 6.25rem;
}

.__more h2 {
	font-size: 1.375rem;
}

/*.learn ._block {
	background-color: #FFF;
	background-color: var(--teal);
	color: #12385E;
	color: var(--midBlue);
}
.learn ._block:hover,
.learn ._block:focus {
	background-color: #5BB8CE;
	background-color: var(--gold);
	color: #12385E;
	color: var(--midBlue);
}*/

.meet {
	/*background-image: linear-gradient(to bottom, #FFF, #FFF), url(../img/bg-meet.jpg);*/
	background-image: linear-gradient(to bottom, #FFF, #FFF), url(../img/bg-meetrollins.jpg);
	background-position: center bottom, center top;
	background-repeat: no-repeat;
	background-size: 100% calc(100% - 50vw) ,100% auto;
	padding-top: calc(50vw + 2.75rem);
	text-align: center;
}
@media screen and (min-width: 770px) {
	.meet {
		align-items: center;
		background-image: linear-gradient(to right, #FFF, #FFF), url(../img/bg-meet.jpg);
		background-image: linear-gradient(to right, #FFF, #FFF), url(../img/bg-meetrollins.jpg);
		background-position: right center, left top;
		background-repeat: no-repeat;
		background-size: calc(100% - 50vw) 100%, calc(100% - 50vw) auto;
		display: flex;
		min-height: 27rem;
		padding: 3.5rem;
		padding-left: calc(50vw + 2.75rem);
	}
}

.__candidate {
	margin: 0 auto;
	max-width: 35rem;
}

.kicker {
	/*background-image: linear-gradient(rgba(18, 56, 94, .7), rgba(18, 56, 94, .7)), url(../img/bg-kicker.jpg);*/
	background-blend-mode: multiply, normal;
	background-image: linear-gradient(rgba(45, 49, 66,.7), rgba(45, 49, 66,.7)), url(../img/bg-kickerrollins.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.kicker h2 {
	font-size: 1.5625rem;
	letter-spacing: 0.125rem;
  /*margin-bottom: 5px;*/
}

.kicker h4 {
	color: #FFF;
	font-size: 1.25rem;
}

/*.kicker p {
	font-size: 1.125rem;
	letter-spacing: 0.0625rem;
}*/

.kicker .__form ._actionnetwork .can_embed {
	margin: 0 auto;
	max-width: 450px;
}

._actionnetwork .can_embed label,
.international_link-wrap,
.country_drop_wrap {
	display: none !important;
}

._actionnetwork .can_embed input {
	background-color: rgba(99, 115, 129, .13);
	/*border: 4px solid #072B3A;*/
	border: 0;
	border-bottom: 0.25rem solid rgba(99, 115, 129, 0);
	border-radius: 0.125rem;
	color: #000;
	font-family: 'Montserrat', sans-serif;
	height: 4.0625rem;
	margin: 0.4375rem auto;
	padding: 0 1.25rem;
	outline: 0;
}
._actionnetwork .can_embed input::placeholder {
	color: rgba(99, 115, 129, .8);
}
._actionnetwork .can_embed input:focus {
	/*border-bottom: 0.25rem solid #12385E;*/
	border-bottom: 0.25rem solid var(--darkBlue);
}

._actionnetwork .can_embed input#form-email {
	width: 100%;
}

._actionnetwork .can_embed input#form-zip_code {
	float: left;
	width: 44%;
}

._actionnetwork .can_embed input[type="submit"] {
	/*background: #12385E;*/
	background: var(--teal);
	border: none;
	color: #FFF;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	float: right;
	letter-spacing: 0.0625rem;
	text-transform: uppercase;
	width: 54%;
}

.kicker ._actionnetwork .can_embed input {
	background-color: rgba(255,255,255,.9);
	border-bottom: 0.25rem solid rgba(99, 115, 129, 0);
	border-radius: 0.125rem;
	color: #000;
	font-family: 'Montserrat', sans-serif;
	height: 4.0625rem;
	margin: 0.4375rem auto;
	padding: 0 1.25rem;
	outline: 0;
}
.kicker ._actionnetwork .can_embed input::placeholder {
	color: rgba(99, 115, 129, .9);
}
.kicker ._actionnetwork .can_embed input:focus {
	border-bottom: 0.25rem solid var(--teal);
}

.kicker ._actionnetwork .can_embed input#form-email {
	width: 100%;
}

.kicker ._actionnetwork .can_embed input#form-zip_code {
	float: left;
	width: 44%;
}

.kicker .__form ._actionnetwork .can_embed input[type="submit"] {
	background-color: var(--teal);
	border: 0;
	color: #FFF;
}

._actionnetwork .can_embed input[type="submit"]:hover,
._actionnetwork .can_embed input[type="submit"]:focus,
.kicker .__form ._actionnetwork .can_embed input[type="submit"]:hover,
.kicker .__form ._actionnetwork .can_embed input[type="submit"]:focus {
	background: var(--gold);
	border: 0;
}

._actionnetwork .can_embed h2 { display: none; }
._actionnetwork .can_embed h4 { display: none; }
._actionnetwork .can_embed input#form-first_name { display: none; }
._actionnetwork .can_embed input#form-last_name { display: none; }
div.country_wrap { display: none; }
img.ajax-loading { display: none; }
div#d_sharing { display: none; }
div#action_info { display: none; }
div#logo_wrap { display: none; }
.clearfix > div { display: none; }
div#action_welcome_message_inner.clearfix > div { display: block; }
a#log-out { color: #022B3A; }
a#log-out:hover, a#log-out:focus { color: #5BB8CE; }

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#action-flex-home {
	margin: 60px auto;
	width: 85%;
}

.action-module-home {
	width: 49%;
}

.action-module-home h3 {
	color: #002B60;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 20px auto 5px;
	text-transform: uppercase;
}

.action-module-home hr {
	background: #12385E;
	border: none;
	height: 5px;
	width: 250px;
}

.action-module-home p {
	font-weight: 400;
	margin: auto;
	max-width: 430px;
}

div#home-volunteer p {
    margin: 32px auto 24px;
}

#home-volunteer a {
	background: #12385E;
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	display: block;
	letter-spacing: 1px;
	margin: 20px auto;
	padding: 20px 0;
	text-transform: uppercase;
	width: 275px;
}

#home-volunteer a:hover,
#home-volunteer a:focus {
	background: #5BB8CE;
}

div#home-contribute-grid {
	margin: 0 auto;
	max-width: 400px;
}

div.contribute-option {
	display: inline-block;
	margin: 15px;
	text-align: left;
	width: 100px;
}

.contribute-option a {
	border: 4px solid #5BB8CE;
	padding: 0 9px;
	position: relative;
}

.contribute-option i {
	color: #072B3A;
	display: none;
	font-size: 35px;
	left: -8px;
	position: absolute;
	top: -8px;
}

.contribute-option a:hover > i.fa,
.contribute-option a:focus > i.fa {
	display: block;
}

a.contribute-button {
	background: #87153A;
	border: none;
	border-radius: 0px;
	color: #FFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 400;
	display: block;
	letter-spacing: 1px;
	margin: 20px auto;
	padding: 20px 0;
	text-transform: uppercase;
	width: 275px;
}

a.contribute-button:hover,
a.contribute-button:focus {
	background: #FFBA08;
}

.contribute-option p {
	display: inline-block;
	margin-left: 11px;
}

.contribute-option a:hover + p,
.contribute-option a:focus + p {
    color: #002B60;
}

div.some-issues {
	background: #12385E;
	color: #FFF;
	margin: 0;
	padding: 80px 20px;
	text-align: center;
	width: 100%;
}

.some-issues img {
    margin: 0 auto 20px;
    width: 100px;
}

.some-issues h3 {
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 0 auto;
	max-width: 400px;
}

.some-issues a {
	background: #FFF;
	border: none;
	color: #002B60;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 400;
	display: block;
	letter-spacing: 1px;
	margin: 30px auto 20px;
	padding: 20px 0;
	text-transform: uppercase;
	width: 275px;
}

.some-issues a:hover,
.some-issues a:focus {
	background: #5BB8CE;
}

div#home-meet-marcy {
	text-align: center;
	width: 100%;
}

div#marcy-mom {
    background: url(https://marcykaptur.com/wp-content/uploads/2017/10/meta-e1508993140746.jpg);
    background-position: top center;
    background-size: cover;
    height: auto;
    transition-duration: 0s;
    width: 50%;
}

div#marcy-kaptur {
	background: #FFF;
	margin: 0;
    min-height: 470px;
    padding: 50px 15px;
	width: 50%;
}

#marcy-kaptur h3 {
	border-bottom: 5px solid #12385E;
	color: #12385E;
    font-size: 22px;
    margin: 30px auto;
	padding: 0 0 10px 0;
    text-transform: uppercase;
    width: 250px;
}

#marcy-kaptur h4 {
	font-size: 17px;
	font-weight: 400;
    margin: 10px auto;
    min-width: 290px;
    width: 85%;
}

#marcy-kaptur a {
	background: #12385E;
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	display: block;
	letter-spacing: 1px;
	margin: 20px auto;
	padding: 20px 0;
	text-transform: uppercase;
	width: 275px;
}

#marcy-kaptur a:hover,
#marcy-kaptur a:focus {
	background: #5BB8CE;
}

.kicker .__form {
	color: #FFF;
  padding: 80px 15px;
	text-align: center;
}

.kicker .__form-div {
    margin: 50px auto 0;
}

/*--------------------------------------------------------------
# Lity photo gallery
--------------------------------------------------------------*/

[data-lity] {
	width: 200px;
	height: 200px;
	overflow: hidden;
    object-fit: cover;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.logo {
	background: #FFF;
	text-align: center;
	width: 100%;
}

.logo img {
	margin: 2.5rem auto;
	max-width: 37.5rem;
	min-width: 18.125rem;
	width: 33%;
}

.site-footer {
	color: #FFF;
	padding: 35px 0;
	text-align: center;
}

.site-footer a {
	color: #FFF;
}

.site-footer a:hover,
.site-footer a:focus {
	/*color: #5BB8CE;*/
	color: var(--gold);
}

#footer-social {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
}
#footer-social a {
	font-size: 1.25rem;
	margin: 0 0.3125rem;
}
#footer-social li:last-child {
	display: none;
}

._disclaimer p {
	border: 0.0625rem solid #FFF;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 400;
	margin: 0.9375rem auto;
	padding: 0.5rem 1.25rem;
}

._privacypolicy {
	font-size: 12px;
	margin: 30px auto 10px auto;
}

@media screen and (max-width: 799px) {
    #home-logo h2 {
        font-size: 20px;
    }

	.form-home {
		width: 97%;
	}

	.action-module-home {
		width: 100%;
	}

	div#home-volunteer {
		margin-bottom: 30px;
	}

	div#marcy-mom {
		height: 500px;
		width: 100%;
	}

	div#marcy-kaptur {
		width: 100%;
	}
}

/*--------------------------------------------------------------
# Sub Pages
--------------------------------------------------------------*/
.hero-sub {
	background-position: center center;
	background-size: cover;
	height: 300px;
	padding: 1px;
	text-align: center;
}

.hero-sub h1 {
	color: #FFF;
	font-weight: 400;
	letter-spacing: 1px;
	padding-top: 125px;
	text-transform: uppercase;
}

/*--------------------------------------------------------------
# Issues
--------------------------------------------------------------*/
section#issues-home {
	background: #FFF;
	text-align: center;
}

div#issues-main {
	padding: 60px 20px 0 20px;
}

#issues-main img {
	width: 75px;
}

#issues-main h2 {
	color: #12385e;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 1px;
	margin: 10px 0 20px 0;
}

#issues-main h4 {
	color: #000;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: .5px;
}

#issues-main hr {
	background: #002b60;
	border: none;
	height: 5px;
	margin: 35px auto;
	width: 250px;
}

#issues-grid {
	margin: 60px auto 10px auto;
	min-width: 300px;
	width: 90%;
}

#issues-grid a {
	background: #002b60;
	color: #FFF;
	display: inline-block;
	font-size: 20px;
	letter-spacing: .5px;
	margin: 10px 10px 0 0;
	min-width: 300px;
	padding: 40px 20px;
	text-transform: uppercase;
	width: 47%;
}

#issues-grid a:hover,
#issues-grid a:focus {
	background: #5BB8CE;
}

@media screen and (max-width: 749px) {
	#issues-grid a {
		margin: 10px auto 0;
		width: 100%;
	}
}

/*--------------------------------------------------------------
# Voting
--------------------------------------------------------------*/

._bluebox {
	margin: 0 2% 20px 0;
	padding: 40px;
	background: #142954;
	font-size: 21px;
	font-weight: bold;
	color: #ffffff;
	width: 48%;
	min-height: 250px;
	float: left;
	text-transform: uppercase;
	text-align: center;
}

._bluebox:nth-of-type(2), ._bluebox:nth-of-type(4) {
	margin: 0 0 20px 0;
}

._innerbutton a, ._innerbutton a:active, ._innerbutton a:visited {
	margin: 30px 0 0 0;
	padding: .9em 2.25em;
	background: #ffffff;
	display: -webkit-inline-box;
	font-size: 13px!important;
	font-weight: normal;
	font-weight: 400;
    font-style: normal;
    letter-spacing: .1em;
    line-height: 1.2em;
	color: #142954;
	text-transform: uppercase;
	text-align: center;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

@media screen and (max-width: 769px) {
	._bluebox {
		margin: 0 0 20px 0!important;
		width: 100%;
	}
}

/*--------------------------------------------------------------
# Endorsements
--------------------------------------------------------------*/

table._endorsements {
	width: 100%;
	border: none;
}

table._endorsements tr {
	vertical-align: top;
}

table._endorsements tr td {
	width: 50%;
}

@media screen and (max-width: 769px) {
	table._endorsements tr, table._endorsements tr td {
		width: 100%!important;
		display: block!important;
	}
}

/*--------------------------------------------------------------
# Single Issue
--------------------------------------------------------------*/
.hentry {
	background: #FFF;
	margin: 0;
}

.hero-single-issue {
	background: linear-gradient(rgba(2, 43, 58, .7), rgba(2, 43, 58, .7));
	background-size: cover;
	height: 225px;
	padding: 1px;
	text-align: center;
}

header.single-issue-header {
	background: #FFF;
	padding: 1px;
	text-align: center;
	text-transform: uppercase;
}

header.single-issue-header h3 {
	color: #000;
	margin: 30px auto 10px;
	font-weight: 400;
}

header.single-issue-header h1 {
	color: #022B3A;
	margin: 10px auto;
	font-weight: 500;
}

div.single-issue-container {
	background: #FFF;
	margin: 0;
	padding: 1px;
	text-align: center;
}

div.single-issue-container p {
	color: #000;
	font-weight: 400;
	margin: 10px auto;
	max-width: 950px;
	min-width: 300px;
	padding: 0 7%;
}

hr.blue-rule {
	background: #12385E;
	border: none;
	height: 5px;
	margin: 40px auto 50px;
	width: 250px;
}

div.odd {
	background: #f5f5f5;
	text-align: left;
}

div.even {
	background: #FFF;
	text-align: right;
}

div.single-issue-details {
	padding: 60px 20px;
}

div.issue-detail-copy {
	max-width: 600px;
	width: 50%;
}

div.single-issue-details.odd > div.issue-detail-copy {
	margin: 0 0 0 25px;
}

div.single-issue-details.even > div.issue-detail-copy {
	margin: 0 25px 0 0;
}

div.single-issue-details h2 {
	color: #13505b;
	letter-spacing: 1px;
	text-transform: uppercase;
}

div.single-issue-details p {
	letter-spacing: .5px;
	line-height: 1.5;
	max-width: none;
	padding: 0;
	width: 100%;
}

div.details-img {
	max-width: 600px;
	min-height: 300px;
	margin: 25px;
	width: 39%;
}

div.single-issue-details-long {
	padding: 60px 20px 40px 20px;
}

div.single-issue-details-long h2 {
	color: #13505b;
	letter-spacing: 1px;
	margin: 0 0 20px 25px;
	text-transform: uppercase;
}

div.single-issue-details-long p {
	column-count: 2;
	max-width: none;
	padding: 0 25px;
	width: 100%;
}

div.details-img-long {
	height: 400px;
	margin: 65px auto;
	width: 95%;
}

@media screen and (max-width: 749px) {
	div.odd,
	div.even {
		text-align: center;
	}

	div.single-issue-details {
		padding: 60px 20px;
	}

	div.issue-detail-copy {
		width: 100%;
	}

	div.single-issue-details.odd > div.issue-detail-copy,
	div.single-issue-details.even > div.issue-detail-copy {
		margin: 0 auto;
	}

	div.details-img {
		margin: 25px auto;
		width: 100%;
	}

	div.single-issue-details-long h2 {
		margin: 0 0 20px 0;
	}

	div.single-issue-details-long p {
		column-count: 1;
	}

}

/* About Styles */
section#about-home {
	background: #FFF;
	padding: 1px 0;
	text-align: center;
}

#about-main h3 {
	color: #87153A;
    margin: 30px auto 10px;
    font-weight: 400;
	text-transform: uppercase;
}

#about-main h1 {
	color: #022B3A;
    font-weight: 500;
    margin: 10px auto;
	text-transform: uppercase;
}

.about-blurb p {
	color: #000;
    margin: 10px auto;
    min-width: 300px;
    width: 90%;
}

div#about-details {
	color: #000;
	margin: 0 auto;
	text-align: left;
	width: 90%;
}

div.about-quote {
    color: #002B60;
    font-size: 25px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

.about-quote h4 {
    margin: 50px auto 100px;
}


/* News Page Styles */
section#news-home {
	background: #FFF;
	padding: 0 0 30px 0;
}

div#news-main {
	background: #F5F5F5;
	padding: 10px 0 30px;
	text-align: center;
}

#news-main h3 {
	color: #000;
    font-weight: 400;
    margin: 30px auto 10px;
    text-transform: uppercase;
}

#news-main h1 {
	color: #12385E;
	font-weight: 500;
    margin: 10px auto -15px;
    text-transform: uppercase;
}

div#news-feed {
	margin: 0 auto;
	max-width: 950px;
	padding: 85px 40px 150px;
}

div.news-item {
	position: relative;
}

.news-item a {
    color: #12385E;
    display: block;
    font-size: 23px;
    line-height: 1.1;
    text-transform: uppercase;
    width: 85%;
}

.news-item a:hover,
.news-item a:focus {
	color: #5BB8CE;
}

p.news-post-date {
	color: #000;
	font-size: 14px;
	margin-top: 2px;
	text-transform: uppercase;
}

div.news-post-share {
    position: absolute;
    right: 1px;
    top: 1px;
}

.news-post-share a {
    display: inline;
    font-size: 17px;
    margin: 0 3px;
}

a.twitter-share {
    color: #469bfc;
}

a.facebook-share {
    color: #3d5b96;
}

.news-post-excerpt {
	margin: 30px 0 50px;
}

.news-post-excerpt p {
    color: #000;
    display: inline;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

a.moretag {
	color: #87153A;
	display: inline;
	font-size: 16px;
	font-weight: 400;
}

a.moretag:hover,
a.moretag:focus {
	color: #FFBA08;
}

.news-item hr {
    margin-bottom: 75px;
}

nav#nav-posts {
    text-align: center;
}

#nav-posts div {
    display: inline-block;
    margin: 0 20px;
}

nav#nav-posts a {
    color: #022B3A;
    font-size: 18px;
    letter-spacing: 1.5px;
}

nav#nav-posts a:hover,
nav#nav-posts a:focus {
	color: #5BB8CE;
}

nav#nav-posts i {
    font-size: 30px;
    position: relative;
    top: 3px;
}

.next i {
    right: 10px;
}

.prev i {
    left: 10px;
}

.next p {
    display: inline-block;
    font-size: 18px;
    letter-spacing: 1.5px;
}

/* Single News Post Styles */
header.single-issue-header.news-post {
	margin: 0 auto;
	max-width: 950px;
	padding: 1px;
	position: relative;
}

header.single-issue-header.news-post h3 {
    margin: 50px auto 10px;
}

header.single-issue-header.news-post h1 {
    line-height: 1;
    margin: 50px auto 0;
    text-align: left;
}

header.single-issue-header.news-post p.news-post-date {
	text-align: left;
}

div.news-post-share.news-post {
    bottom: 25px;
    right: 7%;
	top: auto;
}

div.single-issue-container.news-post {
	margin: 0 auto;
	max-width: 950px;
	padding: 1px 0 100px;
	text-align: left;
}

div.single-issue-container.news-post p {
	font-weight: 400;
	margin: 10px 0;
	max-width: none;
	padding: 0;
	width: auto;
}

/* REPORTS */

.wp-caption {

text-align: center;
margin: 0 auto 20px auto;
}
.wp-caption img {
margin: 0 auto 10px auto!important;
padding: 0;
border: 0 none;
}
.wp-caption .wp-caption-text {
font-size: 12px;
line-height: 17px;
padding: 0 4px 5px;
margin: 0;
}

.wp-video-shortcode {
	margin-bottom: 20px;
}

.article > .__copy > img {
}

/* Volunteer Page Styles */
div#content {
    background: #FFF;
}

section#volunteer {
    max-width: 950px;
    margin: 0 auto;
    padding: 50px 7%;
    text-align: center;
}

section#volunteer h2 {
	color: #12385E;
	font-weight: 500;
}

.volunteer-form #can_embed_form {
	max-width: none;
}

.volunteer-form #can_embed_form input#form-first_name {
    display: block;
	float: left;
	width: 49%;
}

.volunteer-form #can_embed_form input#form-last_name {
    display: block;
	float: right;
	width: 49%;
}

.volunteer-form #can_embed_form input#form-zip_code {
    display: block;
	float: left;
	width: 39%;
}

.volunteer-form #can_embed_form input#phone {
	float: right;
	width: 59%;
}

.volunteer-form #can_embed_form input[type="submit"] {
	width: 100%;
}

@media screen and (max-width: 749px) {
	.volunteer-form #can_embed_form input#form-first_name {
	    display: block;
		float: none;
		width: 100%;
	}

	.volunteer-form #can_embed_form input#form-last_name {
	    display: block;
		float: none;
		width: 100%;
	}

	.volunteer-form #can_embed_form input#form-zip_code {
	    display: block;
		float: none;
		width: 100%;
	}

	.volunteer-form #can_embed_form input#phone {
		float: none;
		width: 100%;
	}
}

li.control-group {
  list-style: none;
}

/*article div.entry-content {
  margin: auto;
  max-width: 950px;
}*/

/* iFrames */
.iframe_container {
	height: 0;
	margin: 30px auto;
	overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.iframe_container iframe {
  height: 100% !important;
  left: 0;
  position: absolute;
  top:0;
  width: 100% !important;
}

article.post,
article.page {
    width: 90%;
    margin: 0 auto;
}

article.category-issue {
	width: 100%;
}


/*
OKAY EVERYTHING AFTER THIS IS LEGITTTT
-----------------------------------------------------------
*/

/* page.php */
.article {

}
.__headline {
	text-align: center;
}
.__headline::after {
	border-bottom: 0.3125rem solid var(--midBlue);
	content: "";
	display: block;
	margin: 2.8125rem auto;
	width: 15.625rem;
}

.__headline h1 {
	color: var(--darkBlue);
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.__headline h3 {
	color: var(--teal);
	font-weight: 400;
	margin: .5rem auto;
	text-transform: uppercase;
}

.__headline p {
	font-size: 1.125rem;
}

.__copy {

}

.__copy h2 {
	color: var(--darkBlue);
	display: inline-block;
	margin: 0;
}

.__copy p {

}

.__copy img {
	display: inline;
	margin: .5rem;
}
.__copy img:nth-of-type(even) {
}

.__copy blockquote {
	/*background-color: rgba(79, 93, 117, .2);*/
	background-color: rgba(244, 162, 97, .2);
	/*border-left: 0.3125rem solid var(--midBlue);*/
	border-left: 0.3125rem solid var(--melon);
	display: block;
	margin: 1.5rem auto;
	max-width: 39rem;
	padding: 1rem;
	position: relative;
}
.__copy blockquote p {
	color: var(--darkBlue);
	font-size: 1.25rem;
	font-style: italic;
	font-weight: 600;
	letter-spacing: 0.03125rem;
	margin: .5rem auto;
}
.__copy blockquote p::before,
.__copy blockquote p::after {
	content: '"';
	margin: .25rem;
}
.__copy blockquote span {
	color: var(--melon);
	font-size: 0.875rem;
	margin: 1rem;
}
.__copy blockquote span::before {
	content: "— ";
}

/* archive.php */
.archives {

}

.archives .__headline {
	padding: 0.0625rem 0;
	position: relative;
}

/**

.archives .__headline::before, .article .__headline::before {
	background-color: rgba(99, 115, 129, .13);
	content: "";
	display: block;
	height: calc(100% + 2.75rem);
	left: calc(50% - 50vw);
	position: absolute;
	top: -2.75rem;
	width: 100vw;
}

**/

.__posts {
	/*align-content: flex-start;*/
	/*align-items: stretch;*/
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 2.75rem;
}

.__posts ._issue {
	/*align-content: center;*/
	align-items: center;
	display: flex;
	flex-direction: row;
	/*flex-wrap: wrap;*/
	font-size: 1.0625rem;
	font-weight: 600;
	height: 5.3125rem;
	justify-content: center;
	line-height: 1.3;
	margin: .5rem 0;
	padding: 0.75rem 2rem;
	width: 100%;
}
@media screen and (min-width: 770px) {
	.__posts ._issue {
		width: calc((100% - 1rem) * .5);
	}
}

.action {
	/*background-color: rgba(99, 115, 129, .13);*/
	background-color: #ebedee;
	padding: 0 4% 2.75rem;
}

.__clipping {
	border-bottom: 0.0625rem solid var(--midBlue);
	padding: 2.5rem 0;
}
.__clipping:last-of-type {
	border: 0;
}

.__clipping h1 {
	/*color: var(--darkBlue);*/
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.1;
	margin: 0;
	text-transform: uppercase;
}
.__clipping h1 a {
	color: var(--darkBlue);
}
.__clipping h1 a:hover,
.__clipping h1 a:focus {
	color: var(--darkBlue);
}

.__clipping h4 {
	color: var(--teal);
	font-size: 0.875rem;
	font-weight: 400;
	margin-bottom: .25rem;
}
.__clipping h4 span {
	font-weight: 600;
}

.__clipping h5 {
	color: #000;
	font-weight: 400;
	margin: 0.25rem 0;
	text-transform: uppercase;
}

.__clipping p {
	margin: 1.5rem 0;
}

.__clipping a._block {
	background-color: var(--midBlue);
	border-radius: 0.125rem;
	color: #FFF;
	display: inline-block;
	font-size: 0.75rem;
	margin: 0;
	padding: .25rem 1rem;
	width: auto;
}
.__clipping a._block:hover,
.__clipping a._block:focus {
	background-color: var(--gold);
}




/* single.php */
.issue {

}

.point {
	background-color: rgba(99, 115, 129, .13);
}
.point:nth-of-type(odd) {
	background-color: #FFF;
}
.point._long {

}
@media screen and (min-width: 770px) {
	.point._short:nth-of-type(even) .__bullet,
	.point._long .__bullet {
		order: 0;
	}
}

.__evidence {
	flex-wrap: wrap;
}

.__bullet {
	order: 1;
	width: 100%;
}
._short .__bullet {
	align-self: center;
}
@media screen and (min-width: 770px) {
	._short .__bullet {
		margin: 1rem 0;
		width: calc((100% - 1rem) * .64);
	}
}

.__bullet h2 {
	color: var(--darkBlue);
	text-transform: uppercase;
}

.__bullet p {

}

@media screen and (min-width: 770px) {
	._columns {
		column-count: 2;
	}
	._columns > *:first-child { margin-top: 0; }
}

.__photo {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 18.75rem;
	margin: 1.5rem auto;
	width: 100%;
}
@media screen and (min-width: 770px) {
	._short .__photo {
		height: auto;
		margin: 0;
		width: calc((100% - 2rem) * .35);
	}
}
.__photo img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.point:nth-of-type(2) .__photo {
	background-image: url(../img/bg-bullet1.jpg);
}
.point:nth-of-type(3) .__photo {
	background-image: url(../img/bg-bullet2.jpg);
}
.point:nth-of-type(4) .__photo {
	background-image: url(../img/bg-bullet3.jpg);
}

.__copy h5 {
	color: var(--midBlue);
  font-weight: 400;
  margin: 0.25rem 0 1.25rem;
  text-transform: uppercase;
	}

._share {
	margin: 2.5rem 0;
	text-align: center;
}

._share a {
	font-size: 1.25rem;
	margin: 0 .75rem;
}
._share a .fa-facebook {
	color: #3b5998;
}
._share a .fa-twitter {
	color: #00aced;
}
._share a:hover .fa-facebook,
._share a:focus .fa-facebook,
._share a:hover .fa-twitter,
._share a:focus .fa-twitter {
	color: var(--gold);
}