/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}
/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio, canvas, video {
  display: inline-block;
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden], template {
  display: none;
}
/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
  outline: 0;
}
/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}
/* Heading Size */
h1 {
  font-size: 28px;
}
h2 {
  font-size: 22px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}
.custom-color-heading {
  color: #87a46c;
}
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b, strong, .strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn, em, .em {
  font-style: italic;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}
/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em;
}
/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}
/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C""\201D""\2018""\2019";
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before, q:after {
  content: "";
  content: none;
}
small, .small {
  font-size: 75%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}
/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl, menu, ol, ul {
  margin: 1em 0;
}
dd {
  margin: 0;
}
.green-bullet {
  margin-left: 0 !important;
}
.green-bullet li {
  list-style: none;
  padding-left: 20px;
  background: url("/wp-content/themes/ndic/library/images/bullet.png") 0 7px no-repeat;
}
/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}
ol, ul {
  padding: 0;
  list-style-type: none;
}
/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}
/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}
/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}
/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}
/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: .35em .625em .75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}
/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button, input, select, textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button, input {
  line-height: normal;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button, select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled], html input[disabled] {
  cursor: default;
}
/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield; /* 1 */ /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}
/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
.image-replacement, .ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.clearfix, .cf, .comment-respond {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
  content: "";
  display: table;
}
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}
/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-break: keep-all;
  -ms-word-wrap: keep-all;
  word-break: keep-all;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
}
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important;
}
/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
/* Portrait tablet to landscape */
/* Landscape to small desktop */
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}
.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}
.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}
.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}
.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}
/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.blue-btn, .comment-reply-link, #submit {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: white;
  font-size: .9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color .14s ease-in-out;
  transition: background-color .14s ease-in-out;
}
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
  color: white;
  text-decoration: none;
}
.blue-btn:active, .comment-reply-link:active, #submit:active {
  top: 1px;
}
/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn, .comment-reply-link, #submit {
  background-color: #2980b9;
}
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
  background-color: #2574a8;
}
.blue-btn:active, .comment-reply-link:active, #submit:active {
  background-color: #2472a4;
}
/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], select, textarea, .field, .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: none;
  font-family: "Spectral", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #eaedf2;
  -webkit-transition: background-color .24s ease-in-out;
  transition: background-color .24s ease-in-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.gform_wrapper.gf_browser_chrome select, .gform_wrapper.gf_browser_gecko select, .gform_wrapper textarea {
  padding: 12px;
}
input[type="text"]:focus, input[type="text"]:active, input[type="password"]:focus, input[type="password"]:active, input[type="datetime"]:focus, input[type="datetime"]:active, input[type="datetime-local"]:focus, input[type="datetime-local"]:active, input[type="date"]:focus, input[type="date"]:active, input[type="month"]:focus, input[type="month"]:active, input[type="time"]:focus, input[type="time"]:active, input[type="week"]:focus, input[type="week"]:active, input[type="number"]:focus, input[type="number"]:active, input[type="email"]:focus, input[type="email"]:active, input[type="url"]:focus, input[type="url"]:active, input[type="search"]:focus, input[type="search"]:active, input[type="tel"]:focus, input[type="tel"]:active, input[type="color"]:focus, input[type="color"]:active, select:focus, select:active, textarea:focus, textarea:active, .field:focus, .field:active {
  background-color: #f7f8fa;
}
input[type="text"].error, input[type="text"].is-invalid, input[type="password"].error, input[type="password"].is-invalid, input[type="datetime"].error, input[type="datetime"].is-invalid, input[type="datetime-local"].error, input[type="datetime-local"].is-invalid, input[type="date"].error, input[type="date"].is-invalid, input[type="month"].error, input[type="month"].is-invalid, input[type="time"].error, input[type="time"].is-invalid, input[type="week"].error, input[type="week"].is-invalid, input[type="number"].error, input[type="number"].is-invalid, input[type="email"].error, input[type="email"].is-invalid, input[type="url"].error, input[type="url"].is-invalid, input[type="search"].error, input[type="search"].is-invalid, input[type="tel"].error, input[type="tel"].is-invalid, input[type="color"].error, input[type="color"].is-invalid, select.error, select.is-invalid, textarea.error, textarea.is-invalid, .field.error, .field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
input[type="text"].success, input[type="text"].is-valid, input[type="password"].success, input[type="password"].is-valid, input[type="datetime"].success, input[type="datetime"].is-valid, input[type="datetime-local"].success, input[type="datetime-local"].is-valid, input[type="date"].success, input[type="date"].is-valid, input[type="month"].success, input[type="month"].is-valid, input[type="time"].success, input[type="time"].is-valid, input[type="week"].success, input[type="week"].is-valid, input[type="number"].success, input[type="number"].is-valid, input[type="email"].success, input[type="email"].is-valid, input[type="url"].success, input[type="url"].is-valid, input[type="search"].success, input[type="search"].is-valid, input[type="tel"].success, input[type="tel"].is-valid, input[type="color"].success, input[type="color"].is-valid, select.success, select.is-valid, textarea.success, textarea.is-valid, .field.success, .field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
input[type="text"][disabled], input[type="text"].is-disabled, input[type="password"][disabled], input[type="password"].is-disabled, input[type="datetime"][disabled], input[type="datetime"].is-disabled, input[type="datetime-local"][disabled], input[type="datetime-local"].is-disabled, input[type="date"][disabled], input[type="date"].is-disabled, input[type="month"][disabled], input[type="month"].is-disabled, input[type="time"][disabled], input[type="time"].is-disabled, input[type="week"][disabled], input[type="week"].is-disabled, input[type="number"][disabled], input[type="number"].is-disabled, input[type="email"][disabled], input[type="email"].is-disabled, input[type="url"][disabled], input[type="url"].is-disabled, input[type="search"][disabled], input[type="search"].is-disabled, input[type="tel"][disabled], input[type="tel"].is-disabled, input[type="color"][disabled], input[type="color"].is-disabled, select[disabled], select.is-disabled, textarea[disabled], textarea.is-disabled, .field[disabled], .field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: .6;
}
input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active, input[type="password"][disabled]:focus, input[type="password"][disabled]:active, input[type="password"].is-disabled:focus, input[type="password"].is-disabled:active, input[type="datetime"][disabled]:focus, input[type="datetime"][disabled]:active, input[type="datetime"].is-disabled:focus, input[type="datetime"].is-disabled:active, input[type="datetime-local"][disabled]:focus, input[type="datetime-local"][disabled]:active, input[type="datetime-local"].is-disabled:focus, input[type="datetime-local"].is-disabled:active, input[type="date"][disabled]:focus, input[type="date"][disabled]:active, input[type="date"].is-disabled:focus, input[type="date"].is-disabled:active, input[type="month"][disabled]:focus, input[type="month"][disabled]:active, input[type="month"].is-disabled:focus, input[type="month"].is-disabled:active, input[type="time"][disabled]:focus, input[type="time"][disabled]:active, input[type="time"].is-disabled:focus, input[type="time"].is-disabled:active, input[type="week"][disabled]:focus, input[type="week"][disabled]:active, input[type="week"].is-disabled:focus, input[type="week"].is-disabled:active, input[type="number"][disabled]:focus, input[type="number"][disabled]:active, input[type="number"].is-disabled:focus, input[type="number"].is-disabled:active, input[type="email"][disabled]:focus, input[type="email"][disabled]:active, input[type="email"].is-disabled:focus, input[type="email"].is-disabled:active, input[type="url"][disabled]:focus, input[type="url"][disabled]:active, input[type="url"].is-disabled:focus, input[type="url"].is-disabled:active, input[type="search"][disabled]:focus, input[type="search"][disabled]:active, input[type="search"].is-disabled:focus, input[type="search"].is-disabled:active, input[type="tel"][disabled]:focus, input[type="tel"][disabled]:active, input[type="tel"].is-disabled:focus, input[type="tel"].is-disabled:active, input[type="color"][disabled]:focus, input[type="color"][disabled]:active, input[type="color"].is-disabled:focus, input[type="color"].is-disabled:active, select[disabled]:focus, select[disabled]:active, select.is-disabled:focus, select.is-disabled:active, textarea[disabled]:focus, textarea[disabled]:active, textarea.is-disabled:focus, textarea.is-disabled:active, .field[disabled]:focus, .field[disabled]:active, .field.is-disabled:focus, .field.is-disabled:active {
  background-color: #d5edf8;
}
input[type="password"] {
  letter-spacing: .3em;
}
textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}
/*select {
	-webkit-appearance: none; 
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
	background-repeat: no-repeat;
	background-position: 97.5% center;
}*/
/*------------------------------------
    #Buttons
------------------------------------*/
.btn, .button, button, input[type="button"], input[type=submit], input[type="reset"], .btn:visited, .button:visited, button:visited, input[type="button"]:visited, input[type=submit]:visited, input[type="reset"]:visited, .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer input.button:visited, .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_footer input[type=submit]:visited, .gform_wrapper .gform_page_footer input.button:visited, .gform_wrapper .gform_page_footer input[type=submit]:visited, .vc_btn3.vc_btn3-color-juicy-pink, .vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat {
  font-size: .875rem;
  line-height: 1.2 !important;
  border: none;
  padding: .75rem 1.5rem;
  border-radius: 3px;
  background: #e15d4e;
  color: #fff !important;
}
.btn:hover, .button:hover, button:hover, input[type="button"]:hover, input[type=submit]:hover, input[type="reset"]:hover, .gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input[type=submit]:hover, .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input[type=submit]:hover, .vc_btn3.vc_btn3-color-juicy-pink:hover, .vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:hover {
  background: #fed4a5;
  color: #fff !important;
}
@media (min-width: 1200px) {
  input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], select, textarea, .field, .gform_wrapper.gf_browser_chrome select, .gform_wrapper.gf_browser_gecko select, .gform_wrapper textarea, .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    padding: 0 16px;
  }
  .gform_wrapper textarea {
    padding: 18px;
  }
  .btn, .button, button, input[type="button"], input[type=submit], input[type="reset"], .btn:visited, .button:visited, button:visited, input[type="button"]:visited, input[type=submit]:visited, input[type="reset"]:visited, .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer input.button:visited, .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_footer input[type=submit]:visited, .gform_wrapper .gform_page_footer input.button:visited, .gform_wrapper .gform_page_footer input[type=submit]:visited {
    font-size: 18px;
    padding: 1rem 2rem;
  }
}
/* Gravity */
.gform_wrapper {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.gform_footer {
  padding-bottom: 0 !important;
}
.gform_wrapper .top_label li.gfield.gf_left_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker), .gform_wrapper .top_label li.gfield.gf_right_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker) {
  margin-top: 0;
}
/* On DEEP Background */
.reverse .btn, .reverse .button, .reverse button, .reverse input[type="button"], .reverse input[type=submit], .reverse input[type="reset"], .reverse .btn:visited, .reverse .button:visited, .reverse button:visited, .reverse input[type="button"]:visited, .reverse input[type=submit]:visited, .reverse input[type="reset"]:visited, .reverse .gform_wrapper .gform_footer input.button, .reverse .gform_wrapper .gform_footer input[type=submit], .reverse .gform_wrapper .gform_footer input.button:visited, .reverse .gform_wrapper .gform_page_footer input.button, .reverse .gform_wrapper .gform_page_footer input[type=submit], .reverse .gform_wrapper .gform_footer input[type=submit]:visited, .reverse .gform_wrapper .gform_page_footer input.button:visited, .reverse .gform_wrapper .gform_page_footer input[type=submit]:visited, .btn-reverse {
  border: 1px solid #fff;
  background-color: transparent;
}
.reverse .btn:hover, .reverse .button:hover, .reverse button:hover, .reverse input[type="button"]:hover, .reverse input[type=submit]:hover, .reverse input[type="reset"]:hover, .reverse .gform_wrapper .gform_footer input.button:hover, .reverse .gform_wrapper .gform_footer input[type=submit]:hover, .reverse .gform_wrapper .gform_page_footer input.button:hover, .reverse .gform_wrapper .gform_page_footer input[type=submit]:hover, .btn-reverse:hover {
  background: #fed4a5;
  color: #fff !important;
}
.gform_wrapper .gform_footer {
  padding-top: 0;
}
/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: "Spectral", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #2f4c26;
  background-color: #f9fafc;
  -webkit-font-smoothing: antialiased;
}
/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
#hero .caption h1 {
  line-height: 1.1;
  margin-bottom: 1rem !important;
}
#hero .caption h1, #hero .caption h2, .wpb_singleimage_heading {
  text-shadow: rgba(0, 0, 0, 0.8) 0px 0px 8px, rgba(0, 0, 0, 0.8) 0px 0px 5px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  line-height: 1.25;
}
#layerslider_1 .ls-wrapper.ls-in-out {
  width: 86% !important;
  left: 10% !important;
  right: 10% !important;
  top: 50% !important;
  -webkit-transform: translate(0, -50%) !important;
  -ms-transform: translate(0, -50%) !important;
  transform: translate(0, -50%) !important;
}
#hero .caption {
  white-space: normal;
  text-align: center;
  width: 100% !important;
  left: 0% !important;
  right: 0% !important;
}
#hero .caption .btn {
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 16px !important;
}
@media (max-width: 767px) {
  #layerslider_1 .ls-wrapper.ls-in-out .btn {
    font-size: 12px !important;
    padding: .5rem .75rem !important;
  }
}
@media (max-width: 639px) {
  #hero .caption h1, .wpb_singleimage_heading {
    font-size: 13px;
  }
}
@media (min-width: 778px) {
  #hero .caption h1, .wpb_singleimage_heading {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  #hero .caption h1, .wpb_singleimage_heading {
    font-size: 30px;
  }
  #hero .caption h1 {
    margin-bottom: 2rem !important;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 18px;
  }
  #layerslider_1 .ls-wrapper.ls-in-out {
    width: 90% !important;
    left: 7% !important;
    right: 7% !important;
  }
  /*#hero .caption {
    padding-top: 3rem !important;
  }*/
  #hero .caption#caption2, #hero .caption#caption3, #hero .caption#caption4 {
    padding-top: 5rem !important;
  }
  #hero .caption h1, .wpb_singleimage_heading {
    font-size: 40px;
  }
  #hero .caption h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .ls-bottom-nav-wrapper {
    display: none !important;
  }
}
/* Newsletter */
.newsletter h3 {
  color: #fff;
  font-weight: 400;
  text-transform: none;
}
.newsletter #gform_wrapper_1.gform_wrapper .top_label .gfield_label, .newsletter #gform_wrapper_1.gform_wrapper legend.gfield_label, .newsletter #gform_wrapper_1.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label, .newsletter #gform_wrapper_1.gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label, .gform_wrapper .top_label .gfield_label, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
  display: none;
}
.gform_wrapper .top_label .donation_amount .gfield_label {
  display: block;
}
.gform_wrapper .donation_amount_custom {
  display: none;
}
#field_4_5 label.gfield_label_before_complex, #field_4_8 label, #field_4_9 label, #field_4_10 label, #field_4_11 label {
  display: inline-block;
}
#input_4_5_1 {
  margin-bottom: 5px;
}
.gform_wrapper .gsection .gfield_label, .gform_wrapper h2.gsection_title, .gform_wrapper h3.gform_title {
  font-weight: 400;
}
#gform_wrapper_1 {
  margin-top: 0;
}
.gform_wrapper #gform_1 .gform_footer input.button, .gform_wrapper #gform_1 .gform_footer input[type=submit] {
  text-transform: uppercase;
  font-size: 12px;
  height: 40px;
}
#gform_confirmation_message_1 {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 25px;
}
.gform_wrapper div.validation_error {
  background-color: #fff;
}
.gform_wrapper #gform_1 li.gfield.gfield_error, .gform_wrapper #gform_1 li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: transparent;
  margin-bottom: 0 !important;
  border-top: 0 solid #C89797;
  border-bottom: 0 solid #C89797;
  padding-bottom: 0;
  padding-top: 0;
}
.gform_wrapper.gform_validation_error #gform_1 .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}
.gform_wrapper #gform_1 .validation_message {
  color: #ffa200;
}
.gform_wrapper .field_description_below .gfield_description {
  padding-top: 5px;
}
.gform_wrapper #input_1_2 {
  margin-bottom: 0;
}
.rc-anchor-light.rc-anchor-normal {
  border: none !important
}
.rc-anchor-light {
  background: none !important;
  color: #fff !important;
}
.rc-anchor {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}
.gform_wrapper div.validation_error {
  color: #f00 !important;
  border-top: 0 solid #790000 !important;
  border-bottom: 0 solid #790000 !important;
  padding: 16px !important
}
@media (min-width: 640px) and (max-width: 991px) {
  #input_1_1_3, #input_1_1_6 {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .gform_wrapper ul li:after, .gform_wrapper ul li:before, .gform_wrapper ul.gform_fields {
    width: calc(100% + 16px);
  }
}
@media only screen and (min-width: 992px) {
  gform_wrapper_1.gform_wrapper .gform_footer {
    margin-top: 0;
  }
  .home .gform_wrapper#gform_wrapper_1 ul li:after, .home .gform_wrapper#gform_wrapper_1 ul li:before, .home .gform_wrapper#gform_wrapper_1 ul.gform_fields {
    width: 100%;
  }
  body .gform_wrapper ul li.gfield, body .gform_wrapper .gform_footer {
    margin-top: 28px;
  }
  #gform_1, #gform_fields_1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .gform_wrapper #gform_1 .gform_heading {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .gform_wrapper #gform_1 .gform_body {
    -ms-flex-preferred-size: 65%;
    flex-basis: 65%;
    max-width: 65%;
  }
  .newsletter-other-pages .gform_wrapper #gform_1 .gform_body {
    -ms-flex-preferred-size: 88.5%;
    flex-basis: 88.5%;
    max-width: 88.5%;
  }
  #gform_fields_1 #field_1_1 {
    -ms-flex-preferred-size: 66%;
    flex-basis: 66%;
    max-width: 66%;
  }
  #gform_fields_1 #field_1_2 {
    -ms-flex-preferred-size: 34%;
    flex-basis: 34%;
    max-width: 34%;
  }
  .gform_wrapper #gform_1 .gform_footer {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }
  gform_wrapper_1, body .gform_wrapper #gform_1 ul li.gfield, body .gform_wrapper #gform_1 .top_label div.ginput_container, .gform_wrapper #gform_1 .gform_footer {
    margin-top: 0
  }
  .gform_wrapper #gform_1 .gform_heading, .gform_wrapper #gform_1 .gform_footer, .form-title {
    padding: 0
  }
  .gform_wrapper #gform_1 .gform_heading, .gform_wrapper #gform_1 input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .form-title {
    margin-bottom: 0;
  }
  /* Validator */
  .gform_validation_error #gform_1 {
    flex-wrap: wrap;
  }
  .validation_error {
    width: 100%;
  }
  .gform_validation_error #gform_1 .gform_body {
    -ms-flex-preferred-size: calc(100% - 85px);
    flex-basis: calc(100% - 95px);
    max-width: calc(100% - 95px);
  }
  .gform_validation_error #gform_1 .gform_footer {
    -ms-flex-preferred-size: 81px;
    flex-basis: 95px;
    max-width: 95px;
  }
  .gform_validation_error #gform_1 .gform_footer input[type=submit] {
    margin-right: 0 !important;
    margin-bottom: 25px;
  }
  .gform_validation_error #gform_fields_1 #field_1_3 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  .gform_validation_error #gform_fields_1 #field_1_1, .gform_validation_error #gform_fields_1 #field_1_2 {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .gform_wrapper #gform_1 .gform_footer input.button, .gform_wrapper #gform_1 .gform_footer input[type=submit] {
    padding: 8.5px 1.5em;
  }
  .gform_wrapper #gform_1 h3.gform_title {
    font-size: 1.5em;
  }
}
/* Focus */
.focus {
  text-align: center;
  padding-bottom: 35px;
}
.helpme-causes .owl-item {
  -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.01);
  -moz-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.01);
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.01);
  background: #fff;
  margin-bottom: 30px;
}
.cause-item-figure {
  position: relative;
  overflow: hidden;
}
.helpme-causes .item > .vc_column-inner > .wpb_wrapper {
  box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  height: 100%;
}
.helpme-causes .item:hover > .vc_column-inner > .wpb_wrapper {
  box-shadow: 0 0 5px rgba(0, 0, 0, .25);
}
.helpme-causes .item .cause-item-figure {
  margin: 0;
}
.helpme-causes .item .cause-item-figure figure, .helpme-causes .item .cause-item-figure figure * {
  width: 100%;
}
.helpme-causes .item .cause-item-figure img, .cause-item-figure img {
  transition: all .2s ease;
}
.helpme-causes .item:hover .cause-item-figure img, .cause-item-figure:hover img {
  transform: scale(1.04);
  transition: all .2s ease;
}
.helpme-causes .item h3 {
  font-weight: 400;
  text-transform: none;
  margin-bottom: 10px;
}
.helpme-causes .item .wpb_text_column {
  background: #fff;
  margin: 0;
  padding: 1.5rem 1.5rem;
}
.helpme-causes .item .vc_column-inner {
  background: #fff;
}
.helpme-causes .item .wpb_text_column .btn {
  background-color: #87a46c;
  padding: 6px 12px;
  font-size: 14px;
}
.helpme-causes .item {
  text-align: center
}
#wpsl-result-list {
  line-height: 1.3;
  border: 1px solid #51724a;
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  .helpme-causes .item {
    padding-bottom: 2rem !important
  }
  .helpme-causes.col-pad-fix .item .vc_column-inner {
    padding: 0 !important;
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width:1199px) {
  .helpme-causes .item {
    width: 50%
  }
}
@media only screen and (min-width: 1200px) {
  .focus {
    padding-top: 35px;
    padding-bottom: 70px;
  }
  .helpme-causes .item h3 {
    font-size: 18px;
  }
  #wpsl-stores, #wpsl-direction-details, #wpsl-gmap {
    min-height: 600px !important;
  }
  #wpsl-result-list li p {
    padding-left: 0;
    margin: 0 0 10px 0 !important;
  }
}
@media only screen and (min-width: 1400px) {
  .container.helpme-causes {
    max-width: 1370px;
  }
}
@media only screen and (max-width: 767px) {
  .helpme-causes .item {
    margin-bottom: 2rem;
  }
  .col-pad-fix .item .vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .col-pad-fix, .col-pad-fix .wpb_column, .col-pad-fix .vc_row.vc_column-gap-30 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  #layerslider_1 .ls-wrapper.ls-in-out {
    width: 100% !important;
    margin: 20px 0 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }
  #layerslider_1 .ls-layers > .ls-wrapper {
    width: 100% !important;
  }
  #layerslider_1 .ls-wrapper.ls-in-out .caption h1 {
    font-size: 12px;
  }
}
/* Testimonial */
.testimonial {
  text-align: center;
  color: #fff;
}
.sp-testimonial-free {
  color: #fff;
}
.tfree-client-testimonial {
  position: relative;
}
.tfree-client-testimonial p {
  padding: 0 5rem;
}
.tfree-client-testimonial:before, .tfree-client-testimonial:after {
  color: rgba(255, 255, 255, .2);
  font-size: 76px;
  display: block;
  font-family: "FontAwesome";
  line-height: 1;
  position: absolute;
}
.tfree-client-testimonial:before {
  content: "\f10d";
  left: 2px;
  top: 0;
  text-align: left;
}
.tfree-client-testimonial:after {
  content: "\f10e";
  right: 2px;
  bottom: 0;
  text-align: right;
}
.sp-testimonial-free-section .sp-tfree-client-image {
  margin: 0px 0px 10px 0px;
}
@media only screen and (max-width: 767px) {
  .tfree-client-testimonial:before, .tfree-client-testimonial:after {
    font-size: 20px;
  }
  .tfree-client-testimonial p {
    padding: 0 1rem;
  }
}
/* Strong Testimonial Customization */
.strong-view.default .testimonial-inner, .strong-view.default .testimonial {
  border: none !important;
  padding: 0 !important;
}
.testimonial-heading {
  display: none;
}
.testimonial-content {
  padding: 4rem 0 0;
  color: #6a727d;
}
.strong-view.default .testimonial-image {
  margin-top: -.75rem;
  margin-right: 3rem;
}
.strong-view.default .testimonial-content p {
  padding: 5rem 4rem 1.5rem 1rem !important;
  background-color: #fff;
}
.strong-view.default .testimonial-client {
  margin-top: 0;
  text-align: left;
  background-color: #fff;
  color: #6a727d;
  padding: 1rem 4rem 4rem 0 !important;
  border-bottom: 2px solid #d3d9c4 !important
}
.strong-view.default .testimonial-client .testimonial-name {
  font-size: 16px;
  font-weight: 400;
}
.strong-view.default .testimonial-image, .testimonial-content, .strong-view.default .testimonial-inner > *:not(:nth-last-child(2)):not(:last-child) {
  margin-bottom: 0 !important;
}
.strong-view.default .testimonial-name, .strong-view.default .testimonial-company {
  text-align: left;
  background: #fff;
  color: #6A727D;
}
.strong-view.default .testimonial-name {
  font-weight: 400;
  font-size: 1em;
  color: #2f4c26;
  padding-left: 1rem;
  font-family: 'Poppins', sans-serif;
}
.strong-view.default .testimonial-company {
  padding-bottom: 3rem;
  padding-left: 1rem;
}
@media only screen and (max-width: 991px) {
  .testimonial-content {
    padding: 0;
    background-color: transparent
  }
  .strong-view.default .testimonial-image {
    float: none;
    margin: 0;
    text-align: center;
  }
  .strong-view.default .testimonial-content p {
    padding: 8rem 4rem 1.5rem !important;
    background-color: #fff;
    margin-top: -5rem !important
  }
  .strong-view.default .testimonial-name, .strong-view.default .testimonial-company {
    padding: 0rem 4rem !important;
  }
  .strong-view.default .testimonial-company {
    padding: 0rem 4rem 3rem !important;
  }
  .strong-view.default .testimonial-client {
    padding: 2rem 4rem 4rem !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .strong-view.default .testimonial-image {
    padding-bottom: 2rem;
  }
}
@media only screen and (min-width: 992px) {
  .strong-view.controls-type-sides .wpmslider-prev, .strong-view.controls-type-sides .wpmslider-next {
    top: 15px;
  }
  .strong-view.controls-type-sides .wpmslider-prev, .strong-view.controls-type-sides .wpmslider-next, .strong-view.controls-type-sides:not(.rtl) .wpmslider-next, .strong-view.controls-type-sides:not(.rtl) .wpmslider-prev {
    width: 33px;
    height: 33px;
    background: #fff;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.03);
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.03);
    font-size: 16px;
    line-height: 33px;
    cursor: pointer;
    color: #d3d9c4;
    font-weight: 400 !important
  }
  .strong-view.controls-type-sides .wpmslider-prev:hover, .strong-view.controls-type-sides .wpmslider-next:hover, .strong-view.controls-type-sides:not(.rtl) .wpmslider-next:hover, .strong-view.controls-type-sides:not(.rtl) .wpmslider-prev:hover {
    background: #d3d9c4;
    color: #fff;
  }
  .strong-view.controls-type-sides .wpmslider-prev, .strong-view.controls-type-sides:not(.rtl) .wpmslider-prev {
    right: 42px !important;
    left: auto !important;
  }
  .strong-view.controls-type-sides .wpmslider-next, .strong-view.controls-type-sides:not(.rtl) .wpmslider-next {
    right: 0 !important;
  }
  .strong-view.default .testimonial-client .testimonial-name {
    font-size: 20px;
  }
  .strong-view.default .testimonial-image img {
    border: none !important;
    padding: 0 !important;
    width: 370px;
  }
  .strong-view.default .testimonial-content p:before /*, 
	.strong-view.default .testimonial-content p:after */ {
    color: rgba(0, 0, 0, .2);
    font-size: 48px;
    display: block;
    font-family: "FontAwesome";
    line-height: 1;
    position: absolute;
  }
  .strong-view.default .testimonial-content p:before {
    content: "\f10d";
    left: 35.5%;
    /*left:17%;*/
    top: 90px;
    text-align: left;
  }
  .strong-view.default .testimonial-company {
    padding-right: 4rem;
  }
}
/* Latest News */
.latest-news {
  text-align: center;
}
.latest-news .vc_gitem-post-data-source-post_excerpt {
  /*display: none;*/
  text-align: left;
}
.latest-news .vc_gitem_row .vc_gitem-col {
  padding: 15px 0 0;
}
/* Our Non-Profit Partners */
.partners {
  text-align: center;
}
.wpls-logo-showcase {
  padding: 0 !important;
}
.wpls-logo-showcase button.slick-prev, .wpls-logo-showcase button.slick-next, .slick-dots {
  display: none !important
}
.sliderimage_hide_border .wpls-logo-cnt.slick-slide img {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0) !important
}
.sliderimage_hide_border .wpls-logo-cnt.slick-slide img:hover {
  box-shadow: 0 0 2px rgba(0, 0, 0, .2) !important
}
.latest-news h4 {
  text-transform: none
}
/* Section Padding */
@media only screen and (min-width: 1200px) {
  .testimonial {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .latest-news {
    padding-top: 35px;
    padding-bottom: 10px;
  }
  .partners {
    padding-top: 10px;
    padding-bottom: 35px;
  }
}
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 96%;
  margin: 0 auto;
}
/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #87a46c; /* on hover */ /* on click */ /* mobile tap color */
}
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #87a46c;
}
a:link, a:visited:link {
  /*
    this highlights links on iPhones/iPads.
    so it basically works like the :hover selector
    for mobile devices.
    */
  -webkit-tap-highlight-color: rgba(0, 0, 0, .3);
}
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500; /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */ /* removing text decoration from all headline links */
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}
h1, .h1 {
  font-size: 2em;
  line-height: 1.333em;
  letter-spacing: .7px;
}
h2, .h2 {
  font-size: 17px;
  line-height: 1.4em;
  margin-bottom: .375em;
  font-weight: 700;
  font-style: italic;
  font-family: "Spectral", serif;
  text-transform: none;
}
h3, .h3 {
  font-size: 1.25em;
}
h4, .h4 {
  font-size: 1em;
}
h5, .h5 {
  font-size: .846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (min-width:1200px) {
  h2, .h2 {
    font-size: 20px;
  }
}
/*********************
HEADER STYLES
*********************/
.header {
  background-color: #323944;
}
#logo {
  margin: .75em 0;
}
#logo a {
  color: white;
}
/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
.nav {
  border-bottom: 0;
  margin: 0; /* end .menu li */ /* highlight current page */ /* end current highlighters */
}
.nav li a {
  display: block;
  color: white;
  text-decoration: none;
  padding: .75em; /*
      remember this is for mobile ONLY, so there's no need
      to even declare hover styles here, you can do it in
      the style.scss file where it's relevant. We want to
      keep this file as small as possible!
      */
}
.nav li ul.sub-menu li a, .nav li ul.children li a {
  padding-left: 30px;
}
/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
#content {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.hentry {
  margin-bottom: 1.5em;
}
.hentry header {
  padding: 1.5em 0 .75em;
  padding-top: 0;
}
.hentry footer {
  padding: 1.5em 0;
  border-top: 1px solid #f8f9fa;
}
.hentry footer p {
  margin: 0;
}
/* end .hentry */
.single-title, .page-title, .entry-title {
  margin: 0;
}
/* post meta */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
/* entry content */
.entry-content {
  padding: 0;
}
.entry-content p {
  margin: 0 0 1.5em;
}
.entry-content table {
  width: 100%;
  border: 1px solid #eaedf2;
  margin-bottom: 1.5em;
}
.entry-content table caption {
  margin: 0 0 7px;
  font-size: .75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-content tr {
  border-bottom: 1px solid #eaedf2;
}
.entry-content tr:nth-child(even) {
  background-color: #f8f9fa;
}
.entry-content td {
  padding: 7px;
  border-right: 1px solid #eaedf2;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eaedf2;
  border-right: 1px solid #eaedf2;
}
.entry-content th:last-child {
  border-right: 0;
}
.entry-content blockquote {
  margin: 0 0 1.5em .75em;
  padding: 0 0 0 .75em;
  border-left: 3px solid #2980b9;
  font-style: italic;
  color: #9fa6b4;
}
.entry-content dd {
  margin-left: 0;
  font-size: .9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content ul, .entry-content ol {
  margin-left: 20px;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content ul li, .entry-content ol li {
  margin-bottom: .5rem;
}
.entry-content .gform_wrapper form li, .entry-content .gform_wrapper li {
  margin-bottom: 0;
}
article img {
  max-width: 100%;
  height: auto;
}
.entry-content img {
  margin: 0;
  max-width: 100%;
  height: auto;
}
.entry-content .size-auto, .entry-content .size-full, .entry-content .size-large, .entry-content .size-medium, .entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #323944;
  color: #f8f9fa;
  font-size: .9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}
/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px; /* images inside wp-caption */
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: .85em;
  margin: 4px 0 7px;
  text-align: center;
}
.single-post .wp-caption, .single .wp-caption {
  background-color: transparent !important;
  padding: 0 !important;
}
.single-post .wp-caption img, .single .wp-caption img {
  width: 100% !important;
  float: none;
  clear: none;
  margin: 0;
}
.featured-image img {
  margin-bottom: 0 !important;
}
.single-post .wp-caption strong, .single .wp-caption strong {
  font-weight: normal;
}
@media (max-width:639px) {
  .single-post .wp-caption, .single .wp-caption {
    width: auto !important;
    max-width: 100% !important;
  }
}
@media (min-width:640px) {
  /*.single-post .wp-caption, .single .wp-caption {
    width: 280px !important;
    float: left;
    margin: 0 25px 15px 0 !important;
  }*/
  .single-post .wp-caption .wp-caption-text, .single .wp-caption .wp-caption-text {
    text-align: left;
  }
  .single-post .wp-caption.img-center .wp-caption-text, .single .wp-caption.img-center .wp-caption-text {
    text-align: center;
  }
  .single-post .wp-caption img, .single .wp-caption img {
    margin-right: 0 !important;
  }
}
/* end .wp-caption */
.tags {
  margin: 0;
}
/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination, .wp-prev-next {
  margin: 1.5em 0;
}
.pagination {
  text-align: center;
}
.pagination ul {
  display: inline-block;
  background-color: white;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #eaedf2;
}
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: .75em;
  min-width: 1em;
  display: block;
  color: #2980b9;
}
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: #2980b9;
  color: white;
}
.pagination .current {
  cursor: default;
  color: #5c6b80;
}
.pagination .current:hover, .pagination .current:focus {
  background-color: white;
  color: #5c6b80;
}
/* end .bones_page_navi */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}
/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  padding: .75em;
  margin: 0;
  border-top: 1px solid #f8f9fa; /* number of comments span */
}
.commentlist {
  margin: 0;
  list-style-type: none;
}
.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #f8f9fa; /* vcard */ /* end .commentlist .vcard */ /* end children */ /* general comment classes */
}
.comment .comment-author {
  padding: 7px;
  border: 0;
}
.comment .vcard {
  margin-left: 50px;
}
.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.comment .vcard time {
  display: block;
  font-size: .9em;
  font-style: italic;
}
.comment .vcard time a {
  color: #9fa6b4;
  text-decoration: none;
}
.comment .vcard time a:hover {
  text-decoration: underline;
}
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
.comment:last-child {
  margin-bottom: 0;
}
.comment .children {
  margin: 0; /* variations */ /* change number for different depth */
}
.comment[class*=depth-] {
  margin-top: 1.1em;
}
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}
.comment.odd {
  background-color: white;
}
.comment.even {
  background: #f8f9fa;
}
/* comment meta */
/* comment content */
.comment_content p {
  margin: .7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}
/* comment reply link */
.comment-reply-link {
  font-size: .9em;
  float: right;
}
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: .9em;
}
/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa;
}
#reply-title {
  margin: 0;
}
.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
.logged-in-as a {
  color: #5c6b80;
}
.comment-form-comment {
  margin: 1.5em 0 .75em;
}
.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: .9em;
}
/* comment submit button */
#submit {
  float: right;
  font-size: 1em;
}
/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em;
}
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px .7335em 0;
}
/* no comments */
.nocomments {
  margin: 0 20px 1.1em;
}
/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
  /* deep nesting */
}
.no-widgets {
  background-color: white;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em;
}
/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #323944;
  color: #f8f9fa;
}
.footer-nav {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
.footer-nav > li {
  padding-bottom: 8px;
  text-transform: uppercase
}
.footer-nav > li > a {
  color: #fff;
}
.footer-nav a, .footer-nav a:hover, .footer-nav a:visited, .footer-nav a:active {
  color: #FFF;
}
.footer-nav ul {
  margin: 0 0 12px 0;
}
.footer-nav ul li {
  text-transform: none;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .footer-logo {
    padding-right: 4rem;
  }
}
#main-content #content-area .container {
  padding: 0;
}
.social-networks, #nav ul, #footer .widget_posts_lists ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.ellipsis {
  white-space: nowrap; /* 1 */
  text-overflow: ellipsis; /* 2 */
  overflow: hidden;
}
/*------------------------------------
  #GENERAL SETTINGS
------------------------------------*/
body {
  min-width: 320px;
}
img {
  max-width: 100%;
  height: auto;
}
#wrapper {
  position: relative;
  overflow: hidden !important;
  width: 100%;
}
a {
  -webkit-transition: color .3s ease-in-out, background .3s ease-in-out, box-shadow .3s ease-in-out, opacity .3s ease-in-out, visibility .3s ease-in-out;
  transition: color .3s ease-in-out, background .3s ease-in-out, box-shadow .3s ease-in-out, opacity .3s ease-in-out, visibility .3s ease-in-out;
}
form input:focus {
  outline: none;
}
/*------------------------------------
    #HEADER OF SITE
------------------------------------*/
#header {
  position: relative;
  top: 0;
  z-index: 100;
}
.header-top .top-holder {
  background: #51724a;
  color: #fff;
  font-size: 14px;
  line-height: 1.7143;
}
.top-nav {
  padding-left: 1.5rem;
}
.top-nav a {
  color: #fff;
  margin-right: 15px;
}
.top-nav a:hover {
  color: #d3d9c4;
  text-decoration: none
}
.custom-seach-toggle-button label {
  margin-bottom: 0;
}
.header-top .header-toolbar-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 0 0;
}
.header-top .header-toolbar-contact .fa {
  -ms-flex-preferred-size: 22px;
  flex-basis: 22px;
  max-width: 22px;
  font-size: 16px;
  text-align: center;
  padding-right: 4px;
}
.header-top .header-toolbar-contact a {
  color: #fff;
  text-decoration: none;
}
.header-top .social-networks {
  padding: 8px 0 10px;
}
.header-top .social-networks > li {
  padding-right: 5px;
}
.header-top .social-networks > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  font-size: 16px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  -webkit-transition: .3s ease color, .3s ease background, .3s width;
  transition: .3s ease color, .3s ease background, .3s width;
  text-decoration: none;
}
.header-top .social-networks > li a:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.header-top .header-tool-opener {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 20px;
  color: #fff;
  background: #222;
  outline: none;
}
.header-top .header-tool-opener:hover {
  color: #d3d9c4;
}
.header-top .header-tool-opener:focus {
  color: #fff;
}
.header-top .header-tool-opener:focus:hover {
  color: #d3d9c4;
}
.tool_active .header-top .header-tool-opener {
  color: #d3d9c4;
}
.header-top .header-tool-opener .fa {
  -webkit-transition: .3s ease transform;
  transition: .3s ease transform;
}
.tool_active .header-top .header-tool-opener .fa {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.social-networks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-bottom {
  background: #FFF;
}
.fixed-position .header-bottom {
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, .15)
}
.header-bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  /* display: flex; Commented out due to language settings making navbar altered */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.logo {
  width: 187px;
}
.logo img {
  width: 100%;
}
.nav-opener {
  height: 17px;
  width: 28px;
  font-size: 0;
  line-height: 0;
  background: none;
  outline: none;
  border: none;
  margin: 7px 0;
  padding: 0;
  float: right;
  z-index: 2;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.nav-opener:focus {
  outline: none;
}
.nav-opener:hover {
  opacity: .8;
}
.resize-active .nav-opener {
  -webkit-transition: none;
  transition: none;
}
.nav-opener span {
  -webkit-transition: .3s ease all;
  transition: .3s ease all;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #666;
  margin-top: -1px;
  -webkit-transition-duration: .3s, .3s;
  transition-duration: .3s, .3s;
  -webkit-transition-delay: .3s, 0s;
  transition-delay: .3s, 0s;
}
.nav-active .nav-opener span {
  background: none;
}
.resize-active .nav-opener span {
  -webkit-transition: none;
  transition: none;
}
.nav-opener span:before, .nav-opener span:after {
  border-radius: 1px;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background: #666;
  content: "";
  margin: 0;
}
.resize-active .nav-opener span:before, .resize-active .nav-opener span:after {
  -webkit-transition: none;
  transition: none;
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
}
.nav-opener span:before {
  top: -8px;
  -webkit-transition: .3s ease top .3s, .3s ease transform 0s;
  transition: .3s ease top .3s, .3s ease transform 0s;
}
.nav-active .nav-opener span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: .3s ease top 0s, .3s ease transform .3s;
  transition: .3s ease top 0s, .3s ease transform .3s;
}
.nav-opener span:after {
  bottom: -8px;
  -webkit-transition: .3s ease bottom .3s, .3s ease transform 0s;
  transition: .3s ease bottom .3s, .3s ease transform 0s;
}
.nav-active .nav-opener span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: .3s ease bottom 0s, .3s ease transform .3s;
  transition: .3s ease bottom 0s, .3s ease transform .3s;
}
#nav ul a {
  outline: none;
}
#nav .primary-menu > li > a {
  display: block;
  padding: 15px 20px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  line-height: 1.6154;
  color: #fff;
  font-family: "Poppins";
}
#nav .primary-menu > li > a:hover {
  background: #d3d9c4;
  color: #fff;
}
#nav .primary-menu > li .megamenu-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.7143;
  margin: 0;
  padding: 8px 15px 8px 25px;
  text-align: left;
  text-transform: none;
  font-weight: 700;
  color: #fff;
}
#nav .primary-menu > li .megamenu-title .fa {
  color: rgba(255, 255, 255, .4);
  font-size: 20px;
  margin-right: 6px;
}
#nav .primary-menu > li .sub-menu > li > a {
  display: block;
  font-size: 12px;
  line-height: 1;
  margin: 0;
  padding: 12px 15px 12px 25px;
  text-align: left;
  text-transform: none;
  font-weight: normal;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-decoration: none;
  font-family: "Poppins";
}
#nav .primary-menu > li .sub-menu > li > a:hover {
  background: #d3d9c4;
  color: #fff;
}
#nav .donate-wrap {
  padding: 10px 15px;
}
#nav .btn-donate, .btn-donate, .btn, .button, button, input[type="button"], input[type=submit], input[type="reset"], .btn:visited, .button:visited, button:visited, input[type="button"]:visited, input[type=submit]:visited, input[type="reset"]:visited, .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer input.button:visited, .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_footer input[type=submit]:visited, .gform_wrapper .gform_page_footer input.button:visited, .gform_wrapper .gform_page_footer input[type=submit]:visited, #wpsl-search-btn {
  min-width: 120px;
  padding: 9px 12px;
  font-weight: 500;
  text-transform: uppercase !important;
  color: #fff;
  border-radius: 3px;
  background: #e15d4e;
  text-align: center;
  font-size: 13px;
  line-height: 1.3846;
  text-decoration: none;
  font-family: "Poppins";
  display: inline-block;
  border: none !important;
}
.btn-donate:visited, .btn-donate:active {
  color: #fff !important;
}
#nav .btn-donate:hover, .btn-donate:hover, .btn:hover, .button:hover, button:hover, input[type="button"]:hover, input[type=submit]:hover, input[type="reset"]:hover, .gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input[type=submit]:hover, .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input[type=submit]:hover, #wpsl-search-btn:hover {
  background: #fed4a5;
  color: #fff;
  text-decoration: none;
}
/*------------------------------------
    #FOOTER OF SITE
------------------------------------*/
#footer {
  padding: 70px 0 0;
  background: #51724a;
  color: #fff;
}
#footer > .container {
  padding-bottom: 2.5rem;
}
#footer .footer-logo {
  /*width: 240px;*/
  margin: 0 0 15px;
}
#footer .footer-logo img {
  width: 100%;
}
#footer .widget {
  margin: 0 0 30px;
}
#footer .textwidget {
  font-size: 14px;
  line-height: 1.4286;
  color: #FFF;
  margin: 0 0 22px;
}
#footer .widgettitle {
  display: block;
  position: relative;
  margin-bottom: 30px;
  line-height: 1;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  color: #fff;
  padding: 0;
}
#footer .widget_posts_lists ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#footer .widget_posts_lists ul > li + li {
  padding: 25px 0 0;
}
#footer .widget_posts_lists ul > li .featured-image {
  -ms-flex-preferred-size: 60px;
  flex-basis: 60px;
  max-width: 60%;
  position: relative;
  overflow: hidden;
}
#footer .widget_posts_lists ul > li .featured-image:hover:before {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
#footer .widget_posts_lists ul > li .featured-image:before {
  content: "\f067";
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: -20px;
  right: -20px;
  font-size: 20px;
  font-weight: 400;
  background: rgba(39, 46, 67, .85);
  -webkit-transition: .3s ease-in-out opacity, .3s ease-in-out transform;
  transition: .3s ease-in-out opacity, .3s ease-in-out transform;
  opacity: 0;
  font-family: "FontAwesome";
  color: #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#footer .widget_posts_lists ul > li .featured-image img {
  width: 100%;
}
#footer .widget_posts_lists ul > li .post-list-info {
  -ms-flex-preferred-size: calc(100% - 60px);
  flex-basis: calc(100% - 60px);
  max-width: calc(100% - 60px);
  padding-left: 20px;
}
#footer .widget_posts_lists ul > li .post-list-title {
  display: block;
  font-size: 14px;
  line-height: 1.8571;
  color: #6a727d;
  text-decoration: none;
}
#footer .widget_posts_lists ul > li .post-list-title:hover {
  color: #d3d9c4;
}
#footer .widget_posts_lists ul > li .post-list-meta {
  color: #6a727d;
  font-size: 12px;
  line-height: 1.6667;
}
#footer .helpme-flickr-feeds {
  margin: 0 -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#footer .helpme-flickr-feeds .featured-image {
  -ms-flex-preferred-size: calc(33.33% - 10px);
  flex-basis: calc(33.33% - 10px);
  max-width: calc(33.33% - 10px);
  margin: 0 5px 10px;
  position: relative;
}
#footer .helpme-flickr-feeds .featured-image:hover:before {
  opacity: 1;
}
#footer .helpme-flickr-feeds .featured-image:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(39, 46, 67, .85);
  -webkit-transition: .3s ease-in-out opacity;
  transition: .3s ease-in-out opacity;
  opacity: 0;
}
#footer .helpme-flickr-feeds .featured-image img {
  width: 100%;
}
#footer .tagcloud a {
  display: inline-block;
  margin: 0 4px 8px 0;
  padding: 12px 10px;
  text-transform: capitalize;
  border-radius: 4px;
  color: #6a727d;
  line-height: 1;
  border: 1px solid #6a727d;
  font-size: 14px;
  text-decoration: none;
}
#footer .tagcloud a:hover {
  background: #d3d9c4;
  border-color: #d3d9c4;
  color: #fff;
}
#footer .footer-bottom {
  padding: 30px 0;
  background: #2f4c26;
}
#footer .footer-bottom .footer-copyright {
  font-size: 13px;
  line-height: 1.2308;
  color: #FFF;
}
#footer .footer-logo .seal img {
  max-width: 32%;
  width: auto;
  padding-right: 15px;
}
#footer .seal {
  font-size: 14px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 15px;
  margin-bottom: 20px;
}
#credit a {
  color: #FFF
}
#credit a:hover {
  color: #FFF
}
/* Social Icons */
.footer-bottom .social-networks {
  padding: 0px;
}
.footer-bottom .social-networks > li {
  padding-right: 5px;
}
.footer-bottom .social-networks > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  font-size: 16px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  -webkit-transition: .3s ease color, .3s ease background, .3s width;
  transition: .3s ease color, .3s ease background, .3s width;
  text-decoration: none;
}
.footer-bottom .social-networks > li a:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.tribe-events-notices {
  background: #fedfbd;
  border: 1px solid #fed4a5;
  text-shadow: 0 1px 0 #ffead2;
}
.tribe-events-notices {
  color: #51734b;
}
#tribe-bar-form .tribe-bar-submit input[type=submit], .datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled], #tribe-events-content .tribe-events-calendar td.tribe-events-present.mobile-active:hover, .tribe-events-calendar td.tribe-events-present.mobile-active, .tribe-events-calendar td.tribe-events-present.mobile-active div[id*=tribe-events-daynum-], .tribe-events-calendar td.tribe-events-present.mobile-active div[id*=tribe-events-daynum-] a, #tribe-events .tribe-events-button, #tribe-events .tribe-events-button:hover, #tribe_events_filters_wrapper input[type=submit], .tribe-events-button, .tribe-events-button.tribe-active:hover, .tribe-events-button.tribe-inactive, .tribe-events-button:hover, .tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-], .tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-]>a {
  background: #e15d4e;
}
#tribe-bar-form .tribe-bar-submit input[type=submit]:hover {
  background: #fed4a5;
}
.datepicker table tr td.active.active:hover, .datepicker table tr td span.active.active:hover {
  color: #fff;
}
#tribe-bar-collapse-toggle {
  background: #51734b;
}
.tribe-events-calendar thead th {
    background-color: #51734b;
}
.tribe-events-calendar div[id*=tribe-events-daynum-], .tribe-events-calendar div[id*=tribe-events-daynum-] a {
    background-color: #88a66d;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */
}
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }
}
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    width: 100%;
    padding-right: 0;
  }
  .t-1of2 {
    float: left;
    padding-right: .75em;
    width: 50%;
  }
  .t-1of3 {
    float: left;
    padding-right: .75em;
    width: 33.33%;
  }
  .t-2of3 {
    float: left;
    padding-right: .75em;
    width: 66.66%;
  }
  .t-1of4 {
    float: left;
    padding-right: .75em;
    width: 25%;
  }
  .t-3of4 {
    float: left;
    padding-right: .75em;
    width: 75%;
  }
  .t-1of5 {
    float: left;
    padding-right: .75em;
    width: 20%;
  }
  .t-2of5 {
    float: left;
    padding-right: .75em;
    width: 40%;
  }
  .t-3of5 {
    float: left;
    padding-right: .75em;
    width: 60%;
  }
  .t-4of5 {
    float: left;
    padding-right: .75em;
    width: 80%;
  }
}
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    width: 760px;
  }
  /*********************
  HEADER STYLES
  *********************/
  .sticky-wrap {
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
  }
  /*********************
  NAVIGATION STYLES
  *********************/
  .nav {
    border: 0; /* end .menu ul li */ /* highlight current page */ /* end current highlighters */
  }
  .nav ul {
    background: #323944;
    margin-top: 0;
  }
  .nav li {
    float: left;
    position: relative;
  }
  .nav li a {
    border-bottom: 0;
  }
  .nav li a:hover, .nav li a:focus {
    color: white;
    text-decoration: underline;
  }
  .nav li ul.sub-menu, .nav li ul.children {
    margin-top: 0;
    border: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999; /* highlight sub-menu current page */
  }
  .nav li ul.sub-menu li a, .nav li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: 180px;
    border-bottom: 1px solid #ccc;
  }
  .nav li ul.sub-menu li:last-child a, .nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  .nav li ul.sub-menu li ul, .nav li ul.children li ul {
    top: 0;
    left: 100%;
  }
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }
  /* Main */
  main#main {
    padding-top: 113px;
  }
  /* end .nav */
  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin-top: 2.2em;
  }
  .widgettitle {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: .75em;
    padding-bottom: .5rem;
  }
  .widget {
    padding: 0 10px;
    margin: 2.2em 0;
  }
  .widget ul li {
    margin-bottom: .75em; /* deep nesting */
  }
  .widget ul li ul {
    margin-top: .75em;
    padding-left: 1em;
  }
  /* links widget */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  #credit {
    display: inline-block
  }
  /* Content */
  .entry-content ul, .entry-content ol {
    padding: 0 20px;
    overflow: hidden;
  }
  #footer .footer-bottom .row {
    align-items: center;
  }
  #tribe-events {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 640px) {
  .header-top .top-holder .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-top .header-toolbar-contact {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding-right: 50px;
  }
  .header-top .social-networks {
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
  .fixed-position .header-top {
    margin-top: -51px;
  }
  .header-top, .header-top * {
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
  }
  .header-top {
    margin-top: 0 !important;
  }
  .header-top .header-toolbar-contact {
    padding: 13px 0;
    padding-right: 20px;
  }
  .fixed-position .header-top .header-toolbar-contact {
    padding: 0;
  }
  .header-top .social-networks {
    padding: 9px 0;
  }
  .fixed-position .header-top .social-networks {
    padding: 0;
  }
  .fixed-position .header-top .social-networks > li a {
    height: 26px;
    width: 26px;
  }
  .header-top .header-tool-opener {
    display: none;
  }
  .header-bottom .container {
    position: relative;
  }
  .logo {
    width: 170px;
    -webkit-transition: .4s ease width;
    transition: .4s ease width;
  }
  .fixed-position .logo {
    width: 150px;
  }
  .nav-opener {
    display: none;
  }
  #nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-left: auto;
  }
  #nav .primary-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #nav .primary-menu li.menu-item-has-children {
    position: relative;
  }
  #nav .primary-menu li.menu-item-has-children.has_mega_menu {
    position: static;
  }
  #nav .primary-menu li.menu-item-has-children.has_mega_menu:hover .sub-menu {
    visibility: visible;
  }
  #nav .primary-menu li.menu-item-has-children.has_mega_menu > .sub-menu {
    left: 15px;
    right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
  }
  #nav .primary-menu li.menu-item-has-children.has_mega_menu > .sub-menu > li {
    -ms-flex-preferred-size: 16.6667%;
    flex-basis: 16.6667%;
    max-width: 16.6667%;
    padding: 25px 0;
  }
  #nav .primary-menu li.menu-item-has-children.has_mega_menu > .sub-menu > li + li {
    border-left: 1px solid rgba(255, 255, 255, .2);
  }
  #nav .primary-menu li.menu-item-has-children.has_mega_menu > .sub-menu > li .sub-menu {
    opacity: 1;
    border: none;
    width: auto;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: none;
  }
  #nav .primary-menu li.menu-item-has-children.has_mega_menu > .sub-menu > li .sub-menu > li {
    border: none;
  }
  #nav .primary-menu li.menu-item-has-children.has_mega_menu > .sub-menu > li .sub-menu > li > a {
    border: none;
  }
  #nav .primary-menu li.menu-item-has-children.has_mega_menu > .sub-menu > li .sub-menu > li > a:hover {
    background: #51724a;
  }
  #nav .primary-menu li.menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
  }
  #nav .primary-menu > li > a {
    padding: 10px;
    -webkit-transition: .4s ease padding;
    transition: .4s ease padding;
    color: #51724a;
  }
  .fixed-position #nav .primary-menu > li > a {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  #nav .primary-menu > li > a:hover {
    background: none;
    color: #51724a;
  }
  #nav .primary-menu > li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s ease visibility, .4s ease opacity;
    transition: .4s ease visibility, .4s ease opacity;
    background: #51724a;
    width: 230px;
  }
  #nav .primary-menu > li > .sub-menu {
    border-top: 1px solid #d3d9c4;
  }
  #nav .primary-menu > li > .sub-menu > li.menu-item-has-children > a {
    position: relative;
  }
  #nav .primary-menu > li > .sub-menu > li.menu-item-has-children > a:after {
    content: "\f105";
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 1.35em;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-family: "FontAwesome";
    line-height: 1;
    font-weight: 400;
    -webkit-transition: .3s ease transform;
    transition: .3s ease transform;
  }
  #nav .primary-menu > li > .sub-menu > li.menu-item-has-children > .sub-menu {
    left: 100%;
    top: 50%;
  }
  #nav .primary-menu > li .sub-menu > li:first-child > a {
    border: none;
  }
  #nav .primary-menu > li .sub-menu > li > a {
    font-size: 14px;
    line-height: 1.4286;
    padding: 11px 25px;
  }
  #nav .donate-wrap {
    padding-right: 0;
    padding-left: 2px;
  }
  #nav .btn-donate, .btn-donate, .btn, .button, button, input[type="button"], input[type=submit], input[type="reset"], .btn:visited, .button:visited, button:visited, input[type="button"]:visited, input[type=submit]:visited, input[type="reset"]:visited, .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer input.button:visited, .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_footer input[type=submit]:visited, .gform_wrapper .gform_page_footer input.button:visited, .gform_wrapper .gform_page_footer input[type=submit]:visited, #wpsl-search-btn {
    font-size: 14px;
    line-height: 1.2857;
  }
  main#main {
    padding-top: 110px;
  }
  #footer .social-networks {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  #tribe-events {
    padding-top: 3rem;
  }
}
@media (min-width: 1030px) {
  .d-all {
    float: left;
    width: 100%;
    padding-right: 0;
  }
  .d-1of2 {
    float: left;
    padding-right: .75em;
    width: 50%;
  }
  .d-1of3 {
    float: left;
    padding-right: .75em;
    width: 33.33%;
  }
  .d-2of3 {
    float: left;
    padding-right: .75em;
    width: 66.66%;
  }
  .d-1of4 {
    float: left;
    padding-right: .75em;
    width: 25%;
  }
  .d-3of4 {
    float: left;
    padding-right: .75em;
    width: 75%;
  }
  .d-1of5 {
    float: left;
    padding-right: .75em;
    width: 20%;
  }
  .d-2of5 {
    float: left;
    padding-right: .75em;
    width: 40%;
  }
  .d-3of5 {
    float: left;
    padding-right: .75em;
    width: 60%;
  }
  .d-4of5 {
    float: left;
    padding-right: .75em;
    width: 80%;
  }
  .d-1of6 {
    float: left;
    padding-right: .75em;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    padding-right: .75em;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    padding-right: .75em;
    width: 28.5714286%;
  }
  .d-3of7 {
    float: left;
    padding-right: .75em;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    padding-right: .75em;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    padding-right: .75em;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    padding-right: .75em;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    padding-right: .75em;
    width: 12.5%;
  }
  .d-1of9 {
    float: left;
    padding-right: .75em;
    width: 11.1111111111%;
  }
  .d-1of10 {
    float: left;
    padding-right: .75em;
    width: 10%;
  }
  .d-1of11 {
    float: left;
    padding-right: .75em;
    width: 9.09090909091%;
  }
  .d-1of12 {
    float: left;
    padding-right: .75em;
    width: 8.33%;
  }
}
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  .wrap {
    width: 1040px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  main#main {
    padding-top: 139px;
  }
  .logo {
    width: 250px;
  }
  .fixed-position .logo {
    width: 157px;
  }
  #nav .primary-menu > li > a {
    padding: 12px;
    font-size: 18px;
    line-height: 1.5;
  }
  #nav .btn-donate, .btn-donate, .btn, .button, button, input[type="button"], input[type=submit], input[type="reset"], .btn:visited, .button:visited, button:visited, input[type="button"]:visited, input[type=submit]:visited, input[type="reset"]:visited, .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer input.button:visited, .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_footer input[type=submit]:visited, .gform_wrapper .gform_page_footer input.button:visited, .gform_wrapper .gform_page_footer input[type=submit]:visited, #wpsl-search-btn {
    font-size: 18px;
  }
  #footer .footer-logo {
    margin: 0 0 25px;
  }
}
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/
}
@media (max-width: 991px) {
  body.nav-active {
    overflow: hidden;
  }
  #header .container {
    width: 100%;
    max-width: 100%;
  }
  .header-bottom .container {
    height: 93px;
  }
  .logo {
    margin-left: 30px;
  }
  #layerslider_2, #layerslider_2 .ls-wrapper, #layerslider_2 .ls-inner img {
    min-height: 250px;
    object-fit: cover;
  }
  #layerslider_2 .ls-slide-transition-wrapper * {
    min-height: 250px;
  }
  #hero .caption {
    white-space: nowrap;
  }
  .ginput_recaptcha {
    display: flex;
    justify-content: center;
  }
  #nav {
    position: fixed;
    top: 113px;
    left: 0;
    right: 0;
    background: #51724a;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: .4s ease top, .4s ease opacity, .4s ease visibility;
    transition: .4s ease top, .4s ease opacity, .4s ease visibility;
    opacity: 0;
    visibility: hidden;
  }
  .tool_active #nav {
    top: 227px;
    -webkit-transition: .8s ease top, .4s ease opacity, .4s ease visibility;
    transition: .8s ease top, .4s ease opacity, .4s ease visibility;
  }
  .resize-active #nav {
    -webkit-transition: none;
    transition: none;
  }
  .nav-active #nav {
    opacity: 1;
    visibility: visible;
  }
  #nav .primary-menu li.menu-item-has-children.sub_active > a:after {
    -webkit-transform: translate(0, -50%) rotate(180deg);
    -ms-transform: translate(0, -50%) rotate(180deg);
    transform: translate(0, -50%) rotate(180deg);
  }
  #nav .primary-menu li.menu-item-has-children > a {
    position: relative;
  }
  #nav .primary-menu li.menu-item-has-children > a:after {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 1.35em;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-family: "FontAwesome";
    line-height: 1;
    font-weight: 400;
    -webkit-transition: .3s ease transform;
    transition: .3s ease transform;
  }
  #nav .primary-menu > li > a {
    border-top: 1px solid rgba(255, 255, 255, .1);
  }
  #nav .primary-menu > li > .sub-menu {
    border-top: 1px solid rgba(128, 128, 128, .2);
  }
}
@media (max-width: 767px) {
  .m-all {
    float: left;
    width: 100%;
    padding-right: 0;
  }
  .m-1of2 {
    float: left;
    padding-right: .75em;
    width: 50%;
  }
  .m-1of3 {
    float: left;
    padding-right: .75em;
    width: 33.33%;
  }
  .m-2of3 {
    float: left;
    padding-right: .75em;
    width: 66.66%;
  }
  .m-1of4 {
    float: left;
    padding-right: .75em;
    width: 25%;
  }
  .m-3of4 {
    float: left;
    padding-right: .75em;
    width: 75%;
  }
  .container {
    max-width: none;
  }
  #footer {
    text-align: center;
  }
  #footer .footer-logo img {
    width: 240px;
  }
  #footer .textwidget {
    margin: 0 auto 30px;
    width: 240px;
  }
  #footer .footer-bottom .footer-copyright {
    text-align: center;
  }
  .footer-bottom .social-networks {
    justify-content: center;
    margin-top: 1rem;
  }
  #footer .seal {
    justify-content: center;
    text-align: left;
  }
  #footer .footer-logo .seal img {
    max-width: 88px;
  }
}
/* MISC */
.tac {
  text-align: center;
}
.title-divider {
  text-align: center;
}
.tal .title-divider {
  text-align: left !important;
}
.reverse {
  color: #fff;
}
.title-divider span {
  background: #d3d9c4;
  display: inline-block;
  position: relative;
}
.title-divider span:nth-child(1) {
  width: 50px;
  height: 2px;
}
.title-divider span:nth-child(2) {
  width: 4px;
  height: 4px;
  margin-left: 4px;
  margin-right: 4px;
  top: -1px;
}
.title-divider span:nth-child(3) {
  width: 6px;
  height: 6px;
  top: -2px;
}
.title-divider span:nth-child(4) {
  width: 4px;
  height: 4px;
  margin-left: 4px;
  margin-right: 4px;
  top: -1px;
}
.title-divider span:nth-child(5) {
  width: 50px;
  height: 2px;
}
.white-box h2 {
  margin-top: 1rem;
}
.entry-content .areas-of-focus table {
  border: 1px solid rgba(255, 255, 255, .1);
  display: table !important;
  width: auto
}
.entry-content .areas-of-focus td {
  border-right: 1px solid rgba(255, 255, 255, .1);
}
.entry-content .areas-of-focus tr {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
/*Section */
.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 992px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
/* Image Float */
.img-left, .img-right, .img-center, .entry-content .img-left, .entry-content .img-right, .blog #ndic-content #inner-content .col-md-9 img, .single #ndic-content #inner-content .col-md-9 img {
  display: block;
  margin: 0 0 20px;
}
.single #ndic-content #inner-content .col-md-9 img {
  margin: 20px 0;
}
@media (min-width:768px) {
  .img-left, .entry-content .img-left {
    float: left;
    margin: 5px 25px 10px 0
  }
  .img-right, .entry-content .img-right {
    float: right;
    margin: 5px 0 10px 25px
  }
  .img-center {
    margin: 10px 25px;
  }
}
/* Fixings */
.vc_row-no-padding .vc_inner.container {
  margin-left: auto !important;
  margin-right: auto !important;
}
@media only screen and (min-width: 768px) {
  .mb-0 .wpb_content_element {
    margin-bottom: 0 !important;
  }
}
#hero .wpb_content_element, .white-box .wpb_content_element, #areas-of-focus .wpb_content_element {
  margin-bottom: 0;
}
/* Upcoming Events */
.event-post .vc_gitem_row .vc_gitem-col {
  padding: 0 !important;
}
.event-post .vc_gitem-post-data {
  margin-bottom: 10px !important;
}
.upcoming-events .vc_grid-item-mini {
  background: #fff;
}
.upcoming-events .vc_grid-item-mini .vc_gitem-zone-c {
  background-color: transparent !important;
  padding: 1rem;
}
.upcoming-events .vc_grid-item-mini .vc_gitem-zone-c .vc_gitem-post-data-source-post_excerpt {
  display: none
}
.event-post .vc_grid .vc_btn3-container {
  margin-bottom: 0 !important;
  margin-top: 1rem !important;
}
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:focus, .vc_btn3.vc_btn3-color-juicy-pink:focus {
  background-color: #d3d9c4 !important;
}
@media only screen and (min-width: 768px) {
  .event-post .vc_grid .vc_pageable-slide-wrapper, .latest-news .vc_grid .vc_pageable-slide-wrapper {
    display: flex;
    flex-wrap: wrap;
  }
  .event-post .vc_grid .vc_pageable-slide-wrapper .vc_grid-item, .latest-news .vc_grid .vc_pageable-slide-wrapper .vc_grid-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .upcoming-events .vc_grid-item-mini {
    height: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .event-post .vc_grid .vc_pageable-slide-wrapper .vc_grid-item, .latest-news .vc_grid .vc_pageable-slide-wrapper .vc_grid-item {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media only screen and (min-width: 1200px) {
  .upcoming-events .vc_grid-item-mini .vc_gitem-zone-c {
    padding: 1.8rem 2rem;
  }
}
/**********************************************************************
	INSIDE PAGE
***********************************************************************/
/* Header Image */
.header-photo {
  padding: 0 !important;
}
.header-photo .wpb_content_element {
  margin-bottom: 0;
}
.header-photo .wpb_single_image .vc_figure, .header-photo .wpb_single_image .vc_figure * {
  width: 100%;
}
/* Page Title */
#ndic-content > .page-header {
  display: none;
}
.page-header {
  background: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.page-header .vc_column-inner {
  padding-top: 15px !important;
}
.page-header .container {
  margin-bottom: 0;
}
.page-header h1 {
  color: #2f4c26;
  text-shadow: none;
  position: relative;
  z-index: 1;
}
.page-header h1 .custom-color-heading {
  color: #d3d9c4;
}
@media only screen and (min-width: 1200px) {
  .page-header {
    margin-bottom: 3rem;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
}
.white-box > .wpb_column > .vc_column-inner > .wpb_wrapper {
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.01);
  background: #fff;
  padding: 30px;
  padding-bottom: 40px;
  margin-bottom: 2rem;
  margin-top: 2rem;
  height: 100%;
}
.white-box > .wpb_column > .vc_column-inner > .wpb_wrapper:hover {
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.05);
}
.white-box .title .title-divider {
  display: none;
}
/* Areas of Focus */
.areas-of-focus {
  text-align: center;
  color: #fff;
}
.areas-of-focus > .vc_column_container > .vc_column-inner > .wpb_wrapper > .wpb_content_element {
  padding-left: 10%;
  padding-right: 10%;
}
@media only screen and (min-width:768px) {
  .areas-of-focus {
    margin-bottom: -6rem;
    padding-bottom: 80px;
  }
}
.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title > a {
  color: #fff !important;
  background-color: #d3d9c4 !important;
}
@media only screen and (min-width:1200px) {
  .wpb-js-composer .vc_tta.vc_general .vc_tta-panel-title > a {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}
/* BLOG */
/*.blog #ndic-content .sidebar,, .single .sidebar*/ .page-id-9 #ndic-content .sidebar {
  display: none;
}
/*.blog #ndic-content #inner-content .col-md-9, .single #ndic-content #inner-content .col-md-9,*/ .page-id-9 #ndic-content #inner-content .col-md-9 {
  -ms-flex: 0 0 100% !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
  margin-top: 2rem;
}
.page-id-9 #ndic-content #inner-content .col-md-9 {
  margin-top: 0 !important;
}
.single #ndic-content #inner-content h2 b, .single #ndic-content #inner-content h2 strong {
  font-weight: normal;
}
.entry-title a {
  color: #2f4c26
}
.entry-title a:hover {
  color: #87a46c
}
.widget.widget_search #searchform input[type="search"] {
  margin-bottom: 1rem;
}
@media only screen and (min-width:768px) {
  .blog #ndic-content #inner-content .col-md-9 img {
    float: left;
    margin: 5px 25px 10px 0;
    /*width: 20%;
    max-width: 200px;*/
  }
  .single #ndic-content #inner-content .col-md-9 img {
    float: left;
    margin: 5px 25px 20px 0;
    /*width: 30%;
    max-width: 500px;*/
    clear: both;
  }
  .single #ndic-content #inner-content .featured-image img {
    float: none;
    margin-left: 0;
    max-width: 100%;
  }
}
@media only screen and (min-width:1200px) {
  .blog #ndic-content #inner-content .col-md-9, .single #ndic-content #inner-content .col-md-9 {
    margin-top: 2.5rem;
  }
  .blog #ndic-content #inner-content .page-title, .single #ndic-content #inner-content .single-title {
    font-size: 2.5em;
  }
}
/* What We Do */
/* Anchor */
#education, #mental-health, #prevention, #areas-of-focus {
  border-top: 120px solid transparent;
  margin-top: -120px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
figure p {
  text-align: center;
  margin-top: .5rem !important;
}
@media only screen and (min-width:992px) {
  #what-we-do li {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-width:1200px) {
  #what-we-do {
    margin-top: 3rem;
  }
  #what-we-do li {
    margin-bottom: 2.25rem;
  }
}
/* MEET OUR BOARD */
.meet-our-board {
  position: relative;
}
.grids > .wpb_column > .vc_column-inner > .wpb_wrapper {
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.01);
  background: #fff;
  padding: 30px;
  padding-bottom: 40px;
  height: 100%;
  margin-bottom: 35px;
}
.grids > .wpb_column > .vc_column-inner > .wpb_wrapper:hover {
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.05);
}
.grids > .wpb_column > .vc_column-inner > .wpb_wrapper .wpb_content_element {
  margin-bottom: 12px;
}
.grids > .wpb_column > .vc_column-inner > .wpb_wrapper .wpb_content_element.wpb_text_column {
  margin-bottom: 0;
}
.grids > .wpb_column > .vc_column-inner > .wpb_wrapper .wpb_content_element.wpb_text_column h2 {
  margin-bottom: 3px;
  font-size: 1.5em;
}
.grids > .wpb_column > .vc_column-inner > .wpb_wrapper .wpb_content_element.wpb_text_column h3 {
  margin-bottom: 15px;
  text-transform: none;
  font-size: 1.1em;
  letter-spacing: .25px;
}
@media (min-width: 768px) and (max-width:991px) {
  .grids > .wpb_column > .vc_column-inner > .wpb_wrapper {
    padding: 15px;
  }
  .grids > .wpb_column > .vc_column-inner > .wpb_wrapper .wpb_content_element.wpb_text_column h2 {
    font-size: 18px;
  }
  .grids > .wpb_column > .vc_column-inner > .wpb_wrapper .wpb_content_element.wpb_text_column h3 {
    font-size: 14px;
  }
}
@media (min-width: 992px) and (max-width:1199px) {
  .grids > .wpb_column > .vc_column-inner > .wpb_wrapper {
    padding: 20px;
  }
}
/* WHO WE ARE */
.who-we-are .vdo {
  margin-bottom: 12px !important;
  line-height: 0 !important;
}
@media (min-width: 768px) and (max-width:991px) {
  .who-we-are #who-we {
    height: 170px;
  }
}
@media (min-width: 992px) and (max-width:1199px) {
  .who-we-are #who-we {
    height: 233px;
  }
}
@media (min-width: 1200px) {
  .who-we-are #who-we {
    height: 290px;
  }
}
/* How to Apply */
.ginput_complex span input, .ginput_complex span select {
  margin-top: 16px !important;
  margin-bottom: 0 !important
}
#gform_wrapper_1 .ginput_complex span input, #gform_wrapper_1 .ginput_complex span select {
  margin-top: 0 !important;
}
.ginput_complex span input#input_4_5_1 {
  margin-top: 0 !important
}
@media (min-width: 992px) {
  .ginput_complex span input, .ginput_complex span select {
    margin-top: 28px !important;
  }
}
@media only screen and (max-width: 641px) {
  .gform_wrapper li.field_sublabel_below .ginput_complex {
    margin-top: 0px !important;
  }
}
/* Accordion */
.wpb-js-composer .vc_tta-container {
  margin-bottom: 0 !important;
}
ul.doclist, ul.board-meeting-list {
  margin: .5rem 0 1.5rem !important;
}
ul.doclist li, ul.board-meeting-list li {
  position: relative;
  padding-left: 25px;
  list-style: none
}
ul.doclist li:before, ul.board-meeting-list li:before {
  position: absolute;
  left: 0;
  content: "\f1c1";
  width: 25px;
  height: 25px;
  display: block;
  top: 3px;
  font: normal normal normal 14px/1 FontAwesome;
  color: #d3d9c4;
  font-size: 120%;
}
ul.doclist li.xls:before, ul.board-meeting-list li.xls:before {
  content: "\f1c3";
}
.wpb-js-composer .vc_tta.vc_general .vc_tta-panel-body {
  padding: 20px 0 !important;
}
/* Get Involved */
#input_3_7_2_cardinfo_right #input_3_7_3 {
  display: inline-block;
}
#input_3_7_2_cardinfo_right .ginput_card_security_code_icon {
  top: 8px;
}
.gform_wrapper ul.gfield_radio#input_3_9 li {
  display: inline-block;
  min-width: 90px;
}
.gform_wrapper ul.gfield_radio#input_3_9 li input[type=radio], .gform_wrapper ul.gfield_radio#input_3_9 li label {
  display: inline-block;
}
.gform_wrapper ul.gfield_radio#input_3_9 li label {
  width: auto;
  max-width: none
}
/* Board Member Login */
.post-password-form {
  padding-top: 2rem;
}
.post-password-form input {
  margin-top: .5rem;
}
.post-password-form input[type=submit] {
  padding-top: .5rem;
  padding-bottom: .5rem;
  height: 40px;
}
@media (min-width: 992px) {
  .post-password-form {
    padding-top: 3rem;
  }
}
.single .event-dates {
  color: #d3d9c4;
  font-size: 21px;
  line-height: 1.4em;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .stick a.anchor {
    display: block;
    position: relative;
    top: -120px;
  }
}
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " ("attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " ("attr(title) ")";
  }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
  .sidebar, .page-navigation, .wp-prev-next, .respond-form, nav {
    display: none;
  }
}
/* NDIC UPCOMING EVENTS */
.ndic-events-wrapper .ndic-event {
  padding: 20px;
  background-color: #ffffff;
  margin-bottom: 2em;
}
.ndic-events-wrapper .ndic-event .ndic-event-date {
  padding: 10px 20px;
  background-color: #d3d9c4;
  color: #ffffff;
  text-align: center;
}
.ndic-events-wrapper .ndic-event:hover .ndic-event-date {
  background: #272e43;
}
.ndic-events-wrapper .ndic-event .ndic-event-date .ndic-event-date-month, .ndic-events-wrapper .ndic-event .ndic-event-date .ndic-event-date-year {
  font-size: 1em;
}
.ndic-events-wrapper .ndic-event .ndic-event-image img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}
.ndic-events-wrapper .ndic-event .ndic-event-summary {
  text-align: left;
}
.ndic-events-wrapper .ndic-event .ndic-event-summary .ndic-event-title {
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
  line-height: 1.2;
  margin-bottom: 15px;
}
.ndic-events-wrapper .ndic-event .ndic-event-summary .city-state, .ndic-events-wrapper .ndic-event .ndic-event-summary .in-attendance {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}
.ndic-events-wrapper .ndic-event .ndic-event-summary .city-state:before, .ndic-events-wrapper .ndic-event .ndic-event-summary .in-attendance:before {
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  color: #d3d9c4;
  font-family: FontAwesome;
  left: 0;
  top: 2px;
}
.ndic-events-wrapper .ndic-event .ndic-event-summary .city-state:before {
  content: "\f041";
}
.ndic-events-wrapper .ndic-event .ndic-event-summary .in-attendance:before {
  content: "\f007";
}
.ndic-events-wrapper .ndic-event .ndic-event-summary .ndic-event-title a {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 300;
  text-transform: uppercase;
  color: #d3d9c4;
  outline: none;
}
.ndic-events-wrapper .ndic-event .ndic-event-summary .ndic-event-title a:hover {
  text-decoration: none;
  color: #d3d9c4;
}
.ndic-events-wrapper .ndic-events-nav-wrapper {
  text-align: center;
}
.ndic-events-wrapper .ndic-events-nav-wrapper .ndic-events-nav-button {
  margin-right: .5em;
  background-color: #51724a;
  color: #51724a;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
}
.ndic-events-wrapper .ndic-events-nav-wrapper .ndic-events-nav-button-current, .ndic-events-wrapper .ndic-events-nav-wrapper .ndic-events-nav-button:hover {
  font-weight: bold;
  background-color: #d3d9c4;
  color: #d3d9c4;
}
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span {
  margin: 0 .5em 0 0 !important;
  background-color: #51724a !important;
  color: #51724a !important;
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  display: inline-block;
}
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot.active span, .vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span:hover {
  font-weight: bold;
  background-color: #d3d9c4 !important;
  color: #d3d9c4 !important;
}
@media (min-width: 768px) {
  .ndic-events-wrapper .ndic-event .ndic-event-date {
    padding-top: 44px;
  }
  .ndic-events-wrapper .ndic-event .ndic-event-date .ndic-event-date-day {
    font-size: 4em;
    line-height: 1.2;
  }
  .ndic-events-wrapper .ndic-event .ndic-event-summary .ndic-event-title a {
    font-size: 18px;
  }
  .ndic-events-wrapper .ndic-event .ndic-event-summary {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .ndic-events-wrapper .ndic-event .ndic-event-date {
    display: flex;
    text-align: center;
    justify-content: center;
  }
  .ndic-events-wrapper .ndic-event .ndic-event-date div {
    padding: 0 3px;
  }
  .ndic-events-wrapper .ndic-event .ndic-event-image {
    margin-bottom: 10px;
  }
  .ndic-events-wrapper .ndic-event .ndic-event-image, .ndic-events-wrapper .ndic-event .ndic-event-summary {
    padding-left: 0;
    padding-right: 0;
  }
  .video_container .vc_empty_space {
    display: none;
  }
  .video_container .wsite-youtube-container iframe {
    display: block;
    margin: 30px auto;
  }
}
.video_container .wsite-youtube-container iframe {
  max-width: 100%;
}
/* HERO */
.ls-layer {
  width: 100% !important
}
.ls-layer h1 {
  color: #fff;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}
/* Be Hunger FORM */
.become-hunger .wpb_wrapper .form-content input[type="text"], .become-hunger .wpb_wrapper .form-content select {
  background-color: #fff;
}
.become-hunger .wpb_wrapper .form-content select {
  border-radius: 6px;
}
.become-hunger .wpb_wrapper .form-content select option {
  padding-right: 10px;
}
.become-hunger .wpb_wrapper .form-content input[type="submit"] {
  padding: 8.5px 1.5em;
  text-transform: uppercase;
  font-size: 12px;
  height: 40px;
}
@media only screen and (min-width: 992px) {
  .form-title h3 {
    font-size: 1.5em;
    margin-bottom: 0
  }
  .become-hunger .wpb_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .form-title {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .form-content {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .become-hunger .wpb_wrapper .form-content {
    display: flex;
    justify-content: space-between;
  }
  .become-hunger .wpb_wrapper .form-content input[type="text"], .become-hunger .wpb_wrapper .form-content select {
    margin-right: 15px;
    max-width: 20%;
  }
  .become-hunger .wpb_wrapper .form-content select {
    min-width: 26%;
  }
}
@media only screen and (min-width: 1200px) {
  .become-hunger .wpb_wrapper .form-content select {
    min-width: 24%;
    padding-left: 10px;
    padding-right: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .become-hunger .wpb_wrapper .form-content input[type="text"], .become-hunger .wpb_wrapper .form-content select {
    margin-bottom: 15px;
  }
  .newsletter h3 {
    margin-bottom: 15px !important;
  }
  .become-hunger .wpb_wrapper .form-content input[type="submit"] {
    width: 100%;
  }
}
/* Hero Inner */
.wpb_single_image.main-hero-image .vc_single_image-wrapper {
  max-height: 550px !important;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.wpb_single_image.position-middle .vc_single_image-wrapper {
  align-items: center;
}
.wpb_single_image.position-bottom .vc_single_image-wrapper {
  align-items: flex-end;
}
.main-hero-image .wpb_singleimage_heading {
  position: absolute;
  left: 6%;
  top: 50%;
  color: #fff;
  max-width: 60%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.wpb_single_image.main-hero-image.right .wpb_singleimage_heading {
  right: 6%;
  left: auto;
  text-align: right;
}
.wpb_single_image.main-hero-image.center .wpb_singleimage_heading {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}