@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

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

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

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

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/* Ratios - @begin */
/* Ratios - @end */
/* 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.
 */
/* line 12, partials/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

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

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 42, partials/_normalize.scss */
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.
 */
/* line 52, partials/_normalize.scss */
[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.
 */
/* line 67, partials/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
/* line 77, partials/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 89, partials/_normalize.scss */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 97, partials/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 105, partials/_normalize.scss */
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.
 */
/* line 119, partials/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 128, partials/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 136, partials/_normalize.scss */
b,
strong,
.strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 146, partials/_normalize.scss */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 156, partials/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/* line 166, partials/_normalize.scss */
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
/* line 177, partials/_normalize.scss */
pre {
  margin: 0;
}

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

/**
 * Improve readability of pre-formatted text in all browsers.
 */
/* line 197, partials/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
/* line 205, partials/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

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

/* line 218, partials/_normalize.scss */
small, .small {
  font-size: 75%;
}

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

/* line 234, partials/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 238, partials/_normalize.scss */
sub {
  bottom: -0.25em;
}

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

/* line 257, partials/_normalize.scss */
dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
/* line 265, partials/_normalize.scss */
menu {
  padding: 0 0 0 40px;
}

/* line 269, partials/_normalize.scss */
ol,
ul {
  padding: 0;
  list-style-type: none;
}

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

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 293, partials/_normalize.scss */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 301, partials/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 313, partials/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
/* line 325, partials/_normalize.scss */
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.
 */
/* line 336, partials/_normalize.scss */
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.
 */
/* line 347, partials/_normalize.scss */
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.
 */
/* line 361, partials/_normalize.scss */
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.
 */
/* line 373, partials/_normalize.scss */
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.
 */
/* line 386, partials/_normalize.scss */
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.
 */
/* line 398, partials/_normalize.scss */
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.
 */
/* line 408, partials/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 432, partials/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 441, partials/_normalize.scss */
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.
 */
/* line 452, partials/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 465, partials/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 479, partials/_normalize.scss */
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 484, partials/_normalize.scss */
*,
*:before,
*:after {
  box-sizing: inherit;
}

/* line 492, partials/_normalize.scss */
.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
/* line 510, partials/_normalize.scss */
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/
*********************/
/* ClearFix - @begin */
/* line 4, partials/mixins/_btcf.scss */
.cf:after {
  content: "";
  display: table;
  clear: both;
}

/* ClearFix - @end */
/* Visibility - @begin */
/* line 8, partials/_utils.scss */
.hidden {
  display: none !important;
}

/* line 11, partials/_utils.scss */
.invisible {
  visibility: hidden !important;
}

/* line 14, partials/_utils.scss */
.tmp-visibility {
  height: auto     !important;
  display: block    !important;
  overflow: hidden   !important;
  position: absolute !important;
  visibility: visible  !important;
}

/* Visibility - @end */
/* Animations - @begin */
/* line 24, partials/_utils.scss */
.animation-paused {
  -webkit-animation-play-state: paused !important;
  animation-play-state: paused !important;
}

/* line 29, partials/_utils.scss */
.animation-running {
  -webkit-animation-play-state: running !important;
  animation-play-state: running !important;
}

/* Animations - @end */
/* Floats - @begin */
/* line 36, partials/_utils.scss */
.to-left {
  float: left !important;
}

/* line 39, partials/_utils.scss */
.to-right {
  float: right !important;
}

/* Floats - @end */
/* Centering - @begin */
/* line 45, partials/_utils.scss */
.center {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 48, partials/_utils.scss */
.middle {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 51, partials/_utils.scss */
.centered {
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

/* line 54, partials/_utils.scss */
.absolute-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 57, partials/_utils.scss */
.absolute-middle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 60, partials/_utils.scss */
.absolute-centered {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

/* Centering - @end */
/* Text aligns - @begin */
/* line 66, partials/_utils.scss */
.content-left {
  text-align: left !important;
}

/* line 69, partials/_utils.scss */
.content-center {
  text-align: center !important;
}

/* line 72, partials/_utils.scss */
.content-right {
  text-align: right !important;
}

/* line 75, partials/_utils.scss */
.content-justify {
  text-align: justify !important;
}

/* Text aligns - @end */
/* Sizing - @begin */
/* line 81, partials/_utils.scss */
.full {
  width: 100%;
}

/* line 84, partials/_utils.scss */
.half {
  width: 50%;
}

/* line 87, partials/_utils.scss */
.one-third {
  width: 33.33%;
}
/* line 89, partials/_utils.scss */
.one-third:first-child {
  width: 33.34%;
}

/* line 93, partials/_utils.scss */
.two-third {
  width: 66%;
}

/* line 96, partials/_utils.scss */
.one-fourth {
  width: 25%;
}

/* line 99, partials/_utils.scss */
.three-fourth {
  width: 75%;
}

/* line 102, partials/_utils.scss */
.one-fifth {
  width: 20%;
}

/* Sizing - @end */
/* Margins - @begin */
/* line 108, partials/_utils.scss */
.no-bottom {
  margin-bottom: 0 !important;
}

/* line 111, partials/_utils.scss */
.no-top {
  margin-top: 0 !important;
}

/* line 115, partials/_utils.scss */
.bottom-margin {
  margin-bottom: 20px !important;
}

/* line 118, partials/_utils.scss */
.top-margin {
  margin-top: 20px !important;
}

/* line 122, partials/_utils.scss */
.more-top {
  margin-top: 30px !important;
}

/* line 125, partials/_utils.scss */
.more-bottom {
  margin-bottom: 30px !important;
}

/* Margins - @end */
/* Ratios - @begin */
/* line 131, partials/_utils.scss */
.ratio {
  position: relative;
  display: inline-block;
  margin: 0;
  vertical-align: top;
}
/* line 8, partials/mixins/_ratios.scss */
.ratio:before {
  content: '';
  display: block;
}

/* line 22, partials/mixins/_ratios.scss */
.ratio-1-1:before,
.ratio-1x1:before {
  padding-top: 100% ;
}

/* line 22, partials/mixins/_ratios.scss */
.ratio-2-1:before,
.ratio-2x1:before {
  padding-top: 50% ;
}

/* line 22, partials/mixins/_ratios.scss */
.ratio-4-3:before,
.ratio-4x3:before {
  padding-top: 75% ;
}

/* line 22, partials/mixins/_ratios.scss */
.ratio-16-10:before,
.ratio-16x10:before {
  padding-top: 62.5% ;
}

/* line 22, partials/mixins/_ratios.scss */
.ratio-16-9:before,
.ratio-16x9:before {
  padding-top: 56.25% ;
}

/* line 22, partials/mixins/_ratios.scss */
.ratio-285-180:before,
.ratio-285x180:before {
  padding-top: 63.15789% ;
}

/* line 22, partials/mixins/_ratios.scss */
.ratio-300-180:before,
.ratio-300x180:before {
  padding-top: 60% ;
}

/* line 22, partials/mixins/_ratios.scss */
.ratio-460-200:before,
.ratio-460x200:before {
  padding-top: 43.47826% ;
}

/* line 22, partials/mixins/_ratios.scss */
.ratio-490-255:before,
.ratio-490x255:before {
  padding-top: 52.04082% ;
}

/* line 22, partials/mixins/_ratios.scss */
.ratio-940-280:before,
.ratio-940x280:before {
  padding-top: 29.78723% ;
}

/* line 22, partials/mixins/_ratios.scss */
.ratio-940-360:before,
.ratio-940x360:before {
  padding-top: 38.29787% ;
}

/* line 22, partials/mixins/_ratios.scss */
.ratio-940-400:before,
.ratio-940x400:before {
  padding-top: 42.55319% ;
}

/* line 22, partials/mixins/_ratios.scss */
.ratio-1000-380:before,
.ratio-1000x380:before {
  padding-top: 38% ;
}

/* Ratios - @end */
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

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

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

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

/* line 103, partials/_typography.scss */
.font-sans {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 107, partials/_typography.scss */
.font-serif {
  font-family: "Georgia", Cambria, Times New Roman, Times, serif;
}

/* line 111, partials/_typography.scss */
.font-no-underline {
  text-decoration: none;
}

/* line 115, partials/_typography.scss */
.text-bold {
  font-weight: bold !important;
}

/* line 1, partials/_icons.scss */
.icon {
  position: relative;
  display: inline-block;
  height: 37px;
  width: 37px;
  overflow: hidden;
  font-family: "FontAwesome";
}
/* line 9, partials/_icons.scss */
.icon:before {
  content: "";
  display: inline-block;
  text-align: center;
  min-width: 1em;
}
/* line 16, partials/_icons.scss */
.icon.icon-before {
  width: auto;
  padding-left: 1.2em;
}
/* line 20, partials/_icons.scss */
.icon.icon-before:before {
  position: absolute;
  top: 0;
  left: 0;
}
/* line 26, partials/_icons.scss */
.icon.icon-after {
  width: auto;
  padding-right: 1.2em;
}
/* line 30, partials/_icons.scss */
.icon.icon-after:before {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
}

/* line 38, partials/_icons.scss */
.icon-label {
  display: inherit;
}
/* line 41, partials/_icons.scss */
.icon:not(.icon-before):not(.icon-after) .icon-label {
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
}

/* line 82, partials/_icons.scss */
.icon-facebook:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-twitter:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-youtube:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-instagram:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-close:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-address:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-hours:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-duration:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-phone:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-mail:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-groups:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-recipient:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-ticket:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-price:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-plan:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-download:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-fax:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-to-top:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-search:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-picture:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-image:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-parking:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-car:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-map:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-directions:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-larr:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-rarr:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-vine:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-gplus:before {
  content: "" !important;
}

/* line 82, partials/_icons.scss */
.icon-whapp:before {
  content: "" !important;
}

/* line 87, partials/_icons.scss */
.icon-blog {
  background-image: url(../images/blogger.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center 1px;
  transition: .3s;
  -webkit-filter: grayscale(100%) brightness(65%);
  filter: grayscale(100%) brightness(65%);
}
/* line 97, partials/_icons.scss */
.icon-blog:hover {
  -webkit-filter: grayscale(0%) brightness(100%);
  filter: grayscale(0%) brightness(100%);
}

/* line 105, partials/_icons.scss */
.social-sharing-wrapper .icon-blog {
  background-position: left 1px;
}

/******************************************************************
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: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
/* line 38, partials/_grid.scss */
.columns-adjust,
.columns {
  margin-right: -1.25em !important;
}
/* line 42, partials/_grid.scss */
.columns-adjust .columns,
.columns .columns {
  margin-right: 0 !important;
}

/* line 48, partials/_grid.scss */
.column {
  float: left;
  padding-right: 1.25em;
}

/* line 51, partials/_grid.scss */
.column-no-pad {
  float: left;
  padding-right: 0 !important;
}

/* line 56, partials/_grid.scss */
.last-col {
  float: right;
  padding-right: 0 !important;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
/* line 70, partials/_grid.scss */
.m-all {
  float: left;
  padding-right: 1.25em;
  width: 100%;
}

/* line 76, partials/_grid.scss */
.m-1of2 {
  float: left;
  padding-right: 1.25em;
  width: 50%;
}

/* line 81, partials/_grid.scss */
.m-1of3 {
  float: left;
  padding-right: 1.25em;
  width: 33.33%;
}

/* line 86, partials/_grid.scss */
.m-2of3 {
  float: left;
  padding-right: 1.25em;
  width: 66.66%;
}

/* line 91, partials/_grid.scss */
.m-1of4 {
  float: left;
  padding-right: 1.25em;
  width: 25%;
}

/* line 96, partials/_grid.scss */
.m-3of4 {
  float: left;
  padding-right: 1.25em;
  width: 75%;
}

/* Phablet (mobile over 480vw) */
@media (min-width: 481px) and (max-width: 767px) {
  /* line 105, partials/_grid.scss */
  .p-all {
    float: left;
    padding-right: 1.25em;
    width: 100%;
  }

  /* line 111, partials/_grid.scss */
  .p-1of2 {
    float: left;
    padding-right: 1.25em;
    width: 50%;
  }

  /* line 116, partials/_grid.scss */
  .p-1of3 {
    float: left;
    padding-right: 1.25em;
    width: 33.33%;
  }

  /* line 121, partials/_grid.scss */
  .p-2of3 {
    float: left;
    padding-right: 1.25em;
    width: 66.66%;
  }

  /* line 126, partials/_grid.scss */
  .p-1of4 {
    float: left;
    padding-right: 1.25em;
    width: 25%;
  }

  /* line 131, partials/_grid.scss */
  .p-3of4 {
    float: left;
    padding-right: 1.25em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 140, partials/_grid.scss */
  .t-all {
    float: left;
    padding-right: 1.25em;
    width: 100%;
  }

  /* line 146, partials/_grid.scss */
  .t-1of2 {
    float: left;
    padding-right: 1.25em;
    width: 50%;
  }

  /* line 151, partials/_grid.scss */
  .t-1of3 {
    float: left;
    padding-right: 1.25em;
    width: 33.33%;
  }

  /* line 156, partials/_grid.scss */
  .t-2of3 {
    float: left;
    padding-right: 1.25em;
    width: 66.66%;
  }

  /* line 161, partials/_grid.scss */
  .t-1of4 {
    float: left;
    padding-right: 1.25em;
    width: 25%;
  }

  /* line 166, partials/_grid.scss */
  .t-3of4 {
    float: left;
    padding-right: 1.25em;
    width: 75%;
  }

  /* line 171, partials/_grid.scss */
  .t-1of5 {
    float: left;
    padding-right: 1.25em;
    width: 20%;
  }

  /* line 176, partials/_grid.scss */
  .t-2of5 {
    float: left;
    padding-right: 1.25em;
    width: 40%;
  }

  /* line 181, partials/_grid.scss */
  .t-3of5 {
    float: left;
    padding-right: 1.25em;
    width: 60%;
  }

  /* line 186, partials/_grid.scss */
  .t-4of5 {
    float: left;
    padding-right: 1.25em;
    width: 80%;
  }

  /* line 191, partials/_grid.scss */
  .t-1of7 {
    float: left;
    padding-right: 1.25em;
    width: 14.2857142857%;
  }

  /* line 196, partials/_grid.scss */
  .t-2of7 {
    float: left;
    padding-right: 1.25em;
    width: 28.5714286%;
  }

  /* line 201, partials/_grid.scss */
  .t-3of7 {
    float: left;
    padding-right: 1.25em;
    width: 42.8571429%;
  }

  /* line 206, partials/_grid.scss */
  .t-4of7 {
    float: left;
    padding-right: 1.25em;
    width: 57.1428572%;
  }

  /* line 211, partials/_grid.scss */
  .t-5of7 {
    float: left;
    padding-right: 1.25em;
    width: 71.4285715%;
  }

  /* line 216, partials/_grid.scss */
  .t-6of7 {
    float: left;
    padding-right: 1.25em;
    width: 85.7142857%;
  }

  /* line 221, partials/_grid.scss */
  .t-up-column-no-pad {
    float: left;
    padding-right: 0 !important;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  /* line 230, partials/_grid.scss */
  .d-all {
    float: left;
    padding-right: 1.25em;
    width: 100%;
  }

  /* line 236, partials/_grid.scss */
  .d-1of2 {
    float: left;
    padding-right: 1.25em;
    width: 50%;
  }

  /* line 241, partials/_grid.scss */
  .d-1of3 {
    float: left;
    padding-right: 1.25em;
    width: 33.33%;
  }

  /* line 246, partials/_grid.scss */
  .d-2of3 {
    float: left;
    padding-right: 1.25em;
    width: 66.66%;
  }

  /* line 251, partials/_grid.scss */
  .d-1of4 {
    float: left;
    padding-right: 1.25em;
    width: 25%;
  }

  /* line 256, partials/_grid.scss */
  .d-3of4 {
    float: left;
    padding-right: 1.25em;
    width: 75%;
  }

  /* line 261, partials/_grid.scss */
  .d-1of5 {
    float: left;
    padding-right: 1.25em;
    width: 20%;
  }

  /* line 266, partials/_grid.scss */
  .d-2of5 {
    float: left;
    padding-right: 1.25em;
    width: 40%;
  }

  /* line 271, partials/_grid.scss */
  .d-3of5 {
    float: left;
    padding-right: 1.25em;
    width: 60%;
  }

  /* line 276, partials/_grid.scss */
  .d-4of5 {
    float: left;
    padding-right: 1.25em;
    width: 80%;
  }

  /* line 281, partials/_grid.scss */
  .d-1of6 {
    float: left;
    padding-right: 1.25em;
    width: 16.6666666667%;
  }

  /* line 286, partials/_grid.scss */
  .d-1of7 {
    float: left;
    padding-right: 1.25em;
    width: 14.2857142857%;
  }

  /* line 291, partials/_grid.scss */
  .d-2of7 {
    float: left;
    padding-right: 1.25em;
    width: 28.5714286%;
  }

  /* line 296, partials/_grid.scss */
  .d-3of7 {
    float: left;
    padding-right: 1.25em;
    width: 42.8571429%;
  }

  /* line 301, partials/_grid.scss */
  .d-4of7 {
    float: left;
    padding-right: 1.25em;
    width: 57.1428572%;
  }

  /* line 306, partials/_grid.scss */
  .d-5of7 {
    float: left;
    padding-right: 1.25em;
    width: 71.4285715%;
  }

  /* line 311, partials/_grid.scss */
  .d-6of7 {
    float: left;
    padding-right: 1.25em;
    width: 85.7142857%;
  }

  /* line 316, partials/_grid.scss */
  .d-1of8 {
    float: left;
    padding-right: 1.25em;
    width: 12.5%;
  }

  /* line 321, partials/_grid.scss */
  .d-1of9 {
    float: left;
    padding-right: 1.25em;
    width: 11.1111111111%;
  }

  /* line 326, partials/_grid.scss */
  .d-1of10 {
    float: left;
    padding-right: 1.25em;
    width: 10%;
  }

  /* line 331, partials/_grid.scss */
  .d-1of11 {
    float: left;
    padding-right: 1.25em;
    width: 9.09090909091%;
  }

  /* line 336, partials/_grid.scss */
  .d-1of12 {
    float: left;
    padding-right: 1.25em;
    width: 8.33%;
  }

  /* line 341, partials/_grid.scss */
  .d-9of24 {
    float: left;
    padding-right: 1.25em;
    width: 38%;
  }

  /* line 346, partials/_grid.scss */
  .d-15of24 {
    float: left;
    padding-right: 1.25em;
    width: 62%;
  }

  /* line 351, partials/_grid.scss */
  .t-up-column-no-pad {
    float: left;
    padding-right: 0 !important;
  }
}
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

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

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

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

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

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

/* line 39, modules/_alerts.scss */
.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

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

Stylesheet: Button Styles

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

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

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

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

*********************/
/* line 27, modules/_buttons.scss */
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, 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;
  -moz-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
/* line 44, modules/_buttons.scss */
.blue-btn:hover, .blue-btn:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
/* line 51, modules/_buttons.scss */
.blue-btn:active {
  top: 1px;
}

/* line 56, modules/_buttons.scss */
.grey-btn, .gform_button {
  border: 0 none;
  padding: 0 10px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  background: #666;
  transition: background-color 0.3s;
  color: white;
}
/* line 65, modules/_buttons.scss */
.grey-btn:hover, .gform_button:hover {
  background: #ff9900;
}

/* line 70, modules/_buttons.scss */
.gform_button {
  padding: 3px 10px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
/* line 78, modules/_buttons.scss */
.blue-btn {
  background-color: #2a455f;
}
/* line 82, modules/_buttons.scss */
.blue-btn:hover, .blue-btn:focus {
  background-color: #243b51;
}
/* line 87, modules/_buttons.scss */
.blue-btn:active {
  background-color: #22384d;
}

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

Stylesheet: Form Styles

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

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

******************************************************************/
/*********************
INPUTS
*********************/
/* line 24, modules/_forms.scss */
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #1e1e1e;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fff;
  border: 1px solid #666;
}
/* line 60, modules/_forms.scss */
input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  outline: none;
}
/* line 67, modules/_forms.scss */
input[type="text"].error, input[type="text"].is-invalid,
input[type="password"].error,
input[type="password"].is-invalid,
input[type="datetime"].error,
input[type="datetime"].is-invalid,
input[type="datetime-local"].error,
input[type="datetime-local"].is-invalid,
input[type="date"].error,
input[type="date"].is-invalid,
input[type="month"].error,
input[type="month"].is-invalid,
input[type="time"].error,
input[type="time"].is-invalid,
input[type="week"].error,
input[type="week"].is-invalid,
input[type="number"].error,
input[type="number"].is-invalid,
input[type="email"].error,
input[type="email"].is-invalid,
input[type="url"].error,
input[type="url"].is-invalid,
input[type="search"].error,
input[type="search"].is-invalid,
input[type="tel"].error,
input[type="tel"].is-invalid,
input[type="color"].error,
input[type="color"].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
/* line 79, modules/_forms.scss */
input[type="text"].success, input[type="text"].is-valid,
input[type="password"].success,
input[type="password"].is-valid,
input[type="datetime"].success,
input[type="datetime"].is-valid,
input[type="datetime-local"].success,
input[type="datetime-local"].is-valid,
input[type="date"].success,
input[type="date"].is-valid,
input[type="month"].success,
input[type="month"].is-valid,
input[type="time"].success,
input[type="time"].is-valid,
input[type="week"].success,
input[type="week"].is-valid,
input[type="number"].success,
input[type="number"].is-valid,
input[type="email"].success,
input[type="email"].is-valid,
input[type="url"].success,
input[type="url"].is-valid,
input[type="search"].success,
input[type="search"].is-valid,
input[type="tel"].success,
input[type="tel"].is-valid,
input[type="color"].success,
input[type="color"].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
/* line 91, modules/_forms.scss */
input[type="text"][disabled], input[type="text"].is-disabled,
input[type="password"][disabled],
input[type="password"].is-disabled,
input[type="datetime"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime-local"].is-disabled,
input[type="date"][disabled],
input[type="date"].is-disabled,
input[type="month"][disabled],
input[type="month"].is-disabled,
input[type="time"][disabled],
input[type="time"].is-disabled,
input[type="week"][disabled],
input[type="week"].is-disabled,
input[type="number"][disabled],
input[type="number"].is-disabled,
input[type="email"][disabled],
input[type="email"].is-disabled,
input[type="url"][disabled],
input[type="url"].is-disabled,
input[type="search"][disabled],
input[type="search"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="color"][disabled],
input[type="color"].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
/* line 97, modules/_forms.scss */
input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
input[type="password"][disabled]:focus,
input[type="password"][disabled]:active,
input[type="password"].is-disabled:focus,
input[type="password"].is-disabled:active,
input[type="datetime"][disabled]:focus,
input[type="datetime"][disabled]:active,
input[type="datetime"].is-disabled:focus,
input[type="datetime"].is-disabled:active,
input[type="datetime-local"][disabled]:focus,
input[type="datetime-local"][disabled]:active,
input[type="datetime-local"].is-disabled:focus,
input[type="datetime-local"].is-disabled:active,
input[type="date"][disabled]:focus,
input[type="date"][disabled]:active,
input[type="date"].is-disabled:focus,
input[type="date"].is-disabled:active,
input[type="month"][disabled]:focus,
input[type="month"][disabled]:active,
input[type="month"].is-disabled:focus,
input[type="month"].is-disabled:active,
input[type="time"][disabled]:focus,
input[type="time"][disabled]:active,
input[type="time"].is-disabled:focus,
input[type="time"].is-disabled:active,
input[type="week"][disabled]:focus,
input[type="week"][disabled]:active,
input[type="week"].is-disabled:focus,
input[type="week"].is-disabled:active,
input[type="number"][disabled]:focus,
input[type="number"][disabled]:active,
input[type="number"].is-disabled:focus,
input[type="number"].is-disabled:active,
input[type="email"][disabled]:focus,
input[type="email"][disabled]:active,
input[type="email"].is-disabled:focus,
input[type="email"].is-disabled:active,
input[type="url"][disabled]:focus,
input[type="url"][disabled]:active,
input[type="url"].is-disabled:focus,
input[type="url"].is-disabled:active,
input[type="search"][disabled]:focus,
input[type="search"][disabled]:active,
input[type="search"].is-disabled:focus,
input[type="search"].is-disabled:active,
input[type="tel"][disabled]:focus,
input[type="tel"][disabled]:active,
input[type="tel"].is-disabled:focus,
input[type="tel"].is-disabled:active,
input[type="color"][disabled]:focus,
input[type="color"][disabled]:active,
input[type="color"].is-disabled:focus,
input[type="color"].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

/* line 107, modules/_forms.scss */
input[type="password"] {
  letter-spacing: 0.3em;
}

/* line 112, modules/_forms.scss */
textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

/* line 119, modules/_forms.scss */
select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

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

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/* line 18, breakpoints/_base.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #1e1e1e;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.5px;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/*********************
LAYOUT & GRID STYLES
*********************/
/* line 75, breakpoints/_base.scss */
.wrap, .article-header {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

/*********************
LINK STYLES
*********************/
/* line 86, breakpoints/_base.scss */
a {
  color: #ff9900;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
/* line 89, breakpoints/_base.scss */
a:visited {
  color: #ff9900;
}
/* line 93, breakpoints/_base.scss */
a:hover, a:focus {
  color: #ff9900;
  outline: none;
}
/* line 104, breakpoints/_base.scss */
a:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: transparent;
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 118, breakpoints/_base.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
/* line 127, breakpoints/_base.scss */
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

/* line 132, breakpoints/_base.scss */
h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em;
}

/* line 137, breakpoints/_base.scss */
h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em;
}

/* line 143, breakpoints/_base.scss */
h3, .h3 {
  font-size: 1.125em;
}

/* line 147, breakpoints/_base.scss */
h4, .h4 {
  font-size: 1.1em;
  font-weight: 700;
}

/* line 152, breakpoints/_base.scss */
h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*********************
Text modifiers
*********************/
/* line 163, breakpoints/_base.scss */
.text-orange,
a.text-orange {
  color: #ff9900;
}

/* line 167, breakpoints/_base.scss */
a.text-orange:hover,
a.text-orange:focus {
  color: #d17d00;
}

/* line 171, breakpoints/_base.scss */
a.hover-orange:hover,
a.hover-orange:focus {
  color: #ff9900 !important;
}

/* line 176, breakpoints/_base.scss */
.text-blue,
a.text-blue {
  color: #2a455f;
}

/* line 180, breakpoints/_base.scss */
a.text-blue:hover,
a.text-blue:focus {
  color: #1c2e3f;
}

/* line 184, breakpoints/_base.scss */
a.hover-blue:hover,
a.hover-blue:focus {
  color: #2a455f !important;
}

/* line 189, breakpoints/_base.scss */
.text-purple,
a.text-purple {
  color: #6f9cb6;
}

/* line 193, breakpoints/_base.scss */
a.text-purple:hover,
a.text-purple:focus {
  color: #5386a4;
}

/* line 197, breakpoints/_base.scss */
a.hover-purple:hover,
a.hover-purple:focus {
  color: #6f9cb6 !important;
}

/* line 202, breakpoints/_base.scss */
.text-red,
a.text-red {
  color: #b60d0a;
}

/* line 206, breakpoints/_base.scss */
a.text-red:hover,
a.text-red:focus {
  color: #8a0a08;
}

/* line 210, breakpoints/_base.scss */
a.hover-red:hover,
a.hover-red:focus {
  color: #b60d0a !important;
}

/* line 215, breakpoints/_base.scss */
.text-green,
a.text-green {
  color: #00cc00;
}

/* line 219, breakpoints/_base.scss */
a.text-green:hover,
a.text-green:focus {
  color: #009e00;
}

/* line 223, breakpoints/_base.scss */
a.hover-green:hover,
a.hover-green:focus {
  color: #00cc00 !important;
}

/* line 228, breakpoints/_base.scss */
.text-gray,
a.text-gray {
  color: #666;
}

/* line 232, breakpoints/_base.scss */
a.text-gray:hover,
a.text-gray:focus {
  color: #4f4f4f;
}

/* line 236, breakpoints/_base.scss */
a.hover-gray:hover,
a.hover-gray:focus {
  color: #666 !important;
}

/* line 241, breakpoints/_base.scss */
.text-gray-lighter,
a.text-gray-lighter {
  color: #909090;
}

/* line 245, breakpoints/_base.scss */
a.text-gray-lighter:hover,
a.text-gray-lighter:focus {
  color: #797979;
}

/* line 249, breakpoints/_base.scss */
a.hover-lighter-gray:hover,
a.hover-lighter-gray:focus {
  color: #909090 !important;
}

/* line 254, breakpoints/_base.scss */
.text-black,
a.text-black {
  color: #1e1e1e;
}

/* line 258, breakpoints/_base.scss */
a.text-black:hover,
a.text-black:focus {
  color: #1e1e1e;
}

/* line 262, breakpoints/_base.scss */
a.hover-black:hover,
a.hover-black:focus {
  color: #1e1e1e !important;
}

/* line 267, breakpoints/_base.scss */
.text-white,
a.text-white {
  color: #fff;
}

/* line 271, breakpoints/_base.scss */
a.text-white:hover,
a.text-white:focus {
  color: #fff;
}

/* line 275, breakpoints/_base.scss */
a.hover-white:hover,
a.hover-white:focus {
  color: #fff !important;
}

/* line 280, breakpoints/_base.scss */
.text-underline {
  text-decoration: underline;
}

/*********************
HEADER STYLES
*********************/
/* line 292, breakpoints/_base.scss */
.main-header {
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}
/* line 300, breakpoints/_base.scss */
.home:not(.menu-mobile):not(.scrolled) .main-header {
  background-color: white;
  position: static;
}
/* line 305, breakpoints/_base.scss */
.menu-mobile .main-header {
  height: 47px;
}

/* line 310, breakpoints/_base.scss */
.main-logo {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 5;
}

/* line 316, breakpoints/_base.scss */
.main-logo-link {
  display: block;
}
/* line 4, partials/mixins/_btcf.scss */
.main-logo-link:after {
  content: "";
  display: table;
  clear: both;
}
/* line 320, breakpoints/_base.scss */
.main-logo-link img {
  display: block;
  float: left ;
}
/* line 325, breakpoints/_base.scss */
.menu-mobile .main-logo-link {
  height: 47px;
  width: 94px;
}
/* line 329, breakpoints/_base.scss */
.menu-mobile .main-logo-link img {
  height: 100%;
}

/*********************
NAVIGATION STYLES
*********************/
/* line 339, breakpoints/_base.scss */
.nav {
  border-bottom: 0;
  margin: 0;
  /* highlight current page */
}
/* line 344, breakpoints/_base.scss */
.nav li a {
  display: block;
  color: #666;
  text-decoration: none;
  padding: 0.75em;
}
/* line 361, breakpoints/_base.scss */
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}

/* line 381, breakpoints/_base.scss */
.main-navigation {
  display: none;
  width: calc(100% - 345px);
}



/* line 385, breakpoints/_base.scss */
.main-navigation .social-sharing-menu {
  display: none;
}

/* line 389, breakpoints/_base.scss */
.main-menu {
  float: right ;
}

/* line 394, breakpoints/_base.scss */
.menu-mobile .main-navigation {
  height: 47px;
  width: 47px;
  overflow: hidden;
  text-align: center;
}
/* line 401, breakpoints/_base.scss */
.menu-mobile .main-navigation:after {
  font-family: "FontAwesome";
  content: "\f0c9";
  position: absolute;
  right: 0;
  top: 0;
  height: 47px;
  width: 47px;
  background-color: #fff;
  text-align: center;
  line-height: 47px;
  font-size: 32px;
  cursor: pointer;
}
/* line 418, breakpoints/_base.scss */
.menu-mobile .main-navigation:hover:after {
  color: #ff9900;
}
/* line 422, breakpoints/_base.scss */
.menu-mobile .main-navigation.opened {
  overflow-y: scroll;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 4;
  background-color: #fff;
}
/* line 430, breakpoints/_base.scss */
.menu-mobile .main-navigation.opened:after {
  content: "\f00d";
}
/* line 435, breakpoints/_base.scss */
.menu-mobile .main-navigation .social-sharing-menu {
  position: relative;
  top: 0;
  padding: 0;
  margin: 20px auto 0;
  display: inline-block;
}
/* line 444, breakpoints/_base.scss */
.menu-mobile .main-navigation .social-sharing-item:last-child {
  margin-right: 0;
}
/* line 449, breakpoints/_base.scss */
.menu-mobile .main-navigation .social-sharing-link {
  font-weight: normal;
}
/* line 453, breakpoints/_base.scss */
.menu-mobile .main-menu {
  margin-top: 0;
  padding-top: 70px;
  padding-right: 0;
  width: 100vw;
}
/* line 459, breakpoints/_base.scss */
.menu-mobile .main-menu-item {
  float: none;
  margin: 0 0 10px !important;
  text-align: center;
}
/* line 464, breakpoints/_base.scss */
.menu-mobile .main-menu-item .main-menu-voice {
  font-size: 30px;
  line-height: 1.17;
  color: #666;
  text-decoration: none;
  font-weight: bold;
}
/* line 471, breakpoints/_base.scss */
.menu-mobile .main-menu-item .main-menu-voice:hover {
  color: #00cc00;
}

/*********************
POSTS & CONTENT STYLES
*********************/
/* line 483, breakpoints/_base.scss */
#container {
  padding-top: 94px;
}
/* line 486, breakpoints/_base.scss */
.home:not(.menu-mobile):not(.scrolled) #container {
  padding-top: 0;
}
/* line 489, breakpoints/_base.scss */
.menu-mobile #container {
  padding-top: 47px;
}

/* line 493, breakpoints/_base.scss */
.scrolled #container {
  padding-top: 188px;
}

/* line 497, breakpoints/_base.scss */
#content {
  margin-top: 110px;
}

/* line 501, breakpoints/_base.scss */
.hentry {
  background-color: #fff;
  border-radius: 0;
  margin-bottom: 0;
  border: 0 none;
}
/* line 516, breakpoints/_base.scss */
.hentry footer p {
  margin: 0;
}

/* line 523, breakpoints/_base.scss */
.single-title,
.page-title,
.entry-title {
  margin: 0;
}

/* line 531, breakpoints/_base.scss */
.article-header {
  margin-bottom: 10px;
  /**3*/
}

/* line 535, breakpoints/_base.scss */
.page-title {
  line-height: 1.1;
  font-size: 30px;
  font-weight: bold;
}

/* line 540, breakpoints/_base.scss */
.page-subtitle {
  margin: 0;
  line-height: 1.1;
  font-size: 20px;
  font-weight: bold;
}

/* line 546, breakpoints/_base.scss */
.page-inner-navigation {
  width: 100%;
  margin-top: 5px;
}

/* line 550, breakpoints/_base.scss */
.page-inner-navigation-list {
  margin: 0;
}

/* line 556, breakpoints/_base.scss */
.page-inner-navigation-link {
  text-decoration: none;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
}
/* line 4, partials/mixins/_btcf.scss */
.page-inner-navigation-link:after {
  content: "";
  display: table;
  clear: both;
}

/* post meta */
/* line 580, breakpoints/_base.scss */
.byline {
  color: #666;
  font-style: italic;
  margin: 0;
}

/* entry content */
/* line 589, breakpoints/_base.scss */
.entry-content {
  padding: 1.5em 1.5em 0;
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
}
/* line 592, breakpoints/_base.scss */
.entry-content p {
  margin: 0 0 1.5em;
}
/* line 611, breakpoints/_base.scss */
.entry-content table {
  width: 100%;
  border: 1px solid #eaedf2;
  margin-bottom: 1.5em;
}
/* line 616, breakpoints/_base.scss */
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 625, breakpoints/_base.scss */
.entry-content tr {
  border-bottom: 1px solid #eaedf2;
}
/* line 628, breakpoints/_base.scss */
.entry-content tr:nth-child(even) {
  background-color: #f8f9fa;
}
/* line 633, breakpoints/_base.scss */
.entry-content td {
  padding: 7px;
  border-right: 1px solid #eaedf2;
}
/* line 637, breakpoints/_base.scss */
.entry-content td:last-child {
  border-right: 0;
}
/* line 642, breakpoints/_base.scss */
.entry-content th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eaedf2;
  border-right: 1px solid #eaedf2;
}
/* line 647, breakpoints/_base.scss */
.entry-content th:last-child {
  border-right: 0;
}
/* line 652, breakpoints/_base.scss */
.entry-content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid #2a455f;
  font-style: italic;
  color: #666;
}
/* line 667, breakpoints/_base.scss */
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
/* line 674, breakpoints/_base.scss */
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
/* line 690, breakpoints/_base.scss */
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
/* line 699, breakpoints/_base.scss */
.entry-content pre {
  background: #1e1e1e;
  color: #f8f9fa;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

/* end .entry-content */
/* line 710, breakpoints/_base.scss */
.with-bullets {
  padding-left: 1em;
}
/* line 712, breakpoints/_base.scss */
.with-bullets li {
  list-style: outside disc;
}

/* line 717, breakpoints/_base.scss */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
/* line 723, breakpoints/_base.scss */
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
/* line 729, breakpoints/_base.scss */
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/* line 763, breakpoints/_base.scss */
.tags {
  margin: 0;
}

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

/* line 775, breakpoints/_base.scss */
.pagination {
  text-align: center;
}
/* line 777, breakpoints/_base.scss */
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
/* line 785, breakpoints/_base.scss */
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
}
/* line 791, breakpoints/_base.scss */
.pagination li:not(:last-child) {
  border-right: 1px solid #666;
}
/* line 795, breakpoints/_base.scss */
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.5em 0.75em;
  min-width: 1em;
  display: block;
  color: #ff9900;
}
/* line 807, breakpoints/_base.scss */
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: #ff9900;
  color: #fff;
}
/* line 813, breakpoints/_base.scss */
.pagination .current {
  cursor: default;
  color: #1e1e1e;
  font-weight: bold;
}
/* line 818, breakpoints/_base.scss */
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #1e1e1e;
}

/* fallback previous & next links */
/* line 828, breakpoints/_base.scss */
.wp-prev-next .prev-link {
  float: left;
}
/* line 831, breakpoints/_base.scss */
.wp-prev-next .next-link {
  float: right;
}

/******************************************************************
COMMENT STYLES
******************************************************************/
/******************************************************************
COMMENT FORM STYLES
******************************************************************/
/*********************
SIDEBARS & ASIDES
*********************/
/*********************
FOOTER STYLES
*********************/
/* line 1056, breakpoints/_base.scss */
.footer {
  clear: both;
  background-color: #fff;
  color: #666;
}

/* line 1061, breakpoints/_base.scss */
.lower-footer-wrapper,
.footer-inner-wrapper {
  border-top: 1px solid #1e1e1e;
}

/* line 1065, breakpoints/_base.scss */
.footer-inner-wrapper {
  padding: 30px 0;
}

/* line 1072, breakpoints/_base.scss */
.footer-navigation .footer-menu,
.footer-navigation .footer-secondary-menu,
.footer-secondary-navigation .footer-menu,
.footer-secondary-navigation .footer-secondary-menu {
  margin: 0;
}
/* line 1077, breakpoints/_base.scss */
.footer-navigation .footer-menu-voice,
.footer-navigation .footer-secondary-menu-voice,
.footer-secondary-navigation .footer-menu-voice,
.footer-secondary-navigation .footer-secondary-menu-voice {
  display: block;
  font-size: 15px;
  line-height: 1.33;
  font-weight: bold;
  text-decoration: none;
}

/* line 1086, breakpoints/_base.scss */
.footer-secondary-navigation,
.social-sharing-wrapper {
  margin-top: 20px;
}

/* line 1091, breakpoints/_base.scss */
.search-form-wrapper-footer,
.newsletter-subscription-wrapper {
  /* float: left;
  clear: both; */
}
/* line 58, partials/mixins/_form-normalization.scss */
.search-form-wrapper-footer button,
.search-form-wrapper-footer select,
.search-form-wrapper-footer textarea,
.search-form-wrapper-footer input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
.newsletter-subscription-wrapper button,
.newsletter-subscription-wrapper select,
.newsletter-subscription-wrapper textarea,
.newsletter-subscription-wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="file"]) {
  -webkit-appearance: none ;
  -moz-appearance: none ;
  appearance: none ;
  box-shadow: none ;
  border-radius: 0 ;
  border: 1px solid ;
  margin: 0 ;
  padding: 0 0.5em ;
}
/* line 40, partials/mixins/_form-normalization.scss */
.search-form-wrapper-footer button::-ms-expand,
.search-form-wrapper-footer select::-ms-expand,
.search-form-wrapper-footer textarea::-ms-expand,
.search-form-wrapper-footer input:not([type="radio"]):not([type="checkbox"]):not([type="file"])::-ms-expand,
.newsletter-subscription-wrapper button::-ms-expand,
.newsletter-subscription-wrapper select::-ms-expand,
.newsletter-subscription-wrapper textarea::-ms-expand,
.newsletter-subscription-wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="file"])::-ms-expand {
  display: none ;
}
/* line 34, partials/mixins/_form-normalization.scss */
.search-form-wrapper-footer button:-webkit-autofill,
.search-form-wrapper-footer select:-webkit-autofill,
.search-form-wrapper-footer textarea:-webkit-autofill,
.search-form-wrapper-footer input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):-webkit-autofill,
.newsletter-subscription-wrapper button:-webkit-autofill,
.newsletter-subscription-wrapper select:-webkit-autofill,
.newsletter-subscription-wrapper textarea:-webkit-autofill,
.newsletter-subscription-wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset ;
}
/* line 10, partials/mixins/_form-normalization.scss */
.search-form-wrapper-footer button:focus,
.search-form-wrapper-footer select:focus,
.search-form-wrapper-footer textarea:focus,
.search-form-wrapper-footer input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus,
.newsletter-subscription-wrapper button:focus,
.newsletter-subscription-wrapper select:focus,
.newsletter-subscription-wrapper textarea:focus,
.newsletter-subscription-wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus {
  outline: 0 none ;
}
/* line 67, partials/mixins/_form-normalization.scss */
.search-form-wrapper-footer textarea,
.newsletter-subscription-wrapper textarea {
  resize: none ;
}
/* line 79, partials/mixins/_form-normalization.scss */
.search-form-wrapper-footer input[type="button"]::-moz-focus-inner,
.search-form-wrapper-footer input[type="reset"]::-moz-focus-inner,
.search-form-wrapper-footer input[type="submit"]::-moz-focus-inner,
.search-form-wrapper-footer button::-moz-focus-inner,
.newsletter-subscription-wrapper input[type="button"]::-moz-focus-inner,
.newsletter-subscription-wrapper input[type="reset"]::-moz-focus-inner,
.newsletter-subscription-wrapper input[type="submit"]::-moz-focus-inner,
.newsletter-subscription-wrapper button::-moz-focus-inner {
  border: 0 ;
  padding: 0 ;
}
/* line 1096, breakpoints/_base.scss */
.search-form-wrapper-footer .search-form .search-form-heading,
.newsletter-subscription-wrapper .search-form .search-form-heading {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 0.9em;
}
/* line 1102, breakpoints/_base.scss */
.search-form-wrapper-footer .form-fieldset,
.newsletter-subscription-wrapper .form-fieldset {
  margin: 0 0 10px;
  padding: 0;
  border: 0 none;
}
/* line 1107, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper,
.newsletter-subscription-wrapper .gform_wrapper {
  margin: 10px 0px 20px;
}
/* line 1109, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper div.validation_error,
.newsletter-subscription-wrapper .gform_wrapper div.validation_error {
  display: none;
}
/* line 1113, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper li.gfield.gfield_error.gfield_contains_required,
.newsletter-subscription-wrapper .gform_wrapper li.gfield.gfield_error.gfield_contains_required {
  margin-top: 0px;
  margin-bottom: 0px !important;
  background-color: transparent;
  border-width: 0px;
}
/* line 1121, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper li.no-label label,
.newsletter-subscription-wrapper .gform_wrapper li.no-label label {
  display: none;
}
/* line 1127, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper li.no-top-label label.gfield_label,
.newsletter-subscription-wrapper .gform_wrapper li.no-top-label label.gfield_label {
  display: none;
}
/* line 1130, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper li.no-top-label .gfield_checkbox li input[type=checkbox],
.newsletter-subscription-wrapper .gform_wrapper li.no-top-label .gfield_checkbox li input[type=checkbox] {
  margin-top: 0px !important;
}
/* line 1134, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper li.no-top-label .gfield_checkbox label,
.newsletter-subscription-wrapper .gform_wrapper li.no-top-label .gfield_checkbox label {
  font-size: 0.8em;
  line-height: 2em;
}
/* line 1141, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper .top_label .gfield_error,
.newsletter-subscription-wrapper .gform_wrapper .top_label .gfield_error {
  width: 100%;
}
/* line 1145, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label,
.newsletter-subscription-wrapper .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
  margin-top: 0px;
  margin-left: 0px;
}
/* line 1150, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.newsletter-subscription-wrapper .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
  margin-top: 0px;
  margin-left: 0px;
  max-width: 100%;
}
/* line 1156, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description,
.newsletter-subscription-wrapper .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
  margin-left: 0px;
  padding: 0px !important;
}
/* line 1161, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper label.gfield_label + div.ginput_container,
.newsletter-subscription-wrapper .gform_wrapper label.gfield_label + div.ginput_container {
  margin-top: 0px;
}
/* line 1164, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper .top_label .gfield_label,
.newsletter-subscription-wrapper .gform_wrapper .top_label .gfield_label {
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
  margin: 0px;
}
/* line 1171, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_wrapper .gform_footer,
.newsletter-subscription-wrapper .gform_wrapper .gform_footer {
  margin: 0px;
  padding: 0px;
}
/* line 1181, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_body,
.newsletter-subscription-wrapper .gform_body {
  margin: 0 0 10px;
  padding: 0;
  border: 0 none;
}
/* line 1186, breakpoints/_base.scss */
.search-form-wrapper-footer .gform_body .top_label input.medium,
.newsletter-subscription-wrapper .gform_body .top_label input.medium {
  width: 100%;
}
/* line 1192, breakpoints/_base.scss */
.search-form-wrapper-footer input.newsletter-subscription-input,
.search-form-wrapper-footer .ginput_container input,
.newsletter-subscription-wrapper input.newsletter-subscription-input,
.newsletter-subscription-wrapper .ginput_container input {
  background-color: #fff;
  padding: 0 10px !important;
  height: 26px;
  width: 100%;
}
/* line 1200, breakpoints/_base.scss */
.search-form-wrapper-footer input.newsletter-subscription-input:focus,
.search-form-wrapper-footer .ginput_container input:focus,
.newsletter-subscription-wrapper input.newsletter-subscription-input:focus,
.newsletter-subscription-wrapper .ginput_container input:focus {
  background-color: #fff;
}
/* line 1204, breakpoints/_base.scss */
.search-form-wrapper-footer .newsletter-subscription-submit,
.search-form-wrapper-footer .gform_footer input.button,
.newsletter-subscription-wrapper .newsletter-subscription-submit,
.newsletter-subscription-wrapper .gform_footer input.button {
  background-color: #666;
  color: #fff;
  border: 1px solid #666;
  text-transform: uppercase;
  letter-spacing: 0;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
/* line 1213, breakpoints/_base.scss */
.search-form-wrapper-footer .newsletter-subscription-submit:hover,
.search-form-wrapper-footer .gform_footer input.button:hover,
.newsletter-subscription-wrapper .newsletter-subscription-submit:hover,
.newsletter-subscription-wrapper .gform_footer input.button:hover {
  background-color: #ff9900;
  border-color: #ff9900;
}
/* line 1219, breakpoints/_base.scss */
.search-form-wrapper-footer .search-form .input-search-label,
.newsletter-subscription-wrapper .search-form .input-search-label {
  width: 26px;
  height: 26px;
  line-height: 26px;
}
/* line 1223, breakpoints/_base.scss */
.search-form-wrapper-footer .search-form .input-search-label::before,
.newsletter-subscription-wrapper .search-form .input-search-label::before {
  width: 26px;
  height: 26px;
  line-height: 26px;
}
/* line 1230, breakpoints/_base.scss */
.search-form-wrapper-footer input,
.newsletter-subscription-wrapper input {
  height: 26px;
}
/* line 1231, breakpoints/_base.scss */
.search-form-wrapper-footer input[type="text"], .search-form-wrapper-footer input[type="search"],
.newsletter-subscription-wrapper input[type="text"],
.newsletter-subscription-wrapper input[type="search"] {
  width: 212px;
  max-width: 66.66%;
}
/* line 1235, breakpoints/_base.scss */
.search-form-wrapper-footer input[type="text"].input-search, .search-form-wrapper-footer input[type="search"].input-search,
.newsletter-subscription-wrapper input[type="text"].input-search,
.newsletter-subscription-wrapper input[type="search"].input-search {
  padding-left: 30px !important;
}
/* line 1239, breakpoints/_base.scss */
.search-form-wrapper-footer input[type="submit"],
.newsletter-subscription-wrapper input[type="submit"] {
  padding: 3px 10px !important;
}
/* line 1241, breakpoints/_base.scss */
.search-form-wrapper-footer input[type="submit"]#searchsubmit,
.newsletter-subscription-wrapper input[type="submit"]#searchsubmit {
  margin-top: 20px;
}

/* line 1250, breakpoints/_base.scss */
.newsletter-subscription-fieldset-legend,
.social-sharing-heading {
  margin: 0;
  padding: 0;
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
}

/* line 1259, breakpoints/_base.scss */
.newsletter-subscription-fieldset-legend {
  margin-bottom: 0px;
}

/* line 1264, breakpoints/_base.scss */
.social-sharing-subheading {
  margin: 0;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  color: #ff9900;
  display: inline-block;
}

/* line 1273, breakpoints/_base.scss */
.newsletter-subscription-label {
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
}

/* line 1279, breakpoints/_base.scss */
.social-sharing-menu {
  margin-top: 0px;
}
/* line 1281, breakpoints/_base.scss */
.social-sharing-menu .social-sharing-link {
  /* line-height: $icon-height;
  font-size: $icon-height; */
  line-height: 25px;
  font-size: 25px;
  color: #666;
  text-decoration: none;
}
/* line 1289, breakpoints/_base.scss */
.social-sharing-menu .social-sharing-link:hover {
  color: #ff9900;
}
/* line 1293, breakpoints/_base.scss */
.social-sharing-menu .icon-vine {
  font-size: 30px;
}

/* line 1298, breakpoints/_base.scss */
.language-selection-wrapper {
  padding: 30px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 1302, breakpoints/_base.scss */
.language-selection-wrapper .language-selection-heading,
.language-selection-wrapper .language-selection-list,
.language-selection-wrapper .language-selection-item {
  display: inline-block;
  margin: 0;
  font-size: 14px;
  line-height: 2.14;
}
/* line 1310, breakpoints/_base.scss */
.language-selection-wrapper .language-selection-item:not(:last-child) {
  border-right: 1px solid #666;
}
/* line 1313, breakpoints/_base.scss */
.language-selection-wrapper .language-selection-item {
  padding: 0 0.5em;
  line-height: 20px;
  margin: 5px 0;
}
/* line 1318, breakpoints/_base.scss */
.language-selection-wrapper .language-selection-link {
  text-decoration: none;
  color: #1e1e1e;
}
/* line 1322, breakpoints/_base.scss */
.language-selection-wrapper .current-language {
  font-weight: bold;
}
/* line 1325, breakpoints/_base.scss */
.language-selection-wrapper .language-selection-flag {
  margin-right: 0.5em;
}

/* line 1330, breakpoints/_base.scss */
.copyright {
  padding: 30px 0;
  text-align: right;
  font-size: 10px;
}

/*********************
CONTENTS
*********************/
/* line 1341, breakpoints/_base.scss */
.block-content {
  margin-bottom: 30px;
}

/* line 1345, breakpoints/_base.scss */
.block-header {
  margin-bottom: 15px;
}

/* line 1348, breakpoints/_base.scss */
.block-heading,
.block-subheading,
.block-supheading {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.07;
}
/* line 1356, breakpoints/_base.scss */
.block-heading.no-bold,
.block-subheading.no-bold,
.block-supheading.no-bold {
  font-weight: normal;
}

/* line 1360, breakpoints/_base.scss */
.block-supheading,
.block-subheading {
  font-size: 20px;
}

/* Homepage accordion - @begin */
/* line 1366, breakpoints/_base.scss */
.accordion-block {
  height: auto;
}
/* line 1369, breakpoints/_base.scss */
.accordion-block .places-accordion {
  margin: 0;
  overflow: hidden;
  position: relative;
}
/* line 1374, breakpoints/_base.scss */
.accordion-block .places-item {
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: width 0.5s, left 0.5s;
  -moz-transition: width 0.5s, left 0.5s;
  transition: width 0.5s, left 0.5s;
  -webkit-tap-highlight-color: transparent;
}
/* line 1381, breakpoints/_base.scss */
.accordion-block .places-item.opened {
  cursor: default;
}
/* line 1388, breakpoints/_base.scss */
.accordion-block .places-voice {
  display: block;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left top;
}
/* line 1395, breakpoints/_base.scss */
.accordion-block .places-voice-label {
  opacity: 1;
  height: auto;
  overflow: hidden;
  font-weight: bold;
  line-height: 1.1;
  color: #1e1e1e;
  font-size: 17px;
  letter-spacing: -0.05em;
  -webkit-transition: opacity 0.3s, height 0.3s, right 0.3s;
  -moz-transition: opacity 0.3s, height 0.3s, right 0.3s;
  transition: opacity 0.3s, height 0.3s, right 0.3s;
}
/* line 1409, breakpoints/_base.scss */
.accordion-block .collapsed .places-voice-label {
  opacity: 0;
  height: 0;
  min-height: 0;
}
/* line 1416, breakpoints/_base.scss */
.accordion-block .places-infos,
.accordion-block .places-close-button,
.accordion-block .places-goto-button {
  position: absolute;
  opacity: 0;
}
/* line 1423, breakpoints/_base.scss */
.accordion-block :not(.opened) .places-infos {
  -webkit-transition: opacity 0.3s linear 0s;
  -moz-transition: opacity 0.3s linear 0s;
  transition: opacity 0.3s linear 0s;
}
/* line 1427, breakpoints/_base.scss */
.accordion-block :not(.opened) .places-close-button,
.accordion-block :not(.opened) .places-goto-button {
  top: -100%;
  -webkit-transition: opacity 0.3s linear 0s, top 0 linear 0.5s;
  -moz-transition: opacity 0.3s linear 0s, top 0 linear 0.5s;
  transition: opacity 0.3s linear 0s, top 0 linear 0.5s;
}
/* line 1434, breakpoints/_base.scss */
.accordion-block .opened .places-close-button,
.accordion-block .opened .places-goto-button {
  -webkit-transition: opacity 0.3s linear 0.5s;
  -moz-transition: opacity 0.3s linear 0.5s;
  transition: opacity 0.3s linear 0.5s;
  opacity: 1;
  top: -30px;
}
/* line 1440, breakpoints/_base.scss */
.accordion-block .opened .places-goto-button {
  top: auto;
  bottom: 0;
}
/* line 1444, breakpoints/_base.scss */
.accordion-block .opened .places-infos {
  display: block;
  -webkit-transition: opacity 0.3s linear 0.5s;
  -moz-transition: opacity 0.3s linear 0.5s;
  transition: opacity 0.3s linear 0.5s;
  opacity: 1;
}
/* line 1450, breakpoints/_base.scss */
.accordion-block .places-close-button,
.accordion-block .places-goto-button {
  font-size: 37px;
  line-height: 37px;
  right: 10px;
  text-align: right;
  text-decoration: none;
}
/* line 1458, breakpoints/_base.scss */
.accordion-block .places-goto-button {
  font-size: 18.5px;
  line-height: 18.5px;
}
/* line 1462, breakpoints/_base.scss */
.accordion-block .places-goto-button .icon-label {
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
/* line 1466, breakpoints/_base.scss */
.accordion-block .places-goto-button:hover {
  color: #666;
}
/* line 1468, breakpoints/_base.scss */
.accordion-block .places-goto-button:hover .icon-label {
  color: #ff9900;
}
/* line 1473, breakpoints/_base.scss */
.accordion-block .places-infos {
  overflow-y: auto;
  text-align: left;
  margin-top: 10px;
  height: calc( 100% - (10px*9.5) );
}
/* line 1479, breakpoints/_base.scss */
.accordion-block .places-infos .block-heading {
  font-size: 20px;
  margin-bottom: 10px;
}
/* line 1483, breakpoints/_base.scss */
.accordion-block .places-infos .block-caption {
  padding-top: 10px;
}

/* Homepage accordion - @end */
/* line 1489, breakpoints/_base.scss */
.palazzo-fava,
.palazzo-fava-en {
  background-image: url("../images/palazzo-fava.png");
}

/* line 1493, breakpoints/_base.scss */
.palazzo-pepoli,
.palazzo-pepoli-en {
  background-image: url("../images/palazzo-pepoli.png");
}

/* line 1497, breakpoints/_base.scss */
.san-giorgio-in-poggiale,
.san-giorgio-in-poggiale-en {
  background-image: url("../images/san-giorgio.png");
}

/* line 1501, breakpoints/_base.scss */
.santa-maria-della-vita,
.santa-maria-della-vita-en {
  background-image: url("../images/santa-maria-vita.png");
}

/* line 1505, breakpoints/_base.scss */
.casa-saraceni,
.casa-saraceni-en {
  background-image: url("../images/casa-saraceni.png");
}

/* line 1509, breakpoints/_base.scss */
.san-colombano,
.san-colombano-en {
  background-image: url("../images/san-colombano.png");
}

/* line 1513, breakpoints/_base.scss */
.santa-cristina,
.santa-cristina-en {
  background-image: url("../images/santa-cristina.png");
}

/* line 1518, breakpoints/_base.scss */
.block-filter {
  margin-bottom: 30px;
  position: relative;
}
/* line 1522, breakpoints/_base.scss */
.block-filter .filter-heading,
.block-filter .filter-menu,
.block-filter .active-filters {
  margin: 0;
  font-size: 18px;
  line-height: 1;
}
/* line 1530, breakpoints/_base.scss */
.block-filter .active-filters {
  position: absolute;
  right: 0;
  top: calc( 100% + (10px*.5) );
}
/* line 1536, breakpoints/_base.scss */
.block-filter .filter-heading {
  font-weight: lighter;
}
/* line 1540, breakpoints/_base.scss */
.block-filter .filter-item {
  display: block;
  padding: 0 5px;
}
/* line 1543, breakpoints/_base.scss */
.block-filter .filter-item:not(:nth-last-child(2)):not(:last-child):not(.order-label) {
  border-right: 1px solid #1e1e1e;
}
/* line 1547, breakpoints/_base.scss */
.block-filter .filter-item.order-label {
  margin-left: -2px;
  padding-left: 10px;
  background-color: #fff;
}
/* line 1554, breakpoints/_base.scss */
.block-filter .filter-voice,
.block-filter .submenu-voice {
  font-weight: bold;
  text-decoration: none;
}
/* line 1560, breakpoints/_base.scss */
.block-filter .block-filter-submenus {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
/* line 4, partials/mixins/_btcf.scss */
.block-filter .block-filter-submenus:after {
  content: "";
  display: table;
  clear: both;
}
/* line 1568, breakpoints/_base.scss */
.block-filter .filter-submenu {
  z-index: 1;
  position: absolute;
  top: 0;
  margin: 0 0 0 -5px;
  padding: 10px 20px 10px 5px;
  background-color: #fff;
}
/* line 4, partials/mixins/_btcf.scss */
.block-filter .filter-submenu:after {
  content: "";
  display: table;
  clear: both;
}
/* line 1578, breakpoints/_base.scss */
.block-filter .submenu-item {
  line-height: 1.1;
}
/* line 1582, breakpoints/_base.scss */
.block-filter .reset-item {
  margin-top: 10px;
  border-top: 1px solid #666;
}
/* line 1586, breakpoints/_base.scss */
.block-filter .reset-button {
  position: relative;
  display: block;
  padding-left: 1.2em;
  text-decoration: none;
}
/* line 1592, breakpoints/_base.scss */
.block-filter .reset-button:before {
  content: "\f00d";
  position: absolute;
  left: 0;
  height: 100%;
  width: 1em;
  font-family: "FontAwesome";
  font-size: 1.2em;
  line-height: 1.2em;
  color: #1e1e1e;
}
/* line 1604, breakpoints/_base.scss */
.block-filter .reset-button.active-filter-reset {
  display: inline-block;
  padding-left: 1.2em;
  padding-right: 1.2em;
  font-size: 0.8em;
  line-height: 1.25em;
  font-weight: bold;
}
/* line 1611, breakpoints/_base.scss */
.block-filter .reset-button.active-filter-reset:before {
  left: auto;
  right: 0;
  font-size: 1em;
  line-height: 1.25em;
}

/* line 1621, breakpoints/_base.scss */
.block-inner-wrapper {
  margin: 0;
  padding: 0;
}

/* line 1626, breakpoints/_base.scss */
.block-figure {
  position: relative;
  display: block;
}

/* line 1631, breakpoints/_base.scss */
.block-figure-link,
.block-image-wrapper:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
/* line 1640, breakpoints/_base.scss */
.column .block-figure-link, .column
.block-image-wrapper:after {
  padding-right: 1.25em;
}

/* line 1645, breakpoints/_base.scss */
.block-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: 50%;
}
/* line 1652, breakpoints/_base.scss */
.block-image-wrapper .block-image {
  display: none;
}
/* line 1656, breakpoints/_base.scss */
.block-image-wrapper:after {
  content: '';
  background-color: rgba(30, 30, 30, 0);
}

/* line 1661, breakpoints/_base.scss */
.block-image-link {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(30, 30, 30, 0);
}

/* line 1671, breakpoints/_base.scss */
img.block-image {
  display: block;
  margin-bottom: 0;
  height: 100%;
  width: auto;
}
/* line 1677, breakpoints/_base.scss */
img.block-image.horizontal-image {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* line 1684, breakpoints/_base.scss */
.block-caption {
  margin: 0;
  padding: 0;
}

/* line 1688, breakpoints/_base.scss */
.block-caption-heading {
  margin: 0;
  padding: 0;
  color: #666;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

/* line 1698, breakpoints/_base.scss */
.block-caption-supheading,
.block-caption-subheading {
  margin: 5px 0 0;
  padding: 0;
  font-size: 15px;
  line-height: 1;
}

/* line 1705, breakpoints/_base.scss */
.block-caption-supheading {
  color: #ff9900;
  margin: 0 0 5px;
}

/* line 1710, breakpoints/_base.scss */
.block-caption-label {
  display: inline-block;
  padding: 0 6px 0 0;
}
/* line 1713, breakpoints/_base.scss */
.block-caption-label:first-child {
  padding-left: 0;
}
/* line 1716, breakpoints/_base.scss */
.block-caption-label:not(:last-child) {
  margin-right: 6px;
  border-right: 1px solid #1e1e1e;
}

/* line 1721, breakpoints/_base.scss */
.block-caption-what {
  color: #ff9900;
}

/* line 1724, breakpoints/_base.scss */
.block-caption-where {
  color: #2a455f;
}

/* line 1727, breakpoints/_base.scss */
.block-caption-when {
  color: #6f9cb6;
}

/* line 1737, breakpoints/_base.scss */
.highlight-block .block-caption,
.page-generic .main-event .block-caption,
.page-generic .other-event .block-caption {
  background-color: rgba(255, 255, 255, 0.85);
  margin: 0;
  padding: 10px 0 0;
}
/* line 1743, breakpoints/_base.scss */
.highlight-block .block-caption-heading,
.page-generic .main-event .block-caption-heading,
.page-generic .other-event .block-caption-heading {
  font-size: 25px;
  line-height: 1;
}

/* line 1751, breakpoints/_base.scss */
.home .highlight-block .block-figure-link {
  padding-right: 1.25em;
}

/* line 1757, breakpoints/_base.scss */
.exhibits-block {
  padding-bottom: 10px;
}
/* line 1760, breakpoints/_base.scss */
.exhibits-block .block-figure {
  height: 210px;
  margin-bottom: 1.25em;
}
/* line 1764, breakpoints/_base.scss */
.exhibits-block .block-image-wrapper {
  height: 120px;
}
/* line 1767, breakpoints/_base.scss */
.exhibits-block .block-figure-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
/* line 1774, breakpoints/_base.scss */
.exhibits-block .block-caption {
  /* position: absolute;
  bottom: 0;
  left: 0; */
  padding-top: 10px;
  padding-right: 1.25em;
  background-color: #fff;
}
/* line 1782, breakpoints/_base.scss */
.exhibits-block .block-inner-wrapper {
  min-height: 120px;
}
/* line 1785, breakpoints/_base.scss */
.exhibits-block .empty-result-label {
  display: block;
}
/* line 1789, breakpoints/_base.scss */
.exhibits-block .block-caption-where:not(:last-child) {
  border-right: 0px solid #1e1e1e;
}
/* line 1793, breakpoints/_base.scss */
.exhibits-block .block-caption-when {
  display: block;
  margin-top: 2px;
}

/* line 1800, breakpoints/_base.scss */
.text-column {
  margin-bottom: 25px;
}
/* line 1803, breakpoints/_base.scss */
.text-column:empty {
  display: none;
}

/* line 1807, breakpoints/_base.scss */
.visual-column {
  position: relative;
}

/* line 1811, breakpoints/_base.scss */
.article-block-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 0;
}

/* line 1817, breakpoints/_base.scss */
.collections-page p,
.article-block-text {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.39;
  margin: 0;
  padding-right: 1.25em;
}
/* line 1824, breakpoints/_base.scss */
.collections-page p:not(:last-child),
.article-block-text:not(:last-child) {
  margin-bottom: 20px;
}
/* line 1827, breakpoints/_base.scss */
.collections-page p:not(:last-child).no-bottom,
.article-block-text:not(:last-child).no-bottom {
  margin-bottom: 0;
}

/* line 1833, breakpoints/_base.scss */
.list-title {
  font-weight: bold;
}
/* line 1836, breakpoints/_base.scss */
.list-title.no-bottom {
  margin-bottom: 0;
}

/* line 1841, breakpoints/_base.scss */
.article-block-list {
  margin-top: 0;
  font-size: 18px;
}
/* line 1845, breakpoints/_base.scss */
.article-block-list .item {
  display: block;
  width: 400px;
  height: 25px;
}
/* line 1850, breakpoints/_base.scss */
.article-block-list .item:before {
  margin-right: 10px;
  color: #ff9900;
  min-width: 1.2em;
}
/* line 1857, breakpoints/_base.scss */
.article-block-list .link-mail {
  text-decoration: none;
}

/* line 1863, breakpoints/_base.scss */
.read-more {
  display: inline-block;
  padding: 5px 10px;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #1e1e1e;
  background-color: #ff9900;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
/* line 1875, breakpoints/_base.scss */
.read-more:hover {
  color: #1e1e1e;
  background-color: #ffad33;
}

/* line 1881, breakpoints/_base.scss */
.info-block {
  margin-top: 30px;
}

/* line 1884, breakpoints/_base.scss */
.info-link,
.info-heading {
  margin: 0;
  font-size: 25px;
  line-height: 1;
  font-weight: bold;
}

/* line 1891, breakpoints/_base.scss */
.info-text,
.info-text-value {
  margin: 0;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  color: #666;
}
/* line 1899, breakpoints/_base.scss */
.info-text.more-bottom,
.info-text-value.more-bottom {
  margin-bottom: 25px;
}

/* line 1904, breakpoints/_base.scss */
.info-text.with-prices {
  position: relative;
}
/* line 4, partials/mixins/_btcf.scss */
.info-text.with-prices:after {
  content: "";
  display: table;
  clear: both;
}

/* line 1909, breakpoints/_base.scss */
.info-text-value {
  font-size: 15px;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 5px;
  letter-spacing: 0;
}

/* line 1916, breakpoints/_base.scss */
.info-text-value-item {
  display: block;
  letter-spacing: 0;
}

/* line 1920, breakpoints/_base.scss */
.info-link {
  text-decoration: none;
  position: relative;
}
/* line 1924, breakpoints/_base.scss */
.info-link:after {
  content: "";
  position: absolute;
  top: 8px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #ff9900;
  border-right: 3px solid #ff9900;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
/* line 1939, breakpoints/_base.scss */
.info-link:hover:after {
  border-color: #d17d00;
}

/* line 1946, breakpoints/_base.scss */
.exhibition-images-block .visual-column:not(:last-child) {
  margin-bottom: 30px;
}

/* line 1951, breakpoints/_base.scss */
.block-video {
  margin-bottom: 20px;
}

/* line 1955, breakpoints/_base.scss */
.events-block,
.chosen-block {
  margin-bottom: 10px;
}
/* line 1959, breakpoints/_base.scss */
.events-block .block-figure-link,
.chosen-block .block-figure-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
/* line 1966, breakpoints/_base.scss */
.events-block .block-figure,
.chosen-block .block-figure {
  margin-bottom: calc( (10px*3) - 1.25em );
  height: 175px;
}
/* line 1970, breakpoints/_base.scss */
.events-block .block-caption,
.chosen-block .block-caption {
  margin-bottom: 10px;
}
/* line 1974, breakpoints/_base.scss */
.events-block .block-caption-heading,
.chosen-block .block-caption-heading {
  line-height: 20px;
  min-height: 40px;
  max-height: 40px;
  height: 40px;
  overflow: hidden;
}
/* line 1984, breakpoints/_base.scss */
.events-block .block-image-wrapper,
.chosen-block .block-image-wrapper {
  height: 120px;
}

/* line 1990, breakpoints/_base.scss */
.caption-first .block-caption-heading {
  min-height: 42px;
  max-height: 42px;
  overflow: hidden;
}
/* line 1995, breakpoints/_base.scss */
.caption-first .block-caption-heading:not(:only-child) {
  min-height: 0;
}
/* line 2000, breakpoints/_base.scss */
.service-type-block .caption-first .block-caption-subheading {
  padding-right: 1.25rem;
  height: 50px;
  max-height: 50px;
  overflow: hidden;
  line-height: 1.3;
}

/* line 2009, breakpoints/_base.scss */
.partner-block {
  margin-bottom: calc( (10px*3) - 1.25em );
  padding-bottom: 10px;
}
/* line 2013, breakpoints/_base.scss */
.partner-block .block-inner-wrapper {
  overflow: hidden;
  margin-right: -1.25em;
}

/* line 2022, breakpoints/_base.scss */
.partner-block .block-figure,
.no-caption-block .block-figure {
  margin-bottom: 1.25em;
}
/* line 2026, breakpoints/_base.scss */
.partner-block .block-image-wrapper,
.no-caption-block .block-image-wrapper {
  position: relative;
}
/* line 2030, breakpoints/_base.scss */
.partner-block .block-caption,
.no-caption-block .block-caption {
  display: none;
}

/* line 2035, breakpoints/_base.scss */
.partner-block .block-image-wrapper {
  background-repeat: no-repeat;
  background-size: contain;
}

/* line 2041, breakpoints/_base.scss */
.banner-block,
.inner-heading-block {
  margin-bottom: 0;
}

/* line 2046, breakpoints/_base.scss */
.inner-heading-block {
  margin: 20px 0;
}
/* line 2049, breakpoints/_base.scss */
.inner-heading-block .article-heading {
  margin: 0;
  line-height: 1;
  font-size: 25px;
  font-weight: bold;
}

/* line 2060, breakpoints/_base.scss */
.page-generic .main-event .block-image-wrapper,
.page-generic .other-event .block-image-wrapper {
  margin-bottom: 20px;
}

/* line 2066, breakpoints/_base.scss */
.top-bordered {
  border-top: 1px solid #1e1e1e;
}

/* line 2069, breakpoints/_base.scss */
.top-padded {
  padding-top: 30px;
}

/* line 2074, breakpoints/_base.scss */
.page-inner-articles .block-heading {
  font-size: 20px;
}
/* line 2077, breakpoints/_base.scss */
.page-inner-articles .article-block-text {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.33;
}

/* line 2085, breakpoints/_base.scss */
.gallery-block .block-figure {
  margin-bottom: 1.25em;
}
/* line 2089, breakpoints/_base.scss */
.gallery-block .block-caption {
  height: 80px;
  max-height: 80px;
}
/* line 2093, breakpoints/_base.scss */
.gallery-block .block-caption-heading {
  font-size: 15px;
}
/* line 2096, breakpoints/_base.scss */
.gallery-block .block-caption-heading:only-child {
  margin-bottom: 15px;
}
/* line 2100, breakpoints/_base.scss */
.gallery-block .block-caption-subheading {
  color: #666;
}

/* line 2105, breakpoints/_base.scss */
.info-list .info-item {
  display: block;
  position: relative;
  padding-left: 1.6em;
}
/* line 2110, breakpoints/_base.scss */
.info-list .info-item:before {
  content: '';
  position: absolute;
  left: 2px;
  line-height: 35px;
  font-family: "FontAwesome";
  font-size: 25px;
  width: 1.2em;
  color: #ff9900;
}
/* line 2120, breakpoints/_base.scss */
.educationals-tabs-block .info-list .info-item:before {
  font-size: 18px;
  line-height: 1.39;
}
/* line 2126, breakpoints/_base.scss */
.info-list .info-item,
.info-list .info-text {
  font-size: 25px;
  line-height: 1.4;
}
/* line 2131, breakpoints/_base.scss */
.info-list .info-text-link {
  text-decoration: none;
}
/* line 2135, breakpoints/_base.scss */
.info-list .block-info-generic {
  max-height: none;
}
/* line 2138, breakpoints/_base.scss */
.info-list .block-info-generic .info-text {
  font-size: 20px;
  line-height: 1.25;
}
/* line 2145, breakpoints/_base.scss */
.info-list .block-info-pricing .info-text,
.info-list .block-info-pricing .info-text-value,
.info-list .block-info-directions .info-text,
.info-list .block-info-directions .info-text-value {
  width: 75%;
}
/* line 2152, breakpoints/_base.scss */
.educationals-tabs-block .info-list .info-item,
.educationals-tabs-block .info-list .info-text,
.educationals-tabs-block .info-list .info-text-value {
  font-size: 18px;
  line-height: 1.39;
}
/* line 2158, breakpoints/_base.scss */
.educationals-tabs-block .info-list .info-text-value {
  margin-bottom: 10px;
}
/* line 2163, breakpoints/_base.scss */
.info-list .info-opener {
  position: relative;
  padding-right: 25px;
  margin-bottom: 10px;
}
/* line 2168, breakpoints/_base.scss */
.info-list .info-opener:after {
  content: '';
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  border-right: 5px solid #ff9900;
  border-bottom: 5px solid #ff9900;
  top: 15%;
  right: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* line 2181, breakpoints/_base.scss */
.info-list .info-opener.opened:after {
  top: auto;
  bottom: 15%;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* line 2190, breakpoints/_base.scss */
.palace-header-inner-wrapper {
  width: 100%;
  position: relative;
}
/* line 2194, breakpoints/_base.scss */
.palace-header-inner-wrapper .view-all-button {
  position: absolute;
  height: 20px;
  right: 0;
  bottom: 5px;
  text-decoration: none;
}

/* line 2205, breakpoints/_base.scss */
.educationals-tabs-block .tabs-list {
  margin: 0 0 30px;
}
/* line 2208, breakpoints/_base.scss */
.educationals-tabs-block .tab-item {
  min-height: 45px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #666;
}
/* line 2214, breakpoints/_base.scss */
.educationals-tabs-block .tab-item.active {
  border-top: 2px solid #666;
  border-left: 2px solid #666;
  border-right: 2px solid #666;
  border-bottom: 2px solid #fff;
}
/* line 2220, breakpoints/_base.scss */
.educationals-tabs-block .tab-item.active:first-child {
  border-left: 2px solid #fff;
}
/* line 2223, breakpoints/_base.scss */
.educationals-tabs-block .tab-item.active:last-child {
  border-right: 2px solid #fff;
}
/* line 2227, breakpoints/_base.scss */
.educationals-tabs-block .tab-item.active .tab-link {
  color: #000;
}
/* line 2232, breakpoints/_base.scss */
.educationals-tabs-block .tab-link {
  display: block;
  margin: 0;
  padding: 5px 10px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: bold;
  text-decoration: none;
}
/* line 2242, breakpoints/_base.scss */
.educationals-tabs-block .tab-inner-content {
  min-height: 20.5px;
}
/* line 2244, breakpoints/_base.scss */
.educationals-tabs-block .tab-inner-content:not(:first-child) {
  margin-top: 20px;
}
/* line 2248, breakpoints/_base.scss */
.educationals-tabs-block .info-list {
  margin: 25px 0 0;
}
/* line 2251, breakpoints/_base.scss */
.educationals-tabs-block .text-column {
  font-size: 18px;
  line-height: 1.39;
}
/* line 2255, breakpoints/_base.scss */
.educationals-tabs-block .tab-content-heading,
.educationals-tabs-block .tab-content-text {
  margin: 0;
  padding-right: 20px;
}

/* line 2262, breakpoints/_base.scss */
.educational-infos .article-block-text {
  margin: 0;
}

/* line 2267, breakpoints/_base.scss */
.educational-services-download {
  height: auto;
}
/* line 2270, breakpoints/_base.scss */
.educational-services-download:hover .educational-services-download-label {
  color: #ff9900;
}

/* line 2279, breakpoints/_base.scss */
.palace-services-block .block-figure-link,
.events-block .block-figure-link,
.chosen-block .block-figure-link,
.educational-services-block .block-figure-link {
  text-decoration: none;
}
/* line 2283, breakpoints/_base.scss */
.palace-services-block .block-figure-link:hover .block-caption-heading,
.events-block .block-figure-link:hover .block-caption-heading,
.chosen-block .block-figure-link:hover .block-caption-heading,
.educational-services-block .block-figure-link:hover .block-caption-heading {
  color: #ff9900;
}

/* line 2292, breakpoints/_base.scss */
.palace-services-block .block-figure .block-figure-link {
  position: relative;
  padding-right: 0px;
}
/* line 2297, breakpoints/_base.scss */
.palace-services-block .block-figure .block-image-wrapper {
  height: 140px;
}

/* line 2303, breakpoints/_base.scss */
.educational-services-block {
  margin-bottom: 0;
}
/* line 2306, breakpoints/_base.scss */
.educational-services-block .block-figure {
  margin-bottom: 30px;
}
/* line 2309, breakpoints/_base.scss */
.educational-services-block .block-caption-heading {
  font-size: 30px;
  line-height: 1;
  color: #1e1e1e;
}

/* line 2318, breakpoints/_base.scss */
.educational-other-link {
  display: inline-block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-decoration: none;
  padding-right: 10px;
}
/* line 2325, breakpoints/_base.scss */
.educational-other-link:not(:first-child) {
  padding-left: 10px;
}
/* line 2328, breakpoints/_base.scss */
.educational-other-link:not(:last-child) {
  border-right: 2px solid #1e1e1e;
}

/* line 2343, breakpoints/_base.scss */
.educational-details-items-list .article-block-list .item {
  width: auto;
  min-height: 25px;
  height: auto;
}
/* line 2350, breakpoints/_base.scss */
.educational-details-items-list .details-item-voice:not(:first-child) {
  margin-top: 20px;
}

/* line 2355, breakpoints/_base.scss */
.details-item-link,
.details-item-heading {
  text-decoration: none;
}
/* line 2359, breakpoints/_base.scss */
.details-item-link:before,
.details-item-heading:before {
  content: "• ";
}

/* line 2365, breakpoints/_base.scss */
.details-item-header {
  margin-bottom: 20px;
}
/* line 2368, breakpoints/_base.scss */
.details-item-header .block-subheading {
  font-weight: normal;
}

/* line 2373, breakpoints/_base.scss */
.details-item-voice,
.details-item-voice .block-subheading {
  font-size: 18px;
}

/* line 2378, breakpoints/_base.scss */
.details-item-voice .text-column {
  margin-bottom: 20px;
}
/* line 2382, breakpoints/_base.scss */
.details-item-voice .article-block-list:last-child {
  margin-bottom: 0;
}

/* line 2387, breakpoints/_base.scss */
.back-to-top-link {
  padding-right: 1.25em;
  display: inline-block;
  width: auto;
  text-decoration: none;
  font-weight: bold;
  height: 24px;
  margin-top: -20px;
}

/* line 2396, breakpoints/_base.scss */
.back-to-top-label {
  padding-left: 0.25em;
}

/* line 2402, breakpoints/_base.scss */
.buildings-block .block-caption-heading {
  font-size: 30px;
  line-height: 1;
  min-height: 62px;
  max-height: 62px;
  margin-top: 20px;
}
/* line 2411, breakpoints/_base.scss */
.buildings-block .caption-block-text {
  min-height: 40px;
  max-height: 40px;
}

/* line 2417, breakpoints/_base.scss */
.plan-icon-list {
  margin-bottom: 0;
  height: 30px;
}

/* line 2422, breakpoints/_base.scss */
.plan-item {
  width: auto;
}
/* line 2425, breakpoints/_base.scss */
.plan-item .plan-link {
  color: #1e1e1e;
  margin-left: 10px;
  text-decoration: none;
}

/* line 2433, breakpoints/_base.scss */
.min-height {
  min-height: 300px;
}

/* line 2437, breakpoints/_base.scss */
.card-price {
  display: inline;
}
/* line 2440, breakpoints/_base.scss */
.card-price:before {
  margin-right: 5px;
}

/* line 2445, breakpoints/_base.scss */
.card-image {
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: -6px 3px 9px #c1c1c1;
  overflow: hidden;
}
/* line 2451, breakpoints/_base.scss */
.card-image img {
  position: absolute;
  top: 0;
  left: 0;
}

/* line 2459, breakpoints/_base.scss */
.article-block-wrapper .text-column {
  margin-bottom: 25px;
}

/* line 2465, breakpoints/_base.scss */
.search-form {
  box-sizing: border-box;
}
/* line 2467, breakpoints/_base.scss */
.search-form * {
  box-sizing: border-box;
}
/* line 2471, breakpoints/_base.scss */
.search-form .search-form-heading {
  margin-bottom: 10px;
  font-weight: normal;
}
/* line 2476, breakpoints/_base.scss */
.search-form .form-fieldset {
  position: relative;
  border: 0 none;
  margin: 0;
  padding: 0;
}
/* line 2483, breakpoints/_base.scss */
.search-form .input-search-label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
/* line 2489, breakpoints/_base.scss */
.search-form .input-search-label,
.search-form .input-search-label:before {
  width: 40px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
}
/* line 2496, breakpoints/_base.scss */
.search-form .input-search-label:before {
  font-size: 18px;
}
/* line 2500, breakpoints/_base.scss */
.search-form .input-search {
  padding-left: 40px;
}
/* line 2504, breakpoints/_base.scss */
.search-form .search-form-submit {
  border: 0 none;
  padding: 0.5em 1em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  background: #666;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
/* line 2512, breakpoints/_base.scss */
.search-form .search-form-submit:hover {
  background: #ff9900;
}

/* line 2520, breakpoints/_base.scss */
.page-search-results .searched-term-header .block-heading {
  font-weight: normal;
}
/* line 2524, breakpoints/_base.scss */
.page-search-results .search-results-block {
  padding-left: 40px;
}
/* line 2528, breakpoints/_base.scss */
.page-search-results .inner-article-block {
  border-bottom: 1px solid #666;
}
/* line 2530, breakpoints/_base.scss */
.page-search-results .inner-article-block:not(:first-child) {
  margin-top: 20px;
}
/* line 2535, breakpoints/_base.scss */
.page-search-results .article-block-heading {
  margin-bottom: 10px;
}
/* line 2539, breakpoints/_base.scss */
.page-search-results .article-block-text {
  font-size: 16px;
}
/* line 2541, breakpoints/_base.scss */
.page-search-results .article-block-text:last-child {
  margin-bottom: 10px;
}
/* line 2545, breakpoints/_base.scss */
.page-search-results .article-block-text p {
  margin: 0;
}

/* line 2551, breakpoints/_base.scss */
.block-button {
  display: block;
  padding: 17px 0;
  line-height: 1;
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
/* line 2561, breakpoints/_base.scss */
.block-button.button-orange {
  background-color: #ff9900;
}
/* line 2564, breakpoints/_base.scss */
.block-button.button-orange:hover, .block-button.button-orange:focus {
  background-color: #d17d00;
}

/* line 2572, breakpoints/_base.scss */
.cta-subtitle {
  font-size: 14px;
}

/* line 2577, breakpoints/_base.scss */
.infos-box .icon {
  height: auto;
  min-height: 25px;
}
/* line 2581, breakpoints/_base.scss */
.infos-box .icon:before {
  float: left;
}
/* line 2584, breakpoints/_base.scss */
.infos-box .link-mail,
.infos-box .item-text {
  display: block;
  float: left;
  min-width: 51%;
}
/* line 2589, breakpoints/_base.scss */
.infos-box .link-mail:not(:first-child),
.infos-box .item-text:not(:first-child) {
  padding-left: calc( 1.2em + 10px );
}

/* line 2595, breakpoints/_base.scss */
.view-all-button {
  font-size: 18.5px;
  line-height: 18.5px;
  height: 18.5px;
}
/* line 2600, breakpoints/_base.scss */
.view-all-button .icon-label {
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
/* line 2604, breakpoints/_base.scss */
.view-all-button:hover {
  color: #666;
}
/* line 2606, breakpoints/_base.scss */
.view-all-button:hover .icon-label {
  color: #ff9900;
}

/* line 2615, breakpoints/_base.scss */
.palaces-archive .places-accordion {
  margin-right: -1.25em !important;
}
/* line 2618, breakpoints/_base.scss */
.palaces-archive .places-item {
  position: relative;
  display: inline-block;
  margin: 0;
  vertical-align: top;
  margin-bottom: 30px;
}
/* line 8, partials/mixins/_ratios.scss */
.palaces-archive .places-item:before {
  content: '';
  display: block;
}
/* line 22, partials/mixins/_ratios.scss */
.palaces-archive .places-item:before {
  padding-top: 50% ;
}
/* line 2624, breakpoints/_base.scss */
.palaces-archive .places-item:before {
  z-index: 0;
}
/* line 2629, breakpoints/_base.scss */
.palaces-archive .places-item:hover .places-voice-label {
  color: #ff9900;
}
/* line 2632, breakpoints/_base.scss */
.palaces-archive .places-item:hover .places-voice-label:after {
  border-color: #ff9900;
}
/* line 2638, breakpoints/_base.scss */
.palaces-archive .palace-item-link {
  display: block;
}
/* line 2641, breakpoints/_base.scss */
.palaces-archive .places-voice {
  z-index: 1;
  background-repeat: no-repeat;
  height: 100%;
  position: absolute;
  top: 0;
  width: calc( 100% - 1.25em );
  background-size: contain;
  border-bottom: 1px solid #666;
}
/* line 2651, breakpoints/_base.scss */
.palaces-archive .places-voice-label {
  overflow: hidden;
  font-weight: bold;
  line-height: 1.1;
  color: #1e1e1e;
  position: absolute;
  left: 50%;
  bottom: 5px;
  display: inline-block;
  width: 50%;
  letter-spacing: -0.05em;
  padding-bottom: 20px;
  font-size: 16px;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
/* line 2667, breakpoints/_base.scss */
.palaces-archive .places-voice-label:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #1e1e1e;
  border-right: 3px solid #1e1e1e;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

/* line 2685, breakpoints/_base.scss */
#lang_sel_footer {
  display: none !important;
}

/* line 2689, breakpoints/_base.scss */
.article-footer {
  padding-bottom: 30px;
}

/* line 2693, breakpoints/_base.scss */
.main-footer {
  margin-top: -30px;
}

/* line 2699, breakpoints/_base.scss */
.who-we-are-palaces {
  margin-bottom: 0;
}

/* line 2705, breakpoints/_base.scss */
.palace-info-columns .info-list {
  margin: 0;
}

/* line 2709, breakpoints/_base.scss */
.palace-services-block,
.palace-history-block,
.palace-extra-block {
  margin-bottom: 0;
  padding-bottom: 10px;
}

/* line 2716, breakpoints/_base.scss */
.article-block-text:empty {
  display: none !important;
}

/* line 2722, breakpoints/_base.scss */
#post-452 #SiteMap ul {
  margin: 0px 0px 0px 10px;
}
/* line 2725, breakpoints/_base.scss */
#post-452 #SiteMap ul li ul {
  margin: 0px 0px 0px 20px;
}

/* line 2733, breakpoints/_base.scss */
.fancybox-skin {
  background-color: white;
}

/* line 2737, breakpoints/_base.scss */
.newsletter-modal-content {
  min-height: 480px;
  padding: 0 35px !important;
  max-width: 530px;
}

/* line 2743, breakpoints/_base.scss */
.newsletter-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 37px;
  line-height: 37px;
}

/* line 2752, breakpoints/_base.scss */
.gform_wrapper {
  margin-top: 25px !important;
}
/* line 2756, breakpoints/_base.scss */
.gform_wrapper ul li.gfield {
  margin-top: 0 !important;
  clear: none !important;
}
/* line 2761, breakpoints/_base.scss */
.gform_wrapper ul li.gfield:nth-child(-n+4) label.gfield_label {
  display: none;
}
/* line 2766, breakpoints/_base.scss */
.gform_wrapper ul li.gfield:nth-child(4) {
  margin-top: -25px !important;
}
/* line 2770, breakpoints/_base.scss */
.gform_wrapper ul li.gfield.gfield_error {
  background-color: transparent;
  border: 0;
}
/* line 2774, breakpoints/_base.scss */
.gform_wrapper ul li.gfield.gfield_error .ginput_container {
  margin-left: 0 !important;
  max-width: 99% !important;
}
/* line 2778, breakpoints/_base.scss */
.gform_wrapper ul li.gfield.gfield_error .ginput_container input {
  margin-bottom: 0 !important;
}
/* line 2783, breakpoints/_base.scss */
.gform_wrapper ul li.gfield.gfield_error .validation_message {
  margin-top: 0;
  padding-top: 0 !important;
}
/* line 2792, breakpoints/_base.scss */
.gform_wrapper ul li.gfield input.medium {
  width: 100% !important;
  height: 25px !important;
  line-height: 25px !important;
  margin-bottom: 25px !important;
}
/* line 2799, breakpoints/_base.scss */
.gform_wrapper ul li.gfield label.gfield_label {
  margin-top: 25px;
  font-weight: normal;
}

/* line 2810, breakpoints/_base.scss */
.home-extra-link {
  font-size: 1.3em;
  height: 50px;
  /*     width: 100%; */
  padding-top: 10px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
/* line 2818, breakpoints/_base.scss */
.home-extra-link a {
  text-decoration: none;
}

/* line 2825, breakpoints/_base.scss */
.sticker {
  display: flex;
  position: relative;
  background: #b60d0a;
  border-radius: 100%;
  height: 130px;
  width: 130px;
  text-align: center;
  font-size: 1.8em;
  line-height: 1em;
  font-weight: bold;
  padding-top: 35px;
  transition: .5s;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
/* line 2840, breakpoints/_base.scss */
.sticker:hover {
  background: #ff9900;
}
/* line 2845, breakpoints/_base.scss */
.sticker span {
  font-size: 1.1em;
}
/* line 2849, breakpoints/_base.scss */
.sticker a {
  text-decoration: none;
  color: white;
}

/* line 2855, breakpoints/_base.scss */
.share-buttons {
  padding: 10px 0;
}
/* line 2859, breakpoints/_base.scss */
.share-buttons span {
  font-size: 20px;
  color: #ff9900;
  padding-right: 5px;
}
/* line 2865, breakpoints/_base.scss */
.share-buttons .icon {
  height: 25px;
  width: 25px;
  font-size: 21px;
  cursor: pointer;
  color: #666;
}
/* line 2871, breakpoints/_base.scss */
.share-buttons .icon:hover {
  color: #ff9900;
}

@media only screen and (max-width: 400px) {
  .accordion-block :not(.opened) .places-goto-button {
    top: auto;
  }  
}

@media only screen and (max-width: 767px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 767px and Down Stylesheet
  
  This stylesheet is loaded 'till larger devices. It's set to
  767px because at 768px it would load on a portrait iPad.
  
  A word of warning. This size COULD be a small tablet device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /* line 22, partials/mixins/_ratios.scss */
  .palace-services-block .block-image-wrapper:before,
  .gallery-block .block-image-wrapper:before,
  .chosen-block .block-image-wrapper:before,
  .events-block .block-image-wrapper:before {
    padding-top: 50% ;
  }

  /* line 22, partials/mixins/_ratios.scss */
  .palace-history-block .block-figure:before,
  .palace-extra-block .block-figure:before {
    padding-top: 50% ;
  }

  /* line 41, breakpoints/_767down.scss */
  .palace-services-block .block-figure,
  .chosen-block .block-figure,
  .events-block .block-figure {
    margin-bottom: 20px;
  }
  /* line 43, breakpoints/_767down.scss */
  .palace-services-block .block-figure:before,
  .chosen-block .block-figure:before,
  .events-block .block-figure:before {
    padding-top: calc(50% + (10px*5));
  }

  /* line 50, breakpoints/_767down.scss */
  .home .highlight-block {
    min-height: 280px;
  }
  /* line 54, breakpoints/_767down.scss */
  .home .highlight-block .block-figure:before {
    padding-top: calc( 29.78723% + (10px*5.5) );
  }

  /* line 63, breakpoints/_767down.scss */
  .accordion-block .places-accordion {
    margin-right: -1.25em !important;
  }
  /* line 66, breakpoints/_767down.scss */
  .accordion-block .places-item {
    position: relative;
    display: inline-block;
    margin: 0;
    vertical-align: top;
    margin-bottom: 30px;
  }
  /* line 8, partials/mixins/_ratios.scss */
  .accordion-block .places-item:before {
    content: '';
    display: block;
  }
  /* line 22, partials/mixins/_ratios.scss */
  .accordion-block .places-item:before {
    padding-top: 50% ;
  }
  /* line 72, breakpoints/_767down.scss */
  .accordion-block .places-voice {
    position: absolute;
    top: 0;
    width: calc( 100% - 1.25em );
    background-size: contain;
    border-bottom: 1px solid #666;
    font-size: 16px;
  }
  /* line 81, breakpoints/_767down.scss */
  .accordion-block .places-voice-label {
    position: relative;
    left: 50%;
    display: inline-block;
    height: 100%;
    width: 50%;
  }
  /* line 88, breakpoints/_767down.scss */
  .accordion-block .places-voice-label:after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #1e1e1e;
    border-right: 3px solid #1e1e1e;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /* line 102, breakpoints/_767down.scss */
  .accordion-block .places-infos {
    position: fixed;
    margin: 0;
    width: 100vw;
    height: 100vh;
    display: none;
  }
  /* line 111, breakpoints/_767down.scss */
  .accordion-block .opened .places-close-button {
    position: fixed;
    top: 47px;
    z-index: 3;
  }
  /* line 116, breakpoints/_767down.scss */
  .accordion-block .opened .places-infos {
    display: block;
    top: 0;
    left: 0;
    margin: 0;
    background-color: #fff;
    padding: 94px 20px 20px;
    z-index: 2;
  }
  /* line 125, breakpoints/_767down.scss */
  .accordion-block .opened .places-tab-content {
    position: relative;
  }
  /* line 128, breakpoints/_767down.scss */
  .accordion-block .opened .places-goto-button,
  .accordion-block .opened .places-close-button,
  .accordion-block .opened .places-infos {
    -webkit-transition-delay: 0s !important;
    /* Safari */
    transition-delay: 0s !important;
  }
  /* line 134, breakpoints/_767down.scss */
  .accordion-block .opened .places-goto-button {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 3;
  }

  /* line 143, breakpoints/_767down.scss */
  .card-image-wrapper {
    padding-left: 15px;
  }

  /* line 147, breakpoints/_767down.scss */
  .copyright {
    letter-spacing: -0.5px;
  }

  /* line 152, breakpoints/_767down.scss */
  .page-search-results .search-results-block {
    padding-left: 0;
  }

  /* line 158, breakpoints/_767down.scss */
  .educationals-tabs-block .tab-link {
    font-size: 18px;
    line-height: 1.22;
  }
  /* line 162, breakpoints/_767down.scss */
  .educationals-tabs-block .info-list {
    margin-top: 0;
  }

  /* line 167, breakpoints/_767down.scss */
  .language-selection-wrapper {
    padding-top: 25px;
    padding-bottom: 10px;
  }

  /* line 171, breakpoints/_767down.scss */
  .copyright {
    padding-top: 10px;
  }

  /* line 178, breakpoints/_767down.scss */
  .block-filter .filter-item.order-label {
    display: none;
  }

  /* line 187, breakpoints/_767down.scss */
  .newsletter-subscription-wrapper {
    margin-top: 20px;
  }

  /* line 190, breakpoints/_767down.scss */
  .palace-header-inner-wrapper {
    padding-bottom: 40px;
  }
  /* line 192, breakpoints/_767down.scss */
  .palace-header-inner-wrapper .view-all-button {
    bottom: 0;
  }
}
/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  /* line 33, breakpoints/_481up.scss */
  .menu {
    /* end .menu ul */
  }
  /* line 34, breakpoints/_481up.scss */
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 35, breakpoints/_481up.scss */
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  /* line 36, breakpoints/_481up.scss */
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }

  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  /* line 81, breakpoints/_481up.scss */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  /* line 85, breakpoints/_481up.scss */
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  /* line 90, breakpoints/_481up.scss */
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  /* line 95, breakpoints/_481up.scss */
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }

  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /* line 22, breakpoints/_768up.scss */
  a,
  a:before {
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
  }

  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /* line 31, breakpoints/_768up.scss */
  .wrap, .article-header {
    width: 748px;
  }

  /*********************
  HEADER STYLES
  *********************/
  /* line 41, breakpoints/_768up.scss */
  .main-logo {
    position: relative;
  }
  /* line 44, breakpoints/_768up.scss */
  .home:not(.scrolled) .main-logo {
    width: 94px;
  }

  /* line 52, breakpoints/_768up.scss */
  .main-logo-link:after {
    display: block;
    content: '';
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: rgba(30, 30, 30, 0);
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  /* line 68, breakpoints/_768up.scss */
  .main-logo-link:hover:after {
    background-color: rgba(30, 30, 30, 0.3);
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  /* line 78, breakpoints/_768up.scss */
  .nav,
  .main-navigation,
  .main-navigation-home {
    border: 0;
    /* highlight current page */
  }
  /* line 83, breakpoints/_768up.scss */
  .nav ul,
  .main-navigation ul,
  .main-navigation-home ul {
    padding-right: 3%;
    margin-top: 30px;
    margin-bottom: 0;
  }
  /* line 88, breakpoints/_768up.scss */
  .nav li,
  .main-navigation li,
  .main-navigation-home li {
    float: left;
    position: relative;
    text-align: right;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  /* line 93, breakpoints/_768up.scss */
  .nav li:not(:last-child),
  .main-navigation li:not(:last-child),
  .main-navigation-home li:not(:last-child) {
    margin-right: 15px;
  }
  /* line 97, breakpoints/_768up.scss */
  .nav li a,
  .main-navigation li a,
  .main-navigation-home li a {
    border-bottom: 0;
    color: #666;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  /* line 109, breakpoints/_768up.scss */
  .nav li a:hover, .nav li a:focus,
  .main-navigation li a:hover,
  .main-navigation li a:focus,
  .main-navigation-home li a:hover,
  .main-navigation-home li a:focus {
    color: #00cc00;
    text-decoration: none;
  }
  /* line 121, breakpoints/_768up.scss */
  .nav li ul.sub-menu,
  .nav li ul.children,
  .main-navigation li ul.sub-menu,
  .main-navigation li ul.children,
  .main-navigation-home li ul.sub-menu,
  .main-navigation-home li ul.children {
    margin-top: 0;
    border: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    /* highlight sub-menu current page */
  }
  /* line 130, breakpoints/_768up.scss */
  .nav li ul.sub-menu li,
  .nav li ul.children li,
  .main-navigation li ul.sub-menu li,
  .main-navigation li ul.children li,
  .main-navigation-home li ul.sub-menu li,
  .main-navigation-home li ul.children li {
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  /* line 132, breakpoints/_768up.scss */
  .nav li ul.sub-menu li a,
  .nav li ul.children li a,
  .main-navigation li ul.sub-menu li a,
  .main-navigation li ul.children li a,
  .main-navigation-home li ul.sub-menu li a,
  .main-navigation-home li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: 180px;
    border-bottom: 1px solid #ccc;
  }
  /* line 149, breakpoints/_768up.scss */
  .nav li ul.sub-menu li:last-child a,
  .nav li ul.children li:last-child a,
  .main-navigation li ul.sub-menu li:last-child a,
  .main-navigation li ul.children li:last-child a,
  .main-navigation-home li ul.sub-menu li:last-child a,
  .main-navigation-home li ul.children li:last-child a {
    border-bottom: 0;
  }
  /* line 159, breakpoints/_768up.scss */
  .nav li ul.sub-menu li ul,
  .nav li ul.children li ul,
  .main-navigation li ul.sub-menu li ul,
  .main-navigation li ul.children li ul,
  .main-navigation-home li ul.sub-menu li ul,
  .main-navigation-home li ul.children li ul {
    top: 0;
    left: 100%;
  }
  /* line 174, breakpoints/_768up.scss */
  .nav li:hover > ul,
  .main-navigation li:hover > ul,
  .main-navigation-home li:hover > ul {
    top: auto;
    visibility: visible;
  }
  /* line 185, breakpoints/_768up.scss */
  .nav li.current-menu-item a,
  .nav li.current_page_item a,
  .nav li.current-page-ancestor a,
  .nav li.current_page_ancestor a,
  .main-navigation li.current-menu-item a,
  .main-navigation li.current_page_item a,
  .main-navigation li.current-page-ancestor a,
  .main-navigation li.current_page_ancestor a,
  .main-navigation-home li.current-menu-item a,
  .main-navigation-home li.current_page_item a,
  .main-navigation-home li.current-page-ancestor a,
  .main-navigation-home li.current_page_ancestor a {
    color: #00cc00;
  }
  /* line 192, breakpoints/_768up.scss */
  .nav .is-target li.highlight-target a,
  .main-navigation .is-target li.highlight-target a,
  .main-navigation-home .is-target li.highlight-target a {
    color: #00cc00;
  }

  /* line 200, breakpoints/_768up.scss */
  .home:not(.scrolled) .main-navigation-home ul {
    margin-top: 10px;
  }
  /* line 203, breakpoints/_768up.scss */
  .home:not(.scrolled) .main-navigation-home li {
    display: block;
    float: none;
  }
  /* line 207, breakpoints/_768up.scss */
  .home:not(.scrolled) .main-navigation-home li:last-child {
    margin-right: 15px;
  }
  /* line 211, breakpoints/_768up.scss */
  .home:not(.scrolled) .main-navigation-home li a {
    font-size: 25px;
    line-height: 1;
  }

  /*********************
  SIDEBARS & ASIDES
  *********************/
  /*********************
  FOOTER STYLES
  *********************/
  /* line 321, breakpoints/_768up.scss */
  .footer-secondary-navigation,
  .social-sharing-wrapper {
    margin-top: 0;
  }

  /* line 325, breakpoints/_768up.scss */
  .newsletter-subscription-wrapper {
   /* .gform_footer {
       width: 50%;
       clear: right;
       float: right;
   }
*/
  }
  /* line 329, breakpoints/_768up.scss */
  .newsletter-subscription-wrapper .gform_body .top_label input.medium {
    width: 100%;
    max-width: 100%;
  }
  /* line 337, breakpoints/_768up.scss */
  .newsletter-subscription-wrapper input.newsletter-subscription-input,
  .newsletter-subscription-wrapper .ginput_container input {
    width: 66.66%;
  }

  /*********************
  CONTENTS
  *********************/
  /*
  #content {
      margin-top: $pad-module*3;
  }*/
  /* line 357, breakpoints/_768up.scss */
  #content {
    margin-top: 70px;
  }

  /* line 364, breakpoints/_768up.scss */
  .page-content,
  .single-content {
    padding-top: 30px;
  }

  /* line 383, breakpoints/_768up.scss */
  .palace-services-block .block-figure,
  .chosen-block .block-figure,
  .events-block .block-figure {
    margin-bottom: 20px;
  }
  /* line 385, breakpoints/_768up.scss */
  .palace-services-block .block-figure:before,
  .chosen-block .block-figure:before,
  .events-block .block-figure:before {
    padding-top: calc(100% + (10px*5));
  }

  /* line 392, breakpoints/_768up.scss */
  .palace-services-block .block-figure:before {
    padding-top: calc(100% + (10px*8));
  }

  /* line 402, breakpoints/_768up.scss */
  .palace-services-block .block-caption-heading,
  .events-block .block-caption-heading,
  .chosen-block .block-caption-heading,
  .educational-services-block .block-caption-heading {
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
  }

  /* Homepage accordion - @begin */
  /* line 408, breakpoints/_768up.scss */
  .accordion-block {
    height: 380px;
  }
  /* line 411, breakpoints/_768up.scss */
  .accordion-block .places-accordion {
    margin: 0;
    height: 100%;
  }
  /* line 415, breakpoints/_768up.scss */
  .accordion-block .places-item {
    height: 100%;
    margin: 0;
    padding: 30px 0 0 10px;
  }
  /* line 420, breakpoints/_768up.scss */
  .accordion-block .places-item:not(:last-child) {
    border-right: 1px solid;
  }
  /* line 424, breakpoints/_768up.scss */
  .accordion-block .places-item.d-1of7, .accordion-block .places-item.t-1of7 {
    padding-right: 0;
  }
  /* line 429, breakpoints/_768up.scss */
  .accordion-block .places-voice {
    position: relative;
    height: 100%;
    text-align: right;
    background-size: 250px;
  }
  /* line 436, breakpoints/_768up.scss */
  .accordion-block .places-voice-label {
    position: absolute;
    right: 0;
    bottom: 0;
    min-height: 75px;
    padding-right: 10px;
    max-width: 100px;
    width: 95px;
  }
  /* line 446, breakpoints/_768up.scss */
  .accordion-block .opened .places-voice-label {
    text-align: left;
    right: calc( 100% - (10px*10) );
  }
  /* line 452, breakpoints/_768up.scss */
  .accordion-block .place-fava {
    background-size: 250px;
  }
  /* line 455, breakpoints/_768up.scss */
  .accordion-block .place-pepoli {
    background-size: 250px;
  }
  /* line 458, breakpoints/_768up.scss */
  .accordion-block .place-san-giorgio {
    background-size: 250px;
  }
  /* line 461, breakpoints/_768up.scss */
  .accordion-block .place-santa-maria {
    background-size: 250px;
  }
  /* line 464, breakpoints/_768up.scss */
  .accordion-block .place-saraceni {
    background-size: 250px;
  }
  /* line 467, breakpoints/_768up.scss */
  .accordion-block .place-san-colombano {
    background-size: 250px;
  }
  /* line 470, breakpoints/_768up.scss */
  .accordion-block .place-santa-cristina {
    background-size: 250px;
  }
  /* line 475, breakpoints/_768up.scss */
  .accordion-block .places-infos {
    left: 250px;
    width: calc( 100% - ( 250px + 10px ) );
  }

  /* Homepage accordion - @end */
  /* line 485, breakpoints/_768up.scss */
  .article-block:not(.no-invert):nth-of-type(2n) .visual-column {
    float: left;
  }
  /* line 488, breakpoints/_768up.scss */
  .article-block:not(.no-invert):nth-of-type(2n) .text-column {
    float: right;
  }

  /* line 495, breakpoints/_768up.scss */
  .text-column {
    margin-bottom: 0;
  }

  /* line 499, breakpoints/_768up.scss */
  img.block-image {
    margin-bottom: 0;
    width: 100%;
    height: auto;
  }

  /* line 506, breakpoints/_768up.scss */
  .block-figure-link .block-image-wrapper:after {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  /* line 511, breakpoints/_768up.scss */
  .block-figure-link:hover .block-image-wrapper:after {
    background-color: rgba(30, 30, 30, 0.3);
  }

  /* line 519, breakpoints/_768up.scss */
  .block-image-link {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  /* line 522, breakpoints/_768up.scss */
  .block-image-link:hover {
    background-color: rgba(30, 30, 30, 0.3);
  }

  /* line 529, breakpoints/_768up.scss */
  .exhibition-images-block {
    float: right ;
  }

  /* line 535, breakpoints/_768up.scss */
  .palace-article-header {
    border-bottom: 1px solid #666;
  }

  /* line 538, breakpoints/_768up.scss */
  .palace-header-image-wrapper {
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
  }

  /* line 543, breakpoints/_768up.scss */
  .palace-header-right-wrapper {
    position: relative;
    height: 16.5px;
  }

  /* line 547, breakpoints/_768up.scss */
  .palace-header-inner-wrapper {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  /* line 550, breakpoints/_768up.scss */
  .page-inner-navigation-item {
    display: block;
  }

  /* line 555, breakpoints/_768up.scss */
  .educationals-tabs-block .tab-item {
    height: 45px;
  }

  /* line 562, breakpoints/_768up.scss */
  .educational-services-download .educational-services-download-label {
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
  }

  /* info pricing */
  /* line 569, breakpoints/_768up.scss */
  .block-info-pricing {
    max-height: 350px;
    overflow: auto;
  }

  /* line 579, breakpoints/_768up.scss */
  .highlight-block .block-caption,
  .page-generic .main-event .block-caption,
  .page-generic .other-event .block-caption {
    position: absolute;
    top: 0;
    left: 0;
    margin: 20px 0 0 30px;
    padding: 15px 20px;
  }

  /* line 589, breakpoints/_768up.scss */
  .palaces-archive .places-voice-label {
    font-size: 22px;
  }

  /* line 594, breakpoints/_768up.scss */
  .block-video {
    margin: 5px 0 0;
  }

  /* line 597, breakpoints/_768up.scss */
  .copyright {
    letter-spacing: 0;
  }

  /*
  .home-extra-link{
      font-size: 1.3em;
      margin-top: -30px;
  }
  */
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  /* line 12, breakpoints/_1030up.scss */
  .wrap, .article-header {
    width: 1000px;
  }

  /* line 16, breakpoints/_1030up.scss */
  .footer-outer-wrapper {
    position: relative;
  }

  /* Homepage accordion - @begin */
  /* line 22, breakpoints/_1030up.scss */
  .accordion-block {
    height: 450px;
  }
  /* line 25, breakpoints/_1030up.scss */
  .accordion-block .places-voice {
    background-size: 335px;
  }
  /* line 29, breakpoints/_1030up.scss */
  .accordion-block .places-voice-label {
    font-size: 18px;
    width: 105px;
  }
  /* line 33, breakpoints/_1030up.scss */
  .accordion-block .opened .places-voice-label {
    right: calc( 100% - (10px*11) );
  }
  /* line 37, breakpoints/_1030up.scss */
  .accordion-block .places-infos {
    left: 340px;
    width: calc( 100% - ( 340px + 10px ) );
  }
  /* line 42, breakpoints/_1030up.scss */
  .accordion-block .place-fava {
    background-size: auto;
  }
  /* line 45, breakpoints/_1030up.scss */
  .accordion-block .place-pepoli {
    background-size: auto;
  }
  /* line 48, breakpoints/_1030up.scss */
  .accordion-block .place-san-giorgio {
    background-size: auto;
  }
  /* line 51, breakpoints/_1030up.scss */
  .accordion-block .place-santa-maria {
    background-size: auto;
  }
  /* line 54, breakpoints/_1030up.scss */
  .accordion-block .place-saraceni {
    background-size: auto;
  }
  /* line 57, breakpoints/_1030up.scss */
  .accordion-block .place-san-colombano {
    background-size: auto;
  }
  /* line 60, breakpoints/_1030up.scss */
  .accordion-block .place-santa-cristina {
    background-size: auto;
  }

  /* Homepage accordion - @begin */
  /* line 66, breakpoints/_1030up.scss */
  img.block-image {
    margin-bottom: 0;
    height: 100%;
    width: auto;
  }

  /* line 76, breakpoints/_1030up.scss */
  .events-block .block-figure:nth-of-type(3n),
  .chosen-block .block-figure:nth-of-type(3n) {
    padding-right: 20px;
  }

  /* line 81, breakpoints/_1030up.scss */
  .palace-header-right-wrapper {
    height: 230px;
  }

  /* info pricing */
  /* line 86, breakpoints/_1030up.scss */
  .block-info-pricing {
    max-height: 600px;
    overflow: auto;
  }

  /* line 91, breakpoints/_1030up.scss */
  .block-info-hours .info-text {
    padding-right: 20px;
  }

  /* line 97, breakpoints/_1030up.scss */
  #content {
    margin-top: 20px;
  }

  /* line 102, breakpoints/_1030up.scss */
  .home-extra-link {
    font-size: 1.3em;
    margin-top: -50px;
  }

  /* line 108, breakpoints/_1030up.scss */
  .sticker {
    display: block;
    position: fixed;
    top: 90px;
    left: 100%;
    margin-left: -55px;
    height: 60px;
    width: 60px;
    font-size: 0.9em;
    line-height: 1em;
    font-weight: bold;
    padding-top: 17px;
    transition: .4s;
    z-index: +1;
    -webkit-transform: translateX(0%) rotate(-10deg);
    -moz-transform: translateX(0%) rotate(-10deg);
    -ms-transform: translateX(0%) rotate(-10deg);
    -o-transform: translateX(0%) rotate(-10deg);
    transform: translateX(0%) rotate(-10deg);
  }
  /* line 125, breakpoints/_1030up.scss */
  .sticker.home {
    top: 240px;
  }

  /* line 131, breakpoints/_1030up.scss */
  .share-buttons {
    text-align: right;
    margin-top: -39px;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/
  /* line 12, breakpoints/_1240up.scss */
  .sticker {
    height: 130px;
    width: 130px;
    text-align: center;
    font-size: 1.8em;
    line-height: 1em;
    font-weight: bold;
    padding-top: 35px;
    margin-left: -120px;
  }
  /* line 22, breakpoints/_1240up.scss */
  .sticker span {
    font-size: 1em;
  }
}
/*********************
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.
  
  ******************************************************************/
  /* line 13, partials/_print.scss */
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* line 21, partials/_print.scss */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  /* line 26, partials/_print.scss */
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  /* line 31, partials/_print.scss */
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 36, partials/_print.scss */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 42, partials/_print.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 47, partials/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 51, partials/_print.scss */
  tr, img {
    page-break-inside: avoid;
  }

  /* line 55, partials/_print.scss */
  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  /* line 63, partials/_print.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 68, partials/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 74, partials/_print.scss */
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
@media only screen and (min-width: 414px) {
  /* line 166, style.scss */
  .menu-mobile .main-menu {
    padding-top: 140px;
  }
  /* line 171, style.scss */
  .menu-mobile .main-navigation .social-sharing-menu {
    /*               
    position: fixed;
    top: auto;
    bottom: 0;
    left: 50%;
    @include transform(translateX(-50%));
    */
    position: relative;
    top: 100px;
    margin-bottom: 0;
  }
}

.swiper-container {
    width: 100%;
}   
.swiper-pagination-bullets {
	width: 100%;
	margin: 0 auto;
	position: static;
}

.swiper-pagination-bullet {
	margin: 1px 3px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: rgb(182, 13, 10);
} 
.swiper-slide-active {
  z-index: 1;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23b60d0a'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23b60d0a'%2F%3E%3C%2Fsvg%3E");
}

.fc-logo-link-home {
  display: block;
  float: right;
  margin: 7px 0 0;
  padding-right: 3%;
}

.fc-logo-link {
  display: block;
  float: right;
  margin: 25px 0px 0px 0px;
  padding-right: 3%;
}

.fc-logo-link img {
  width: 80px;
  height: auto;
}

.fc-logo-link-home img {
  width: 80px;
  height: auto;
}

.hlfc {
  width: calc(100% - 188px);
}

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

  .fc-logo-link-home {
    padding-right: 0;
  }

  .fc-logo-link {
    margin: 7px 0 0;
    padding-right: 50px;
  }

}

/*dropdown menu principale*/


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

	.main-navigation {
		padding-right: 0
	}
	
	.main-navigation li ul.sub-menu {
		background: #fbfbfb !important;
    box-shadow: none !important;
	position: relative;
   }
	.main-navigation li ul.sub-menu li a {
		width: 100%;
    padding: 15px 10px !important;
    margin: 0;
    text-align: center;
	}
}


.menu-item-has-children:after {
	content: '\003E';
	color: #666666;
	transform: rotate(90deg);
	display: inline-block;
	font-size: 17px;
	font-weight: 600;
	margin: 0 0 0 4px;
}

/* .menu-item-has-children:hover:after {
	transform: rotate(270deg);
} */


.main-navigation ul.sub-menu {
  display: none !important;
  visibility: hidden; 
}
.main-navigation .onclickopen ul.sub-menu {
  display: block !important;
  visibility: visible; 
}
.main-navigation li ul.sub-menu {
	background-color: white;
  padding: 0;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border: 0; 
	margin: 0 !important;
}

.main-navigation li ul.sub-menu li {
	margin: 0 !important;
	padding: 0;
	text-align: left;
}

.main-navigation li ul.sub-menu li a {
	padding: 7px;
	font-size: 16px !important;
	line-height: 1.2em !important;
	font-weight:400;
	color: #767676;
}

.main-navigation li ul.sub-menu li a:hover {
	color:rgba(0, 204, 0);
}

