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

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

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none; }

small, .small {
  font-size: 75%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

ol,
ul {
  padding: 0;
  list-style-type: none; }

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .cf:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after {
    clear: both; }

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

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

Stylesheet: Variables

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

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/******************************************************************
Stylesheet: Typography
******************************************************************/
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?ylrcxz");
  src: url("../fonts/icomoon.eot?ylrcxz#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?ylrcxz") format("woff"), url("../fonts/icomoon.woff?ylrcxz") format("truetype"), url("../fonts/icomoon.svg?ylrcxz#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: normal;
  font-family: "Gotham A", "Gotham B"; }
  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: 28px;
  line-height: 1.5;
  margin: 10px 0; }

@media only screen and (min-width: 481px) {
  h1, .h1 {
    font-size: 36px;
    line-height: 1.5; } }

@media only screen and (min-width: 768px) {
  h1, .h1 {
    font-size: 42px;
    line-height: 1.5; } }

h2, .h2 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 0.375em; }
  h2.xl, .h2.xl {
    font-size: 31px;
    line-height: 1.78; }

@media only screen and (min-width: 481px) {
  h2, .h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 0.375em; }
    h2.xl, .h2.xl {
      font-size: 31px;
      line-height: 1.78; } }

@media only screen and (min-width: 768px) and (max-width: 768px) {
  h2, .h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 0.375em; }
    h2.xl, .h2.xl {
      font-size: 31px;
      line-height: 1.78; } }

@media only screen and (min-width: 769px) {
  h2, .h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 0.375em; }
    h2.xl, .h2.xl {
      font-size: 31px;
      line-height: 1.78; } }

@media only screen and (min-width: 1030px) {
  h2, .h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 0.375em; }
    h2.xl, .h2.xl {
      font-size: 31px;
      line-height: 1.78; } }

h3, .h3 {
  font-size: 18px;
  line-height: 1.33; }

h4, .h4 {
  font-size: 16px;
  line-height: normal; }

h5, .h5 {
  font-size: 13px;
  line-height: normal; }

p {
  font-size: 13px;
  font-family: "Verdana", Geneva, sans-serif;
  line-height: 1.65;
  margin: 20px 0; }
  p.xl {
    font-size: 15px;
    line-height: 1.75; }

li {
  font-size: 13px;
  font-family: "Verdana", Geneva, sans-serif; }

div.xl p {
  font-size: 15px;
  line-height: 1.75; }

@media only screen and (min-width: 768px) {
  p.xl {
    font-size: 16px;
    line-height: 1.88; }
  div.xl p {
    font-size: 16px;
    line-height: 1.88; } }

@media only screen and (min-width: 992px) {
  p.xl {
    font-size: 18px;
    line-height: 1.88; }
  div.xl p {
    font-size: 18px;
    line-height: 1.88; } }

strong {
  font-weight: bold; }

em {
  font-style: oblique; }

/******************************************************************
	Icons
******************************************************************/
body [class^="icon-"],
body [class*=" icon-"],
body [class^="icon-"]::before,
body [class*=" icon-"]::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-social_email:before {
  content: "\e906"; }

.icon-social_facebook:before {
  content: "\e907"; }

.icon-social_linkedin:before {
  content: "\e908"; }

.icon-social_share:before {
  content: "\e909"; }

.icon-social_twitter:before {
  content: "\e90a"; }

.icon-readmore_plus:before {
  content: "\e90b"; }

.icon-home3:before {
  content: "\e90c"; }

.icon-spinner6:before {
  content: "\e97f"; }

.icon-search:before {
  content: "\e986"; }

.icon-zoom-in:before {
  content: "\e987"; }

.icon-zoom-out:before {
  content: "\e988"; }

.icon-earth:before {
  content: "\e9ca"; }

.icon-link:before {
  content: "\e9cb"; }

.icon-star-full:before {
  content: "\e9d9"; }

.icon-heart:before {
  content: "\e9da"; }

.icon-plus:before {
  content: "\ea0a"; }

.icon-minus:before {
  content: "\ea0b"; }

.icon-cross:before {
  content: "\ea0f"; }

.icon-checkmark:before {
  content: "\ea10"; }

.icon-arrow-right2:before {
  content: "\ea3c"; }

.icon-arrow-left2:before {
  content: "\ea40"; }

.icon-chevron-left:before {
  content: "\e900"; }

.icon-chevron-right:before {
  content: "\e901"; }

.icon-chevron-small-left:before {
  content: "\e902"; }

.icon-chevron-small-right:before {
  content: "\e903"; }

.icon-chevron-thin-left:before {
  content: "\e904"; }

.icon-chevron-thin-right:before {
  content: "\e905"; }

.icon-circle-plus:before {
  content: "\e040"; }

.icon-circle-minus:before {
  content: "\e041"; }

.icon-rss:before {
  content: "\ea9b"; }

/******************************************************************
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
*********************/
/*********************
TRANSFORM
*********************/
/*********************
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? */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes scale {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  75% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes scale {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  75% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=3679ccbe248e81596cd788c09486c0bc)
 * Config saved to config.json and https://gist.github.com/3679ccbe248e81596cd788c09486c0bc
 */
/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.img-responsive,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

[role="button"] {
  cursor: pointer; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

@media (min-width: 768px) {
  .container {
    width: 750px; } }

@media (min-width: 992px) {
  .container {
    width: 970px; } }

@media (min-width: 1200px) {
  .container {
    width: 1170px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

.row {
  margin-left: -15px;
  margin-right: -15px; }

.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: 15px;
  padding-right: 15px; }

.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; }

.col-xs-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

.col-xs-9 {
  width: 75%; }

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

.col-xs-6 {
  width: 50%; }

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

.col-xs-3 {
  width: 25%; }

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-pull-11 {
  right: 91.66666667%; }

.col-xs-pull-10 {
  right: 83.33333333%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-8 {
  right: 66.66666667%; }

.col-xs-pull-7 {
  right: 58.33333333%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-5 {
  right: 41.66666667%; }

.col-xs-pull-4 {
  right: 33.33333333%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-2 {
  right: 16.66666667%; }

.col-xs-pull-1 {
  right: 8.33333333%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-push-11 {
  left: 91.66666667%; }

.col-xs-push-10 {
  left: 83.33333333%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-8 {
  left: 66.66666667%; }

.col-xs-push-7 {
  left: 58.33333333%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-5 {
  left: 41.66666667%; }

.col-xs-push-4 {
  left: 33.33333333%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-2 {
  left: 16.66666667%; }

.col-xs-push-1 {
  left: 8.33333333%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-12 {
  margin-left: 100%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-0 {
  margin-left: 0%; }

@media (min-width: 540px) {
  .col-xsmd-1, .col-xsmd-2, .col-xsmd-3, .col-xsmd-4, .col-xsmd-5, .col-xsmd-6, .col-xsmd-7, .col-xsmd-8, .col-xsmd-9, .col-xsmd-10, .col-xsmd-11, .col-xsmd-12 {
    float: left; }
  .col-xsmd-12 {
    width: 100%; }
  .col-xsmd-11 {
    width: 91.66666667%; }
  .col-xsmd-10 {
    width: 83.33333333%; }
  .col-xsmd-9 {
    width: 75%; }
  .col-xsmd-8 {
    width: 66.66666667%; }
  .col-xsmd-7 {
    width: 58.33333333%; }
  .col-xsmd-6 {
    width: 50%; }
  .col-xsmd-5 {
    width: 41.66666667%; }
  .col-xsmd-4 {
    width: 33.33333333%; }
  .col-xsmd-3 {
    width: 25%; }
  .col-xsmd-2 {
    width: 16.66666667%; }
  .col-xsmd-1 {
    width: 8.33333333%; }
  .col-xsmd-pull-12 {
    right: 100%; }
  .col-xsmd-pull-11 {
    right: 91.66666667%; }
  .col-xsmd-pull-10 {
    right: 83.33333333%; }
  .col-xsmd-pull-9 {
    right: 75%; }
  .col-xsmd-pull-8 {
    right: 66.66666667%; }
  .col-xsmd-pull-7 {
    right: 58.33333333%; }
  .col-xsmd-pull-6 {
    right: 50%; }
  .col-xsmd-pull-5 {
    right: 41.66666667%; }
  .col-xsmd-pull-4 {
    right: 33.33333333%; }
  .col-xsmd-pull-3 {
    right: 25%; }
  .col-xsmd-pull-2 {
    right: 16.66666667%; }
  .col-xsmd-pull-1 {
    right: 8.33333333%; }
  .col-xsmd-pull-0 {
    right: auto; }
  .col-xsmd-push-12 {
    left: 100%; }
  .col-xsmd-push-11 {
    left: 91.66666667%; }
  .col-xsmd-push-10 {
    left: 83.33333333%; }
  .col-xsmd-push-9 {
    left: 75%; }
  .col-xsmd-push-8 {
    left: 66.66666667%; }
  .col-xsmd-push-7 {
    left: 58.33333333%; }
  .col-xsmd-push-6 {
    left: 50%; }
  .col-xsmd-push-5 {
    left: 41.66666667%; }
  .col-xsmd-push-4 {
    left: 33.33333333%; }
  .col-xsmd-push-3 {
    left: 25%; }
  .col-xsmd-push-2 {
    left: 16.66666667%; }
  .col-xsmd-push-1 {
    left: 8.33333333%; }
  .col-xsmd-push-0 {
    left: auto; }
  .col-xsmd-offset-12 {
    margin-left: 100%; }
  .col-xsmd-offset-11 {
    margin-left: 91.66666667%; }
  .col-xsmd-offset-10 {
    margin-left: 83.33333333%; }
  .col-xsmd-offset-9 {
    margin-left: 75%; }
  .col-xsmd-offset-8 {
    margin-left: 66.66666667%; }
  .col-xsmd-offset-7 {
    margin-left: 58.33333333%; }
  .col-xsmd-offset-6 {
    margin-left: 50%; }
  .col-xsmd-offset-5 {
    margin-left: 41.66666667%; }
  .col-xsmd-offset-4 {
    margin-left: 33.33333333%; }
  .col-xsmd-offset-3 {
    margin-left: 25%; }
  .col-xsmd-offset-2 {
    margin-left: 16.66666667%; }
  .col-xsmd-offset-1 {
    margin-left: 8.33333333%; }
  .col-xsmd-offset-0 {
    margin-left: 0%; } }

@media (min-width: 768px) {
  .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; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-11 {
    width: 91.66666667%; }
  .col-sm-10 {
    width: 83.33333333%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-8 {
    width: 66.66666667%; }
  .col-sm-7 {
    width: 58.33333333%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-5 {
    width: 41.66666667%; }
  .col-sm-4 {
    width: 33.33333333%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-2 {
    width: 16.66666667%; }
  .col-sm-1 {
    width: 8.33333333%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-pull-11 {
    right: 91.66666667%; }
  .col-sm-pull-10 {
    right: 83.33333333%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-8 {
    right: 66.66666667%; }
  .col-sm-pull-7 {
    right: 58.33333333%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-5 {
    right: 41.66666667%; }
  .col-sm-pull-4 {
    right: 33.33333333%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-2 {
    right: 16.66666667%; }
  .col-sm-pull-1 {
    right: 8.33333333%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-push-11 {
    left: 91.66666667%; }
  .col-sm-push-10 {
    left: 83.33333333%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-8 {
    left: 66.66666667%; }
  .col-sm-push-7 {
    left: 58.33333333%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-5 {
    left: 41.66666667%; }
  .col-sm-push-4 {
    left: 33.33333333%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-2 {
    left: 16.66666667%; }
  .col-sm-push-1 {
    left: 8.33333333%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-0 {
    margin-left: 0%; } }

@media (min-width: 992px) {
  .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; }
  .col-md-12 {
    width: 100%; }
  .col-md-11 {
    width: 91.66666667%; }
  .col-md-10 {
    width: 83.33333333%; }
  .col-md-9 {
    width: 75%; }
  .col-md-8 {
    width: 66.66666667%; }
  .col-md-7 {
    width: 58.33333333%; }
  .col-md-6 {
    width: 50%; }
  .col-md-5 {
    width: 41.66666667%; }
  .col-md-4 {
    width: 33.33333333%; }
  .col-md-3 {
    width: 25%; }
  .col-md-2 {
    width: 16.66666667%; }
  .col-md-1 {
    width: 8.33333333%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-pull-11 {
    right: 91.66666667%; }
  .col-md-pull-10 {
    right: 83.33333333%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-8 {
    right: 66.66666667%; }
  .col-md-pull-7 {
    right: 58.33333333%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-5 {
    right: 41.66666667%; }
  .col-md-pull-4 {
    right: 33.33333333%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-2 {
    right: 16.66666667%; }
  .col-md-pull-1 {
    right: 8.33333333%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-push-11 {
    left: 91.66666667%; }
  .col-md-push-10 {
    left: 83.33333333%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-8 {
    left: 66.66666667%; }
  .col-md-push-7 {
    left: 58.33333333%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-5 {
    left: 41.66666667%; }
  .col-md-push-4 {
    left: 33.33333333%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-2 {
    left: 16.66666667%; }
  .col-md-push-1 {
    left: 8.33333333%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-0 {
    margin-left: 0%; } }

@media (min-width: 1200px) {
  .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; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-11 {
    width: 91.66666667%; }
  .col-lg-10 {
    width: 83.33333333%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-8 {
    width: 66.66666667%; }
  .col-lg-7 {
    width: 58.33333333%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-5 {
    width: 41.66666667%; }
  .col-lg-4 {
    width: 33.33333333%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-2 {
    width: 16.66666667%; }
  .col-lg-1 {
    width: 8.33333333%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-pull-11 {
    right: 91.66666667%; }
  .col-lg-pull-10 {
    right: 83.33333333%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-8 {
    right: 66.66666667%; }
  .col-lg-pull-7 {
    right: 58.33333333%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-5 {
    right: 41.66666667%; }
  .col-lg-pull-4 {
    right: 33.33333333%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-2 {
    right: 16.66666667%; }
  .col-lg-pull-1 {
    right: 8.33333333%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-push-11 {
    left: 91.66666667%; }
  .col-lg-push-10 {
    left: 83.33333333%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-8 {
    left: 66.66666667%; }
  .col-lg-push-7 {
    left: 58.33333333%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-5 {
    left: 41.66666667%; }
  .col-lg-push-4 {
    left: 33.33333333%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-2 {
    left: 16.66666667%; }
  .col-lg-push-1 {
    left: 8.33333333%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-0 {
    margin-left: 0%; } }

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }

.fade.in {
  opacity: 1; }

.collapse {
  display: none; }

.collapse.in {
  display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease; }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0); }

.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90); }

.tooltip.top {
  margin-top: -3px;
  padding: 5px 0; }

.tooltip.right {
  margin-left: 3px;
  padding: 0 5px; }

.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0; }

.tooltip.left {
  margin-left: -3px;
  padding: 0 5px; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
  border-radius: 4px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000; }

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000; }

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000; }

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000000; }

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000000; }

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000; }

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000; }

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }

.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left; }

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1; }

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px; }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0; }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0; }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0; } }

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block; }

.carousel-inner > .active {
  left: 0; }

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%; }

.carousel-inner > .next {
  left: 100%; }

.carousel-inner > .prev {
  left: -100%; }

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0; }

.carousel-inner > .active.left {
  left: -100%; }

.carousel-inner > .active.right {
  left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0); }

.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }

.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }

.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90); }

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block; }

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px; }

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px; }

.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif; }

.carousel-control .icon-prev:before {
  content: '\2039'; }

.carousel-control .icon-next:before {
  content: '\203a'; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0); }

.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #ffffff; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }

.carousel-caption .btn {
  text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.tab-section .nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }

.tab-section .nav > li {
  position: relative;
  display: block; }

.tab-section .nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px; }

.tab-section .nav > li > a:hover,
.tab-section .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee; }

.tab-section .nav > li.disabled > a {
  color: #777777; }

.tab-section .nav > li.disabled > a:hover,
.tab-section .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed; }

.tab-section .nav .open > a,
.tab-section .nav .open > a:hover,
.tab-section .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7; }

.tab-section .nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.tab-section .nav > li > a > img {
  max-width: none; }

.tab-section .nav-tabs {
  border-bottom: 1px solid #dddddd; }

.tab-section .nav-tabs > li {
  float: left;
  margin-bottom: -1px; }

.tab-section .nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0; }

.tab-section .nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd; }

.tab-section .nav-tabs > li.active > a,
.tab-section .nav-tabs > li.active > a:hover,
.tab-section .nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
  cursor: default; }

.tab-section .nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0; }

.tab-section .nav-tabs.nav-justified > li {
  float: none; }

.tab-section .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px; }

.tab-section .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

@media (min-width: 768px) {
  .tab-section .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%; }
  .tab-section .nav-tabs.nav-justified > li > a {
    margin-bottom: 0; } }

.tab-section .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px; }

.tab-section .nav-tabs.nav-justified > .active > a,
.tab-section .nav-tabs.nav-justified > .active > a:hover,
.tab-section .nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd; }

@media (min-width: 768px) {
  .tab-section .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0; }
  .tab-section .nav-tabs.nav-justified > .active > a,
  .tab-section .nav-tabs.nav-justified > .active > a:hover,
  .tab-section .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #ffffff; } }

.tab-section .nav-pills > li {
  float: left; }

.tab-section .nav-pills > li > a {
  border-radius: 4px; }

.tab-section .nav-pills > li + li {
  margin-left: 2px; }

.tab-section .nav-pills > li.active > a,
.tab-section .nav-pills > li.active > a:hover,
.tab-section .nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #337ab7; }

.tab-section .nav-stacked > li {
  float: none; }

.tab-section .nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0; }

.tab-section .nav-justified {
  width: 100%; }

.tab-section .nav-justified > li {
  float: none; }

.tab-section .nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px; }

.tab-section .nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

@media (min-width: 768px) {
  .tab-section .nav-justified > li {
    display: table-cell;
    width: 1%; }
  .tab-section .nav-justified > li > a {
    margin-bottom: 0; } }

.tab-section .nav-tabs-justified {
  border-bottom: 0; }

.tab-section .nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px; }

.tab-section .nav-tabs-justified > .active > a,
.tab-section .nav-tabs-justified > .active > a:hover,
.tab-section .nav-tabs-justified > .active > a:focus {
  border: 1px solid #dddddd; }

@media (min-width: 768px) {
  .tab-section .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0; }
  .tab-section .nav-tabs-justified > .active > a,
  .tab-section .nav-tabs-justified > .active > a:hover,
  .tab-section .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #ffffff; } }

.tab-section .tab-content > .tab-pane {
  display: none; }

.tab-section .tab-content > .active {
  display: block; }

.tab-section .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.tab-section .navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }

@media (min-width: 768px) {
  .tab-section .navbar {
    border-radius: 4px; } }

@media (min-width: 768px) {
  .tab-section .navbar-header {
    float: left; } }

.tab-section .navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }

.tab-section .navbar-collapse.in {
  overflow-y: auto; }

@media (min-width: 768px) {
  .tab-section .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .tab-section .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important; }
  .tab-section .navbar-collapse.in {
    overflow-y: visible; }
  .tab-section .navbar-fixed-top .navbar-collapse,
  .tab-section .navbar-static-top .navbar-collapse,
  .tab-section .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0; } }

.tab-section .navbar-fixed-top .navbar-collapse,
.tab-section .navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }

@media (max-device-width: 480px) and (orientation: landscape) {
  .tab-section .navbar-fixed-top .navbar-collapse,
  .tab-section .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px; } }

.tab-section .container > .navbar-header,
.tab-section .container-fluid > .navbar-header,
.tab-section .container > .navbar-collapse,
.tab-section .container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }

@media (min-width: 768px) {
  .tab-section .container > .navbar-header,
  .tab-section .container-fluid > .navbar-header,
  .tab-section .container > .navbar-collapse,
  .tab-section .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0; } }

.tab-section .navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }

@media (min-width: 768px) {
  .tab-section .navbar-static-top {
    border-radius: 0; } }

.tab-section .navbar-fixed-top,
.tab-section .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }

@media (min-width: 768px) {
  .tab-section .navbar-fixed-top,
  .tab-section .navbar-fixed-bottom {
    border-radius: 0; } }

.tab-section .navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.tab-section .navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.tab-section .navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px; }

.tab-section .navbar-brand:hover,
.tab-section .navbar-brand:focus {
  text-decoration: none; }

.tab-section .navbar-brand > img {
  display: block; }

@media (min-width: 768px) {
  .tab-section .navbar > .container .navbar-brand,
  .tab-section .navbar > .container-fluid .navbar-brand {
    margin-left: -15px; } }

.tab-section .navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }

.tab-section .navbar-toggle:focus {
  outline: 0; }

.tab-section .navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px; }

.tab-section .navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px; }

@media (min-width: 768px) {
  .tab-section .navbar-toggle {
    display: none; } }

.tab-section .navbar-nav {
  margin: 7.5px -15px; }

.tab-section .navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px; }

@media (max-width: 767px) {
  .tab-section .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .tab-section .navbar-nav .open .dropdown-menu > li > a,
  .tab-section .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px; }
  .tab-section .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px; }
  .tab-section .navbar-nav .open .dropdown-menu > li > a:hover,
  .tab-section .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none; } }

@media (min-width: 768px) {
  .tab-section .navbar-nav {
    float: left;
    margin: 0; }
  .tab-section .navbar-nav > li {
    float: left; }
  .tab-section .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px; } }

.tab-section .navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px; }

@media (min-width: 768px) {
  .tab-section .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .tab-section .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .tab-section .navbar-form .form-control-static {
    display: inline-block; }
  .tab-section .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle; }
  .tab-section .navbar-form .input-group .input-group-addon,
  .tab-section .navbar-form .input-group .input-group-btn,
  .tab-section .navbar-form .input-group .form-control {
    width: auto; }
  .tab-section .navbar-form .input-group > .form-control {
    width: 100%; }
  .tab-section .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .tab-section .navbar-form .radio,
  .tab-section .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .tab-section .navbar-form .radio label,
  .tab-section .navbar-form .checkbox label {
    padding-left: 0; }
  .tab-section .navbar-form .radio input[type="radio"],
  .tab-section .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .tab-section .navbar-form .has-feedback .form-control-feedback {
    top: 0; } }

@media (max-width: 767px) {
  .tab-section .navbar-form .form-group {
    margin-bottom: 5px; }
  .tab-section .navbar-form .form-group:last-child {
    margin-bottom: 0; } }

@media (min-width: 768px) {
  .tab-section .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none; } }

.tab-section .navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.tab-section .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.tab-section .navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px; }

.tab-section .navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px; }

.tab-section .navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px; }

.tab-section .navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }

@media (min-width: 768px) {
  .tab-section .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px; } }

@media (min-width: 768px) {
  .tab-section .navbar-left {
    float: left !important; }
  .tab-section .navbar-right {
    float: right !important;
    margin-right: -15px; }
  .tab-section .navbar-right ~ .navbar-right {
    margin-right: 0; } }

.tab-section .navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }

.tab-section .navbar-default .navbar-brand {
  color: #777777; }

.tab-section .navbar-default .navbar-brand:hover,
.tab-section .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent; }

.tab-section .navbar-default .navbar-text {
  color: #777777; }

.tab-section .navbar-default .navbar-nav > li > a {
  color: #777777; }

.tab-section .navbar-default .navbar-nav > li > a:hover,
.tab-section .navbar-default .navbar-nav > li > a:focus {
  color: #333333;
  background-color: transparent; }

.tab-section .navbar-default .navbar-nav > .active > a,
.tab-section .navbar-default .navbar-nav > .active > a:hover,
.tab-section .navbar-default .navbar-nav > .active > a:focus {
  color: #555555;
  background-color: #e7e7e7; }

.tab-section .navbar-default .navbar-nav > .disabled > a,
.tab-section .navbar-default .navbar-nav > .disabled > a:hover,
.tab-section .navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent; }

.tab-section .navbar-default .navbar-toggle {
  border-color: #dddddd; }

.tab-section .navbar-default .navbar-toggle:hover,
.tab-section .navbar-default .navbar-toggle:focus {
  background-color: #dddddd; }

.tab-section .navbar-default .navbar-toggle .icon-bar {
  background-color: #888888; }

.tab-section .navbar-default .navbar-collapse,
.tab-section .navbar-default .navbar-form {
  border-color: #e7e7e7; }

.tab-section .navbar-default .navbar-nav > .open > a,
.tab-section .navbar-default .navbar-nav > .open > a:hover,
.tab-section .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555555; }

@media (max-width: 767px) {
  .tab-section .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777777; }
  .tab-section .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .tab-section .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333333;
    background-color: transparent; }
  .tab-section .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .tab-section .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .tab-section .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555555;
    background-color: #e7e7e7; }
  .tab-section .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .tab-section .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .tab-section .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent; } }

.tab-section .navbar-default .navbar-link {
  color: #777777; }

.tab-section .navbar-default .navbar-link:hover {
  color: #333333; }

.tab-section .navbar-default .btn-link {
  color: #777777; }

.tab-section .navbar-default .btn-link:hover,
.tab-section .navbar-default .btn-link:focus {
  color: #333333; }

.tab-section .navbar-default .btn-link[disabled]:hover,
.tab-section fieldset[disabled] .navbar-default .btn-link:hover,
.tab-section .navbar-default .btn-link[disabled]:focus,
.tab-section fieldset[disabled] .navbar-default .btn-link:focus {
  color: #cccccc; }

.tab-section .navbar-inverse {
  background-color: #222222;
  border-color: #080808; }

.tab-section .navbar-inverse .navbar-brand {
  color: #9d9d9d; }

.tab-section .navbar-inverse .navbar-brand:hover,
.tab-section .navbar-inverse .navbar-brand:focus {
  color: #ffffff;
  background-color: transparent; }

.tab-section .navbar-inverse .navbar-text {
  color: #9d9d9d; }

.tab-section .navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d; }

.tab-section .navbar-inverse .navbar-nav > li > a:hover,
.tab-section .navbar-inverse .navbar-nav > li > a:focus {
  color: #ffffff;
  background-color: transparent; }

.tab-section .navbar-inverse .navbar-nav > .active > a,
.tab-section .navbar-inverse .navbar-nav > .active > a:hover,
.tab-section .navbar-inverse .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #080808; }

.tab-section .navbar-inverse .navbar-nav > .disabled > a,
.tab-section .navbar-inverse .navbar-nav > .disabled > a:hover,
.tab-section .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444444;
  background-color: transparent; }

.tab-section .navbar-inverse .navbar-toggle {
  border-color: #333333; }

.tab-section .navbar-inverse .navbar-toggle:hover,
.tab-section .navbar-inverse .navbar-toggle:focus {
  background-color: #333333; }

.tab-section .navbar-inverse .navbar-toggle .icon-bar {
  background-color: #ffffff; }

.tab-section .navbar-inverse .navbar-collapse,
.tab-section .navbar-inverse .navbar-form {
  border-color: #101010; }

.tab-section .navbar-inverse .navbar-nav > .open > a,
.tab-section .navbar-inverse .navbar-nav > .open > a:hover,
.tab-section .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #ffffff; }

@media (max-width: 767px) {
  .tab-section .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808; }
  .tab-section .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808; }
  .tab-section .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d; }
  .tab-section .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .tab-section .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
    background-color: transparent; }
  .tab-section .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .tab-section .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .tab-section .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #080808; }
  .tab-section .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .tab-section .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .tab-section .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444444;
    background-color: transparent; } }

.tab-section .navbar-inverse .navbar-link {
  color: #9d9d9d; }

.tab-section .navbar-inverse .navbar-link:hover {
  color: #ffffff; }

.tab-section .navbar-inverse .btn-link {
  color: #9d9d9d; }

.tab-section .navbar-inverse .btn-link:hover,
.tab-section .navbar-inverse .btn-link:focus {
  color: #ffffff; }

.tab-section .navbar-inverse .btn-link[disabled]:hover,
.tab-section fieldset[disabled] .navbar-inverse .btn-link:hover,
.tab-section .navbar-inverse .btn-link[disabled]:focus,
.tab-section fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444444; }

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table; }

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

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

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

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

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

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@-ms-viewport {
  width: device-width; }

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }

@media print {
  .visible-print-block {
    display: block !important; } }

.visible-print-inline {
  display: none !important; }

@media print {
  .visible-print-inline {
    display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }

@media print {
  .visible-print-inline-block {
    display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

#newsletter_popup:not(.featherlight-inner) {
  display: none; }

#newsletter_popup.featherlight-inner p.xl {
  padding: 0 40px 40px; }

#newsletter_popup.featherlight-inner form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto; }
  #newsletter_popup.featherlight-inner form input[type="text"],
  #newsletter_popup.featherlight-inner form input[type="email"] {
    margin: 0;
    display: block;
    width: 100%;
    padding: 8px 0;
    border: 1px solid #ABB0B2;
    border-radius: 3px;
    text-indent: 10px;
    width: 100%; }
  #newsletter_popup.featherlight-inner form .gform_fields li {
    padding-right: 0; }
  #newsletter_popup.featherlight-inner form .mc-field-group {
    padding-bottom: 15px; }
  #newsletter_popup.featherlight-inner form input[type="submit"] {
    border: 1px solid #425163;
    color: #425163;
    background-color: #fff;
    margin: 0; }
    #newsletter_popup.featherlight-inner form input[type="submit"]:hover, #newsletter_popup.featherlight-inner form input[type="submit"]:focus {
      background-color: #425163;
      color: #fff; }
  #newsletter_popup.featherlight-inner form .validation_error {
    color: #e85c41;
    border-top-color: #e85c41;
    border-bottom-color: #e85c41; }
  #newsletter_popup.featherlight-inner form .gform_footer {
    text-align: center; }
  #newsletter_popup.featherlight-inner form span > label {
    display: none; }
  #newsletter_popup.featherlight-inner form label {
    font-family: "Verdana", Geneva, sans-serif;
    font-size: 16px;
    font-weight: 400; }
  #newsletter_popup.featherlight-inner form .gfield_required,
  #newsletter_popup.featherlight-inner form .gfield_error .gfield_label,
  #newsletter_popup.featherlight-inner form .gfield_description.validation_message {
    color: #e85c41; }

#newsletter_popup.featherlight-inner .twitter-link {
  text-align: center; }
  #newsletter_popup.featherlight-inner .twitter-link a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
    background-color: #415164;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px; }
    #newsletter_popup.featherlight-inner .twitter-link a span {
      display: block;
      font-size: 20px;
      line-height: 26px; }
      #newsletter_popup.featherlight-inner .twitter-link a span.icon {
        color: #fff;
        font-size: 26px; }
      #newsletter_popup.featherlight-inner .twitter-link a span.handle {
        color: #fff;
        margin-left: 10px; }
    #newsletter_popup.featherlight-inner .twitter-link a:hover, #newsletter_popup.featherlight-inner .twitter-link a:focus {
      -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
      transform: translateY(-2px); }

.lightbox-restricted {
  max-width: 800px; }

.social-share-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }
  .social-share-wrap ul li {
    display: block;
    margin-right: 20px; }
    .social-share-wrap ul li a {
      text-decoration: none; }
      .social-share-wrap ul li a span {
        font-size: 40px; }
      .social-share-wrap ul li a.share-link-twitter {
        color: #00aced; }
      .social-share-wrap ul li a.share-link-linkedin {
        color: #007bb6; }
    .social-share-wrap ul li:last-of-type {
      margin-right: 0; }

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

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

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "Verdana", Geneva, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  -o-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out; }
  .blue-btn:hover, .blue-btn:focus {
    color: #fff;
    text-decoration: none;
    outline: none; }
  .blue-btn:active {
    top: 1px; }

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn {
  background-color: #1b6bab; }
  .blue-btn:hover, .blue-btn:focus {
    background-color: #186099; }
  .blue-btn:active {
    background-color: #185d95; }

/******************************************************************
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
*********************/
button:focus {
  outline: 0; }

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 {
  width: 100%;
  background: transparent;
  font-size: 16px;
  color: #415164;
  border: 1px solid #e6e7e8;
  padding: 12px 10px 15px 50px;
  margin: 20px 0 40px;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color 0.24s ease-in-out;
  -o-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    background-color: #f7f7f7;
    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; }

.searchform {
  position: relative;
  width: 100%; }
  .searchform > div {
    margin: 20px 0 40px;
    position: relative; }
    .searchform > div span {
      position: absolute;
      left: 20px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
  .searchform #s {
    margin: 0; }
  .searchform #searchsubmit {
    background: transparent;
    border: none;
    color: #415164;
    font-family: "Gotham A", "Gotham B";
    font-weight: bold;
    position: absolute;
    text-indent: -10px;
    top: 0;
    right: 0px;
    padding: 24px 20px; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #415164;
  font-size: 13px;
  font-family: "Verdana", Geneva, sans-serif; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #415164;
  font-size: 13px;
  font-family: "Verdana", Geneva, sans-serif; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #415164;
  font-size: 13px;
  font-family: "Verdana", Geneva, sans-serif; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #415164;
  font-size: 13px;
  font-family: "Verdana", Geneva, sans-serif; }

@media only screen and (max-width: 480px) {
  ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff; }
  ::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff; }
  :-ms-input-placeholder {
    /* IE 10+ */
    color: #fff; }
  :-moz-placeholder {
    /* Firefox 18- */
    display: none; } }

.signup-form-wrap {
  max-width: 480px;
  margin: 20px auto; }

#mc_embed_signup .button {
  background-color: transparent !important;
  border: 2px solid #415164 !important;
  border-radius: 0 !important;
  color: #415164 !important;
  font-size: 11px !important;
  font-weight: bold !important;
  height: 45px !important;
  line-height: 45px !important;
  margin: 10px 10px 10px 0 !important;
  padding: 0 40px !important;
  font-family: "Gotham A", "Gotham B" !important; }
  #mc_embed_signup .button:hover {
    background-color: #415164 !important;
    color: white !important; }

#mc_embed_signup .mc-field-group input {
  margin: 0 !important;
  text-indent: 10px !important; }

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  margin: 2px 0 .25em 0 !important; }

.signup-form p.xl {
  padding: 0;
  text-align: center;
  margin: 50px 0 0; }

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************

Stylesheet: Base Mobile Stylesheet

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: "Verdana", Geneva, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #231f20;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.browsehappy {
  background: #d91f27;
  margin: 0;
  text-align: center;
  padding: 20px;
  color: white;
  display: none; }
  .browsehappy a, .browsehappy a:visited {
    color: white;
    font-weight: bold;
    text-decoration: underline; }

.content-wrap {
  opacity: 1;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease; }
  .content-wrap.fade {
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease; }

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

hr {
  width: 100%; }

.white {
  color: #fff; }

.blue {
  color: #1b6bab; }

.dark-blue {
  color: #415164; }

.teal {
  color: #3bbebe; }

.red {
  color: #e5552e; }

.orange {
  color: #eaa122; }

.blue-bg {
  background-color: #1b6bab;
  color: #fff; }

.dark-blue-bg {
  background-color: #415164;
  color: #fff; }

.teal-bg {
  background-color: #3bbebe;
  color: #fff; }

.red-bg {
  background-color: #e5552e;
  color: #fff; }

.orange-bg {
  background-color: #eaa122;
  color: #fff; }

.button {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 40px;
  font-weight: bold;
  font-family: "Gotham A", "Gotham B";
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent; }
  .button.button-outline {
    border: 2px solid; }
  .button.blue {
    color: #1b6bab; }
    .button.blue:hover {
      background: #1b6bab;
      color: #fff;
      border: 2px solid #1b6bab; }
  .button.dark-blue {
    color: #415164; }
    .button.dark-blue:hover {
      background: #415164;
      color: #fff;
      border: 2px solid #415164; }
  .button.red {
    color: #e5552e; }
    .button.red:hover {
      background: #e5552e;
      color: #fff;
      border: 2px solid #e5552e; }
  .button.orange {
    color: #eaa122; }
    .button.orange:hover {
      background: #eaa122;
      color: #fff;
      border: 2px solid #eaa122; }
  .button.teal {
    color: #3bbebe; }
    .button.teal:hover {
      background: #3bbebe;
      color: #fff;
      border: 2px solid #3bbebe; }
  .button.white {
    color: #fff; }
    .button.white:hover {
      background: #fff;
      color: #1b6bab;
      border: 2px solid #fff; }

.top-spacer {
  margin-top: 65px; }

.top-bump {
  margin-top: 28px; }

.bottom-spacer {
  margin-bottom: 60px; }

.bottom-bump {
  margin-bottom: 12px; }

.flex-center {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.seperator {
  height: 40px; }
  .seperator div {
    height: 1px;
    background: #585858;
    width: 100%; }
  .seperator img {
    position: absolute;
    top: 0;
    left: 50%;
    background: #fff;
    padding: 0 10px;
    -moz-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%); }

.half-color {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: .9; }

.half-color-content h1 {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.333;
  margin-bottom: 0; }

.half-color-content p {
  color: #fff;
  font-size: 10px; }
  .half-color-content p.byline {
    margin: 0; }

.half-color-content .button-outline {
  padding: 10px 20px;
  margin-top: 15px; }

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #e5552e;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  /* on hover */
  /* on click */ }
  a:hover, a:focus, a:visited:hover, a:visited:focus {
    color: #ea7657;
    outline: none; }

/*********************
	DROPDOWN STYLES
*********************/
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  top: 50%;
  right: 3px;
  position: absolute;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #ffffff;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-top: 1px solid white;
  border-radius: 2px;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; }

.dropdown-menu.pull-right {
  right: 0;
  left: auto; }

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.dropdown-menu > li {
  width: 100%; }

.dropdown-menu > li > a {
  display: block;
  padding: 10px 20px;
  clear: both;
  font-weight: bold;
  font-family: "Gotham A", "Gotham B";
  line-height: 1.42857143;
  color: #333333;
  text-decoration: none;
  width: 100%; }

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7; }

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777; }

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  left: auto;
  right: 0; }

.dropdown-menu-left {
  left: 0;
  right: auto; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: ""; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

/*********************
HEADER STYLES
*********************/
.header {
  background-color: #fff;
  padding: 25px 0; }
  .header .container {
    height: 100%; }
    .header .container .row {
      height: 100%; }
      .header .container .row .logo-wrap {
        height: 100%; }
        .header .container .row .logo-wrap a.logo {
          height: 100%;
          max-width: 235px;
          display: block; }
        .header .container .row .logo-wrap a.mobile-menu-btn {
          display: block;
          border: 8px solid #415164;
          background: #415164;
          top: 19px;
          right: 15px;
          width: 38px;
          height: 36px;
          position: fixed;
          z-index: 99999;
          margin: 0 auto;
          -webkit-transform: rotate(0deg);
          -moz-transform: rotate(0deg);
          -o-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
          transform: rotate(0deg);
          -webkit-transition: .5s ease-in-out;
          -moz-transition: .5s ease-in-out;
          -o-transition: .5s ease-in-out;
          transition: .5s ease-in-out;
          cursor: pointer; }
          .header .container .row .logo-wrap a.mobile-menu-btn span {
            display: block;
            position: absolute;
            height: 2px;
            width: 50%;
            background: #fff;
            opacity: 1;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .25s ease-in-out;
            -moz-transition: .25s ease-in-out;
            -o-transition: .25s ease-in-out;
            transition: .25s ease-in-out; }
            .header .container .row .logo-wrap a.mobile-menu-btn span:nth-child(even) {
              left: 50%;
              border-radius: 0; }
            .header .container .row .logo-wrap a.mobile-menu-btn span:nth-child(odd) {
              left: 0px;
              border-radius: 0; }
            .header .container .row .logo-wrap a.mobile-menu-btn span:nth-child(1), .header .container .row .logo-wrap a.mobile-menu-btn span:nth-child(2) {
              top: 1px; }
            .header .container .row .logo-wrap a.mobile-menu-btn span:nth-child(3), .header .container .row .logo-wrap a.mobile-menu-btn span:nth-child(4) {
              top: 9px; }
            .header .container .row .logo-wrap a.mobile-menu-btn span:nth-child(5), .header .container .row .logo-wrap a.mobile-menu-btn span:nth-child(6) {
              top: 17px; }
          .header .container .row .logo-wrap a.mobile-menu-btn.collapsed span:nth-child(1), .header .container .row .logo-wrap a.mobile-menu-btn.collapsed span:nth-child(6) {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
          .header .container .row .logo-wrap a.mobile-menu-btn.collapsed span:nth-child(2), .header .container .row .logo-wrap a.mobile-menu-btn.collapsed span:nth-child(5) {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }
          .header .container .row .logo-wrap a.mobile-menu-btn.collapsed span:nth-child(1) {
            left: 0;
            top: 6px; }
          .header .container .row .logo-wrap a.mobile-menu-btn.collapsed span:nth-child(2) {
            left: calc(50% - 3px);
            top: 6px; }
          .header .container .row .logo-wrap a.mobile-menu-btn.collapsed span:nth-child(3) {
            left: -50%;
            opacity: 0; }
          .header .container .row .logo-wrap a.mobile-menu-btn.collapsed span:nth-child(4) {
            left: 100%;
            opacity: 0; }
          .header .container .row .logo-wrap a.mobile-menu-btn.collapsed span:nth-child(5) {
            left: 0;
            top: 14px; }
          .header .container .row .logo-wrap a.mobile-menu-btn.collapsed span:nth-child(6) {
            left: calc(50% - 3px);
            top: 14px; }
      .header .container .row .nav-main {
        height: 100%;
        opacity: 1;
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        padding: 65px 0 0;
        background-image: url("../images/logo_white.png");
        background-repeat: no-repeat;
        background-position: 15px 25px;
        background-size: 235px auto;
        background-color: #415164;
        width: 100%;
        overflow: hidden;
        z-index: 9999;
        -webkit-transition: opacity .3s ease-in-out;
        -o-transition: opacity .3s ease-in-out;
        transition: opacity .3s ease-in-out; }
        .header .container .row .nav-main.collapsed {
          z-index: -1;
          opacity: 0; }
        .header .container .row .nav-main nav {
          height: 100%;
          overflow-y: scroll; }

/*********************
NAVIGATION STYLES
*********************/
.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */ }
  .nav li {
    border-bottom: 1px solid #556a83; }
    .nav li a {
      display: block;
      color: #fff;
      font-size: 16px;
      text-decoration: none;
      padding: 20px 10px 20px 25px; }
      .nav li a:hover {
        color: #e5552e; }
    .nav li ul.sub-menu li a,
    .nav li ul.children li a {
      padding-left: 30px; }
  .nav li.current-menu-item a,
  .nav li.current_page_item a,
  .nav li.current_page_ancestor a {
    font-weight: 700; }

/* end .nav */
.single-employees .nav li#menu-item-31 a, .single-post .nav li#menu-item-30 a, .archive .nav li#menu-item-30 a, .single-impact .nav li#menu-item-32 a, .single-sample_work .nav li#menu-item-32 a {
  font-weight: 700; }

/*********************
POSTS & CONTENT STYLES
*********************/
.page-hero {
  background-size: cover;
  background-position: center;
  background-color: #f1f2f2;
  background-repeat: no-repeat;
  height: 300px;
  width: 100%;
  position: relative; }
  .page-hero .container {
    height: 100%; }
    .page-hero .container .row {
      height: 100%; }
      .page-hero .container .row [class*="col-"] {
        height: 100%; }

.page-content {
  padding-top: 38px;
  padding-bottom: 40px; }

.entry-content ul, .post-content ul {
  padding-left: 8px; }
  .entry-content ul li, .post-content ul li {
    list-style: disc;
    padding-left: 0;
    text-indent: 0;
    margin: 5px 0 5px 10px; }

.alignnone {
  margin: 5px 20px 20px 0; }

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto; }

.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

a img.alignnone {
  margin: 5px 20px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center; }

.wp-caption.alignnone {
  margin: 5px 20px 20px 0; }

.wp-caption.alignleft {
  margin: 5px 20px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 20px; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto; }

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }

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

/******************************************************************
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 #ccc; }
  .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: #1b6bab; }
    .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
      background-color: #1b6bab;
      color: #fff; }
  .pagination .current {
    cursor: default;
    color: #231f20; }
    .pagination .current:hover, .pagination .current:focus {
      background-color: #fff;
      color: #231f20; }

/* 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 */
/*********************
SIDEBARS & ASIDES
*********************/
.widgettitle {
  margin-top: -4px;
  font-size: 24px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  color: #415164; }

.jaw_widget li:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

.jaw_widget li.expanded:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.jaw_widget li a {
  font-size: 14px;
  padding: 8px 5px;
  display: inline-block;
  color: #415164;
  text-decoration: none;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease; }
  .jaw_widget li a:hover, .jaw_widget li a:focus {
    color: #5f7792; }

.jaw_widget li ul {
  margin: 0;
  background: #f9f9f9; }
  .jaw_widget li ul li {
    border-bottom: 1px solid #f1f1f1;
    padding-left: 10px; }
    .jaw_widget li ul li:before {
      content: " "; }

.widget {
  margin-bottom: 40px; }
  .widget ul li {
    /* deep nesting */ }
    .widget ul li a {
      text-decoration: none;
      padding: 5px;
      display: inline-block; }

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

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #415164;
  color: #fff;
  padding-top: 20px; }
  .footer .footer-links ul.nav li {
    border: none; }
    .footer .footer-links ul.nav li a {
      font-weight: 700;
      font-size: 13px;
      padding: 12px 0;
      color: #fff; }
  .footer .footer-logo {
    margin-top: 5px;
    padding-left: 15px; }
  .footer .footer-locations {
    margin-top: 60px;
    padding-left: 15px; }
    .footer .footer-locations h4 {
      font-family: "Verdana", Geneva, sans-serif;
      font-weight: 700;
      font-size: 13px; }
    .footer .footer-locations ul li {
      float: left;
      width: 50%; }
      .footer .footer-locations ul li a {
        text-decoration: none;
        color: #fff;
        padding: 5px 0;
        display: inline-block; }
  .footer .footer-social {
    display: block;
    width: 75%;
    float: right;
    position: relative;
    padding-left: 15px;
    margin-top: -44px; }
    .footer .footer-social li {
      float: left;
      display: inline-block;
      padding: 7px; }
      .footer .footer-social li a {
        color: #fff;
        text-decoration: none;
        font-size: 32px; }
        .footer .footer-social li a span {
          display: block;
          -webkit-font-smoothing: antialiased;
          -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
          transform: translateY(0);
          -webkit-transition: all .1s ease-in-out;
          -o-transition: all .1s ease-in-out;
          transition: all .1s ease-in-out; }
        .footer .footer-social li a:hover span {
          -webkit-transform: translateY(-3px);
          -ms-transform: translateY(-3px);
          transform: translateY(-3px); }
      .footer .footer-social li:nth-child(4) a {
        position: relative;
        top: -5px; }
      .footer .footer-social li:nth-child(4) span:before {
        font-size: 24px; }
  .footer .copyright {
    font-size: 11px; }

.error404 .page-content {
  background: #f1f2f2; }

.error404 .article-header h1 {
  font-size: 200px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  display: inline-block;
  color: #1b6bab; }

.error404 .article-header h2 {
  font-size: 40px;
  margin: 0; }

.error404 .article-header span {
  background: url("../images/2work_venn3.png") no-repeat center transparent;
  display: inline-block;
  width: 151px;
  height: 151px;
  position: relative;
  top: 2px; }

/******************************************************************
  Home Page Base Styles
******************************************************************/
.home .home-hero div {
  height: 100%; }

.home .home-hero h1 {
  font-weight: bold;
  color: #fff;
  line-height: 0.75;
  font-size: 36px; }
  .home .home-hero h1 span {
    display: block;
    padding: 10px 0px 5px; }

.home .home-content .entry-content {
  padding: 60px 20px; }
  .home .home-content .entry-content p {
    font-size: 20px; }
  .home .home-content .entry-content .button {
    margin-top: 40px;
    margin-bottom: 28px; }

.home .home-work {
  margin: 64px 0 60px; }
  .home .home-work .home-services {
    text-align: center;
    margin: 20px 0 60px; }
  .home .home-work .button {
    margin-bottom: 90px; }

.home .home-team .home-grid {
  margin: 60px 0; }
  .home .home-team .home-grid .team-member {
    margin-bottom: 40px; }
    .home .home-team .home-grid .team-member a {
      display: block;
      padding: 0 40px; }
    .home .home-team .home-grid .team-member .team-photo {
      border-radius: 100%;
      overflow: hidden; }
      .home .home-team .home-grid .team-member .team-photo img {
        display: block; }

.home .home-blog {
  margin-top: 70px; }
  .home .home-blog .half-color-content p:not(.byline) {
    margin-bottom: 15px; }
  .home .home-blog .half-color-content .button {
    margin: auto;
    display: inline-block;
    width: 100%;
    text-align: center; }

.home .home-blog-sub {
  background: #f1f2f2;
  padding: 30px 0;
  margin-bottom: 60px; }
  .home .home-blog-sub a:not(.button), .home .home-blog-sub a:not(.button):hover, .home .home-blog-sub a:not(.button):focus {
    color: #231f20; }
  .home .home-blog-sub article {
    background: #fff;
    padding: 20px;
    height: 220px;
    margin-bottom: 30px; }
    .home .home-blog-sub article .hbs-content {
      width: 100%;
      float: left;
      height: 100%;
      padding-right: 20px; }
    .home .home-blog-sub article .hbs-image {
      display: none;
      background-size: cover;
      background-position: center;
      float: right;
      width: 32%;
      height: 100%; }
    .home .home-blog-sub article:after {
      content: " ";
      clear: both;
      display: table; }
  .home .home-blog-sub .button {
    margin: 40px 0 60px; }

.home .home-contact {
  margin: 70px 0 92px; }
  .home .home-contact p {
    padding: 0 40px 40px; }

.page-template-about-page .about-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .page-template-about-page .about-hero h1 {
    color: #fff;
    position: relative;
    text-indent: 0;
    text-align: center;
    width: 100%; }
    .page-template-about-page .about-hero h1 .split-wrap {
      position: absolute;
      width: 100%;
      height: 50px;
      text-align: center;
      top: 100%;
      left: 0;
      text-indent: 0; }
      .page-template-about-page .about-hero h1 .split-wrap strong {
        position: absolute;
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        width: 100%;
        left: 0; }

.page-template-about-page .main-post .button {
  margin: 50px 0 70px; }

.page-template-about-page .beliefs {
  margin: 60px 0;
  padding-left: 8.33333333%;
  padding-right: 8.33333333%; }
  .page-template-about-page .beliefs .beliefs-wrap {
    margin: 20px 0;
    text-align: center; }

.page-template-about-page .history {
  margin: 66px 0 48px; }
  .page-template-about-page .history h1 {
    margin-bottom: 40px; }
  .page-template-about-page .history img {
    margin-top: 25px; }

/******************************************************************
  Team Page Base Styles
******************************************************************/
.page-template-team-page .page-content {
  padding-bottom: 60px; }

.page-template-team-page .post-text.xl p {
  margin: 10px 0 30px; }

.page-template-team-page .grid {
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%; }

.page-template-team-page .q-search {
  position: relative;
  margin: 20px 0 40px; }
  .page-template-team-page .q-search span {
    position: absolute;
    left: 20px;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

.page-template-team-page #quicksearch {
  width: 100%;
  background: transparent;
  font-size: 16px;
  color: #415164;
  border: 1px solid #e6e7e8;
  margin: 0;
  padding: 12px 10px 15px 50px;
  position: relative; }
  .page-template-team-page #quicksearch:focus, .page-template-team-page #quicksearch:active {
    background-color: #f7f7f7;
    outline: none; }

.page-template-team-page .button-group {
  text-align: center;
  border-top: 1px solid #e6e7e8;
  border-bottom: 1px solid #e6e7e8;
  margin: 20px 0 80px; }
  .page-template-team-page .button-group button {
    background: none;
    border: none;
    font-family: "Gotham A", "Gotham B";
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    padding: 6px 0;
    width: 40%;
    border-bottom: 2px solid transparent;
    margin: 10px 4% 5px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease; }
    .page-template-team-page .button-group button.is-checked {
      border-bottom: 2px solid; }
    .page-template-team-page .button-group button:hover {
      background: none;
      color: inherit;
      border-top: none;
      border-right: none;
      border-left: none; }
    .page-template-team-page .button-group button.dark-blue:hover {
      border-bottom: 2px solid transparent; }

.page-template-team-page .team-member {
  text-align: center;
  margin-bottom: 50px; }
  .page-template-team-page .team-member a {
    display: block;
    text-decoration: none;
    color: #231f20;
    padding: 0 40px; }
  .page-template-team-page .team-member .team-photo {
    display: block;
    overflow: hidden;
    border-radius: 100%;
    text-align: center; }
    .page-template-team-page .team-member .team-photo img {
      display: block; }
  .page-template-team-page .team-member .team-content h5 {
    margin: 0;
    font-family: "Verdana", Geneva, sans-serif;
    font-weight: bold;
    padding: 20px 0 5px; }
  .page-template-team-page .team-member .team-content p {
    margin: 0; }
  .page-template-team-page .team-member .team-content .member-detail {
    height: 0;
    width: 0;
    overflow: hidden;
    visibility: hidden; }

.single-employees .entry-content .experience {
  margin: 60px 0; }

.single-employees .entry-content ul {
  list-style: disc;
  padding-left: 20px; }
  .single-employees .entry-content ul li {
    margin: 15px 0;
    padding-left: 5px;
    text-indent: 0; }
    .single-employees .entry-content ul li:before {
      content: "";
      position: relative;
      left: 0; }

.single-employees .employee-social > div {
  display: inline-block;
  width: 25px;
  height: 25px; }
  .single-employees .employee-social > div a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none; }
    .single-employees .employee-social > div a span {
      display: block; }
      .single-employees .employee-social > div a span::before {
        font-size: 28px; }

.page-template-work-page .page-hero {
  background-color: #415164;
  height: 240px; }
  .page-template-work-page .page-hero .work-animation {
    position: relative; }
    .page-template-work-page .page-hero .work-animation div[class*="col"] .flex-center {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; }
    .page-template-work-page .page-hero .work-animation div[class*="col"]:first-child .flex-center {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; }
  .page-template-work-page .page-hero .harder-grow {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    z-index: 3;
    -webkit-animation-name: scale;
    animation-name: scale;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center; }
    .page-template-work-page .page-hero .harder-grow img {
      display: block; }

.page-template-work-page .page-content {
  padding: 70px 0 80px; }

.page-template-work-page .services {
  background-color: #f1f2f2; }
  .page-template-work-page .services .post-text {
    margin: 60px 0; }
  .page-template-work-page .services .offering-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 45px; }
    .page-template-work-page .services .offering-wrap .offering {
      width: 100%;
      display: inline-block;
      margin: 20px 0;
      height: 240px; }
      .page-template-work-page .services .offering-wrap .offering a {
        text-decoration: none;
        color: currentColor; }
      .page-template-work-page .services .offering-wrap .offering .offering-image {
        background-color: #fff;
        border-radius: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 140px;
        width: 140px;
        margin: auto; }
      .page-template-work-page .services .offering-wrap .offering .offering-title {
        padding: 0 50px; }
  .page-template-work-page .services .seperator img {
    background: #f1f2f2; }

.page-template-work-page .page-impact {
  padding-top: 90px;
  background-color: #f1f2f2; }
  .page-template-work-page .page-impact .impact-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 40px auto 90px auto; }
    .page-template-work-page .page-impact .impact-wrapper .impact-box {
      height: 240px;
      position: relative;
      background-size: cover;
      background-position: center;
      margin: 20px auto;
      -webkit-box-flex: 0;
      -ms-flex-positive: 0;
      flex-grow: 0;
      width: 260px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .page-template-work-page .page-impact .impact-wrapper .impact-box .impact-title {
        color: #fff;
        text-align: center;
        padding: 0 20px;
        text-transform: uppercase; }
      .page-template-work-page .page-impact .impact-wrapper .impact-box .impact-more a {
        background: #fff;
        color: #231f20;
        display: inline-block;
        margin: 10px auto 0;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 12px;
        font-family: "Gotham A", "Gotham B";
        font-weight: bold;
        padding: 5px 15px;
        -webkit-animation-name: none;
        animation-name: none; }
        .page-template-work-page .page-impact .impact-wrapper .impact-box .impact-more a span {
          display: none; }

.page-template-work-page .page-clients {
  margin: 80px 0; }
  .page-template-work-page .page-clients .clients-wrap {
    margin: 40px 0 60px; }
    .page-template-work-page .page-clients .clients-wrap p {
      margin: 50px 0 15px; }
    .page-template-work-page .page-clients .clients-wrap li {
      margin: 6px 0; }

.page-template-work-page .page-samples p.xl {
  margin-top: 0; }

.page-template-work-page .page-samples .work-wrapper {
  margin: 60px 0; }

.page-template-work-page .page-samples a, .page-template-work-page .page-samples a:hover, .page-template-work-page .page-samples a:focus {
  color: #231f20; }

.page-template-work-page .page-samples article {
  background: #f1f2f2;
  padding: 20px;
  height: 220px;
  margin-bottom: 30px; }
  .page-template-work-page .page-samples article .hbs-content {
    width: 100%;
    float: left;
    height: 100%;
    padding-right: 20px; }
  .page-template-work-page .page-samples article .hbs-image {
    display: none;
    background-size: cover;
    background-position: center;
    float: right;
    width: 32%;
    height: 100%; }
  .page-template-work-page .page-samples article:after {
    content: " ";
    clear: both;
    display: table; }

.page-template-work-page .page-samples .button.button-outline {
  color: #1b6bab;
  margin: 0 auto 80px; }
  .page-template-work-page .page-samples .button.button-outline:hover {
    color: white; }

.impact-row {
  margin-bottom: 40px; }
  .impact-row h2 {
    margin-top: 0; }
  .impact-row img {
    margin-top: 5px; }

.single-sample_work .sample-work > div:first-child h3, .page-id-5970 .sample-work > div:first-child h3 {
  font-size: 14px; }

.single-sample_work .sample-work svg, .page-id-5970 .sample-work svg {
  max-width: 50px;
  height: auto;
  margin: auto;
  padding: 20px 0px 0; }
  .single-sample_work .sample-work svg path, .page-id-5970 .sample-work svg path {
    fill: #1b6bab; }

.page-id-5970 .sample-work {
  margin-bottom: 60px; }

.page-id-5970 .byline {
  margin-top: 0; }

.page-id-5970 div:first-child a svg {
  margin-left: 35px;
  display: block; }

.page-id-5970 header h1 {
  font-size: 26px;
  margin-bottom: 5px; }

.page-id-5970 .page-samples p.xl {
  margin-top: 0; }

.page-id-5970 .page-samples .work-wrapper {
  margin: 60px 0; }

.page-id-5970 .page-samples a, .page-id-5970 .page-samples a:hover, .page-id-5970 .page-samples a:focus {
  color: #231f20; }

.page-id-5970 .page-samples article {
  background: #f1f2f2;
  padding: 20px;
  height: 220px;
  margin-bottom: 30px; }
  .page-id-5970 .page-samples article .hbs-content {
    width: 100%;
    float: left;
    height: 100%;
    padding-right: 20px; }
  .page-id-5970 .page-samples article .hbs-image {
    display: none;
    background-size: cover;
    background-position: center;
    float: right;
    width: 32%;
    height: 100%; }
  .page-id-5970 .page-samples article:after {
    content: " ";
    clear: both;
    display: table; }

.page-id-5970 .page-samples .button.button-outline {
  color: #1b6bab;
  margin: 0 auto 80px; }
  .page-id-5970 .page-samples .button.button-outline:hover {
    color: white; }

.single.single-sample_work main header {
  margin-bottom: 20px; }

.page-template-services-page .service-image {
  margin: 15px auto; }

.page-id-24 .post-text li {
  font-size: 13px;
  line-height: 1.88;
  list-style: disc;
  margin-left: 20px; }

/******************************************************************
  Blog Page Base Styles
******************************************************************/
.blog .page-hero {
  height: 300px; }

.blog .blog-filter {
  margin-top: 80px; }
  .blog .blog-filter .blog-sort {
    text-align: center;
    border-top: 1px solid #e6e7e8;
    border-bottom: 1px solid #e6e7e8;
    margin: 20px 0 80px; }
    .blog .blog-filter .blog-sort li {
      display: inline-block;
      width: auto;
      position: relative; }
      .blog .blog-filter .blog-sort li a.button {
        color: #415164;
        background: none;
        border: none;
        font-family: "Gotham A", "Gotham B";
        font-weight: bold;
        font-size: 12px;
        text-transform: uppercase;
        padding: 6px 15px;
        position: relative;
        margin: 10px 4% 5px;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease; }
      .blog .blog-filter .blog-sort li ul {
        padding: 10px 0 0;
        right: -8px;
        left: auto; }
        .blog .blog-filter .blog-sort li ul li {
          width: 100%; }
      .blog .blog-filter .blog-sort li.open a.button {
        color: #e5552e; }

.blog .page-content {
  min-height: 500px; }
  .blog .page-content .row > div:not(.pagination-wrap) {
    margin-bottom: 30px;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px; }
    @media (min-width: 992px) {
      .blog .page-content .row > div:not(.pagination-wrap) {
        float: left;
        width: 50%; } }
    .blog .page-content .row > div:not(.pagination-wrap):nth-child(1n) article.-bg {
      background-color: #eaa122; }
    .blog .page-content .row > div:not(.pagination-wrap):nth-child(2n) article.-bg {
      background-color: #1b6bab; }
    .blog .page-content .row > div:not(.pagination-wrap):nth-child(3n) article.-bg {
      background-color: #e5552e; }
    .blog .page-content .row > div:not(.pagination-wrap) article {
      background-position: center;
      background-size: cover;
      padding: 20px;
      height: 280px;
      overflow: hidden;
      position: relative; }
      .blog .page-content .row > div:not(.pagination-wrap) article .content-overlay {
        background: rgba(0, 0, 0, 0.8);
        color: white;
        width: 100%;
        height: 260px;
        position: absolute;
        left: 0;
        bottom: -160px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease; }
        .blog .page-content .row > div:not(.pagination-wrap) article .content-overlay .top {
          height: 100px;
          padding: 20px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
        .blog .page-content .row > div:not(.pagination-wrap) article .content-overlay .bottom {
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start;
          padding: 0 20px 10px; }
        .blog .page-content .row > div:not(.pagination-wrap) article .content-overlay header {
          width: 100%; }
          .blog .page-content .row > div:not(.pagination-wrap) article .content-overlay header h1 {
            line-height: 1.333;
            font-size: 15px;
            margin: 0 0 5px;
            max-height: 60px;
            overflow: hidden;
            font-family: "Gotham A", "Gotham B";
            font-weight: bold;
            color: #fff; }
          .blog .page-content .row > div:not(.pagination-wrap) article .content-overlay header p {
            margin: 0; }
        .blog .page-content .row > div:not(.pagination-wrap) article .content-overlay .entry-content {
          width: 100%; }
          .blog .page-content .row > div:not(.pagination-wrap) article .content-overlay .entry-content p {
            margin: 0; }
  .blog .page-content .row > div:nth-child(3n) {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px; }
    @media (min-width: 992px) {
      .blog .page-content .row > div:nth-child(3n) {
        float: left;
        width: 100%; } }

.page-template-blog-date .page-header, .archive .page-header, .search .page-header {
  padding: 20px 0 60px; }
  .page-template-blog-date .page-header div[class*="col"], .archive .page-header div[class*="col"], .search .page-header div[class*="col"] {
    position: relative; }
  .page-template-blog-date .page-header .view, .archive .page-header .view, .search .page-header .view {
    position: absolute;
    z-index: 2;
    width: 90px;
    border: 1px solid #ccc;
    border-radius: 2px;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    .page-template-blog-date .page-header .view .button, .archive .page-header .view .button, .search .page-header .view .button {
      width: 100%;
      padding: 12px 0px 10px 10px; }
    .page-template-blog-date .page-header .view .caret, .archive .page-header .view .caret, .search .page-header .view .caret {
      right: 8px; }
    .page-template-blog-date .page-header .view .dropdown-menu, .archive .page-header .view .dropdown-menu, .search .page-header .view .dropdown-menu {
      z-index: 3;
      right: -1px;
      left: auto;
      top: 35px;
      border-top: 1px solid rgba(0, 0, 0, 0.15); }

.page-template-blog-date .page-content, .archive .page-content, .search .page-content {
  min-height: 500px; }
  .page-template-blog-date .page-content .row > div:not(.pagination-wrap) > div:not(.widget), .archive .page-content .row > div:not(.pagination-wrap) > div:not(.widget), .search .page-content .row > div:not(.pagination-wrap) > div:not(.widget) {
    margin-bottom: 30px; }
    .page-template-blog-date .page-content .row > div:not(.pagination-wrap) > div:not(.widget):nth-child(1n) article.-bg, .archive .page-content .row > div:not(.pagination-wrap) > div:not(.widget):nth-child(1n) article.-bg, .search .page-content .row > div:not(.pagination-wrap) > div:not(.widget):nth-child(1n) article.-bg {
      background-color: #eaa122; }
    .page-template-blog-date .page-content .row > div:not(.pagination-wrap) > div:not(.widget):nth-child(2n) article.-bg, .archive .page-content .row > div:not(.pagination-wrap) > div:not(.widget):nth-child(2n) article.-bg, .search .page-content .row > div:not(.pagination-wrap) > div:not(.widget):nth-child(2n) article.-bg {
      background-color: #1b6bab; }
    .page-template-blog-date .page-content .row > div:not(.pagination-wrap) > div:not(.widget):nth-child(3n) article.-bg, .archive .page-content .row > div:not(.pagination-wrap) > div:not(.widget):nth-child(3n) article.-bg, .search .page-content .row > div:not(.pagination-wrap) > div:not(.widget):nth-child(3n) article.-bg {
      background-color: #e5552e; }
  .page-template-blog-date .page-content .row > div:not(.pagination-wrap) article, .archive .page-content .row > div:not(.pagination-wrap) article, .search .page-content .row > div:not(.pagination-wrap) article {
    background-position: center;
    background-size: cover;
    padding: 20px;
    height: 280px;
    overflow: hidden;
    position: relative; }
    .page-template-blog-date .page-content .row > div:not(.pagination-wrap) article .content-overlay, .archive .page-content .row > div:not(.pagination-wrap) article .content-overlay, .search .page-content .row > div:not(.pagination-wrap) article .content-overlay {
      background: rgba(0, 0, 0, 0.8);
      color: white;
      width: 100%;
      height: 260px;
      position: absolute;
      left: 0;
      bottom: -160px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease; }
      .page-template-blog-date .page-content .row > div:not(.pagination-wrap) article .content-overlay .top, .archive .page-content .row > div:not(.pagination-wrap) article .content-overlay .top, .search .page-content .row > div:not(.pagination-wrap) article .content-overlay .top {
        height: 100px;
        padding: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
      .page-template-blog-date .page-content .row > div:not(.pagination-wrap) article .content-overlay .bottom, .archive .page-content .row > div:not(.pagination-wrap) article .content-overlay .bottom, .search .page-content .row > div:not(.pagination-wrap) article .content-overlay .bottom {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0 20px 10px; }
      .page-template-blog-date .page-content .row > div:not(.pagination-wrap) article .content-overlay header, .archive .page-content .row > div:not(.pagination-wrap) article .content-overlay header, .search .page-content .row > div:not(.pagination-wrap) article .content-overlay header {
        width: 100%; }
        .page-template-blog-date .page-content .row > div:not(.pagination-wrap) article .content-overlay header h1, .archive .page-content .row > div:not(.pagination-wrap) article .content-overlay header h1, .search .page-content .row > div:not(.pagination-wrap) article .content-overlay header h1 {
          line-height: 1.333;
          font-size: 15px;
          margin: 0 0 5px;
          max-height: 60px;
          overflow: hidden;
          font-family: "Gotham A", "Gotham B";
          font-weight: bold;
          color: #fff; }
        .page-template-blog-date .page-content .row > div:not(.pagination-wrap) article .content-overlay header p, .archive .page-content .row > div:not(.pagination-wrap) article .content-overlay header p, .search .page-content .row > div:not(.pagination-wrap) article .content-overlay header p {
          margin: 0; }
      .page-template-blog-date .page-content .row > div:not(.pagination-wrap) article .content-overlay .entry-content, .archive .page-content .row > div:not(.pagination-wrap) article .content-overlay .entry-content, .search .page-content .row > div:not(.pagination-wrap) article .content-overlay .entry-content {
        width: 100%; }
        .page-template-blog-date .page-content .row > div:not(.pagination-wrap) article .content-overlay .entry-content p, .archive .page-content .row > div:not(.pagination-wrap) article .content-overlay .entry-content p, .search .page-content .row > div:not(.pagination-wrap) article .content-overlay .entry-content p {
          margin: 0; }

.single main {
  padding-bottom: 80px; }
  .single main header {
    margin-bottom: 60px; }

.page-template-contact-page .page-content .post-text {
  margin: 0 0 60px; }

.page-template-contact-page .page-content .locations-wrap {
  margin: 50px 0;
  /* fixes potential theme css conflict */ }
  .page-template-contact-page .page-content .locations-wrap .row {
    margin-bottom: 40px; }
  .page-template-contact-page .page-content .locations-wrap .location-image {
    text-align: center; }
  .page-template-contact-page .page-content .locations-wrap .location-details > div {
    margin: 20px 0;
    font-size: 13px; }
  .page-template-contact-page .page-content .locations-wrap .location-details strong {
    display: block; }
  .page-template-contact-page .page-content .locations-wrap .location-details p {
    margin: 0; }
  .page-template-contact-page .page-content .locations-wrap .location-details address {
    font-size: 13px;
    font-style: normal;
    font-family: "Verdana", Geneva, sans-serif; }
  .page-template-contact-page .page-content .locations-wrap .acf-map {
    width: 100%;
    height: 250px;
    border: #ccc solid 1px;
    margin: 20px 0; }
  .page-template-contact-page .page-content .locations-wrap .acf-map img {
    max-width: inherit !important; }

/*********************
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: 480px) {
  /******************************************************************

Stylesheet: 481px + UP

******************************************************************/
  /*********************
FOOTER STYLES
*********************/
  .footer {
    clear: both;
    background-color: #415164;
    color: #fff;
    padding-top: 20px; }
    .footer .footer-links {
      padding-left: 20px; }
    .footer .footer-logo {
      padding-left: 65px; }
    .footer .footer-locations {
      padding-left: 65px; }
      .footer .footer-locations h4 {
        font-family: "Verdana", Geneva, sans-serif;
        font-weight: 700;
        font-size: 13px; }
    .footer .footer-social {
      padding-left: 65px; }
      .footer .footer-social li {
        padding: 10px; }
        .footer .footer-social li a {
          color: #fff;
          text-decoration: none;
          font-size: 34px; }
  /******************************************************************
  Home Page 481+ Styles
******************************************************************/
  .home .home-team .home-grid .team-member a {
    display: block;
    padding: 0 40px; }
  .home .home-team .home-grid .team-member .team-photo {
    border-radius: 100%;
    overflow: hidden; }
    .home .home-team .home-grid .team-member .team-photo img {
      display: block; }
  .home .home-blog {
    margin-top: 90px; }
    .home .home-blog .half-color-content p:not(.byline) {
      margin-bottom: 30px; }
    .home .home-blog .half-color-content .button {
      margin: auto;
      display: inline-block;
      width: 100%;
      text-align: center; }
  .home .home-blog-sub article .hbs-content {
    width: 68%; }
  .home .home-blog-sub article .hbs-image {
    display: block; } }

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .home .home-team .home-grid .team-member {
    width: 50%; }
    .home .home-team .home-grid .team-member a {
      padding: 0 20px; } }

@media only screen and (min-width: 480px) {
  /******************************************************************
  Team Page 480+ Styles
******************************************************************/
  .page-template-team-page .button-group button {
    padding: 6px 0;
    width: auto; }
  .page-template-team-page .team-member a {
    padding: 0 20px; } }

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .page-template-team-page .team-member {
    width: 50%; } }

@media only screen and (min-width: 480px) {
  .page-template-work-page .list-center-cont {
    width: 412px;
    margin: auto; }
  .page-template-work-page .list-center {
    width: auto; }
    .page-template-work-page .list-center:nth-child(1) {
      margin-right: 0;
      float: left; }
    .page-template-work-page .list-center:nth-child(2) {
      margin-right: 0;
      float: right; }
  .page-template-work-page .page-hero {
    height: 340px; }
    .page-template-work-page .page-hero .harder-grow {
      width: 100px;
      height: 100px;
      margin-top: -50px;
      margin-left: -50px; }
  .page-template-work-page .services .offering-wrap .offering {
    width: 50%; }
  .page-template-work-page .page-impact .impact-wrapper .impact-box {
    height: 220px;
    margin: 20px;
    width: calc(100% * (1/2) - 40px - 1px); }
  .page-template-work-page .page-samples article .hbs-content {
    width: 68%; }
  .page-template-work-page .page-samples article .hbs-image {
    display: block; }
  .page-id-5970 main .container > .row {
    padding: 0 20px; }
  .page-id-5970 .page-samples article .hbs-content {
    width: 68%; }
  .page-id-5970 .page-samples article .hbs-image {
    display: block; } }

@media only screen and (min-width: 480px) and (min-width: 1170px) {
  .page-id-5970 main .container > .row {
    padding: 0 45px; } }

@media only screen and (min-width: 480px) {
  .page-template-contact-page .page-content .locations-wrap {
    padding-left: 12%;
    padding-right: 12%; } }

/*********************
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) {
  /*********************
	768 & Up
*********************/
  /*********************
GENERAL STYLES
*********************/
  .half-color {
    position: absolute;
    z-index: 0;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .9; }
  .half-color-content h1 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.333;
    margin-bottom: 0; }
  .half-color-content p {
    color: #fff; }
    .half-color-content p.byline {
      margin: 0; }
  .half-color-content .button-outline {
    padding: 10px 20px;
    margin-top: 15px; }
  /*********************
HEADER STYLES
*********************/
  /*********************
POSTS & CONTENT STYLES
*********************/
  .page-hero {
    height: 350px; }
  /*********************
FOOTER STYLES
*********************/
  .footer .footer-links {
    padding-left: 0; }
    .footer .footer-links ul.nav li {
      border: none;
      display: inline-block; }
      .footer .footer-links ul.nav li a {
        font-weight: 700;
        font-size: 13px;
        padding: 12px 15px; }
  .footer .footer-logo {
    padding-left: 0; }
  .footer .footer-locations {
    padding-left: 0; }
    .footer .footer-locations h4 {
      margin-bottom: 8px; }
    .footer .footer-locations ul {
      margin-top: 0; }
      .footer .footer-locations ul li a {
        font-size: 13px; }
  .footer .footer-social {
    padding-left: 0;
    width: 50%;
    float: none;
    margin-top: -24px;
    top: -90px; }
  /******************************************************************
  Home Page 768+ Styles
******************************************************************/
  .home .home-hero h1 {
    font-size: 56px; }
    .home .home-hero h1 span {
      display: block;
      padding: 15px 0px 10px; }
  .home .home-work .home-services {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .home .home-team .home-grid .team-member a {
    padding: 0 20px; }
  .home .home-blog .half-color-content p:not(.byline) {
    margin-bottom: 20px; }
  .home .home-blog .half-color-content .button {
    margin-left: 0;
    margin-right: 0;
    display: inline-block;
    width: auto;
    text-align: center; }
  .page-template-about-page .about-hero h1 {
    font-size: 48px;
    color: #fff;
    position: relative;
    text-indent: -250px;
    width: auto; }
    .page-template-about-page .about-hero h1 .split-wrap {
      position: absolute;
      width: auto;
      top: 0;
      left: 10px;
      text-indent: 0;
      text-align: left; }
      .page-template-about-page .about-hero h1 .split-wrap strong {
        -webkit-transform-origin: left;
        -ms-transform-origin: left;
        transform-origin: left;
        width: auto;
        left: auto;
        display: block; }
      .page-template-about-page .about-hero h1 .split-wrap:after {
        display: table;
        content: " ";
        clear: both; }
  .page-template-about-page .main-post .button {
    margin: 50px 0 70px; }
  .page-template-about-page .beliefs {
    margin: 60px 0 75px;
    padding-left: 8.33333333%;
    padding-right: 8.33333333%; }
    .page-template-about-page .beliefs .beliefs-wrap {
      margin: 30px 0;
      text-align: left;
      height: 175px;
      padding-left: 8.333333%; }
      .page-template-about-page .beliefs .beliefs-wrap .row {
        height: 100%; }
        .page-template-about-page .beliefs .beliefs-wrap .row div[class*="col"] {
          height: 100%; }
          .page-template-about-page .beliefs .beliefs-wrap .row div[class*="col"] .f-center {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
            width: 100%;
            height: 100%;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            width: 100%;
            height: 100%; }
      .page-template-about-page .beliefs .beliefs-wrap img {
        display: block; }
      .page-template-about-page .beliefs .beliefs-wrap h2 {
        margin-bottom: 7px; }
      .page-template-about-page .beliefs .beliefs-wrap p {
        margin: 0 0 20px; }
  .page-template-about-page .history div[class*="col"]:first-child img {
    max-width: 90%; }
  @-moz-document url-prefix() {
    .page-template-about-page .about-hero h1 .split-wrap {
      left: -23px; } }
  /******************************************************************
  Team Page 768+ Styles
******************************************************************/
  .page-template-team-page .button-group button {
    padding: 20px 10px;
    width: auto;
    margin: 0; }
  .page-template-work-page .list-center-cont {
    width: 480px;
    margin: auto; }
  .page-template-work-page .page-hero {
    height: 450px; }
    .page-template-work-page .page-hero .harder-grow {
      width: 151px;
      height: 151px;
      margin-top: -75.5px;
      margin-left: -75.5px; }
  .page-template-work-page .services .offering-wrap .offering {
    width: 33.33333%; }
  .page-template-work-page .page-impact .impact-wrapper {
    max-width: 800px; }
    .page-template-work-page .page-impact .impact-wrapper .impact-box {
      height: 200px;
      overflow: hidden;
      width: calc(100% * (1/3) - 40px - 1px);
      -webkit-transition: all .3s ease-in-out;
      -o-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .page-template-work-page .page-impact .impact-wrapper .impact-box .impact-title {
        opacity: 1;
        -webkit-transition: opacity .15s ease-in-out;
        -o-transition: opacity .15s ease-in-out;
        transition: opacity .15s ease-in-out; }
      .page-template-work-page .page-impact .impact-wrapper .impact-box .impact-more {
        top: 0;
        left: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        text-align: center;
        overflow: hidden; }
        .page-template-work-page .page-impact .impact-wrapper .impact-box .impact-more a {
          font-size: 13px;
          position: relative;
          background: transparent;
          color: #fff;
          display: block;
          width: 100%;
          height: 100%;
          margin: 0;
          border: 0 solid white;
          -webkit-transition: all .3s ease-in-out;
          -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out; }
          .page-template-work-page .page-impact .impact-wrapper .impact-box .impact-more a > div {
            position: relative;
            top: 50%;
            -webkit-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
            -webkit-transform: translateY(500%);
            -ms-transform: translateY(500%);
            transform: translateY(500%); }
          .page-template-work-page .page-impact .impact-wrapper .impact-box .impact-more a span {
            display: block;
            margin-bottom: 10px; }
            .page-template-work-page .page-impact .impact-wrapper .impact-box .impact-more a span:before {
              font-size: 40px; }
      .page-template-work-page .page-impact .impact-wrapper .impact-box:hover .impact-title {
        opacity: 0; }
      .page-template-work-page .page-impact .impact-wrapper .impact-box:hover .impact-more a {
        border: 25px solid white; }
        .page-template-work-page .page-impact .impact-wrapper .impact-box:hover .impact-more a > div {
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
  .page-template-work-page .page-clients .clients-wrap {
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
    -webkit-column-gap: 30px;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 30px;
    /* Firefox */
    column-gap: 30px; }
    .page-template-work-page .page-clients .clients-wrap p {
      margin: 0 0 15px; }
  .single.single-sample_work main header {
    margin-bottom: 60px; }
  .page-template-services-page .service-image {
    margin: 5px auto; }
  /******************************************************************
  Blog Page Base Styles
******************************************************************/
  .blog .page-hero {
    height: 450px; }
  .blog .page-content .row {
    padding: 0 8.33333333%; }
    .blog .page-content .row > div:not(.pagination-wrap) article {
      height: 370px; }
      .blog .page-content .row > div:not(.pagination-wrap) article .content-overlay {
        height: 220px;
        bottom: -110px; }
        .blog .page-content .row > div:not(.pagination-wrap) article .content-overlay .top {
          height: 110px;
          padding: 20px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
        .blog .page-content .row > div:not(.pagination-wrap) article .content-overlay .bottom {
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start; }
        .blog .page-content .row > div:not(.pagination-wrap) article .content-overlay header {
          width: 100%; }
          .blog .page-content .row > div:not(.pagination-wrap) article .content-overlay header h1 {
            line-height: 1.333;
            font-size: 18px; }
      .blog .page-content .row > div:not(.pagination-wrap) article:hover .content-overlay {
        bottom: 0; }
  .page-template-blog-date .page-content .row > div:not(.pagination-wrap) article .content-overlay, .archive .page-content .row > div:not(.pagination-wrap) article .content-overlay, .search .page-content .row > div:not(.pagination-wrap) article .content-overlay {
    height: 210px;
    bottom: -105px; }
  .page-template-blog-date .page-content .row > div:not(.pagination-wrap) article:hover .content-overlay, .archive .page-content .row > div:not(.pagination-wrap) article:hover .content-overlay, .search .page-content .row > div:not(.pagination-wrap) article:hover .content-overlay {
    bottom: 0; }
  .page-template-contact-page .page-content .post-text {
    margin: 0 0 80px; }
  .page-template-contact-page .page-content .locations-wrap {
    margin: 100px 0;
    padding-left: 0;
    padding-right: 0; }
    .page-template-contact-page .page-content .locations-wrap .acf-map {
      height: 200px; } }

/*********************
IPAD
*********************/
@media only screen and (min-width: 768px) and (max-width: 768px) {
  /*********************
	768 ONLY
*********************/
  /*********************
HEADER STYLES
*********************/
  .header .container .row .logo-wrap a.logo {
    max-width: 250px; }
  .header .container .row .logo-wrap a.mobile-menu-btn {
    display: block; }
  .header .container .row .nav-main {
    background-size: 250px auto;
    background-position: 24px 25px; }
  .page-template-work-page .page-hero {
    height: 450px; }
    .page-template-work-page .page-hero .harder-grow {
      width: 151px;
      height: 151px;
      margin-top: -75.5px;
      margin-left: -75.5px; }
  .page-template-work-page .services .offering-wrap .offering {
    width: 33.33333%; }
  .page-template-work-page .page-impact .impact-wrapper .impact-box {
    height: 200px;
    width: calc(100% * (1/3) - 40px - 1px); }
    .page-template-work-page .page-impact .impact-wrapper .impact-box .impact-more {
      top: auto;
      left: auto;
      position: relative;
      width: 100%;
      height: auto;
      text-align: center;
      overflow: hidden; }
      .page-template-work-page .page-impact .impact-wrapper .impact-box .impact-more a {
        background: #fff;
        color: #231f20;
        display: inline-block;
        font-size: 12px;
        width: auto; }
        .page-template-work-page .page-impact .impact-wrapper .impact-box .impact-more a > div {
          position: relative;
          top: auto;
          -webkit-transform: none;
          -ms-transform: none;
          transform: none; }
        .page-template-work-page .page-impact .impact-wrapper .impact-box .impact-more a span {
          display: none; }
    .page-template-work-page .page-impact .impact-wrapper .impact-box:hover .impact-title {
      opacity: 1; }
    .page-template-work-page .page-impact .impact-wrapper .impact-box:hover .impact-more a {
      border: 0 solid white; }
      .page-template-work-page .page-impact .impact-wrapper .impact-box:hover .impact-more a > div {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none; } }

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

Stylesheet: Small Desktop Stylsheet

******************************************************************/
  /*********************
HEADER STYLES
*********************/
  .header .container .row .logo-wrap a.logo {
    height: 100%;
    max-width: 100%;
    display: block;
    position: relative;
    top: 5px; }
  .header .container .row .logo-wrap a.mobile-menu-btn {
    display: none; }
  .header .container .row .nav-main {
    height: 100%;
    opacity: 1;
    display: block;
    position: relative;
    left: auto;
    top: auto;
    padding: 0;
    background-image: none;
    background-color: transparent;
    width: 66.66666667%;
    overflow: hidden;
    z-index: auto;
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out; }
    .header .container .row .nav-main.collapsed {
      z-index: auto;
      opacity: 1; }
    .header .container .row .nav-main nav {
      height: 100%;
      overflow-y: visible;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; }
  /*********************
NAVIGATION STYLES
*********************/
  .nav {
    border-bottom: 0;
    margin: 0; }
    .nav li {
      border-bottom: none;
      display: inline-block; }
      .nav li a {
        display: inline-block;
        color: #231f20;
        font-size: 13px;
        text-decoration: none;
        padding: 20px 20px; }
    .nav #menu-item-5656 {
      display: none; }
  /* end .nav */
  /*********************
POSTS & CONTENT STYLES
*********************/
  .page-hero {
    height: 450px; }
  /******************************************************************
  Home Page 992+ Styles
******************************************************************/
  .home .home-hero h1 {
    font-size: 72px; }
    .home .home-hero h1 span {
      padding: 15px 0px 10px; }
  /******************************************************************
  Team Page 992+ Styles
******************************************************************/
  .page-template-team-page .button-group button {
    padding: 20px; }
  .page-template-work-page .services .offering-wrap {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto; }
  .page-template-contact-page .page-content .locations-wrap .acf-map {
    height: 250px; } }

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

******************************************************************/
  /*********************
POSTS & CONTENT STYLES
*********************/ }

@media only screen and (min-width: 1200px) and (min-width: 1440px) {
  .page-hero {
    height: 550px; } }

@media only screen and (min-width: 1200px) and (min-width: 1600px) {
  .page-hero {
    height: 650px; } }

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