@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.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * 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 {
  -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;
  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: "“" "”" "‘" "’";
}

/**
 * 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 */
  -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: table;
}
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

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

Stylesheet: Variables

******************************************************************/
/*********************
SIZES
*********************/
/*********************
COLORS
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

******************************************************************/
/*********************
FONT 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;
}
*/
/*
 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; //non-standart css for webkit
    word-wrap: break-word;
    // cleaning up the ragged lines and breaks
    -webkit-hyphens: auto;
       -moz-hyphens: auto;
            hyphens: auto;
    // sets a minimum number of characters before and after the break
    -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
*********************/
/*********************
CSS3 GRADIENTS
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
OTHERS
*********************/
@-webkit-keyframes vbounce6 {
  84% {
    top: 0;
  }
  88% {
    top: 6px;
  }
  92% {
    top: -3px;
  }
  96% {
    top: 6px;
  }
  100% {
    top: 0;
  }
}
@keyframes vbounce6 {
  84% {
    top: 0;
  }
  88% {
    top: 6px;
  }
  92% {
    top: -3px;
  }
  96% {
    top: 6px;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes hbounce6 {
  84% {
    left: 0;
  }
  88% {
    left: 6px;
  }
  92% {
    left: -3px;
  }
  96% {
    left: 6px;
  }
  100% {
    left: 0;
  }
}
@keyframes hbounce6 {
  84% {
    left: 0;
  }
  88% {
    left: 6px;
  }
  92% {
    left: -3px;
  }
  96% {
    left: 6px;
  }
  100% {
    left: 0;
  }
}
/******************************************************************
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 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
/* 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 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }

  .d-1of6 {
    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-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }

  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }

  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }

  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
/*********************
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-success, .alert-error, .alert-info, .alert-help {
  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

*********************/
.btn-clean, .btn, .btn-blue, #submit, .comment-reply-link, .btn-blue:visited, .comment-reply-link:visited, .btn-red, .btn-red:visited, .btn:visited {
  text-decoration: none;
}
.btn-clean:hover, .btn:hover, .btn-blue:hover, #submit:hover, .comment-reply-link:hover, .btn-red:hover {
  color: #fff;
  text-decoration: none;
  outline: none;
}
.btn-clean:focus, .btn:focus, .btn-blue:focus, #submit:focus, .comment-reply-link:focus, .btn-red:focus {
  outline: none;
  color: #fff;
}

.btn, .btn-blue, #submit, .comment-reply-link, .btn-blue:visited, .comment-reply-link:visited, .btn-red, .btn-red:visited, .btn:visited {
  display: inline-block;
  position: relative;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-position: 10px center, right 10px center;
  background-size: auto 60%;
  background-color: #aaa;
  font-size: 1.2em;
  height: 2.5em;
  line-height: 2.5em;
  font-weight: bold;
  padding: 0 1.75em;
  border: 0;
  cursor: pointer;
  outline: 0;
  -webkit-transition: background-color 375ms ease-in-out;
  transition: background-color 375ms ease-in-out;
}
.btn:hover, .btn-blue:hover, #submit:hover, .comment-reply-link:hover, .btn-red:hover, .btn:visited:hover {
  color: #fff;
  background-color: #c4c4c4;
}

.btn-red, .btn-red:visited {
  background-color: #f00;
}
.btn-red:hover, .btn-red:visited:hover {
  background-color: #cc0000;
}

.btn-blue, #submit, .comment-reply-link, .btn-blue:visited, .comment-reply-link:visited {
  background-color: #0058ac;
}
.btn-blue:hover, #submit:hover, .comment-reply-link:hover, .btn-blue:visited:hover {
  background-color: #003e79;
}

.btn-small {
  font-size: 0.75em;
}

.btn-large {
  font-size: 1.5em;
}

.btn-double {
  height: auto;
  line-height: 1.5em;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
.btn-double span {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.65em;
}

.btn-more-below, .btn-more-below:visited, .btn-more-below:focus {
  outline: 0;
  color: inherit;
  text-decoration: none;
  -webkit-transition: text-shadow 375ms;
  transition: text-shadow 375ms;
}
.btn-more-below:after, .btn-more-below:visited:after, .btn-more-below:focus:after {
  content: "";
  width: 0;
  height: 0;
  display: inline-block;
  float: none;
  margin: 0 0 0.125em 0.333em;
  border-left: 0.25em solid transparent;
  border-right: 0.25em solid transparent;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  top: 50%;
  border-top: 0.25em solid #fff;
}
.btn-more-below:before, .btn-more-below:visited:before, .btn-more-below:focus:before {
  content: "";
  width: 0;
  height: 0;
  display: inline-block;
  float: none;
  margin: 0 0.333em 0.125em 0;
  border-left: 0.25em solid transparent;
  border-right: 0.25em solid transparent;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  top: 50%;
  border-top: 0.25em solid #fff;
}
.btn-more-below:before, .btn-more-below:after, .btn-more-below:visited:before, .btn-more-below:visited:after, .btn-more-below:focus:before, .btn-more-below:focus:after {
  top: 0;
  position: relative;
  -webkit-animation: vbounce6 4s infinite;
          animation: vbounce6 4s infinite;
}
.btn-more-below:after, .btn-more-below:visited:after, .btn-more-below:focus:after {
  background-position: right center;
}
.btn-more-below:hover, .btn-more-below:visited:hover, .btn-more-below:focus:hover {
  color: inherit;
  background: none;
  text-shadow: 0 0 10px #fff;
}

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

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #000;
  border-radius: 3px;
  vertical-align: middle;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #aaa;
  -webkit-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: #b4b4b4;
  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;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
input[type=text].success, input[type=text].is-valid,
input[type=password].success,
input[type=password].is-valid,
input[type=datetime].success,
input[type=datetime].is-valid,
input[type=datetime-local].success,
input[type=datetime-local].is-valid,
input[type=date].success,
input[type=date].is-valid,
input[type=month].success,
input[type=month].is-valid,
input[type=time].success,
input[type=time].is-valid,
input[type=week].success,
input[type=week].is-valid,
input[type=number].success,
input[type=number].is-valid,
input[type=email].success,
input[type=email].is-valid,
input[type=url].success,
input[type=url].is-valid,
input[type=search].success,
input[type=search].is-valid,
input[type=tel].success,
input[type=tel].is-valid,
input[type=color].success,
input[type=color].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #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;
}
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=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;
}

/*********************
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
*********************/
html.guru {
  height: 100%;
  margin-top: 0 !important;
  overflow-x: hidden;
  background: #fff;
}
html.mobile-nav-active body {
  overflow: hidden;
  height: 100%;
}
html.mobile-nav-active body header.header, html.mobile-nav-active body #inner-header {
  height: 100%;
}
html.mobile-nav-active body #inner-header {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}
html.theme-contrast .header {
  background-color: rgba(0, 0, 0, 0.9);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#003568), to(rgba(0, 53, 104, 0)));
  background-image: linear-gradient(#003568, rgba(0, 53, 104, 0));
}
html.theme-contrast #logo a {
  background-image: url(../images/logo-aaa-bail-services-w.png);
}
html.theme-contrast.mobile-nav-active .header {
  background: #003568;
}
html.theme-contrast.mobile-nav-active .main-nav-container {
  background-color: #003568;
}
html.theme-contrast .main-menu {
  background-color: #003568;
  border-top-color: rgba(255, 255, 255, 0.1);
}
html.theme-contrast .main-menu li a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background-color: transparent;
}
html.theme-contrast .main-menu li a:hover {
  color: #fff;
}
html.theme-contrast .trigger-nav {
  color: #000;
}
html.theme-contrast .trigger-nav .ic > span {
  background-color: #fff;
}
html.theme-contrast .trigger-nav.active .ic > span {
  background-color: #white;
}
html.theme-contrast .footer {
  background-color: rgba(0, 0, 0, 0.9);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#003568), to(rgba(0, 53, 104, 0)));
  background-image: linear-gradient(#003568, rgba(0, 53, 104, 0));
  color: #e6e6e6;
}
html.theme-contrast .footer .footer-logo a {
  background-image: url(../images/logo-aaa-bail-services-bobby-rembert-w.png);
}
html.theme-contrast .footer .social .svg-container svg {
  fill: #e6e6e6;
}
html.theme-contrast .footer .social .svg-container:hover svg {
  fill: #fff;
}
html.theme-contrast .footer-links ul li a {
  color: #999;
}
html.theme-contrast .footer-links ul li a:hover {
  color: #fff;
}
html.theme-dark {
  background: #000;
}
html.theme-dark.scrolled .header {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.9);
}
html.theme-dark body {
  color: #fff;
  background-color: #fff;
}
html.theme-dark #container #content {
  background: #000 url(../images/gray-dark-grunge.png);
}
html.theme-dark .header {
  background-color: rgba(0, 0, 0, 0.9);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#003568), to(rgba(0, 53, 104, 0)));
  background-image: linear-gradient(#003568, rgba(0, 53, 104, 0));
}
html.theme-dark #logo a {
  background-image: url(../images/logo-aaa-bail-services-w.png);
}
html.theme-dark .main-nav-container {
  background-color: #000;
}
html.theme-dark .main-menu {
  background-color: rgba(0, 0, 0, 0.9);
  border-top-color: rgba(255, 255, 255, 0.1);
}
html.theme-dark .main-menu li a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background-color: transparent;
}
html.theme-dark .main-menu li a:hover {
  color: #fff;
}
html.theme-dark .trigger-nav {
  color: #000;
}
html.theme-dark .trigger-nav .ic > span {
  background-color: #fff;
}
html.theme-dark .trigger-nav.active .ic > span {
  background-color: #white;
}
html.theme-dark .footer {
  background-image: url(../images/gray-dark-grunge.png), -webkit-gradient(linear, left top, left bottom, from(#1a1a1a), to(#000));
  background-image: url(../images/gray-dark-grunge.png), linear-gradient(#1a1a1a, #000);
  color: #999;
}
html.theme-dark .footer .social .svg-container svg {
  fill: #666666;
}
html.theme-dark .footer .social .svg-container:hover svg {
  fill: #999;
}
html.theme-dark .footer-links ul li a {
  color: #999;
}
html.theme-dark .footer-links ul li a:hover {
  color: #fff;
}

body {
  height: 100%;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*********************
LAYOUT & GRID STYLES
*********************/
#container {
  position: relative;
  z-index: 1;
  height: 100%;
}
#container #content {
  background: #fff;
  min-height: 100%;
  padding-top: 112px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 250px;
  position: relative;
  z-index: 1;
  /* stupid spacer for iphones */
}
#container #content:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 250px;
  left: 0;
  bottom: -250px;
}

#main {
  margin-bottom: 16px;
}

.wrap {
  margin: 0 16px;
}

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #0085db;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #0069ad;
}
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);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 900;
  margin-top: 0;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

h1, .h1 {
  font-size: 2em;
  line-height: 1.333em;
}

h2, .h2 {
  font-size: 1.5em;
  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;
}

p, ul, ol {
  margin-top: 0;
}

.separator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  direction: row;
}
.separator span {
  padding: 8px 16px;
}
.separator:before, .separator:after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin: auto;
}

/*********************
HEADER STYLES
*********************/
.header {
  position: fixed;
  z-index: 9990;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 53, 104, 0.3)), to(white));
  background-image: linear-gradient(rgba(0, 53, 104, 0.3), white);
  top: 0;
  left: 0;
  width: 100%;
  height: 112px;
  -webkit-transition: height 375ms;
  transition: height 375ms;
}

#logo {
  float: left;
  margin: 0;
  padding: 32px 0;
  -webkit-transition: padding 375ms;
  transition: padding 375ms;
}
#logo a {
  outline: none;
  display: block;
  width: 259.2px;
  height: 48px;
  background: url(../images/logo-aaa-bail-services.png) no-repeat;
  background-size: contain;
  background-position: left center;
  text-indent: -9999px;
  -webkit-transition: height 375ms, width 375ms;
  transition: height 375ms, width 375ms;
}

/*********************
NAVIGATION STYLES
*********************/
.nav {
  border-bottom: 0;
  margin: 0;
  /* highlight current page */
}
.nav li a {
  display: block;
  color: #003568;
  text-decoration: none;
  padding: 0.75em;
}
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}
.main-nav-container {
  position: absolute;
  left: 110%;
  top: 0;
  width: 100%;
  background: #fff;
  height: 100%;
  -webkit-transition: left 375ms, padding 375ms;
  transition: left 375ms, padding 375ms;
}
.main-nav-container.active {
  left: 0;
}
.main-nav-container > h5 {
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 0;
}
.main-nav-container.has-header-module {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main-nav-container.has-header-module .main-menu {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 16px;
}

.main-menu {
  border-bottom: 0;
  margin: 32px 0 0;
  overflow: auto;
  z-index: 9998;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: padding 375ms;
  transition: padding 375ms;
}
.main-menu li a {
  outline: 0;
  padding: 0;
  height: 48px;
  line-height: 48px;
  text-transform: uppercase;
  color: #003568;
  font-size: 1em;
  font-weight: bold;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.main-menu li a:hover {
  color: #000;
}

.trigger-nav {
  height: 48px;
  width: 48px;
  color: #fff;
  position: fixed;
  top: 32px;
  right: 4px;
  font-size: 17px;
  z-index: 9999;
  border-bottom: 0;
  outline: none !important;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: top 0.275ms;
  transition: top 0.275ms;
}
.trigger-nav.active {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.trigger-nav .ic-container {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.trigger-nav .ic {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 275ms;
  transition: all 275ms;
}
.trigger-nav .ic > span {
  background: #000;
  border-radius: 1px;
  display: block;
  height: 2px;
  margin-top: 4px;
  -webkit-transition: all 275ms;
  transition: all 275ms;
  width: 24px;
}
.trigger-nav .ic > span:first-child {
  margin-top: 0;
}
.trigger-nav.active .ic {
  position: absolute;
  left: -10px;
  top: -6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.trigger-nav.active .ic > span {
  background: #aaa;
}
.trigger-nav.active .ic > span.bar-1 {
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
}
.trigger-nav.active .ic > span.bar-2 {
  opacity: 0;
}
.trigger-nav.active .ic > span.bar-3 {
  -webkit-transform: rotate(-90deg) translateX(6px);
  transform: rotate(-90deg) translateX(6px);
}

.header-cta {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-right: 40px;
}
.header-cta p {
  margin: 0;
}
.header-cta a {
  display: block;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 4px solid #fff;
  border-radius: 32px;
  padding: 16px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 16px;
  -webkit-transition: padding 375ms;
  transition: padding 375ms;
}
.header-cta a .phone-number {
  display: block;
  font-weight: 900;
  font-size: 2em;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 2px;
  margin-top: 4px;
}

/*********************
POSTS & CONTENT STYLES
*********************/
.hentry footer p {
  margin: 0;
}

.single-title,
.page-title,
.entry-title {
  margin: 0;
}

/* post meta */
.byline {
  color: #999;
  font-style: italic;
  margin: 0;
}
/* entry content */
.entry-content.has-content-secondary .content-primary {
  margin-bottom: 16px;
}

.entry-content p {
  margin: 0 0 16px;
}
.entry-content table {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-content tr {
  border-bottom: 1px solid #aaa;
}
.entry-content tr:nth-child(even) {
  background-color: #f8f9fa;
}
.entry-content td {
  padding: 7px;
  border-right: 1px solid #aaa;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #aaa;
  border-right: 1px solid #aaa;
}
.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 #0058ac;
  font-style: italic;
  color: #999;
}
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content img {
  margin: 0 0 16px 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: #f8f9fa;
  color: #aaa;
  font-size: 0.9em;
  padding: 32px;
  margin: 0 0 16px;
}

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/* end .wp-caption */
/******************************************************************
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 #aaa;
}
.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: #0058ac;
}
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: #0058ac;
  color: #fff;
}
.pagination .current {
  cursor: default;
  color: #000;
}
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #000;
}

/* 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: 12px;
  margin: 0;
  border-top: 1px solid #f8f9fa;
}

.commentlist {
  margin: 0;
  list-style-type: none;
}

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 16px;
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
}
.comment .comment-author {
  padding: 7px;
  border: 0;
}
.comment .vcard {
  margin-left: 48px;
}
.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: #999;
  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[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_content p {
  margin: 8px 0 16px;
  font-size: 1em;
}

.comment-reply-link {
  font-size: 0.9em;
  float: right;
}

.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: #999;
  font-style: italic;
  margin: 0;
}
.logged-in-as a {
  color: #000;
}

.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

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

#submit {
  float: right;
  font-size: 1em;
}

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

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  margin-bottom: 1.5em;
}

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  color: #aaa;
  background: #999;
  overflow: hidden;
  height: 250px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.footer .footer-logo a {
  display: block;
  text-indent: -9999px;
  background: url(../images/logo-aaa-bail-services-bobby-rembert.png) no-repeat;
  background-size: contain;
  height: 60px;
  width: 186px;
  margin: 0 auto;
}
.footer .social {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}
.footer .social .svg-container {
  outline: 0;
  margin: 0 8px;
  display: inline-block;
  width: 48px;
  height: 48px;
}
.footer .social .svg-container:hover svg {
  fill: #fff;
}
.footer .social .svg-container svg {
  fill: #aaa;
  -webkit-transition: fill 375ms;
  transition: fill 375ms;
}

#inner-footer {
  height: 100%;
  padding: 16px 0;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.footer-links {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-links ul {
  padding-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-links ul li a {
  padding: 12px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  color: #aaa;
  text-transform: uppercase;
}
.footer-links ul li a:hover {
  color: #fff;
}
.footer-links ul li:first-child a {
  padding-left: 0;
  border: 0;
}
.footer-links ul li:last-child a {
  padding-right: 0;
}

/* end .footer-links */
.copyright {
  font-size: 0.75em;
  margin-bottom: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  top: 50%;
}

/******************************************
ADMIN BAR CUSTOMIZATION
******************************************/
@-webkit-keyframes wpadminbarHide {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-97%);
    transform: translateY(-97%);
  }
}
@keyframes wpadminbarHide {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-97%);
    transform: translateY(-97%);
  }
}
html body div#wpadminbar {
  border-bottom: 1px solid #444;
  z-index: 9999 !important;
  -webkit-animation-name: wpadminbarHide;
          animation-name: wpadminbarHide;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-transform: translateY(-97%);
  transform: translateY(-97%);
}
html body div#wpadminbar:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 15px;
  width: 31px;
  text-indent: -9999px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background: #23282d;
  /*@include css-gradient($from: #23282d, $to: #353d44, $vstart:"top", $vend:"bottom");*/
  border-radius: 0 0 5px 5px;
  border: 1px solid #444;
  border-top: 0;
  border-left-color: #333;
  cursor: pointer;
}
html body div#wpadminbar:after {
  content: "";
  border-style: solid;
  border-color: #777 transparent;
  border-width: 5px 5px 0;
  position: absolute;
  margin-left: -5px;
  left: 15px;
  bottom: -9px;
  cursor: pointer;
}
html body div#wpadminbar.wpadminbar-shown > .wpadminbar-activator {
  display: none;
}
html body div#wpadminbar:hover {
  -webkit-animation: step-end;
          animation: step-end;
  border-bottom: 1px solid #444;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
html body div#wpadminbar:hover:before {
  width: 100%;
  height: 10px;
  bottom: -10px;
}
html body div#wpadminbar:hover:after {
  display: none;
}
html body div#wpadminbar.hidden {
  border-bottom: 2px solid transparent;
  -webkit-transform: translateY(-97%);
  transform: translateY(-97%);
  -webkit-transition: transform, 2s;
  -webkit-transition: 2s, -webkit-transform;
  transition: 2s, -webkit-transform;
  transition: transform, 2s;
  transition: transform, 2s, -webkit-transform;
}
html body.hide-admin-bar div#wpadminbar {
  display: none;
}

/******************************************
PAGE SPECIFIC STYLES
******************************************/
/******************************************
HOME PAGE
******************************************/
body.page-template-page-home #container {
  background-color: #000;
}
body.page-template-page-home #container #content {
  padding-top: 0;
  min-height: 0;
}
body.page-template-page-home .gal-vid-container {
  height: 100%;
  padding-top: 112px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
body.page-template-page-home .gal-vid-container.mobile-gallery .sizzle-vid-container {
  display: none;
}
body.page-template-page-home .gal-vid-container.mobile-gallery .gallery-container {
  display: block;
}
body.page-template-page-home .gal-vid-container.mobile-video .sizzle-vid-container {
  display: block;
}
body.page-template-page-home .gal-vid-container.mobile-video .gallery-container {
  display: none;
}
body.page-template-page-home .gal-vid-inner {
  height: 100%;
  position: relative;
}
body.page-template-page-home .home-main-module {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  padding: 16px;
  font-size: 1.5em;
  line-height: 1.1em;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px #003568;
  text-align: center;
}
body.page-template-page-home .home-main-module h2 {
  margin-bottom: 0.1em;
  line-height: 1.1em;
}
body.page-template-page-home .home-main-module .btn, body.page-template-page-home .home-main-module .btn-red, body.page-template-page-home .home-main-module .btn-blue, body.page-template-page-home .home-main-module .comment-reply-link, body.page-template-page-home .home-main-module #submit {
  white-space: nowrap;
  text-shadow: none;
}
body.page-template-page-home .sizzle-vid-container, body.page-template-page-home .gallery-container {
  height: 100%;
  overflow: hidden;
}
body.page-template-page-home .sizzle-vid-container:after, body.page-template-page-home .gallery-container:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(rgba(255, 255, 255, 0.5)), color-stop(rgba(255, 255, 255, 0.3)), to(#000)), url(../images/bg-vert-stripe-2px.png);
  background: linear-gradient(#000, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3), #000), url(../images/bg-vert-stripe-2px.png);
}
body.page-template-page-home .sizzle-vid-container {
  background: #000;
  position: relative;
}
body.page-template-page-home .sizzle-vid-container video {
  display: block;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
body.page-template-page-home .gallery-container .gallery-container-inner {
  height: 100%;
  position: relative;
}
body.page-template-page-home .gallery-container .slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 375ms;
  transition: opacity 375ms;
}
body.page-template-page-home .gallery-container .slide.active {
  opacity: 1;
}
body.page-template-page-home .gallery-container .slide .mobile-img-container, body.page-template-page-home .gallery-container .slide .desktop-img-container {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 100%;
}
body.page-template-page-home .gallery-container .slide .desktop-img-container {
  display: none;
}
body.page-template-page-home .gallery-container .slide img {
  max-width: 100%;
  max-height: 100%;
  opacity: 0;
}
body.page-template-page-home #main {
  margin: 32px 0;
}
body.page-template-page-home .content-primary > .wp-block-columns {
  margin: 0;
}
body.page-template-page-home .easy-as {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 88, 172, 0.05)), to(rgba(0, 88, 172, 0.25)));
  background-image: linear-gradient(rgba(0, 88, 172, 0.05), rgba(0, 88, 172, 0.25));
  padding: 16px;
  text-align: center;
}
body.page-template-page-home .easy-as ol {
  counter-reset: easy-as-counter;
}
body.page-template-page-home .easy-as ol li {
  max-width: 12em;
  font-size: 1.5em;
  margin: 0 auto 32px;
  counter-increment: easy-as-counter;
}
body.page-template-page-home .easy-as ol li:before {
  content: counter(easy-as-counter);
  display: block;
  width: 1.3em;
  height: 1.3em;
  line-height: 1.25em;
  color: #f00;
  font-weight: 900;
  font-size: 3em;
  border: 9px solid #f00;
  border-radius: 1.25em;
  margin: 0 auto;
  background: #fff;
}
body.page-template-page-home .module.home-features {
  background-color: #003568;
  color: #fff;
}
body.page-template-page-home .module.home-features li {
  max-width: 360px;
  margin: 0 auto;
  padding: 0 32px 32px;
}
body.page-template-page-home .module.home-features li:first-child img {
  border-top: 0;
}
body.page-template-page-home .module.home-features li h3 {
  font-size: 1.5em;
}
body.page-template-page-home .module.home-features li img {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  max-width: 100%;
  height: auto;
}
body.page-template-page-home .module.home-features li p {
  margin-bottom: 0;
}
body.page-template-page-home .module.first-time {
  font-size: 1.25em;
  background: #003568;
  color: #fff;
  padding: 32px;
}
body.page-template-page-home .module.first-time .module-inner {
  max-width: 1500px;
  margin: 0 auto;
}
body.page-template-page-home .module.first-time li:before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  float: left;
  margin: 0.5em 0.5em 0 0;
  border-top: 0.25em solid transparent;
  border-bottom: 0.25em solid transparent;
  border-left: 0.4em solid #fff;
}
body.page-template-page-home .module.first-time .btn-red {
  font-size: 1.1em;
}

/*********************
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

  ******************************************************************/
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 16px;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 16px;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }

  /* end .entry-content */
  /******************************************
  PAGE SPECIFIC STYLES
  ******************************************/
  /******************************************
  HOME PAGE
  ******************************************/
  body.page-template-page-home .content-primary > .wp-block-columns .wp-block-column {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-left: 0;
  }
  body.page-template-page-home .module.first-time .btn-red {
    font-size: 1.5em;
  }
}
/*********************
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 Portrait

  ******************************************************************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  #container #content {
    padding-top: 128px;
  }

  .wrap {
    margin: 0 24px;
  }

  /*********************
  HEADER STYLES
  *********************/
  .header {
    height: 128px;
  }

  #logo a {
    width: 345.6px;
    height: 64px;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  .main-menu li a {
    height: 64px;
    line-height: 64px;
  }

  .trigger-nav {
    height: 64px;
    width: 64px;
  }

  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin-top: 2.2em;
  }

  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em;
  }

  .widget {
    padding: 0 8px;
    margin: 0 0 32px 0;
  }
  .widget ul li {
    margin-bottom: 16px;
  }
  .widget ul li ul {
    margin-top: 12px;
    padding-left: 16px;
  }

  /******************************************
  PAGE SPECIFIC STYLES
  ******************************************/
  /******************************************
  HOME PAGE
  ******************************************/
  body.page-template-page-home .gal-vid-container {
    padding-top: 128px;
  }
  body.page-template-page-home .home-main-module {
    font-size: 2em;
  }
  body.page-template-page-home .content-primary > .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:first-child) {
    margin-left: var(--wp--style--block-gap, 2em);
  }
}
@media only screen and (min-width: 1024px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tablet Landscape Stylsheet

  ******************************************************************/
  html.theme-dark .entry-content.has-content-secondary .content-secondary {
    border-left-color: rgba(255, 255, 255, 0.15);
  }

  #main {
    margin-bottom: 32px;
  }

  .wrap {
    margin: 0 32px;
  }

  .page-title {
    margin: 0 0 32px;
  }

  .has-content-secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .has-content-secondary .content-primary {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 32px;
    margin-bottom: 0;
  }
  .has-content-secondary .content-secondary {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 32px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }

  .widget {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  /******************************************
  PAGE SPECIFIC STYLES
  ******************************************/
  /******************************************
  HOME PAGE
  ******************************************/
  body.page-template-page-home .module.home-features ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1264px;
    margin: 0 auto;
  }
  body.page-template-page-home .module.home-features li {
    -ms-flex-preferred-size: 360px;
        flex-basis: 360px;
    margin: 0;
    /*margin-right:0;
    margin-left:0;
    padding-right:0;
    padding-left:0;*/
  }
  body.page-template-page-home .module.home-features li img {
    border-top: 0;
  }
}
/*********************
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: 1025px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Small Desktop Stylsheet

  ******************************************************************/
  html.theme-dark .main-nav-container, html.theme-contrast .main-nav-container {
    background: transparent;
  }
  html.theme-dark .main-menu, html.theme-contrast .main-menu {
    background: transparent;
  }
  html.theme-dark .main-menu li a, html.theme-contrast .main-menu li a {
    border: 0;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  #inner-header {
    height: 100%;
  }

  .main-nav-container {
    float: right;
    position: static;
    background: none;
    width: auto;
    height: 100%;
  }
  .main-nav-container.has-header-module {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .main-nav-container.has-header-module .main-menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
  }

  .main-menu {
    border: 0;
    margin-top: 0;
    overflow: visible;
    background: none;
    padding-top: 32px;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .main-menu li {
    float: left;
    position: relative;
    /* showing sub-menus */
  }
  .main-menu li.menu-item.menu-item-has-children > a:hover {
    border-color: transparent;
  }
  .main-menu li:last-child ul.sub-menu, .main-menu li:last-child ul.children {
    right: 0;
  }
  .main-menu li a {
    border-bottom: 1px solid transparent;
    border-color: transparent;
    -webkit-transition: height 375ms, line-height 375ms, background-color 375ms;
    transition: height 375ms, line-height 375ms, background-color 375ms;
    background: none;
    font-size: 17px;
    height: 64px;
    line-height: 64px;
    padding: 0 12px;
  }
  .main-menu li a:hover {
    text-decoration: none;
    background: rgba(0, 0, 0, 0.03);
  }
  .main-menu li li a {
    height: 55px;
    line-height: 55px;
  }
  .main-menu li ul.sub-menu,
.main-menu li ul.children {
    margin-top: -30px;
    border-top: 0;
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    height: 0;
    overflow: hidden;
    z-index: 8999;
    /* highlight sub-menu current page */
  }
  .main-menu li ul.sub-menu li a,
.main-menu li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .main-menu li ul.sub-menu li ul,
.main-menu li ul.children li ul {
    top: 0;
    left: 100%;
  }
  .main-menu li:hover > ul {
    top: auto;
    opacity: 1;
    height: auto;
  }
  /* end .nav */
  .trigger-nav {
    display: none;
  }

  .header-cta {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0 0 0 16px;
  }
  .header-cta a {
    margin: 0;
  }

  /******************************************
  PAGE SPECIFIC STYLES
  ******************************************/
  /******************************************
  HOME PAGE
  ******************************************/
  body.page-template-page-home .gal-vid-container.desktop-gallery .sizzle-vid-container {
    display: none;
  }
  body.page-template-page-home .gal-vid-container.desktop-gallery .gallery-container {
    display: block;
  }
  body.page-template-page-home .gal-vid-container.desktop-video .sizzle-vid-container {
    display: block;
  }
  body.page-template-page-home .gal-vid-container.desktop-video .gallery-container {
    display: none;
  }
}
/*********************
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: Large Monitor Stylesheet

  ******************************************************************/
  html.scrolled .header {
    height: 104px;
  }
  html.scrolled #logo {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  html.scrolled #logo a {
    width: 388.8px;
    height: 72px;
  }
  html.scrolled .main-menu {
    padding-top: 16px;
  }
  html.scrolled .main-menu li a {
    height: 72px;
    line-height: 72px;
  }
  html.scrolled .header-cta a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  html.theme-dark body.home .slider-list .slider-item, html.theme-deep-rose body.home .slider-list .slider-item {
    padding: 0 4px;
  }

  #container #content {
    padding-top: 144px;
  }

  .wrap {
    max-width: 1200px;
    margin: 0 auto;
  }

  .header {
    height: 144px;
  }

  #logo a {
    width: 432px;
    height: 80px;
  }

  .main-menu li a {
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }

  /******************************************
  PAGE SPECIFIC STYLES
  ******************************************/
  /******************************************
  HOME PAGE
  ******************************************/
  body.page-template-page-home .gal-vid-container {
    padding-top: 144px;
  }
  body.page-template-page-home .module.home-features ul {
    max-width: 1564px;
  }
}
@media only screen and (min-width: 1560px) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Super Large Monitor Stylesheet

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

  ******************************************************************/
  #container #content {
    padding-top: 192px;
  }

  .wrap {
    max-width: 1500px;
  }

  .header {
    height: 160px;
  }

  #logo a {
    width: 518.4px;
    height: 96px;
  }

  .main-menu li a {
    height: 96px;
    line-height: 96px;
  }

  .entry-content.has-content-secondary .content-primary {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
  }
  .entry-content.has-content-secondary .content-secondary {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }

  .thumb-list {
    margin-right: -1%;
  }
  .thumb-list .thumb-item {
    margin-right: 1%;
    width: 19%;
    padding-bottom: 19%;
    margin-bottom: 1%;
  }

  /******************************************
  PAGE SPECIFIC STYLES
  ******************************************/
  /******************************************
  HOME PAGE
  ******************************************/
  body.page-template-page-home .home-main-module {
    font-size: 3em;
  }
}
/*********************
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 {
    display: none;
  }
}