/*! 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.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 66, ../scss/partials/_typography.scss */
p {
  -ms-word-break: normal;
  -ms-word-wrap: normal;
  word-break: normal;
  word-break: normal;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

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

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/* line 10, ../scss/partials/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px;
}
/* line 75, ../scss/partials/_mixins.scss */
.container:before, .container:after {
  content: " ";
  display: table;
}
/* line 80, ../scss/partials/_mixins.scss */
.container:after {
  clear: both;
}

.post-type-archive-chef .hentry {
  height: 500px;
}
@media (min-width: 768px) {
  /* line 10, ../scss/partials/_grid.scss */
  .container {
    width: 780px;
  }
}
@media (min-width: 992px) {
  /* line 10, ../scss/partials/_grid.scss */
  .container {
    width: 860px;
  }
}
@media (min-width: 1200px) {
  /* line 10, ../scss/partials/_grid.scss */
  .container {
    width: 1020px;
  }
}

/* line 30, ../scss/partials/_grid.scss */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px;
}
/* line 75, ../scss/partials/_mixins.scss */
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
/* line 80, ../scss/partials/_mixins.scss */
.container-fluid:after {
  clear: both;
}

/* line 39, ../scss/partials/_grid.scss */
.row {
  margin-left: -30px;
  margin-right: -30px;
}
/* line 75, ../scss/partials/_mixins.scss */
.row:before, .row:after {
  content: " ";
  display: table;
}
/* line 80, ../scss/partials/_mixins.scss */
.row:after {
  clear: both;
}

/* line 96, ../scss/partials/_mixins.scss */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 30px;
  padding-right: 30px;
}

/* line 112, ../scss/partials/_mixins.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

/* line 120, ../scss/partials/_mixins.scss */
.col-xs-1 {
  width: 8.33333%;
}

/* line 120, ../scss/partials/_mixins.scss */
.col-xs-2 {
  width: 16.66667%;
}

/* line 120, ../scss/partials/_mixins.scss */
.col-xs-3 {
  width: 25%;
}

/* line 120, ../scss/partials/_mixins.scss */
.col-xs-4 {
  width: 33.33333%;
}

/* line 120, ../scss/partials/_mixins.scss */
.col-xs-5 {
  width: 41.66667%;
}

/* line 120, ../scss/partials/_mixins.scss */
.col-xs-6 {
  width: 50%;
}

/* line 120, ../scss/partials/_mixins.scss */
.col-xs-7 {
  width: 58.33333%;
}

/* line 120, ../scss/partials/_mixins.scss */
.col-xs-8 {
  width: 66.66667%;
}

/* line 120, ../scss/partials/_mixins.scss */
.col-xs-9 {
  width: 75%;
}

/* line 120, ../scss/partials/_mixins.scss */
.col-xs-10 {
  width: 83.33333%;
}

/* line 120, ../scss/partials/_mixins.scss */
.col-xs-11 {
  width: 91.66667%;
}

/* line 120, ../scss/partials/_mixins.scss */
.col-xs-12 {
  width: 100%;
}

/* line 140, ../scss/partials/_mixins.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 135, ../scss/partials/_mixins.scss */
.col-xs-pull-1 {
  right: 8.33333%;
}

/* line 135, ../scss/partials/_mixins.scss */
.col-xs-pull-2 {
  right: 16.66667%;
}

/* line 135, ../scss/partials/_mixins.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 135, ../scss/partials/_mixins.scss */
.col-xs-pull-4 {
  right: 33.33333%;
}

/* line 135, ../scss/partials/_mixins.scss */
.col-xs-pull-5 {
  right: 41.66667%;
}

/* line 135, ../scss/partials/_mixins.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 135, ../scss/partials/_mixins.scss */
.col-xs-pull-7 {
  right: 58.33333%;
}

/* line 135, ../scss/partials/_mixins.scss */
.col-xs-pull-8 {
  right: 66.66667%;
}

/* line 135, ../scss/partials/_mixins.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 135, ../scss/partials/_mixins.scss */
.col-xs-pull-10 {
  right: 83.33333%;
}

/* line 135, ../scss/partials/_mixins.scss */
.col-xs-pull-11 {
  right: 91.66667%;
}

/* line 135, ../scss/partials/_mixins.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 130, ../scss/partials/_mixins.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 125, ../scss/partials/_mixins.scss */
.col-xs-push-1 {
  left: 8.33333%;
}

/* line 125, ../scss/partials/_mixins.scss */
.col-xs-push-2 {
  left: 16.66667%;
}

/* line 125, ../scss/partials/_mixins.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 125, ../scss/partials/_mixins.scss */
.col-xs-push-4 {
  left: 33.33333%;
}

/* line 125, ../scss/partials/_mixins.scss */
.col-xs-push-5 {
  left: 41.66667%;
}

/* line 125, ../scss/partials/_mixins.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 125, ../scss/partials/_mixins.scss */
.col-xs-push-7 {
  left: 58.33333%;
}

/* line 125, ../scss/partials/_mixins.scss */
.col-xs-push-8 {
  left: 66.66667%;
}

/* line 125, ../scss/partials/_mixins.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 125, ../scss/partials/_mixins.scss */
.col-xs-push-10 {
  left: 83.33333%;
}

/* line 125, ../scss/partials/_mixins.scss */
.col-xs-push-11 {
  left: 91.66667%;
}

/* line 125, ../scss/partials/_mixins.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 145, ../scss/partials/_mixins.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 145, ../scss/partials/_mixins.scss */
.col-xs-offset-1 {
  margin-left: 8.33333%;
}

/* line 145, ../scss/partials/_mixins.scss */
.col-xs-offset-2 {
  margin-left: 16.66667%;
}

/* line 145, ../scss/partials/_mixins.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 145, ../scss/partials/_mixins.scss */
.col-xs-offset-4 {
  margin-left: 33.33333%;
}

/* line 145, ../scss/partials/_mixins.scss */
.col-xs-offset-5 {
  margin-left: 41.66667%;
}

/* line 145, ../scss/partials/_mixins.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 145, ../scss/partials/_mixins.scss */
.col-xs-offset-7 {
  margin-left: 58.33333%;
}

/* line 145, ../scss/partials/_mixins.scss */
.col-xs-offset-8 {
  margin-left: 66.66667%;
}

/* line 145, ../scss/partials/_mixins.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 145, ../scss/partials/_mixins.scss */
.col-xs-offset-10 {
  margin-left: 83.33333%;
}

/* line 145, ../scss/partials/_mixins.scss */
.col-xs-offset-11 {
  margin-left: 91.66667%;
}

/* line 145, ../scss/partials/_mixins.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  /* line 112, ../scss/partials/_mixins.scss */
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-sm-1 {
    width: 8.33333%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-sm-2 {
    width: 16.66667%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-sm-3 {
    width: 25%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-sm-4 {
    width: 33.33333%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-sm-5 {
    width: 41.66667%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-sm-6 {
    width: 50%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-sm-7 {
    width: 58.33333%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-sm-8 {
    width: 66.66667%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-sm-9 {
    width: 75%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-sm-10 {
    width: 83.33333%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-sm-11 {
    width: 91.66667%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-sm-12 {
    width: 100%;
  }

  /* line 140, ../scss/partials/_mixins.scss */
  .col-sm-pull-0 {
    right: auto;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-sm-pull-1 {
    right: 8.33333%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-sm-pull-2 {
    right: 16.66667%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-sm-pull-4 {
    right: 33.33333%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-sm-pull-5 {
    right: 41.66667%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-sm-pull-7 {
    right: 58.33333%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-sm-pull-8 {
    right: 66.66667%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-sm-pull-10 {
    right: 83.33333%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-sm-pull-11 {
    right: 91.66667%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 130, ../scss/partials/_mixins.scss */
  .col-sm-push-0 {
    left: auto;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-sm-push-1 {
    left: 8.33333%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-sm-push-2 {
    left: 16.66667%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-sm-push-3 {
    left: 25%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-sm-push-4 {
    left: 33.33333%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-sm-push-5 {
    left: 41.66667%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-sm-push-6 {
    left: 50%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-sm-push-7 {
    left: 58.33333%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-sm-push-8 {
    left: 66.66667%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-sm-push-9 {
    left: 75%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-sm-push-10 {
    left: 83.33333%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-sm-push-11 {
    left: 91.66667%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-sm-push-12 {
    left: 100%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  /* line 112, ../scss/partials/_mixins.scss */
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-md-1 {
    width: 8.33333%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-md-2 {
    width: 16.66667%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-md-3 {
    width: 25%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-md-4 {
    width: 33.33333%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-md-5 {
    width: 41.66667%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-md-6 {
    width: 50%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-md-7 {
    width: 58.33333%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-md-8 {
    width: 66.66667%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-md-9 {
    width: 75%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-md-10 {
    width: 83.33333%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-md-11 {
    width: 91.66667%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-md-12 {
    width: 100%;
  }

  /* line 140, ../scss/partials/_mixins.scss */
  .col-md-pull-0 {
    right: auto;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-md-pull-1 {
    right: 8.33333%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-md-pull-2 {
    right: 16.66667%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-md-pull-3 {
    right: 25%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-md-pull-4 {
    right: 33.33333%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-md-pull-5 {
    right: 41.66667%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-md-pull-6 {
    right: 50%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-md-pull-7 {
    right: 58.33333%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-md-pull-8 {
    right: 66.66667%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-md-pull-9 {
    right: 75%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-md-pull-10 {
    right: 83.33333%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-md-pull-11 {
    right: 91.66667%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-md-pull-12 {
    right: 100%;
  }

  /* line 130, ../scss/partials/_mixins.scss */
  .col-md-push-0 {
    left: auto;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-md-push-1 {
    left: 8.33333%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-md-push-2 {
    left: 16.66667%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-md-push-3 {
    left: 25%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-md-push-4 {
    left: 33.33333%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-md-push-5 {
    left: 41.66667%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-md-push-6 {
    left: 50%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-md-push-7 {
    left: 58.33333%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-md-push-8 {
    left: 66.66667%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-md-push-9 {
    left: 75%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-md-push-10 {
    left: 83.33333%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-md-push-11 {
    left: 91.66667%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-md-push-12 {
    left: 100%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  /* line 112, ../scss/partials/_mixins.scss */
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-lg-1 {
    width: 8.33333%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-lg-2 {
    width: 16.66667%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-lg-3 {
    width: 25%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-lg-4 {
    width: 33.33333%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-lg-5 {
    width: 41.66667%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-lg-6 {
    width: 50%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-lg-7 {
    width: 58.33333%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-lg-8 {
    width: 66.66667%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-lg-9 {
    width: 75%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-lg-10 {
    width: 83.33333%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-lg-11 {
    width: 91.66667%;
  }

  /* line 120, ../scss/partials/_mixins.scss */
  .col-lg-12 {
    width: 100%;
  }

  /* line 140, ../scss/partials/_mixins.scss */
  .col-lg-pull-0 {
    right: auto;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-lg-pull-1 {
    right: 8.33333%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-lg-pull-2 {
    right: 16.66667%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-lg-pull-3 {
    right: 25%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-lg-pull-4 {
    right: 33.33333%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-lg-pull-5 {
    right: 41.66667%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-lg-pull-7 {
    right: 58.33333%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-lg-pull-8 {
    right: 66.66667%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-lg-pull-10 {
    right: 83.33333%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-lg-pull-11 {
    right: 91.66667%;
  }

  /* line 135, ../scss/partials/_mixins.scss */
  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 130, ../scss/partials/_mixins.scss */
  .col-lg-push-0 {
    left: auto;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-lg-push-1 {
    left: 8.33333%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-lg-push-2 {
    left: 16.66667%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-lg-push-3 {
    left: 25%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-lg-push-4 {
    left: 33.33333%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-lg-push-5 {
    left: 41.66667%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-lg-push-6 {
    left: 50%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-lg-push-7 {
    left: 58.33333%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-lg-push-8 {
    left: 66.66667%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-lg-push-9 {
    left: 75%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-lg-push-10 {
    left: 83.33333%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-lg-push-11 {
    left: 91.66667%;
  }

  /* line 125, ../scss/partials/_mixins.scss */
  .col-lg-push-12 {
    left: 100%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 145, ../scss/partials/_mixins.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/*********************
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.

******************************************************************/
/* line 15, ../scss/modules/_alerts.scss */
.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

/* line 20, ../scss/modules/_alerts.scss */
.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

/* line 25, ../scss/modules/_alerts.scss */
.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

/* line 30, ../scss/modules/_alerts.scss */
.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

*********************/
/* line 27, ../scss/modules/_buttons.scss */
.btn-white, .btn-primary, .btn-secondary, input[type="button"], input[type="submit"], .header nav ul .btn-book a, .header .toggle {
  color: #1a1a1a;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
  border-bottom: 2px solid #804000;
  color: #ffffff;
  -webkit-border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  border-radius: 0.25em;
  font-weight: bold;
}
/* line 39, ../scss/modules/_buttons.scss */
.btn-white:hover, .btn-primary:hover, .btn-secondary:hover, input[type="button"]:hover, input[type="submit"]:hover, .header nav ul .btn-book a:hover, .header .toggle:hover, .btn-white:focus, .btn-primary:focus, .btn-secondary:focus, input[type="button"]:focus, input[type="submit"]:focus, .header nav ul .btn-book a:focus, .header .toggle:focus {
  color: #fff !important;
}

/*
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.
*/
/* line 53, ../scss/modules/_buttons.scss */
.btn-white {
  background-color: #fff;
}
/* line 57, ../scss/modules/_buttons.scss */
.btn-white:hover, .btn-white:focus {
  background-color: #e6e6e6;
}
/* line 62, ../scss/modules/_buttons.scss */
.btn-white:active {
  background-color: #e6e6e6;
}

/* line 67, ../scss/modules/_buttons.scss */
.btn-primary {
  background-color: #1a1a1a;
  color: #fff;
}
/* line 72, ../scss/modules/_buttons.scss */
.btn-primary:hover, .btn-primary:focus {
  background-color: #010101;
  color: #fff;
}
/* line 78, ../scss/modules/_buttons.scss */
.btn-primary:active {
  background-color: #010101;
  color: #fff;
}
/* line 82, ../scss/modules/_buttons.scss */
.btn-primary:visited {
  color: #fff;
}

/* line 86, ../scss/modules/_buttons.scss */
.btn-secondary, input[type="button"], input[type="submit"], .header nav ul .btn-book a {
  background-color: #dc6b00;
  color: #fff;
}
/* line 91, ../scss/modules/_buttons.scss */
.btn-secondary:hover, input[type="button"]:hover, input[type="submit"]:hover, .header nav ul .btn-book a:hover, .btn-secondary:focus, input[type="button"]:focus, input[type="submit"]:focus, .header nav ul .btn-book a:focus {
  background-color: #f67700;
  color: #fff;
}
/* line 97, ../scss/modules/_buttons.scss */
.btn-secondary:active, input[type="button"]:active, input[type="submit"]:active, .header nav ul .btn-book a:active {
  background-color: #f67700;
  color: #fff;
}
/* line 101, ../scss/modules/_buttons.scss */
.btn-secondary:visited, input[type="button"]:visited, input[type="submit"]:visited, .header nav ul .btn-book a:visited {
  color: #fff;
}

/* line 111, ../scss/modules/_buttons.scss */
.ow-button-base a {
  font-weight: bold;
}

/******************************************************************
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
*********************/
/* line 24, ../scss/modules/_forms.scss */
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 {
  background-color: #fff;
  border: 1px solid #b3b3b3;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
/* line 47, ../scss/modules/_forms.scss */
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;
}
/* line 53, ../scss/modules/_forms.scss */
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;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
/* line 65, ../scss/modules/_forms.scss */
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;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
/* line 77, ../scss/modules/_forms.scss */
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;
}
/* line 83, ../scss/modules/_forms.scss */
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;
}

/* line 96, ../scss/modules/_forms.scss */
select {
  height: 40px;
}

/* line 101, ../scss/modules/_forms.scss */
.wpcf7-submit {
  @extends .btn-secondary;
}

/* line 112, ../scss/modules/_forms.scss */
form ul {
  margin-left: 0 !important;
}
/* line 114, ../scss/modules/_forms.scss */
form ul li:before {
  content: '' !important;
}

/* line 119, ../scss/modules/_forms.scss */
.ninja-forms-form-wrap select {
  height: 40px !important;
}

/* line 122, ../scss/modules/_forms.scss */
.list-checkbox-wrap.label-left ul li {
  padding: 0 !important;
}

/*********************
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
*********************/
/* line 18, ../scss/breakpoints/_base.scss */
body {
  font-family: "Alegreya Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333;
  line-height: 1.333em;
  font-size: 1em;
  margin-top: 50px;
}

/* line 27, ../scss/breakpoints/_base.scss */
.banner img {
  max-width: 100%;
  height: auto;
}
/* line 31, ../scss/breakpoints/_base.scss */
.banner .single-title, .banner .page-title, .banner .archive-title {
  font-size: 3em;
  text-transform: none;
  color: #fff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.75);
}

/* line 38, ../scss/breakpoints/_base.scss */
hr {
  color: #cdcdcd;
  background-color: #cdcdcd;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* line 51, ../scss/breakpoints/_base.scss */
.home .home-banner .textwidget {
  padding: 2.5em 0 0 0;
  text-align: center;
}
/* line 54, ../scss/breakpoints/_base.scss */
.home .home-banner .textwidget h1, .home .home-banner .textwidget h2, .home .home-banner .textwidget h3 {
  color: #fff;
}
/* line 57, ../scss/breakpoints/_base.scss */
.home .home-banner .textwidget h1 {
  font-size: 2.5em;
  line-height: 1em;
}
/* line 61, ../scss/breakpoints/_base.scss */
.home .home-banner .textwidget h2 {
  font-size: 2em;
}
/* line 64, ../scss/breakpoints/_base.scss */
.home .home-banner .textwidget h3 {
  font-size: 1.5em;
}
/* line 68, ../scss/breakpoints/_base.scss */
.home .home-banner .so-widget-image {
  display: block;
  line-height: 1;
  margin: auto !important;
}
/* line 75, ../scss/breakpoints/_base.scss */
.home #content {
  margin: 0;
}
/* line 77, ../scss/breakpoints/_base.scss */
.home #content .entry-content {
  padding: 0;
}
/* line 81, ../scss/breakpoints/_base.scss */
.home #content .promo .widget-title, .home #content .promo .textwidget, .home #content .clients .widget-title, .home #content .clients .textwidget {
  text-align: center;
}

/* home page */
/* blog template page */
/* line 89, ../scss/breakpoints/_base.scss */
.archive .entry-content {
  height: auto;
}

/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LINK STYLES
*********************/
/* line 129, ../scss/breakpoints/_base.scss */
a, a:visited {
  color: #dc6b00;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
/* line 133, ../scss/breakpoints/_base.scss */
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #ffb976;
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 148, ../scss/breakpoints/_base.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  font-weight: 800;
  color: #dc6b00;
  line-height: 1.25em;
}

/*********************
HEADER STYLES
*********************/
/* line 170, ../scss/breakpoints/_base.scss */
.header {
  background-color: #1a1a1a;
  border-bottom: 1px solid #010101;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}
/* line 178, ../scss/breakpoints/_base.scss */
.header #inner-header {
  padding: 0;
}
/* line 182, ../scss/breakpoints/_base.scss */
.header .navbar-header {
  padding: 1em 0 0.75em 0;
}
/* line 184, ../scss/breakpoints/_base.scss */
.header .navbar-header a {
  color: #dc6b00;
}
/* line 188, ../scss/breakpoints/_base.scss */
.header .navbar-header .logo {
  position: relative;
  z-index: 1040;
}
/* line 191, ../scss/breakpoints/_base.scss */
.header .navbar-header .logo img {
  position: absolute;
  top: 0px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.5);
}
/* line 200, ../scss/breakpoints/_base.scss */
.header .toggle {
  color: #dc6b00;
  background-color: #1a1a1a;
  border: 0;
}
/* line 206, ../scss/breakpoints/_base.scss */
.header .toggle:hover, .header .toggle:focus {
  background-color: #1a1a1a;
  color: #fff;
}
/* line 212, ../scss/breakpoints/_base.scss */
.header .toggle:active {
  background-color: #1a1a1a;
  color: #fff;
}
/* line 219, ../scss/breakpoints/_base.scss */
.header nav {
  border: 0;
}
/* line 221, ../scss/breakpoints/_base.scss */
.header nav ul {
  margin-top: 0;
  font-weight: bold;
  text-transform: uppercase;
  border-top: 1px solid #000;
  text-align: center;
}
/* line 227, ../scss/breakpoints/_base.scss */
.header nav ul li {
  border-top: 1px solid #343434;
}
/* line 229, ../scss/breakpoints/_base.scss */
.header nav ul li a {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
/* line 234, ../scss/breakpoints/_base.scss */
.header nav ul .first-menu-item {
  border-top: 0;
}
/* line 238, ../scss/breakpoints/_base.scss */
.header nav ul .btn-book a {
  padding: 0.25em 0.75em;
  margin: 1em 0;
  text-transform: none;
}

/*********************
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.
*/
/* line 262, ../scss/breakpoints/_base.scss */
.nav {
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 264, ../scss/breakpoints/_base.scss */
.nav li {
  /*
  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/
  */
}
/* line 266, ../scss/breakpoints/_base.scss */
.nav li a {
  color: #dc6b00;
  /*
  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!
  */
}
/* line 318, ../scss/breakpoints/_base.scss */
.nav li.current-menu-item > a,
.nav li.current_page_item > a,
.nav li.current_page_ancestor > a {
  color: #fff;
}

/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
/* line 330, ../scss/breakpoints/_base.scss */
#content {
  margin: 4em 0;
}

/* line 333, ../scss/breakpoints/_base.scss */
.hentry {
  margin-bottom: 0;
}
/* line 337, ../scss/breakpoints/_base.scss */
.hentry header {
  padding: 0;
}
/* line 339, ../scss/breakpoints/_base.scss */
.hentry header .entry-title {
  margin-top: 0;
}
/* line 344, ../scss/breakpoints/_base.scss */
.hentry footer {
  padding: 0;
}

/* end .hentry */
/* 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 */
/* line 372, ../scss/breakpoints/_base.scss */
.byline {
  color: gray;
}

/* entry content */
/* line 380, ../scss/breakpoints/_base.scss */
.entry-content {
  padding: 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.
  */
}
/* line 383, ../scss/breakpoints/_base.scss */
.entry-content p {
  margin-bottom: 1.5em;
}
/* line 408, ../scss/breakpoints/_base.scss */
.entry-content table caption {
  color: #9fa6b4;
}
/* line 413, ../scss/breakpoints/_base.scss */
.entry-content tr {
  border-bottom: 1px solid #eaedf2;
}
/* line 416, ../scss/breakpoints/_base.scss */
.entry-content tr:nth-child(even) {
  background-color: #f8f9fa;
}
/* line 421, ../scss/breakpoints/_base.scss */
.entry-content td {
  border-right: 1px solid #eaedf2;
}
/* line 427, ../scss/breakpoints/_base.scss */
.entry-content th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eaedf2;
  border-right: 1px solid #eaedf2;
}
/* line 435, ../scss/breakpoints/_base.scss */
.entry-content blockquote {
  border-left: 3px solid #1a1a1a;
  color: gray;
}
/* line 439, ../scss/breakpoints/_base.scss */
.entry-content blockquote cite {
  color: #dc6b00;
}
/* line 453, ../scss/breakpoints/_base.scss */
.entry-content img {
  margin: 0;
}
/* line 471, ../scss/breakpoints/_base.scss */
.entry-content pre {
  background: #000;
  color: #f8f9fa;
}

/* end .entry-content */
/* line 482, ../scss/breakpoints/_base.scss */
.wp-caption {
  border-bottom: 1px solid white;
}

/* end .wp-caption */
/* image gallery styles */
/* line 504, ../scss/breakpoints/_base.scss */
.gallery dd {
  color: #fff;
}

/* end .gallery */
/* gallery caption styles */
/* line 519, ../scss/breakpoints/_base.scss */
.tags {
  margin: 0;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
/* line 534, ../scss/breakpoints/_base.scss */
.pagination ul {
  background-color: #fff;
}
/* line 538, ../scss/breakpoints/_base.scss */
.pagination li {
  border-right: 1px solid #eaedf2;
}
/* line 542, ../scss/breakpoints/_base.scss */
.pagination a, .pagination span {
  color: #2980b9;
}
/* line 545, ../scss/breakpoints/_base.scss */
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: #2980b9;
  color: #fff;
}
/* line 551, ../scss/breakpoints/_base.scss */
.pagination .current {
  color: #333333;
}
/* line 554, ../scss/breakpoints/_base.scss */
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #333333;
}

/* end .bones_page_navi */
/* fallback previous & next links */
/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
/* line 578, ../scss/breakpoints/_base.scss */
#comments-title {
  border-top: 1px solid #f8f9fa;
  /* number of comments span */
}

/* line 598, ../scss/breakpoints/_base.scss */
.comment {
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
/* line 614, ../scss/breakpoints/_base.scss */
.comment .vcard time a {
  color: #9fa6b4;
}
/* line 631, ../scss/breakpoints/_base.scss */
.comment .children {
  /* variations */
  /* change number for different depth */
}
/* line 661, ../scss/breakpoints/_base.scss */
.comment.odd {
  background-color: #fff;
}
/* line 664, ../scss/breakpoints/_base.scss */
.comment.even {
  background: #f8f9fa;
}

/* comment meta */
/* comment content */
/* end .commentlist .comment_content */
/* comment reply link */
/* end .commentlist .comment-reply-link */
/* edit comment link */
/******************************************************************
COMMENT FORM STYLES
******************************************************************/
/* line 720, ../scss/breakpoints/_base.scss */
.comment-respond {
  border-top: 1px solid #f8f9fa;
}

/* line 726, ../scss/breakpoints/_base.scss */
.logged-in-as {
  color: #9fa6b4;
}
/* line 729, ../scss/breakpoints/_base.scss */
.logged-in-as a {
  color: #333333;
}

/* line 736, ../scss/breakpoints/_base.scss */
.form-allowed-tags {
  background-color: #f8f9fa;
}

/* comment submit button */
/* comment form title */
/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
/* no comments */
/*********************
SIDEBARS & ASIDES
*********************/
/* line 772, ../scss/breakpoints/_base.scss */
.widget ul li {
  /* deep nesting */
}

/* line 789, ../scss/breakpoints/_base.scss */
.no-widgets {
  background-color: #fff;
  border: 1px solid white;
}

/*********************
FOOTER STYLES
*********************/
/* line 798, ../scss/breakpoints/_base.scss */
.footer {
  color: gray;
}
/* line 800, ../scss/breakpoints/_base.scss */
.footer #inner-footer {
  padding: 0;
}
/* line 802, ../scss/breakpoints/_base.scss */
.footer #inner-footer .sidebar {
  background: #cccccc;
  padding: 1.5em 0;
}
/* line 806, ../scss/breakpoints/_base.scss */
.footer #inner-footer .copy {
  background: #1a1a1a;
}

/*
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 */
/****
 * Needs Sorting
 */
/* line 838, ../scss/breakpoints/_base.scss */
.lead {
  color: #dc6b00;
  font-size: 110%;
}

/* line 842, ../scss/breakpoints/_base.scss */
.featured {
  padding: 3em 0;
}

/* line 846, ../scss/breakpoints/_base.scss */
.stretch .container .row h1, .stretch .container .row h2, .stretch .container .row h3, .stretch .container .row h4, .stretch .container .row h5 {
  color: #fff;
}
/* line 849, ../scss/breakpoints/_base.scss */
.stretch .container .row h2 {
  margin: 0;
  line-height: 1;
}
/* line 854, ../scss/breakpoints/_base.scss */
.stretch .container .row .col-sm-4 h3, .stretch .container .row .col-sm-4 p, .stretch .container .row .col-sm-4 img {
  margin: 0;
  background: #fff;
  line-height: 0;
}
/* line 861, ../scss/breakpoints/_base.scss */
.stretch .container .row .col-sm-4 h3, .stretch .container .row .col-sm-4 p {
  padding: 1em;
}

/* line 871, ../scss/breakpoints/_base.scss */
.footer .widget {
  margin: 1em 0;
}
/* line 874, ../scss/breakpoints/_base.scss */
.footer .widgettitle {
  text-transform: uppercase;
  color: #1a1a1a;
  border-bottom: 0px solid #444;
  margin-bottom: 0.5em;
}
/* line 880, ../scss/breakpoints/_base.scss */
.footer .widget_nav_menu {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1em;
  line-height: 1.5em;
  /* highlight current page */
  /* end current highlighters */
}
/* line 885, ../scss/breakpoints/_base.scss */
.footer .widget_nav_menu .menu {
  margin: 0;
}
/* line 888, ../scss/breakpoints/_base.scss */
.footer .widget_nav_menu li {
  margin-bottom: 0;
}
/* line 896, ../scss/breakpoints/_base.scss */
.footer .widget_nav_menu li.current-menu-item > a,
.footer .widget_nav_menu li.current_page_item > a,
.footer .widget_nav_menu li.current_page_ancestor > a {
  color: #1a1a1a;
}
/* line 902, ../scss/breakpoints/_base.scss */
.footer .textwidget {
  line-height: 1.25em;
}
/* line 904, ../scss/breakpoints/_base.scss */
.footer .textwidget p {
  margin: 0 0 0.5em 0;
}
/* line 908, ../scss/breakpoints/_base.scss */
.footer a:hover {
  color: #904600;
}
/* line 911, ../scss/breakpoints/_base.scss */
.footer img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0em auto;
}
/* line 917, ../scss/breakpoints/_base.scss */
.footer .footer-nav {
  margin: 0.25em 0;
}

/* line 922, ../scss/breakpoints/_base.scss */
.so-panel .widget-title {
  font-size: 1.75em;
  margin-bottom: 0.5em;
}

/* line 929, ../scss/breakpoints/_base.scss */
.home .so-panel .widget-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 0.5em;
}

/* line 937, ../scss/breakpoints/_base.scss */
.promo #panel-54-2-0-0 {
  margin-bottom: 0 !important;
}
/* line 939, ../scss/breakpoints/_base.scss */
.promo #panel-54-2-0-0 .widget-title {
  color: #fff;
}
/* line 942, ../scss/breakpoints/_base.scss */
.promo #panel-54-2-0-0 .textwidget {
  color: #fff;
}
/* line 948, ../scss/breakpoints/_base.scss */
.promo #panel-54-2-0-1 .widget .textwidget {
  background: #fff;
}
/* line 950, ../scss/breakpoints/_base.scss */
.promo #panel-54-2-0-1 .widget .textwidget img {
  margin-bottom: 0em;
  width: 100%;
  height: auto;
  display: block;
}
/* line 956, ../scss/breakpoints/_base.scss */
.promo #panel-54-2-0-1 .widget .textwidget p {
  padding: 0 0 0.75em 0;
  margin: 0;
  line-height: 1.25em;
}

/* line 969, ../scss/breakpoints/_base.scss */
.clients .logo-grid img {
  padding: 0 15px;
  margin: 0;
}
/* line 973, ../scss/breakpoints/_base.scss */
.clients .logo-grid .panel-grid-cell {
  float: left !important;
  width: 50% !important;
  margin: 0 !important;
}

/* line 980, ../scss/breakpoints/_base.scss */
.banner {
  background: url("../images/banner-secondary.jpg") #1a1a1a center center;
  height: 140px;
}
/* line 983, ../scss/breakpoints/_base.scss */
.banner .article-header {
  line-height: 0em;
  text-align: center;
  position: relative;
  width: 100%;
  z-index: 10;
}
/* line 989, ../scss/breakpoints/_base.scss */
.banner .article-header h1 {
  position: absolute;
  margin: 0.75em 0;
  width: 100%;
}

/* line 999, ../scss/breakpoints/_base.scss */
.archive .article-header h2 {
  font-size: 1.5em;
}
/* line 1003, ../scss/breakpoints/_base.scss */
.archive .article-thumb {
  margin-bottom: 1em;
}
/* line 1005, ../scss/breakpoints/_base.scss */
.archive .article-thumb img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
/* line 1012, ../scss/breakpoints/_base.scss */
.archive .article-header, .archive .entry-content, .archive .article-footer {
  padding: 0;
}
/* line 1016, ../scss/breakpoints/_base.scss */
.archive .article-footer {
  border-bottom: 0px solid #cdcdcd;
  padding-bottom: 2em;
}

/* line 1021, ../scss/breakpoints/_base.scss */
.center {
  text-align: center;
}

/* line 1025, ../scss/breakpoints/_base.scss */
.case-studies img {
  margin: 0;
  border: 1px solid #cdcdcd;
}

/* line 1031, ../scss/breakpoints/_base.scss */
#book img {
  width: 100%;
  margin-bottom: 0.5em;
}

/* line 1038, ../scss/breakpoints/_base.scss */
.page-id-172 .btn-book {
  display: none !important;
}

/* line 1045, ../scss/breakpoints/_base.scss */
.ninja-forms-req-symbol {
  color: #000 !important;
}

/* line 1051, ../scss/breakpoints/_base.scss */
.upw-posts article {
  padding-bottom: 0.5em !important;
  margin-bottom: 0.5em !important;
}
/* line 1054, ../scss/breakpoints/_base.scss */
.upw-posts article .entry-title {
  margin-bottom: 0 !important;
  font-weight: normal;
  font-size: 1em;
}

/* line 1061, ../scss/breakpoints/_base.scss */
.byline {
  margin-bottom: 1em;
}

/* line 1065, ../scss/breakpoints/_base.scss */
#ninja_forms_form_15 .ninja-forms-required-items {
  display: none;
}

/* line 1069, ../scss/breakpoints/_base.scss */
.cm-subscribe-form {
  background: #000;
  text-align: center;
  padding: 20px 0;
}

/* line 1075, ../scss/breakpoints/_base.scss */
.archive .description {
  height: 385px;
}
.post-type-archive-blog-posts .description,
.category-recent-events .description{
    height: auto;
}
/* line 1079, ../scss/breakpoints/_base.scss */
#ninja_forms_form_15 .ninja-col-4-4 {
  display: none;
}

/* line 1082, ../scss/breakpoints/_base.scss */
.category-events #ninja_forms_form_15_wrap {
  background-color: #eee;
  border-radius: 8px;
  padding: 30px 30px 0px 30px;
}

/* line 1088, ../scss/breakpoints/_base.scss */
.category-events .ninja_forms_form_15_response_msg {
  font-weight: bold;
}

/* line 1091, ../scss/breakpoints/_base.scss */
.category-events .ninja-col-1-4, .category-events .ninja-col-4-4 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* line 1096, ../scss/breakpoints/_base.scss */
.category-events .ninja-col-1-4 #ninja_forms_field_59,
.category-events .ninja-col-1-4 #ninja_forms_field_60,
.category-events .ninja-col-1-4 #ninja_forms_field_61 {
  float: none;
  width: 100%;
}

/* line 1102, ../scss/breakpoints/_base.scss */
.category-events .ninja-col-1-4 #ninja_forms_field_74 {
  margin-left: 0;
}

/* line 1107, ../scss/breakpoints/_base.scss */
.post-type-archive-chef #post-70 .article-thumb {
  margin-bottom: 16.633px;
}
body.single-blog-posts .panel-grid h2 {
    color: #000;
}

body.single-blog-posts .panel-grid.panel-has-style .surf-club-row{
    background-position: right center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-attachment: initial !important;
}
.surf-club-cell {
    width: 100%;
    color: #fff;
    padding: 45px 483px 0px 25px;
    font-size: 2em;
    line-height: 120%;
}

.article-header img {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 1199px) {
    .surf-club-cell {
        padding: 45px 407px 0px 25px;
        font-size: 1.5em;
    }
}
/*********************
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-widtwh: 480px) {
  /******************************************************************
  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 */
  /* line 33, ../scss/breakpoints/_481up.scss */
  .menu {
    /* end .menu ul */
  }
  /* line 34, ../scss/breakpoints/_481up.scss */
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 35, ../scss/breakpoints/_481up.scss */
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  /* line 36, ../scss/breakpoints/_481up.scss */
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }

  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  /* line 81, ../scss/breakpoints/_481up.scss */
  .entry-content {
    /* at this larger size, we can start to align images */
  }

  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
  /* line 107, ../scss/breakpoints/_481up.scss */
  #pgc-54-0-0 h1 {
    font-size: 1.75em;
  }
}

@media only screen and (max-width: 991px) {
    .surf-club-cell {
        padding: 45px 345px 0px 25px;
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 744px) {
    .surf-club-cell {
        padding: 45px 250px 10px 25px;
        font-size: 1.2em;
    }
}
@media only screen and (max-width: 660px) {
    body.single-blog-posts .panel-grid.panel-has-style .surf-club-row {
        background-position: center bottom !important;
        background-size: 100% auto !important;
    }
    .surf-club-cell {
        padding: 45px 35px 104% 35px;
    }
	body.postid-1104 .surf-club-cell {
        padding: 45px 35px 90% 35px;
    }
}

/*********************
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
  *********************/
  /* line 20, ../scss/breakpoints/_768up.scss */
  body {
    margin-top: 50px;
  }

  /* line 25, ../scss/breakpoints/_768up.scss */
  .home .home-banner .textwidget {
    padding: 2.5em 0 0 0;
    text-align: left;
  }
  /* line 31, ../scss/breakpoints/_768up.scss */
  .home .introduction .widget-title {
    text-align: left;
  }

  /*********************
  HEADER STYLES
  *********************/
  /* line 41, ../scss/breakpoints/_768up.scss */
  .header .navbar-header {
    padding: 0;
  }
  /* line 45, ../scss/breakpoints/_768up.scss */
  .header nav ul {
    margin-left: 10em;
  }
  /* line 47, ../scss/breakpoints/_768up.scss */
  .header nav ul li {
    border-top: 0;
  }
  /* line 49, ../scss/breakpoints/_768up.scss */
  .header nav ul li a {
    padding-top: 1em;
  }
  /* line 53, ../scss/breakpoints/_768up.scss */
  .header nav ul .btn-book {
    float: right;
    display: none;
  }
  /* line 56, ../scss/breakpoints/_768up.scss */
  .header nav ul .btn-book a {
    margin: 0.75em 0 0.5em 0;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  /* line 69, ../scss/breakpoints/_768up.scss */
  .nav {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 70, ../scss/breakpoints/_768up.scss */
  .nav ul {
    background: #fff;
  }
  /* line 73, ../scss/breakpoints/_768up.scss */
  .nav li {
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  /* line 75, ../scss/breakpoints/_768up.scss */
  .nav li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  /* line 80, ../scss/breakpoints/_768up.scss */
  .nav li a:hover, .nav li a:focus {
    color: #ffb976;
  }
  /* line 95, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu,
  .nav li ul.children {
    margin: 0;
    border: 1px solid white;
    /* highlight sub-menu current page */
  }
  /* line 100, ../scss/breakpoints/_768up.scss */
  .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.
    */
  }

  /* end .nav */
  /*********************
  SIDEBARS & ASIDES
  *********************/
  /* line 163, ../scss/breakpoints/_768up.scss */
  .widget ul li {
    /* deep nesting */
  }

  /* 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!
  */
  /* line 275, ../scss/breakpoints/_768up.scss */
  .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 */
  /* line 291, ../scss/breakpoints/_768up.scss */
  .clients .logo-grid img {
    padding: 0px;
  }
  /* line 294, ../scss/breakpoints/_768up.scss */
  .clients .logo-grid .panel-grid-cell {
    width: 25% !important;
  }

  /* line 300, ../scss/breakpoints/_768up.scss */
  .post-type-archive-chef .entry-content, .post-type-archive-host .entry-content, .post-type-archive-venue .entry-content {
    height: 250px;
    overflow: hidden;
  }

  /* line 308, ../scss/breakpoints/_768up.scss */
  .home #content #pgc-54-1-0, .home #content #pgc-54-1-2 {
    display: block;
  }

  /* line 313, ../scss/breakpoints/_768up.scss */
  #pgc-54-0-0 h1 {
    font-size: 1.75em;
  }

  /* line 318, ../scss/breakpoints/_768up.scss */
  .category-event .entry-content .description {
    height: 425px;
  }
}
/*********************
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: 992px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Desktop Stylsheet

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

  ******************************************************************/
  /* line 13, ../scss/breakpoints/_1030up.scss */
  .home .home-banner .textwidget {
    padding: 3em 0 0 0;
  }

  /* line 20, ../scss/breakpoints/_1030up.scss */
  .header .nav .btn-book {
    display: block;
  }
  /* line 23, ../scss/breakpoints/_1030up.scss */
  .header .nav .btn-book span {
    display: none;
  }

  /* line 31, ../scss/breakpoints/_1030up.scss */
  .post-type-archive-chef .entry-content, .post-type-archive-host .entry-content, .post-type-archive-venue .entry-content {
    height: 225px;
  }

  /* line 37, ../scss/breakpoints/_1030up.scss */
  #pgc-54-0-0 h1 {
    font-size: 2em;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1200px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Super Large Monitor Stylesheet

  You can add some advanced styles here if you like. This kicks in
  on larger screens.

  ******************************************************************/
  /* line 15, ../scss/breakpoints/_1240up.scss */
  .header .nav .btn-book span {
    display: inline;
  }

  /* line 23, ../scss/breakpoints/_1240up.scss */
  #pgc-54-0-0 h1 {
    font-size: 2.5em;
  }

  /* line 30, ../scss/breakpoints/_1240up.scss */
  .post-type-archive-chef .entry-content, .post-type-archive-host .entry-content, .post-type-archive-venue .entry-content {
    height: 225px !important;
  }
}
/*********************
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.

  ******************************************************************/
  @page {}
}

@media only screen and (max-width: 991px) {
    .header .navbar-header {
        padding: 1em 0 0.75em 0;
    }
    .header .navbar-header .logo img {
        display: none;
    }
    .header .navbar-header .logo span {
        display: block !important;
    }
}
