/*
Theme Name: earnepi
Theme URI: http://underscores.me/
Author: Beth Soderberg
Author URI: http://bethsoderberg.com
Description: Beth Soderberg's custom base theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: earnepi
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

earnepi is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Base
	* breakpoints
	* colors
	* structure
	* typography
	* reset
	* mixins
	* base
	* alignments
	* clearings
	* accessibility
	* print
# Elements
	* elements
	* tables
* Forms
	* buttons
	* fields
* Media
	* galleries
	* captions
	* embeds
	* icons
# Typography
	* copy
	* headings
	* lists
	* links
# Sections
	* header
	* sidebar
	* footer
	* content-sidebar
	* sidebar-content
* Navigation
	* main-menu
* Widgets
	* widgets
* Posts & Pages
	* comments
	* posts-and-pages
	* home
	* 404

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Theme Colors */
/* bgs */
/* Text */
/* Borders */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-family: "proxima-nova", sans-serif;
  font-size: 10px;
  height: 100%;
}

body {
  font-size: 16px;
  /* 16px default */
  line-height: 24px;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.8rem;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.8rem;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 0.3rem;
  box-shadow: 0 0 0.2rem 0.2rem rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  height: auto;
  left: 0.5rem;
  line-height: normal;
  padding: 1.5rem 2.3rem 1.4rem;
  text-decoration: none;
  top: 0.5rem;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/* element-invisible from http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
.element-invisible,
.element-focusable {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off element-invisible */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom bg color defined. */
}

blockquote, q {
  quotes: "" "";
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

hr {
  background-color: #ccc;
  border: 0;
  height: 0.1rem;
  margin-bottom: 2.4rem;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

table {
  margin: 0 0 2.4rem;
  width: 100%;
}

/* Forms */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 0.1rem solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 0.3rem;
  background: #e6e6e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 1.5rem 1.7rem rgba(255, 255, 255, 0.5), inset 0 -0.5rem 1.2rem rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.2rem;
  line-height: 1;
  padding: 1rem 1.6rem 0.5rem;
  text-shadow: 0 0.1rem 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 1.5rem 1.7rem rgba(255, 255, 255, 0.8), inset 0 -0.5rem 1.2rem rgba(0, 0, 0, 0.02);
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
  box-shadow: inset 0 -0.1rem 0 rgba(255, 255, 255, 0.5), inset 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 0.1rem solid #ccc;
  border-radius: 0.3rem;
  padding: 0.3rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 0.1rem solid #ccc;
}

textarea {
  width: 100%;
}

.post-type-archive-publications input[type="text"],
.post-type-archive-publications input[type="email"],
.post-type-archive-publications input[type="url"],
.post-type-archive-publications input[type="password"],
.post-type-archive-publications input[type="search"],
.post-type-archive-publications input[type="number"],
.post-type-archive-publications input[type="tel"],
.post-type-archive-publications input[type="range"],
.post-type-archive-publications input[type="date"],
.post-type-archive-publications input[type="month"],
.post-type-archive-publications input[type="week"],
.post-type-archive-publications input[type="time"],
.post-type-archive-publications input[type="datetime"],
.post-type-archive-publications input[type="datetime-local"],
.post-type-archive-publications input[type="color"],
.post-type-archive-publications textarea {
  border: none;
  border-radius: 0.8rem;
  color: #3d4349;
  padding: 1.2rem 1.6rem 1rem;
}

.post-type-archive-publications select {
  border: none;
  border-radius: 0.8rem;
  padding: 1.2rem 1.6rem 1rem;
}

/* Media */
.gallery {
  margin-bottom: 2.4rem;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

.wp-caption {
  margin-bottom: 1.8rem;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 1.4rem 0;
}

.wp-caption-text {
  text-align: center;
}

/* Ensure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #3d4349;
  font-family: "proxima-nova", sans-serif;
  line-height: 1.92rem;
  font-size: 1.6rem;
}

p {
  margin-bottom: 1.8rem;
}

dfn, cite, em, i {
  font-style: italic;
}

strong, b {
  font-weight: bold;
}

blockquote {
  margin: 0 2.4rem;
  color: #057398;
  font-family: "BrandonTextWeb-Bold";
  font-size: 2.8rem;
  line-height: 3.4rem;
}

address {
  margin: 0 0 2.4rem;
}

pre {
  bg: #eee;
  font-family: "Courier New", monospace, sans-serif;
  line-height: 24px;
  margin-bottom: 2.6rem;
  max-width: 100%;
  overflow: auto;
  padding: 2.6rem;
}

code, kbd, tt, var {
  font-family: "Courier New", monospace, sans-serif;
}

abbr, acronym {
  border-bottom: 0.1rem dotted #666;
  cursor: help;
}

mark, ins {
  bg: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-family: "BrandonTextWeb-Bold";
  color: #057398;
}

h1 {
  font-size: 3.4rem;
  line-height: 4rem;
  margin-bottom: 1.4rem;
}

.single-members h1 {
  font-size: 3.4rem;
  line-height: 4rem;
  display: inline;
}

h2,
h3 {
  font-size: 2.3rem;
  line-height: 2.6rem;
}

h3 {
  font-family: "BrandonTextWeb-Regular";
}

h4 {
  font-size: 2rem;
  line-height: 2.4rem;
}

h5 {
  text-transform: uppercase;
}

h5,
h6 {
  font-size: 1.6rem;
  line-height: 1.92rem;
}

ul, ol {
  margin: 0 0 2.4rem 4.8rem;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 2.4rem;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 2.4rem 2.4rem;
}

a {
  color: #ef5a44;
}

a:visited {
  color: #ef5a44;
}

a:hover, a:focus, a:active {
  color: #d14f3b;
}

a:focus {
  outline: none;
}

a:hover, a:active {
  outline: 0;
}

div:focus,
button:focus {
  outline: none;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
.site-header {
  background: #ececed;
  margin-bottom: 4.5rem;
}

.site-header .header-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 2.8rem 0 2.9rem;
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1029px) {
  .site-header .header-wrap {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .site-header .header-wrap {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .site-header .header-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (max-width: 904px) {
  .site-header .header-wrap {
    padding: 0.8rem 6rem 0.9rem;
  }
}

@media screen and (max-width: 540px) {
  .site-header .header-wrap {
    padding: 0.8rem 4rem 0.9rem;
  }
}

@media screen and (max-width: 450px) {
  .site-header .header-wrap {
    padding: 0.8rem 3rem 0.9rem;
  }
}

@media screen and (max-width: 945px) {
  .site-header .site-title svg {
    width: 85px;
  }
}

.cta-wrap {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
  display: -webkit-flex;
  display: flex;
  color: #ffffff;
  padding-right: 0;
}

@media screen and (max-width: 1029px) {
  .cta-wrap {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .cta-wrap {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .cta-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (max-width: 840px) {
  .cta-wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 0;
    padding-left: 0;
  }
}

.cta-wrap a {
  color: #ffffff;
  text-decoration: none;
}

.cta-wrap header {
  padding: 3.4rem 0 2.6rem;
}

.cta-wrap header h3,
.cta-wrap header h4 {
  font-size: 3.2rem;
  line-height: 3.84rem;
  margin-right: 10rem;
  color: #ffffff;
  font-family: "BrandonTextWeb-Bold";
}

@media screen and (max-width: 920px) {
  .cta-wrap header h3,
  .cta-wrap header h4 {
    margin-right: 4rem;
  }
}

@media screen and (max-width: 840px) {
  .cta-wrap header h3,
  .cta-wrap header h4 {
    padding-right: 6rem;
    padding-left: 6rem;
    text-align: center;
  }
}

@media screen and (max-width: 540px) {
  .cta-wrap header h3,
  .cta-wrap header h4 {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .cta-wrap header h3,
  .cta-wrap header h4 {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.cta-wrap header h3 {
  font-family: "BrandonTextWeb-Bold";
  min-width: 22rem;
}

.cta-wrap header h4 {
  font-family: "BrandonTextWeb-Regular";
}

@media screen and (max-width: 840px) {
  .cta-wrap header {
    width: 100%;
  }
}

.cta-wrap .cta-content {
  font-size: 1.7rem;
  line-height: 2.04rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 2rem 4.5rem;
}

.cta-wrap .cta-content p:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  .cta-wrap .cta-content {
    padding-right: 6rem;
    padding-left: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .cta-wrap .cta-content {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .cta-wrap .cta-content {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.cta-wrap .cta-action {
  font-size: 2.2rem;
  font-family: "BrandonTextWeb-Bold";
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 17.5rem;
  padding: 1rem;
  margin: 2rem 0;
}

.cta-wrap .cta-action a:after {
  content: "\f061";
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  font-size: 1.4rem;
  margin-left: 0.6rem;
}

@media screen and (max-width: 840px) {
  .cta-wrap .cta-action {
    width: 100%;
    margin: 0 6rem;
    padding: 2rem 0;
  }
}

@media screen and (max-width: 540px) {
  .cta-wrap .cta-action {
    margin: 0 4rem;
  }
}

@media screen and (max-width: 450px) {
  .cta-wrap .cta-action {
    margin: 0 3rem;
  }
}

.cta.blue {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#036181+0,036181+50,057398+51,057398+100 */
  background: #036181;
  /* Old browsers */
  background: -moz-linear-gradient(left, #036181 0%, #036181 50%, #057398 51%, #057398 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #036181 0%, #036181 50%, #057398 51%, #057398 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #036181 0%, #036181 50%, #057398 51%, #057398 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#036181', endColorstr='#057398',GradientType=1 );
  /* IE6-9 */
}

@media screen and (max-width: 840px) {
  .cta.blue {
    background: #057398;
  }
}

.cta.blue .cta-wrap header {
  background: #036181;
}

.cta.blue .cta-content {
  background: #057398;
}

.cta.blue .cta-action {
  background: url("/wp-content/themes/earnepi/images/blue-dot.png");
  background-position: left center;
  background-repeat: repeat-y;
}

@media screen and (max-width: 840px) {
  .cta.blue .cta-action {
    margin-right: 6rem;
    margin-left: 6rem;
    background: url("/wp-content/themes/earnepi/images/blue-dot-x.png");
    background-position: top center;
    background-repeat: repeat-x;
  }
}

@media screen and (max-width: 540px) {
  .cta.blue .cta-action {
    margin-right: 4rem;
    margin-left: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .cta.blue .cta-action {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}

.cta.orange {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d14f3b+0,d14f3b+49,ef5a44+50,ef5a44+100 */
  background: #d14f3b;
  /* Old browsers */
  background: -moz-linear-gradient(left, #d14f3b 0%, #d14f3b 49%, #ef5a44 50%, #ef5a44 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #d14f3b 0%, #d14f3b 49%, #ef5a44 50%, #ef5a44 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #d14f3b 0%, #d14f3b 49%, #ef5a44 50%, #ef5a44 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d14f3b', endColorstr='#ef5a44',GradientType=1 );
  /* IE6-9 */
}

@media screen and (max-width: 840px) {
  .cta.orange {
    background: #ef5a44;
  }
}

.cta.orange .cta-wrap header {
  background: #d14f3b;
}

.cta.orange .cta-content {
  background: #ef5a44;
}

.cta.orange .cta-action {
  background: url("/wp-content/themes/earnepi/images/orange-dot.png");
  background-position: left center;
  background-repeat: repeat-y;
}

@media screen and (max-width: 840px) {
  .cta.orange .cta-action {
    margin-right: 6rem;
    margin-left: 6rem;
    background: url("/wp-content/themes/earnepi/images/orange-dot-x.png");
    background-position: top center;
    background-repeat: repeat-x;
  }
}

@media screen and (max-width: 540px) {
  .cta.orange .cta-action {
    margin-right: 4rem;
    margin-left: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .cta.orange .cta-action {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}

.site-footer {
  background: #ececed;
  padding: 5.5rem 0 7.5rem;
}

.site-footer p {
  color: #3d4349;
}

.site-footer h2 {
  color: #3d4349;
}

.site-footer .site-info {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
  padding: 0 10rem;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 1029px) {
  .site-footer .site-info {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .site-footer .site-info {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .site-footer .site-info {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (max-width: 639px) {
  .site-footer .site-info {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.site-footer .site-info .earn-details {
  padding-right: 27.5rem;
  max-width: 76.5rem;
}

@media screen and (max-width: 959px) {
  .site-footer .site-info .earn-details {
    padding-right: 13.5rem;
  }
}

@media screen and (max-width: 750px) {
  .site-footer .site-info .earn-details {
    padding-right: 6.5rem;
  }
}

@media screen and (max-width: 639px) {
  .site-footer .site-info .earn-details {
    width: 100%;
    padding-right: initial;
    -webkit-order: 2;
    order: 2;
  }
}

.site-footer .site-info .earn-details h2 {
  font-size: 1.9rem;
  margin-bottom: 3rem;
}

.site-footer .site-info .earn-details p {
  font-size: 1.4rem;
  line-height: 1.68rem;
  margin-bottom: 3.4rem;
}

.site-footer .sign-up h2 {
  display: none;
}

.site-footer .sign-up #text-4 h2 {
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.site-footer .sign-up p {
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #9aa5ae;
}

@media screen and (max-width: 639px) {
  .site-footer .sign-up {
    width: 100%;
    -webkit-order: 1;
    order: 1;
  }
}

.site-footer form#search-form input[type="search"] {
  background: transparent;
  color: #9aa5ae;
  border-bottom: 0.2rem solid #9aa5ae;
  border-top: none;
  border-right: none;
  border-left: none;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0.4rem;
  font-size: 2.2rem;
  width: 100%;
  margin-bottom: 3rem;
}

.site-footer form#search-form input[type="search"]:focus {
  outline: none;
}

.site-footer form#search-form input#search-submit {
  background: #9aa5ae;
  color: #ffffff;
  border: none;
  border-radius: 0.8rem;
  box-shadow: none;
  text-shadow: none;
  font-size: 2.2rem;
  font-family: "BrandonTextWeb-Bold";
  transition: all 0.2s ease 0s;
  padding: 2.1rem 6.9rem 1.7rem;
  margin-bottom: 3rem;
}

.site-footer section#text-4 button.yikes-easy-mc-submit-button {
  background: #9aa5ae;
  color: #ffffff;
  border: none;
  border-radius: 0.8rem;
  box-shadow: none;
  text-shadow: none;
  font-size: 2.2rem;
  font-family: "BrandonTextWeb-Bold";
  transition: all 0.2s ease 0s;
}

.site-footer section#text-4 button.yikes-easy-mc-submit-button:hover {
  transition: all 0.2s ease 0s;
  background: #7a7f84;
}

.site-footer section#text-4 .yikes-easy-mc-form .yikes-easy-mc-submit-button {
  display: inline-block;
  width: auto;
  padding: 0;
}

.site-footer section#text-4 .yikes-easy-mc-form .yikes-easy-mc-submit-button span.yikes-mailchimp-submit-button-span-text {
  padding: 2.1rem 6.9rem 1.7rem;
  display: inline-block;
}

.site-footer section#text-4 .yikes-easy-mc-form input[type="text"], .site-footer section#text-4 .yikes-easy-mc-form input[type="url"], .site-footer section#text-4 .yikes-easy-mc-form input[type="email"], .site-footer section#text-4 .yikes-easy-mc-form input[type="number"], .site-footer section#text-4 .yikes-easy-mc-form select {
  background: transparent;
  color: #9aa5ae;
  border-bottom: 0.2rem solid #9aa5ae;
  border-top: none;
  border-right: none;
  border-left: none;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0.4rem;
  font-size: 2.2rem;
}

.site-footer section#text-4 .yikes-easy-mc-form input[type="text"]:focus, .site-footer section#text-4 .yikes-easy-mc-form input[type="url"]:focus, .site-footer section#text-4 .yikes-easy-mc-form input[type="email"]:focus, .site-footer section#text-4 .yikes-easy-mc-form input[type="number"]:focus, .site-footer section#text-4 .yikes-easy-mc-form select:focus {
  outline: transparent;
}

ul#footer-menu {
  list-style: none;
  margin: 0;
}

ul#footer-menu li {
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
}

ul#footer-menu li a {
  color: transparent;
  width: 2.3rem;
  display: block;
}

ul#footer-menu li a:before {
  color: #3d4349;
  font-size: 2.6rem;
  transition: all 0.2s ease 0s;
}

ul#footer-menu li a:hover:before {
  color: #7a7f84;
  transition: all 0.2s ease 0s;
}

ul#footer-menu li.twitter a:before {
  content: "\f099";
}

ul#footer-menu li.facebook a:before {
  content: "\f230";
}

/* Navigation */
.main-navigation {
  clear: both;
  display: block;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  box-shadow: 0 0.3rem 0.3rem rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 2.4rem;
  left: -999rem;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999rem;
  top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}

.main-navigation ul ul a {
  width: 20rem;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation li {
  float: left;
  position: relative;
  margin-left: 2.2rem;
}

@media screen and (max-width: 1050px) {
  .main-navigation li {
    margin-left: 1.8rem;
  }
}

.main-navigation li.first-of-type {
  margin-left: 0;
}

.main-navigation a {
  display: block;
  text-decoration: none;
  color: #057398;
  font-family: "BrandonTextWeb-Bold";
  font-size: 1.7rem;
}

.main-navigation li.member-resources {
  margin-left: 1.4rem;
}

.main-navigation li.member-resources a {
  color: #9aa5ae;
}

.main-navigation li.member-resources a:before {
  content: "\f111";
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  font-size: 0.5rem;
  vertical-align: middle;
  margin-right: 1.4rem;
}

@media screen and (max-width: 905px) {
  .main-navigation li.member-resources a:before {
    display: none;
  }
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 905px) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
  margin: 0 0 2.4rem;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.hamburger {
  background-color: transparent;
  border: 0 none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  margin: 0;
  overflow: visible;
  text-transform: none;
  transition-duration: 0.15s;
  transition-property: opacity, filter, -webkit-filter;
  transition-timing-function: linear;
  float: right;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  display: inline-block;
  height: 24px;
  position: relative;
  width: 2.7rem;
}

.hamburger-inner {
  display: block;
  top: 50%;
}

.hamburger-inner:after, .hamburger-inner:before {
  content: "";
  display: block;
}

.hamburger-inner:after {
  bottom: -0.8rem;
}

.hamburger-inner:before {
  top: -0.8rem;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
  background-color: #057398;
  border-radius: 0.3rem;
  height: 0.3rem;
  position: absolute;
  transition-duration: 0.15s;
  transition-property: transform, -webkit-transform;
  transition-timing-function: ease;
  width: 2.7rem;
}

.hamburger-inner::after,
.hamburger-inner::before {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -0.8rem;
}

.hamburger-inner::after {
  bottom: -0.8rem;
}

.hamburger-squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-squeeze .hamburger-inner:before {
  transition: top 0.1s ease 0.14s, opacity 0.1s ease 0s;
}

.hamburger-squeeze .hamburger-inner:after {
  transition: bottom 0.1s ease 0.14s, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.main-navigation.toggled .hamburger-squeeze .hamburger-inner {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main-navigation.toggled .hamburger-squeeze .hamburger-inner::before {
  opacity: 0;
  top: 0;
  transition: top 0.1s ease 0s, opacity 0.1s ease 0.14s;
}

.main-navigation.toggled .hamburger-squeeze .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: bottom 0.1s ease 0s, transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s, -webkit-transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
}

button.menu-toggle {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: none;
  padding: 0;
  text-shadow: none;
}

.main-navigation.toggled .menu-main-menu-container {
  display: block;
  clear: both;
  position: absolute;
  z-index: 4;
  top: 8rem;
  right: 0;
  width: 100%;
  padding-bottom: 1rem;
  padding-top: 0;
  background: #ececed none repeat scroll 0 0;
}

.main-navigation.toggled li {
  display: block;
  width: 100%;
  margin: 0;
  border-left: none;
}

.main-navigation.toggled li a {
  margin: 0 6rem;
  border-bottom: 1px solid #b2c5d8;
  padding: 0.8rem 0;
}

.main-navigation.toggled li:last-of-type a {
  border-bottom: none;
}

.page-numbers {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 2px 0 0;
  border: 1px solid #eee;
  line-height: 1;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 600;
}

.page-numbers.current,
a.page-numbers:hover {
  background: #f9f9f9;
}

/* Widgets */
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}

.widget select {
  max-width: 100%;
}

/* Global */
.jBox-wrapper {
  text-align: left;
  box-sizing: border-box;
}

.jBox-title,
.jBox-content,
.jBox-container {
  position: relative;
  word-break: break-word;
  box-sizing: border-box;
}

.jBox-container {
  background: #fff;
}

.jBox-content {
  padding: 8px 10px;
  overflow-x: hidden;
  overflow-y: auto;
  transition: opacity .2s;
}

/* jBox Tooltip */
.jBox-Tooltip .jBox-container,
.jBox-Mouse .jBox-container {
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}

.jBox-Tooltip .jBox-title,
.jBox-Mouse .jBox-title {
  padding: 8px 10px 0;
  font-weight: bold;
}

.jBox-hasTitle.jBox-Tooltip .jBox-content,
.jBox-hasTitle.jBox-Mouse .jBox-content {
  padding-top: 5px;
}

.jBox-Mouse {
  pointer-events: none;
}

/* Pointer */
.jBox-pointer {
  position: absolute;
  overflow: hidden;
}

.jBox-pointer-top {
  top: 0;
}

.jBox-pointer-bottom {
  bottom: 0;
}

.jBox-pointer-left {
  left: 0;
}

.jBox-pointer-right {
  right: 0;
}

.jBox-pointer-top,
.jBox-pointer-bottom {
  width: 30px;
  height: 12px;
}

.jBox-pointer-left,
.jBox-pointer-right {
  width: 12px;
  height: 30px;
}

.jBox-pointer:after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background: #fff;
  transform: rotate(45deg);
}

.jBox-pointer-top:after {
  left: 5px;
  top: 6px;
  box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.15);
}

.jBox-pointer-right:after {
  top: 5px;
  right: 6px;
  box-shadow: 1px -1px 2px rgba(0, 0, 0, 0.15);
}

.jBox-pointer-bottom:after {
  left: 5px;
  bottom: 6px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.jBox-pointer-left:after {
  top: 5px;
  left: 6px;
  box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.15);
}

/* jBox Modal */
.jBox-Modal .jBox-container {
  border-radius: 4px;
}

.jBox-Modal .jBox-content {
  padding: 15px 20px;
}

.jBox-Modal .jBox-title {
  border-radius: 4px 4px 0 0;
  padding: 15px 20px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.jBox-Modal .jBox-footer {
  border-radius: 0 0 4px 4px;
}

.jBox-Modal.jBox-closeButton-title .jBox-title {
  padding-right: 55px;
}

.jBox-Modal .jBox-container,
.jBox-Modal.jBox-closeButton-box:before {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4);
}

/* Close button */
.jBox-closeButton {
  cursor: pointer;
  position: absolute;
}

.jBox-closeButton svg {
  position: absolute;
  top: 50%;
  right: 50%;
}

.jBox-closeButton path {
  transition: fill .2s;
}

.jBox-closeButton path {
  fill: #057398;
}

.jBox-closeButton:hover path {
  fill: #888;
}

.jBox-closeButton:active path {
  fill: #666;
}

/* Close button in overlay */
.jBox-overlay .jBox-closeButton {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
}

.jBox-overlay .jBox-closeButton svg {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-right: -10px;
}

.jBox-overlay .jBox-closeButton path,
.jBox-overlay .jBox-closeButton:active path {
  fill: #ddd;
}

.jBox-overlay .jBox-closeButton:hover path {
  fill: #fff;
}

/* Close button in title */
.jBox-closeButton-title .jBox-closeButton {
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
}

.jBox-closeButton-title .jBox-closeButton svg {
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-right: -6px;
}

/* Close button in box */
.jBox-closeButton-box .jBox-closeButton {
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
}

.jBox-closeButton-box .jBox-closeButton svg {
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-right: -5px;
}

.jBox-hasTitle.jBox-Modal.jBox-closeButton-box .jBox-closeButton {
  background: #fafafa;
}

.jBox-pointerPosition-top.jBox-closeButton-box:before {
  top: 5px;
}

.jBox-pointerPosition-right.jBox-closeButton-box:before {
  right: 2px;
}

/* Overlay */
.jBox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.82);
}

/* Footer */
.jBox-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 8px 10px;
  border-radius: 0 0 3px 3px;
}

/* Block scrolling */
body[class^="jBox-blockScroll-"],
body[class*=" jBox-blockScroll-"] {
  overflow: hidden;
}

/* Draggable */
.jBox-draggable {
  cursor: move;
}

/* Spinner */
@keyframes jBoxLoading {
  to {
    transform: rotate(360deg);
  }
}

.jBox-loading .jBox-content {
  opacity: .2;
}

.jBox-loading-spinner .jBox-content {
  min-height: 38px !important;
  min-width: 38px !important;
  opacity: 0;
}

.jBox-spinner {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
}

.jBox-spinner:before {
  display: block;
  box-sizing: border-box;
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.8);
  animation: jBoxLoading .6s linear infinite;
}

/* Animations */
[class^="jBox-animated-"],
[class*=" jBox-animated-"] {
  animation-fill-mode: both;
}

@keyframes jBox-tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.8) rotate(-4deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.2) rotate(4deg);
  }
  40%, 60%, 80% {
    transform: scale(1.2) rotate(-4deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

.jBox-animated-tada {
  animation: jBox-tada 1s;
}

@keyframes jBox-tadaSmall {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-2deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(2deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-2deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

.jBox-animated-tadaSmall {
  animation: jBox-tadaSmall 1s;
}

@keyframes jBox-flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.jBox-animated-flash {
  animation: jBox-flash .5s;
}

@keyframes jBox-shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-6px);
  }
  40%, 80% {
    transform: translateX(6px);
  }
}

.jBox-animated-shake {
  animation: jBox-shake .4s;
}

@keyframes jBox-pulseUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.jBox-animated-pulseUp {
  animation: jBox-pulseUp .25s;
}

@keyframes jBox-pulseDown {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}

.jBox-animated-pulseDown {
  animation: jBox-pulseDown .25s;
}

@keyframes jBox-popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.jBox-animated-popIn {
  animation: jBox-popIn .25s;
}

@keyframes jBox-popOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0);
  }
}

.jBox-animated-popOut {
  animation: jBox-popOut .25s;
}

@keyframes jBox-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.jBox-animated-fadeIn {
  animation: jBox-fadeIn .2s;
}

@keyframes jBox-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.jBox-animated-fadeOut {
  animation: jBox-fadeOut .2s;
}

@keyframes jBox-slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-300px);
    opacity: 0;
  }
}

.jBox-animated-slideUp {
  animation: jBox-slideUp .4s;
}

@keyframes jBox-slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(300px);
    opacity: 0;
  }
}

.jBox-animated-slideRight {
  animation: jBox-slideRight .4s;
}

@keyframes jBox-slideDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(300px);
    opacity: 0;
  }
}

.jBox-animated-slideDown {
  animation: jBox-slideDown .4s;
}

@keyframes jBox-slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300px);
    opacity: 0;
  }
}

.jBox-animated-slideLeft {
  animation: jBox-slideLeft .4s;
}

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

.jBox-countdown {
  border-radius: 3px 3px 0 0;
  z-index: 0;
  background: #000;
  opacity: .2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.jBox-countdown_inner {
  border-radius: 3px 3px 0 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  position: absolute;
  background: #fff;
}

/* Posts & Pages */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.sticky {
  display: block;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.page-content,
.entry-content {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
  padding: 0 10rem;
}

@media screen and (max-width: 1029px) {
  .page-content,
  .entry-content {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .page-content,
  .entry-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .page-content,
  .entry-content {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

header.page-header {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1029px) {
  header.page-header {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  header.page-header {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  header.page-header {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.hentry,
.page-content {
  margin: 0 auto 7.6rem;
}

.single-members .hentry,
.home .hentry {
  margin: 0;
}

.home .entry-content {
  max-width: 107rem;
  margin: 0 auto;
  background: url("/wp-content/themes/earnepi/images/map-lines.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  padding-right: initial;
  padding-left: initial;
}

.home .entry-content .hero-wrap {
  max-width: 100rem;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1270px) {
  .home .entry-content {
    margin: 0 9rem;
  }
}

@media screen and (max-width: 1029px) {
  .home .entry-content {
    margin: 0 6rem;
  }
}

@media screen and (max-width: 540px) {
  .home .entry-content {
    margin: 0 4rem;
  }
}

@media screen and (max-width: 450px) {
  .home .entry-content {
    margin: 0 3rem;
  }
}

.home .hero {
  font-size: 3.4rem;
  line-height: 1.2;
  color: #057398;
  width: 68%;
  max-width: 66rem;
  font-family: "BrandonTextWeb-Regular";
}

@media screen and (max-width: 767px) {
  .home .hero {
    max-width: auto;
    width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .home .hero {
    font-size: 2.75rem;
  }
}

.home .hero b {
  font-family: "BrandonTextWeb-Bold";
}

.home .hero p {
  margin-bottom: 3rem;
  padding-right: 3rem;
}

@media screen and (max-width: 767px) {
  .home .hero p {
    padding-right: 0;
  }
}

.home .hero a.take-action {
  font-size: 2.2rem;
  font-family: "BrandonTextWeb-Bold";
  text-decoration: none;
  background: #ef5a44;
  color: #ffffff;
  border-radius: 0.8rem;
  display: inline-block;
  transition: all 0.2s ease 0s;
  line-height: 1;
  padding: 2.1rem 6.9rem 1.7rem;
  margin-bottom: 13rem;
}

.home .hero a.take-action:hover {
  transition: all 0.2s ease 0s;
  background: #d14f3b;
}

@media screen and (max-width: 767px) {
  .home .hero a.take-action {
    margin-bottom: 4.5rem;
  }
}

.home .sign-up-hero {
  width: 32%;
  max-width: 23.5rem;
  margin-top: 0.7rem;
}

@media screen and (max-width: 767px) {
  .home .sign-up-hero {
    max-width: initial;
    width: 100%;
  }
}

.home .sign-up-hero .textwidget {
  color: #9aa5ae;
}

.home .sign-up-hero section#text-4 h2 {
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.home .sign-up-hero section#text-4 button.yikes-easy-mc-submit-button {
  background: #057398;
  color: #ffffff;
  border: none;
  border-radius: 0.8rem;
  box-shadow: none;
  text-shadow: none;
  font-size: 2.2rem;
  font-family: "BrandonTextWeb-Bold";
  padding: 2.1rem 6.9rem 1.7rem;
  transition: all 0.2s ease 0s;
}

.home .sign-up-hero section#text-4 button.yikes-easy-mc-submit-button:hover {
  transition: all 0.2s ease 0s;
  background: #036181;
}

.home .sign-up-hero section#text-4 .yikes-easy-mc-form .yikes-easy-mc-submit-button {
  display: inline-block;
  width: auto;
}

.home .sign-up-hero section#text-4 .yikes-easy-mc-form input[type="text"], .home .sign-up-hero section#text-4 .yikes-easy-mc-form input[type="url"], .home .sign-up-hero section#text-4 .yikes-easy-mc-form input[type="email"], .home .sign-up-hero section#text-4 .yikes-easy-mc-form input[type="number"], .home .sign-up-hero section#text-4 .yikes-easy-mc-form select {
  background: transparent;
  color: #9aa5ae;
  border-bottom: 0.2rem solid #9aa5ae;
  border-top: none;
  border-right: none;
  border-left: none;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0.4rem;
  font-size: 2.2rem;
}

.home .sign-up-hero section#text-4 .yikes-easy-mc-form input[type="text"]:focus, .home .sign-up-hero section#text-4 .yikes-easy-mc-form input[type="url"]:focus, .home .sign-up-hero section#text-4 .yikes-easy-mc-form input[type="email"]:focus, .home .sign-up-hero section#text-4 .yikes-easy-mc-form input[type="number"]:focus, .home .sign-up-hero section#text-4 .yikes-easy-mc-form select:focus {
  outline: transparent;
}

.home .sign-up-hero section#text-4 .yikes-mailchimp-container {
  margin-top: 1rem;
}

.home .home-feeds {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e9e7df+0,e9e7df+50,057398+51,057398+100 */
  background: #e9e7df;
  /* Old browsers */
  background: -moz-linear-gradient(left, #e9e7df 0%, #e9e7df 50%, #057398 51%, #057398 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e9e7df 0%, #e9e7df 50%, #057398 51%, #057398 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #e9e7df 0%, #e9e7df 50%, #057398 51%, #057398 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9e7df', endColorstr='#057398',GradientType=1 );
  /* IE6-9 */
}

.home .home-feeds-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 979px) {
  .home .home-feeds-wrap {
    display: block;
  }
}

.home .home-feeds-wrap h2 {
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.home .home-dynamic-content {
  background: #e9e7df;
  width: 56.25%;
}

@media screen and (max-width: 979px) {
  .home .home-dynamic-content {
    width: 100%;
  }
}

.home .home-dynamic-content .promo-container {
  background: #dddbd4;
  padding: 4rem 8.5rem 4rem 10rem;
  position: relative;
  font-family: "BrandonTextWeb-Regular";
}

@media screen and (max-width: 1029px) {
  .home .home-dynamic-content .promo-container {
    padding: 4rem 8.5rem 4rem 6rem;
  }
}

@media screen and (max-width: 540px) {
  .home .home-dynamic-content .promo-container {
    padding: 4rem 4.5rem 4rem 4rem;
  }
}

@media screen and (max-width: 450px) {
  .home .home-dynamic-content .promo-container {
    padding: 4rem 3.5rem 4rem 3rem;
  }
}

.home .home-dynamic-content .promo-container span.bg-shim {
  width: 1000%;
  background: #dddbd4;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.home .home-dynamic-content .promo-container span.icon {
  color: #ffffff;
  background: #057398;
  border-radius: 50%;
  font-size: 2.8rem;
  display: inline-block;
  width: 4.2rem;
  height: 4.2rem;
  text-align: center;
  line-height: 5rem;
  position: absolute;
  left: 4.2rem;
  top: 8.8rem;
}

@media screen and (max-width: 1029px) {
  .home .home-dynamic-content .promo-container span.icon {
    left: 1.2rem;
  }
}

@media screen and (max-width: 540px) {
  .home .home-dynamic-content .promo-container span.icon {
    display: none;
  }
}

.home .home-dynamic-content .promo-container .promo-content {
  position: relative;
  z-index: 100;
}

.home .home-dynamic-content .promo-container h3 {
  font-size: 3.2rem;
  line-height: 3.84rem;
  margin-bottom: 1rem;
}

.home .home-dynamic-content .promo-container a.cta-link {
  font-family: "BrandonTextWeb-Bold";
  font-size: 2.2rem;
  color: #3d4349;
  text-decoration: none;
}

.home .home-dynamic-content .promo-container a.cta-link:after {
  content: "\f061";
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  font-size: 1.4rem;
  margin-left: 0.6rem;
}

.home .home-dynamic-content .publications {
  padding: 4rem 8.5rem 6rem 10rem;
}

@media screen and (max-width: 1029px) {
  .home .home-dynamic-content .publications {
    padding: 4rem 8.5rem 6rem 6rem;
  }
}

@media screen and (max-width: 540px) {
  .home .home-dynamic-content .publications {
    padding: 4rem 4.5rem 6rem 4rem;
  }
}

@media screen and (max-width: 450px) {
  .home .home-dynamic-content .publications {
    padding: 4rem 3.5rem 6rem 3rem;
  }
}

.home .home-dynamic-content .publications span.state {
  position: absolute;
  float: none;
  left: -6rem;
  top: -1rem;
}

@media screen and (max-width: 1029px) {
  .home .home-dynamic-content .publications span.state {
    left: -5rem;
  }
}

@media screen and (max-width: 540px) {
  .home .home-dynamic-content .publications span.state {
    display: none;
  }
}

.home .home-dynamic-content .publications span.state a {
  color: #ffffff;
  background: #ef5a44;
  font-weight: 700;
  border-radius: 50%;
  text-decoration: none;
  font-family: "BrandonTextWeb-Bold";
  font-size: 1.6rem;
  letter-spacing: 1px;
  padding-bottom: 0.5rem;
  text-align: center;
  display: block;
  height: 4.3rem;
  padding-top: 1.4rem;
  padding-left: 0.1rem;
  width: 4.3rem;
  transition: all 0.2s ease 0s;
  border-bottom: none;
}

.home .home-dynamic-content .publications span.state a:hover {
  transition: all 0.2s ease 0s;
  background: #d14f3b;
}

.home .home-dynamic-content .publications span.publication-type a {
  font-size: 1.6rem;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  font-family: "BrandonTextWeb-Bold";
  text-decoration: none;
  padding: 0.5rem 0.8rem 0.1rem;
  background: #ffffff;
  color: #3d4349;
}

.home .home-dynamic-content .publications h2 {
  color: #7a7f84;
}

.home .home-dynamic-content .publications h3 {
  font-family: "BrandonTextWeb-Regular";
  font-size: 2.3rem;
  line-height: 2.76rem;
  margin-bottom: 1.2rem;
  display: inline;
}

.home .home-dynamic-content .publications h3 a {
  border-bottom: 0.2rem solid #ffffff;
  color: #3d4349;
  font-family: "BrandonTextWeb-Bold";
  text-decoration: none;
}

.home .home-dynamic-content .publications ul {
  margin: 0;
}

.home .home-dynamic-content .publications ul li {
  list-style: none;
  position: relative;
}

.home .home-dynamic-content .publications ul li ul li:after {
  content: '·';
  margin: 0 0.5rem;
  font-family: "BrandonTextWeb-Bold";
}

.home .home-dynamic-content .publications ul li ul li:last-of-type:after {
  content: none;
}

.home .home-dynamic-content .publications ul.pub-details {
  margin-bottom: 1.8rem;
  font-size: 1.4rem;
}

.home .home-dynamic-content .publications ul.pub-details li {
  display: inline;
}

.home .home-dynamic-content .publications ul.pub-details a {
  font-weight: bold;
  text-decoration: none;
  color: #3d4349;
}

.home .home-dynamic-content .publications .issue-areas {
  font-size: 1.4rem;
  margin-bottom: 4.2rem;
}

.home .home-dynamic-content .publications .issue-areas a {
  color: #3d4349;
  text-decoration: none;
}

.home .home-dynamic-content .publications .issue-areas a:after {
  content: '·';
  margin: 0 0.2rem 0 0.5rem;
  font-family: "BrandonTextWeb-Bold";
}

.home .home-dynamic-content .publications .issue-areas a:last-of-type:after {
  content: none;
}

.home .home-dynamic-content .publications a.all-pubs {
  font-size: 2.2rem;
  font-family: "BrandonTextWeb-Bold";
  text-decoration: none;
  background: #ef5a44;
  color: #ffffff;
  border-radius: 0.8rem;
  display: inline-block;
  transition: all 0.2s ease 0s;
  padding: 2.1rem 6rem 1.7rem;
}

.home .home-dynamic-content .publications a.all-pubs:hover {
  transition: all 0.2s ease 0s;
  background: #d14f3b;
}

.home .twitter-feed {
  background: #057398;
}

@media screen and (max-width: 1200px) {
  .home .twitter-feed {
    padding: 0 10rem 0 0;
    width: 43.75%;
  }
}

@media screen and (max-width: 1029px) {
  .home .twitter-feed {
    padding: 0 6rem 0 0;
  }
}

@media screen and (max-width: 979px) {
  .home .twitter-feed {
    width: 100%;
    padding: 0 6rem 6rem 0;
  }
}

@media screen and (max-width: 540px) {
  .home .twitter-feed {
    padding: 0 4rem 6rem 0;
  }
}

@media screen and (max-width: 450px) {
  .home .twitter-feed {
    padding: 0 3rem 6rem 0;
  }
}

.home .twitter-feed h2 {
  color: #b2c5d8;
  padding: 4rem 8.5rem 4rem 10.5rem;
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .home .twitter-feed h2 {
    padding: 4rem 0 4rem 0;
    width: 320px;
    float: right;
  }
}

@media screen and (max-width: 979px) {
  .home .twitter-feed h2 {
    float: none;
    padding: 4rem 6rem 4rem;
  }
}

@media screen and (max-width: 540px) {
  .home .twitter-feed h2 {
    float: none;
    padding: 4rem 4rem 4rem;
  }
}

@media screen and (max-width: 450px) {
  .home .twitter-feed h2 {
    float: none;
    padding: 4rem 3rem 4rem;
  }
}

.home .twitter-feed .twitter-widget {
  padding-left: 10.5rem;
}

@media screen and (max-width: 1200px) {
  .home .twitter-feed .twitter-widget {
    padding-left: 0;
    float: right;
  }
}

@media screen and (max-width: 979px) {
  .home .twitter-feed .twitter-widget {
    float: none;
    padding-left: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .home .twitter-feed .twitter-widget {
    padding-left: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .home .twitter-feed .twitter-widget {
    padding-left: 3rem;
  }
}

.team-wrap {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1029px) {
  .team-wrap {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .team-wrap {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .team-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.team-content {
  background: #e9e7df;
  padding: 4.5rem 0 1.5rem;
  margin-bottom: 6rem;
}

.team-content h2 {
  color: #7a7f84;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.team-content ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0;
  list-style: none;
}

.team-content ul li {
  width: calc(50% - 4.2rem);
  margin-bottom: 5.6rem;
}

@media screen and (max-width: 870px) {
  .team-content ul li {
    width: 100%;
  }
}

.team-content ul li img {
  border-radius: 50%;
  border: #cecdc6 0.6rem solid;
  float: right;
  margin: 0 0 2.4rem 2.4rem;
}

.team-content ul li h3 {
  font-family: "BrandonTextWeb-Bold";
  font-size: 2.3rem;
  line-height: 2.76rem;
  margin-bottom: 0.8rem;
}

.team-content ul li h3 span {
  font-family: "BrandonTextWeb-Regular";
}

.partner-list h2 {
  margin-bottom: 1.6rem;
}

.partner-list ul {
  margin: 0 0 0 1.2rem;
  list-style: none;
}

.partner-list li:before {
  content: "\f111";
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  font-size: 0.5rem;
  vertical-align: middle;
  margin-left: -1.1rem;
  margin-right: 0.7rem;
}

.partner-list li a {
  text-decoration: none;
  color: #000000;
}

.partner-list li a:hover {
  text-decoration: underline;
}

.page-id-56 .entry-content {
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 759px) {
  .page-id-56 .entry-content {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.page-id-56 .entry-content .intro {
  width: 66%;
  padding: initial;
}

@media screen and (max-width: 759px) {
  .page-id-56 .entry-content .intro {
    width: 100%;
  }
}

.page-id-56 .entry-content .featured-content {
  margin-left: 4%;
  width: 30%;
}

@media screen and (max-width: 759px) {
  .page-id-56 .entry-content .featured-content {
    width: 100%;
    margin-left: initial;
  }
}

.archive-groups {
  padding: 2rem 0 0;
}

.archive-groups-wrap {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1029px) {
  .archive-groups-wrap {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .archive-groups-wrap {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .archive-groups-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.archive-groups-wrap ul {
  list-style: none;
  margin: 0;
}

.archive-groups-wrap ul.contact-links li {
  display: inline;
}

.archive-groups-wrap ul li.member-list {
  width: calc(50% - 4.4rem);
  padding-bottom: 6rem;
}

@media screen and (max-width: 700px) {
  .archive-groups-wrap ul li.member-list {
    width: 100%;
  }
}

.archive-groups-wrap ul li.member-list li {
  width: auto;
}

.archive-groups-wrap h3 a {
  color: #057398;
  text-decoration: none;
  font-size: 2.8rem;
  line-height: 3.36rem;
  font-family: "BrandonTextWeb-Bold";
  transition: all 0.2s ease 0s;
}

.archive-groups-wrap h3 a:hover {
  transition: all 0.2s ease 0s;
  color: #036181;
}

.archive-groups-wrap span.location {
  font-weight: 600;
  float: left;
}

.archive-groups-wrap span.dot {
  font-family: "BrandonTextWeb-Bold";
  margin: 0 0.5rem 0 0.3rem;
  float: left;
}

.archive-groups-wrap span.read-more a {
  color: #057398;
  text-decoration: none;
  font-family: "BrandonTextWeb-Bold";
  transition: all 0.2s ease 0s;
}

.archive-groups-wrap span.read-more a:hover {
  transition: all 0.2s ease 0s;
  color: #036181;
}

.archive-groups-wrap span.read-more a:after {
  content: "\f061";
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  font-size: 1.4rem;
  margin-left: 0.6rem;
}

.archive-groups-wrap .member-list p {
  display: inline;
}

.issue-area-resources,
.state-member-resources {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#dddbd4+0,dddbd4+49,cecdc6+51,cecdc6+100 */
  background: #dddbd4;
  /* Old browsers */
  background: -moz-linear-gradient(left, #dddbd4 0%, #dddbd4 49%, #cecdc6 51%, #cecdc6 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #dddbd4 0%, #dddbd4 49%, #cecdc6 51%, #cecdc6 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #dddbd4 0%, #dddbd4 49%, #cecdc6 51%, #cecdc6 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddbd4', endColorstr='#cecdc6',GradientType=1 );
  /* IE6-9 */
}

.issue-area-resources-wrap,
.member-resources-wrap {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1029px) {
  .issue-area-resources-wrap,
  .member-resources-wrap {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .issue-area-resources-wrap,
  .member-resources-wrap {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .issue-area-resources-wrap,
  .member-resources-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (max-width: 700px) {
  .issue-area-resources-wrap,
  .member-resources-wrap {
    padding-right: initial;
    padding-left: initial;
  }
}

.issue-area-resources-wrap h2,
.member-resources-wrap h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  color: #7a7f84;
}

.issue-area-resources-wrap .publications-list,
.member-resources-wrap .publications-list {
  background: #dddbd4;
  padding: 7rem 4% 10rem 0;
  width: 60%;
}

@media screen and (max-width: 960px) {
  .issue-area-resources-wrap .publications-list,
  .member-resources-wrap .publications-list {
    width: 50%;
    padding: 7rem 4.5rem 10rem 0;
  }
}

@media screen and (max-width: 700px) {
  .issue-area-resources-wrap .publications-list,
  .member-resources-wrap .publications-list {
    width: 100%;
    padding: 7rem 6rem 4rem;
  }
}

@media screen and (max-width: 540px) {
  .issue-area-resources-wrap .publications-list,
  .member-resources-wrap .publications-list {
    padding: 7rem 4rem 4rem;
  }
}

@media screen and (max-width: 450px) {
  .issue-area-resources-wrap .publications-list,
  .member-resources-wrap .publications-list {
    padding: 7rem 3rem 4rem;
  }
}

.issue-area-resources-wrap .publications-list h3,
.member-resources-wrap .publications-list h3 {
  font-family: "BrandonTextWeb-Regular";
  font-size: 2.3rem;
  line-height: 2.76rem;
  margin-bottom: 1.2rem;
}

.issue-area-resources-wrap .publications-list h3 a,
.member-resources-wrap .publications-list h3 a {
  border-bottom: 0.2rem solid #ffffff;
  color: #3d4349;
  font-family: "BrandonTextWeb-Bold";
  text-decoration: none;
  transition: all 0.2s ease 0s;
}

.issue-area-resources-wrap .publications-list h3 a:hover,
.member-resources-wrap .publications-list h3 a:hover {
  transition: all 0.2s ease 0s;
  border-bottom: 0.2rem solid #9aa5ae;
}

.issue-area-resources-wrap .publications-list ul,
.member-resources-wrap .publications-list ul {
  margin: 0;
}

.issue-area-resources-wrap .publications-list ul li,
.member-resources-wrap .publications-list ul li {
  list-style: none;
}

.issue-area-resources-wrap .publications-list ul.pub-details,
.member-resources-wrap .publications-list ul.pub-details {
  margin-bottom: 1.8rem;
  font-size: 1.4rem;
}

.issue-area-resources-wrap .publications-list ul.pub-details li,
.member-resources-wrap .publications-list ul.pub-details li {
  display: inline;
}

.issue-area-resources-wrap .publications-list ul.pub-details li:after,
.member-resources-wrap .publications-list ul.pub-details li:after {
  content: '·';
  margin: 0 0.5rem;
  font-family: "BrandonTextWeb-Bold";
}

.issue-area-resources-wrap .publications-list ul.pub-details li:last-of-type:after,
.member-resources-wrap .publications-list ul.pub-details li:last-of-type:after {
  content: none;
}

.issue-area-resources-wrap .publications-list .issue-areas,
.member-resources-wrap .publications-list .issue-areas {
  font-size: 1.4rem;
  margin-bottom: 4.2rem;
}

.issue-area-resources-wrap .publications-list .issue-areas a,
.member-resources-wrap .publications-list .issue-areas a {
  color: #7a7f84;
  text-decoration: none;
}

.issue-area-resources-wrap .publications-list .issue-areas a:after,
.member-resources-wrap .publications-list .issue-areas a:after {
  content: '·';
  margin: 0 0.2rem 0 0.5rem;
  font-family: "BrandonTextWeb-Bold";
}

.issue-area-resources-wrap .publications-list .issue-areas a:last-of-type:after,
.member-resources-wrap .publications-list .issue-areas a:last-of-type:after {
  content: none;
}

.issue-area-resources-wrap .experts-list,
.member-resources-wrap .experts-list {
  background: #cecdc6;
  padding: 7rem 0 10rem 4%;
  width: 40%;
}

@media screen and (max-width: 960px) {
  .issue-area-resources-wrap .experts-list,
  .member-resources-wrap .experts-list {
    width: 50%;
    padding: 7rem 0 10rem 4.5rem;
  }
}

@media screen and (max-width: 700px) {
  .issue-area-resources-wrap .experts-list,
  .member-resources-wrap .experts-list {
    width: 100%;
    padding: 7rem 6rem 4rem;
  }
}

@media screen and (max-width: 540px) {
  .issue-area-resources-wrap .experts-list,
  .member-resources-wrap .experts-list {
    padding: 7rem 4rem 4rem;
  }
}

@media screen and (max-width: 450px) {
  .issue-area-resources-wrap .experts-list,
  .member-resources-wrap .experts-list {
    padding: 7rem 3rem 4rem;
  }
}

.issue-area-resources-wrap .experts-list ul,
.member-resources-wrap .experts-list ul {
  margin: 0;
}

.issue-area-resources-wrap .experts-list ul li,
.member-resources-wrap .experts-list ul li {
  list-style: none;
}

.issue-area-resources-wrap .experts-list h3,
.member-resources-wrap .experts-list h3 {
  font-family: "BrandonTextWeb-Regular";
  font-size: 2.3rem;
  line-height: 2.76rem;
  margin-bottom: 1.2rem;
}

.issue-area-resources-wrap .experts-list h3 span,
.member-resources-wrap .experts-list h3 span {
  font-family: "BrandonTextWeb-Bold";
}

.issue-area-resources-wrap .experts-list .issue-areas,
.member-resources-wrap .experts-list .issue-areas {
  font-size: 1.4rem;
  margin-bottom: 4.2rem;
}

.issue-area-resources-wrap .experts-list .issue-areas a,
.member-resources-wrap .experts-list .issue-areas a {
  color: #3d4349;
  text-decoration: none;
}

.issue-area-resources-wrap .experts-list .issue-areas a:after,
.member-resources-wrap .experts-list .issue-areas a:after {
  content: "·";
  font-family: "BrandonTextWeb-Bold";
  margin: 0 0.2rem 0 0.5rem;
}

.issue-area-resources-wrap .experts-list .issue-areas a:last-of-type::after,
.member-resources-wrap .experts-list .issue-areas a:last-of-type::after {
  content: none;
}

header.entry-header,
.intro,
.partners {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1029px) {
  header.entry-header,
  .intro,
  .partners {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  header.entry-header,
  .intro,
  .partners {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  header.entry-header,
  .intro,
  .partners {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.intro {
  margin-bottom: 6rem;
  padding-left: 0;
  padding-right: 0;
}

.intro p {
  font-size: 1.6rem;
  line-height: 1.92rem;
  max-width: 66rem;
}

.state-list-wrap {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
  margin: 0 auto 8.6rem;
}

@media screen and (max-width: 1029px) {
  .state-list-wrap {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .state-list-wrap {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .state-list-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (max-width: 1029px) {
  .state-list-wrap {
    padding-left: 12rem;
  }
}

@media screen and (max-width: 900px) {
  .state-list-wrap {
    padding-left: 6rem;
  }
}

@media screen and (max-width: 675px) {
  .state-list-wrap {
    display: block;
  }
}

@media screen and (max-width: 540px) {
  .state-list-wrap {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .state-list-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.state-list .state-item {
  margin-bottom: 4.2rem;
}

.state-list ul {
  margin: 0 0 0 1.2rem;
  padding-left: 6.5rem;
  list-style: none;
}

@media screen and (max-width: 700px) {
  .state-list ul {
    padding-left: 1.5rem;
  }
}

.state-list ul:last-of-type {
  margin: 0;
}

.state-list li:before {
  content: "\f111";
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  font-size: 0.5rem;
  vertical-align: top;
  margin-left: -1.1rem;
  margin-right: 0.7rem;
}

@media screen and (max-width: 700px) {
  .state-list li:before {
    position: absolute;
  }
}

.state-list li a {
  text-decoration: none;
  color: #000000;
  padding-right: 3rem;
  width: calc(100% - 3rem);
  display: inline-block;
}

@media screen and (max-width: 700px) {
  .state-list li a {
    width: 100%;
    padding-right: 0;
  }
}

.state-list li a:hover {
  text-decoration: underline;
}

.state-list h2 {
  margin-bottom: 1.3rem;
  margin-top: 4.2rem;
  position: relative;
}

.state-list h2:first-of-type {
  margin-top: 0;
}

.state-list h2 span.state {
  position: absolute;
  top: -1rem;
}

@media screen and (max-width: 700px) {
  .state-list h2 span.state {
    display: none;
  }
}

.state-list h2 span.state a {
  color: #ffffff;
  background: #ef5a44;
  font-weight: 700;
  border-radius: 50%;
  text-decoration: none;
  font-family: "BrandonTextWeb-Bold";
  font-size: 1.6rem;
  letter-spacing: 1px;
  padding-bottom: 0.5rem;
  text-align: center;
  display: block;
  height: 4.3rem;
  padding-top: 1.4rem;
  padding-left: 0.1rem;
  width: 4.3rem;
  transition: all 0.2s ease 0s;
  border-bottom: none;
}

.state-list h2 span.state a:hover {
  transition: all 0.2s ease 0s;
  background: #d14f3b;
}

.state-list h2 span.state-name {
  padding-left: 5.5rem;
  display: block;
  line-height: 30px;
}

@media screen and (max-width: 700px) {
  .state-list h2 span.state-name {
    padding-left: 0;
  }
}

.page-id-108 h2 a {
  color: #057398;
  text-decoration: none;
  border-bottom: 0.2rem solid #b2c5d8;
  font-weight: 700;
  font-size: 2.3rem;
  font-family: "BrandonTextWeb-Bold";
  transition: all 0.2s ease 0s;
}

.page-id-108 h2 a:hover {
  transition: all 0.2s ease 0s;
  border-bottom: 0.2rem solid #036181;
}

.page-id-108 .state-list h2 span.state a {
  padding-top: 1rem;
}

.partners h2 {
  margin-bottom: 1.6rem;
}

.partners ul {
  margin: 0 0 0 1.2rem;
  list-style: none;
}

.partners li:before {
  content: "\f111";
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  font-size: 0.5rem;
  vertical-align: middle;
  margin-left: -1.1rem;
  margin-right: 0.7rem;
}

.partners li a {
  text-decoration: none;
  color: #000000;
}

.partners li a:hover {
  text-decoration: underline;
}

.map-zone {
  background: #cecdc6;
  padding: 4.6rem 0 5rem;
  margin-bottom: 7rem;
}

.map-wrap {
  max-width: 64.8rem;
  margin: 0 auto;
}

@media screen and (max-width: 710px) {
  .map-wrap {
    max-width: 50rem;
  }
}

@media screen and (max-width: 570px) {
  .map-wrap {
    max-width: 40rem;
  }
}

@media screen and (max-width: 450px) {
  .map-wrap {
    max-width: 30rem;
  }
}

@media screen and (max-width: 350px) {
  .map-wrap {
    max-width: 20rem;
  }
}

.map {
  height: 0;
  padding-top: 62%;
  position: relative;
}

.map a:hover .state {
  fill: #057398;
}

#united-states {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 710px) {
  #united-states {
    width: 50rem;
    height: 31.6rem;
  }
}

@media screen and (max-width: 570px) {
  #united-states {
    width: 40rem;
    height: 25.3rem;
  }
}

@media screen and (max-width: 450px) {
  #united-states {
    width: 30rem;
    height: 19rem;
  }
}

@media screen and (max-width: 350px) {
  #united-states {
    width: 20rem;
    height: 12.7rem;
  }
}

/* modals */
.modal {
  display: none;
}

.modal h2 {
  padding-left: 5rem;
  margin-bottom: 1.3rem;
  line-height: 3.3rem;
}

.modal span.state {
  position: absolute;
  left: 1.5rem;
  top: 1.4rem;
  line-height: 2rem;
}

.modal span.state a {
  color: #ffffff;
  background: #ef5a44;
  font-weight: 700;
  border-radius: 50%;
  text-decoration: none;
  font-family: "BrandonTextWeb-Bold";
  font-size: 1.6rem;
  letter-spacing: 1px;
  padding-bottom: 0.5rem;
  text-align: center;
  display: block;
  height: 4.3rem;
  padding-top: 1.4rem;
  padding-left: 0.1rem;
  width: 4.3rem;
  transition: all 0.2s ease 0s;
  border-bottom: none;
}

.modal span.state a:hover {
  transition: all 0.2s ease 0s;
  background: #d14f3b;
}

.modal ul {
  margin: 0;
  list-style: none;
  padding-left: 6rem;
}

.modal ul li:before {
  content: "\f111";
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  font-size: 0.5rem;
  vertical-align: middle;
  margin-left: -1.1rem;
  margin-right: 0.7rem;
}

.modal ul a {
  text-decoration: none;
  color: #000000;
}

.modal ul a:hover {
  text-decoration: underline;
}

.modal .jBox-closeButton-box .jBox-closeButton {
  top: 0 !important;
  right: 0 !important;
}

.single-members header.entry-header {
  margin-bottom: 1rem;
  position: relative;
  padding-left: initial;
  padding-right: initial;
}

@media screen and (max-width: 1029px) {
  .single-members header.entry-header {
    margin-left: 56px;
  }
}

@media screen and (max-width: 540px) {
  .single-members header.entry-header {
    margin-left: initial;
    text-align: center;
  }
}

.single-members .entry-content {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 1029px) {
  .single-members .entry-content {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .single-members .entry-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .single-members .entry-content {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (max-width: 700px) {
  .single-members .entry-content {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.single-members .entry-content .member-info {
  width: 57%;
  margin-right: 11%;
}

@media screen and (max-width: 700px) {
  .single-members .entry-content .member-info {
    width: 100%;
    margin-right: 0;
  }
}

.single-members .entry-content aside#secondary {
  width: 32%;
}

@media screen and (max-width: 700px) {
  .single-members .entry-content aside#secondary {
    width: 100%;
  }
}

.single-members .entry-content aside#secondary p.location,
.single-members .entry-content aside#secondary h2 {
  font-weight: 700;
  font-family: "BrandonTextWeb-Bold";
  font-size: 1.6rem;
  color: #3d4349;
}

.single-members span.state {
  left: -6rem;
  position: absolute;
  top: 0;
}

@media screen and (max-width: 540px) {
  .single-members span.state {
    position: relative;
    margin: 0 auto;
    left: auto;
    top: auto;
  }
}

.single-members .state a {
  color: #ffffff;
  background: #ef5a44;
  font-weight: 700;
  border-radius: 50%;
  text-decoration: none;
  font-family: "BrandonTextWeb-Bold";
  font-size: 1.6rem;
  letter-spacing: 1px;
  padding-bottom: 0.5rem;
  text-align: center;
  display: block;
  height: 4.3rem;
  padding-top: 1.4rem;
  padding-left: 0.1rem;
  width: 4.3rem;
  transition: all 0.2s ease 0s;
  border-bottom: none;
  background: #057398;
}

.single-members .state a:hover {
  transition: all 0.2s ease 0s;
  background: #d14f3b;
}

@media screen and (max-width: 540px) {
  .single-members .state a {
    margin: 0 auto 10px;
  }
}

.single-members .state a:hover {
  background: #036181;
}

.single-members .address,
.single-members .media-inquiries {
  margin-bottom: 2.4rem;
}

.single-members .address span,
.single-members .media-inquiries span {
  display: block;
}

.single-members .feed-wrap {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 1029px) {
  .single-members .feed-wrap {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .single-members .feed-wrap {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .single-members .feed-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (max-width: 1029px) {
  .single-members .feed-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 700px) {
  .single-members .feed-wrap {
    display: block;
  }
}

.single-members .feeds {
  background: #e9e7df;
}

.single-members .feeds h2 {
  color: #7a7f84;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 3.4rem;
}

.single-members .feeds h3 {
  font-family: "BrandonTextWeb-Regular";
  font-size: 2.3rem;
  line-height: 2.76rem;
  margin-bottom: 1.2rem;
}

.single-members .feeds h3 span {
  font-family: "BrandonTextWeb-Bold";
}

.single-members .feeds ul {
  margin: 0;
}

.single-members .feeds ul li {
  list-style: none;
}

.single-members .feeds ul li ul li:after {
  content: '·';
  margin: 0 0.5rem;
  font-family: "BrandonTextWeb-Bold";
}

.single-members .feeds ul li ul li:last-of-type:after {
  content: none;
}

.single-members .feeds ul.pub-details {
  margin-bottom: 1.8rem;
  font-size: 1.4rem;
}

.single-members .feeds ul.pub-details li {
  display: inline;
}

.single-members .feeds .issue-areas {
  font-size: 1.4rem;
  margin-bottom: 4.2rem;
}

.single-members .feeds .issue-areas a {
  color: #7a7f84;
  text-decoration: none;
}

.single-members .feeds .issue-areas a:after {
  content: '·';
  margin: 0 0.2rem 0 0.5rem;
  font-family: "BrandonTextWeb-Bold";
}

.single-members .feeds .issue-areas a:last-of-type:after {
  content: none;
}

.single-members .feeds.reports.people {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e9e7df+0,e9e7df+50,dddbd4+51,dddbd4+100 */
  background: #e9e7df;
  /* Old browsers */
  background: -moz-linear-gradient(left, #e9e7df 0%, #e9e7df 50%, #dddbd4 51%, #dddbd4 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e9e7df 0%, #e9e7df 50%, #dddbd4 51%, #dddbd4 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #e9e7df 0%, #e9e7df 50%, #dddbd4 51%, #dddbd4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9e7df', endColorstr='#dddbd4',GradientType=1 );
  /* IE6-9 */
}

.single-members .publications,
.single-members .experts {
  background: #e9e7df;
  padding: 7rem 8% 10rem 0;
  width: 56%;
}

.single-members .publications h3 a,
.single-members .experts h3 a {
  font-family: "BrandonTextWeb-Bold";
  color: #3d4349;
  border-bottom: 0.2rem solid #ffffff;
  text-decoration: none;
}

@media screen and (max-width: 1029px) {
  .single-members .publications,
  .single-members .experts {
    padding: 7rem 6rem 10rem;
  }
}

@media screen and (max-width: 960px) {
  .single-members .publications,
  .single-members .experts {
    width: 50%;
  }
}

@media screen and (max-width: 700px) {
  .single-members .publications,
  .single-members .experts {
    width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .single-members .publications,
  .single-members .experts {
    padding: 7rem 4rem 10rem;
  }
}

@media screen and (max-width: 450px) {
  .single-members .publications,
  .single-members .experts {
    padding: 7rem 3rem 10rem;
  }
}

.single-members .feeds.reports.people .experts {
  background: #dddbd4;
  width: 32%;
  padding: 7rem 0 10rem 4%;
}

@media screen and (max-width: 1029px) {
  .single-members .feeds.reports.people .experts {
    padding: 7rem 6rem 10rem;
  }
}

@media screen and (max-width: 960px) {
  .single-members .feeds.reports.people .experts {
    width: 50%;
  }
}

@media screen and (max-width: 700px) {
  .single-members .feeds.reports.people .experts {
    width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .single-members .feeds.reports.people .experts {
    padding: 7rem 4rem 10rem;
  }
}

@media screen and (max-width: 450px) {
  .single-members .feeds.reports.people .experts {
    padding: 7rem 3rem 10rem;
  }
}

ul.contact-links {
  margin: 0 0 1.7rem;
}

ul.contact-links li {
  list-style: none;
  display: inline;
}

ul.contact-links li:after {
  content: '·';
  margin: 0 0.5rem 0 0.3rem;
  font-family: "BrandonTextWeb-Bold";
  color: #f7bdb5;
}

ul.contact-links li:last-of-type:after {
  content: none;
}

ul.contact-links li a {
  color: #ef5a44;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.2s ease 0s;
}

ul.contact-links li a:hover {
  color: #d14f3b;
  transition: all 0.2s ease 0s;
  text-decoration: underline;
}

a.website {
  font-family: "BrandonTextWeb-Bold";
  color: #ffffff;
  background: #ef5a44;
  text-decoration: none;
  font-size: 2.2rem;
  padding: 2rem 5rem 1.6rem;
  border-radius: 0.8rem;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 9rem;
  margin-top: 3.2rem;
}

@media screen and (max-width: 700px) {
  a.website {
    margin-bottom: 6rem;
  }
}

a.website:hover {
  background: #d14f3b;
}

.logo-thumb {
  border: 0.1rem solid #cecdc6;
  padding: 1.9rem;
  margin-bottom: 2.6rem;
}

.logo-thumb img {
  display: block;
  margin: 0 auto;
  max-height: 20rem;
}

ul.social-links {
  list-style: none;
  margin: 0;
}

ul.social-links a {
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  color: transparent;
}

ul.social-links a:before {
  color: #057398;
  font-size: 2.6rem;
  transition: all 0.2s ease 0s;
}

ul.social-links a:hover:before {
  transition: all 0.2s ease 0s;
  color: #036181;
}

ul.social-links a.twitter:before {
  content: "\f099";
}

ul.social-links a.facebook:before {
  content: "\f230";
}

ul.social-links a.instagram:before {
  content: "\f16d";
}

ul.social-links a.linkedin:before {
  content: "\f0e1";
}

ul.social-links a.rss:before {
  content: "\f09e";
}

ul.social-links a.snapchat:before {
  content: "\f2ab";
}

ul.social-links a.youtube:before {
  content: "\f16a";
}

.single-members ul.social-links {
  display: -webkit-flex;
  display: flex;
}

.single-members ul.social-links li {
  width: 4.8rem;
}

.page-id-132 .issues-wrap {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
  padding: 6rem 10rem 0;
}

@media screen and (max-width: 1029px) {
  .page-id-132 .issues-wrap {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .page-id-132 .issues-wrap {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .page-id-132 .issues-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.page-id-132 .issues-wrap ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-id-132 .issues-wrap ul li {
  width: calc(33.333% - 2.6rem);
  margin-right: 3.9rem;
}

.page-id-132 .issues-wrap ul li:nth-child(3n+3) {
  margin-right: 0;
}

@media screen and (max-width: 949px) {
  .page-id-132 .issues-wrap ul li {
    width: calc(50% - 2rem);
    margin-right: initial;
  }
  .page-id-132 .issues-wrap ul li:nth-child(3n+3) {
    margin-right: initial;
  }
  .page-id-132 .issues-wrap ul li:nth-child(odd) {
    margin-right: 4rem;
  }
}

@media screen and (max-width: 649px) {
  .page-id-132 .issues-wrap ul li {
    width: 100%;
  }
  .page-id-132 .issues-wrap ul li:nth-child(odd) {
    margin-right: initial;
  }
}

.page-id-132 .issues-wrap ul.issues-list-columns {
  display: block;
}

.page-id-132 .issues-wrap ul.issues-list-columns li {
  width: 100%;
  margin-right: initial;
}

.page-id-132 .issues-wrap h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  color: #7a7f84;
}

.page-id-132 .featured-issues {
  background: #e9e7df;
}

.page-id-132 .projects {
  background: #dddbd4;
}

.page-id-132 .featured-issues,
.page-id-132 .projects {
  content: "";
  display: table;
  table-layout: fixed;
  width: 100%;
}

.page-id-132 .featured-issues ul,
.page-id-132 .projects ul {
  list-style: none;
  margin: 0;
}

.page-id-132 .featured-issues ul li,
.page-id-132 .projects ul li {
  margin-bottom: 5.2rem;
}

.page-id-132 .featured-issues h3,
.page-id-132 .projects h3 {
  font-size: 2.8rem;
  line-height: 3.36rem;
  margin-bottom: 1.4rem;
}

.page-id-132 .featured-issues h3 a,
.page-id-132 .projects h3 a {
  border-bottom: 0.2rem solid #ffffff;
  text-decoration: none;
  font-family: "BrandonTextWeb-Bold";
}

.page-id-132 .featured-issues p,
.page-id-132 .projects p {
  line-height: 2rem;
  margin-bottom: 1.6rem;
}

.page-id-132 .featured-issues .more-issue a,
.page-id-132 .projects .more-issue a {
  font-family: "BrandonTextWeb-Bold";
  text-decoration: none;
  line-height: 1.92rem;
}

.page-id-132 .featured-issues .more-issue a:after,
.page-id-132 .projects .more-issue a:after {
  content: "\f061";
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  font-size: 1.4rem;
  margin-left: 0.6rem;
}

.page-id-132 .other-issues ul {
  list-style: none;
  margin: 0;
}

.page-id-132 .other-issues ul li {
  margin-bottom: 2rem;
}

.page-id-132 .other-issues ul li a {
  border-bottom: 0.2rem solid #e9e7df;
  text-decoration: none;
  font-family: "BrandonTextWeb-Bold";
}

.tax-issue-areas .entry-content {
  display: -webkit-flex;
  display: flex;
}

.tax-issue-areas .entry-content .intro {
  width: 66%;
}

.tax-issue-areas .entry-content .featured-content {
  margin-left: 4%;
  width: 30%;
}

.tax-issue-areas article .entry-content {
  display: initial;
}

.page-id-60 .entry-content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-id-60 .entry-content .intro {
  width: 66%;
}

@media screen and (max-width: 759px) {
  .page-id-60 .entry-content .intro {
    width: 100%;
  }
}

.page-id-60 .entry-content .featured-content {
  margin-left: 4%;
  width: 30%;
}

@media screen and (max-width: 759px) {
  .page-id-60 .entry-content .featured-content {
    width: 100%;
  }
}

.page-id-60 .entry-content .featured-content img {
  margin-bottom: 40px;
}

.page-id-60 .entry-content p {
  margin-bottom: 2.8rem;
}

.page-id-60 .entry-content p.dates {
  color: #057398;
  font-family: "BrandonTextWeb-Bold";
  font-size: 2.8rem;
  line-height: 3.4rem;
  margin-bottom: 1.4rem;
  text-align: center;
}

.page-id-60 .entry-content p.sidebar-button a {
  font-size: 2.2rem;
  font-family: "BrandonTextWeb-Bold";
  text-decoration: none;
  background: #ef5a44;
  color: #ffffff;
  border-radius: 0.8rem;
  display: inline-block;
  transition: all 0.2s ease 0s;
  padding: 2.1rem 1rem 1.7rem;
  display: block;
  text-align: center;
}

.page-id-60 .entry-content p.sidebar-button a:hover {
  transition: all 0.2s ease 0s;
  background: #d14f3b;
}

.filter-wrap {
  background: #057398;
  padding: 6rem 0 2.8rem;
  margin-bottom: 5.6rem;
}

.filter-wrap section#text-3 {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1029px) {
  .filter-wrap section#text-3 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .filter-wrap section#text-3 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .filter-wrap section#text-3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.filter-wrap h2.widget-title {
  color: #b2c5d8;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.filter-wrap .textwidget {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 74.5rem;
}

.filter-wrap .textwidget .facetwp-facet-search,
.filter-wrap .textwidget input.facetwp-search {
  width: 100%;
}

.filter-wrap .textwidget .facetwp-facet {
  margin-bottom: 1.6rem;
}

.filter-wrap .textwidget .facetwp-facet-issue_area,
.filter-wrap .textwidget .facetwp-facet-state,
.filter-wrap .textwidget .facetwp-facet-organization {
  width: 31.544%;
}

@media screen and (max-width: 670px) {
  .filter-wrap .textwidget .facetwp-facet-issue_area,
  .filter-wrap .textwidget .facetwp-facet-state,
  .filter-wrap .textwidget .facetwp-facet-organization {
    width: 48.544%;
  }
}

@media screen and (max-width: 450px) {
  .filter-wrap .textwidget .facetwp-facet-issue_area,
  .filter-wrap .textwidget .facetwp-facet-state,
  .filter-wrap .textwidget .facetwp-facet-organization {
    width: 100%;
  }
}

.post-type-archive-publications .hentry {
  margin: 0;
  position: relative;
}

.publications-feeds {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 1029px) {
  .publications-feeds {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .publications-feeds {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .publications-feeds {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (max-width: 700px) {
  .publications-feeds {
    display: block;
  }
}

.publications-feeds header.entry-header,
.publications-feeds .entry-content {
  padding-left: initial;
  padding-right: initial;
}

.publications-feeds span.state {
  position: absolute;
  float: none;
  left: -6rem;
  top: -1rem;
}

@media screen and (max-width: 1029px) {
  .publications-feeds span.state {
    left: -5rem;
  }
}

@media screen and (max-width: 540px) {
  .publications-feeds span.state {
    display: none;
  }
}

.publications-feeds span.state a {
  color: #ffffff;
  background: #ef5a44;
  font-weight: 700;
  border-radius: 50%;
  text-decoration: none;
  font-family: "BrandonTextWeb-Bold";
  font-size: 1.6rem;
  letter-spacing: 1px;
  padding-bottom: 0.5rem;
  text-align: center;
  display: block;
  height: 4.3rem;
  padding-top: 1.4rem;
  padding-left: 0.1rem;
  width: 4.3rem;
  transition: all 0.2s ease 0s;
  border-bottom: none;
}

.publications-feeds span.state a:hover {
  transition: all 0.2s ease 0s;
  background: #d14f3b;
}

.publications-feeds span.publication-type a {
  font-size: 1.6rem;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  font-family: "BrandonTextWeb-Bold";
  text-decoration: none;
  padding: 0.5rem 0.8rem 0.1rem;
  background: #b2c5d8;
  color: #036181;
}

.publications-feeds h2 {
  color: #7a7f84;
  font-size: 2rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.publications-feeds h3 {
  font-size: 2.3rem;
  line-height: 2.76rem;
  margin-bottom: 1rem;
  display: inline;
}

.publications-feeds h3 a {
  color: #3d4349;
  text-decoration: none;
}

.publications-feeds ul {
  margin: 0;
}

.publications-feeds ul.pub-details {
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.publications-feeds ul.pub-details li {
  list-style: none;
  display: inline;
}

.publications-feeds ul.pub-details li:before {
  content: '·';
  margin: 0 0.5rem;
  font-family: "BrandonTextWeb-Bold";
  color: #3d4349;
}

.publications-feeds ul.pub-details li:first-of-type:before {
  content: none;
}

.publications-feeds ul.pub-details li a {
  font-weight: bold;
  text-decoration: none;
}

.publications-feeds .featured-item {
  margin-bottom: 2rem;
}

.publications-feeds p {
  margin-bottom: 1.4rem;
}

.publications-feeds .issue-areas {
  font-size: 1.4rem;
  margin-bottom: 4.2rem;
}

.publications-feeds .issue-areas a {
  text-decoration: none;
}

.publications-feeds .issue-areas a:after {
  content: '·';
  margin: 0 0.2rem 0 0.5rem;
  font-family: "BrandonTextWeb-Bold";
  color: #3d4349;
}

.publications-feeds .issue-areas a:last-of-type:after {
  content: none;
}

.publications-feeds .facetwp-template h3 {
  font-family: "BrandonTextWeb-Bold";
}

.publications-feeds .featured-work h3 {
  font-family: "BrandonTextWeb-Regular";
}

.publications-feeds .all-work {
  width: 60%;
  margin: 0 4% 0 0;
}

@media screen and (max-width: 960px) {
  .publications-feeds .all-work {
    width: 50%;
  }
}

@media screen and (max-width: 700px) {
  .publications-feeds .all-work {
    width: 100%;
  }
}

.publications-feeds .featured-work {
  width: 32%;
  margin: 0 0 0 4%;
}

.publications-feeds .featured-work .entry-content {
  margin-bottom: 3rem;
}

@media screen and (max-width: 960px) {
  .publications-feeds .featured-work {
    width: 50%;
  }
}

@media screen and (max-width: 700px) {
  .publications-feeds .featured-work {
    width: 100%;
    margin: 0;
  }
}

.publications-feeds .featured-work ul.pub-details {
  margin-bottom: 2rem;
}

button.fwp-load-more {
  font-size: 2.2rem;
  font-family: "BrandonTextWeb-Bold";
  text-decoration: none;
  background: #ef5a44;
  color: #ffffff;
  border-radius: 0.8rem;
  display: inline-block;
  transition: all 0.2s ease 0s;
  padding: 2.1rem 6.9rem 1.7rem;
  border: 0;
  box-shadow: none;
  text-shadow: none;
  margin-bottom: 4.5rem;
}

button.fwp-load-more:hover {
  transition: all 0.2s ease 0s;
  background: #d14f3b;
}

.facetwp-type-dropdown {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid #CECDC7;
  background: #ffffff url("/wp-content/themes/earnepi/images/select-arrow.png") no-repeat right 50%;
  width: 120px;
  display: block;
  border-radius: 0.8rem;
  overflow: hidden;
}

.facetwp-type-dropdown select {
  padding: 0.9rem 8px 0.8rem;
  width: 130%;
  border: none;
  box-shadow: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.single-publications h1.entry-title,
.single-publications .content-wrap {
  max-width: 66rem;
}

.single-publications h1.entry-title {
  display: inline;
}

.single-publications span.publication-type span {
  font-size: 1.6rem;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  font-family: "BrandonTextWeb-Bold";
  text-decoration: none;
  padding: 0.5rem 0.8rem 0.1rem;
  background: #b2c5d8;
  color: #036181;
}

.single-publications .pub-details {
  margin: 0 0 1.2rem;
  font-size: 1.4rem;
}

.single-publications .pub-details li {
  list-style: none;
  display: inline;
}

.single-publications .pub-details li:after {
  content: '·';
  margin: 0 0.5rem;
  font-family: "BrandonTextWeb-Bold";
}

.single-publications .pub-details li:last-of-type:after {
  content: none;
}

.single-publications .pub-details li a {
  font-weight: bold;
  text-decoration: none;
  color: #3d4349;
}

.single-publications .issue-areas {
  font-size: 1.4rem;
  margin-bottom: 4.2rem;
}

.single-publications .issue-areas a {
  color: #3d4349;
  text-decoration: none;
}

.single-publications .issue-areas a:after {
  content: '·';
  margin: 0 0.2rem 0 0.5rem;
  font-family: "BrandonTextWeb-Bold";
}

.single-publications .issue-areas a:last-of-type:after {
  content: none;
}

.single-publications p.report-link a {
  font-size: 2.2rem;
  font-family: "BrandonTextWeb-Bold";
  text-decoration: none;
  background: #ef5a44;
  color: #ffffff;
  border-radius: 0.8rem;
  display: inline-block;
  transition: all 0.2s ease 0s;
  padding: 2.1rem 6.9rem 1.7rem;
}

.single-publications p.report-link a:hover {
  transition: all 0.2s ease 0s;
  background: #d14f3b;
}

.single-publications p.report-link a[href$=".pdf"] {
  background-image: url("/wp-content/themes/earnepi/images/pdf-icon.png");
  background-repeat: no-repeat;
  background-size: 24px 29px;
  background-position: 90% center;
}

.search-results h2.entry-title {
  margin-bottom: 1rem;
}

.search-results h2.entry-title a {
  color: #3d4349;
  text-decoration: none;
}

.search-results article {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1029px) {
  .search-results article {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .search-results article {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .search-results article {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.search-results article header.entry-header {
  padding-left: initial;
  padding-right: initial;
}

.search-results article .entry-summary {
  margin: 0 0 4.2rem;
}

.search-results .site-main .posts-navigation {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
  margin-bottom: 6rem;
}

@media screen and (max-width: 1029px) {
  .search-results .site-main .posts-navigation {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 540px) {
  .search-results .site-main .posts-navigation {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .search-results .site-main .posts-navigation {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.search-results ul.pub-details {
  margin: 0;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.search-results ul.pub-details li {
  list-style: none;
  display: inline;
}

.search-results ul.pub-details li:before {
  content: '·';
  margin: 0 0.5rem;
  font-family: "BrandonTextWeb-Bold";
  color: #3d4349;
}

.search-results ul.pub-details li:first-of-type:before {
  content: none;
}

.search-results ul.pub-details li a {
  font-weight: bold;
  text-decoration: none;
}

/*# sourceMappingURL=style.css.map */