@charset "UTF-8";
/*! 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.
 */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300');


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: "Open Sans", 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
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * 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 {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; }

/*
 * 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: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0; }

/*
 * 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: 0.35em 0.625em 0.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"] {
  -webkit-box-sizing: border-box;
  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 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 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; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  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: block; }
  .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

******************************************************************/
/*
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-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  -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: Accessibility Stylesheet

******************************************************************/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }
  .screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */ }

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

/******************************************************************
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? */
/*********************
WINDOW WIDTH SIZING
*********************/
/*********************
ANIMATION
*********************/
/*********************
CIRCLE & TRIANGLE
*********************/
/******************************************************************
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.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .m-1of2, .m-2of4, .m-3of6, .m-4of8, .m-5of10, .m-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .m-1of3, .m-2of6, .m-3of9, .m-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .m-2of3, .m-4of6, .m-6of9, .m-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .m-1of4, .m-2of8, .m-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .m-3of4, .m-6of8, .m-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .m-1of5, .m-2of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .m-2of5, .m-4of10 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .m-3of5, .m-6of10 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .m-4of5, .m-8of10 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .m-1of6, .m-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .m-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .m-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .m-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .m-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .m-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .m-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .m-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .m-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%; }
  .m-5of8 {
    float: left;
    padding-right: 0.75em;
    width: 62.5%; }
  .m-7of8 {
    float: left;
    padding-right: 0.75em;
    width: 87.5%; }
  .m-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .m-2of9 {
    float: left;
    padding-right: 0.75em;
    width: 22.2222222222%; }
  .m-4of9 {
    float: left;
    padding-right: 0.75em;
    width: 44.4444444444%; }
  .m-5of9 {
    float: left;
    padding-right: 0.75em;
    width: 55.5555555555%; }
  .m-7of9 {
    float: left;
    padding-right: 0.75em;
    width: 77.7777777777%; }
  .m-8of9 {
    float: left;
    padding-right: 0.75em;
    width: 88.8888888888%; }
  .m-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .m-3of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .m-7of10 {
    float: left;
    padding-right: 0.75em;
    width: 70%; }
  .m-9of10 {
    float: left;
    padding-right: 0.75em;
    width: 90%; }
  .m-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .m-2of11 {
    float: left;
    padding-right: 0.75em;
    width: 18.18181818182%; }
  .m-3of11 {
    float: left;
    padding-right: 0.75em;
    width: 27.27272727273%; }
  .m-4of11 {
    float: left;
    padding-right: 0.75em;
    width: 36.36363636364%; }
  .m-5of11 {
    float: left;
    padding-right: 0.75em;
    width: 45.45454545455%; }
  .m-6of11 {
    float: left;
    padding-right: 0.75em;
    width: 54.54545454546%; }
  .m-7of11 {
    float: left;
    padding-right: 0.75em;
    width: 63.63636363637%; }
  .m-8of11 {
    float: left;
    padding-right: 0.75em;
    width: 72.72727272728%; }
  .m-9of11 {
    float: left;
    padding-right: 0.75em;
    width: 81.81818181819%; }
  .m-10of11 {
    float: left;
    padding-right: 0.75em;
    width: 90.9090909091%; }
  .m-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .m-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.65%; }
  .m-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.1%; }
  .m-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.3%; }
  .m-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.63%; } }

@media (min-width: 481px) and (max-width: 768px) {
  .h-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .h-1of2, .h-2of4, .h-3of6, .h-4of8, .h-5of10, .h-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .h-1of3, .h-2of6, .h-3of9, .h-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .h-2of3, .h-4of6, .h-6of9, .h-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .h-1of4, .h-2of8, .h-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .h-3of4, .h-6of8, .h-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .h-1of5, .h-2of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .h-2of5, .h-4of10 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .h-3of5, .h-6of10 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .h-4of5, .h-8of10 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .h-1of6, .h-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .h-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .h-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .h-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .h-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .h-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .h-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .h-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .h-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%; }
  .h-5of8 {
    float: left;
    padding-right: 0.75em;
    width: 62.5%; }
  .h-7of8 {
    float: left;
    padding-right: 0.75em;
    width: 87.5%; }
  .h-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .h-2of9 {
    float: left;
    padding-right: 0.75em;
    width: 22.2222222222%; }
  .h-4of9 {
    float: left;
    padding-right: 0.75em;
    width: 44.4444444444%; }
  .h-5of9 {
    float: left;
    padding-right: 0.75em;
    width: 55.5555555555%; }
  .h-7of9 {
    float: left;
    padding-right: 0.75em;
    width: 77.7777777777%; }
  .h-8of9 {
    float: left;
    padding-right: 0.75em;
    width: 88.8888888888%; }
  .h-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .h-3of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .h-7of10 {
    float: left;
    padding-right: 0.75em;
    width: 70%; }
  .h-9of10 {
    float: left;
    padding-right: 0.75em;
    width: 90%; }
  .h-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .h-2of11 {
    float: left;
    padding-right: 0.75em;
    width: 18.18181818182%; }
  .h-3of11 {
    float: left;
    padding-right: 0.75em;
    width: 27.27272727273%; }
  .h-4of11 {
    float: left;
    padding-right: 0.75em;
    width: 36.36363636364%; }
  .h-5of11 {
    float: left;
    padding-right: 0.75em;
    width: 45.45454545455%; }
  .h-6of11 {
    float: left;
    padding-right: 0.75em;
    width: 54.54545454546%; }
  .h-7of11 {
    float: left;
    padding-right: 0.75em;
    width: 63.63636363637%; }
  .h-8of11 {
    float: left;
    padding-right: 0.75em;
    width: 72.72727272728%; }
  .h-9of11 {
    float: left;
    padding-right: 0.75em;
    width: 81.81818181819%; }
  .h-10of11 {
    float: left;
    padding-right: 0.75em;
    width: 90.9090909091%; }
  .h-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .h-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.65%; }
  .h-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.1%; }
  .h-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.3%; }
  .h-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.63%; } }

/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .t-1of2, .t-2of4, .t-3of6, .t-4of8, .t-5of10, .t-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .t-1of3, .t-2of6, .t-3of9, .t-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .t-2of3, .t-4of6, .t-6of9, .t-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .t-1of4, .t-2of8, .t-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .t-3of4, .t-6of8, .t-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .t-1of5, .t-2of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .t-2of5, .t-4of10 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .t-3of5, .t-6of10 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .t-4of5, .t-8of10 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .t-1of6, .t-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .t-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .t-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .t-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .t-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .t-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .t-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .t-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .t-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%; }
  .t-5of8 {
    float: left;
    padding-right: 0.75em;
    width: 62.5%; }
  .t-7of8 {
    float: left;
    padding-right: 0.75em;
    width: 87.5%; }
  .t-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .t-2of9 {
    float: left;
    padding-right: 0.75em;
    width: 22.2222222222%; }
  .t-4of9 {
    float: left;
    padding-right: 0.75em;
    width: 44.4444444444%; }
  .t-5of9 {
    float: left;
    padding-right: 0.75em;
    width: 55.5555555555%; }
  .t-7of9 {
    float: left;
    padding-right: 0.75em;
    width: 77.7777777777%; }
  .t-8of9 {
    float: left;
    padding-right: 0.75em;
    width: 88.8888888888%; }
  .t-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .t-3of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .t-7of10 {
    float: left;
    padding-right: 0.75em;
    width: 70%; }
  .t-9of10 {
    float: left;
    padding-right: 0.75em;
    width: 90%; }
  .t-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .t-2of11 {
    float: left;
    padding-right: 0.75em;
    width: 18.18181818182%; }
  .t-3of11 {
    float: left;
    padding-right: 0.75em;
    width: 27.27272727273%; }
  .t-4of11 {
    float: left;
    padding-right: 0.75em;
    width: 36.36363636364%; }
  .t-5of11 {
    float: left;
    padding-right: 0.75em;
    width: 45.45454545455%; }
  .t-6of11 {
    float: left;
    padding-right: 0.75em;
    width: 54.54545454546%; }
  .t-7of11 {
    float: left;
    padding-right: 0.75em;
    width: 63.63636363637%; }
  .t-8of11 {
    float: left;
    padding-right: 0.75em;
    width: 72.72727272728%; }
  .t-9of11 {
    float: left;
    padding-right: 0.75em;
    width: 81.81818181819%; }
  .t-10of11 {
    float: left;
    padding-right: 0.75em;
    width: 90.9090909091%; }
  .t-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .t-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.65%; }
  .t-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.1%; }
  .t-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.3%; }
  .t-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.63%; } }

/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .d-1of2, .d-2of4, .d-3of6, .d-4of8, .d-5of10, .d-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .d-1of3, .d-2of6, .d-3of9, .d-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .d-2of3, .d-4of6, .d-6of9, .d-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .d-1of4, .d-2of8, .d-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .d-3of4, .d-6of8, .d-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .d-1of5, .d-2of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .d-2of5, .d-4of10 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .d-3of5, .d-6of10 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .d-4of5, .d-8of10 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .d-1of6, .d-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .d-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%; }
  .d-5of8 {
    float: left;
    padding-right: 0.75em;
    width: 62.5%; }
  .d-7of8 {
    float: left;
    padding-right: 0.75em;
    width: 87.5%; }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .d-2of9 {
    float: left;
    padding-right: 0.75em;
    width: 22.2222222222%; }
  .d-4of9 {
    float: left;
    padding-right: 0.75em;
    width: 44.4444444444%; }
  .d-5of9 {
    float: left;
    padding-right: 0.75em;
    width: 55.5555555555%; }
  .d-7of9 {
    float: left;
    padding-right: 0.75em;
    width: 77.7777777777%; }
  .d-8of9 {
    float: left;
    padding-right: 0.75em;
    width: 88.8888888888%; }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .d-3of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .d-7of10 {
    float: left;
    padding-right: 0.75em;
    width: 70%; }
  .d-9of10 {
    float: left;
    padding-right: 0.75em;
    width: 90%; }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .d-2of11 {
    float: left;
    padding-right: 0.75em;
    width: 18.18181818182%; }
  .d-3of11 {
    float: left;
    padding-right: 0.75em;
    width: 27.27272727273%; }
  .d-4of11 {
    float: left;
    padding-right: 0.75em;
    width: 36.36363636364%; }
  .d-5of11 {
    float: left;
    padding-right: 0.75em;
    width: 45.45454545455%; }
  .d-6of11 {
    float: left;
    padding-right: 0.75em;
    width: 54.54545454546%; }
  .d-7of11 {
    float: left;
    padding-right: 0.75em;
    width: 63.63636363637%; }
  .d-8of11 {
    float: left;
    padding-right: 0.75em;
    width: 72.72727272728%; }
  .d-9of11 {
    float: left;
    padding-right: 0.75em;
    width: 81.81818181819%; }
  .d-10of11 {
    float: left;
    padding-right: 0.75em;
    width: 90.9090909091%; }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .d-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.65%; }
  .d-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.1%; }
  .d-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.3%; }
  .d-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.63%; } }

/*********************
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, .blue-btn:visited, .comment-reply-link:visited, #submit:visited,
input.button,
input.button:visited,
.button,
.button:visited,
.btn,
.btn:visited,
button,
button:visited,
input[type=image],
input[type=image]:visited,
input[type=submit],
input[type=submit]:visited,
input[type=button],
input[type=button]:visited {
  display: inline-block;
  position: relative;
  font-family: "Open Sans", "allumi-std", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  background-color: #67a2b9;
  color: #fff;
  font-size: 0.9em;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  text-align: center;
  -webkit-transition: background-color 0.14s ease-in-out;
  -moz-transition: background-color 0.14s ease-in-out;
  -o-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out; }
  .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus, .blue-btn:visited:hover, .comment-reply-link:visited:hover, #submit:visited:hover, .blue-btn:visited:focus, .comment-reply-link:visited:focus, #submit:visited:focus,
  input.button:hover,
  input.button:focus,
  input.button:visited:hover,
  input.button:visited:focus,
  .button:hover,
  .button:focus,
  .button:visited:hover,
  .button:visited:focus,
  .btn:hover,
  .btn:focus,
  .btn:visited:hover,
  .btn:visited:focus,
  button:hover,
  button:focus,
  button:visited:hover,
  button:visited:focus,
  input[type=image]:hover,
  input[type=image]:focus,
  input[type=image]:visited:hover,
  input[type=image]:visited:focus,
  input[type=submit]:hover,
  input[type=submit]:focus,
  input[type=submit]:visited:hover,
  input[type=submit]:visited:focus,
  input[type=button]:hover,
  input[type=button]:focus,
  input[type=button]:visited:hover,
  input[type=button]:visited:focus {
    color: #fff;
    text-decoration: none;
    outline: none;
    background-color: #5697b1; }
  .blue-btn:active, .comment-reply-link:active, #submit:active, .blue-btn:visited:active, .comment-reply-link:visited:active, #submit:visited:active,
  input.button:active,
  input.button:visited:active,
  .button:active,
  .button:visited:active,
  .btn:active,
  .btn:visited:active,
  button:active,
  button:visited:active,
  input[type=image]:active,
  input[type=image]:visited:active,
  input[type=submit]:active,
  input[type=submit]:visited:active,
  input[type=button]:active,
  input[type=button]:visited:active {
    top: 1px;
    background-color: #5093ad; }

/*
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
*********************/
#post-1261 .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
  display: inline-block; }

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 {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 3px;
  vertical-align: middle;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "Open Sans", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #eaedf2;
  -webkit-transition: background-color 0.24s ease-in-out;
  -moz-transition: background-color 0.24s ease-in-out;
  -o-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  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;
    outline: none; }
  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: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    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: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    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: 0.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="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

input[type="password"] {
  letter-spacing: 0.3em; }

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em; }

select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  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; }

/******************************************************************
Site Name:
Author:

Stylesheet: Owl Carousel

******************************************************************/
/* 
 *	Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

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

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

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/* 
 *	Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.home .owl-controls {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px; }

.owl-controls {
  position: relative;
  width: 100%; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-controls .owl-dots {
  text-align: center; }

.owl-carousel .owl-controls .owl-dot {
  display: inline-block; }

.owl-carousel .owl-controls .owl-dot span {
  border: 2px solid #fff;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  float: left;
  margin: 5px; }

.owl-carousel .owl-controls .owl-dot.active span {
  border: 2px solid #fc4513; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel .owl-refresh .owl-item {
  display: none; }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto; }

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../images/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1; }

/*********************
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: "Open Sans", "MuesoSans", "lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  /*color: #5c6b80;*/
  font-weight: 300;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*color: rgba(50, 57, 68, 0.9);*/
  color: black;


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

#lean_overlay {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #000;
  display: none; }

#lean-wrap {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
  overflow: auto; }

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
.blog article.post header {
  padding-bottom: 0px; }

.archive {
  /*Single Post */ }
  .archive .archive-description {
    padding: 25px;
    background: #f0f0ec; }
  .archive article.post header {
    padding-bottom: 0px; }

.single article.post header {
  padding-bottom: 0px; }

.author-footer {
  background: #f8f9fa;
  padding: 25px;
  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; }
  .author-footer .author-avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px; }
    .author-footer .author-avatar img {
      margin-right: 10px; }

.post-term-icons {
  text-align: left; }
  .post-term-icons .post-icon {
    max-width: 50px;
    display: inline-block; }

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 96%;
  max-width: 1040px;
  margin: 0 auto; }

.content-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }

.text-wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto; }

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #71a189;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:hover, a:focus, a:visited:hover, a:visited:focus {
    color: #41735a; }
  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, 0.3); }

a:link i, a:visited i {
  color: #404041;
  -webkit-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s; }

a:link:hover i, a:visited:hover i {
  color: #333334; }

a:link:active i, a:visited:active i {
  color: #2e2e2f; }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 300;
  font-family: "Open Sans", "allumi-std", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /*
	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: 2.5em;
  line-height: 1.333em; }

h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em; }

h3, .h3 {
  font-size: 1.125em; }

h4, .h4 {
  font-size: 1.1em;
  font-weight: 700; }

h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px; }

h3.widget-title {
  text-transform: uppercase;
  border-bottom: 1px solid #404041;
  margin-bottom: 0px;
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px; }

/*********************
HEADER STYLES
*********************/
#logo {
  margin: 0.5em 0;
  text-align: center; }
  #logo a {
    color: #5c6b80;
    float: left; }
  #logo img {
    max-width: 250px;
    width: 95%;
    margin: 10px auto; }

#inner-header {
  position: relative; }
  #inner-header .header-wrap {
    position: relative; }

/*********************
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.
*/
div.main-nav-wrapper {
  /* end .nav */ }
  div.main-nav-wrapper .toggle-nav {
    display: block;
    width: 97%;
    margin: 10px 1.5%;
    text-align: center;
    background: #f0f0ec;
    padding: 10px 15px;
    cursor: pointer;
    position: relative;
    font-weight: bold; }
    div.main-nav-wrapper .toggle-nav:hover {
      background: #e5e5de; }
    div.main-nav-wrapper .toggle-nav:active {
      top: 1px;
      background: #e0e0d8; }
  div.main-nav-wrapper nav {
    display: none;
    margin: 0;
    /* end .menu li ul*/
    /* highlight current page */
    /* end current highlighters */ }
    div.main-nav-wrapper nav.active {
      display: block; }
    div.main-nav-wrapper nav ul.nav {
      /* end .menu li */ }
      div.main-nav-wrapper nav ul.nav li {
        width: 100%;
        /*
				so you really have to rethink your dropdowns for mobile.
				you don't want to have it expand too much because the
				screen is so small. How you manage your menu should
				depend on the project. Here's some great info on it:
				http://www.alistapart.com/articles/organizing-mobile/
				*/ }
        div.main-nav-wrapper nav ul.nav li a {
          display: block;
          text-decoration: none;
          padding: 0.75em;
          color: #404041;
          text-transform: uppercase;
          text-align: center;
          font-family: "Open Sans", "allumi-std", "Helvetica Neue", Helvetica, Arial, sans-serif;
          /*
					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!
					*/ }
          div.main-nav-wrapper nav ul.nav li a:hover, div.main-nav-wrapper nav ul.nav li a:focus {
            color: #333334; }
          div.main-nav-wrapper nav ul.nav li a:active {
            color: #2e2e2f; }
        div.main-nav-wrapper nav ul.nav li ul.sub-menu li a,
        div.main-nav-wrapper nav ul.nav li ul.children li a {
          padding-left: 30px; }

div.top-nav-wrapper nav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  div.top-nav-wrapper nav ul li:last-child a:visited, div.top-nav-wrapper nav ul li:last-child a:link {
    background: #fc4513;
    color: #fff; }
    div.top-nav-wrapper nav ul li:last-child a:visited:hover, div.top-nav-wrapper nav ul li:last-child a:link:hover {
      background: #f23603; }
    div.top-nav-wrapper nav ul li:last-child a:visited:active, div.top-nav-wrapper nav ul li:last-child a:link:active {
      background: #e83403; }
  div.top-nav-wrapper nav ul li a:link, div.top-nav-wrapper nav ul li a:visited {
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold; }

#sidebar1 .side-nav-toggle {
  width: 90%;
  padding: 10px 15px;
  background: #f8f9fa;
  cursor: pointer;
  text-align: center;
  font-weight: bold; }
  #sidebar1 .side-nav-toggle:hover {
    background: #e9ecef; }
  #sidebar1 .side-nav-toggle:active {
    background: #e3e7eb; }

#sidebar1 nav {
  display: none; }
  #sidebar1 nav.active {
    display: block; }

#menu-our-story-menu li {
  float: left;
  width: 100%;
  text-align: left; }
  #menu-our-story-menu li.current-menu-item a:link, #menu-our-story-menu li.current-menu-item a:visited {
    color: #67a2b9; }
  #menu-our-story-menu li a:link, #menu-our-story-menu li a:visited {
    padding: 10px;
    color: #404041;
    font-size: 1.5rem;
    text-decoration: none; }
    #menu-our-story-menu li a:link:hover, #menu-our-story-menu li a:visited:hover {
      color: #67a2b9; }
    #menu-our-story-menu li a:link:active, #menu-our-story-menu li a:visited:active {
      color: #5697b1; }

/*********************
POSTS & CONTENT STYLES
*********************/
#main {
  padding: 0px 25px; }

/*OWL CAROUSEL*/
.homeSlideshowBG {
  margin-bottom: 0px; }

.home hr {
  margin: 0px; }

.owl-carousel .slide {
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 350px; }
  .owl-carousel .slide .slide-image {
    background-size: cover;
    min-height: 150px; }
  .owl-carousel .slide .slide-text {
    background: #f0f0ec;
    padding: 25px;
    padding-bottom: 40px; }
    .owl-carousel .slide .slide-text h4 {
      margin-top: 0px;
      margin-bottom: 15px; }
  .owl-carousel .slide a:link, .owl-carousel .slide a:visited {
    color: #323944; }
    .owl-carousel .slide a:link:hover, .owl-carousel .slide a:visited:hover {
      color: #272d35; }
    .owl-carousel .slide a:link:active, .owl-carousel .slide a:visited:active {
      color: #23282f; }
  .owl-carousel .slide .slide-button {
    color: #fc4513;
    text-transform: uppercase;
    font-family: "Open Sans", "allumi-std", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px; }

/*RECENT POSTS*/
.gspo-recent-posts h5 {
  text-transform: uppercase;
  border-bottom: 1px solid #404041;
  margin-bottom: 0px; }

.gspo-recent-posts .m-all:last-child {
  padding-right: 0px; }

.gspo-recent-posts .each-recent-post {
  margin-top: 15px;
  margin-bottom: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }
  .gspo-recent-posts .each-recent-post a:link, .gspo-recent-posts .each-recent-post a:visited, .gspo-recent-posts .each-recent-post a:hover, .gspo-recent-posts .each-recent-post a:active {
    color: #fff; }
  .gspo-recent-posts .each-recent-post .each-portfolio {
    height: 200px;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s; }
    .gspo-recent-posts .each-recent-post .each-portfolio .portfolio-text {
      opacity: 0;
      position: relative;
      top: 60%;
      -webkit-transition: all ease-in-out 0.2s;
      -o-transition: all ease-in-out 0.2s;
      transition: all ease-in-out 0.2s;
      text-align: center; }
    .gspo-recent-posts .each-recent-post .each-portfolio:hover {
      background: rgba(0, 0, 0, 0.5); }
      .gspo-recent-posts .each-recent-post .each-portfolio:hover .portfolio-text {
        opacity: 1;
        top: 30%; }

/*HOME TIMELINE*/
.home-timeline-wrapper h5 {
  text-transform: uppercase;
  border-bottom: 1px solid #404041;
  margin-bottom: 0px; }

.home-timeline-wrapper .home-timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .home-timeline-wrapper .home-timeline a:link, .home-timeline-wrapper .home-timeline a:visited {
    color: #fff; }
  .home-timeline-wrapper .home-timeline .each-timeline {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    margin: 15px 0px; }
    .home-timeline-wrapper .home-timeline .each-timeline .each-timeline-content {
      width: 100%;
      text-align: center;
      margin: 100px 0px;
      z-index: 1;
      padding: 0px 15px;
      opacity: 1;
      background: #fff;
      -webkit-transition: all ease-in-out 0.5s;
      -o-transition: all ease-in-out 0.5s;
      transition: all ease-in-out 0.5s; }
      .home-timeline-wrapper .home-timeline .each-timeline .each-timeline-content .timeline-title {
        text-align: center;
        margin: 5px 0px 10px 0px;
        font-size: 1.2rem;
        -webkit-transition: all ease-in-out 0.2s;
        -o-transition: all ease-in-out 0.2s;
        transition: all ease-in-out 0.2s; }
      .home-timeline-wrapper .home-timeline .each-timeline .each-timeline-content .timeline-sentence {
        padding: 15%;
        border-radius: 50%; }
    .home-timeline-wrapper .home-timeline .each-timeline .each-timeline-line {
      overflow: hidden;
      height: 100%;
      top: 0px;
      position: absolute;
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      bottom: 0px;
      left: 0px;
      right: 0px;
      width: 20px;
      margin: auto;
      -ms-flex-item-align: center;
      align-self: center; }
      .home-timeline-wrapper .home-timeline .each-timeline .each-timeline-line::before {
        background: #fff;
        border-radius: 50%;
        float: none;
        height: 10px;
        width: 10px;
        position: absolute;
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 0px;
        content: '';
        margin: auto; }
    .home-timeline-wrapper .home-timeline .each-timeline .each-timeline-circle-wrapper {
      display: none; }
    .home-timeline-wrapper .home-timeline .each-timeline .chevron-right {
      position: absolute;
      bottom: -23px;
      left: -23px; }
      .home-timeline-wrapper .home-timeline .each-timeline .chevron-right::before {
        border-style: solid;
        border-width: 16px 16px 0 0;
        border-color: #fff;
        content: '';
        display: inline-block;
        height: 20px;
        position: relative;
        vertical-align: middle;
        width: 20px;
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg);
        top: -8px;
        right: -15px; }
    .home-timeline-wrapper .home-timeline .each-timeline .chevron-left {
      position: absolute;
      top: -12px;
      right: -14px; }
      .home-timeline-wrapper .home-timeline .each-timeline .chevron-left::before {
        background: #fff;
        content: '';
        display: inline-block;
        position: relative;
        vertical-align: top;
        height: 20px;
        width: 20px;
        left: -14px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }

/*REPEATING CONTENT PAGE*/
.repeating-content-wrapper {
  background: #ff0000; }
  .repeating-content-wrapper .each-content-block:nth-child(odd) .each-content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .repeating-content-wrapper .each-content-block:nth-child(even) .each-content {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .repeating-content-wrapper .each-content-block .key-elements-wrapper h4 {
    margin-bottom: 0px; }
  .repeating-content-wrapper .each-content-block .key-elements-wrapper p {
    margin-top: 0px; }
  .repeating-content-wrapper .each-content-block .each-image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    background-size: auto auto;
    background-position: center;
    background-repeat: no-repeat; }
  .repeating-content-wrapper .each-content-block .each-content {
    padding: 25px; }
  .repeating-content-wrapper .each-content-block .each-content-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }

/*Portfolio Page*/
.portfolio-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .portfolio-wrapper .each-portfolio {
    text-align: center;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative; }
    .portfolio-wrapper .each-portfolio .portfolio-image {
      position: relative;
      height: 200px;
      width: 100%;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat; }
    .portfolio-wrapper .each-portfolio .hover-link {
      -webkit-transition: all ease-in-out 0.2s;
      -o-transition: all ease-in-out 0.2s;
      transition: all ease-in-out 0.2s;
      position: absolute;
      height: 100%;
      width: 100%;
      float: left;
      left: 0px;
      top: 0px;
      right: 0px;
      bottom: 0px; }
      .portfolio-wrapper .each-portfolio .hover-link::before {
        content: '+';
        font-family: "Open Sans", "allumi-std", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 60px;
        line-height: 1px;
        width: auto;
        height: 100%;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        z-index: 10;
        position: absolute;
        top: 30px;
        left: 45%;
        text-align: center;
        color: #fff;
        opacity: 0;
        height: 100%;
        text-decoration: none;
        -webkit-transition: all ease-in-out 0.2s;
        -o-transition: all ease-in-out 0.2s;
        transition: all ease-in-out 0.2s; }
      .portfolio-wrapper .each-portfolio .hover-link:hover {
        background: rgba(0, 0, 0, 0.5); }
        .portfolio-wrapper .each-portfolio .hover-link:hover::before {
          opacity: 1;
          top: 0px; }
    .portfolio-wrapper .each-portfolio .portfolio-border {
      border: 1px solid #ccc;
      border-radius: 15px;
      overflow: hidden; }
    .portfolio-wrapper .each-portfolio img {
      max-width: 100%;
      height: auto;
      margin-bottom: 0px;
      float: left;
      width: 100%; }
    .portfolio-wrapper .each-portfolio a:link, .portfolio-wrapper .each-portfolio a:visited {
      font-weight: bold;
      text-decoration: none;
      float: left;
      width: 100%; }
    .portfolio-wrapper .each-portfolio .portfolio-title {
      text-align: left;
      width: 90%;
      margin: 0px 5%;
      padding: 10px 0px;
      text-decoration: none; }
      .portfolio-wrapper .each-portfolio .portfolio-title h4 {
        margin: 0px 0px; }

/*FAQ*/
.faq-wrapper {
  border-bottom: 1px solid #f8f9fa; }
  .faq-wrapper .faq-question {
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 15px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    padding-left: 25px; }
    .faq-wrapper .faq-question::before {
      content: "+";
      position: absolute;
      left: 0px;
      top: 0px;
      bottom: 0px;
      margin: auto;
      color: #333;
      font-size: 32px;
      line-height: 1px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    .faq-wrapper .faq-question.active::before {
      content: "-"; }
  .faq-wrapper .faq-answer {
    display: none;
    background: #f2f2f2;
    padding: 15px;
    margin-bottom: 15px; }
    .faq-wrapper .faq-answer p:last-child {
      margin-bottom: 0px; }
  .faq-wrapper:last-child {
    border-bottom: 0px; }

/*Press Page*/
.writtenTestimonialWrapper .owl-carousel .owl-controls {
  margin-top: 15px; }
  .writtenTestimonialWrapper .owl-carousel .owl-controls .owl-dots {
    text-align: center; }
    .writtenTestimonialWrapper .owl-carousel .owl-controls .owl-dots .owl-dot.active span {
      border-color: #fc4513; }
    .writtenTestimonialWrapper .owl-carousel .owl-controls .owl-dots .owl-dot span {
      border-color: #67a2b9; }

.press-wrapper .each-press {
  text-align: center;
  margin-bottom: 25px; }
  .press-wrapper .each-press a:link, .press-wrapper .each-press a:visited {
    text-decoration: none;
    font-size: 1.05rem; }
  .press-wrapper .each-press .press-title {
    font-size: 0.85rem; }

/*Quoting Page*/
#inner-content .floatingCart {
  position: -webkit-sticky;
  position: sticky;
  top: 40px; }
  #inner-content .floatingCart h2 {
    font-size: 1.5rem; }

#inner-content .chargeSummary {
  width: 100%;
  background: #f8f9fa;
  padding: 10px; }
  #inner-content .chargeSummary h8 {
    font-weight: bold; }

#inner-content .packages {
  background: #67a2b9;
  float: left;
  margin-right: 15px;
  max-width: 100px;
  width: 95%;
  border-radius: 10px;
  padding: 5px; }
  #inner-content .packages.active {
    background: #fc4513; }
  #inner-content .packages h8 {
    font-weight: bold; }
  #inner-content .packages img {
    margin-bottom: 0px;
    float: left; }

#inner-content #input_11_74 input, #inner-content #input_17_74 input {
  display: none; }

#inner-content #field_11_70, #inner-content #field_11_71, #inner-content #field_11_72, #inner-content #field_11_73, #inner-content #field_11_63, #inner-content #field_17_70, #inner-content #field_17_71, #inner-content #field_17_72, #inner-content #field_17_73, #inner-content #field_17_63 {
  background: #f8f9fa;
  margin: 0px;
  padding: 5px 10px; }

#inner-content #field_17_67 .gchoice_17_67_0 input, #inner-content #field_17_67 .gchoice_11_67_0 input, #inner-content #field_11_67 .gchoice_17_67_0 input, #inner-content #field_11_67 .gchoice_11_67_0 input {
  display: none; }

#inner-content #field_17_67 .gchoice_17_67_0 label, #inner-content #field_17_67 .gchoice_11_67_0 label, #inner-content #field_11_67 .gchoice_17_67_0 label, #inner-content #field_11_67 .gchoice_11_67_0 label {
  background: #fc4513;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px; }

#inner-content #gform_wrapper_17 p {
  margin-bottom: .5em; }

/*Single PopUp Styles */
.single-popup_type header, .single-popup_type footer {
  display: none; }

/*Single Project Styles */
#enlighten-gravity-form-hide, #final-gravity-form-hide, #enlighten-bookly-form-hide, #enlighten-final-form-hide, #final-bookly-form-hide, #enlighten-bookly-form-hide, #bookly-appointment-list, #inform-bookly-form-hide {
  background: #f8f9fa;
  padding: 15px 12px; }

#final-bookly-form-hide, #enlighten-bookly-form-hide, #inform-bookly-form-hide {
  display: none; }

#final-gravity-form-hide input[type="text"], #final-gravity-form-hide select, #enlighten-gravity-form-hide input[type="text"], #enlighten-gravity-form-hide select {
  background: #fff; }

#final-gravity-form-hide .ginput_container, #enlighten-gravity-form-hide .ginput_container {
  line-height: 5px; }

#final-gravity-form-hide br, #enlighten-gravity-form-hide br {
  display: none; }

#bookly-appointment-list {
  margin-top: 20px;
  margin-bottom: 20px;
  float: left;
  width: 100%; }
  #bookly-appointment-list .bookly-customer-appointment-list h2 {
    border-bottom: 0px;
    font-size: 1.75em;
    line-height: 1.4em;
    margin-bottom: 0.375em;
    margin-top: 0px;
    padding-bottom: 0px; }
  #bookly-appointment-list .bookly-customer-appointment-list table.ab-appointments-table {
    width: 100%; }
    #bookly-appointment-list .bookly-customer-appointment-list table.ab-appointments-table td {
      background: none; }
  #bookly-appointment-list .bookly-customer-appointment-list button.ab-btn {
    margin-top: 15px; }
    #bookly-appointment-list .bookly-customer-appointment-list button.ab-btn span {
      text-transform: none !important;
      font-size: 16px !important; }

.single-project_type .bookly-service-step .bookly-box.ab-bold {
  display: none; }

.single-project_type article {
  display: none; }

.single-project_type #message {
  display: none; }
  .single-project_type #message.clone-message {
    display: block;
    border-left: 3px solid #fc4513;
    font-size: 24px;
    font-weight: bold;
    padding-left: 10px; }

.single-project_type .acf-input-prepend, .single-project_type .acf-input-append {
  padding-top: 8px;
  padding-bottom: 8px; }

.single-project_type .acf-input h2.mygoodspace {
  display: none; }

.single-project_type ul.acf-radio-list {
  text-align: left; }
  .single-project_type ul.acf-radio-list li {
    float: none;
    display: inline-block;
    margin: 0px 10px; }

.single-project_type .acf-fields input:not([type='checkbox']), .single-project_type .acf-fields textarea, .single-project_type .acf-fields select {
  background: #fff;
  width: 100%;
  max-width: none; }
  .single-project_type .acf-fields input:not([type='checkbox']).gform_button, .single-project_type .acf-fields input:not([type='checkbox'])[type="submit"], .single-project_type .acf-fields textarea.gform_button, .single-project_type .acf-fields textarea[type="submit"], .single-project_type .acf-fields select.gform_button, .single-project_type .acf-fields select[type="submit"] {
    background: #67a2b9; }

.single-project_type .acf-fields .finalButton {
  position: absolute;
  right: 5px;
  top: 5px; }

.single-project_type h2.mygoodspace {
  margin-top: 0px;
  max-width: 85%; }

.single-project_type .entry-title {
  text-align: center; }

.single-project_type .lockedOverlay {
  color: #fff;
  background: #67a2b9;
  padding: 15px 25px;
  margin-bottom: 20px; }
  .single-project_type .lockedOverlay h1, .single-project_type .lockedOverlay h2, .single-project_type .lockedOverlay h3, .single-project_type .lockedOverlay h4, .single-project_type .lockedOverlay h5 {
    color: #fff; }
  .single-project_type .lockedOverlay a:link, .single-project_type .lockedOverlay a:visited {
    color: #f8f9fa; }
  .single-project_type .lockedOverlay a:hover {
    color: #e9ecef; }
  .single-project_type .lockedOverlay a:active {
    color: #e3e7eb; }

.single-project_type .greyBG {
  background: #f8f9fa; }

.single-project_type #edit-profile, .single-project_type #edit-avatar {
  display: none;
  background: #fff;
  padding: 25px;
  width: 100%;
  max-width: 750px;
  left: 0px;
  right: 0px;
  margin: auto;
  max-height: 90%;
  overflow: scroll; }
  .single-project_type #edit-profile #simple-local-avatar-ratings, .single-project_type #edit-avatar #simple-local-avatar-ratings {
    display: none; }

.single-project_type #edit-avatar table.form-table tr:nth-child(2) {
  display: none; }

.single-project_type #project-sidebar {
  display: none;
  background: #fff;
  border-radius: 10px;
  max-width: 90%; }
  .single-project_type #project-sidebar fieldset {
    border: 0px; }
  .single-project_type #project-sidebar .save-work-sidebar {
    display: none; }

.single-project_type #project-categories {
  border-bottom: 1px solid #f8f9fa;
  padding-bottom: 15px;
  margin-bottom: 15px; }
  .single-project_type #project-categories input {
    margin-right: 5px; }

.single-project_type #project-total-remainder {
  border-bottom: 1px solid #f8f9fa; }

.single-project_type #chatBar {
  margin-bottom: 20px; }
  .single-project_type #chatBar .chatWrap {
    margin: 15px 0px; }
    .single-project_type #chatBar .chatWrap .eachChat {
      margin-bottom: 15px; }
      .single-project_type #chatBar .chatWrap .eachChat .chatGrey {
        background: #f8f9fa;
        padding: 5px; }

.single-project_type #concierge-modal {
  display: none;
  background: #fff;
  padding: 25px;
  width: 100%;
  max-width: 750px;
  left: 0px;
  right: 0px;
  margin: auto; }

.single-project_type #chatButton {
  position: fixed;
  bottom: 5px;
  width: 100%;
  max-width: 250px;
  text-align: center;
  font-weight: bold;
  left: 0px;
  right: 0px;
  margin: auto;
  top: auto; }

.single-project_type .eachUser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #f8f9fa;
  margin: 10px 0px;
  padding: 15px; }
  .single-project_type .eachUser .avatarButton {
    width: 100%; }
  .single-project_type .eachUser p {
    margin: 0px 0px 5px 0px; }
  .single-project_type .eachUser h4 {
    margin: 0px 0px 15px 0px; }
  .single-project_type .eachUser.gs_client {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .single-project_type .eachUser.gs_designer {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }

.single-project_type .processWrapper {
  position: relative;
  padding: 15px 25px; }
  .single-project_type .processWrapper h4:first-of-type {
    margin-top: 0px; }
  .single-project_type .processWrapper .button.toggleHeight {
    position: absolute;
    top: 15px;
    right: 5px; }
  .single-project_type .processWrapper .overviewHeight {
    height: 300px;
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    overflow: hidden; }
    .single-project_type .processWrapper .overviewHeight.active {
      height: auto; }

.single-project_type #finishProject {
  margin-top: 25px; }

.single-project_type .portal-fields .acf-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .single-project_type .portal-fields .acf-fields .acf-field {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
    .single-project_type .portal-fields .acf-fields .acf-field .acf-field-558880dadsf2we {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1; }

.single-project_type .portal-fields.locked-project .acf-fields .acf-field.acf-field-558880d0283423 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }

.single-project_type div.acf-field {
  background: #f8f9fa;
  width: 100%; }
  .single-project_type div.acf-field.acf-field-558880d06a4a4, .single-project_type div.acf-field.acf-field-558880dadsf2we, .single-project_type div.acf-field.acf-field-52d47d7620acd, .single-project_type div.acf-field.acf-field-528e6b8d572d7, .single-project_type div.acf-field.acf-field-528e6bc825fa9, .single-project_type div.acf-field.acf-field-5286993cfef63, .single-project_type div.acf-field.acf-field-528e6fcd253d0, .single-project_type div.acf-field.acf-field-528e6fcd253d0, .single-project_type div.acf-field.acf-field-528e6ee658566, .single-project_type div.acf-field.acf-field-528e6f8021713, .single-project_type div.acf-field.acf-field-52eaf6930c1c1, .single-project_type div.acf-field.acf-field-558afa6fl23943, .single-project_type div.acf-field.acf-field-558880d0283423, .single-project_type div.acf-field.acf-field-558880d02342 {
    margin-top: 20px; }
  .single-project_type div.acf-field.acf-field-52eaf6a30c1c2 {
    display: none; }
  .single-project_type div.acf-field.acf-field-52eaf6930c1c1 .acf-label, .single-project_type div.acf-field.acf-field-558880d06a4a4 .acf-label, .single-project_type div.acf-field.acf-field-528e6b8d572d7 .acf-label, .single-project_type div.acf-field.acf-field-528e6bc825fa9 .acf-label, .single-project_type div.acf-field.acf-field-5286993cfef63 .acf-label, .single-project_type div.acf-field.acf-field-528e6fcd253d0 .acf-label, .single-project_type div.acf-field.acf-field-528e6ee658566 .acf-label, .single-project_type div.acf-field.acf-field-528e6ee658566 .acf-label, .single-project_type div.acf-field.acf-field-528e6f8021713 .acf-label, .single-project_type div.acf-field.acf-field-558880d02342 .acf-label, .single-project_type div.acf-field.acf-field-52d47d7620acd .acf-label, .single-project_type div.acf-field.acf-field-558880d0289374 .acf-label, .single-project_type div.acf-field.acf-field-528e6f802123we .acf-label, .single-project_type div.acf-field.acf-field-528eb29f92546 .acf-label, .single-project_type div.acf-field.acf-field-528eb2bf92547 .acf-label, .single-project_type div.acf-field.acf-field-528eb5127ae7a .acf-label, .single-project_type div.acf-field.acf-field-558880dadsf2we .acf-label, .single-project_type div.acf-field.acf-field-558880d0283423 .acf-label {
    display: none; }
  .single-project_type div.acf-field.acf-field-true-false {
    display: none; }
  .single-project_type div.acf-field .gform_footer {
    text-align: right; }
  .single-project_type div.acf-field .acf-form-submit {
    display: block;
    text-align: center;
    margin-top: 20px; }
    .single-project_type div.acf-field .acf-form-submit input.acf-button {
      background: #fc4513; }
  .single-project_type div.acf-field .acf-checkbox-list li {
    padding-left: 5%; }

.single-project_type table .acf-field {
  width: auto;
  background: #f8f9fa; }

.single-project_type .acf-form-submit {
  display: none; }

.single-project_type body.gs_client .locked-project {
  color: #ccc; }
  .single-project_type body.gs_client .locked-project .gform_wrapper span.ginput_product_price {
    color: #fff; }
  .single-project_type body.gs_client .locked-project .acf-table > thead > tr > th {
    color: #ccc; }
  .single-project_type body.gs_client .locked-project .acf-fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .single-project_type body.gs_client .locked-project .acf-fields .acf-field {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      width: 100%; }
    .single-project_type body.gs_client .locked-project .acf-fields .acf-field-558880d02343, .single-project_type body.gs_client .locked-project .acf-fields .acf-field-558880d0283423 {
      color: #fff;
      background: #67a2b9;
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1; }
  .single-project_type body.gs_client .locked-project .button.acf-button {
    background: #ccc; }

#lean-wrap #project-sidebar {
  max-height: 90%;
  overflow: scroll;
  padding: 25px; }

#inner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

.hentry {
  background-color: #fff;
  border-radius: 3px;
  margin-bottom: 1.5em; }
  .hentry header {
    padding: 1.5em; }
  .hentry footer {
    padding: 1.5em; }
    .hentry footer p {
      margin: 0; }

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0; }

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0; }

/* entry content */
.entry-content {
  padding: 1.5em 1.5em 0;
  /*
	image alignment on a screen this size may be
	a bit difficult. It's set to start aligning
	and floating images at the next breakpoint,
	but it's up to you. Feel free to change it up.
	*/ }
  .entry-content p {
    margin: 0 0 1.5em; }
  .entry-content ul {
    list-style-type: disc;
    list-style-position: outside; }
    .entry-content ul.none, .entry-content ul.none ul {
      list-style-type: none;
      list-style-position: outside; }
      .entry-content ul.none li, .entry-content ul.none ul li {
        margin-left: 0; }
    .entry-content ul.disc, .entry-content ul.disc ul {
      list-style-type: disc;
      list-style-position: outside; }
    .entry-content ul.circle, .entry-content ul.circle ul {
      list-style-type: circle;
      list-style-position: outside; }
    .entry-content ul.square, .entry-content ul.square ul {
      list-style-type: square;
      list-style-position: outside; }
    .entry-content ul ul {
      margin-top: 0; }
    .entry-content ul li {
      margin-bottom: 0em;
      margin-left: 18px; }
  .entry-content ol {
    list-style-type: upper-alpha;
    list-style-position: outside; }
    .entry-content ol.none, .entry-content ol.none ol {
      list-style-type: none;
      list-style-position: outside; }
      .entry-content ol.none li, .entry-content ol.none ol li {
        margin-left: 0; }
    .entry-content ol.alpha, .entry-content ol.alpha ol {
      list-style-type: upper-alpha;
      list-style-position: outside; }
    .entry-content ol.num, .entry-content ol.num ol {
      list-style-type: decimal;
      list-style-position: outside; }
    .entry-content ol ol {
      margin-top: 0; }
    .entry-content ol li {
      margin-bottom: 0em;
      margin-left: 18px; }
  .entry-content table {
    width: 100%;
    border: 1px solid #eaedf2;
    margin-bottom: 1.5em; }
    .entry-content table caption {
      margin: 0 0 7px;
      font-size: 0.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 0.75em;
    padding: 0 0 0 0.75em;
    border-left: 3px solid #2980b9;
    font-style: italic;
    color: #9fa6b4; }
  .entry-content dd {
    margin-left: 0;
    font-size: 0.9em;
    color: #787878;
    margin-bottom: 1.5em; }
  .entry-content img {
    margin: 0 0 1.5em 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: 0.9em;
    padding: 1.5em;
    margin: 0 0 1.5em;
    border-radius: 3px; }

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: #f8f9fa;
  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: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0; }

video .cover, img .cover, .cover, video .bg, img .bg, .bg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  max-height: none;
  opacity: .5;
  z-index: 5;
  margin: 0; }

video .cover, img .cover, .cover {
  opacity: 1; }

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden; }
  .overlay.show {
    visibility: visible;
    opacity: 1; }
  .overlay.black {
    background-color: rgba(50, 57, 68, 0.8);
    color: #fff; }

.toggle-terms h3:after {
  padding-left: .25em; }

.toggle-terms h3.up:after {
  content: "▴"; }

.toggle-terms h3.down:after {
  content: "▾"; }

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0; }

.pagination {
  text-align: center; }
  .pagination ul {
    display: inline-block;
    background-color: #fff;
    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;
    padding: 0;
    line-height: 1em;
    font-size: 1em;
    font-weight: normal;
    padding: 0.75em;
    min-width: 1em;
    display: block;
    color: #2980b9; }
    .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
      background-color: #2980b9;
      color: #fff; }
  .pagination .current {
    cursor: default;
    color: #5c6b80; }
    .pagination .current:hover, .pagination .current:focus {
      background-color: #fff;
      color: #5c6b80; }

/* end .bones_page_navi */
/* fallback previous & next links */
.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: 0.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: 0.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: #fff; }
  .comment.even {
    background: #f8f9fa; }

/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right; }

/* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.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 0.75em; }

.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: 0.9em; }

/* comment submit button */
#submit {
  float: right;
  font-size: 1em; }

/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em; }

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

/* no comments */
.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
#home-above-content .widget {
  margin: 25px 0px;
  float: left;
  width: 100%; }

#home-above-content .widget-title, #home-above-content .widgettitle {
  display: none; }

#home-above-content .widget.cta_widget {
  padding: 0px; }
  #home-above-content .widget.cta_widget .widgettitle {
    display: block;
    text-transform: uppercase;
    border-bottom: 1px solid #404041;
    margin-bottom: 0px;
    font-size: 0.846em;
    line-height: 2.09em;
    text-transform: uppercase;
    letter-spacing: 2px; }

.social-icons-widget ul {
  text-align: center; }
  .social-icons-widget ul li {
    border-radius: 50%;
    overflow: hidden;
    display: inline-block; }
    .social-icons-widget ul li img {
      -webkit-filter: grayscale(100%);
      filter: grayscale(100%);
      float: left; }

.sidebar .sidebar-toggle {
  display: block;
  background: #fc4513;
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  margin: 10px auto;
  float: none; }

.sidebar .sidebar-menu {
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: height ease-in-out 0.5s;
  -o-transition: height ease-in-out 0.5s;
  transition: height ease-in-out 0.5s; }
  .sidebar .sidebar-menu.active {
    max-height: 100%; }
  .sidebar .sidebar-menu ul {
    text-align: center; }
    .sidebar .sidebar-menu ul li {
      float: left;
      width: 100%; }
      .sidebar .sidebar-menu ul li.current-menu-item, .sidebar .sidebar-menu ul li.current-menu-parent {
        background: #f0f0ec; }
      .sidebar .sidebar-menu ul li a:link {
        padding: 10px 15px;
        text-decoration: none;
        float: left;
        width: 100%; }
        .sidebar .sidebar-menu ul li a:link:hover {
          background: #f0f0ec; }

.widget ul li {
  /* deep nesting */ }

.sjup_social_widget .social {
  margin: 5px; }

.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em; }

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  padding: 0px 25px; }

#footer-below-content .widget {
  margin: 25px 0px; }

.social-wrapper {
  text-align: right;
  margin-top: 15px; }
  .social-wrapper .social {
    display: inline-block;
    padding-right: 10px; }
    .social-wrapper .social:last-child {
      padding-right: 0px; }
    .social-wrapper .social img {
      max-width: 50px;
      height: auto; }

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */
.copyright {
  padding: 25px 0px 25px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

/*********************
BASE CLASSES STYLES
*********************/
.text-center {
  text-align: center; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-justify {
  text-align: justify; }

.no-margin, .no-margins {
  margin: 0 !important; }

.no-top {
  margin-top: 0 !important; }

.no-right {
  margin-right: 0 !important; }

.no-bottom {
  margin-bottom: 0 !important; }

.no-left {
  margin-left: 0 !important; }

.no-images img, .no-imgs img, .no-img img {
  display: none !important; }

.float-right {
  float: right; }

.float-left {
  float: left; }

.float-none {
  float: none; }

.clear-both {
  clear: both; }

.display-none {
  display: none; }

.display-block {
  display: block; }

.display-inline-block {
  display: inline-block; }

.display-inline {
  display: inline; }

.mobile-show, .m-show {
  display: block; }

@media screen and (max-width: 767px) {
  .mobile-hide {
    display: none !important; }
  .m-hide {
    display: none; } }

.flex-wrap, .flex, .flex-stretch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch; }

.flex-nowrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch; }

.flex-center, .flex-centered {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.flex-left, .flex-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.flex-right, .flex-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.flex-centre, .flex-middle {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.flex-around, .flex-saround, .flex-space-around, .flex-sparound {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.flex-space-between, .flex-sbetween, .flex-between, .flex-justify {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.flex-vert, .flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@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.
*/
  /*********************
NAVIGATION STYLES
*********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */ }
    .menu ul {
      /* end .menu ul li */
      /* highlight current page */
      /* end current highlighters */ }
      .menu ul li {
        /*
			plan your menus and drop-downs wisely.
			*/ }
        .menu ul li a {
          /*
				you can use hover styles here even though this size
				has the possibility of being a mobile device.
				*/ }
  /* end .menu */
  div.main-nav-wrapper .toggle-nav {
    max-width: 250px;
    padding: 10px 15px;
    margin: auto; }
  /*********************
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; }
  /* end .entry-content */
  /*********************
FOOTER STYLES
*********************/
  /*
check your menus here. do they look good?
do they need tweaking?
*/
  /* end .footer-links */ }

/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@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
*********************/
  /*********************
HEADER STYLES
*********************/
  #logo {
    text-align: left; }
  /*********************
NAVIGATION STYLES
*********************/
  /*Nav Styles */
  div.main-nav-wrapper .toggle-nav {
    display: none; }
  div.main-nav-wrapper nav {
    display: block;
    border-bottom: 1px solid #404041;
    border-top: 1px solid #404041; }
    div.main-nav-wrapper nav ul.nav {
      margin-top: 0px;
      text-align: center;
      margin-bottom: 0px; }
      div.main-nav-wrapper nav ul.nav li {
        width: auto;
        float: none;
        display: inline-block; }
  nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    nav ul.nav {
      text-align: center; }
    nav li {
      display: inline-block;
      /*
		plan your menus and drop-downs wisely.
		*/
      /* showing sub-menus */ }
      nav li a {
        border-bottom: 0;
        /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/ }
      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,
        nav li ul.children li {
          /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/ }
          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; }
  /* end .nav */
  div.top-nav-wrapper {
    position: absolute;
    right: 0px;
    top: 0px; }
    div.top-nav-wrapper nav ul {
      width: auto; }
  #sidebar1 .side-nav-toggle {
    display: none; }
  #sidebar1 nav {
    display: block !important; }
  .post-term-icons {
    position: absolute;
    top: 25px;
    left: -20px;
    width: 40px; }
    .post-term-icons img {
      max-width: 100%;
      height: auto; }
  /*********************
CONTENT
*********************/
  #main {
    padding: 0px; }
  .owl-carousel .owl-controls .owl-dots {
    text-align: left;
    padding-left: 5%; }
  .owl-carousel .slide {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
    .owl-carousel .slide .slide-image {
      min-height: 0px; }
    .owl-carousel .slide .slide-text {
      border-left: 25px solid #fff;
      padding: 25px; }
  /*HOME TIMELINE*/
  .home-timeline-wrapper .home-timeline {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
    .home-timeline-wrapper .home-timeline a:link, .home-timeline-wrapper .home-timeline a:visited {
      color: #5c6b80; }
    .home-timeline-wrapper .home-timeline .each-timeline-wrapper:nth-child(odd) .each-timeline-circle-wrapper {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1; }
      .home-timeline-wrapper .home-timeline .each-timeline-wrapper:nth-child(odd) .each-timeline-circle-wrapper .each-timeline-circle-line {
        bottom: 0px; }
      .home-timeline-wrapper .home-timeline .each-timeline-wrapper:nth-child(odd) .each-timeline-circle-wrapper .each-timeline-circle {
        top: 30px; }
    .home-timeline-wrapper .home-timeline .each-timeline-wrapper:nth-child(odd) .each-timeline-content {
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3; }
    .home-timeline-wrapper .home-timeline .each-timeline-wrapper:nth-child(even) .each-timeline-circle-wrapper {
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3; }
      .home-timeline-wrapper .home-timeline .each-timeline-wrapper:nth-child(even) .each-timeline-circle-wrapper .each-timeline-circle-line {
        top: 0px; }
      .home-timeline-wrapper .home-timeline .each-timeline-wrapper:nth-child(even) .each-timeline-circle-wrapper .each-timeline-circle {
        bottom: 30px; }
    .home-timeline-wrapper .home-timeline .each-timeline-wrapper:nth-child(even) .each-timeline-content {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1; }
    .home-timeline-wrapper .home-timeline .each-timeline-wrapper:hover .each-timeline-circle-wrapper {
      position: relative; }
      .home-timeline-wrapper .home-timeline .each-timeline-wrapper:hover .each-timeline-circle-wrapper .each-timeline-circle {
        -webkit-transform: scale(1.25);
        -ms-transform: scale(1.25);
        transform: scale(1.25); }
    .home-timeline-wrapper .home-timeline .each-timeline-wrapper:hover .each-timeline-content .timeline-title {
      font-size: 1.5rem; }
    .home-timeline-wrapper .home-timeline .each-timeline-wrapper .each-timeline {
      height: 400px; }
    .home-timeline-wrapper .home-timeline .each-timeline-wrapper .each-timeline-line {
      overflow: hidden;
      height: 20px;
      top: 0px;
      position: relative;
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      bottom: 0px;
      width: 100%;
      margin: auto;
      -ms-flex-item-align: center;
      align-self: center; }
      .home-timeline-wrapper .home-timeline .each-timeline-wrapper .each-timeline-line::before {
        background: #fff;
        border-radius: 50%;
        float: none;
        height: 10px;
        width: 10px;
        position: absolute;
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 0px;
        content: '';
        margin: auto; }
    .home-timeline-wrapper .home-timeline .each-timeline-wrapper .chevron-right {
      position: absolute;
      right: 0px;
      bottom: auto;
      left: auto; }
      .home-timeline-wrapper .home-timeline .each-timeline-wrapper .chevron-right::before {
        border-style: solid;
        border-width: 16px 16px 0 0;
        border-color: #fff;
        content: '';
        display: inline-block;
        height: 20px;
        position: relative;
        vertical-align: middle;
        width: 20px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -8px;
        right: -15px; }
    .home-timeline-wrapper .home-timeline .each-timeline-wrapper .chevron-left {
      position: absolute;
      left: 0px;
      top: auto;
      right: auto; }
      .home-timeline-wrapper .home-timeline .each-timeline-wrapper .chevron-left::before {
        background: #fff;
        content: '';
        display: inline-block;
        position: relative;
        vertical-align: top;
        height: 20px;
        width: 20px;
        left: -14px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
    .home-timeline-wrapper .home-timeline .each-timeline-wrapper .each-timeline-content {
      width: 100%;
      height: 50%;
      opacity: 0;
      margin: 0;
      z-index: 1;
      padding: 0; }
      .home-timeline-wrapper .home-timeline .each-timeline-wrapper .each-timeline-content .timeline-sentence {
        background: none !important;
        border-radius: 0px;
        padding: 0px; }
    .home-timeline-wrapper .home-timeline .each-timeline-wrapper .each-timeline-circle-wrapper {
      width: 100%;
      height: 50%;
      position: relative;
      opacity: 0;
      display: block;
      -webkit-transition: all ease-in-out 0.5s;
      -o-transition: all ease-in-out 0.5s;
      transition: all ease-in-out 0.5s; }
      .home-timeline-wrapper .home-timeline .each-timeline-wrapper .each-timeline-circle-wrapper .each-timeline-circle-line {
        width: 5px;
        position: absolute;
        height: 50%;
        margin: auto;
        float: none;
        left: 0px;
        right: 0px; }
      .home-timeline-wrapper .home-timeline .each-timeline-wrapper .each-timeline-circle-wrapper .each-timeline-circle {
        width: 75px;
        height: 75px;
        border-radius: 50%;
        float: none;
        margin: auto;
        position: absolute;
        left: 0px;
        right: 0px;
        -webkit-transition: all ease-in-out 0.2s;
        -o-transition: all ease-in-out 0.2s;
        transition: all ease-in-out 0.2s; }
  .blog article#post-blog, .archive article#post-blog {
    margin-bottom: 0px;
    padding-bottom: 0px; }
  .blog article.post, .archive article.post {
    position: relative;
    padding-bottom: 0px; }
    .blog article.post .post-term-icons, .archive article.post .post-term-icons {
      position: absolute;
      top: 25px;
      left: -20px;
      width: 40px; }
      .blog article.post .post-term-icons .post-icon, .archive article.post .post-term-icons .post-icon {
        padding: 4px;
        background: white; }
      .blog article.post .post-term-icons img, .archive article.post .post-term-icons img {
        max-width: 100%;
        height: auto; }
  /*********************
SIDEBARS & ASIDES
*********************/
  #home-above-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    #home-above-content .widget {
      width: 33%;
      margin: 25px 0px; }
      #home-above-content .widget.cta_widget, #home-above-content .widget.widget_custom_html {
        width: 100%;
        clear: both; }
        #home-above-content .widget.cta_widget a.call-to-action-button, #home-above-content .widget.widget_custom_html a.call-to-action-button {
          float: right; }
  #footer-below-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    #footer-below-content .widget {
      width: 33%; }
  .sidebar {
    margin-top: 2.2em; }
    .sidebar .sidebar-toggle {
      display: none; }
    .sidebar .sidebar-menu {
      max-height: 100%; }
      .sidebar .sidebar-menu.active {
        max-height: 100%; }
      .sidebar .sidebar-menu ul {
        text-align: left; }
  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em; }
  .widget {
    padding: 0 10px;
    margin: 1.5em 0; }
    .widget ul li {
      margin-bottom: 0.75em;
      /* deep nesting */ }
      .widget ul li ul {
        margin-top: 0.75em;
        padding-left: 1em; }
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text 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!
*/
  .footer {
    padding: 0px; }
  .footer-links ul li {
    /*
			be careful with the depth of your menus.
			it's very rare to have multi-depth menus in
			the footer.
			*/ }
  /* end .footer-links */
  /*********************
BASE CLASSES STYLES
*********************/
  .mobile-show, .m-show {
    display: none; } }

/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylesheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
  /*Single Project Styles */
  .single-project_type #chatButton {
    display: none; }
  .single-project_type #project-sidebar {
    display: block; }
    .single-project_type #project-sidebar .save-work-sidebar {
      display: block;
      position: -webkit-sticky;
      position: sticky;
      top: 45px; }
  /*HOME TIMELINE*/
  .home-timeline-wrapper .home-timeline .each-timeline {
    height: 315; }
  /*SOCIAL FOOTER*/
  .social-wrapper {
    margin-top: 0px; } }

/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@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.

******************************************************************/ }

/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@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. 

*/ }

/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@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;
    -webkit-filter: 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; }
  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav,
  .main-nav-wrapper,
  .homeSlideshowBG,
  #home-above-content,
  .home-timeline-wrapper,
  #footer-below-content {
    display: none; }
  #logo img {
    width: 250px;
    float: none;
    margin: 0px auto; }
  #logo a::after, h1 a:after, h1 a:visited:after {
    font-size: 18px;
    float: left;
    width: 100%;
    text-align: center; }
  .gform_wrapper .gform_body {
    display: none; }
  .post-term-icons {
    display: none; }
  .faq-wrapper .faq-answer {
    display: block !important; }
  #main {
    width: 100%; }
  #inner-footer .social-wrapper img {
    width: 25px; }
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .d-1of2, .d-2of4, .d-3of6, .d-4of8, .d-5of10, .d-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .d-1of3, .d-2of6, .d-3of9, .d-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .d-2of3, .d-4of6, .d-6of9, .d-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .d-1of4, .d-2of8, .d-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .d-3of4, .d-6of8, .d-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .d-1of5, .d-2of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .d-2of5, .d-4of10 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .d-3of5, .d-6of10 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .d-4of5, .d-8of10 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .d-1of6, .d-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .d-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%; }
  .d-5of8 {
    float: left;
    padding-right: 0.75em;
    width: 62.5%; }
  .d-7of8 {
    float: left;
    padding-right: 0.75em;
    width: 87.5%; }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .d-2of9 {
    float: left;
    padding-right: 0.75em;
    width: 22.2222222222%; }
  .d-4of9 {
    float: left;
    padding-right: 0.75em;
    width: 44.4444444444%; }
  .d-5of9 {
    float: left;
    padding-right: 0.75em;
    width: 55.5555555555%; }
  .d-7of9 {
    float: left;
    padding-right: 0.75em;
    width: 77.7777777777%; }
  .d-8of9 {
    float: left;
    padding-right: 0.75em;
    width: 88.8888888888%; }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .d-3of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .d-7of10 {
    float: left;
    padding-right: 0.75em;
    width: 70%; }
  .d-9of10 {
    float: left;
    padding-right: 0.75em;
    width: 90%; }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .d-2of11 {
    float: left;
    padding-right: 0.75em;
    width: 18.18181818182%; }
  .d-3of11 {
    float: left;
    padding-right: 0.75em;
    width: 27.27272727273%; }
  .d-4of11 {
    float: left;
    padding-right: 0.75em;
    width: 36.36363636364%; }
  .d-5of11 {
    float: left;
    padding-right: 0.75em;
    width: 45.45454545455%; }
  .d-6of11 {
    float: left;
    padding-right: 0.75em;
    width: 54.54545454546%; }
  .d-7of11 {
    float: left;
    padding-right: 0.75em;
    width: 63.63636363637%; }
  .d-8of11 {
    float: left;
    padding-right: 0.75em;
    width: 72.72727272728%; }
  .d-9of11 {
    float: left;
    padding-right: 0.75em;
    width: 81.81818181819%; }
  .d-10of11 {
    float: left;
    padding-right: 0.75em;
    width: 90.9090909091%; }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .d-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.65%; }
  .d-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.1%; }
  .d-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.3%; }
  .d-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.63%; } }


.pb-a .vc_tta-panel-title > a {
  font-size: 12px !important;
  background-color: white !important;
}

.pb-a .vc_tta-panel-title  {
  border-bottom: solid;
        border-bottom-width: medium;
    border-width: 1px;
}



.price-box-some .vc_column-inner {
	border-style: solid;
	border-color: #f9f9f9;
	border-width: 1px;
	border-top-width:10px;
	border-top-color: #71a189;
	box-shadow: 2px 2px 4px #eaeaea;
	
}

.price-box-more .vc_column-inner {
	border-style: solid;
	border-color: #f9f9f9;
	border-width: 1px;
	border-top-width:10px;
	border-top-color: #d2126f;
	box-shadow: 2px 2px 4px #eaeaea;
	
}

.price-box-your .vc_column-inner {
	border-style: solid;
	border-color: #f9f9f9;
	border-width: 1px;
	border-top-width:10px;
	border-top-color: #ef4a25;
	box-shadow: 2px 2px 4px #eaeaea;
	
}

#inner-footer {
	background-color: #175e67;
}

.page-title {
	display: none !important;
}

#inner-header {
    position: absolute;
    top: 0px;
    z-index: 5;
}

.article-header {
	display: none;
}

.entry-content { padding-top: 0px;}

div.main-nav-wrapper nav {border-style: none;}

div.main-nav-wrapper nav ul.nav {
    text-align: right;
}

.main-nav-wrapper {
  width: 96%;
  position: relative;
  top: -40px;
}

#logo a {
    
    margin-top: -10px;
  }

div.main-nav-wrapper nav ul.nav li a {
    color: white;
}

.white-nav div.main-nav-wrapper nav ul.nav li a {
    color: black;
}


#logo img {
	margin-top: 25px;
}

.menu-item-8648 a {
	background: none !important;
	border-style: solid;
	border-bottom: solid;
  font-size: 12px;
  border-width: 1px;
}

.menu-item-6655 a {
	border-style: solid;
	border-bottom: solid;
	color: white;
	margin-right: 15px;
  font-size: 12px;
  border-width: 1px;
}

#mc_signup_submit {
    margin-top: 0 !important;
    width: 20% !important;
    float: left !important;
}

#mc_mv_EMAIL {
  float: left;
  width: 40%;
}

.mc_signup_submit {
    text-align: left !important;
}

.mc_header_email { display: none !important; }

@font-face {
    font-family: MuesoSans;
    src: url("http://www.goodspace.weareloki.com/wp-content/themes/sparkjoy-gspo/MuseoSans-300.otf") format("opentype");
}

.footer-mailchimp input[type="text"] {
  display: block;
height: 40px;
line-height: 1em;
padding: 0 12px;
margin-bottom: 14px;
font-size: 1em;
color: grey;
border-radius: 0px;
vertical-align: middle;
-webkit-box-shadow: none;
box-shadow: none;
border-style: solid;
border-width: 1px;
border-color: grey;
width: 100%;
max-width: 400px;
font-family: "Open Sans", "MuesoSans", sans-serif;
background-color: #175e67;
-webkit-transition: background-color 0.24s ease-in-out;
-moz-transition: background-color 0.24s ease-in-out;
-o-transition: background-color 0.24s ease-in-out;
transition: background-color 0.24s ease-in-out;

}

.footer-mailchimp #mc_signup_submit {
  display: inline-block;
position: relative;
font-family: "Open Sans", "MuesoSans", sans-serif;
font-size: 12px;
font-weight: 700;
text-decoration: none;
background-color: white;
color: #175e67;
font-size: 0.9em;
line-height: 40px;
font-weight: normal;
padding: 0 24px;
border-radius: 0px;
border: 0;
cursor: pointer;

text-align: center;
-webkit-transition: background-color 0.14s ease-in-out;
-moz-transition: background-color 0.14s ease-in-out;
-o-transition: background-color 0.14s ease-in-out;
transition: background-color 0.14s ease-in-out;
}

h1, h2 {
  font-family: "Open Sans";
  font-weight: 300;
}

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

.su-section #mc_signup {width: 50%;}

.su-section #mc_mv_EMAIL {
  width: 50%;
  margin-top: 15px;
  border-radius: 0px;
  margin-left: 30px;
}

.su-section #mc_signup_submit {
  width: 30% !important;
  margin-top: 15px !important;
  height: 40px;
  margin-left: 30px !important;
  border-radius: 0px !important;
  background-color: #71a189 !important;
}

#su-heading {
  text-align: center;
  padding-left: 40px;
}

div.main-nav-wrapper nav ul.nav li a {
  font-family: "Open Sans", "MuesoSans", sans-serif;
  text-transform: none !important;
}

.testimonial_rotator_quote
{
  color: white;
  font-family: "Open Sans";
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
}

.testimonial_rotator_author_info
{
  color: white;color: white;
  font-family: "Open Sans";
  font-weight: 300;
  font-size: 22px;
  text-align: right;
}


.page-header {height: 60vh;}
.page-subheader {height: 40vh;}

#home-header-heading {font-size: 65px;}
#home-header-subheading {font-size: 22px;}

@media only screen and (max-width: 736px) {

     

    .su-section #mc_signup {width: 100%;}

    .su-section #mc_mv_EMAIL {
    width: 100%;
    margin-top: 15px;
    border-radius: 0px;
    margin-left: 0px;
  }

  .su-section #mc_signup_submit {
    width: 100% !important;
    margin-top: 15px !important;
    height: 40px;
    margin-left: 0px !important;
    border-radius: 0px !important;
    background-color: #71a189 !important;
  }

  .bg-box { background: none !important }

  #inner-footer {
    padding: 0px 25px !important;
  }

  #hashtag { font-size: 24px; }

  .testimonial_rotator_quote {font-size: 20px !important;}

  #su-heading {padding-left: 0px !important;}

  #home-header-heading {font-size: 45px !important;}  
  #home-header-subheading {font-size: 13px !important;}

}

@media only screen and (max-width: 536px) {
  
  #mc_signup_submit {width: 40% !important;}

  #mc_mv_EMAIL {width: 60% !important;}
}


.hentry footer {
    padding: 0;
}

.logo-1 .vc_column-inner {
  border-bottom: dotted;
  border-right: dotted;
  border-width: 1px;
  border-color: grey;
} 

.logo-2 .vc_column-inner {
  border-bottom: dotted;
  border-right: dotted;
  border-width: 1px;
  border-color: grey;
} 

.logo-3 .vc_column-inner {
  border-bottom: dotted;
  border-width: 1px;
  border-color: grey;
} 

.logo-4 .vc_column-inner {
  border-right: dotted;
  border-width: 1px;
  border-color: grey;
} 

.logo-5 .vc_column-inner {

  border-right: dotted;
  border-width: 1px;
  border-color: grey;
} 

.bg-box {
  background: rgba(113, 161, 137, 0) linear-gradient(transparent 0%, transparent 60%, #71a189 60%, #71a189 100%) no-repeat scroll -100px center;
position: relative;
left: initial;
}

.gs-container{
  width: 100%;
  height: 100%;
}

.gs-image {
  display: block;
  width: 100%;
  height: auto;
}

.gs-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 1s ease;
  background-color: #008CBA;
}

.gs-overlay-blue {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 1s ease;
  background-color: rgba(123,162,180,0.9);
}

.gs-overlay-pink {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 1s ease;
  background-color: rgba(194,51,110,0.9);
}

.gs-overlay-green {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 1s ease;
  background-color: rgba(126,161,140,0.9);
}

.gs-overlay-gold {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 1s ease;
  background-color: rgba(188,134,84,0.9);
}

.gs-container:hover .gs-overlay, .gs-container:hover .gs-overlay-blue, .gs-container:hover .gs-overlay-pink, .gs-container:hover .gs-overlay-green, .gs-container:hover .gs-overlay-gold {
  opacity: 1;
}

.gs-text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
/*
.gfield > div.ginput_container > input.medium {
    border-radius: 0px;
    background-color: white;
    border-color: grey;
    border-style: solid;
    border-width: 1px;
}
*/
.gform_wrapper select {
    background-color: white;
    border-style: solid;
    border-color: gray;
    border-width: 1px;
    border-radius: 0px;
}

.gform_wrapper textarea {
    background-color: white;
    border-style: solid;
    border-color: gray;
    border-width: 1px;
    border-radius: 0px;
  }

  .gform_wrapper input[type="text"] {
    background-color: white;
    border-style: solid;
    border-color: gray;
    border-width: 1px;
    border-radius: 0px;
  }

  .gform_wrapper input.button {
    background-color: #ef4a25;
    border-radius: 0px;
  }

  #sb_instagram #sbi_load .sbi_load_btn {
    background-color: #ef4a25 !important;
    border-radius: 0px;
}

.bg-image {
  box-shadow:inset 0 0 0 2000px rgba(0,0,0,0.5);
}

.bg-image-gold {
  box-shadow:inset 0 0 0 2000px rgba(188,134,84,0.5);
}

.bg-image-light {
  box-shadow:inset 0 0 0 2000px rgba(0,0,0,0.2);
}

.hentry { margin-bottom: 0px; }

.testimonial_rotator.template-default .testimonial_rotator_author_info {
    border-left: none !important;
}

.vc_btn3.vc_btn3-color-warning, .vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat {
  background-color: #ef4a25;
}

.vc_btn3.vc_btn3-color-warning:hover, .vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat:hover {
  border-color: #ef4a25;
  color: #ef4a25;
  background-color: white;
}

.vc_btn3.vc_btn3-color-success, .vc_btn3.vc_btn3-color-success.vc_btn3-style-flat {
  background-color: #71a189;
}

.vc_btn3.vc_btn3-color-black, .vc_btn3.vc_btn3-color-black.vc_btn3-style-flat {
  background-color: black;
}

.vc_btn3.vc_btn3-color-black:hover, .vc_btn3.vc_btn3-color-black.vc_btn3-style-flat:hover {
  background-color: white;
  color: black;
  border-color: black;
  border-style: solid;
  border-width: 1px;
}

.vc_btn3.vc_btn3-color-success:hover, .vc_btn3.vc_btn3-color-success.vc_btn3-style-flat:hover {
  border-color: #71a189;
  color: #71a189;
  background-color: white;
}

.vc_btn3.vc_btn3-color-juicy-pink, .vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat {
  background-color: #d2126f !important;
}

.vc_grid-item .vc_btn3.vc_btn3-color-juicy-pink, .vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat {
  background-color: #d2126f !important;
  border-radius: 0px !important;
}

.vc_btn3.vc_btn3-color-sandy-brown, .vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline {
  border-color: #C48F4D;
  color:#C48F4D;
}

.vc_btn3.vc_btn3-color-sandy-brown:hover, .vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline:hover {
  border-color: #C48F4D;
  background-color:#C48F4D;
  color:white;
}

.vc_btn3.vc_btn3-color-juicy-pink:hover, .vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:hover {
  background-color: white !important;
  border-color: #d2126f;
  color: #d2126f;
}

.gs-button-orange {
  background-image: linear-gradient(to bottom,rgba(239,74,37,.2) 0,rgba(239,74,37,.01) 100%) !important;
  background-color: #ef4a25 !important;
  border-color: #ef4a25 !important;
  border-image: none !important;
}

.gs-button-blue {
  background-image: linear-gradient(to bottom,rgba(107,161,185,.2) 0,rgba(107,161,185,.01) 100%) !important;
  background-color: #6ba1b9 !important;
  border-color: #6ba1b9 !important;
  border-image: none !important;
}

div.main-nav-wrapper nav ul.nav li a:hover {
  color: white;
  border-bottom-style: solid;
  border-bottom-width: 1.5px;
  border-bottom-color: white;
}

.login-logo {max-width: 350px}

#post-6643 {
  width: 50%;
margin-left: auto;
margin-right: auto;
background-color: rgba(139,29,77,0.8);
color: white;
padding-top:25px;
padding-bottom: 25px;
}

@media only screen and (max-width: 1000px) {
  #menu-main-nav-menu {display: none !important;}
  .top-nav-wrapper {display: none !important;}
  .toggle-nav {display: none !important;}
  .login-logo {max-width: 250px !important;}

#post-6643 {
  width: 60% !important;
}

  #marble-bg {background-image: none !important;}
}

@media only screen and (max-width: 636px) {
.toggle-nav {display: none !important;}
  .login-logo {max-width: 150px !important;}

#post-6643 {
  width: 90% !important;
}
   }

.vc_gitem-zone-mini {
  background-color: white !important;
}

.vc_gitem-post-data-source-post_title h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
}

button#responsive-menu-button {
    z-index: 99999999 !important;
}

footer {
  padding: 0px !important;
}

.white-nav .main-nav-wrapper nav ul.nav li a:hover {color: black !important;}

.menu-item-6655 a:hover, .menu-item-6655 a:active  {
  background-color: white !important;
  color: black !important;
  border-color: white !important;
}

.menu-item-8648 a:hover {
  background-color: white !important;
  color: black !important;
  border-color: white !important;
}

.white-nav .menu-item-6655 a {
  background-color: none !important;
  color: black !important;
  border-color: black !important;
}

.white-nav .menu-item-8648 a {
  background-color: none !important;
  color: black !important;
  border-color: black !important;
}

.white-nav .menu-item-6655 a:hover {
  background-color: black !important;
  color: white !important;
  border-color: black !important;
}

.white-nav .menu-item-8648 a:hover {
  background-color: black !important;
  color: white !important;
  border-color: black !important;
}

.white-nav .menu-item-8449 a:hover {
  background-color: none !important;
  color: black !important;
  border-color: black !important;
}



 #menu-item-9370 a { 
border-style: solid;
border-width: 1px;
border-color: white;
 }

.white-nav #menu-item-9370 a { 
border-style: solid;
border-width: 1px;
border-color: black;
 }

.white-nav img {
  filter: invert(100%) !important;
}

#inform_toggle, #enlighten_toggle, #inspire_toggle {
 transition: all 0.3s linear;
 cursor: pointer !important;
}

#inform_info, #enlighten_info, #inspire_info {
  transition: all 1s linear;
}

.hidden {
  display: none;
}



.visuallyhidden {
  
  opacity: 0;
}

 
.toggled {
  opacity: 0.5;
  transition: all 0.5s linear;
}

#responsive-menu {padding-top: 120px !important;}

.vp-a {
  display: inline-block;
margin-bottom: 0;
text-align: center;
vertical-align: middle;
cursor: pointer;
background-image: none;
background-color: transparent;
color: #5472d2;
border: 1px solid transparent;
box-sizing: border-box;
word-wrap: break-word;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-decoration: none;
position: relative;
top: 0;
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
line-height: normal;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
font-size: 14px;
padding-top: 14px;
padding-bottom: 14px;
padding-left: 20px;
padding-right: 20px;
color: white;
background-color: #ef4a25;
}

.vp-a:hover {
color: #f7f7f7;
background-color: #e08700;
}

#inner-header {
  position: fixed !important;
  height: 110px;
}

.white-nav {
  background-color: white;
}

.menu-item-8445 a:hover {
	border-bottom-style: solid;
	border-bottom-width: 1.5px;
	border-bottom-color: #ef4a25 !important;
}

.menu-item-8446 a:hover {
	border-bottom-style: solid;
	border-bottom-width: 1.5px;
	border-bottom-color: #7aa2b4 !important;
}

.menu-item-8447 a:hover {
	border-bottom-style: solid;
	border-bottom-width: 1.5px;
	border-bottom-color: #c3336f !important;
}

.menu-item-8448 a:hover {
	border-bottom-style: solid;
	border-bottom-width: 1.5px;
	border-bottom-color: #7da18c !important;
}



.menu-item-8476 a:hover {
	border-bottom-style: solid;
	border-bottom-width: 1.5px;
	border-bottom-color: #dc593c !important;
}

.price-box-some { margin-top: 40px; }
.price-box-your { margin-top: 40px; }

.price-box-more .vc_column-inner {
background-image: url(http://www.goodspace.weareloki.com/wp-content/uploads/2018/08/MOst-Popular-Banner-1.png);
background-size: 100px 100px;
background-position: right top !important;
background-repeat: no-repeat !important; 

}

.su-section #mc_signup_submit:hover {
  color: #71a189 !important;
  border-color: #71a189 !important;
  border-style: solid !important;
  border-width: 1px !important;
  background-color: white !important;
}

#inner-header .header-wrap {
    max-width: none;
}

div.top-nav-wrapper {
    padding-right: 35px;
}

#about-slider .vc_column-inner { padding-top: 0px !important; }

a#home-btn1:hover {
  background-color: white !important;
  color: #ee4925 !important;
  background-image: none !important;
}

a#home-btn2:hover {
  background-color: white !important;
  color: #6aa0b8 !important;
  background-image: none !important;

}

.footer-mailchimp #mc_signup_submit:hover {
  background-color: black;
  color: white;
  
}

#sb_instagram #sbi_load .sbi_load_btn:hover {
  color: #ef4a25 !important;
  border-color: #ef4a25 !important;
  border-style: solid !important;
  border-width: 1px !important;
  background-color: white !important;
}

a.vp-a:hover {
  color: #ef4a25 !important;
  border-color: #ef4a25 !important;
  border-style: solid !important;
  border-width: 1px !important;
  background-color: white !important;
}

#gform_submit_button_21:hover, #gform_submit_button_11:hover {
  color: #ef4a25 !important;
  border-color: #ef4a25 !important;
  border-style: solid !important;
  border-width: 1px !important;
  background-color: white !important;
  line-height: 32px;

}

#label_11_67_0 {border-radius: 0px !important}

#label_11_67_0:hover
{
 color: #ef4a25 !important;
  border-color: #ef4a25 !important;
  border-style: solid !important;
  border-width: 1px !important;
  background-color: white !important; 
}


#wp-submit, a.btn {
  border-radius: 0px;
  color: white;
  background-color: black;
  border-style: solid;
  border-width: 1px;
  border-color: black;
}

#wp-submit:hover, a.btn:hover {
  color: black;
  background-color:white;
  border-style: solid !important;
  border-width: 1px !important;
  border-color: black !important;
}

.foot-link, .foot-link:hover {
  color: white !important;
  text-decoration: none !important;
}

.login-page {
  background-image: url('http://www.goodspace.weareloki.com/wp-content/uploads/2018/08/How-It-Works-Header-Image.jpg');
  background-size: cover;
}



.no-dec, .no-dec:hover {
  color:white !important;
  text-decoration: none !important;
}

#inner-content .packages {
  background: white !important;
}

.top-nav-wrapper {display: none !important;}

div.main-nav-wrapper nav ul.nav {
    margin-top: -20px !important;
    }

#input_21_9, #input_21_8, #input_21_10, #input_21_14 {
  border-top-style: none !important;
  border-left-style: none !important;
  border-right-style: none !important;
  border-width: 2px !important;
  color: #175e67 !important;
  border-color: #bc8654 !important;
}

.vc_btn3.vc_btn3-color-chino, .vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat, #gform_submit_button_21 {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #bc8654 !important;
  color: #bc8654 !important;
  background-color: transparent !important;
}

.vc_btn3.vc_btn3-color-chino, .vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat:hover {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #bc8654 !important;
  color: white !important;
  background-color: #bc8654 !important;
}

#gform_submit_button_21:hover {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: black !important;
  color: white !important;
  background-color: black !important;
}



.menu-item-9370 a:hover {
  background-color: white !important;
  color: black !important;
}

.white-nav #menu-item-9370 a:hover {
  border-color: black !important;
  background-color: black !important;
  color: white !important;
}


.white-nav #menu-item-8807 a:hover {border-bottom-color: black !important}

.white-nav #menu-item-8789 a:hover {border-bottom-color: black !important}

.white-nav #menu-item-8788 a:hover {border-bottom-color: black !important}

.white-nav #menu-item-8499 a:hover {border-bottom-color: black !important}

#logo img {
    z-index: 100 !important;
}

#logo a {
    z-index: 10000 !important;
    position: relative !important;
}

.tparrows::before

{ font-size: 60px !important; }

#logo { cursor: pointer !important }

div.main-nav-wrapper {

    z-index: 1 !important;

}

.login-logo {display: none}

#post-6643 {
  background-color: rgba(188,134,84,0.9) !important;
}

html, body, p, h1, h2, h3, h4, h5 {  hyphens: none !important; }

a {text-decoration: none !important}