/*!
Theme Name: stoli
Theme URI: http://underscores.me/
Author: David Hazell
Author URI: http://www.curious-people-projects.com
Description: A custom theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: stoli
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

stoli is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*============================================================================
  #Sass Mixins
==============================================================================*/
.clearfix {
  *zoom: 1; }
  .clearfix:after {
    content: '';
    display: table;
    clear: both; }

/*============================================================================
  Prefixer mixin for generating vendor prefixes:
    - Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
    - Usage:

      // Input:
      .element {
        @include prefixer(transform, scale(1), ms webkit spec);
      }

      // Output:
      .element {
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
      }
==============================================================================*/
/*============================================================================
  Layer promotion mixin for creating smoother animations with higher FPS.
==============================================================================*/
/*============================================================================
  Dependency-free breakpoint mixin
    - Based on http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
    - Usage docs: http://shopify.github.io/Timber/#sass-mixins
==============================================================================*/
/* Force clearfix on grids */
.grid, .grid--rev, .grid--full,
.grid-uniform {
  *zoom: 1; }
  .grid:after, .grid--rev:after, .grid--full:after,
  .grid-uniform:after {
    content: '';
    display: table;
    clear: both; }

/* Manual grid__item clearfix */
.grid__item.clear {
  clear: both; }

/*============================================================================
  Drop relative positioning into silent classes which can't take advantage of
  the `[class*="push--"]` and `[class*="pull--"]` selectors.
==============================================================================*/
/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid, .grid--rev, .grid--full,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px; }

.grid__item {
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  padding-left: 30px;
  vertical-align: top;
  width: 100%; }

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left;
    float: right; }

/* Gutterless grids have all the properties of regular grids, minus any spacing. */
.grid--full {
  margin-left: 0; }
  .grid--full > .grid__item {
    padding-left: 0; }

/*============================================================================
  WIDTHS
    - Create width classes, prefixed by the specified namespace.
==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Helper show/hide classes around our breakpoints ================*/
/*================ Our regular, non-responsive width and helper classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

/* Halves */
.one-half {
  width: 50%; }

/* Thirds */
.one-third {
  width: 33.333%; }

.two-thirds {
  width: 66.666%; }

/* Quarters */
.one-quarter {
  width: 25%; }

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

/* Fifths */
.one-fifth {
  width: 20%; }

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

/* Sixths */
.one-sixth {
  width: 16.666%; }

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

/* Eighths */
.one-eighth {
  width: 12.5%; }

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

/* Tenths */
.one-tenth {
  width: 10%; }

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

/* Twelfths */
.one-twelfth {
  width: 8.333%; }

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 663px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }

  /* Halves */
  .small--one-half {
    width: 50%; }

  /* Thirds */
  .small--one-third {
    width: 33.333%; }

  .small--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .small--one-quarter {
    width: 25%; }

  .small--two-quarters {
    width: 50%; }

  .small--three-quarters {
    width: 75%; }

  /* Fifths */
  .small--one-fifth {
    width: 20%; }

  .small--two-fifths {
    width: 40%; }

  .small--three-fifths {
    width: 60%; }

  .small--four-fifths {
    width: 80%; }

  /* Sixths */
  .small--one-sixth {
    width: 16.666%; }

  .small--two-sixths {
    width: 33.333%; }

  .small--three-sixths {
    width: 50%; }

  .small--four-sixths {
    width: 66.666%; }

  .small--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .small--one-eighth {
    width: 12.5%; }

  .small--two-eighths {
    width: 25%; }

  .small--three-eighths {
    width: 37.5%; }

  .small--four-eighths {
    width: 50%; }

  .small--five-eighths {
    width: 62.5%; }

  .small--six-eighths {
    width: 75%; }

  .small--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .small--one-tenth {
    width: 10%; }

  .small--two-tenths {
    width: 20%; }

  .small--three-tenths {
    width: 30%; }

  .small--four-tenths {
    width: 40%; }

  .small--five-tenths {
    width: 50%; }

  .small--six-tenths {
    width: 60%; }

  .small--seven-tenths {
    width: 70%; }

  .small--eight-tenths {
    width: 80%; }

  .small--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .small--one-twelfth {
    width: 8.333%; }

  .small--two-twelfths {
    width: 16.666%; }

  .small--three-twelfths {
    width: 25%; }

  .small--four-twelfths {
    width: 33.333%; }

  .small--five-twelfths {
    width: 41.666%; }

  .small--six-twelfths {
    width: 50%; }

  .small--seven-twelfths {
    width: 58.333%; }

  .small--eight-twelfths {
    width: 66.666%; }

  .small--nine-twelfths {
    width: 75%; }

  .small--ten-twelfths {
    width: 83.333%; }

  .small--eleven-twelfths {
    width: 91.666%; }

  .small--show {
    display: block !important; }

  .small--hide {
    display: none !important; }

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

  .small--text-right {
    text-align: right !important; }

  .small--text-center {
    text-align: center !important; }

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

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

  .grid-uniform .small--one-half:nth-child(2n+1),
  .grid-uniform .small--one-third:nth-child(3n+1),
  .grid-uniform .small--one-quarter:nth-child(4n+1),
  .grid-uniform .small--one-fifth:nth-child(5n+1),
  .grid-uniform .small--one-sixth:nth-child(6n+1),
  .grid-uniform .small--two-sixths:nth-child(3n+1),
  .grid-uniform .small--three-sixths:nth-child(2n+1),
  .grid-uniform .small--two-eighths:nth-child(4n+1),
  .grid-uniform .small--four-eighths:nth-child(2n+1),
  .grid-uniform .small--five-tenths:nth-child(2n+1),
  .grid-uniform .small--one-twelfth:nth-child(12n+1),
  .grid-uniform .small--two-twelfths:nth-child(6n+1),
  .grid-uniform .small--three-twelfths:nth-child(4n+1),
  .grid-uniform .small--four-twelfths:nth-child(3n+1),
  .grid-uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 664px) and (max-width: 1024px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }

  /* Halves */
  .medium--one-half {
    width: 50%; }

  /* Thirds */
  .medium--one-third {
    width: 33.333%; }

  .medium--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .medium--one-quarter {
    width: 25%; }

  .medium--two-quarters {
    width: 50%; }

  .medium--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium--one-fifth {
    width: 20%; }

  .medium--two-fifths {
    width: 40%; }

  .medium--three-fifths {
    width: 60%; }

  .medium--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium--one-sixth {
    width: 16.666%; }

  .medium--two-sixths {
    width: 33.333%; }

  .medium--three-sixths {
    width: 50%; }

  .medium--four-sixths {
    width: 66.666%; }

  .medium--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .medium--one-eighth {
    width: 12.5%; }

  .medium--two-eighths {
    width: 25%; }

  .medium--three-eighths {
    width: 37.5%; }

  .medium--four-eighths {
    width: 50%; }

  .medium--five-eighths {
    width: 62.5%; }

  .medium--six-eighths {
    width: 75%; }

  .medium--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium--one-tenth {
    width: 10%; }

  .medium--two-tenths {
    width: 20%; }

  .medium--three-tenths {
    width: 30%; }

  .medium--four-tenths {
    width: 40%; }

  .medium--five-tenths {
    width: 50%; }

  .medium--six-tenths {
    width: 60%; }

  .medium--seven-tenths {
    width: 70%; }

  .medium--eight-tenths {
    width: 80%; }

  .medium--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium--one-twelfth {
    width: 8.333%; }

  .medium--two-twelfths {
    width: 16.666%; }

  .medium--three-twelfths {
    width: 25%; }

  .medium--four-twelfths {
    width: 33.333%; }

  .medium--five-twelfths {
    width: 41.666%; }

  .medium--six-twelfths {
    width: 50%; }

  .medium--seven-twelfths {
    width: 58.333%; }

  .medium--eight-twelfths {
    width: 66.666%; }

  .medium--nine-twelfths {
    width: 75%; }

  .medium--ten-twelfths {
    width: 83.333%; }

  .medium--eleven-twelfths {
    width: 91.666%; }

  .medium--show {
    display: block !important; }

  .medium--hide {
    display: none !important; }

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

  .medium--text-right {
    text-align: right !important; }

  .medium--text-center {
    text-align: center !important; }

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

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

  .grid-uniform .medium--one-half:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--three-sixths:nth-child(2n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--four-eighths:nth-child(2n+1),
  .grid-uniform .medium--five-tenths:nth-child(2n+1),
  .grid-uniform .medium--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 1024px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%; }

  /* Halves */
  .medium-down--one-half {
    width: 50%; }

  /* Thirds */
  .medium-down--one-third {
    width: 33.333%; }

  .medium-down--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .medium-down--one-quarter {
    width: 25%; }

  .medium-down--two-quarters {
    width: 50%; }

  .medium-down--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium-down--one-fifth {
    width: 20%; }

  .medium-down--two-fifths {
    width: 40%; }

  .medium-down--three-fifths {
    width: 60%; }

  .medium-down--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium-down--one-sixth {
    width: 16.666%; }

  .medium-down--two-sixths {
    width: 33.333%; }

  .medium-down--three-sixths {
    width: 50%; }

  .medium-down--four-sixths {
    width: 66.666%; }

  .medium-down--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .medium-down--one-eighth {
    width: 12.5%; }

  .medium-down--two-eighths {
    width: 25%; }

  .medium-down--three-eighths {
    width: 37.5%; }

  .medium-down--four-eighths {
    width: 50%; }

  .medium-down--five-eighths {
    width: 62.5%; }

  .medium-down--six-eighths {
    width: 75%; }

  .medium-down--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium-down--one-tenth {
    width: 10%; }

  .medium-down--two-tenths {
    width: 20%; }

  .medium-down--three-tenths {
    width: 30%; }

  .medium-down--four-tenths {
    width: 40%; }

  .medium-down--five-tenths {
    width: 50%; }

  .medium-down--six-tenths {
    width: 60%; }

  .medium-down--seven-tenths {
    width: 70%; }

  .medium-down--eight-tenths {
    width: 80%; }

  .medium-down--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium-down--one-twelfth {
    width: 8.333%; }

  .medium-down--two-twelfths {
    width: 16.666%; }

  .medium-down--three-twelfths {
    width: 25%; }

  .medium-down--four-twelfths {
    width: 33.333%; }

  .medium-down--five-twelfths {
    width: 41.666%; }

  .medium-down--six-twelfths {
    width: 50%; }

  .medium-down--seven-twelfths {
    width: 58.333%; }

  .medium-down--eight-twelfths {
    width: 66.666%; }

  .medium-down--nine-twelfths {
    width: 75%; }

  .medium-down--ten-twelfths {
    width: 83.333%; }

  .medium-down--eleven-twelfths {
    width: 91.666%; }

  .medium-down--show {
    display: block !important; }

  .medium-down--hide {
    display: none !important; }

  .medium-down--text-left {
    text-align: left !important; }

  .medium-down--text-right {
    text-align: right !important; }

  .medium-down--text-center {
    text-align: center !important; }

  .medium-down--left {
    float: left !important; }

  .medium-down--right {
    float: right !important; }

  .grid-uniform .medium-down--one-half:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--three-sixths:nth-child(2n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--four-eighths:nth-child(2n+1),
  .grid-uniform .medium-down--five-tenths:nth-child(2n+1),
  .grid-uniform .medium-down--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium-down--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 1025px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }

  /* Halves */
  .large--one-half {
    width: 50%; }

  /* Thirds */
  .large--one-third {
    width: 33.333%; }

  .large--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .large--one-quarter {
    width: 25%; }

  .large--two-quarters {
    width: 50%; }

  .large--three-quarters {
    width: 75%; }

  /* Fifths */
  .large--one-fifth {
    width: 20%; }

  .large--two-fifths {
    width: 40%; }

  .large--three-fifths {
    width: 60%; }

  .large--four-fifths {
    width: 80%; }

  /* Sixths */
  .large--one-sixth {
    width: 16.666%; }

  .large--two-sixths {
    width: 33.333%; }

  .large--three-sixths {
    width: 50%; }

  .large--four-sixths {
    width: 66.666%; }

  .large--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .large--one-eighth {
    width: 12.5%; }

  .large--two-eighths {
    width: 25%; }

  .large--three-eighths {
    width: 37.5%; }

  .large--four-eighths {
    width: 50%; }

  .large--five-eighths {
    width: 62.5%; }

  .large--six-eighths {
    width: 75%; }

  .large--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .large--one-tenth {
    width: 10%; }

  .large--two-tenths {
    width: 20%; }

  .large--three-tenths {
    width: 30%; }

  .large--four-tenths {
    width: 40%; }

  .large--five-tenths {
    width: 50%; }

  .large--six-tenths {
    width: 60%; }

  .large--seven-tenths {
    width: 70%; }

  .large--eight-tenths {
    width: 80%; }

  .large--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .large--one-twelfth {
    width: 8.333%; }

  .large--two-twelfths {
    width: 16.666%; }

  .large--three-twelfths {
    width: 25%; }

  .large--four-twelfths {
    width: 33.333%; }

  .large--five-twelfths {
    width: 41.666%; }

  .large--six-twelfths {
    width: 50%; }

  .large--seven-twelfths {
    width: 58.333%; }

  .large--eight-twelfths {
    width: 66.666%; }

  .large--nine-twelfths {
    width: 75%; }

  .large--ten-twelfths {
    width: 83.333%; }

  .large--eleven-twelfths {
    width: 91.666%; }

  .large--show {
    display: block !important; }

  .large--hide {
    display: none !important; }

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

  .large--text-right {
    text-align: right !important; }

  .large--text-center {
    text-align: center !important; }

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

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

  .grid-uniform .large--one-half:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }
/*============================================================================
  PUSH
    - Push classes, to move grid items over to the right by certain amounts
==============================================================================*/
[class*="push--"] {
  position: relative; }

/* Whole */
.push--one-whole {
  left: 100%; }

/* Halves */
.push--one-half {
  left: 50%; }

/* Thirds */
.push--one-third {
  left: 33.333%; }

.push--two-thirds {
  left: 66.666%; }

/* Quarters */
.push--one-quarter {
  left: 25%; }

.push--two-quarters {
  left: 50%; }

.push--three-quarters {
  left: 75%; }

/* Fifths */
.push--one-fifth {
  left: 20%; }

.push--two-fifths {
  left: 40%; }

.push--three-fifths {
  left: 60%; }

.push--four-fifths {
  left: 80%; }

/* Sixths */
.push--one-sixth {
  left: 16.666%; }

.push--two-sixths {
  left: 33.333%; }

.push--three-sixths {
  left: 50%; }

.push--four-sixths {
  left: 66.666%; }

.push--five-sixths {
  left: 83.333%; }

/* Eighths */
.push--one-eighth {
  left: 12.5%; }

.push--two-eighths {
  left: 25%; }

.push--three-eighths {
  left: 37.5%; }

.push--four-eighths {
  left: 50%; }

.push--five-eighths {
  left: 62.5%; }

.push--six-eighths {
  left: 75%; }

.push--seven-eighths {
  left: 87.5%; }

/* Tenths */
.push--one-tenth {
  left: 10%; }

.push--two-tenths {
  left: 20%; }

.push--three-tenths {
  left: 30%; }

.push--four-tenths {
  left: 40%; }

.push--five-tenths {
  left: 50%; }

.push--six-tenths {
  left: 60%; }

.push--seven-tenths {
  left: 70%; }

.push--eight-tenths {
  left: 80%; }

.push--nine-tenths {
  left: 90%; }

/* Twelfths */
.push--one-twelfth {
  left: 8.333%; }

.push--two-twelfths {
  left: 16.666%; }

.push--three-twelfths {
  left: 25%; }

.push--four-twelfths {
  left: 33.333%; }

.push--five-twelfths {
  left: 41.666%; }

.push--six-twelfths {
  left: 50%; }

.push--seven-twelfths {
  left: 58.333%; }

.push--eight-twelfths {
  left: 66.666%; }

.push--nine-twelfths {
  left: 75%; }

.push--ten-twelfths {
  left: 83.333%; }

.push--eleven-twelfths {
  left: 91.666%; }

@media only screen and (min-width: 664px) and (max-width: 1024px) {
  /* Whole */
  .push--medium--one-whole {
    left: 100%; }

  /* Halves */
  .push--medium--one-half {
    left: 50%; }

  /* Thirds */
  .push--medium--one-third {
    left: 33.333%; }

  .push--medium--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--medium--one-quarter {
    left: 25%; }

  .push--medium--two-quarters {
    left: 50%; }

  .push--medium--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--medium--one-fifth {
    left: 20%; }

  .push--medium--two-fifths {
    left: 40%; }

  .push--medium--three-fifths {
    left: 60%; }

  .push--medium--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--medium--one-sixth {
    left: 16.666%; }

  .push--medium--two-sixths {
    left: 33.333%; }

  .push--medium--three-sixths {
    left: 50%; }

  .push--medium--four-sixths {
    left: 66.666%; }

  .push--medium--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--medium--one-eighth {
    left: 12.5%; }

  .push--medium--two-eighths {
    left: 25%; }

  .push--medium--three-eighths {
    left: 37.5%; }

  .push--medium--four-eighths {
    left: 50%; }

  .push--medium--five-eighths {
    left: 62.5%; }

  .push--medium--six-eighths {
    left: 75%; }

  .push--medium--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--medium--one-tenth {
    left: 10%; }

  .push--medium--two-tenths {
    left: 20%; }

  .push--medium--three-tenths {
    left: 30%; }

  .push--medium--four-tenths {
    left: 40%; }

  .push--medium--five-tenths {
    left: 50%; }

  .push--medium--six-tenths {
    left: 60%; }

  .push--medium--seven-tenths {
    left: 70%; }

  .push--medium--eight-tenths {
    left: 80%; }

  .push--medium--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--medium--one-twelfth {
    left: 8.333%; }

  .push--medium--two-twelfths {
    left: 16.666%; }

  .push--medium--three-twelfths {
    left: 25%; }

  .push--medium--four-twelfths {
    left: 33.333%; }

  .push--medium--five-twelfths {
    left: 41.666%; }

  .push--medium--six-twelfths {
    left: 50%; }

  .push--medium--seven-twelfths {
    left: 58.333%; }

  .push--medium--eight-twelfths {
    left: 66.666%; }

  .push--medium--nine-twelfths {
    left: 75%; }

  .push--medium--ten-twelfths {
    left: 83.333%; }

  .push--medium--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (max-width: 1024px) {
  /* Whole */
  .push--medium-down--one-whole {
    left: 100%; }

  /* Halves */
  .push--medium-down--one-half {
    left: 50%; }

  /* Thirds */
  .push--medium-down--one-third {
    left: 33.333%; }

  .push--medium-down--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--medium-down--one-quarter {
    left: 25%; }

  .push--medium-down--two-quarters {
    left: 50%; }

  .push--medium-down--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--medium-down--one-fifth {
    left: 20%; }

  .push--medium-down--two-fifths {
    left: 40%; }

  .push--medium-down--three-fifths {
    left: 60%; }

  .push--medium-down--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--medium-down--one-sixth {
    left: 16.666%; }

  .push--medium-down--two-sixths {
    left: 33.333%; }

  .push--medium-down--three-sixths {
    left: 50%; }

  .push--medium-down--four-sixths {
    left: 66.666%; }

  .push--medium-down--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--medium-down--one-eighth {
    left: 12.5%; }

  .push--medium-down--two-eighths {
    left: 25%; }

  .push--medium-down--three-eighths {
    left: 37.5%; }

  .push--medium-down--four-eighths {
    left: 50%; }

  .push--medium-down--five-eighths {
    left: 62.5%; }

  .push--medium-down--six-eighths {
    left: 75%; }

  .push--medium-down--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--medium-down--one-tenth {
    left: 10%; }

  .push--medium-down--two-tenths {
    left: 20%; }

  .push--medium-down--three-tenths {
    left: 30%; }

  .push--medium-down--four-tenths {
    left: 40%; }

  .push--medium-down--five-tenths {
    left: 50%; }

  .push--medium-down--six-tenths {
    left: 60%; }

  .push--medium-down--seven-tenths {
    left: 70%; }

  .push--medium-down--eight-tenths {
    left: 80%; }

  .push--medium-down--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--medium-down--one-twelfth {
    left: 8.333%; }

  .push--medium-down--two-twelfths {
    left: 16.666%; }

  .push--medium-down--three-twelfths {
    left: 25%; }

  .push--medium-down--four-twelfths {
    left: 33.333%; }

  .push--medium-down--five-twelfths {
    left: 41.666%; }

  .push--medium-down--six-twelfths {
    left: 50%; }

  .push--medium-down--seven-twelfths {
    left: 58.333%; }

  .push--medium-down--eight-twelfths {
    left: 66.666%; }

  .push--medium-down--nine-twelfths {
    left: 75%; }

  .push--medium-down--ten-twelfths {
    left: 83.333%; }

  .push--medium-down--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 1025px) {
  /* Whole */
  .push--large--one-whole {
    left: 100%; }

  /* Halves */
  .push--large--one-half {
    left: 50%; }

  /* Thirds */
  .push--large--one-third {
    left: 33.333%; }

  .push--large--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--large--one-quarter {
    left: 25%; }

  .push--large--two-quarters {
    left: 50%; }

  .push--large--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--large--one-fifth {
    left: 20%; }

  .push--large--two-fifths {
    left: 40%; }

  .push--large--three-fifths {
    left: 60%; }

  .push--large--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--large--one-sixth {
    left: 16.666%; }

  .push--large--two-sixths {
    left: 33.333%; }

  .push--large--three-sixths {
    left: 50%; }

  .push--large--four-sixths {
    left: 66.666%; }

  .push--large--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--large--one-eighth {
    left: 12.5%; }

  .push--large--two-eighths {
    left: 25%; }

  .push--large--three-eighths {
    left: 37.5%; }

  .push--large--four-eighths {
    left: 50%; }

  .push--large--five-eighths {
    left: 62.5%; }

  .push--large--six-eighths {
    left: 75%; }

  .push--large--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--large--one-tenth {
    left: 10%; }

  .push--large--two-tenths {
    left: 20%; }

  .push--large--three-tenths {
    left: 30%; }

  .push--large--four-tenths {
    left: 40%; }

  .push--large--five-tenths {
    left: 50%; }

  .push--large--six-tenths {
    left: 60%; }

  .push--large--seven-tenths {
    left: 70%; }

  .push--large--eight-tenths {
    left: 80%; }

  .push--large--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--large--one-twelfth {
    left: 8.333%; }

  .push--large--two-twelfths {
    left: 16.666%; }

  .push--large--three-twelfths {
    left: 25%; }

  .push--large--four-twelfths {
    left: 33.333%; }

  .push--large--five-twelfths {
    left: 41.666%; }

  .push--large--six-twelfths {
    left: 50%; }

  .push--large--seven-twelfths {
    left: 58.333%; }

  .push--large--eight-twelfths {
    left: 66.666%; }

  .push--large--nine-twelfths {
    left: 75%; }

  .push--large--ten-twelfths {
    left: 83.333%; }

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*!
	Modaal - accessible modals - v0.3.1
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden; }

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden; }

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0; }

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out; }
  .modaal-wrapper * {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden; }
  .modaal-wrapper .modaal-close {
    border: none;
    background: transparent;
    padding: 0;
    -webkit-appearance: none; }
  .modaal-wrapper.modaal-start_none {
    display: none;
    opacity: 1; }
  .modaal-wrapper.modaal-start_fade {
    opacity: 0; }
  .modaal-wrapper *[tabindex="0"] {
    outline: none !important; }
  .modaal-wrapper.modaal-fullscreen {
    overflow: hidden; }

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%; }
  .modaal-fullscreen .modaal-outer-wrapper {
    display: block; }

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px; }
  .modaal-fullscreen .modaal-inner-wrapper {
    padding: 0;
    display: block;
    vertical-align: top; }

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  padding: 30px;
  color: #000;
  max-width: 520px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto; }
  .modaal-container.is_loading {
    height: 100px;
    width: 100px;
    overflow: hidden; }
  .modaal-fullscreen .modaal-container {
    max-width: none;
    height: 100%;
    overflow: auto; }

.search-pop .modaal-close,
.image-pop .modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  transition: all 0.2s ease-in-out; }
  .search-pop .modaal-close:focus, .search-pop .modaal-close:hover,
  .image-pop .modaal-close:focus,
  .image-pop .modaal-close:hover {
    outline: none; }
    .search-pop .modaal-close:focus:before, .search-pop .modaal-close:focus:after, .search-pop .modaal-close:hover:before, .search-pop .modaal-close:hover:after,
    .image-pop .modaal-close:focus:before,
    .image-pop .modaal-close:focus:after,
    .image-pop .modaal-close:hover:before,
    .image-pop .modaal-close:hover:after {
      background: #fff; }
  .search-pop .modaal-close span,
  .image-pop .modaal-close span {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden; }
  .search-pop .modaal-close:before, .search-pop .modaal-close:after,
  .image-pop .modaal-close:before,
  .image-pop .modaal-close:after {
    display: block;
    content: " ";
    position: absolute;
    top: 14px;
    left: 23px;
    width: 4px;
    height: 22px;
    border-radius: 4px;
    background: #fff;
    transition: background 0.2s ease-in-out; }
  .search-pop .modaal-close:before,
  .image-pop .modaal-close:before {
    transform: rotate(-45deg); }
  .search-pop .modaal-close:after,
  .image-pop .modaal-close:after {
    transform: rotate(45deg); }
  .modaal-fullscreen .search-pop .modaal-close, .modaal-fullscreen
  .image-pop .modaal-close {
    background: #afb7bc;
    right: 10px;
    top: 10px; }

.search-pop .modaal-close {
  color: #000; }
  .search-pop .modaal-close:before, .search-pop .modaal-close:after {
    display: block;
    content: " ";
    position: absolute;
    top: 14px;
    left: 23px;
    width: 4px;
    height: 22px;
    border-radius: 4px;
    background: #000;
    transition: background 0.2s ease-in-out; }

.modaal-content-container {
  padding: 0; }

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0; }

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent; }
  .modaal-confirm-btn.modaal-ok {
    padding: 10px 15px;
    color: #fff;
    background: #555;
    border-radius: 3px;
    transition: background 0.2s ease-in-out; }
    .modaal-confirm-btn.modaal-ok:hover {
      background: #2f2f2f; }
  .modaal-confirm-btn.modaal-cancel {
    text-decoration: underline; }
    .modaal-confirm-btn.modaal-cancel:hover {
      text-decoration: none;
      color: #2f2f2f; }

@keyframes instaReveal {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-o-keyframes instaReveal {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-moz-keyframes instaReveal {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-ms-keyframes instaReveal {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important; }
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent; }
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important; }
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards; }

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px; }
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%; }

.modaal-gallery-wrap {
  position: relative;
  color: #fff; }

.modaal-gallery-item {
  display: none; }
  .modaal-gallery-item img {
    display: block; }
  .modaal-gallery-item.is_active {
    display: block; }

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff; }
  .modaal-gallery-label:focus {
    outline: none; }

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out; }
  .modaal-gallery-control.is_hidden {
    opacity: 0;
    cursor: default; }
  .modaal-gallery-control:focus, .modaal-gallery-control:hover {
    outline: none;
    background: #fff; }
    .modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
      background: #afb7bc; }
  .modaal-gallery-control span {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden; }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    display: block;
    content: " ";
    position: absolute;
    top: 16px;
    left: 25px;
    width: 4px;
    height: 18px;
    border-radius: 4px;
    background: #fff;
    transition: background 0.2s ease-in-out; }
  .modaal-gallery-control:before {
    margin: -5px 0 0;
    transform: rotate(-45deg); }
  .modaal-gallery-control:after {
    margin: 5px 0 0;
    transform: rotate(45deg); }

.modaal-gallery-next {
  left: 100%;
  margin-left: 40px; }

.modaal-gallery-prev {
  right: 100%;
  margin-right: 40px; }
  .modaal-gallery-prev:before, .modaal-gallery-prev:after {
    left: 22px; }
  .modaal-gallery-prev:before {
    margin: 5px 0 0;
    transform: rotate(-45deg); }
  .modaal-gallery-prev:after {
    margin: -5px 0 0;
    transform: rotate(45deg); }

.modaal-video-wrap {
  margin: auto 50px;
  position: relative; }

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto; }
  .modaal-video-container iframe,
  .modaal-video-container object,
  .modaal-video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%; }

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block; }

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px; } }
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px; }

  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7); }
    .modaal-gallery-control:before, .modaal-gallery-control:after {
      background: #fff; }

  .modaal-gallery-next {
    left: auto;
    right: 20px; }

  .modaal-gallery-prev {
    left: 20px;
    right: auto; } }
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important; } }
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important; } }
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px; }

  .modaal-instagram iframe {
    width: 600px !important; } }
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important; }

  .modaal-video-container {
    max-width: 900px;
    max-height: 510px; } }
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important; } }
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none; } }
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25); }

@-ms-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
@-moz-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
@-o-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute; }

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff; }

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s; }

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite; }

.modaal-loading-spinner > div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .12s;
  -moz-animation-delay: .12s;
  -webkit-animation-delay: .12s;
  -o-animation-delay: .12s;
  animation-delay: .12s; }

.modaal-loading-spinner > div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .25s;
  -moz-animation-delay: .25s;
  -webkit-animation-delay: .25s;
  -o-animation-delay: .25s;
  animation-delay: .25s; }

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite; }

.modaal-loading-spinner > div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .37s;
  -moz-animation-delay: .37s;
  -webkit-animation-delay: .37s;
  -o-animation-delay: .37s;
  animation-delay: .37s; }

.modaal-loading-spinner > div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .5s;
  -moz-animation-delay: .5s;
  -webkit-animation-delay: .5s;
  -o-animation-delay: .5s;
  animation-delay: .5s; }

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite; }

.modaal-loading-spinner > div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .62s;
  -moz-animation-delay: .62s;
  -webkit-animation-delay: .62s;
  -o-animation-delay: .62s;
  animation-delay: .62s; }

.modaal-loading-spinner > div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .75s;
  -moz-animation-delay: .75s;
  -webkit-animation-delay: .75s;
  -o-animation-delay: .75s;
  animation-delay: .75s; }

.modaal-loading-spinner > div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .87s;
  -moz-animation-delay: .87s;
  -webkit-animation-delay: .87s;
  -o-animation-delay: .87s;
  animation-delay: .87s; }

.modaal-loading-spinner > div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0); }

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.6em; }

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: "akzidenz-grotesk_bqregular";
  font-size: 16px;
  line-height: 1.5; }

@font-face {
  font-family: 'akzidenz-grotesk_bq_condensBd';
  src: url("fonts/akzidenz-grotesk-bq-bold-condensed_2806-webfont.woff2") format("woff2"), url("fonts/akzidenz-grotesk-bq-bold-condensed_2806-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'sakzidenz-grotesk_bqlight';
  src: url("fonts/akzidenz-grotesk-bq-light_2831-webfont.woff2") format("woff2"), url("fonts/akzidenz-grotesk-bq-light_2831-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'akzidenz-grotesk_bqregular';
  src: url("fonts/akzidenz-grotesk-bq-regular_2840-webfont.woff2") format("woff2"), url("fonts/akzidenz-grotesk-bq-regular_2840-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-family: "akzidenz-grotesk_bq_condensBd";
  color: #000; }

h1 {
  font-size: 72px; }
  @media screen and (max-width: 663px) {
    h1 {
      font-size: 46px; } }

h2 {
  font-size: 64px; }

h3 {
  font-size: 36px; }

h1.hero {
  font-size: 56px;
  color: #fff;
  margin: 10px 0 0;
  line-height: 1.1;
  text-transform: uppercase; }
  @media screen and (max-width: 663px) {
    h1.hero {
      font-size: 46px;
      margin: 0; } }
  h1.hero span {
    color: #e5b53b; }

h2.hero {
  font-size: 32px;
  color: #fff;
  margin: 10px 0 0;
  line-height: 1.1;
  text-transform: uppercase; }
  @media screen and (max-width: 663px) {
    h2.hero {
      font-size: 24px; } }
  h2.hero span {
    color: #e5b53b; }

p {
  margin-bottom: 1.5em; }

dfn, cite, em, i {
  font-style: italic; }

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem; }

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark, ins {
  background: #fff9c0;
  text-decoration: none; }

big {
  font-size: 125%; }

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box; }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit; }

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */ }

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em; }

ul, ol {
  margin: 0 0 1.5em 3em; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

dt {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */ }

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */ }

table {
  margin: 0 0 1.5em;
  width: 100%; }

.button {
  font-size: 24px;
  font-family: "akzidenz-grotesk_bq_condensBd";
  text-transform: uppercase;
  display: inline-block;
  margin-top: 40px;
  background-color: #000;
  position: relative; }
  .button:hover {
    z-index: 10; }
  .button.white--button {
    background-color: #fff; }
    .button.white--button a {
      color: #000; }
      .button.white--button a:hover span {
        color: #000; }
      .button.white--button a span {
        color: #e4002b; }
  .button a {
    padding: 20px 20px;
    text-decoration: none;
    color: #fff; }
    .button a:hover {
      color: #fff; }

.buttons {
  margin-right: 20px;
  float: left; }

[class^="btn-"] {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  text-transform: uppercase; }

.btn-6 {
  color: #fff;
  position: relative; }
  .btn-6 span.cpp {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #e4002b;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    color: #000;
    z-index: -1; }
    @media screen and (max-width: 1024px) {
      .btn-6 span.cpp {
        display: none; } }
  .btn-6:hover {
    color: #fff; }
    .btn-6:hover span {
      width: 225%;
      height: 225%; }
      @media screen and (max-width: 1024px) {
        .btn-6:hover span {
          display: none; } }
  .btn-6:active {
    background-color: red; }

.slide-home sup {
  top: -0.2em !important; }

.ukrain-box {
  width: 100%;
  padding-top: 0;
  position: relative;
  font-family: "akzidenz-grotesk_bq_condensBd", sans-serif;
  -webkit-animation: AnimationName 28s ease infinite;
  -moz-animation: AnimationName 28s ease infinite;
  animation: AnimationName 28s ease infinite;
  background-image: url("../images/modal-wck/STOLI_UKRAINE_DOVE_BG_light.jpg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat; }
  .ukrain-box .ukrain-close {
    z-index: 4000;
    position: absolute;
    width: 20px;
    right: 3rem;
    top: 3rem;
    cursor: pointer;
    background: black;
    padding: 0.5rem; }
  .ukrain-box .ukrain-wrapper {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%; }
    .ukrain-box .ukrain-wrapper > div {
      width: 100%;
      margin: 2rem;
      text-align: center; }
      .ukrain-box .ukrain-wrapper > div.ukrain-image {
        text-align: center; }
        .ukrain-box .ukrain-wrapper > div.ukrain-image img {
          margin: 0 auto; }
        .ukrain-box .ukrain-wrapper > div.ukrain-image p {
          width: 60%;
          margin: 3rem auto;
          font-size: 3rem;
          color: #323232; }
          .ukrain-box .ukrain-wrapper > div.ukrain-image p sup {
            font-size: 2rem; }
          @media (max-width: 600px) {
            .ukrain-box .ukrain-wrapper > div.ukrain-image p {
              font-size: 2rem; } }
      .ukrain-box .ukrain-wrapper > div.ukrain-copy {
        text-align: justify;
        overflow-y: scroll;
        max-height: 100%; }
        .ukrain-box .ukrain-wrapper > div.ukrain-copy p {
          font-size: 2rem; }
  .ukrain-box .ukrain-box--border-blue {
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    border-top: 2rem solid #0057b7;
    border-left: 2rem solid #0057b7;
    border-right: 2rem solid #0057b7;
    opacity: 0.96; }
    @media (max-width: 768px) {
      .ukrain-box .ukrain-box--border-blue {
        border-top: 1rem solid #0057b7;
        border-left: 1rem solid #0057b7;
        border-right: 1rem solid #0057b7; } }
  .ukrain-box .ukrain-box--border-yellow {
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    border-bottom: 2rem solid #ffd700;
    border-left: 2rem solid #ffd700;
    border-right: 2rem solid #ffd700;
    opacity: 0.96; }
    @media (max-width: 768px) {
      .ukrain-box .ukrain-box--border-yellow {
        border-bottom: 1rem solid #ffd700;
        border-left: 1rem solid #ffd700;
        border-right: 1rem solid #ffd700; } }
  .ukrain-box .wck--wrapper {
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    max-width: 1306px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    display: block;
    overflow-y: scroll; }
    @media (max-width: 960px) {
      .ukrain-box .wck--wrapper {
        display: block;
        overflow-y: scroll; } }
    .ukrain-box .wck--wrapper > div {
      padding: 2rem 3rem;
      float: left; }
      @media (max-width: 960px) {
        .ukrain-box .wck--wrapper > div {
          float: left; } }
      @media (max-width: 450px) {
        .ukrain-box .wck--wrapper > div {
          padding: 1rem; } }
      .ukrain-box .wck--wrapper > div:nth-of-type(1) {
        width: 80%;
        font-size: 1.7rem;
        color: #013a79;
        padding-bottom: 0; }
        @media (max-width: 960px) {
          .ukrain-box .wck--wrapper > div:nth-of-type(1) {
            width: 100%;
            overflow-y: unset; } }
        @media (max-width: 700px) {
          .ukrain-box .wck--wrapper > div:nth-of-type(1) {
            margin-bottom: 0; } }
        .ukrain-box .wck--wrapper > div:nth-of-type(1) img {
          width: 200px; }
        .ukrain-box .wck--wrapper > div:nth-of-type(1) h2 {
          color: #013a79 !important;
          font-size: 1.9rem !important;
          line-height: 1.1; }
          .ukrain-box .wck--wrapper > div:nth-of-type(1) h2 sup {
            font-size: 1.1rem; }
        .ukrain-box .wck--wrapper > div:nth-of-type(1) h3 {
          color: #013a79;
          font-size: 1.6rem;
          text-align: center;
          padding-bottom: 1rem;
          line-height: 1.2; }
          @media (max-width: 1030px) {
            .ukrain-box .wck--wrapper > div:nth-of-type(1) h3 {
              font-size: 1.5rem; } }
          .ukrain-box .wck--wrapper > div:nth-of-type(1) h3 sup {
            font-size: 1.1rem; }
        .ukrain-box .wck--wrapper > div:nth-of-type(1) p {
          text-align: justify;
          margin-bottom: 15px;
          font-size: 1.1rem; }
          .ukrain-box .wck--wrapper > div:nth-of-type(1) p sup {
            font-size: 0.6rem; }
          .ukrain-box .wck--wrapper > div:nth-of-type(1) p.wck--hashtag {
            font-size: 1.5rem;
            text-align: center; }
        .ukrain-box .wck--wrapper > div:nth-of-type(1) > div {
          text-align: center; }
          .ukrain-box .wck--wrapper > div:nth-of-type(1) > div .wck--link {
            background-color: #e51d2e;
            border: 2px solid #e51d2e;
            color: white;
            text-transform: uppercase;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 0.7rem 5rem 0.7rem 5rem;
            width: 150px;
            transition: 0.3s;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); }
            @media (max-width: 1030px) {
              .ukrain-box .wck--wrapper > div:nth-of-type(1) > div .wck--link {
                padding: 1.1rem 5rem 1.1rem 5rem; } }
            @media (max-width: 540px) {
              .ukrain-box .wck--wrapper > div:nth-of-type(1) > div .wck--link {
                width: 100%;
                display: block;
                margin-bottom: 1rem; } }
            .ukrain-box .wck--wrapper > div:nth-of-type(1) > div .wck--link:hover {
              background-color: #fff;
              color: #e51d2e;
              text-decoration: none !important; }
            .ukrain-box .wck--wrapper > div:nth-of-type(1) > div .wck--link.wck--link--blue {
              background: #0057b7;
              border: 2px solid #0057b7; }
              .ukrain-box .wck--wrapper > div:nth-of-type(1) > div .wck--link.wck--link--blue:hover {
                background-color: #fff;
                color: #0057b7 !important; }
            .ukrain-box .wck--wrapper > div:nth-of-type(1) > div .wck--link.wck--link--yellow {
              background: #ffd700;
              border: 2px solid #ffd700; }
              .ukrain-box .wck--wrapper > div:nth-of-type(1) > div .wck--link.wck--link--yellow:hover {
                background-color: #fff;
                color: #ffd700 !important; }
      .ukrain-box .wck--wrapper > div:nth-of-type(2) {
        width: 20%; }
        @media (max-width: 960px) {
          .ukrain-box .wck--wrapper > div:nth-of-type(2) {
            width: 100%;
            text-align: center;
            padding-bottom: 0; } }
        @media (max-width: 700px) {
          .ukrain-box .wck--wrapper > div:nth-of-type(2) {
            flex-wrap: wrap;
            padding-top: 0; } }
        @media (max-width: 700px) {
          .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--insupport {
            width: 100%; } }
        .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--insupport p {
          font-size: 1.1rem;
          color: #0c7abf;
          width: 100%; }
        .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--hashtag-heading {
          color: #0057b7; }
          @media (max-width: 840px) {
            .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--hashtag-heading {
              display: none; } }
        .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--logo {
          width: 100%;
          height: auto;
          margin: 0.5rem auto; }
          @media (max-width: 960px) {
            .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--logo {
              width: 50%;
              padding: 0 3rem; } }
          @media (max-width: 760px) {
            .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--logo {
              width: 70%;
              padding: 0 3rem; } }
          @media (max-width: 500px) {
            .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--logo {
              width: 100%;
              padding: 0 3rem; } }
        @media (max-width: 960px) {
          .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoli {
            width: 60%;
            padding: 3rem; } }
        @media (max-width: 700px) {
          .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoli {
            width: 100%;
            padding: 0 9rem; } }
        @media (max-width: 500px) {
          .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoli {
            padding: 0 5rem; } }
        .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoligroup {
          display: flex;
          flex-wrap: wrap; }
          @media (max-width: 960px) {
            .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoligroup {
              width: 33%; } }
          @media (max-width: 700px) {
            .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoligroup {
              width: auto;
              max-width: 400px;
              margin: 0 auto; } }
          .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoligroup img {
            width: 50%; }
            .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoligroup img:nth-of-type(2) {
              padding: 2rem; }
          .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoligroup h3, .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoligroup h4 {
            color: #0057b7; }
          .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoligroup h3 {
            font-size: 2.9rem;
            margin-bottom: 0; }
            .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoligroup h3 sup {
              font-size: 2rem; }
          .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoligroup h4 {
            font-size: 1.3rem; }
            .ukrain-box .wck--wrapper > div:nth-of-type(2) .wck--stoligroup h4 sup {
              font-size: 1rem; }

.slide-home sup {
  top: -0.2em !important; }

@media (max-width: 1200px) {
  .ukrain-box .ukrain-wrapper > div.ukrain-copy p {
    font-size: 1.7rem; } }
@media (max-width: 1024px) {
  .ukrain-box .ukrain-wrapper {
    flex-wrap: wrap;
    max-height: 100%;
    overflow-y: scroll; }
    .ukrain-box .ukrain-wrapper > div {
      width: 100%; }
      .ukrain-box .ukrain-wrapper > div.ukrain-image p {
        width: 100%; }
      .ukrain-box .ukrain-wrapper > div.ukrain-copy {
        max-height: none; } }
@media (max-width: 800px) {
  .ukrain-box .lgbt-text-1 {
    top: 10%;
    left: 10%;
    line-height: 72px;
    font-size: 2.5em; }
  .ukrain-box .lgbt-text-2 {
    top: 34%;
    left: 10%;
    font-size: 1.7em;
    z-index: 3000; }
  .ukrain-box .lgbt-text-3 {
    top: 42%;
    left: 10%;
    line-height: 52px;
    font-size: 1.5em;
    z-index: 3000; }
  .ukrain-box .lgbt-logos {
    width: 250px; } }
@media (max-width: 780px) {
  .ukrain-box {
    overflow-y: scroll; }
    .ukrain-box .lgbt-text-1 {
      position: unset;
      float: left;
      text-align: center;
      margin: 40px auto 10px auto;
      width: 100%; }
    .ukrain-box .lgbt-text-2 {
      float: left;
      position: unset;
      top: unset;
      text-align: center;
      margin: 0 auto;
      width: 100%;
      font-size: 1.5em;
      padding: 5px; }
    .ukrain-box .lgbt-text-3 {
      float: left;
      position: unset;
      text-align: center;
      margin: 0 auto;
      width: 100%;
      font-size: 1.2em;
      padding: 5px;
      line-height: 30px; }
    .ukrain-box .lgbt-flag {
      bottom: unset;
      top: 320px; }
    .ukrain-box .lgbt-botle {
      right: 50%;
      margin-right: -80px;
      top: 330px; }
    .ukrain-box .lgbt-logos {
      bottom: unset;
      top: 1020px;
      width: 100%;
      text-align: center;
      padding-bottom: 20px;
      left: unset;
      padding: 30px; }
      .ukrain-box .lgbt-logos img {
        max-width: 200px;
        margin: 0 auto !important;
        float: none !important; } }
.rd-ukr-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0rem 4rem;
  font-family: "akzidenz-grotesk_bq_condensBd";
  background: #f1f1f1; }
  @media (max-width: 1024px) {
    .rd-ukr-wrapper {
      flex-wrap: wrap; } }
  @media (max-width: 740px) {
    .rd-ukr-wrapper {
      padding: 0rem 1rem; } }
  .rd-ukr-wrapper sup {
    font-size: 1rem;
    top: -0.2em; }
  .rd-ukr-wrapper > div {
    width: 100%;
    margin: 2rem;
    text-align: center; }
    .rd-ukr-wrapper > div.rd-ukr-image {
      text-align: center; }
      .rd-ukr-wrapper > div.rd-ukr-image img {
        margin: 0 auto;
        max-width: 100%; }
      .rd-ukr-wrapper > div.rd-ukr-image p {
        width: 80%;
        margin: 3rem auto;
        line-height: 1.1;
        font-size: 2rem;
        color: #323232; }
        @media (max-width: 600px) {
          .rd-ukr-wrapper > div.rd-ukr-image p {
            font-size: 2rem; } }
    .rd-ukr-wrapper > div.rd-ukrain-copy {
      text-align: justify;
      overflow-y: scroll;
      max-height: 100%; }
      .rd-ukr-wrapper > div.rd-ukrain-copy p {
        font-size: 1.1rem; }

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em; }
  button:hover,
  input[type="button"]:hover,
  input[type="reset"]:hover,
  input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa; }
  button:active, button:focus,
  input[type="button"]:active,
  input[type="button"]:focus,
  input[type="reset"]:active,
  input[type="reset"]:focus,
  input[type="submit"]:active,
  input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="password"]:focus,
  input[type="search"]:focus,
  input[type="number"]:focus,
  input[type="tel"]:focus,
  input[type="range"]:focus,
  input[type="date"]:focus,
  input[type="month"]:focus,
  input[type="week"]:focus,
  input[type="time"]:focus,
  input[type="datetime"]:focus,
  input[type="datetime-local"]:focus,
  input[type="color"]:focus,
  textarea:focus {
    color: #111; }

select {
  border: 1px solid #ccc; }

textarea {
  width: 100%; }

#post-9 .gform_wrapper,
#post-9 gform_confirmation_wrapper {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto; }
  #post-9 .gform_wrapper .gfield_label,
  #post-9 gform_confirmation_wrapper .gfield_label {
    display: none; }
  #post-9 .gform_wrapper .gfield,
  #post-9 gform_confirmation_wrapper .gfield {
    margin-top: 33px !important; }
#post-9 input[type="text"], #post-9 input[type="email"], #post-9 input[type="url"], #post-9 input[type="password"], #post-9 input[type="search"], #post-9 input[type="number"], #post-9 input[type="tel"], #post-9 input[type="range"], #post-9 input[type="date"], #post-9 input[type="month"], #post-9 input[type="week"], #post-9 input[type="time"], #post-9 input[type="datetime"], #post-9 input[type="datetime-local"], #post-9 input[type="color"], #post-9 textarea {
  border: none;
  border-bottom: 2px solid #000;
  border-radius: 0;
  text-indent: 0;
  padding: 5px 4px 5px 10px;
  line-height: 18px;
  height: 30px; }
#post-9 textarea {
  padding-left: 8px;
  padding-bottom: 0; }
#post-9 ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 24px;
  text-transform: uppercase;
  font-family: "akzidenz-grotesk_bq_condensBd";
  color: #b2b2b2; }
#post-9 ::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 24px;
  text-transform: uppercase;
  font-family: "akzidenz-grotesk_bq_condensBd";
  color: #b2b2b2; }
#post-9 :-ms-input-placeholder {
  /* IE 10+ */
  font-size: 24px;
  text-transform: uppercase;
  font-family: "akzidenz-grotesk_bq_condensBd";
  color: #b2b2b2; }
#post-9 :-moz-placeholder {
  /* Firefox 18- */
  font-size: 24px;
  text-transform: uppercase;
  font-family: "akzidenz-grotesk_bq_condensBd";
  color: #b2b2b2; }
#post-9 #input_1_6_6_container,
#post-9 #input_2_6_6_container {
  width: 100%;
  position: relative; }
  #post-9 #input_1_6_6_container:after,
  #post-9 #input_2_6_6_container:after {
    transform: rotate(180deg);
    content: "";
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid black;
    position: absolute;
    right: 20px;
    top: 18px;
    left: inherit; }
  #post-9 #input_1_6_6_container select,
  #post-9 #input_2_6_6_container select {
    border: none;
    border-bottom: 2px solid #000;
    border-radius: 0;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 24px;
    text-transform: uppercase;
    font-family: "akzidenz-grotesk_bq_condensBd";
    color: #b2b2b2;
    text-indent: 0.01px;
    text-overflow: "";
    padding-left: 10px; }
  #post-9 #input_1_6_6_container label#input_1_6_6_label,
  #post-9 #input_2_6_6_container label#input_1_6_6_label {
    display: none !important; }
#post-9 .gform_footer {
  text-align: center; }
  #post-9 .gform_footer input[type=submit] {
    background: #000;
    border: none;
    border-radius: 0;
    color: #fff;
    font-size: 24px;
    display: inline-block;
    padding: 15px 20px; }
#post-9 select::-ms-expand {
  display: none; }
#post-9 img.gform_ajax_spinner {
  display: none !important; }
#post-9 .gform_wrapper li.gfield.gfield_error {
  border: none;
  background-color: transparent;
  margin-top: 22px !important; }
  #post-9 .gform_wrapper li.gfield.gfield_error input[type="text"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="email"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="url"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="password"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="search"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="number"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="tel"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="range"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="date"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="month"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="week"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="time"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="datetime"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="datetime-local"], #post-9 .gform_wrapper li.gfield.gfield_error input[type="color"], #post-9 .gform_wrapper li.gfield.gfield_error textarea {
    border-bottom: 2px solid #e4002b; }
  #post-9 .gform_wrapper li.gfield.gfield_error select {
    border-bottom: 2px solid #e4002b !important; }
#post-9 .gform_wrapper .validation_message {
  color: #000; }
#post-9 .validation_error {
  display: none !important; }

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue; }
  a:visited {
    color: purple; }
  a:hover, a:focus, a:active {
    color: midnightblue; }
  a:focus {
    outline: thin dotted; }
  a:hover, a:active {
    outline: 0; }

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.secondary-nav-container {
  position: absolute;
  height: 50px;
  background-color: #b51520;
  width: 0;
  top: 100px;
  right: 0;
  z-index: 9999;
  transition: width 0.3s ease-in; }
  @media screen and (max-width: 1203px) {
    .secondary-nav-container {
      display: none; } }

.secondary-nav-container.active {
  width: 100%;
  right: 0; }
  .secondary-nav-container.active .container {
    height: 50px; }
    @media screen and (min-width: 1025px) {
      .secondary-nav-container.active .container:hover:after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid #b51520;
        top: -15px;
        right: 675px; } }

li.menu-item-has-children:hover:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #b51520;
  top: 85px;
  right: 680px; }
  @media screen and (max-width: 1203px) {
    li.menu-item-has-children:hover:after {
      content: none; } }
li.menu-item-has-children a:before {
  content: "";
  background-image: url(https://www.stoli-group.com/wp-content/themes/stoli/images/small-arrow.png);
  position: relative;
  right: -57px;
  top: 16px;
  width: 13px;
  height: 9px;
  background-size: 100%;
  background-repeat: no-repeat;
  display: block; }
  @media screen and (max-width: 1203px) {
    li.menu-item-has-children a:before {
      content: none; } }

.main-navigation {
  display: block;
  float: right;
  line-height: 1;
  font-family: "akzidenz-grotesk_bq_condensBd";
  font-size: 21px;
  color: #fff;
  text-transform: uppercase; }
  .main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0; }
    .main-navigation ul .sub-menu-wrap {
      position: absolute;
      left: 0;
      height: 50px;
      top: 100px;
      width: 100%;
      display: none; }
      @media screen and (max-width: 1203px) {
        .main-navigation ul .sub-menu-wrap {
          display: block; } }
      .main-navigation ul .sub-menu-wrap:hover:after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid #b51520;
        top: -15px;
        right: 655px; }
        @media screen and (max-width: 1203px) {
          .main-navigation ul .sub-menu-wrap:hover:after {
            display: none; } }
      @media screen and (max-width: 1203px) {
        .main-navigation ul .sub-menu-wrap {
          position: relative;
          top: 0;
          font-size: 16px; } }
      .main-navigation ul .sub-menu-wrap ul {
        float: right;
        position: relative;
        z-index: 99999;
        margin-top: 15px;
        font-size: 18px; }
        @media screen and (max-width: 1203px) {
          .main-navigation ul .sub-menu-wrap ul {
            float: inherit; } }
        .main-navigation ul .sub-menu-wrap ul li {
          float: left;
          margin-right: 40px; }
          .main-navigation ul .sub-menu-wrap ul li:last-child {
            margin-right: 0; }
        .main-navigation ul .sub-menu-wrap ul ul {
          left: -999em;
          top: 0; }
        .main-navigation ul .sub-menu-wrap ul li:hover > ul, .main-navigation ul .sub-menu-wrap ul li.focus > ul {
          left: 100%; }
        .main-navigation ul .sub-menu-wrap ul a {
          color: #fff;
          padding: 0; }
        .main-navigation ul .sub-menu-wrap ul .current_page_item > a,
        .main-navigation ul .sub-menu-wrap ul .current-menu-item > a,
        .main-navigation ul .sub-menu-wrap ul .current_page_ancestor > a,
        .main-navigation ul .sub-menu-wrap ul .current-menu-ancestor > a {
          color: #e5b53b; }
        .main-navigation ul .sub-menu-wrap ul :hover > a,
        .main-navigation ul .sub-menu-wrap ul .focus > a {
          color: #e5b53b; }
        .main-navigation ul .sub-menu-wrap ul a:hover,
        .main-navigation ul .sub-menu-wrap ul a.focus {
          color: #e5b53b; }
    .main-navigation ul .sub-menu-wrap.active {
      display: block; }
    .main-navigation ul li:hover > ul,
    .main-navigation ul li.focus > ul {
      left: auto; }
  .main-navigation li {
    float: left;
    margin-right: 50px; }
    .main-navigation li:hover > a {
      color: #e5b53b; }
    .main-navigation li a {
      color: #fff;
      display: block;
      padding-top: 44px;
      padding-bottom: 32px; }
      @media screen and (max-width: 1203px) {
        .main-navigation li a {
          padding: 0;
          display: initial;
          position: relative; } }
  .main-navigation a {
    display: block;
    text-decoration: none; }
    @media screen and (max-width: 1203px) {
      .main-navigation a {
        display: initial;
        position: relative; } }
  .main-navigation .current_page_item > a,
  .main-navigation .current-menu-item > a {
    color: #e5b53b; }

li#menu-item-36 {
  margin-top: -8px; }

/* Small menu. */
.main-navigation.toggled .menu-main-container {
  position: fixed;
  width: 100%;
  padding-bottom: 10px;
  left: 0;
  z-index: 999999;
  background-color: #e4002b;
  top: 100px; }
  .main-navigation.toggled .menu-main-container .search-form {
    float: left; }
  .main-navigation.toggled .menu-main-container .search--icon {
    display: none; }
    @media screen and (max-width: 1203px) {
      .main-navigation.toggled .menu-main-container .search--icon {
        display: block !important;
        float: right !important;
        margin-top: 0 !important;
        border: none;
        border-radius: 0;
        padding-bottom: 4px !important; } }
  .main-navigation.toggled .menu-main-container .search-bar {
    display: block;
    width: 280px;
    float: none;
    margin: 20px auto 0;
    padding-bottom: 80px; }
    .main-navigation.toggled .menu-main-container .search-bar input {
      width: 223px;
      -webkit-appearance: none;
      float: left; }
  .main-navigation.toggled .menu-main-container ul {
    display: block;
    text-align: center;
    margin-top: 13px; }
    .main-navigation.toggled .menu-main-container ul li {
      display: inline-block;
      width: 100%;
      margin: 0;
      padding: 0;
      margin-bottom: 10px; }
      .main-navigation.toggled .menu-main-container ul li.menu-item-40 {
        margin-bottom: 40px; }

@media screen and (min-width: 1204px) {
  .menu-toggle {
    display: none; }

  .main-navigation ul {
    display: block; } }
.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden; }
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%; }
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%; }

.menu-toggle {
  background: none;
  border: none;
  width: 65px;
  margin-top: 15px; }

body.single-brand #menu-item-37 a {
  color: #e5b53b; }

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */ }
  .screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */ }

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

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  *zoom: 1; }
  .clear:before:after,
  .clear:after:after,
  .entry-content:before:after,
  .entry-content:after:after,
  .comment-content:before:after,
  .comment-content:after:after,
  .site-header:before:after,
  .site-header:after:after,
  .site-content:before:after,
  .site-content:after:after,
  .site-footer:before:after,
  .site-footer:after:after {
    content: '';
    display: table;
    clear: both; }

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both; }

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */ }
  .widget select {
    max-width: 100%; }

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block; }

.hentry {
  margin: 0 0 1.5em; }

.updated:not(.published) {
  display: none; }

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0; }

.page-links {
  clear: both;
  margin: 0 0 1.5em; }

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word; }

.bypostauthor {
  display: block; }

a {
  transition: all 0.2s linear; }

body {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.container {
  max-width: 1306px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative; }
  .container p a {
    color: #e4002b; }
    .container p a:visited {
      color: #e4002b; }

.container-two {
  max-width: 829px; }

section {
  width: 100%;
  *zoom: 1;
  padding: 100px 0 0; }
  section:after {
    content: '';
    display: table;
    clear: both; }

section.icons {
  padding-top: 50px; }

body.page-id-19 section.icons {
  padding-top: 100px; }

.single--content {
  width: 100%;
  *zoom: 1;
  margin-bottom: 50px; }
  .single--content:after {
    content: '';
    display: table;
    clear: both; }
  .single--content p {
    color: #000; }

.section--header {
  text-transform: uppercase;
  padding-bottom: 100px; }
  .section--header h1 {
    padding: 0;
    margin: 0;
    line-height: 1; }

section.search-area p {
  margin-bottom: 80px; }

section.single--section {
  padding-top: 80px; }

.page--header {
  padding-bottom: 0px; }

.header--image {
  padding: 0;
  max-height: 300px;
  overflow: hidden; }
  .header--image .image {
    height: 300px;
    background-size: cover;
    background-position: center bottom; }

.content h1 {
  text-transform: uppercase;
  margin-top: 0;
  line-height: 1;
  margin-bottom: 20px; }
.content img {
  width: 100%;
  height: auto;
  display: block; }
  .content img.size-medium, .content img.alignright {
    width: auto; }
.content h3 {
  text-transform: uppercase; }
.content a {
  color: #e4002b;
  text-decoration: none; }
  .content a:hover {
    text-decoration: underline; }
  .content a:visited {
    color: #e4002b; }

#masthead {
  width: 100%;
  background-color: #e4002b;
  height: 100px;
  position: fixed;
  z-index: 99; }
  #masthead .search--icon {
    float: right;
    margin-top: 25px;
    padding: 10px 10px 0 10px;
    cursor: pointer;
    background: #b51520; }
    @media screen and (max-width: 1204px) {
      #masthead .search--icon {
        display: none; } }
  #masthead .mob-menu-search-icon {
    display: none; }
  #masthead .site-branding {
    margin-top: 0px; }
  #masthead h1 {
    margin: 0;
    font-size: inherit;
    margin-top: 12px; }
  #masthead .nav--header {
    position: relative;
    width: 100%;
    float: left; }

.menu-main-container .search-bar {
  display: none; }

#content {
  padding-top: 100px; }

.site-footer {
  width: 100%;
  background: #000;
  text-align: center;
  padding: 50px 0 60px; }
  .site-footer .menu-footer-container {
    float: left;
    width: 100%;
    text-transform: uppercase;
    font-family: "akzidenz-grotesk_bq_condensBd";
    font-size: 18px; }
  .site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap; }
    @media screen and (max-width: 1251px) {
      .site-footer ul {
        white-space: normal;
        margin-bottom: 40px; } }
    .site-footer ul li {
      display: inline-block;
      margin-right: 45px;
      position: relative;
      max-height: 115px;
      vertical-align: middle; }
      @media screen and (max-width: 1251px) {
        .site-footer ul li {
          width: 24%;
          margin-right: inherit; } }
      @media screen and (max-width: 663px) {
        .site-footer ul li {
          width: 32%; } }
      .site-footer ul li a {
        color: #fff;
        text-decoration: none; }
        .site-footer ul li a:hover {
          color: #e5b53b; }
      .site-footer ul li img {
        max-height: 115px;
        vertical-align: middle; }
      .site-footer ul li:last-child {
        margin-right: 0; }
        @media screen and (max-width: 1251px) {
          .site-footer ul li:last-child {
            margin-top: 40px; } }
    @media screen and (max-width: 663px) {
      .site-footer ul li.menu-item {
        width: 100%; } }
    @media screen and (max-width: 1251px) {
      .site-footer ul li.menu-item:last-child {
        margin-top: 0; } }
  .site-footer .footer--item {
    width: 100%;
    *zoom: 1; }
    .site-footer .footer--item:after {
      content: '';
      display: table;
      clear: both; }
  .site-footer .footer--text {
    width: 65%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px; }
    @media screen and (max-width: 1251px) {
      .site-footer .footer--text {
        width: 100%; } }
  .site-footer small {
    font-size: 12px;
    color: #fff; }

.hero--image {
  overflow: hidden;
  background-size: cover;
  position: relative; }
  .hero--image .hero--overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    height: 100%; }

section.video {
  position: relative;
  padding: 0; }
  section.video #video-player {
    z-index: 1; }
    @media screen and (max-width: 663px) {
      section.video #video-player {
        display: none !important; } }
  section.video .caption {
    position: absolute;
    z-index: 2;
    bottom: 3%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding-bottom: 30px;
    width: 60%; }
    @media screen and (max-width: 663px) {
      section.video .caption {
        width: 90%; } }
    @media screen and (max-width: 663px) {
      section.video .caption .logo {
        width: 50%;
        display: inline-block; } }
    section.video .caption img {
      display: inline-block; }
  section.video .scroll--down {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 9; }
    section.video .scroll--down .shake {
      margin-bottom: 10px; }
    section.video .scroll--down img {
      display: inline-block;
      cursor: pointer; }
      @media screen and (max-width: 663px) {
        section.video .scroll--down img {
          width: 25px; } }

.shake img:hover {
  animation: shake 1s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px; }

@keyframes shake {
  0% {
    transform: rotate(0deg); }
  10% {
    transform: rotate(10deg); }
  20% {
    transform: rotate(-10deg); }
  30% {
    transform: rotate(10deg); }
  40% {
    transform: rotate(-10deg); }
  50% {
    transform: rotate(10deg); }
  60% {
    transform: rotate(-10deg); }
  70% {
    transform: rotate(10deg); }
  80% {
    transform: rotate(-10deg); }
  85% {
    transform: rotate(10deg); }
  95% {
    transform: rotate(-10deg); }
  100% {
    transform: rotate(0deg); } }
section.about,
section.news {
  text-align: center; }
  section.about h1,
  section.news h1 {
    color: #e4002b;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 1; }
  section.about p span,
  section.news p span {
    color: #e4002b; }

section.about .button {
  margin-bottom: 40px; }
section.about .image--caption .button {
  margin-bottom: 0; }

section.news {
  background-color: #efefef;
  margin-top: 100px;
  padding-bottom: 122px; }
  @media screen and (max-width: 663px) {
    section.news {
      margin-top: 50px; } }
  section.news h1 {
    margin-bottom: 100px; }
    @media screen and (max-width: 663px) {
      section.news h1 {
        margin-bottom: 50px; } }
  section.news .button {
    margin-top: 72px; }

.about--grid {
  padding-top: 40px; }

@media screen and (max-width: 663px) {
  .about--grid-item {
    margin-top: 0px; } }
.about--grid-item:first-child {
  margin-bottom: 20px; }
.about--grid-item .image {
  position: relative;
  overflow: hidden; }
  @media screen and (max-width: 663px) {
    .about--grid-item .image {
      max-height: inherit; } }
  .about--grid-item .image .image--caption {
    position: absolute;
    left: 30px;
    bottom: 40px;
    text-align: left;
    z-index: 9; }
    .about--grid-item .image .image--caption h3 {
      margin: 0;
      color: #fff;
      text-transform: uppercase; }
    .about--grid-item .image .image--caption .button {
      padding-top: 0;
      margin-top: 10px; }
      .about--grid-item .image .image--caption .button a {
        color: #e4002b;
        font-size: 19px;
        padding: 13px 32px; }
        .about--grid-item .image .image--caption .button a:hover {
          color: #fff; }
  .about--grid-item .image img {
    width: 100%;
    height: auto;
    display: block; }

@media screen and (max-width: 1024px) {
  .about--grid--item--large {
    padding-top: 0;
    margin-top: 30px; } }

.about--page .about--grid-item {
  padding-bottom: 80px; }
  @media screen and (max-width: 1024px) {
    .about--page .about--grid-item {
      padding-bottom: 0;
      padding-top: 0;
      margin-bottom: 30px; } }
  .about--page .about--grid-item .image img {
    height: 197px; }
    @media screen and (max-width: 1024px) {
      .about--page .about--grid-item .image img {
        height: inherit; } }

.image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 200%; }

.news--item {
  background-color: #fff;
  text-align: left;
  cursor: pointer; }
  .news--item:nth-child(3n+1) {
    clear: left; }
  .news--item a {
    text-decoration: none; }
  .news--item .text--container {
    position: relative;
    top: 50%;
    transform: translateY(-50%); }
    @media screen and (max-width: 663px) {
      .news--item .text--container {
        top: inherit;
        transform: none; } }
    .news--item .text--container p {
      margin-top: 0;
      color: #000; }
      @media screen and (max-width: 663px) {
        .news--item .text--container p {
          margin-bottom: 0; } }
    .news--item .text--container h3 {
      text-transform: uppercase;
      line-height: 32px;
      margin-bottom: 0; }
      @media screen and (max-width: 663px) {
        .news--item .text--container h3 {
          margin-top: 20px;
          margin-bottom: 20px; } }
      .news--item .text--container h3 a {
        color: #000;
        text-decoration: none; }
      .news--item .text--container h3 span {
        color: #e5b53b; }
      .news--item .text--container h3 span.entry-date {
        font-family: "akzidenz-grotesk_bqregular";
        margin: 0;
        padding: 0;
        font-size: 16px;
        text-transform: none;
        color: #000; }
  .news--item .text {
    height: 250px;
    padding: 0 30px; }
    @media screen and (max-width: 663px) {
      .news--item .text {
        height: inherit;
        padding-bottom: 0px; } }

.news--large-text .text--container {
  position: relative;
  top: inherit;
  transform: inherit; }
.news--large-text .text {
  height: auto; }
  @media screen and (max-width: 663px) {
    .news--large-text .text {
      height: inherit;
      padding-bottom: 0px; } }

.all--news-grid .news--item-large {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #efefef; }
  @media screen and (max-width: 663px) {
    .all--news-grid .news--item-large {
      padding-bottom: 20px;
      margin-bottom: 25px; } }

.all--brands-grid .brand--item {
  margin-bottom: 80px; }
  .all--brands-grid .brand--item h3 {
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 1;
    margin-top: 10px; }
    .all--brands-grid .brand--item h3 a {
      color: #000;
      text-decoration: none; }
  .all--brands-grid .brand--item p {
    margin-top: 10px;
    margin-bottom: 0; }

.icon--grid {
  border-top: 1px solid #e4002b;
  padding-top: 100px;
  padding-bottom: 80px; }
  .icon--grid .icon--item {
    margin-bottom: 60px; }
    .icon--grid .icon--item h3 {
      color: #e4002b;
      margin: 0;
      padding: 0;
      text-transform: uppercase;
      line-height: 1; }
    .icon--grid .icon--item p {
      padding: 0;
      margin: 0; }
      .icon--grid .icon--item p.leadership-content {
        margin-top: 10px; }
      .icon--grid .icon--item p.sub {
        font-size: 24px;
        line-height: 1;
        margin-top: 5px; }
    .icon--grid .icon--item .leadership--text {
      margin-left: 70px; }
      @media screen and (max-width: 1024px) {
        .icon--grid .icon--item .leadership--text {
          margin-left: 0; } }
  .icon--grid .value--image {
    text-align: center;
    display: inline-block;
    background: #e4002b;
    border-radius: 42px;
    padding: 13px;
    width: 76px;
    height: 76px; }
    @media screen and (max-width: 1024px) {
      .icon--grid .value--image {
        margin-bottom: 20px; } }
  @media screen and (max-width: 663px) {
    .icon--grid .laedership--image {
      margin-bottom: 30px; } }

@media screen and (max-width: 1024px) {
  .value--grid .icon--item {
    text-align: center; } }

.leadership--grid {
  border: none;
  padding-top: 0; }
  .leadership--grid h1 {
    margin-bottom: 50px; }
  .leadership--grid .icon--item {
    margin-bottom: 100px; }

.overlay {
  background-color: rgba(0, 0, 0, 0.76);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9;
  transition: background-color 1s ease-out; }

.year {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 8;
  max-height: 157px;
  margin-bottom: 10px;
  cursor: pointer;
  overflow: hidden;
  background-position: top;
  transition: max-height 1s ease-out; }
  .year .line {
    background-color: #fff;
    max-width: 0;
    height: 0;
    transition: max-width 1s ease-out;
    position: relative;
    z-index: 99; }
  .year .year--title {
    position: relative;
    z-index: 10; }
    .year .year--title h2 {
      font-size: 105px;
      color: #fff;
      margin-top: 0px;
      margin-bottom: 0;
      position: relative;
      display: inline-block; }
      .year .year--title h2:after {
        content: "";
        position: absolute;
        right: -36px;
        top: 71px;
        width: 24px;
        height: 16px;
        background-image: url(../images/down.png); }
  .year .year--content {
    position: relative;
    z-index: 10; }
    .year .year--content p {
      color: #fff;
      font-size: 24px;
      padding: 0 20px;
      margin: 30px 0; }

.active--show--cpp {
  max-height: 600px;
  transition: max-height 0.5s ease-in; }
  .active--show--cpp .year--title h2:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  .active--show--cpp .overlay {
    background-color: rgba(217, 31, 46, 0.8);
    transition: background-color 0.5s ease-in; }
  .active--show--cpp .line {
    max-width: 1200px;
    height: 1px;
    transition: max-width 1s ease-in; }

section.maps {
  padding: 0;
  margin-bottom: 60px; }

.map {
  position: relative; }
  .map img.full--map {
    width: 100%;
    height: auto;
    display: block; }
  .map .map--title {
    display: none;
    font-family: "akzidenz-grotesk_bq_condensBd";
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    right: -60px;
    top: 20px;
    position: absolute;
    z-index: 9; }
    .map .map--title.red {
      color: #e4002b; }
    .map .map--title.orange {
      color: #e5b53b; }
  .map .fac:hover .map--title,
  .map .office:hover .map--title {
    display: block; }
    @media screen and (max-width: 1024px) {
      .map .fac:hover .map--title,
      .map .office:hover .map--title {
        display: none !important; } }
  .map .fac:hover .map--hover,
  .map .office:hover .map--hover {
    display: block !important; }
    @media screen and (max-width: 1024px) {
      .map .fac:hover .map--hover,
      .map .office:hover .map--hover {
        display: none !important; } }
  .map .fac .location--image,
  .map .office .location--image {
    position: relative;
    z-index: 20; }
  .map .locations .fac {
    position: absolute;
    display: none; }
    .map .locations .fac img {
      width: 100%; }
    @media screen and (max-width: 663px) {
      .map .locations .fac {
        width: 5%; } }
  .map .locations .office {
    position: absolute;
    display: none;
    z-index: 10; }
    .map .locations .office img {
      width: 100%; }
    @media screen and (max-width: 663px) {
      .map .locations .office {
        width: 5%; } }
  .map .locations .loc-one {
    left: 14%;
    top: 48%; }
    .map .locations .loc-one .map--hover {
      position: absolute;
      width: 70px;
      height: 83px;
      z-index: 8;
      left: 7px;
      top: -23px;
      display: none; }
      .map .locations .loc-one .map--hover img {
        width: 100%; }
    .map .locations .loc-one .map--title {
      left: -93px !important;
      top: 7px !important; }
  .map .locations .loc-two {
    left: 22.5%;
    top: 31%; }
    .map .locations .loc-two .map--hover {
      position: absolute;
      width: 202px;
      height: 128px;
      z-index: 8;
      right: -32px;
      top: 11px;
      display: none; }
      .map .locations .loc-two .map--hover img {
        width: 100%; }
    .map .locations .loc-two .map--title {
      left: -90px !important;
      top: 15px !important; }
  .map .locations .loc-three {
    left: 23.8%;
    top: 38%; }
    .map .locations .loc-three .map--hover {
      position: absolute;
      width: 202px;
      height: 128px;
      z-index: 8;
      right: -2px;
      top: -39px;
      display: none; }
      .map .locations .loc-three .map--hover img {
        width: 100%; }
    .map .locations .loc-three .map--title {
      right: -90px !important;
      top: 15px !important; }
  .map .locations .loc-four {
    left: 29%;
    top: 80%; }
    .map .locations .loc-four .map--hover {
      position: absolute;
      width: 62px;
      height: 144px;
      z-index: 8;
      left: -23px;
      top: -54px;
      display: none; }
      .map .locations .loc-four .map--hover img {
        width: 100%; }
    .map .locations .loc-four .map--title {
      right: -93px !important;
      top: 7px !important; }
  .map .locations .loc-five {
    left: 45%;
    top: 22.8%; }
    .map .locations .loc-five .map--hover {
      position: absolute;
      width: 16px;
      height: 21px;
      z-index: 8;
      right: 18px;
      top: 48px;
      display: none; }
      .map .locations .loc-five .map--hover img {
        width: 100%; }
    .map .locations .loc-five .map--title {
      left: -70px !important;
      top: 30px !important; }
  .map .locations .loc-six {
    left: 44.8%;
    top: 43%; }
    .map .locations .loc-six .map--hover {
      position: absolute;
      width: 33px;
      height: 83px;
      z-index: 8;
      left: 1px;
      top: -30px;
      display: none; }
      .map .locations .loc-six .map--hover img {
        width: 100%; }
    .map .locations .loc-six .map--title {
      left: -60px !important;
      top: 7px !important; }
  .map .locations .loc-seven {
    left: 53%;
    top: 23%; }
    .map .locations .loc-seven .map--hover {
      position: absolute;
      width: 33px;
      height: 33px;
      z-index: 8;
      right: 19px;
      top: 54px;
      display: none; }
      .map .locations .loc-seven .map--hover img {
        width: 100%; }
    .map .locations .loc-seven .map--title {
      right: -60px !important;
      top: 15px !important; }
  .map .locations .loc-eight {
    left: 74%;
    top: 19%; }
    .map .locations .loc-eight .map--hover {
      position: absolute;
      width: 485px;
      height: 306px;
      z-index: 8;
      left: -262px;
      top: -135px;
      display: none; }
      .map .locations .loc-eight .map--hover img {
        width: 100%; }
  .map .locations .loc-nine {
    left: 27.4%;
    top: 31.8%; }
    .map .locations .loc-nine .map--hover {
      position: absolute;
      width: 202px;
      height: 128px;
      z-index: 8;
      right: 23px;
      top: 6px;
      display: none; }
      .map .locations .loc-nine .map--hover img {
        width: 100%; }
    .map .locations .loc-nine .map--title {
      right: -90px !important;
      top: 60px !important; }
  .map .locations .loc-ten {
    left: 43.5%;
    top: 32%; }
    .map .locations .loc-ten .map--title {
      left: -60px !important;
      top: 30px !important; }
  .map .locations .loc-eleven {
    left: 49.3%;
    top: 33%; }
    .map .locations .loc-eleven .map--title {
      right: -90px !important;
      top: 0px !important; }
  .map .locations .loc-twelve {
    left: 55.4%;
    top: 45.1%; }
    .map .locations .loc-twelve .map--title {
      right: -60px !important;
      top: 10px !important; }

.fliter-grid {
  font-family: "akzidenz-grotesk_bq_condensBd";
  font-size: 18px;
  margin-bottom: 50px; }
  .fliter-grid .filter {
    text-align: center;
    height: 51px;
    position: relative; }
    @media screen and (max-width: 663px) {
      .fliter-grid .filter {
        text-align: left;
        margin-left: 40px; } }
    .fliter-grid .filter.no-point a {
      cursor: default; }
    .fliter-grid .filter a {
      text-decoration: none;
      color: #000;
      text-transform: uppercase;
      line-height: 51px;
      border: 2px solid #e4002b;
      display: block; }
      @media screen and (max-width: 1024px) {
        .fliter-grid .filter a {
          border: none !important; } }
      .fliter-grid .filter a:after {
        content: "";
        position: absolute;
        left: 41px;
        top: 16px; }
        @media screen and (max-width: 1024px) {
          .fliter-grid .filter a:after {
            left: -10px; } }
        @media screen and (max-width: 663px) {
          .fliter-grid .filter a:after {
            left: -30px; } }
      .fliter-grid .filter a:before {
        content: "";
        position: absolute;
        top: 15px; }
    .fliter-grid .filter.grey a {
      border: 2px solid #b2b2b2; }
    .fliter-grid .filter.office {
      opacity: 0.4; }
      .fliter-grid .filter.office a:after {
        width: 16px;
        height: 22px;
        background-image: url(../images/office_loc.png); }
      .fliter-grid .filter.office a:before {
        width: 31px;
        height: 29px;
        background-image: url(../images/eye_off.png);
        right: 35px; }
        @media screen and (max-width: 1024px) {
          .fliter-grid .filter.office a:before {
            width: 21px;
            height: 19px;
            right: -5px;
            background-size: 100%;
            top: 18px; } }
        @media screen and (max-width: 663px) {
          .fliter-grid .filter.office a:before {
            right: 20px; } }
    .fliter-grid .filter.facility {
      opacity: 0.4; }
      .fliter-grid .filter.facility a:after {
        width: 16px;
        height: 22px;
        background-image: url(../images/facilities_pin.png); }
      .fliter-grid .filter.facility a:before {
        width: 31px;
        height: 29px;
        background-image: url(../images/eye_off.png);
        right: 30px; }
        @media screen and (max-width: 1024px) {
          .fliter-grid .filter.facility a:before {
            width: 21px;
            height: 19px;
            right: -13px;
            background-size: 100%;
            top: 18px; } }
        @media screen and (max-width: 663px) {
          .fliter-grid .filter.facility a:before {
            right: 20px; } }
    .fliter-grid .filter.rights a:after {
      top: 20px;
      width: 15px;
      height: 15px;
      background-image: url(../images/ellipse_red.png); }
    .fliter-grid .filter.rights a:before {
      content: none !important; }
    .fliter-grid .filter.no-distro a:after {
      top: 20px;
      width: 15px;
      height: 15px;
      background-image: url(../images/ellipse_grey.png); }
    .fliter-grid .filter.no-distro a:before {
      content: none !important; }
    .fliter-grid .filter.active {
      opacity: 1; }
      .fliter-grid .filter.active a:before {
        width: 31px;
        height: 17px;
        background-image: url(../images/eye.png);
        top: 20px; }

section.our--sites .page--header {
  margin-bottom: 40px; }
section.our--sites .site--item {
  margin-bottom: 40px; }
@media screen and (max-width: 1024px) {
  section.our--sites .image {
    overflow: hidden; } }
@media screen and (max-width: 1024px) {
  section.our--sites .image img {
    width: 160%;
    float: right; } }
section.our--sites .site--address {
  position: relative;
  z-index: 2; }
  section.our--sites .site--address .text {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 30px;
    color: #fff;
    z-index: 10;
    top: 50%;
    transform: translate(0, -50%); }
    section.our--sites .site--address .text h2 {
      padding: 0;
      margin: 0;
      font-size: 64px;
      line-height: 1;
      text-transform: uppercase;
      color: #fff; }
      @media screen and (max-width: 1024px) {
        section.our--sites .site--address .text h2 {
          font-size: 58px; } }
    section.our--sites .site--address .text p {
      font-size: 20px;
      font-family: "akzidenz-grotesk_bq_condensBd";
      text-transform: uppercase;
      line-height: 1.2;
      margin: 10px 0 0; }
      section.our--sites .site--address .text p a {
        text-decoration: none;
        color: #e5b53b; }

.close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  z-index: 99; }
  @media screen and (max-width: 663px) {
    .close {
      top: 4px;
      right: 4px; } }

.pop--up--text {
  text-align: center;
  font-family: "akzidenz-grotesk_bq_condensBd";
  text-transform: uppercase; }
  @media screen and (max-width: 1024px) {
    .pop--up--text {
      padding-bottom: 50px; } }
  @media screen and (max-width: 663px) {
    .pop--up--text {
      padding-bottom: 50px; } }
  .pop--up--text h1 {
    margin: 10px 0 0;
    font-size: 56px;
    line-height: 1;
    text-transform: none; }
  .pop--up--text p {
    font-size: 19px;
    line-height: 20px;
    margin-top: 0; }
    .pop--up--text p a {
      text-decoration: none;
      color: #000; }
    .pop--up--text p.fac-off {
      margin-bottom: 0;
      font-size: 30px;
      color: #e4002b;
      margin: 20px 0; }
  .pop--up--text p.web a {
    color: #e4002b;
    text-transform: uppercase; }
  .pop--up--text .contact {
    text-transform: uppercase;
    font-family: "akzidenz-grotesk_bq_condensBd";
    font-size: 20px; }
    .pop--up--text .contact br {
      content: " ";
      display: none; }
    .pop--up--text .contact p {
      margin: 0;
      padding: 0;
      line-height: 1; }
  .pop--up--text .red {
    color: #e4002b; }

.image {
  position: relative; }

.over-image {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 70px;
  width: 100%;
  text-align: center;
  background-color: #e4002b;
  color: #fff; }
  @media screen and (max-width: 1024px) {
    .over-image {
      bottom: -70px; } }
  .over-image p {
    line-height: 70px;
    font-family: "akzidenz-grotesk_bq_condensBd";
    padding: 0;
    margin: 0;
    font-size: 25px; }
    .over-image p.office:after {
      content: "";
      position: absolute;
      left: 20px;
      top: 11px;
      width: 41px;
      height: 43px;
      background-image: url(../images/office.png); }
    .over-image p.facility:after {
      content: "";
      position: absolute;
      left: 20px;
      top: 11px;
      width: 57px;
      height: 37px;
      background-image: url(../images/facility.png); }

.modaal-wrapper .modaal-close {
  cursor: pointer; }

.overlay--move {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9; }
  .overlay--move span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(217, 31, 46, 0.6);
    -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1; }
    @media screen and (max-width: 1024px) {
      .overlay--move span {
        display: none; } }
  .overlay--move:hover {
    color: #f8bfca; }
    .overlay--move:hover span {
      width: 325%;
      height: 325%; }

.news--item:hover .overlay--move {
  color: #f8bfca; }
  .news--item:hover .overlay--move span {
    width: 325%;
    height: 325%; }
    @media screen and (max-width: 1024px) {
      .news--item:hover .overlay--move span {
        display: none; } }

.overlay-text {
  overflow: hidden;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.1s ease-in; }
  .overlay-text img {
    width: 57px !important;
    height: 57px !important;
    display: inline-block;
    max-width: 57px !important; }
  .overlay-text h2 {
    margin: 0;
    padding: 0;
    color: #e5b53b; }

a {
  color: #fff; }
  a:visited {
    color: #fff; }

.overlay-text-show {
  opacity: 1;
  transition: opacity 0.5s ease-out; }

.scroll-fix {
  position: fixed; }

.search-bar {
  float: right;
  margin-top: 6px;
  position: relative;
  z-index: 9999999999999;
  margin-top: 26px;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out; }
  @media screen and (max-width: 1204px) {
    .search-bar {
      display: none; } }
  .search-bar input {
    border: none;
    background: #fff;
    float: right;
    font-size: 21px;
    text-transform: uppercase;
    font-family: "akzidenz-grotesk_bq_condensBd";
    color: #b2b2b2;
    height: 50px;
    width: 0;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    text-indent: 10px;
    border-radius: 0;
    padding: 0; }
  .search-bar ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 21px;
    text-transform: uppercase;
    font-family: "akzidenz-grotesk_bq_condensBd";
    color: #989898; }
  .search-bar ::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 21px;
    text-transform: uppercase;
    font-family: "akzidenz-grotesk_bq_condensBd";
    color: #989898; }
  .search-bar :-ms-input-placeholder {
    /* IE 10+ */
    font-size: 21px;
    text-transform: uppercase;
    font-family: "akzidenz-grotesk_bq_condensBd";
    color: #989898; }
  .search-bar :-moz-placeholder {
    /* Firefox 18- */
    font-size: 21px;
    text-transform: uppercase;
    font-family: "akzidenz-grotesk_bq_condensBd";
    color: #989898; }

.searc--open input {
  width: 280px; }

section.search-area {
  padding: 100px 0 70px 0; }

.search--header {
  margin-bottom: 40px; }
  .search--header h1 span {
    color: #e4002b; }

.search--cpp-results {
  border-bottom: 1px solid #b51520;
  padding-bottom: 10px;
  padding-top: 10px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease-in; }
  .search--cpp-results:hover {
    background-color: #fef2f4; }
  .search--cpp-results:last-child {
    border: none; }
  .search--cpp-results h3 {
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 1; }
    .search--cpp-results h3 a {
      color: #e4002b;
      text-decoration: none; }
      .search--cpp-results h3 a span {
        color: #e5b53b; }
  .search--cpp-results .entry-summary {
    padding: 0;
    margin: 0; }
    .search--cpp-results .entry-summary p {
      margin: 0; }

.cpp-hide {
  display: none; }

.cpp-hide.cpp--show {
  display: block;
  margin-top: 15px;
  padding-bottom: 9px; }

.cpp--display.cpp-hide {
  display: none; }

.cpp-hide-two {
  display: none; }

.cpp-hide-two.cpp--show-two {
  display: block;
  margin-top: 0;
  padding-bottom: 0; }

.cpp--display-two.cpp-hide-two {
  display: none; }

section.related {
  padding-top: 20px; }
  section.related .single--header {
    padding-bottom: 80px; }

.brands-header h1 {
  font-size: 70px; }
.brands-header .button a {
  padding: 15px 20px; }

.article--header p {
  text-transform: none;
  margin: 0;
  font-size: 25px; }
.article--header span {
  color: #e5b53b; }
.article--header span.entry-date {
  color: #000; }

.news--button {
  margin-top: 80px;
  margin-bottom: 60px; }
  .news--button a {
    padding: 15px 20px;
    color: #fff;
    text-decoration: none; }
    .news--button a:hover {
      text-decoration: none; }
    .news--button a:visited {
      color: #fff; }

body.page-id-9 section.our--sites {
  padding-top: 50px; }

textarea:focus, input:focus {
  outline: none; }
  @media screen and (max-width: 663px) {
    textarea:focus, input:focus {
      outline: blue; } }

#about--scroll:focus {
  outline: none; }

body.page-child #masthead .secondary-nav-container,
body.page-parent #masthead .secondary-nav-container {
  width: 100%;
  right: 0; }
  @media screen and (max-width: 1204px) {
    body.page-child #masthead .secondary-nav-container,
    body.page-parent #masthead .secondary-nav-container {
      width: 0; }
      body.page-child #masthead .secondary-nav-container.active,
      body.page-parent #masthead .secondary-nav-container.active {
        width: 100%; } }
body.page-child #masthead .main-navigation ul .sub-menu-wrap,
body.page-parent #masthead .main-navigation ul .sub-menu-wrap {
  display: block; }
body.page-child #masthead li.menu-item-has-children,
body.page-parent #masthead li.menu-item-has-children {
  margin-top: 0; }
  body.page-child #masthead li.menu-item-has-children:after,
  body.page-parent #masthead li.menu-item-has-children:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #b51520;
    top: 85px;
    right: 675px; }
    @media screen and (max-width: 1024px) {
      body.page-child #masthead li.menu-item-has-children:after,
      body.page-parent #masthead li.menu-item-has-children:after {
        border: none; } }
  body.page-child #masthead li.menu-item-has-children:hover:after,
  body.page-parent #masthead li.menu-item-has-children:hover:after {
    content: none; }
  body.page-child #masthead li.menu-item-has-children a:before,
  body.page-parent #masthead li.menu-item-has-children a:before {
    content: none; }

.postnavi {
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  font-size: 24px; }
  @media screen and (max-width: 663px) {
    .postnavi {
      font-size: 16px; } }
  .postnavi span.current {
    color: #e4002b;
    margin-right: 20px; }
    @media screen and (max-width: 663px) {
      .postnavi span.current {
        margin-right: 5px; } }
  .postnavi a {
    color: #000;
    text-decoration: none;
    margin-right: 20px;
    font-family: "akzidenz-grotesk_bqregular"; }
    @media screen and (max-width: 663px) {
      .postnavi a {
        margin-right: 5px; } }
    .postnavi a.next, .postnavi a.prev {
      color: #fff;
      background-color: #000;
      padding: 10px 20px;
      font-family: "akzidenz-grotesk_bq_condensBd"; }

.acf-map {
  width: 100%;
  height: 348px;
  border: #ccc solid 1px;
  margin: 0; }
  .acf-map img {
    max-width: inherit !important; }

.gm-style-iw h2 {
  font-size: 18px;
  color: #e5b53b;
  text-transform: uppercase;
  margin-left: 20px;
  line-height: 0.4; }

img[src="https://maps.gstatic.com/mapfiles/api-3/images/mapcnt6.png"] {
  display: none !important; }

button:focus {
  border: none; }

button:active, button:focus, input[type="button"]:active, input[type="button"]:focus, input[type="reset"]:active, input[type="reset"]:focus, input[type="submit"]:active, input[type="submit"]:focus {
  border: none !important;
  outline: none; }

p.insta {
  position: relative; }
  p.insta a {
    text-decoration: none;
    margin-left: 25px;
    color: #000; }
    p.insta a:visited {
      color: #000; }
    p.insta a:hover {
      color: #e4002b; }
    p.insta a:before {
      content: "";
      background-image: url(../images/insta.svg);
      width: 20px;
      height: 20px;
      background-size: 100%;
      left: 0px;
      position: absolute;
      top: 3px; }

#video-player .jw-controlbar {
  display: none !important;
  opacity: 0 !important; }

.mob--map .page--header {
  margin-bottom: 40px; }
.mob--map .location--list {
  margin-bottom: 40px; }
.mob--map .location--content {
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 10px; }
.mob--map .location--item {
  text-transform: uppercase;
  max-height: 45px;
  overflow: hidden;
  margin-top: 10px;
  transition: max-height 1s ease-out; }
  .mob--map .location--item .title {
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer; }
    .mob--map .location--item .title h2 {
      font-size: 23px;
      color: #e4002b;
      text-transform: uppercase;
      padding: 0;
      margin: 0; }
  .mob--map .location--item p {
    font-size: 18px;
    font-family: "akzidenz-grotesk_bq_condensBd";
    color: #000;
    line-height: 1.1;
    margin-bottom: 10px; }
.mob--map .cross {
  background: #e4002b;
  height: 16px;
  position: absolute;
  width: 4px;
  right: 15px;
  top: 8px; }
  .mob--map .cross:after {
    background: #e4002b;
    content: "";
    height: 4px;
    left: -6px;
    position: absolute;
    top: 6px;
    width: 16px; }

.location--item.active--show--cpp {
  max-height: 600px !important;
  transition: max-height 0.5s ease-in !important; }
  .location--item.active--show--cpp .cross {
    background: #fff; }

@media screen and (max-width: 663px) {
  body.page-id-636 section {
    padding: 50px 0 0; } }
body.page-id-636 .age--gate {
  background-size: cover;
  background-position: center center; }
body.page-id-636 #content {
  padding-top: 0; }
body.page-id-636 .age--content {
  padding: 0 80px 60px;
  background-color: #e4002b;
  margin: 0 10px;
  box-shadow: 0px 0px 29px 0px rgba(31, 28, 22, 0.84); }
  @media screen and (max-width: 663px) {
    body.page-id-636 .age--content {
      padding: 0 5px 18px; } }
body.page-id-636 .age--pop {
  max-width: 637px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }
  body.page-id-636 .age--pop .logo {
    width: 100%;
    padding: 40px 0; }
    body.page-id-636 .age--pop .logo img {
      text-align: center; }
  body.page-id-636 .age--pop h2 {
    font-size: 40px;
    color: #fff;
    margin: 0 0 20px;
    padding: 0;
    line-height: 46px;
    padding: 0 10px; }
    @media screen and (max-width: 663px) {
      body.page-id-636 .age--pop h2 {
        font-size: 22px;
        line-height: 32px; } }
  body.page-id-636 .age--pop p {
    font-size: 18px;
    font-family: "akzidenz-grotesk_bq_condensBd";
    color: #fff; }
    @media screen and (max-width: 663px) {
      body.page-id-636 .age--pop p {
        padding: 0 50px; } }
    body.page-id-636 .age--pop p a {
      color: #e5b53b;
      text-decoration: none; }
  body.page-id-636 .age--pop ul {
    padding: 0;
    margin: 30px 0 50px;
    list-style: none;
    font-family: "akzidenz-grotesk_bq_condensBd";
    font-size: 25px; }
    body.page-id-636 .age--pop ul li {
      display: inline-block;
      margin-right: 30px; }
      body.page-id-636 .age--pop ul li:last-child {
        margin-right: 0; }
      body.page-id-636 .age--pop ul li a {
        color: #e4002b;
        text-decoration: none;
        line-height: 105px;
        border-radius: 50%;
        width: 104px;
        height: 104px;
        background: #fff;
        display: block; }
        body.page-id-636 .age--pop ul li a:hover {
          background: #e5b53b;
          color: #fff; }

@media screen and (max-width: 663px) {
  a.tel-no {
    color: #000 !important;
    text-decoration: none; } }

body.page-id-5 .hero--image {
  background-position: center; }

.black--text {
  top: inherit !important;
  transform: translate(0, 0) !important;
  position: relative !important;
  padding-top: 10px !important;
  padding-left: 0 !important; }
  @media screen and (max-width: 663px) {
    .black--text {
      height: inherit !important;
      padding-bottom: 20px !important; } }
  .black--text h2 {
    color: #000 !important; }
  .black--text p {
    color: #000 !important; }

@media screen and (max-width: 663px) {
  section#post-9 {
    display: none; } }

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none; }

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block; }

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%; }

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block; }

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }
  .wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .wp-caption .wp-caption-text {
    margin: 0.8075em 0; }

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em; }

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%; }
  .gallery-columns-2 .gallery-item {
    max-width: 50%; }
  .gallery-columns-3 .gallery-item {
    max-width: 33.33%; }
  .gallery-columns-4 .gallery-item {
    max-width: 25%; }
  .gallery-columns-5 .gallery-item {
    max-width: 20%; }
  .gallery-columns-6 .gallery-item {
    max-width: 16.66%; }
  .gallery-columns-7 .gallery-item {
    max-width: 14.28%; }
  .gallery-columns-8 .gallery-item {
    max-width: 12.5%; }
  .gallery-columns-9 .gallery-item {
    max-width: 11.11%; }

.gallery-caption {
  display: block; }

/*# sourceMappingURL=style.css.map */
