/*
Theme Name:  National Able Network
Theme URI: http://www.cyberoptik.net
Description: Responsive Wordpress theme created by CyberOptik
Version: 1.0
Author: CyberOptik
Author URI: http://www.cyberoptik.net
*/

/*
 * STNDRD THEME
 * CUSTOMIZABLE CSS
 */

/* -----------------------------------------------------------------------------
 * TABLE OF CONTENTS:
 * -----------------------------------------------------------------------------
 *
 * 1 CSS IMPORTS
 *   1.1 FRAMEWORK
 *   1.2 MODULES
 *   1.3 STYLES
 *
 * 2 STRUCTURAL ELEMENTS
 *   2.1 UNIVERSAL STYLES
 *   2.2 UNIVERSAL THEME MODULES
 *   2.3 BORDER STYLES
 *
 * 3 CONTENT STYLES
 *   3.1 TEXT LINKS
 *   3.2 HEADINGS
 *   3.3 PARAGRAPHS
 *   3.4 QUOTES
 *   3.5 DIVIDERS
 *   3.6 MEDIA MODULES & STYLES
 *   3.7 BUTTONS
 *   3.8 ICONS
 *   3.9 BOX STYLES
 *
 * 4 HEADER STYLES
 *   4.1 SCROLL BAR
 *   4.2 TOP BAR
 *   4.3 HEADER 
 *   4.4 NAV
 *   4.5 MAIN MENU
 *   4.6 MOBILE MENU
 *
 * 5 BODY STYLES
 *   5.1 BANNER
 *   5.2 BREADCRUMBS
 *   5.3 PAGE TITLE
 *   5.4 BODY
 *   5.5 CONTENT
 *   5.6 SIDEBAR
 *
 * 6 TEMPLATE STYLES
 *   6.1 SIDEBAR LEFT
 *   6.2 SIDEBAR BOTH
 *   6.3 SECTIONS
 *   6.4 HOME
 *
 * 7 FOOTER STYLES
 *   7.1 FOOTER
 *   7.2 FOOTER NAV
 *   7.3 BOTTOM BAR
 *
 * 8 CUSTOM THEME STYLES
 *
 * ---------------------------------------------------------------------------*/

/******************************************************************************
 * * *  1 CSS IMPORTS  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

/***  1.1 FRAMEWORK  ***/

@import url("stndrd/framework/css/stndrd.min.css");

/***  1.2 MODULES  ***/

/* Accordion */
@import url("stndrd/accordion/accordion.min.css");

/* Animations */
@import url("stndrd/animations/css/animate.min.css");

/* Icons */
@import url("stndrd/icons/css/icons.min.css");

/* Main Menu */
@import url("stndrd/main-menu/main-menu.min.css");

/* Sidebar Menu */
@import url("stndrd/sidebar-menu/sidebar-menu.min.css");

/* Scroll Bar */
@import url("stndrd/scroll-bar/scroll-bar.min.css");

/* Search Overlay */
@import url("stndrd/search-overlay/search-overlay.min.css");

/* Tab Box */
@import url("stndrd/tab-box/tab-box.min.css");

/* Recent Posts */
@import url("stndrd/recent-posts/recent-posts.min.css");

/***  1.3 STYLES  ***/

/* Stndrd Styles */
@import url("stndrd/styles/stndrd-styles.min.css");

/* Visual Form Builder Styles */
@import url("stndrd/styles/vfb-styles.min.css");

/******************************************************************************
 * * *  2 STRUCTURAL ELEMENTS  * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

/***  2.1 UNIVERSAL STYLES  ***/

html {
  font-size: 16px;
}

body {
  background: #f5f3e4;
  font-family: "proxima-nova", sans-serif;
  line-height: 1.4em;
  color: #777;
}

/***  2.2 UNIVERSAL THEME STYLES  ***/

.section-container {
  max-width: 1300px; /* Set the maximum width of the website */
  padding: 0 50px;
}

.section-centered {
  width: 80%;
}

.pad-row > [class*="col-"] {
  padding: 1em 2.5%;
}

.col-custom {
  display: block;
  width: 97.5%;
}

.col-fixed {
  width: 150px;
}

@media screen and (max-width: 900px) {
  .section-container {
    padding: 0 40px;
  }

  .col-custom {
    width: 96%;
  }
}

@media screen and (max-width: 600px) {
  .section-container {
    padding: 0 25px;
  }

  .section-centered {
    width: 100%;
  }
}

@media screen and (max-width: 420px) {
  .section-container {
    padding: 0 15px;
  }
}

/***  2.3 BORDER STYLES  ***/

/******************************************************************************
 * * *  3 CONTENT STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/

/***  3.1 TEXT LINKS  ***/

a {
  color: #7db751;
  text-decoration: none;
}

a:hover {
  color: #087832;
  text-decoration: underline;
}

.box-link {
  display: block;
}

a.box-link,
a.box-link:hover {
  text-decoration: none;
}

[class*="col-"] .box-link + p {
  display: none;
}

/***  3.2 HEADINGS  ***/

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-family: "proxima-nova", sans-serif;
  font-weight: normal;
  line-height: 1.1em;
  color: #087832;
}

h1 {
  font-size: 2.6em;
  letter-spacing: 2px;
  font-family: "proxima-nova-condensed", sans-serif;
  line-height: 1.3em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.3em;
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.9em;
}

h6 {
  font-size: 0.8em;
}

.content .alignleft + h1,
.content .alignleft + h2,
.content .alignleft + h3,
.content .alignleft + h4,
.content .alignleft + h5,
.content .alignleft + h6,
.content .alignright + h1,
.content .alignright + h2,
.content .alignright + h3,
.content .alignright + h4,
.content .alignright + h5,
.content .alignright + h6 {
  margin-top: 0.6em;
}

.title {
}

/***  3.3 PARAGRAPHS  ***/

p {
  line-height: 1.4em;
}

/***  3.4 QUOTES  ***/

blockquote {
  padding: 5px 0 5px 15px;
  border-left: 5px solid black;
  margin-left: 2em;
  font-size: 1.4em;
  font-style: italic;
  font-weight: normal;
  font-weight: 300;
}

/***  3.5 DIVIDERS  ***/

hr {
  display: block;
  width: 100%;
  height: 15px;
  padding: 0;
  border: 0;
  margin: 2.5em auto;
  background: url(images/divider.png) center center repeat-x;
  clear: both;
}

.content-section + hr {
  margin: 0;
}

/***  3.6 MEDIA MODULES & STYLES  ***/

/*  Images  */

.content a img {
  opacity: 0.9;
}

.content a:hover img {
  opacity: 1;
}

.content img.alignleft,
.content img.alignright {
  max-width: 50%;
}

@media screen and (max-width: 420px) {
  .content img.alignleft,
  .content img.alignright {
    max-width: 100%;
  }
}

/*  Video  */

.video {
  max-width: 700px;
} /* Sets the max width for HTML5, Youtube, and Vimeo Videos */

.vjs-default-skin .vjs-play-progress,
.vjs-default-skin .vjs-volume-level {
  background-color: #418cbe; /* Sets HTML5 Video player theme color */
}

/***  3.7 BUTTONS  ***/

.button {
  padding: 0.4em 1.2em;
  border: 2px solid #e87a1e;
  border-radius: 6px;
  background-color: #e87a1e;
  font-weight: 600;
  color: white;
  webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.button-empty,
.button-empty .icon {
  background: none;
  color: #e87a1e;
}

.button:hover,
.button-empty:hover {
  border-color: #087832;
  background: #087832;
  color: white;
}

.button .icon,
.button:hover .icon .button-empty:hover .icon {
  color: white;
}

/***  3.8 ICONS  ***/

.icon {
  color: #e87a1e;
}

a .icon {
  color: #e87a1e;
  webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

a:hover .icon {
  color: #087832;
}

/*  Icon Backgrounds  */

.icon-bg {
  color: white;
  background-color: #e87a1e;
}

a .icon-bg {
  color: #eee;
  background-color: #e87a1e;
}

a:hover .icon-bg {
  color: white;
  background-color: #087832;
}

/*  Icon Borders  */

.icon-br {
  border-color: #e87a1e;
}

a .icon-br {
  border-color: #e87a1e;
}

a:hover .icon-br {
  border-color: #087832;
}

/*  Icon Lists  */

[class*="list-icon"] li:before,
li[class*="list-icon"]:before {
  color: #e87a1e;
}

/***  3.9 BOX STYLES  ***/

/* Feature Box */

.feature {
  padding: 20px !important;
  background: #f5f3e4;
}

.feature h1,
.feature h2,
.feature h3,
.feature h4,
.feature h5,
.feature h6 {
  margin: 0.4em 0;
}

.feature h1:first-child,
.feature h2:first-child,
.feature h3:first-child,
.feature h4:first-child,
.feature h5:first-child,
.feature h6:first-child {
  margin-top: 0;
}

.feature h1:last-child,
.feature h2:last-child,
.feature h3:last-child,
.feature h4:last-child,
.feature h5:last-child,
.feature h6:last-child {
  margin-bottom: 0;
}

/*  Icon Box  */

[class*="col-"][class*="icon-box"],
[class*="icon-box"] [class*="col-"] {
  position: relative;
}

[class*="icon-box"] h1,
[class*="icon-box"] h2,
[class*="icon-box"] h3,
[class*="icon-box"] h4,
[class*="icon-box"] h5,
[class*="icon-box"] h6 {
  margin: 0;
}

[class*="col-"].icon-box-left,
.icon-box-left [class*="col-"] {
  padding-left: 3.5em;
  margin-top: 1em;
  margin-bottom: 1.5em;
}

.icon-box-left .icon {
  position: absolute;
  top: 0;
  left: 0;
}

[class*="col-"].icon-box-top,
.icon-box-top [class*="col-"] {
  padding: 20px;
  border: 1px solid #d2d2d2;
  margin-top: 2.25em !important;
  margin-bottom: 1em !important;
  text-align: center;
}

.icon-box-top .icon,
.icon-box-top a .icon {
  margin-top: -2em;
  background: white !important;
}

@media screen and (max-width: 900px) {
  [class*="col-"].icon-box-top,
  .icon-box-top [class*="col-"] {
    margin-bottom: 3.5em !important;
  }

  [class*="col-"].icon-box-top:last-child,
  .icon-box-top [class*="col-"]:last-child,
  [class*="tablet-col-"].icon-box-top,
  .icon-box-top [class*="tablet-col-"] {
    margin-bottom: 0.5em !important;
  }
}

@media screen and (max-width: 600px) {
  [class*="col-"].icon-box-top,
  .icon-box-top [class*="col-"],
  [class*="tablet-col-"].icon-box-top,
  .icon-box-top [class*="tablet-col-"] {
    margin-bottom: 3.5em !important;
  }

  [class*="col-"].icon-box-top:last-child,
  .icon-box-top [class*="col-"]:last-child,
  [class*="tablet-col-"].icon-box-top:last-child,
  .icon-box-top [class*="tablet-col-"]:last-child,
  [class*="mobile-col-"].icon-box-top,
  .icon-box-top [class*="mobile-col-"] {
    margin-bottom: 0.5em !important;
  }
}

@media screen and (max-width: 420px) {
  [class*="col-"].icon-box-top,
  .icon-box-top [class*="col-"],
  [class*="tablet-col-"].icon-box-top,
  .icon-box-top [class*="tablet-col-"],
  [class*="mobile-col-"].icon-box-top,
  .icon-box-top [class*="mobile-col-"] {
    margin-bottom: 3.5em !important;
  }

  [class*="col-"].icon-box-top:last-child,
  .icon-box-top [class*="col-"]:last-child,
  [class*="tablet-col-"].icon-box-top:last-child,
  .icon-box-top [class*="tablet-col-"]:last-child,
  [class*="mobile-col-"].icon-box-top:last-child,
  .icon-box-top [class*="mobile-col-"]:last-child {
    margin-bottom: 0.5em !important;
  }
}

/* Call to Action Box */

.cta {
  position: relative;
  padding: 20px 0;
  border-top: 7px solid #cfccb9;
  border-bottom: 7px solid #cfccb9;
  background: none;
  text-transform: uppercase;
  font-size: 1.5em;
  font-family: "proxima-nova-condensed", sans-serif;
  color: #087832;
}

.cta-with-image {
  padding-left: 100px;
}

.cta-with-image img {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100px;
}

@media screen and (min-width: 901px) {
  .content .cta [class*="col-"] {
    vertical-align: middle;
    margin-top: 0;
    margin-bottom: 0;
  }
}

/******************************************************************************
 * * *  4 HEADER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

/***  4.1 SCROLL BAR  ***/

.scroll-bar {
  border-top: 3px double #4d945c;
  border-bottom: 3px double #4d945c;
  background: #087832;
  text-align: center;
}

/***  4.2 TOP BAR  ***/

.top-bar .col-custom {
  display: inline-block;
  vertical-align: middle;
  width: 47.5%;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  font-size: 0.8em;
}

.top-bar .col-custom:nth-child(2) {
  text-transform: uppercase;
  text-align: right;
}

.top-bar a {
  color: #e87a1e;
}

.top-bar a:hover {
  text-decoration: none;
  color: #087832;
}

.top-bar h1,
.top-bar h2,
.top-bar h3,
.top-bar h4,
.top-bar h5,
.top-bar h6 {
  margin: 0;
}

.top-bar p {
  margin: 0;
}

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

.top-bar li {
  display: inline-block;
  padding: 0;
  margin: 0;
}

.top-bar li a {
  padding: 0 10px;
}

.top-bar li:first-child a {
  padding-left: 0;
}

.top-bar li:last-child a {
  padding-right: 0;
}

.top-bar li ul {
  display: none;
}

@media screen and (max-width: 900px) {
  .top-bar {
    background: #087832;
  }

  .top-bar .col-custom {
    display: inline-block;
    width: 46%;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
  }

  .top-bar a {
    color: #f5b75d;
  }

  .top-bar a:hover {
    color: white;
  }
}

@media screen and (max-width: 420px) {
  .top-bar .col-custom,
  .top-bar .col-custom:nth-child(2) {
    display: block;
    width: 96%;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    text-align: center;
  }

  .top-bar .col-custom:first-child {
    padding-top: 0.5em;
  }

  .top-bar .col-custom:last-child {
    padding-bottom: 0.5em;
  }
}

/***  4.3 HEADER  ***/

.header {
  background: #087832;
}

.header-inner {
  padding-right: 0;
}

.header:before {
  display: block;
  height: 3px;
  border-bottom: 1px solid #52a764;
  content: "";
}

.header:after {
  display: block !important;
  visibility: visible !important;
  height: 3px;
  border-top: 1px solid #52a764;
  content: "";
}

.header .logo-wrapper {
  margin-top: -55px;
  margin-bottom: -55px;
}

.logo {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 250px;
  padding: 1em;
  margin: 0 auto;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.logo img {
  max-height: 130px;
}

.header p {
  margin: 0.5rem 0;
}

.header p:first-child {
  margin-top: 0;
}

.header p:last-child {
  margin-bottom: 0;
}

.header h1,
.header h2,
.header h3,
.header h4,
.header h5,
.header h6 {
  margin: 0.5rem 0;
}

.header h1:first-child,
.header h2:first-child,
.header h3:first-child,
.header h4:first-child,
.header h5:first-child,
.header h6:first-child {
  margin-top: 0;
}

.header h1:last-child,
.header h2:last-child,
.header h3:last-child,
.header h4:last-child,
.header h5:last-child,
.header h6:last-child {
  margin-bottom: 0;
}

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

.header .widget li {
  display: inline-block;
}

.header .widget li a {
  padding: 0 10px;
}

.header .widget li a .icon {
  margin-right: 4px;
}

.header .widget li a .social-icon {
  margin-right: 0;
}

.header .widget li ul {
  display: none;
}

.header-buttons a .icon {
  color: #e87a1e;
}

.header-buttons a:hover .icon {
  color: #7db751;
}

.header-buttons a.active .icon {
  background: #e87a1e;
  color: white;
}

@media screen and (max-width: 1024px) {
  .header {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .header .col-custom {
    padding: 0;
  }

  .header .logo-wrapper {
    margin-top: -47px;
    margin-bottom: -47px;
    text-align: center;
  }

  .logo img {
    max-height: 105px;
  }
}

@media screen and (max-width: 900px) {
  .header {
    background: white;
  }

  .header:before,
  .header:after {
    display: none !important;
  }

  .header .logo-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
  }

  .header .logo {
    padding: 0;
    box-shadow: none;
  }

  .logo img {
    max-height: 90px;
  }
}

/***  4.4 NAV  ***/

.nav {
  background: #eee;
}

/*  Nav Widget Styles  */

.nav .widget h1,
.nav .widget h2,
.nav .widget h3,
.nav .widget h4,
.nav .widget h5,
.nav .widget h6 {
  margin: 0;
}

.nav .widget p {
  margin: 0;
}

.nav .widget ul,
.nav .widget .menu {
  margin: 0;
  list-style: none;
}

.nav .widget li {
  display: inline-block;
}

.nav .widget li a {
  padding: 0 10px;
}

.nav .widget li ul {
  display: none;
}

.nav .widget li a .icon {
  margin-right: 4px;
}

.nav .widget li a .social-icon {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .nav-container {
    padding: 0;
  }
}

/***  4.5 MAIN MENU  ***/

@media screen and (min-width: 1025px) {
  .main-menu-left {
    text-align: right;
  }

  .main-menu-right {
    text-align: left;
  }

  .main-menu > ul > li > a {
    text-transform: uppercase;
    font-size: 0.85em;
    color: white;
  }

  .main-menu > ul > li:first-child > a {
    padding-left: 0;
  }

  .main-menu > ul > li:last-child > a {
    padding-right: 0;
  }

  .main-menu > ul > li.current-menu-item > a,
  .main-menu > ul > li.current-page-parent > a,
  .main-menu > ul > li.current-page-ancestor > a,
  .main-menu > ul > li:hover > a {
    color: #f5b75d;
  }

  /* Dropdown Menu */

  .main-menu li > ul {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: white;
  }

  .main-menu > ul > li > ul {
    left: 50% !important;
    margin-left: -100px;
  }

  .main-menu > ul > li.double-wide > ul {
    margin-left: -200px;
  }

  .main-menu > ul > li > ul:before {
    position: absolute;
    bottom: 100%;
    left: 50%;
    display: block;
    margin-bottom: -6px;
    margin-left: -0.5em;
    font: normal normal normal 18px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    content: "\f0d8";
    color: white;
  }

  .main-menu li ul a,
  .main-menu li ul li.current-page-ancestor.primary-in-menu > a,
  .main-menu li ul li.current-page-parent.primary-in-menu > a {
    padding: 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #5e5e5e;
    text-transform: uppercase;
    font-size: 0.75em;
    background: white;
    text-align: center;
  }

  .main-menu li ul li.current-page-ancestor > a,
  .main-menu li ul li.current-page-parent > a,
  .main-menu li ul li.current-menu-item > a,
  .single-team .main-menu li ul li.team-link > a,
  .single-board .main-menu li ul li.board-link > a,
  .single-careers .main-menu li ul li.careers-link > a,
  .main-menu li:hover ul li:hover > a {
    background: white;
    color: #e87a1e;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1300px) {
  .main-menu > ul > li > a {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 0.82em;
  }
}

@media screen and (min-width: 1101px) and (max-width: 1200px) {
  .main-menu > ul > li > a {
    font-size: 0.78em;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1100px) {
  .main-menu > ul > li > a {
    font-size: 0.68em;
  }
}

/***  4.6 MOBILE MENU  ***/

@media screen and (max-width: 1024px) {
  .mobile-menu {
    background: #055e26;
  }

  .mobile-menu::-webkit-scrollbar {
    width: 5px;
    background: #055e26;
  }

  .mobile-menu::-webkit-scrollbar-thumb {
    border: ;
    background: #03491e;
  }

  .mobile-menu li a {
    padding: 15px 20px;
    text-transform: uppercase;
    font-size: 0.84em;
    color: white;
  }

  .mobile-menu li.current-menu-item > a {
    color: #e87a1e;
  }

  .mobile-menu li a:hover {
    background: #e87a1e;
    color: white;
  }

  .mobile-menu li.menu-item-has-children:after {
    height: 54px;
    padding-top: 18px;
    color: white;
    font-size: 0.6em;
  }

  /* Sub Menus */

  .mobile-menu li ul li a {
    padding: 10px 20px;
  }

  .mobile-menu li ul li.menu-item-has-children:after {
    height: 44px;
    padding-top: 14px;
  }
}

/******************************************************************************
 * * *  5 BODY STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

/***  5.1 BANNER  ***/

.banner {
  display: none;
}

/***  5.2 BREADCRUMBS  ***/

.breadcrumbs {
  display: none;
}

/***  5.3 PAGE TITLE  ***/

.title-bar {
  padding-top: 1em;
  padding-bottom: 1em;
  background: #cfccb9;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.5), 0 0 14px rgba(0, 0, 0, 0.3);
}

.title-bar .col-custom {
  vertical-align: middle;
}

.title-bar h1,
.title-bar h2,
.title-bar h3,
.title-bar h4,
.title-bar h5,
.title-bar h6 {
  margin: 0;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  font-family: "proxima-nova-condensed", sans-serif;
  color: white;
}

.title-bar h1 {
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 0;
}

.title-bar p,
.title-bar ul,
.title-bar .menu {
  margin: 0;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4);
  font-size: 1.1em;
  color: white;
  list-style: none;
}

.title-bar li {
  display: inline-block;
}

.title-bar ul li a {
  padding: 0 10px;
}

.title-bar ul ul {
  display: none;
}

.title-bar li a .icon {
  margin-right: 4px;
}

.title-bar li a .social-icon {
  margin-right: 0;
}

/***  5.4 BODY  ***/

.main {
  padding-top: 50px;
  padding-bottom: 50px;

  background: #f5f3e4; /* Old browsers */

  background: -moz-linear-gradient(
    left,
    #f5f3e4 0%,
    #ffffff 6%,
    #ffffff 94%,
    #f5f3e4 100%
  ); /* FF3.6-15 */

  background: -webkit-linear-gradient(
    left,
    #f5f3e4 0%,
    #ffffff 6%,
    #ffffff 94%,
    #f5f3e4 100%
  ); /* Chrome10-25,Safari5.1-6 */

  background: linear-gradient(
    to right,
    #f5f3e4 0%,
    #ffffff 6%,
    #ffffff 94%,
    #f5f3e4 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f3e4', endColorstr='#f5f3e4',GradientType=1 ); /* IE6-9 */
}

.home .main {
  background: none;
}

/***  5.5 CONTENT  ***/

.content .section {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.content .section:first-child {
  margin-top: 0;
}

.content .section:last-child {
  margin-bottom: 0;
}

.content .row,
.content .grid,
.content .pad-row,
.content .pad-grid,
.content .fixed-row,
.content .fixed-grid,
.content .table-row,
.content .table-grid {
  margin-top: 1em;
  margin-bottom: 1em;
}

.content .row:first-child,
.content .grid:first-child,
.content .pad-row:first-child,
.content .pad-grid:first-child,
.content .fixed-row:first-child,
.content .fixed-grid:first-child,
.content .table-row:first-child,
.content .table-grid:first-child {
  margin-top: -0.5em;
}

.content .row:last-child,
.content .grid:last-child,
.content .pad-row:last-child,
.content .pad-grid:last-child,
.content .fixed-row:last-child,
.content .fixed-grid:last-child,
.content .table-row:last-child,
.content .table-grid:last-child {
  margin-bottom: -0.5em;
}

.content [class*="col-"] {
  margin-top: 1em;
  margin-bottom: 1em;
}

.content .pad-grid [class*="col-"],
.content .pad-row [class*="col-"] {
  margin-top: 0;
  margin-bottom: 0;
}

.content .alignleft {
  margin: 0 20px 1em 0;
  max-width: 50%;
}

.content .alignright {
  margin: 0 0 1em 20px;
  max-width: 50%;
}

@media screen and (max-width: 420px) {
  .content .alignleft,
  .content .alignright {
    float: none;
    display: block;
    max-width: 100%;
    margin: 1em 0;
    text-align: center;
  }

  .content .alignleft:first-child,
  .content .alignright:first-child {
    margin-top: 0;
  }

  .content .alignleft:last-child,
  .content .alignright:last-child {
    margin-bottom: 0;
  }
}

.content .center,
.content .centered,
.content .aligncenter,
.content .align-center {
  margin-top: 1em;
  margin-bottom: 1em;
}

.content .center:first-child,
.content .centered:first-child,
.content .aligncenter:first-child,
.content .align-center:first-child {
  margin-top: 0;
}

.content .center:last-child,
.content .centered:last-child,
.content .aligncenter:last-child,
.content .align-center:last-child {
  margin-bottom: 0;
}

.slider .round {
  overflow: visible !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}

/***  5.6 SIDEBAR  ***/

.sidebar {
  font-size: 0.9em;
}

.sidebar .sidebar-section {
  padding: 1.25em;
  margin: 3em 0;
  border: 1px solid #cfccb9;
  background: #eae8d9;
}

.sidebar .sidebar-section:first-child,
.sidebar .widget-area:first-child {
  margin-top: 0;
}

.sidebar .sidebar-section:last-child,
.sidebar .widget-area:last-child {
  margin-bottom: 0;
}

.sidebar h3 {
  margin-bottom: 0.5;
}

@media screen and (max-width: 900px) {
  .sidebar {
    margin-top: 3em;
  }
}

/*  About Sidebar */

.about .sidebar .sidebar-section {
  padding: 0;
  padding-bottom: 1em;
  border: none;
  border-bottom: 6px solid #006b34;
  margin: 0;
  margin-bottom: 1em;
  background: none;
}

.about .sidebar .sidebar-section:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.about .sidebar h3 {
  margin-bottom: 0;
}

.about .sidebar ul,
.about .sidebar li {
  padding: 0;
  margin: 0;
  border-top: none;
  border-bottom: none;
}

.about .sidebar li {
  margin-bottom: 0.5em;
}

.about .sidebar li a {
  display: block;
  padding: 0.5em 0;
  background: #f5f1e0;
  font-family: "proxima-nova-condensed", sans-serif;
  font-size: 1.2em;
  text-transform: uppercase;
  text-align: center;
  color: #4d4d4c;
  webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.about .sidebar li:first-child a {
  background: #cac7b2;
  font-weight: bold;
}

.about .sidebar li:hover a,
.about .sidebar li:first-child:hover a,
.about .sidebar li.current-menu-item a,
.team .sidebar li.team-link a,
.board .sidebar li.board-link a,
.careers .sidebar li.careers-link a {
  text-decoration: none;
  background: #e3a53c;
  color: white;
}

/*  About Sidebar */

.support .sidebar .sidebar-section {
  padding: 0;
  padding-bottom: 1em;
  border: none;
  border-bottom: 6px solid #006b34;
  margin: 0;
  margin-bottom: 1em;
  background: none;
}

.support .sidebar .sidebar-section:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.support .sidebar h3 {
  margin-bottom: 0;
}

.support .sidebar ul,
.support .sidebar li {
  padding: 0;
  margin: 0;
  border-top: none;
  border-bottom: none;
}

.support .sidebar li {
  margin-bottom: 0.5em;
}

.support .sidebar li a {
  display: block;
  padding: 0.5em 0;
  background: #f5f1e0;
  font-family: "proxima-nova-condensed", sans-serif;
  font-size: 1.2em;
  text-transform: uppercase;
  text-align: center;
  color: #4d4d4c;
  webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.support .sidebar li:hover a,
.support .sidebar li.current-menu-item a {
  text-decoration: none;
  background: #e3a53c;
  color: white;
}

.support .sidebar li.current-menu-item a {
  font-weight: bold;
}

/******************************************************************************
 * * *  6 PAGE TEMPLATE STYLES  * * * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/

/***  6.1 SIDEBAR LEFT  ***/

.sidebar-left .content {
  float: right;
}

@media screen and (max-width: 900px) {
  .sidebar-left .content {
    float: none;
  }
}

/***  6.2 SIDEBAR BOTH  ***/

.sidebar-both .sidebar:nth-child(2) {
  float: left;
}

@media screen and (max-width: 900px) {
  .sidebar-both .sidebar:nth-child(2) {
    float: none;
  }
}

/***  6.3 SECTIONS  ***/

.sections {
  padding-top: 0;
  padding-bottom: 0;
}

.content-section {
  padding-top: 50px;
  padding-bottom: 50px;
  margin: 0 !important;
}

/***  6.4 HOME  ***/

/******************************************************************************
 * * *  7 FOOTER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

/***  7.1 FOOTER NAV  ***/

.footer-nav-bar {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-nav-bar [class*="col-"] > a:hover {
  text-decoration: none;
}

.footer-nav-bar [class*="col-"] > a:first-child {
  display: block;
  padding-left: 25px;
  padding-right: 25px;
}

/***  7.2 FOOTER  ***/

.footer {
  padding-top: 0;
  padding-bottom: 0;
  background: #087832;
  font-size: 0.9em;
  color: white;
}

.footer:before {
  display: block !important;
  visibility: visible !important;
  height: 3px;
  border-top: 1px solid #52a764;
  background: #f5f3e4;
  content: "";
}

.footer .col-custom {
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  color: white;
  text-transform: uppercase;
}

.footer a {
  color: #cdf1db;
}

.footer a:hover {
  color: white;
}

.footer a.button {
  border-color: #f5b75d;
  background: #f5b75d;
  color: white;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4);
}

.footer a.button:hover {
  border-color: #7db751;
  background: #7db751;
}

.footer .icon,
.footer [class*="list-icon-"] li:before {
  color: #f5b75d;
}

.footer input {
  margin-bottom: 0.5em;
}

/***  7.3 BOTTOM BAR  ***/

.bottom-bar {
  border-top: 1px solid #4d945c;
  background: #087832;
  font-size: 0.9em;
  color: white;
}

.bottom-bar a {
  color: #cdf1db;
}

.bottom-bar a:hover {
  color: white;
}

.footer-menu li:first-child {
  padding-left: 10px;
}

.footer-menu li a {
  display: inline-block;
}

@media screen and (min-width: 900px) {
  .copyright,
  .footer-menu {
    display: inline-block;
  }

  .footer-menu ul li:before {
    display: inline-block;
    content: "|";
  }

  .footer-menu li:first-child a {
    padding-left: 10px;
  }
}

/******************************************************************************
 * * *  8 CUSTOM THEME STYLES  * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

.slider {
  background: #cdcab8;
}

.slider-container {
  max-width: 1200px;
  padding: 0;
}

.slider-inner {
  position: relative;
}

.slider-inner:before,
.slider-inner:after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: block !important;
  width: 100px;
  height: 100% !important;
  visibility: visible !important;
  content: "";
}

.slider-inner:before {
  left: 0;
  background: -moz-linear-gradient(
    left,
    rgba(205, 202, 184, 1) 0%,
    rgba(205, 202, 184, 0) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(205, 202, 184, 1) 0%,
    rgba(205, 202, 184, 0) 100%
  );
  background: linear-gradient(
    to right,
    rgba(205, 202, 184, 1) 0%,
    rgba(205, 202, 184, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cdcab8', endColorstr='#00cdcab8',GradientType=1 );
}

.slider-inner:after {
  right: 0;
  background: -moz-linear-gradient(
    left,
    rgba(205, 202, 184, 0) 0%,
    rgba(205, 202, 184, 1) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(205, 202, 184, 0) 0%,
    rgba(205, 202, 184, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(205, 202, 184, 0) 0%,
    rgba(205, 202, 184, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cdcab8', endColorstr='#cdcab8',GradientType=1 );
}

.slider a {
  color: #e87a1e;
}

.slider a:hover {
  color: white;
}

.metaslider .flexslider {
  margin-bottom: 0 !important;
}

.metaslider .caption {
  padding: 10px 100px !important;
  font-family: "proxima-nova-condensed", sans-serif;
}

.flex-direction-nav {
  z-index: 9999 !important;
}

@media screen and (max-width: 900px) {
  .slider {
    background: none;
  }

  .slider-inner {
    position: static;
  }

  .slider-inner:before,
  .slider-inner:after {
    display: none !important;
    visibility: hidden !important;
  }

  .caption-wrap {
    position: static !important;
    display: block !important;
  }

  .metaslider .caption {
    padding: 10px !important;
  }
}

/***  HORIZONTAL SPACER  ***/

.horizontal-spacer {
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1.75em;
}

/***  THEME COLORS  ***/

/* Text */

.text-green {
  color: #087832 !important;
}

.text-light-green {
  color: #7db751 !important;
}

.text-blue {
  color: #006998 !important;
}

.text-light-blue {
  color: #2598ac !important;
}

.text-blue-green {
  color: #129490 !important;
}

.text-orange {
  color: #e18c20 !important;
}

.text-light-orange {
  color: #e4b433 !important;
}

.text-purple {
  color: #832667 !important;
}

.text-gray {
  color: #646a70 !important;
}

.text-teal {
  color: #34b8ab;
}

/* Backgrounds */

.bg-green {
  background-color: #087832;
}

.bg-light-green {
  background-color: #7db751 !important;
}

.bg-blue {
  background-color: #006998 !important;
}

.bg-light-blue {
  background-color: #2598ac !important;
}

.bg-blue-green {
  background-color: #129490 !important;
}

.bg-orange {
  background-color: #e18c20 !important;
}

.bg-light-orange {
  background-color: #e4b433 !important;
}

.bg-purple {
  background-color: #832667 !important;
}

.bg-gray {
  background-color: #646a70 !important;
}

.bg-teal {
  background-color: #34b8ab !important;
}

/***  PAGE TITLE  ***/

.page-title {
  position: relative;
  padding-top: 29px;
  margin: 0;
  margin-top: -50px !important;
  text-align: center;
}

.page-title img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.page-sub-title {
  background: #087832;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  margin: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  text-align: center;
  color: white;
}

@media screen and (max-width: 1200px) {
  .page-title img {
    display: none;
  }
}

/***  STAT BOX  ***/

.stat-box {
  position: relative;
  padding-left: 120px !important;
  text-transform: uppercase;
  font-family: "proxima-nova-condensed", sans-serif;
}

.stat-box-img-right {
  padding-left: 20px !important;
  padding-right: 120px !important;
}

.stat-box p {
  margin: 0;
}

.stat-box img {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 90px;
}

.stat-box-img-right img {
  left: auto;
  right: 20px;
}

.stat-box span {
  display: block;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .stat-box,
  .stat-box-img-right {
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-align: center;
  }

  .stat-box img {
    position: static;
    margin: 0 auto;
    width: 100%;
    max-width: 90px;
  }
}

/***  BROCHURE LINK  ***/

.brochure-link a {
  position: relative;
  display: block;
  padding: 20px 20px 20px 125px;
  background: #cfccb9;
  font-family: "proxima-nova-condensed", sans-serif;
  font-weight: bold;
  font-size: 1.4em;
  line-height: 1.2em;
  text-align: center;
  text-transform: uppercase;
  color: white;
}

.brochure-link a:hover {
  background: #d6d3c1;
  text-decoration: none;
}

.brochure-link p {
  margin: 0;
  line-height: 1.2em;
}

.brochure-link img {
  position: absolute;
  top: -15px;
  left: -10px;
  width: 125px;
  opacity: 1 !important;
}

@media screen and (max-width: 1200px) {
  .brochure-link a {
    padding-left: 20px;
  }

  .brochure-link img {
    position: static;
    margin: 0 auto;
    width: 100%;
    max-width: 125px;
  }
}

/***  PAGE ASIDE  ***/

.page-aside {
  margin-top: 0.5em !important;
}

.content .page-aside [class*="col-"] {
  padding: 0;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}

.aside-title h3,
.aside-content {
  padding: 1em 20px;
  background: #f5f3e4;
}

.aside-title h3 {
  padding: 0.75em 20px;
  font-size: 1.15em;
}

@media screen and (max-width: 900px) {
  .page-aside {
    width: calc(100% + 8px);
    margin-top: 2.5em !important;
    margin-left: -4px;
    margin-right: -4px;
  }

  .content .page-aside [class*="col-"] {
    padding: 0 4px;
  }
}

/***  HISTORY  ***/

.history-aside {
  float: left;
  font-size: 0.9em;
  text-align: center;
}

.history-aside h3 {
  padding: 0.5em 0.25em;
  margin-bottom: 0.5em;
  background-color: #087832;
  font-weight: bold;
  font-size: 1em;
  color: white;
}

.history-aside h4 {
  margin: 0;
}

.history-aside p {
  margin: 0;
}

.history-aside h4 + p {
  padding: 0 2.5em 0.75em;
  border-bottom: 1px solid #d2d2d2;
  margin: 0 0 0.75em;
}

@media screen and (max-width: 600px) {
  .history-aside {
    float: none;
  }
}

/***  BIOS  ***/

.bio-sidebar h3 {
  padding: 0.5em 0.25em;
  margin-bottom: 0.25em;
  background-color: #087832;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  color: white;
}

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

.bio-sidebar li {
  padding: 0;
  margin: 0;
}

.bio-sidebar li a {
  display: block;
  padding: 0.4em 0;
  line-height: 1.3em;
  font-weight: bold;
}

.bio-sidebar li.current-menu-item a {
  color: #e87a1e;
}

.bio-sidebar li a:hover {
  text-decoration: none;
  color: #087832;
}

.bio-sidebar li a span {
  font-weight: normal;
  font-size: 0.8em;
}

.team .bio-sidebar li a span {
  display: block;
}

.bio-header {
  position: relative;
  padding-left: 140px;
  padding-top: 1em;
  padding-bottom: 1em;
  height: 145px;
  border-top: 7px solid #cfccb9;
  border-bottom: 7px solid #cfccb9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.bio-header h3,
.bio-header p.bio-position {
  margin: 0;
}

.bio-header img {
  position: absolute;
  top: -7px;
  left: 0;
  padding-right: 13px;
  background: white;
}

/***  Careers  ***/

.careers-sidebar h3 {
  padding: 0.5em 0.25em;
  margin-bottom: 0.25em;
  background-color: #087832;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  color: white;
}

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

.careers-sidebar li {
  padding: 0;
  margin: 0;
}

.careers-sidebar li a {
  display: block;
  padding: 0.4em 0;
  line-height: 1.3em;
  font-weight: bold;
}

.careers-sidebar li.current-menu-item a {
  color: #e87a1e;
}

.careers-sidebar li a:hover {
  text-decoration: none;
  color: #087832;
}

.careers-sidebar li a span {
  font-weight: normal;
  font-size: 0.8em;
}

.careers-title {
  padding: 0.5em;
  margin-bottom: 0.25em;
  background-color: #087832;
  font-weight: bold;
  font-size: 1em;
  color: white;
}

.careers-post-title {
  text-transform: none;
}

/***  MEDIA  ***/

.media-room-list {
  padding: 0.25em 0;
  border-bottom: 3px solid #cac7b2;
  margin: 0 !important;
}

.media-room-list .col-fourth {
  font-size: 0.9em;
}

@media screen and (min-width: 601px) {
  .media-room .col-fourth {
    float: left;
  }
}

@media screen and (max-width: 600px) {
  .media-room-list .grid {
    margin-top: 0.25em !important;
    margin-bottom: 0.25em !important;
  }

  .media-room-list [class*="col-"] {
    margin-top: 0.25em;
    margin-bottom: 0.25em;
  }
}

/***  PUBLICATIONS  ***/

h3.publications-title {
  padding: 0.5em 0.25em;
  background-color: #087832;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  color: white;
}

.publications-list [class*="col-"] {
  text-align: center;
}

.publications-list img {
  display: block;
  border: 1px solid #d2d2d2;
  margin: 0 auto 0.25em;
}

/***  BLOG STYLES  ***/

.blog-title {
  position: relative;
  border-bottom: 8px solid #006b34;
  text-align: center;
  font-size: 6em;
  line-height: 1em;
  letter-spacing: 2px;
  color: #cac7b2;
}

.blog-title:before,
.blog-title:after {
  position: absolute;
  top: 0;
  height: calc(100% + 8px);
  width: 34%;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.blog-title:before {
  left: 0;
  background-position: top right;
  background-image: url(images/blog-left.png);
}

.blog-title:after {
  right: 0;
  background-position: top left;
  background-image: url(images/blog-right.png);
}

ul.post-info {
  display: none;
}

p.post-info {
  padding: 0.5em 0;
  border-top: 3px solid #cac7b2;
  border-bottom: 3px solid #cac7b2;
  font-size: 0.9em;
  color: #999;
}

.post-author-avatar {
  display: none;
}

@media screen and (max-width: 900px) {
  .blog-title {
    display: none;
  }
}

/* Post Navigation */

.blog-posts-nav a:hover,
.single-post-nav a:hover {
  background: #087832;
}

/***  MISSION MOMENTS  ***/

.mission-moments .col-fourth p {
  margin: 0.5em 0;
}

.mission-moments .col-fourth p:first-child {
  margin-top: 0;
}

.mission-moments .col-fourth p:last-child {
  margin-bottom: 0;
}

/*** EVENT CALENDAR ***/
#tribe-bar-form {
  background: none !important;
}
.tribe-bar-views-inner,
#tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a {
  background: none !important;
}
#tribe-bar-form .tribe-bar-submit input[type="submit"] {
  background: #e4a546;
}
.tribe-events-calendar thead th {
  background-color: #087832 !important;
  border-left: 1px solid #52a764 !important;
  border-right: 1px solid #52a764 !important;
}

.tribe-events-calendar td div[id*="tribe-events-daynum-"] {
  background: #cfccb9 !important;
}

/*** Footesubscription form***/
#constant-contact-signup-1 input[type="text"] {
  color: #000;
}
#constant-contact-signup-1 input[type="submit"] {
  border-color: #f5b75d;
  background: #f5b75d;
  color: white;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4);
  padding: 0.4em 1.2em;
  font-size: 1em;
  border-radius: 6px;
}
#constant-contact-signup-1 input[type="submit"]:hover {
  border-color: #7db751;
  background: #7db751;
}
#constant-contact-signup-1 .success {
  margin-top: 20px !important;
}
#constant-contact-signup-1 .cc_first_name,
#constant-contact-signup-1 .cc_last_name {
  float: left;
  width: 50%;
}
#constant-contact-signup-1 .cc_first_name input[type="text"] {
  width: 99%;
}

.page-form-container {
  display: none;
}
.programs_table_container {
  display: none;
}

.footer .widget_recent_entries li,
.footer .tribe-events-list-widget li {
  margin-left: 0;
}

/***  LOCATIONS  ***/

.locations-cols p {
  margin: 0.5em 0;
}

.locations-cols p.locations-title + p,
.locations-cols p:first-child {
  margin-top: 0;
}

.locations-cols p.locations-title,
.locations-cols p:last-child {
  margin-bottom: 0;
}

/*** CTA EDITS ***/
.cta {
  font-size: 1.3em;
}
.cta-with-image {
  padding-left: 190px;
}
.cta-with-image img {
  width: auto;
}
.cta table {
  color: #777;
  font-size: 16px;
  text-transform: none;
  text-align: left;
}
.cta table tr,
.cta table td {
  text-align: left;
}

@media only screen and (max-width: 460px) {
  .cta-with-image {
    padding-left: 0px;
    text-align: center;
  }
  .cta-with-image img {
    position: relative;
  }
}

.c-forms-form-title {
  display: none;
}
iframe .cognito .c-forms-heading .c-forms-form-title {
  display: none !important;
}

.c-forms-form label,
.c-forms-form input {
  font-family: "proxima-nova", sans-serif !important;
}

@media only screen and (min-width: 460px) {
  .cognito [data-field="FirstName"],
  .cognito [data-field="LastName"],
  .cognito [data-field="Title"],
  .cognito [data-field="Company"],
  .cognito [data-field="Address"],
  .cognito [data-field="City"],
  .cognito [data-field="States"],
  .cognito [data-field="ZipCode"],
  .cognito [data-field="Phone"],
  .cognito [data-field="Email"],
  .cognito [data-field="Birthday"],
  .cognito [data-field="Gender2"],
  .cognito [data-field="Gender"] {
    width: 49% !important;
    float: left !important;
    clear: none !important;
  }
  .cognito [data-field="Iam"] {
    width: 49% !important;
    float: left !important;
    clear: left !important;
  }
  .cognito
    [data-field="HowDidYouHearAboutNationalAbleNetworkClickAllThatApply"] {
    width: 49% !important;
    float: left !important;
    clear: none !important;
  }
  .cognito [data-field="State2"],
  .cognito [data-field="Zip"],
  .cognito [data-field="County"] {
    width: 33% !important;
    float: left !important;
    clear: none !important;
  }
}

div#form-jobseekers::before {
  display: block !important;
  content: " ";
  margin-top: -285px !important;
  height: 285px !important;
  visibility: hidden !important;
}
div#form-businesses::before {
  display: block !important;
  content: " ";
  margin-top: -285px !important;
  height: 360px !important;
  visibility: hidden !important;
}
div#form-nonprofits::before {
  display: block !important;
  content: " ";
  margin-top: -285px !important;
  height: 360px !important;
  visibility: hidden !important;
}

.tribe-mini-calendar-event .list-date {
  display: none !important;
}
.tribe-mini-calendar-event {
  border-bottom: none !important;
}
.tribe-mini-calendar-event .list-info h2 {
  font-weight: normal !important;
}

.copyright {
  padding-right: 3px;
}

.tribe-events-list-widget .tribe-events-list-widget-events {
  padding-left: 0 !important;
}

.yellow-bg-headline {
  background: #f4b518;
  text-align: center;
  color: #0a5b9d;
  font-size: 1.4em;
  -webkit-box-shadow: 0px 10px 13px -7px rgba(0, 0, 0, 0.5),
    5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: 0px 10px 13px -7px rgba(0, 0, 0, 0.5),
    5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.blue-ribbon-background-text {
  margin-top: 15px;
  margin-bottom: 0;
  font-weight: bold;
  text-transform: none;
  text-align: center;
  color: #fff;
  padding: 20px 140px;
  font-size: 1.5em;
  background: url("/wp-content/uploads/2020/12/blue-ribbon-bg.png") no-repeat;
}
@media only screen and (max-width: 1321px) {
  .blue-ribbon-background-text {
    background-image: none;
    background-color: #1484b6;
  }
}
.download-flyer {
  background: #cfccb9;
  padding: 30px 40px;
  width: 156px;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
}
/*
 * END OF
 * STNDRD THEME
 * CUSTOMIZABLE CSS
 */
