/*

SASS_STYLE.SCSS CONTENTS

This file is set up for mobile-first coding. See below for file structure:

- Variables and mixins
- General
  This is where global styles go, as well as styles that apply to content
- Header
- Main Menu
- Footer
- Interior Pages
	- Sidebar
	- Pagination
- Home
- Media Queries
	- Tablet Portrait (768px); corresponds with Bootstrap 'sm'
	- Tablet Landscape (992px); corresponds with Bootstrap 'md'
	- Desktop (1200px); corresponds with Bootstrap 'lg'

*/
@import url("https://fonts.googleapis.com/css?family=Work+Sans:400,800");
@import url("https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i");
/*
	= Variables and mixins	
*******************************************************************************************/
/* Use this mixin when using webfonts that appear darker than in mockups (especially complex fonts) */
/* This is also useful when using light text against a dark background; this will make the text crisper and less fuzzy */
.white-button {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  background-color: #FFF;
  border: 1px solid #E8A010;
  border-radius: 4px;
  padding: 5px 10px;
  color: #958F8F;
  font-weight: bold;
  transition: background-color 0.2s ease-out; }
  .white-button:hover {
    background-color: #E8A010;
    color: #fff;
    text-decoration: none; }

/*
	= General	
*******************************************************************************************/
html {
  overflow-x: hidden; }

body {
  overflow: hidden; }

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

body {
  font: normal normal normal 16px/130% "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #4A4A4A;
  padding-bottom: 0;
  background-color: #F4F6F5;
  background-image: url(../../images/45-degree-fabric-light.png);
  line-height: 24px; }

img {
  max-width: 100%;
  height: auto; }

.wp-caption {
  max-width: 100%;
  margin-bottom: 20px; }
  .wp-caption img {
    width: 100%;
    height: auto; }
  .wp-caption .wp-caption-text {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 22px;
    color: #958F8F;
    font-family: "Work Sans", sans-serif; }

.alignleft {
  float: left;
  margin-right: 30px; }

.aligncenter {
  margin: 15px auto;
  display: block; }

.alignright {
  float: right;
  margin-left: 30px; }

input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none; }

a {
  color: #895e09;
  transition: all 0.2s ease-out; }
  a:hover {
    text-decoration: none;
    color: #b87f0d; }

em {
  font-style: italic; }

strong {
  font-weight: bold; }

p {
  margin-bottom: 15px; }

blockquote, blockquote * {
  font-family: "Libre Baskerville", serif;
  margin: 15px 0;
  line-height: 150%;
  font-size: 16px;
  color: #666666;
  border-color: #E8A010; }

h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #262424;
  margin: 30px 0 15px; }

h2 {
  font-size: 30px; }

h3 {
  font-size: 24px; }

h4 {
  font-size: 20px; }

h5 {
  font-size: 16px; }

h6 {
  font-size: 14px;
  text-transform: uppercase; }

> h2 {
  font-size: 40px; }

ul {
  padding-left: 30px;
  list-style-type: disc;
  margin-bottom: 15px; }
  ul ul {
    padding-left: 20px;
    list-style-type: circle;
    margin-bottom: 0; }
    ul ul ul {
      list-style-type: circle; }

ol {
  padding-left: 30px;
  list-style-type: decimal;
  margin-bottom: 15px; }
  ol ul {
    padding-left: 20px;
    list-style-type: disc;
    margin-bottom: 0; }
    ol ul ul {
      list-style-type: circle; }
  ol ol {
    padding-left: 20px; }

.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]),
.frm_style_formidable-style.with_frm_style textarea {
  padding: 8px; }
  .frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus,
  .frm_style_formidable-style.with_frm_style textarea:focus {
    border-color: #E8A010; }

/*
	= Header	
*******************************************************************************************/
.navbar-wrapper {
  position: static; }

.navbar-wrapper .container {
  padding: 0; }

.navbar {
  border: none;
  margin-bottom: 0px;
  background-color: #262424;
  background-color: rgba(38, 36, 36, 0.9); }
  .navbar #top-donate {
    background-color: #E8A010;
    font-family: "Work Sans", sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 25px;
    padding: 10px;
    color: #262424;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    transition: background-color 200ms ease-out;
    display: inline-block; }
    .navbar #top-donate:hover {
      box-shadow: none;
      background-color: #d0900e;
      text-decoration: none;
      color: #fff; }

.left {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px; }

.brand {
  max-width: 140px;
  margin-top: 12px;
  margin-left: 15px;
  transition: all 0.3s ease-in-out; }
  .brand h1 {
    display: inline-block;
    margin: 0;
    line-height: 100%;
    font-size: 0px; }
  .brand img {
    vertical-align: super; }

#search-2 {
  float: right; }

.topsearchform .search-field,
.mobilesearchform .search-field {
  border: 1px solid #E8A010;
  padding: 2px 5px; }

/*
	= Main Menu	
*******************************************************************************************/
.menu-collapser {
  display: none !important; }

.navbar-toggle {
  background-color: #262424; }
  .navbar-toggle .icon-bar {
    background-color: #E5E5E5; }

ul.slimmenu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: block !important;
  transition: all 0.2s ease-out; }
  ul.slimmenu li {
    position: relative;
    display: inline-block; }
    ul.slimmenu li a {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      display: block;
      color: #FFF;
      padding: 10px 64px 10px 15px;
      font-size: 18px;
      font-weight: 800;
      font-family: "Work Sans", sans-serif;
      text-transform: uppercase;
      transition: color 0.5s ease-out; }
      ul.slimmenu li a:hover {
        text-decoration: none;
        color: #E8A010; }
    ul.slimmenu li .sub-collapser {
      background: none repeat scroll 0 0 rgba(0, 0, 0, 0.075);
      position: absolute;
      right: 0;
      top: 0;
      width: 48px;
      height: 100%;
      text-align: center;
      z-index: 999;
      cursor: pointer; }
      ul.slimmenu li .sub-collapser:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -0.25em; }
      ul.slimmenu li .sub-collapser > i {
        color: #333;
        font-size: 18px;
        display: inline-block;
        vertical-align: middle;
        font-style: normal; }
    ul.slimmenu li > ul {
      display: none;
      position: absolute;
      left: 0;
      top: 100%;
      z-index: 999;
      width: 100%; }
      ul.slimmenu li > ul > li ul {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        z-index: 999;
        width: 100%; }
  ul.slimmenu > li {
    margin-right: -5px; }
  ul.slimmenu ul {
    margin: 0;
    list-style-type: none; }
    ul.slimmenu ul li {
      background-color: #BBB; }
  ul.slimmenu.collapsed li {
    display: block;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box; }
    ul.slimmenu.collapsed li a {
      display: block;
      border-bottom: 1px solid rgba(0, 0, 0, 0.075);
      box-sizing: border-box;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box; }
    ul.slimmenu.collapsed li .sub-collapser {
      height: 40px; }
    ul.slimmenu.collapsed li > ul {
      display: none;
      position: static; }

.collapse-button {
  display: none; }

.navbar-collapse {
  max-height: 100%; }

/*
	= Footer 	
*******************************************************************************************/
.footer-wrapper {
  background-color: #262424;
  padding: 40px 0px;
  margin-top: 100px; }

footer {
  text-align: center; }

#menu-footer-menu {
  margin: 20px auto;
  font-size: 14px; }
  #menu-footer-menu li {
    list-style: none;
    display: inline;
    margin-right: 10px; }
    #menu-footer-menu li a {
      color: #4d4949; }
      #menu-footer-menu li a:hover {
        color: #676262;
        text-decoration: none; }

/*
	= Interior pages 	
*******************************************************************************************/
.page-template .container-normal,
.page-template-default .container-normal,
.category .container-normal,
.single .container-normal,
.archive .container-normal,
.search-results .container-normal {
  padding-top: 20px; }
  .page-template .container-normal .entry .row,
  .page-template-default .container-normal .entry .row,
  .category .container-normal .entry .row,
  .single .container-normal .entry .row,
  .archive .container-normal .entry .row,
  .search-results .container-normal .entry .row {
    margin-bottom: 40px; }

.page-template .container-normal, .single .container-normal {
  max-width: 945px; }

.maincontent.lower {
  padding-bottom: 50px; }

.container-normal .row.maincontent .page-title {
  font-size: 32px;
  line-height: 40px;
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
  margin-top: 0; }

/* Container-normal */
ul.share-links {
  list-style: none;
  padding-left: 0; }
  ul.share-links li {
    background-color: transparent;
    display: inline-block; }
    ul.share-links li a {
      color: #E8A010;
      padding: 3px;
      transition: color 200ms ease-out; }
      ul.share-links li a:hover {
        color: #262424; }
    ul.share-links li.share-description {
      color: #958F8F;
      font-family: "Work Sans", sans-serif;
      text-transform: uppercase;
      font-size: 12px; }
      ul.share-links li.share-description:hover {
        background-color: transparent; }

#breadcrumbs {
  list-style: none;
  margin: 10px 0;
  overflow: hidden;
  padding-left: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  color: #958F8F; }
  #breadcrumbs li {
    float: left;
    margin-right: 15px;
    color: #958F8F; }
    #breadcrumbs li a {
      color: #958F8F; }
  #breadcrumbs .separator {
    font-weight: 700;
    font-size: 20px;
    color: #999; }

h4.entry-title {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  margin: 0 0 10px 0;
  font-weight: bold; }
  h4.entry-title a {
    color: #262424;
    transition: 0.1s ease-out; }
    h4.entry-title a:hover {
      text-decoration: none;
      color: #E8A010; }

.row > article {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8A010;
  overflow: hidden; }

.press-releases-wrapper h3 {
  margin-bottom: 1em; }
.press-releases-wrapper .metadata {
  display: block;
  margin-bottom: 0.5em; }
.press-releases-wrapper h4 {
  margin-top: 0;
  margin-bottom: 1.5em;
  font-family: "Work Sans", sans-serif; }
  .press-releases-wrapper h4 a {
    color: #895e09; }
    .press-releases-wrapper h4 a:hover {
      text-decoration: none;
      color: #d0900e; }

.entry h3 {
  font-family: "Work Sans", sans-serif;
  border-bottom: 1px solid #d9d6d6;
  font-weight: 700;
  padding-bottom: 5px; }

/* Our Work Categories Page *************************************************/
#search-filter-form-2642,
#search-filter-form-2403 {
  /*
  Hide radio button (the round disc)
  we will use just the label to create pushbutton effect
*/
  /*
    Change the look'n'feel of labels (which are adjacent to radiobuttons).
    Add some margin, padding to label
  */
  /*
   Change background color for label next to checked radio button
   to make it look like highlighted button
  */ }
  #search-filter-form-2642 ul,
  #search-filter-form-2403 ul {
    margin: 0;
    padding: 0; }
    #search-filter-form-2642 ul ul li:first-child,
    #search-filter-form-2403 ul ul li:first-child {
      display: none; }
  #search-filter-form-2642 input[type=radio],
  #search-filter-form-2403 input[type=radio] {
    display: none;
    margin: 10px; }
  #search-filter-form-2642 input[type=radio] + label,
  #search-filter-form-2403 input[type=radio] + label {
    background-color: #E8A010;
    font-family: "Work Sans", sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 25px;
    padding: 10px;
    color: #262424;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    transition: background-color 200ms ease-out;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    cursor: pointer;
    min-height: 200px; }
    #search-filter-form-2642 input[type=radio] + label:hover,
    #search-filter-form-2403 input[type=radio] + label:hover {
      box-shadow: none;
      background-color: #d0900e;
      text-decoration: none;
      color: #fff; }
  #search-filter-form-2642 input[type=radio]:checked + label,
  #search-filter-form-2403 input[type=radio]:checked + label {
    background-image: none;
    background-color: #262424;
    color: white; }

.page-template-page-nosidebar .widget_search_filter_register_widget .widget-title {
  display: none; }
.page-template-page-nosidebar #search-filter-form-2403 {
  margin-bottom: 20px; }
  .page-template-page-nosidebar #search-filter-form-2403 input[type=radio] + label {
    min-height: inherit; }
  .page-template-page-nosidebar #search-filter-form-2403 ul {
    margin: 0;
    padding: 0; }
    .page-template-page-nosidebar #search-filter-form-2403 ul ul {
      display: flex;
      flex-wrap: wrap; }
      .page-template-page-nosidebar #search-filter-form-2403 ul ul li {
        flex-basis: 50%; }

/* 
	Our Work Page
	*************************************************/
#search-filter-results-2403 {
  margin-top: 30px; }
  #search-filter-results-2403 .row {
    margin-bottom: 0; }
    #search-filter-results-2403 .row article {
      margin-bottom: 30px;
      padding-bottom: 30px; }
  #search-filter-results-2403 article .col-sm-5 {
    position: relative; }
    #search-filter-results-2403 article .col-sm-5 img {
      transition: all 0.2s ease-out; }
      #search-filter-results-2403 article .col-sm-5 img:hover {
        opacity: 0.9; }
    #search-filter-results-2403 article .col-sm-5 span.res-cat {
      display: none;
      position: absolute;
      bottom: 0;
      left: 15px;
      text-transform: uppercase;
      color: #E8A010;
      padding: 5px;
      font-size: 12px;
      background-color: #000;
      font-family: "Work Sans", sans-serif;
      font-weight: bold; }
  #search-filter-results-2403 .entry-title small {
    color: #E8A010;
    font-size: 100%; }
    #search-filter-results-2403 .entry-title small:hover {
      color: #b87f0d; }

.search-filter-results h4.entry-title {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  margin: 0 0 10px 0;
  font-weight: bold;
  /*
  		margin: 0 0 10px 0;
  		color: $darkgrey;
  		font-family: $worksans;
  		font-size: 24px;
  		line-height: 24px;
  */ }
  .search-filter-results h4.entry-title a {
    color: #262424;
    transition: 0.1s ease-out; }
    .search-filter-results h4.entry-title a:hover {
      text-decoration: none;
      color: #E8A010; }

.wp-pagenavi a, .wp-pagenavi span {
  border-color: #E8A010;
  font-family: "Work Sans", sans-serif; }

.wp-pagenavi span.current {
  border-color: #E8A010;
  background-color: #FAE8C6; }

.metadata {
  font-size: 14px;
  color: #958F8F; }

/* Reading List ****************************************************/
.row.reading_list {
  margin-bottom: 0 !important; }
  .row.reading_list article {
    border-bottom: none;
    background-color: #f7f7f7;
    padding: 10px 5px 5px 5px;
    box-shadow: 0px 1px 1px rgba(38, 36, 36, 0.1); }
  .row.reading_list .entry-title small {
    color: #7f7f7f; }
  .row.reading_list .name-author,
  .row.reading_list .meta-date {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 5px; }
  .row.reading_list .metadata.categories {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    clear: both;
    margin-bottom: 15px; }
  .row.reading_list .download {
    float: left;
    margin-right: 15px; }

#search-filter-results-2461 {
  margin-top: 40px; }

/* Sidebar
****************************************************/
#secondary h3.widget-title {
  margin-top: 0; }
#secondary aside {
  padding: 25px 30px 10px;
  margin-bottom: 20px;
  border: 1px solid #E8A010;
  border-radius: 4px;
  margin: 40px 10px;
  margin-bottom: 30px;
  background-color: #FFF; }
  #secondary aside .entry-content {
    margin: 15px;
    font-size: 18px;
    line-height: 28px; }
  #secondary aside .widget-title, #secondary aside .entry-title,
  #secondary aside h4 {
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    color: #262424;
    margin-bottom: 10px; }
  #secondary aside ul {
    list-style: none;
    padding-left: 0; }
  #secondary aside#text-2 {
    border: none;
    background-color: transparent; }
  #secondary aside .searchandfilter {
    font-family: "Work Sans", sans-serif;
    font-weight: 400; }
    #secondary aside .searchandfilter label {
      display: inline; }
    #secondary aside .searchandfilter > ul > li:last-child {
      margin-bottom: 10px; }
    #secondary aside .searchandfilter .sf-field-taxonomy-reading_type label,
    #secondary aside .searchandfilter .sf-field-taxonomy-reading_author label {
      font-weight: 400; }
    #secondary aside .searchandfilter .sf-field-taxonomy-reading_type .sf-count,
    #secondary aside .searchandfilter .sf-field-taxonomy-reading_author .sf-count {
      color: #E8A010; }
    #secondary aside .searchandfilter .sf-field-search label,
    #secondary aside .searchandfilter .sf-field-search input[type=text] {
      width: 100%;
      font-weight: 400 !important; }
    #secondary aside .searchandfilter div.chosen-container.chosen-container-multi {
      width: 100% !important; }
#secondary li {
  list-style: none; }
#secondary a.release {
  display: block;
  border-top: 1px solid #E8A010;
  padding: 5px 0; }
  #secondary a.release:last-child {
    border-bottom: 1px solid #E8A010; }
#secondary p {
  font-family: "Work Sans", sans-serif; }

/* Pagination
****************************************************/
.navigation {
  margin-top: 42px;
  margin-top: 3rem;
  margin-bottom: 70px;
  margin-bottom: 5rem; }
  .navigation li {
    display: inline; }
  .navigation li a, .navigation li a:hover, .navigation li.active a, .navigation li.disabled {
    color: #262424;
    text-decoration: none;
    background-color: #FFF;
    border-radius: 5px;
    cursor: pointer;
    padding: 12px 18px; }
  .navigation li a:hover, .navigation li.active a {
    background-color: #262424;
    color: #FFF; }
  .navigation .pull-left a, .navigation .pull-left i, .navigation .pull-right a, .navigation .pull-right i {
    transition: all 200ms ease-out;
    color: #E8A010; }
    .navigation .pull-left a:hover, .navigation .pull-left i:hover, .navigation .pull-right a:hover, .navigation .pull-right i:hover {
      color: #262424;
      text-decoration: none; }

/*
	= Home 	
*******************************************************************************************/
.mainpage h3 {
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center; }
.mainpage .news-title {
  margin-top: 40px; }
.mainpage .news {
  margin-bottom: 100px; }
  .mainpage .news article {
    max-width: 600px;
    height: 300px;
    overflow: hidden;
    margin: 0px auto 20px;
    position: relative;
    cursor: pointer; }
    .mainpage .news article .article-content {
      position: absolute;
      bottom: 0px;
      left: 0px;
      color: #FFF;
      z-index: 3;
      padding: 15px; }
      .mainpage .news article .article-content a, .mainpage .news article .article-content h4 {
        color: #FFF !important; }
        .mainpage .news article .article-content a:hover, .mainpage .news article .article-content h4:hover {
          text-decoration: none; }
      .mainpage .news article .article-content h4.entry-title {
        margin: 0;
        padding-bottom: 5px;
        font-family: "Work Sans", sans-serif;
        font-weight: 800; }
      .mainpage .news article .article-content .entry-summary {
        font-size: 14px; }
    .mainpage .news article .shadow {
      background-image: linear-gradient(-180deg, rgba(38, 36, 36, 0) 20%, #262424 100%);
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      bottom: -1px;
      z-index: 2;
      transition: all 1s ease-in-out; }
    .mainpage .news article:hover .shadow {
      background-image: linear-gradient(-180deg, rgba(38, 36, 36, 0.5) 0%, #262424 100%); }
.mainpage .featured-res {
  margin-bottom: 100px; }
  .mainpage .featured-res .entry-title,
  .mainpage .featured-res .entry-summary {
    display: none; }
  .mainpage .featured-res article {
    position: relative;
    border: 1px solid #FFFFFF;
    box-shadow: 0px 2px 2px 0px rgba(38, 36, 36, 0.4);
    display: block;
    max-width: 620px;
    margin: 0 auto;
    overflow: hidden; }
    .mainpage .featured-res article .entry-title {
      font-family: "Work Sans", sans-serif;
      font-weight: 800;
      position: absolute;
      margin: 0;
      top: 15px;
      left: 15px;
      right: 15px;
      text-transform: uppercase;
      text-align: center; }
      .mainpage .featured-res article .entry-title a {
        color: #FFF; }
        .mainpage .featured-res article .entry-title a:hover {
          text-decoration: none; }
    .mainpage .featured-res article .entry-summary {
      position: absolute;
      bottom: 15px;
      left: 15px;
      right: 15px;
      text-align: center; }
      .mainpage .featured-res article .entry-summary a {
        color: #FFF; }
        .mainpage .featured-res article .entry-summary a:hover {
          text-decoration: none; }
.mainpage .signup {
  margin-bottom: 100px;
  padding: 0 30px; }
  .mainpage .signup .widget-title {
    text-align: center;
    margin-top: 0; }
  .mainpage .signup legend {
    display: none; }
  .mainpage .signup label {
    display: none; }

/* mainpage */
/* Forms */
.frm_style_formidable-style.with_frm_style input[type=text], .frm_style_formidable-style.with_frm_style input[type=password], .frm_style_formidable-style.with_frm_style input[type=email], .frm_style_formidable-style.with_frm_style input[type=number], .frm_style_formidable-style.with_frm_style input[type=url], .frm_style_formidable-style.with_frm_style input[type=tel], .frm_style_formidable-style.with_frm_style input[type=phone], .frm_style_formidable-style.with_frm_style input[type=search], .frm_style_formidable-style.with_frm_style select, .frm_style_formidable-style.with_frm_style textarea, .frm_form_fields_style, .frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container, .frm_form_fields_active_style, .frm_form_fields_error_style, .frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices, .frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single {
  border-radius: 0px;
  line-height: 22px;
  border-color: #D0C9BB; }

.frm_style_formidable-style.with_frm_style input[type=submit] {
  background-color: #E8A010;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 25px;
  padding: 10px;
  color: #262424;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  transition: background-color 200ms ease-out;
  border-radius: 0px;
  border: none;
  text-transform: uppercase; }
  .frm_style_formidable-style.with_frm_style input[type=submit]:hover {
    box-shadow: none;
    background-color: #d0900e;
    text-decoration: none;
    color: #fff; }

a.learnmore {
  color: #FFF;
  background-color: #262424;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  margin-top: 20px; }

.flexslider {
  border: none; }

.slide-caption {
  background-image: linear-gradient(rgba(38, 36, 36, 0) 0%, rgba(38, 36, 36, 0.7) 100%); }
  .slide-caption h3 {
    font-size: 20px;
    line-height: normal;
    width: calc(100% - 150px);
    float: left;
    text-shadow: 0px 1px 2px rgba(38, 36, 36, 0.5);
    text-align: left; }
  .slide-caption h4 {
    background-color: #E8A010;
    font-family: "Work Sans", sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 25px;
    padding: 10px;
    color: #262424;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
    transition: background-color 200ms ease-out;
    float: right;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px; }
    .slide-caption h4:hover {
      box-shadow: none;
      background-color: #d0900e;
      text-decoration: none;
      color: #fff; }

#about-text {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  padding: 0 15px; }

/*
	= Media Queries	
*******************************************************************************************/
@media (max-width: 375px) {
  /* just phones up to phablet  */
  .slider a:hover {
    text-decoration: none; }
    .slider a:hover h3, .slider a:hover h4 {
      color: #5a5656; }

  .slide-caption {
    position: relative;
    background: #262424;
    min-height: 150px; }
    .slide-caption h3 {
      color: #fff;
      text-align: center;
      padding: 0 40px;
      line-height: normal;
      width: 100%;
      float: none; }
    .slide-caption h4 {
      text-align: center;
      float: none;
      position: absolute;
      bottom: 15px;
      left: 15px;
      right: 15px; }

  .mainpage .news article .article-content {
    position: relative; } }
@media (min-width: 376px) and (max-width: 767px) {
  #search-filter-form-2642 ul ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    #search-filter-form-2642 ul ul li {
      flex-basis: 50%;
      padding: 2px; } }
@media (min-width: 768px) {
  /* Tablet Portrait */
  /* Header */
  #site-navigation .navbar-nav {
    float: none; }

  ul.slimmenu {
    display: inline-block;
    text-align: center; }
    ul.slimmenu li a {
      padding: 10px 13px;
      font-size: 16px; }
    ul.slimmenu li > ul {
      left: -20px;
      text-align: left; }
      ul.slimmenu li > ul > li ul {
        left: 82%; }
    ul.slimmenu li ul.sub-menu {
      width: 260px; }
      ul.slimmenu li ul.sub-menu li a {
        width: 220px; }
    ul.slimmenu li .sub-collapser {
      display: none; }

  .navbar {
    width: 100%; }
    .navbar #top-search i.fa {
      font-size: 20px;
      line-height: 45px;
      color: #FFF;
      margin: 0px 15px 0px -10px; }
    .navbar #top-donate {
      margin-right: 20px; }

  .navbar-collapse.collapse {
    margin-top: 16px; }

  .brand {
    max-width: 220px;
    padding: 5px 0;
    margin-left: 0px;
    margin-top: 8px; }

  #topbar {
    margin-top: 10px; }

  .topsearchform {
    display: none;
    position: absolute;
    right: 180px;
    top: 18px; }
    .topsearchform input[type="submit"] {
      display: none; }

  footer {
    text-align: left; }

  .slide-caption h3 {
    text-align: left !important;
    font-size: 36px;
    width: calc(100% - 220px); }
  .slide-caption h4 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px; }

  #about-text {
    font-size: 18px; }

  .mainpage h3 {
    font-size: 24px;
    text-align: center; }

  .container-normal .row.maincontent .page-title {
    font-size: 56px;
    line-height: 59px;
    font-family: "Work Sans", sans-serif;
    font-weight: bold;
    margin-top: 10px; }

  #search-filter-form-2642 ul ul {
    display: flex;
    justify-content: space-between; }
    #search-filter-form-2642 ul ul li {
      width: 25%;
      padding: 0 2px; }

  .page-template-page-nosidebar #search-filter-form-2403 {
    margin-bottom: 40px; }
    .page-template-page-nosidebar #search-filter-form-2403 ul ul li {
      flex-basis: 25%; } }
@media (min-width: 767px) and (max-width: 1170px) {
  #site-navigation {
    clear: both; }

  ul.slimmenu {
    margin-left: 0px; } }
@media (min-width: 992px) {
  /* Tablet Landscape */
  ul.slimmenu {
    margin-left: 15px; }

  #about-text {
    font-size: 24px; }

  .mainpage h3 {
    font-size: 48px;
    text-align: left; }
  .mainpage .news article {
    height: auto; } }
@media (min-width: 1200px) {
  /* Desktop */
  .brand {
    margin-bottom: 0;
    margin-left: 15px; }

  #site-navigation {
    clear: none; }
    #site-navigation .navbar-nav {
      float: left; }

  ul.slimmenu {
    margin-left: 30px;
    text-align: left; }

  .slide-caption h3 {
    font-size: 48px; } }

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