@charset "UTF-8";
.btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 20px;
  background: #f3b520;
  text-decoration: none;
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-weight: 700; }

.btn-view {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 20px;
  background: #f3b520;
  text-decoration: none;
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-weight: 700; }

.home-search-btn {
  display: inline-block;
  width: 100%;
  height: 84px;
  text-align: center;
  padding: 37px;
  background: #F3B520;
  text-decoration: none;
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px; }

/*------------------------------------*    $CSSWIZARDRY-GRIDS
\*------------------------------------*/
/**
 * CONTENTS
 * INTRODUCTION.........How the grid system works.
 * VARIABLES............Your settings.
 * MIXINS...............Library mixins.
 * GRID SETUP...........Build the grid structure.
 * WIDTHS...............Build our responsive widths around our breakpoints.
 * PUSH.................Push classes.
 * PULL.................Pull classes.
 */
/*------------------------------------*    $INTRODUCTION
\*------------------------------------*/
/**
 * csswizardry grids provides you with widths to suit a number of breakpoints
 * designed around devices of a size you specify. Out of the box, csswizardry
 * grids caters to the following types of device:
 *
 * palm     --  palm-based devices, like phones and small tablets
 * lap      --  lap-based devices, like iPads or laptops
 * portable --  all of the above
 * desk     --  stationary devices, like desktop computers
 * regular  --  any/all types of device
 *
 * These namespaces are then used in the library to give you the ability to
 * manipulate your layouts based around them, for example:
 *
   <div class="grid__item  one-whole  lap--one-half  desk--one-third">
 *
 * This would give you a grid item which is 100% width unless it is on a lap
 * device, at which point it become 50% wide, or it is on a desktop device, at
 * which point it becomes 33.333% width.
 *
 * csswizardry grids also has push and pull classes which allow you to nudge
 * grid items left and right by a defined amount. These follow the same naming
 * convention as above, but are prepended by either `push--` or `pull--`, for
 * example:
 *
   `class="grid__item  one-half  push--one-half"`
 *
 * This would give you a grid item which is 50% width and pushed over to the
 * right by 50%.
 *
 * All classes in csswizardry grids follow this patten, so you should fairly
 * quickly be able to piece together any combinations you can imagine, for
 * example:
 *
   `class="grid__item  one-whole  lap--one-half  desk--one-third  push--desk--one-third"`
 *
   `class="grid__item  one-quarter  palm--one-half  push--palm--one-half"`
 *
   `class="grid__item  palm--one-third  desk--five-twelfths"`
 */
/*------------------------------------*    $VARIABLES
\*------------------------------------*/
/**
 * If you are building a non-responsive site but would still like to use
 * csswizardry-grids, set this to ‘false’:
 */
/**
 * Is this build mobile first? Setting to ‘true’ means that all grids will be
 * 100% width if you do not apply a more specific class to them.
 */
/**
 * Set the spacing between your grid items.
 */
/**
 * Would you like Sass’ silent classes, or regular CSS classes?
 */
/**
 * Would you like push and pull classes enabled?
 */
/**
 * Using `inline-block` means that the grid items need their whitespace removing
 * in order for them to work correctly. Set the following to true if you are
 * going to achieve this by manually removing/commenting out any whitespace in
 * your HTML yourself.
 *
 * Setting this to false invokes a hack which cannot always be guaranteed,
 * please see the following for more detail:
 *
 * github.com/csswizardry/csswizardry-grids/commit/744d4b23c9d2b77d605b5991e54a397df72e0688
 * github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
 */
/**
 * Define your breakpoints. The first value is the prefix that shall be used for
 * your classes (e.g. `.palm--one-half`), the second value is the media query
 * that the breakpoint fires at.
 */
/**
 * Define which namespaced breakpoints you would like to generate for each of
 * widths, push and pull. This is handy if you only need pull on, say, desk, or
 * you only need a new width breakpoint at mobile sizes. It allows you to only
 * compile as much CSS as you need. All are turned on by default, but you can
 * add and remove breakpoints at will.
 *
 * Push and pull shall only be used if `$push` and/or `$pull` and `$responsive`
 * have been set to ‘true’.
 */
/**
 * You do not need to edit anything from this line onward; csswizardry-grids is
 * good to go. Happy griddin’!
 */
/*------------------------------------*    $MIXINS
\*------------------------------------*/
/**
 * These mixins are for the library to use only, you should not need to modify
 * them at all.
 *
 * Enclose a block of code with a media query as named in `$breakpoints`.
 */
/**
 * 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 {
  list-style: none;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  margin-left: -24px;
  /* [3] */ }

/**
     * 1. Cause columns to stack side-by-side.
     * 2. Space columns apart.
     * 3. Align columns to the tops of each other.
     * 4. Full-width unless told to behave otherwise.
     * 5. Required to combine fluid widths and fixed gutters.
     */
.grid__item {
  display: inline-block;
  /* [1] */
  padding-left: 24px;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  -webkit-box-sizing: border-box;
  /* [5] */
  -moz-box-sizing: border-box;
  /* [5] */
  box-sizing: border-box;
  /* [5] */ }

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

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

/**
 * Align the entire grid to the right. Extends `.grid`.
 */
.grid--right {
  text-align: right; }
  .grid--right > .grid__item {
    text-align: left; }

/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
.grid--center {
  text-align: center; }
  .grid--center > .grid__item {
    text-align: left; }

/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */
.grid--middle > .grid__item {
  vertical-align: middle; }

.grid--bottom > .grid__item {
  vertical-align: bottom; }

/**
 * Create grids with narrower gutters. Extends `.grid`.
 */
.grid--narrow {
  margin-left: -12px; }
  .grid--narrow > .grid__item {
    padding-left: 12px; }

/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--wide {
  margin-left: -48px; }
  .grid--wide > .grid__item {
    padding-left: 48px; }

/*------------------------------------*    $WIDTHS
\*------------------------------------*/
/**
 * Create our width classes, prefixed by the specified namespace.
 */
/**
 * Our regular, non-responsive width classes.
 */
/**
     * Whole
     */
.one-whole {
  width: 100%; }

/**
     * Halves
     */
.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50% !important; }

/**
     * Thirds
     */
.one-third, .two-sixths, .four-twelfths {
  width: 33.333%; }

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%; }

/**
     * Quarters
     */
.one-quarter, .two-eighths, .three-twelfths {
  width: 25%; }

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%; }

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

.two-fifths, .four-tenths {
  width: 40%; }

.three-fifths, .six-tenths {
  width: 60%; }

.four-fifths, .eight-tenths {
  width: 80%; }

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

.five-sixths, .ten-twelfths {
  width: 83.333%; }

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

.three-eighths {
  width: 37.5%; }

.five-eighths {
  width: 62.5%; }

.seven-eighths {
  width: 87.5%; }

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

.three-tenths {
  width: 30%; }

.seven-tenths {
  width: 70%; }

.nine-tenths {
  width: 90%; }

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

.five-twelfths {
  width: 41.666%; }

.seven-twelfths {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

/**
 * Our responsive classes, if we have enabled them.
 */
@media only screen and (max-width: 480px) {
  /**
     * Whole
     */
  .palm--one-whole {
    width: 100%; }
  /**
     * Halves
     */
  .palm--one-half, .palm--two-quarters, .palm--three-sixths, .palm--four-eighths, .palm--five-tenths, .palm--six-twelfths {
    width: 50% !important; }
  /**
     * Thirds
     */
  .palm--one-third, .palm--two-sixths, .palm--four-twelfths {
    width: 33.333%; }
  .palm--two-thirds, .palm--four-sixths, .palm--eight-twelfths {
    width: 66.666%; }
  /**
     * Quarters
     */
  .palm--one-quarter, .palm--two-eighths, .palm--three-twelfths {
    width: 25%; }
  .palm--three-quarters, .palm--six-eighths, .palm--nine-twelfths {
    width: 75%; }
  /**
     * Fifths
     */
  .palm--one-fifth, .palm--two-tenths {
    width: 20%; }
  .palm--two-fifths, .palm--four-tenths {
    width: 40%; }
  .palm--three-fifths, .palm--six-tenths {
    width: 60%; }
  .palm--four-fifths, .palm--eight-tenths {
    width: 80%; }
  /**
     * Sixths
     */
  .palm--one-sixth, .palm--two-twelfths {
    width: 16.666%; }
  .palm--five-sixths, .palm--ten-twelfths {
    width: 83.333%; }
  /**
     * Eighths
     */
  .palm--one-eighth {
    width: 12.5%; }
  .palm--three-eighths {
    width: 37.5%; }
  .palm--five-eighths {
    width: 62.5%; }
  .palm--seven-eighths {
    width: 87.5%; }
  /**
     * Tenths
     */
  .palm--one-tenth {
    width: 10%; }
  .palm--three-tenths {
    width: 30%; }
  .palm--seven-tenths {
    width: 70%; }
  .palm--nine-tenths {
    width: 90%; }
  /**
     * Twelfths
     */
  .palm--one-twelfth {
    width: 8.333%; }
  .palm--five-twelfths {
    width: 41.666%; }
  .palm--seven-twelfths {
    width: 58.333%; }
  .palm--eleven-twelfths {
    width: 91.666%; } }

@media only screen and (max-width: 768px) {
  /**
     * Whole
     */
  .tablet--one-whole {
    width: 100%; }
  /**
     * Halves
     */
  .tablet--one-half, .tablet--two-quarters, .tablet--three-sixths, .tablet--four-eighths, .tablet--five-tenths, .tablet--six-twelfths {
    width: 50% !important; }
  /**
     * Thirds
     */
  .tablet--one-third, .tablet--two-sixths, .tablet--four-twelfths {
    width: 33.333%; }
  .tablet--two-thirds, .tablet--four-sixths, .tablet--eight-twelfths {
    width: 66.666%; }
  /**
     * Quarters
     */
  .tablet--one-quarter, .tablet--two-eighths, .tablet--three-twelfths {
    width: 25%; }
  .tablet--three-quarters, .tablet--six-eighths, .tablet--nine-twelfths {
    width: 75%; }
  /**
     * Fifths
     */
  .tablet--one-fifth, .tablet--two-tenths {
    width: 20%; }
  .tablet--two-fifths, .tablet--four-tenths {
    width: 40%; }
  .tablet--three-fifths, .tablet--six-tenths {
    width: 60%; }
  .tablet--four-fifths, .tablet--eight-tenths {
    width: 80%; }
  /**
     * Sixths
     */
  .tablet--one-sixth, .tablet--two-twelfths {
    width: 16.666%; }
  .tablet--five-sixths, .tablet--ten-twelfths {
    width: 83.333%; }
  /**
     * Eighths
     */
  .tablet--one-eighth {
    width: 12.5%; }
  .tablet--three-eighths {
    width: 37.5%; }
  .tablet--five-eighths {
    width: 62.5%; }
  .tablet--seven-eighths {
    width: 87.5%; }
  /**
     * Tenths
     */
  .tablet--one-tenth {
    width: 10%; }
  .tablet--three-tenths {
    width: 30%; }
  .tablet--seven-tenths {
    width: 70%; }
  .tablet--nine-tenths {
    width: 90%; }
  /**
     * Twelfths
     */
  .tablet--one-twelfth {
    width: 8.333%; }
  .tablet--five-twelfths {
    width: 41.666%; }
  .tablet--seven-twelfths {
    width: 58.333%; }
  .tablet--eleven-twelfths {
    width: 91.666%; } }

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  /**
     * Whole
     */
  .lap--one-whole {
    width: 100%; }
  /**
     * Halves
     */
  .lap--one-half, .lap--two-quarters, .lap--three-sixths, .lap--four-eighths, .lap--five-tenths, .lap--six-twelfths {
    width: 50% !important; }
  /**
     * Thirds
     */
  .lap--one-third, .lap--two-sixths, .lap--four-twelfths {
    width: 33.333%; }
  .lap--two-thirds, .lap--four-sixths, .lap--eight-twelfths {
    width: 66.666%; }
  /**
     * Quarters
     */
  .lap--one-quarter, .lap--two-eighths, .lap--three-twelfths {
    width: 25%; }
  .lap--three-quarters, .lap--six-eighths, .lap--nine-twelfths {
    width: 75%; }
  /**
     * Fifths
     */
  .lap--one-fifth, .lap--two-tenths {
    width: 20%; }
  .lap--two-fifths, .lap--four-tenths {
    width: 40%; }
  .lap--three-fifths, .lap--six-tenths {
    width: 60%; }
  .lap--four-fifths, .lap--eight-tenths {
    width: 80%; }
  /**
     * Sixths
     */
  .lap--one-sixth, .lap--two-twelfths {
    width: 16.666%; }
  .lap--five-sixths, .lap--ten-twelfths {
    width: 83.333%; }
  /**
     * Eighths
     */
  .lap--one-eighth {
    width: 12.5%; }
  .lap--three-eighths {
    width: 37.5%; }
  .lap--five-eighths {
    width: 62.5%; }
  .lap--seven-eighths {
    width: 87.5%; }
  /**
     * Tenths
     */
  .lap--one-tenth {
    width: 10%; }
  .lap--three-tenths {
    width: 30%; }
  .lap--seven-tenths {
    width: 70%; }
  .lap--nine-tenths {
    width: 90%; }
  /**
     * Twelfths
     */
  .lap--one-twelfth {
    width: 8.333%; }
  .lap--five-twelfths {
    width: 41.666%; }
  .lap--seven-twelfths {
    width: 58.333%; }
  .lap--eleven-twelfths {
    width: 91.666%; } }

@media only screen and (min-width: 1025px) and (max-width: 1439px) {
  /**
     * Whole
     */
  .portable--one-whole {
    width: 100%; }
  /**
     * Halves
     */
  .portable--one-half, .portable--two-quarters, .portable--three-sixths, .portable--four-eighths, .portable--five-tenths, .portable--six-twelfths {
    width: 50% !important; }
  /**
     * Thirds
     */
  .portable--one-third, .portable--two-sixths, .portable--four-twelfths {
    width: 33.333%; }
  .portable--two-thirds, .portable--four-sixths, .portable--eight-twelfths {
    width: 66.666%; }
  /**
     * Quarters
     */
  .portable--one-quarter, .portable--two-eighths, .portable--three-twelfths {
    width: 25%; }
  .portable--three-quarters, .portable--six-eighths, .portable--nine-twelfths {
    width: 75%; }
  /**
     * Fifths
     */
  .portable--one-fifth, .portable--two-tenths {
    width: 20%; }
  .portable--two-fifths, .portable--four-tenths {
    width: 40%; }
  .portable--three-fifths, .portable--six-tenths {
    width: 60%; }
  .portable--four-fifths, .portable--eight-tenths {
    width: 80%; }
  /**
     * Sixths
     */
  .portable--one-sixth, .portable--two-twelfths {
    width: 16.666%; }
  .portable--five-sixths, .portable--ten-twelfths {
    width: 83.333%; }
  /**
     * Eighths
     */
  .portable--one-eighth {
    width: 12.5%; }
  .portable--three-eighths {
    width: 37.5%; }
  .portable--five-eighths {
    width: 62.5%; }
  .portable--seven-eighths {
    width: 87.5%; }
  /**
     * Tenths
     */
  .portable--one-tenth {
    width: 10%; }
  .portable--three-tenths {
    width: 30%; }
  .portable--seven-tenths {
    width: 70%; }
  .portable--nine-tenths {
    width: 90%; }
  /**
     * Twelfths
     */
  .portable--one-twelfth {
    width: 8.333%; }
  .portable--five-twelfths {
    width: 41.666%; }
  .portable--seven-twelfths {
    width: 58.333%; }
  .portable--eleven-twelfths {
    width: 91.666%; } }

@media only screen and (min-width: 1440px) {
  /**
     * Whole
     */
  .desk--one-whole {
    width: 100%; }
  /**
     * Halves
     */
  .desk--one-half, .desk--two-quarters, .desk--three-sixths, .desk--four-eighths, .desk--five-tenths, .desk--six-twelfths {
    width: 50% !important; }
  /**
     * Thirds
     */
  .desk--one-third, .desk--two-sixths, .desk--four-twelfths {
    width: 33.333%; }
  .desk--two-thirds, .desk--four-sixths, .desk--eight-twelfths {
    width: 66.666%; }
  /**
     * Quarters
     */
  .desk--one-quarter, .desk--two-eighths, .desk--three-twelfths {
    width: 25%; }
  .desk--three-quarters, .desk--six-eighths, .desk--nine-twelfths {
    width: 75%; }
  /**
     * Fifths
     */
  .desk--one-fifth, .desk--two-tenths {
    width: 20%; }
  .desk--two-fifths, .desk--four-tenths {
    width: 40%; }
  .desk--three-fifths, .desk--six-tenths {
    width: 60%; }
  .desk--four-fifths, .desk--eight-tenths {
    width: 80%; }
  /**
     * Sixths
     */
  .desk--one-sixth, .desk--two-twelfths {
    width: 16.666%; }
  .desk--five-sixths, .desk--ten-twelfths {
    width: 83.333%; }
  /**
     * Eighths
     */
  .desk--one-eighth {
    width: 12.5%; }
  .desk--three-eighths {
    width: 37.5%; }
  .desk--five-eighths {
    width: 62.5%; }
  .desk--seven-eighths {
    width: 87.5%; }
  /**
     * Tenths
     */
  .desk--one-tenth {
    width: 10%; }
  .desk--three-tenths {
    width: 30%; }
  .desk--seven-tenths {
    width: 70%; }
  .desk--nine-tenths {
    width: 90%; }
  /**
     * Twelfths
     */
  .desk--one-twelfth {
    width: 8.333%; }
  .desk--five-twelfths {
    width: 41.666%; }
  .desk--seven-twelfths {
    width: 58.333%; }
  .desk--eleven-twelfths {
    width: 91.666%; } }

/*------------------------------------*    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: none; }

body {
  background: #f7f7f7; }

@media (max-width: 768px) {
  /*body {
    &:after {
      content: "P";
      position: fixed;
      top: 0;
      left: 0;
      background: blue;
      height: 20px;
      width: 20px;
      color: #fff;
      z-index: 9999999;
    }
  }*/
  .desk {
    display: none; } }

@media (min-width: 769px) and (max-width: 1024px) {
  .mob {
    display: none; } }

@media (min-width: 1025px) and (max-width: 1439px) {
  .mob {
    display: none; } }

@media (min-width: 1440px) {
  .mob {
    display: none; } }

@font-face {
  font-family: "geoSlab";
  src: url("../../src/assets/fonts/GeometricSlab703BT-Bold.eot");
  src: url("../../src/assets/fonts/GeometricSlab703BT-Bold.eot?#iefix") format("embedded-opentype"), url("../../src/assets/fonts/GeometricSlab703BT-Bold.woff") format("woff"), url("../../src/assets/fonts/GeometricSlab703BT-Bold.ttf") format("truetype"), url("../../src/assets/fonts/GeometricSlab703BT-Bold.svg#GeometricSlab703BT-Bold") format("svg");
  font-weight: bold;
  font-style: normal; }

h1 {
  font-family: "geoSlab";
  font-size: 80px;
  margin-bottom: 20px;
  text-transform: uppercase; }
  @media (max-width: 768px) {
    h1 {
      font-size: 50px; } }

h2 {
  font-family: "geoSlab";
  font-size: 80px;
  margin-bottom: 20px;
  text-transform: uppercase; }

h3 {
  font-family: "geoSlab";
  font-size: 35px;
  margin-bottom: 20px;
  text-transform: uppercase; }

h4 {
  font-family: "geoSlab";
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase; }

h5 {
  font-family: "geoSlab";
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase; }

p {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 15px;
  line-height: 1.5em; }

li {
  font-family: 'Roboto', sans-serif; }

a {
  cursor: pointer; }

.p-large {
  font-size: 18px;
  font-weight: 700; }

input, textarea, select {
  outline: none; }

hr {
  border: 0;
  width: 100px;
  height: 10px;
  background: #f3b520;
  margin: 30px 0; }

.yellow-text {
  color: #F3B520 !important; }

.text-bold {
  font-weight: 700; }

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

.max-width {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px; }
  @media (min-width: 769px) and (max-width: 1024px) {
    .max-width {
      max-width: 1040px;
      padding: 0 50px; } }
  @media (min-width: 1025px) and (max-width: 1439px) {
    .max-width {
      padding: 0 50px;
      max-width: 1240px; } }

.narrow-width {
  width: 100%;
  max-width: 750px;
  margin: 0 auto; }

.square {
  width: 100%; }

.newsletter-CTA {
  background: #F3B520;
  padding: 50px 0; }

.module-padding {
  padding: 150px 60px; }
  @media (max-width: 768px) {
    .module-padding {
      padding: 30px; } }

.margin-bottom {
  margin-bottom: 24px; }

.owl-theme .owl-nav [class*=owl-] {
  background: none;
  padding: 0;
  margin: 0; }
  .owl-theme .owl-nav [class*=owl-]:hover {
    background: none; }

.sticky-sub {
  position: fixed;
  padding-top: 50px;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.static-sub {
  top: -50px; }

.low-sub {
  top: 26px !important;
  transition-delay: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s; }

.grad-bottom {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0+50,0.66+100 */
  background: -moz-linear-gradient(top, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.66) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.66) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.66) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a8000000',GradientType=0 );
  /* IE6-9 */ }

.grad-top {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.66+0,0+71 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.66) 0%, transparent 71%, transparent 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.66) 0%, transparent 71%, transparent 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.66) 0%, transparent 71%, transparent 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a8000000', endColorstr='#00000000',GradientType=0 );
  /* IE6-9 */ }

.grad-page {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.66+0,0.2+71 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.2) 71%, rgba(0, 0, 0, 0.2) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.2) 71%, rgba(0, 0, 0, 0.2) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.2) 71%, rgba(0, 0, 0, 0.2) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a8000000', endColorstr='#33000000',GradientType=0 );
  /* IE6-9 */ }

.grad-discover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.07+22,0.65+100 */
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.07) 22%, rgba(0, 0, 0, 0.65) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.07) 22%, rgba(0, 0, 0, 0.65) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.07) 22%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
  /* IE6-9 */
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.hover:hover {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.07+22,0.65+100 */
  /*background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.07) 22%, rgba(0,0,0,0.85) 100%); /* FF3.6-15 */
  /*background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.07) 22%,rgba(0,0,0,0.85) 100%); /* Chrome10-25,Safari5.1-6 */
  /*background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.07) 22%,rgba(0,0,0,0.85) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .hover:hover .grad-discover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.07+22,0.65+100 */
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.07) 22%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.07) 22%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.07) 22%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    /* IE6-9 */
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }

.grad-discover-single {
  opacity: 0.4;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.6+0,0.07+31,0.8+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.07) 31%, rgba(0, 0, 0, 0.8) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.07) 31%, rgba(0, 0, 0, 0.8) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.07) 31%, rgba(0, 0, 0, 0.8) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99000000', endColorstr='#cc000000',GradientType=0 );
  /* IE6-9 */ }

@media (max-width: 768px) {
  .page-template-templateblank-php .wpcf7-form input {
    width: 100% !important; } }

div.wpcf7-validation-errors {
  border: 0;
  font-family: Roboto;
  background: #ff5454;
  color: #fff;
  padding: 20px; }

/*! normalize.css v6.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
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.


h1 {
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 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
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 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 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * 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 style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * 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: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

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

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; }

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

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

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

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

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
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 and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[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 IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

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

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

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

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.delay-zero-five {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.delay-one {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s; }

.delay-one-five {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  -ms-animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  animation-delay: 1.5s; }

.delay-two {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -ms-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s; }

.delay-two-five {
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  -ms-animation-delay: 2.5s;
  -o-animation-delay: 2.5s;
  animation-delay: 2.5s; }

.delay-three {
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  -ms-animation-delay: 3s;
  -o-animation-delay: 3s;
  animation-delay: 3s; }

.delay-three-two {
  -webkit-animation-delay: 3.2s;
  -moz-animation-delay: 3.2s;
  -ms-animation-delay: 3.2s;
  -o-animation-delay: 3.2s;
  animation-delay: 3.2s; }

.delay-three-five {
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  -ms-animation-delay: 3.5s;
  -o-animation-delay: 3.5s;
  animation-delay: 3.5s; }

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

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

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

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

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

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

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

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

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

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

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

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

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

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

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

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

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

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

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

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

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

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

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

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

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

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

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

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

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

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0); } }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0); } }

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

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

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

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

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

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

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

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

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

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

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

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

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

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

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); } }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0); } }

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

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

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

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

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

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

#header {
  position: fixed;
  width: 100%;
  z-index: 99;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  @media (max-width: 768px) {
    #header nav {
      height: 0; } }
  #header .logo {
    position: absolute;
    width: 115px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    @media (max-width: 768px) {
      #header .logo {
        position: fixed;
        top: 0;
        width: 67px !important; } }
  #header .desk--six-tenths {
    color: #fff; }
    #header .desk--six-tenths ul {
      padding: 0 0 0 24px;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      #header .desk--six-tenths ul li {
        font-family: 'Roboto', sans-serif;
        text-transform: uppercase;
        font-weight: 700;
        display: inline-block;
        top: 0;
        -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.8s;
        -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.8s;
        -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.8s;
        transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.8s;
        position: relative; }
        #header .desk--six-tenths ul li:after {
          content: "";
          position: absolute;
          top: 0;
          background: #F3B520;
          height: 5px;
          width: 0%;
          left: 50%;
          -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
          -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
          -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
          transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s; }
        #header .desk--six-tenths ul li:hover {
          -webkit-transition: 0.3s;
          -moz-transition: 0.3s;
          -o-transition: 0.3s;
          transition: 0.3s; }
          #header .desk--six-tenths ul li:hover:after {
            position: absolute;
            top: 0;
            background: #F3B520;
            height: 5px;
            width: 100%;
            left: 0%;
            -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
            -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
            -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
            transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s; }
        #header .desk--six-tenths ul li a {
          color: #fff;
          text-decoration: none;
          padding: 30px 10px;
          display: inline-block; }
  @media (min-width: 769px) and (max-width: 1024px) {
    #header .lap--nine-tenths {
      text-align: right;
      color: #fff; }
      #header .lap--nine-tenths ul {
        padding: 0 0 0 24px;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
        #header .lap--nine-tenths ul li {
          font-family: 'Roboto', sans-serif;
          text-transform: uppercase;
          font-weight: 700;
          display: inline-block;
          font-size: 14px; }
          #header .lap--nine-tenths ul li a {
            color: #fff;
            text-decoration: none;
            padding: 31px 8px;
            display: inline-block; } }
  @media (min-width: 1025px) and (max-width: 1439px) {
    #header .portable--six-tenths {
      color: #fff; }
      #header .portable--six-tenths ul {
        padding: 0 0 0 24px;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
        #header .portable--six-tenths ul li {
          font-family: 'Roboto', sans-serif;
          text-transform: uppercase;
          font-weight: 700;
          display: inline-block;
          font-size: 14px; }
          #header .portable--six-tenths ul li a {
            color: #fff;
            text-decoration: none;
            padding: 31px 8px;
            display: inline-block; } }
  #header .three-tenths {
    text-align: right;
    padding-top: 31px; }
    #header .three-tenths .header-SM-single {
      height: 20px;
      width: auto;
      margin: 0 10px; }
      @media (min-width: 1025px) and (max-width: 1439px) {
        #header .three-tenths .header-SM-single {
          height: 15px;
          width: auto;
          margin: 0 4px; } }
    @media (min-width: 769px) and (max-width: 1024px) {
      #header .three-tenths {
        display: none; } }

.page-template-templateproperty-php header {
  top: 0 !important; }
  .page-template-templateproperty-php header .logo {
    width: 115px !important; }

.current-menu-item:hover {
  top: 0px !important; }

.slicknav_menu {
  font-size: 16px;
  background: #000;
  padding: 0px;
  position: fixed;
  width: 100%;
  z-index: 91; }
  .slicknav_menu .current_page_item:after {
    display: none; }
  .slicknav_menu .slicknav_btn {
    margin: 5px 5px 6px;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: none;
    padding: 20px 15px;
    background: none; }
  .slicknav_menu .header-SM {
    padding: 20px 0 0 0;
    text-align: center; }
    .slicknav_menu .header-SM a {
      padding: 10px;
      display: inline-block; }
      .slicknav_menu .header-SM a img {
        width: 30px;
        height: auto; }

.slicknav_nav {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 400;
  padding: 20px; }
  .slicknav_nav li {
    text-align: left;
    border-bottom: 1px solid #353535; }
    .slicknav_nav li a {
      padding: 15px 20px;
      font-size: 1.5em; }
      .slicknav_nav li a:hover {
        background: none;
        color: #fff; }
  .slicknav_nav .about-sm {
    margin-bottom: 24px;
    margin-top: 24px !important;
    width: 60%;
    margin: 0 auto; }

.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
  margin-top: .4em; }

.slicknav_menu .slicknav_icon-bar {
  display: block;
  width: 2.125em;
  height: 2px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 0;
  -moz-box-shadow: 0;
  box-shadow: 0; }

.slicknav_menu .slicknav_icon {
  float: left;
  width: 2.125em;
  height: .875em;
  margin: 0; }
  .slicknav_menu .slicknav_icon .slicknav_icon-bar {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }

.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: center;
  position: relative;
  top: 7px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(2) {
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: center;
  position: relative;
  top: -9px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.slicknav_nav a:hover {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: none;
  color: #222; }

.dark-header {
  background: #000;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  box-shadow: 1px 0 1px rgba(0, 0, 0, 0.15); }
  .dark-header .logo {
    width: 79px !important;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    @media (max-width: 768px) {
      .dark-header .logo {
        position: fixed;
        top: 0;
        width: 67px !important; } }
  .dark-header .nine-tenths ul {
    padding: 0 0 0 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }

.current-menu-item {
  position: relative; }
  .current-menu-item:after {
    content: "";
    position: absolute;
    top: 0;
    background: #F3B520;
    height: 5px;
    width: 100% !important;
    left: 0 !important; }

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  height: 100vh;
  width: 100%;
  background: url(../../img/bitmap/places-black.png) center center no-repeat #F3B520;
  background-size: 200px;
  position: fixed;
  z-index: 99999; }

.pace-inactive {
  display: none; }

.pace .pace-progress {
  background: #000;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 4px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }

.pace-running > :not(.pace) {
  opacity: 0; }

.pace-done > :not(.pace) {
  opacity: 1;
  transition: opacity .5s ease; }

.hero {
  width: 100%;
  background-size: cover;
  padding: 230px 0 180px 0;
  display: table;
  overflow: hidden; }
  @media (max-width: 768px) {
    .hero {
      padding: 210px 0 150px 0 !important; } }
  .hero .hero-content {
    position: relative;
    display: table-cell;
    text-align: center;
    vertical-align: middle; }
    .hero .hero-content > .grid--full {
      margin: 0 auto !important; }
    .hero .hero-content h1 {
      color: #fff; }
    .hero .hero-content p {
      color: #fff;
      font-size: 21px;
      font-weight: 700;
      max-width: 750px;
      padding: 0 24px;
      margin: 0 auto 20px auto;
      line-height: 1.5; }
      @media (max-width: 768px) {
        .hero .hero-content p {
          font-size: 16px; } }
    .hero .hero-content .search-width {
      width: 100%;
      max-width: 1040px;
      margin: 0 auto; }
      @media (min-width: 769px) and (max-width: 1024px) {
        .hero .hero-content .search-width {
          max-width: 1000px;
          padding: 0 24px; } }
      @media (max-width: 768px) {
        .hero .hero-content .search-width {
          padding: 0 24px; } }
      .hero .hero-content .search-width .search-options {
        padding: 20px 0 15px 0px;
        text-align: left;
        background: #fff; }
        @media (max-width: 768px) {
          .hero .hero-content .search-width .search-options {
            padding: 0 24px; } }
        @media (max-width: 768px) {
          .hero .hero-content .search-width .search-options .search-single {
            border-bottom: 2px solid #efefef; }
            .hero .hero-content .search-width .search-options .search-single:nth-last-child(1) {
              border-bottom: 0; } }
        .hero .hero-content .search-width .search-options .grid__item {
          padding: 0 25px 0 20px;
          border-right: 2px solid #efefef; }
          @media (max-width: 768px) {
            .hero .hero-content .search-width .search-options .grid__item {
              border-right: 0;
              padding: 20px 0 12px 0; } }
          .hero .hero-content .search-width .search-options .grid__item:nth-last-child(1) {
            border-right: 0; }
        .hero .hero-content .search-width .search-options label {
          display: block;
          font-family: 'Roboto', sans-serif;
          font-weight: 700;
          font-size: 14px; }
        .hero .hero-content .search-width .search-options .selector select {
          color: #c4c4c4;
          background: url(../../img/icon/drop-down.png) center right no-repeat;
          background-size: 15px;
          width: 100%;
          height: 35px;
          outline: none;
          border: 0;
          font-size: 18px;
          font-weight: 100;
          -webkit-appearance: none;
          cursor: pointer; }

.video-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url(../../img/bitmap/video-placehold.jpg) center center no-repeat;
  background-size: cover; }

.home .hero {
  padding: 200px 0; }
  @media (max-width: 768px) {
    .home .hero {
      padding: 120px 0 150px 0 !important; } }

.home-intro {
  position: relative;
  margin-top: -50px;
  margin-bottom: 30px; }
  @media (max-width: 768px) {
    .home-intro {
      margin-bottom: 20px; } }
  .home-intro .property-latest {
    height: 430px;
    margin-bottom: 24px; }
    @media (max-width: 768px) {
      .home-intro .property-latest {
        height: 160px; } }
    .home-intro .property-latest .inner {
      width: 100%;
      height: 100%;
      background: #F3B520;
      display: table; }
      .home-intro .property-latest .inner h2 {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        font-size: 35px;
        line-height: 1.1; }
        .home-intro .property-latest .inner h2 span {
          color: #fff; }
  .home-intro .buy-rent-CTA {
    margin-bottom: 24px; }
    .home-intro .buy-rent-CTA:nth-child(1) .inner {
      background: url(../../img/bitmap/places-coffee-table.jpg) center center no-repeat;
      background-size: cover; }
    .home-intro .buy-rent-CTA:nth-child(2) .inner {
      background: url(../../img/bitmap/rent-your-space.jpg) center center no-repeat;
      background-size: cover; }
    .home-intro .buy-rent-CTA .inner {
      width: 100%;
      height: 100%;
      background: grey;
      padding: 300px 0 20px 40px;
      position: relative; }
      @media (max-width: 768px) {
        .home-intro .buy-rent-CTA .inner {
          padding: 90px 0px 70px 0px; } }
      .home-intro .buy-rent-CTA .inner h2 {
        font-size: 28px;
        color: #fff;
        position: relative; }
        @media (max-width: 768px) {
          .home-intro .buy-rent-CTA .inner h2 {
            text-align: center; } }

.grad-bottom {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }

.home-buy-rent {
  padding: 50px 0 30px 0; }
  .home-buy-rent .grid__item a {
    text-decoration: none; }
    .home-buy-rent .grid__item a:hover .grad-bottom {
      opacity: 1;
      -webkit-transition: 0.5s;
      -moz-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  height: 175px; }

.property-single {
  height: 430px;
  margin-bottom: 24px; }
  .property-single .owl-dots {
    display: none; }
  @media (max-width: 768px) {
    .property-single {
      padding-left: 0; } }
  .property-single .owl-item {
    height: 175px; }
  .property-single .owl-nav {
    position: relative;
    top: -95px; }
    .property-single .owl-nav .owl-prev {
      position: absolute;
      top: 0;
      left: 15px; }
    .property-single .owl-nav .owl-next {
      position: absolute;
      top: 0;
      right: 15px; }
  .property-single .inner {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative; }
    .property-single .inner .single-upper {
      padding: 0 20px; }
      .property-single .inner .single-upper p {
        background: #F3B520;
        color: #000;
        display: inline-block;
        padding: 10px;
        font-weight: 700;
        margin-bottom: 20px; }
      .property-single .inner .single-upper h3 {
        font-family: 'geoSlab';
        font-size: 21px;
        margin-bottom: 5px;
        color: #fff;
        text-transform: none; }
      .property-single .inner .single-upper h3:nth-child(4) {
        font-family: 'Roboto', sans-serif;
        margin: 20px 0; }
    .property-single .inner .single-lower {
      position: absolute;
      width: 100%;
      bottom: 0;
      left: 0; }
      .property-single .inner .single-lower .property-thumb {
        width: 100%;
        height: 200px;
        background: grey; }
        @media (max-width: 768px) {
          .property-single .inner .single-lower .property-thumb {
            height: 150px; } }

#mobile-carousel {
  height: 465px; }
  #mobile-carousel .owl-item {
    transform: scale(0.95);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  #mobile-carousel .owl-item.active {
    transform: scale(1);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }

.home-find-area a {
  text-decoration: none !important; }

.home-find-area .square {
  margin-bottom: 24px;
  position: relative; }
  .home-find-area .square .inner {
    width: 100%;
    height: 100%;
    background: #000; }
  .home-find-area .square .upper {
    height: 100%;
    padding-bottom: 10%;
    width: 100%;
    display: table; }
    .home-find-area .square .upper h2 {
      position: relative;
      display: table-cell;
      text-align: center;
      vertical-align: middle;
      color: #fff;
      font-family: 'geoSlab';
      text-decoration: none;
      text-transform: uppercase;
      font-size: 35px;
      padding: 40px 20px 0 20px;
      line-height: 1.1; }
  .home-find-area .square .lower {
    position: absolute;
    bottom: 15px;
    width: 100%; }
    .home-find-area .square .lower .grid__item {
      text-align: center;
      position: relative; }
      .home-find-area .square .lower .grid__item p {
        margin: 0; }
      .home-find-area .square .lower .grid__item p:nth-child(1) {
        color: #F3B520;
        font-size: 30px; }
      .home-find-area .square .lower .grid__item p:nth-child(2) {
        color: #fff;
        font-size: 16px;
        font-weight: 600; }
  .home-find-area .square a {
    text-decoration: none !important; }

.home-find-area a {
  text-decoration: none !important; }

.home-find-area .square-big h2 {
  font-size: 4em !important; }

@media (min-width: 481px) and (max-width: 768px) {
  .home-find-area .square-big {
    width: 50% !important;
    display: none; } }

@media (max-width: 480px) {
  .home-find-area .square-big {
    width: 100% !important;
    display: none; } }

.home-find-area .square-med h2 {
  padding-top: 0 !important; }
  @media (min-width: 1025px) and (max-width: 1230px) {
    .home-find-area .square-med h2 {
      font-size: 1.5em !important;
      top: -10px; } }

@media (min-width: 769px) and (max-width: 1024px) {
  .home-find-area .square-med {
    width: 50% !important; } }

@media (min-width: 481px) and (max-width: 768px) {
  .home-find-area .square-med {
    width: 50% !important; } }

@media (max-width: 480px) {
  .home-find-area .square-med {
    width: 100% !important; } }

.home-find-area .square-small .lower {
  bottom: 15px !important; }

.home-find-area .square-small h2 {
  padding-top: 0 !important;
  font-size: 1.5em !important; }
  @media (min-width: 1025px) and (max-width: 1230px) {
    .home-find-area .square-small h2 {
      font-size: 1.2em !important;
      top: -20px !important; } }
  @media (min-width: 1025px) and (max-width: 1439px) {
    .home-find-area .square-small h2 {
      font-size: 100px; } }

@media (max-width: 480px) {
  .home-find-area .square-small {
    width: 100% !important; } }

@media (min-width: 481px) and (max-width: 768px) {
  .home-find-area .ccOne .square-big {
    display: block !important;
    width: 100% !important; } }

@media (max-width: 480px) {
  .home-find-area .ccOne .square-big {
    display: block !important; } }

@media (max-width: 1024px) {
  .home-find-area .ccOne {
    display: block;
    width: 100% !important; } }

@media (min-width: 1025px) {
  .home-find-area .ccOne {
    display: none; } }

@media (min-width: 481px) and (max-width: 1024px) {
  .home-find-area .ccOne .square {
    height: 400px !important; } }

@media (max-width: 1024px) {
  .home-find-area .ccTwo {
    display: none; } }

@media (min-width: 1025px) {
  .home-find-area .ccTwo {
    display: inline-block; } }

@media (min-width: 481px) and (max-width: 768px) {
  .home-find-area .desk--one-fifth, .home-find-area .desk--two-tenths {
    width: 50% !important; }
    .home-find-area .desk--one-fifth .inner, .home-find-area .desk--two-tenths .inner {
      width: 100% !important; } }

@media (max-width: 480px) {
  .home-find-area .desk--one-fifth, .home-find-area .desk--two-tenths {
    width: 100% !important; } }

@media (min-width: 481px) and (max-width: 768px) {
  .home-find-area .desk--two-fifths, .home-find-area .desk--four-tenths {
    width: 50% !important; }
    .home-find-area .desk--two-fifths .inner, .home-find-area .desk--four-tenths .inner {
      width: 100% !important; } }

@media (max-width: 480px) {
  .home-find-area .desk--two-fifths, .home-find-area .desk--four-tenths {
    width: 100% !important;
    margin-bottom: 24px; } }

.home-find-area .digbeth-home .inner {
  background: url(../../img/bitmap/DV5A1079.jpg) center top no-repeat;
  background-size: cover; }

.home-find-area .westside-home .inner {
  background: url(../../img/bitmap/places-facade-1.jpg) center top no-repeat;
  background-size: cover; }

.home-find-area .city-centre-home .inner {
  background: url(../../img/bitmap/DV5A1149.jpg) center top no-repeat;
  background-size: cover; }

.home-find-area .jewellery-q-home .inner {
  background: url(../../img/bitmap/DV5A0796.jpg) center top no-repeat;
  background-size: cover; }

.home-find-area .edgbaston-home .inner {
  background: url(../../img/bitmap/canonhill.jpg) center top no-repeat;
  background-size: cover; }

.home-find-area .george-chad-home .inner {
  background: url(../../img/bitmap/DV5A0991.jpg) center top no-repeat;
  background-size: cover; }

.home-find-area .southside-home .inner {
  background: url(../../img/bitmap/DV5A1033.jpg) center top no-repeat;
  background-size: cover; }

.home-find-area .eastside-home .inner {
  background: url(../../img/bitmap/DV5A1153_V2.jpg) center top no-repeat;
  background-size: cover; }

.discover-cta {
  background: #000 !important;
  position: relative;
  text-decoration: none; }
  .discover-cta:hover .discover-cta-hover {
    position: absolute;
    background: #F3B520;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
    -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s; }
  .discover-cta:hover .inner {
    position: relative;
    padding: 40px;
    width: 60%; }
    @media (min-width: 1025px) and (max-width: 1439px) {
      .discover-cta:hover .inner {
        padding: 25px; } }
    @media (min-width: 769px) and (max-width: 1024px) {
      .discover-cta:hover .inner {
        width: 100%; } }
    @media (max-width: 768px) {
      .discover-cta:hover .inner {
        width: 100%;
        padding: 25px; } }
    .discover-cta:hover .inner h3 {
      font-family: Roboto, sans-serif;
      color: #fff;
      font-weight: 100;
      line-height: 1.1;
      font-size: 45px;
      -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s; }
      @media (min-width: 1025px) and (max-width: 1439px) {
        .discover-cta:hover .inner h3 {
          font-size: 28px;
          margin-bottom: 10px; } }
      @media (min-width: 769px) and (max-width: 1024px) {
        .discover-cta:hover .inner h3 {
          font-size: 35px;
          margin-bottom: 10px; } }
    .discover-cta:hover .inner p {
      color: #000;
      -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      font-size: 21px; }
      @media (min-width: 1025px) and (max-width: 1439px) {
        .discover-cta:hover .inner p {
          font-size: 18px; } }
    .discover-cta:hover .inner img {
      position: absolute;
      height: 50%;
      width: auto;
      top: 23%;
      right: -50%; }
    .discover-cta:hover .inner .arrow-b {
      opacity: 1;
      -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s; }
      @media (max-width: 768px) {
        .discover-cta:hover .inner .arrow-b {
          display: none;
          position: absolute;
          height: 20%;
          width: auto;
          bottom: -30px;
          left: 40px;
          top: auto;
          right: auto; } }
      @media (min-width: 769px) and (max-width: 1024px) {
        .discover-cta:hover .inner .arrow-b {
          display: none;
          position: absolute;
          height: 30%;
          width: auto;
          bottom: -60px;
          left: 40px;
          top: auto;
          right: auto; } }
    .discover-cta:hover .inner .arrow-y {
      opacity: 0;
      -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s; }
      @media (max-width: 768px) {
        .discover-cta:hover .inner .arrow-y {
          display: none;
          position: absolute;
          height: 20%;
          width: auto;
          bottom: -30px;
          left: 40px;
          top: auto;
          right: auto; } }
      @media (min-width: 769px) and (max-width: 1024px) {
        .discover-cta:hover .inner .arrow-y {
          display: none;
          position: absolute;
          height: 30%;
          width: auto;
          bottom: -60px;
          left: 40px;
          top: auto;
          right: auto; } }
  .discover-cta .discover-cta-hover {
    position: absolute;
    background: #F3B520;
    height: 100%;
    width: 0%;
    left: 0;
    top: 0;
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
    -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s; }
  .discover-cta .inner {
    position: relative;
    padding: 40px;
    width: 60%; }
    @media (min-width: 1025px) and (max-width: 1439px) {
      .discover-cta .inner {
        padding: 25px; } }
    @media (min-width: 769px) and (max-width: 1024px) {
      .discover-cta .inner {
        width: 100%; } }
    @media (max-width: 768px) {
      .discover-cta .inner {
        width: 100%;
        padding: 25px; } }
    .discover-cta .inner h3 {
      font-family: Roboto, sans-serif;
      color: #fff;
      font-weight: 100;
      line-height: 1.1;
      font-size: 45px;
      -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s; }
      @media (min-width: 1025px) and (max-width: 1439px) {
        .discover-cta .inner h3 {
          font-size: 28px;
          margin-bottom: 10px; } }
      @media (min-width: 769px) and (max-width: 1024px) {
        .discover-cta .inner h3 {
          font-size: 35px;
          margin-bottom: 10px; } }
    .discover-cta .inner p {
      color: #F3B520;
      -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      font-size: 21px; }
      @media (min-width: 1025px) and (max-width: 1439px) {
        .discover-cta .inner p {
          font-size: 18px; } }
    .discover-cta .inner img {
      position: absolute;
      height: 50%;
      width: auto;
      top: 23%;
      right: -40%; }
    .discover-cta .inner .arrow-b {
      opacity: 0;
      -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s; }
      @media (max-width: 768px) {
        .discover-cta .inner .arrow-b {
          display: none;
          position: absolute;
          height: 20%;
          width: auto;
          bottom: -30px;
          left: 40px;
          top: auto;
          right: auto; } }
      @media (min-width: 769px) and (max-width: 1024px) {
        .discover-cta .inner .arrow-b {
          display: none;
          position: absolute;
          height: 30%;
          width: auto;
          bottom: -60px;
          left: 40px;
          top: auto;
          right: auto; } }
    .discover-cta .inner .arrow-y {
      opacity: 1;
      -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s;
      transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s; }
      @media (max-width: 768px) {
        .discover-cta .inner .arrow-y {
          display: none;
          position: absolute;
          height: 20%;
          width: auto;
          bottom: -30px;
          left: 40px;
          top: auto;
          right: auto; } }
      @media (min-width: 769px) and (max-width: 1024px) {
        .discover-cta .inner .arrow-y {
          display: none;
          position: absolute;
          height: 30%;
          width: auto;
          bottom: -60px;
          left: 40px;
          top: auto;
          right: auto; } }
  .discover-cta a {
    text-decoration: none; }

.home-contact {
  margin-top: -60px;
  background: url(../../img/bitmap/skyline.jpg) center top no-repeat;
  background-size: cover;
  padding: 150px 0 200px 0; }
  @media (max-width: 768px) {
    .home-contact {
      margin-top: 0px;
      padding: 40px 0 150px 0; } }
  .home-contact h3 {
    color: #fff; }
    @media (max-width: 768px) {
      .home-contact h3 {
        font-size: 28px;
        margin: 40px 0; } }
  .home-contact a {
    position: relative; }
    .home-contact a:after {
      content: '';
      position: absolute;
      height: 2px;
      width: 0%;
      background: #fff;
      left: 0;
      bottom: 0;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
  .home-contact img {
    position: relative;
    top: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .home-contact .contact-single {
    background: #000;
    padding: 30px 0;
    overflow: hidden; }
    .home-contact .contact-single:nth-last-child(1) .inner {
      border: 0; }
    .home-contact .contact-single:hover a:after {
      content: '';
      position: absolute;
      height: 2px;
      width: 100%;
      background: #fff;
      left: 0;
      bottom: 0;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .home-contact .contact-single:hover img {
      top: -5px;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    @media (max-width: 768px) {
      .home-contact .contact-single {
        padding: 50px 20px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2); }
        .home-contact .contact-single:nth-last-child(1) {
          border-bottom: 0; } }
    .home-contact .contact-single .inner {
      width: 100%;
      height: 100%;
      background: #000;
      padding: 10px 50px 0 50px;
      border-right: 2px solid rgba(255, 255, 255, 0.2); }
      @media (max-width: 768px) {
        .home-contact .contact-single .inner {
          margin: 0;
          border-right: 0;
          text-align: center; }
          .home-contact .contact-single .inner > * {
            padding: 0; }
          .home-contact .contact-single .inner img {
            margin-bottom: 20px; } }
      @media (min-width: 769px) and (max-width: 1024px) {
        .home-contact .contact-single .inner {
          text-align: center;
          padding: 10px 20px 0 20px;
          margin: 0; }
          .home-contact .contact-single .inner img {
            height: 35px;
            margin-bottom: 20px; }
          .home-contact .contact-single .inner h4 {
            font-size: 21px;
            margin-bottom: 5px !important; }
          .home-contact .contact-single .inner p {
            font-size: 16px !important; }
          .home-contact .contact-single .inner > .grid__item {
            padding-left: 0; }
          .home-contact .contact-single .inner a {
            color: #fff;
            font-size: 16px !important;
            font-weight: 700;
            font-family: 'Roboto', sans-serif;
            display: inline-block;
            text-decoration: none;
            margin-bottom: 15px;
            line-height: 1.5em;
            position: relative; } }
      @media (min-width: 1025px) and (max-width: 1439px) {
        .home-contact .contact-single .inner {
          margin: 0; }
          .home-contact .contact-single .inner img {
            height: 40px;
            padding: 0; }
          .home-contact .contact-single .inner h4 {
            font-size: 23px;
            margin-bottom: 3px !important; }
          .home-contact .contact-single .inner p {
            font-size: 16px !important; }
          .home-contact .contact-single .inner a {
            color: #fff;
            font-size: 16px !important;
            font-weight: 700;
            font-family: 'Roboto', sans-serif;
            display: inline-block;
            text-decoration: none;
            margin-bottom: 15px;
            line-height: 1.5em; } }
      .home-contact .contact-single .inner img {
        height: 50px !important;
        width: auto !important; }
      .home-contact .contact-single .inner .grid__item h4 {
        color: #fff;
        margin-bottom: 0px; }
      .home-contact .contact-single .inner .grid__item p {
        color: #fff;
        font-size: 23px;
        font-weight: 700; }
      .home-contact .contact-single .inner .grid__item a {
        color: #fff;
        font-size: 23px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
        display: inline-block;
        text-decoration: none;
        margin-bottom: 15px;
        line-height: 1.5em; }

.home-about {
  background: #f5f5f5;
  padding: 70px 0 110px 0; }
  @media (min-width: 1440px) {
    .home-about {
      padding: 70px 0 110px 0; } }
  @media (min-width: 1025px) and (max-width: 1439px) {
    .home-about {
      padding: 70px 0 110px 0; } }
  .home-about .max-width {
    position: relative; }
  .home-about .inner {
    padding: 40px;
    background: #fff; }
  .home-about .about-copy {
    margin-top: -50px; }
  .home-about .about-image {
    background: url(../../img/bitmap/places-facade-1.jpg) center center no-repeat;
    background-size: cover;
    height: 500px;
    margin: 200px 0 0 0;
    position: relative; }
    @media (max-width: 768px) {
      .home-about .about-image {
        margin-top: 0px; } }
    @media (min-width: 769px) and (max-width: 1024px) {
      .home-about .about-image {
        margin-top: 0px; } }
    .home-about .about-image:before {
      content: '';
      background: url(../../img/bitmap/EST-2003.png) center center no-repeat;
      background-size: 100%;
      width: 130px;
      height: 75px;
      position: absolute;
      top: -70px;
      right: 0; }
      @media (max-width: 768px) {
        .home-about .about-image:before {
          display: none; } }
      @media (min-width: 769px) and (max-width: 1024px) {
        .home-about .about-image:before {
          display: none; } }
  .home-about .about-interior {
    position: absolute;
    bottom: -10px;
    right: 40px;
    width: 450px;
    height: 300px;
    background: url(../../img/bitmap/places-interior.png) center center no-repeat; }
    @media (max-width: 768px) {
      .home-about .about-interior {
        display: none; } }
    @media (min-width: 769px) and (max-width: 1024px) {
      .home-about .about-interior {
        display: none; } }
    @media (min-width: 1025px) and (max-width: 1439px) {
      .home-about .about-interior {
        bottom: 40px;
        right: 60px; } }

.newsletter-CTA {
  padding: 90px 0; }
  .newsletter-CTA .grid__item {
    padding: 0 60px; }
    @media (max-width: 768px) {
      .newsletter-CTA .grid__item {
        padding: 0 0 0 24px; } }
  .newsletter-CTA h4 {
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2; }
  .newsletter-CTA p {
    color: #fff;
    margin-bottom: 35px; }
  .newsletter-CTA input {
    padding: 20px 10px;
    font-size: 1em;
    border: 0;
    width: 80%; }
    @media (max-width: 768px) {
      .newsletter-CTA input {
        width: 100%;
        text-align: center; } }
  .newsletter-CTA ::-webkit-input-placeholder {
    /* Chrome */
    color: #c4c4c4; }
  .newsletter-CTA :-ms-input-placeholder {
    /* IE 10+ */
    color: #c4c4c4; }
  .newsletter-CTA ::-moz-placeholder {
    /* Firefox 19+ */
    color: #c4c4c4;
    opacity: 1; }
  .newsletter-CTA :-moz-placeholder {
    /* Firefox 4 - 18 */
    color: #c4c4c4;
    opacity: 1; }
  .newsletter-CTA input[type='submit'] {
    margin-left: -5px;
    background: #000;
    width: 20%;
    color: #fff; }
    @media (max-width: 768px) {
      .newsletter-CTA input[type='submit'] {
        width: 100%;
        margin-left: 0px; } }
  .newsletter-CTA #submissionReply h4 {
    font-family: Roboto;
    font-size: 1em;
    text-transform: initial;
    margin: 10px 0; }

@media (max-width: 768px) {
  .mob-properties-home .owl-nav {
    margin-top: 0;
    height: 30px !important; }
    .mob-properties-home .owl-nav .owl-prev {
      padding: 30px; }
    .mob-properties-home .owl-nav .owl-next {
      padding: 10px;
      right: 4px; } }

.page-template-templateproperty-php header {
  background: #000 !important; }
  .page-template-templateproperty-php header .logo {
    width: 115px; }

.property-options {
  background: #fff;
  border-bottom: 1px solid #efefef;
  padding: 30px;
  position: fixed;
  top: 75px;
  z-index: 9;
  width: 100%; }
  @media (max-width: 768px) {
    .property-options {
      background: #fff;
      border-bottom: 1px solid #efefef;
      padding: 5px 10px 5px 12px;
      position: fixed;
      top: 65px;
      z-index: 9;
      width: 100%; }
      .property-options h4 {
        margin-bottom: 0; }
      .property-options #property-filter {
        display: none; } }

@media (min-width: 1440px) {
  .property-latest {
    height: 430px !important; } }

.property-overview {
  padding-top: 190px;
  min-height: 100vh; }
  @media (max-width: 768px) {
    .property-overview {
      padding-top: 138px; } }
  .property-overview .max-width {
    margin: 0 auto !important; }
    @media (max-width: 768px) {
      .property-overview .max-width {
        padding-top: 20px; } }
  .property-overview .property-map {
    position: fixed;
    width: 50%;
    right: 0;
    top: 0;
    background: #f7f7f7;
    /*@media (min-width: 1025px) and(max-width: 1439px) {
			position: absolute;
			width: 100%;
			right: 0;
			top: 0;
			#map {
				height: 390px !important;
			}
		}
		/*@media (min-width: 769px) and (max-width: 1024px) {
			position: absolute;
			width: 100%;
			right: 0;
			top: 0;
			#map {
				height: 390px !important;
			}
		}*/ }
    @media (min-width: 1440px) {
      .property-overview .property-map {
        padding-left: 48px; } }
    @media (max-width: 768px) {
      .property-overview .property-map #map {
        height: 60vh; } }

@media (min-width: 1025px) and (max-width: 1439px) {
  #property-filter {
    left: 7.5%; } }

@media (min-width: 769px) and (max-width: 1024px) {
  #property-filter {
    padding-left: 0;
    padding-right: 0; } }

#property-filter .grid__item {
  position: relative;
  left: 10%;
  padding-left: 56px; }
  @media (min-width: 1025px) and (max-width: 1439px) {
    #property-filter .grid__item {
      left: 9.5%; } }
  @media (min-width: 769px) and (max-width: 1024px) {
    #property-filter .grid__item {
      left: 0%;
      padding-left: 50px; } }

#property-filter span {
  position: relative;
  background: url(../../img/icon/drop-down.png) center right no-repeat;
  background-size: 15px;
  background-position-y: 12px;
  margin-right: 40px;
  display: inherit; }
  #property-filter span:nth-child(2) {
    min-width: 110px; }
  #property-filter span:nth-child(3) {
    width: 195px; }
  #property-filter span:nth-child(4) {
    width: 108px; }
  @media (max-width: 1300px) {
    #property-filter span {
      margin-top: 20px; } }

@media (max-width: 1300px) {
  #property-filter .soldProperties {
    margin-top: 20px; } }

#property-filter select {
  -webkit-appearance: none;
  border: 0;
  background: none;
  font-size: 18px;
  padding: 5px 20px 0 0; }

.property-options .accordion-content {
  border-top: 0; }
  .property-options .accordion-content select {
    height: 60px;
    padding: 10px 0;
    display: inline-block;
    background: none;
    border: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    -webkit-appearance: none;
    background: url(../../img/icon/drop-down.png) #fff center right no-repeat;
    background-size: 15px;
    background-position-x: 96%; }

.page-template-templateproperty-php .accordion-toggle {
  background: #fff;
  margin: 0;
  padding: 20px 10px 20px 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 0 !important; }
  .page-template-templateproperty-php .accordion-toggle:after {
    content: "";
    position: absolute;
    right: 24px;
    height: 25px;
    width: 25px;
    background: url(../../img/icon/plus.png) #fff center right no-repeat;
    background-size: 25px;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
    transition: 1s; }

.page-template-templateproperty-php .accordion-open:after {
  transform: rotate(315deg);
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s; }

.accordion-content .area {
  opacity: 0;
  position: relative;
  margin-top: -5px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s; }

.accordion-content .price {
  opacity: 0;
  position: relative;
  margin-top: -5px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s; }

.accordion-content .order {
  opacity: 0;
  position: relative;
  margin-top: -5px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s; }

.accordion-content-open .area {
  opacity: 1;
  position: relative;
  margin-top: 0px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s; }

.accordion-content-open .price {
  opacity: 1;
  position: relative;
  margin-top: 0px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s; }

.accordion-content-open .order {
  opacity: 1;
  position: relative;
  margin-top: 0px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s; }

.page-id-9 #property-filter span:nth-child(3) {
  width: 130px; }

.lightSlider li img {
  width: 100%; }

.lightbox-copy {
  background: none !important;
  font-weight: 400 !important;
  padding: 0 !important; }

@media (max-width: 600px) {
  .maplightbox .btn-view {
    /* margin-top: -65px; */ } }

.noResultsFound h3 {
  font-family: "Roboto";
  text-align: center;
  font-size: 23px;
  max-width: 350px;
  margin: 30vh auto 0 auto;
  line-height: 1.4em;
  text-transform: inherit;
  color: #afafaf; }
  @media (max-width: 768px) {
    .noResultsFound h3 {
      margin: 0 auto 0 auto;
      font-size: 18px; } }

@media (min-width: 769px) and (max-width: 1024px) {
  .property-list-wrapper {
    /*margin-top: 400px;*/ } }

@media (min-width: 1025px) and (max-width: 1439px) {
  .property-list-wrapper {
    /*margin-top: 400px;*/
    width: 55% !important; } }

@media (min-width: 1025px) and (max-width: 1439px) {
  .property-map {
    /*margin-top: 400px;*/
    width: 42.5% !important; } }

@media (max-width: 768px) {
  .maplightbox .property-single .inner .single-lower {
    position: relative;
    margin-bottom: 40px; } }

.gm-style-iw {
  width: 175px !important;
  max-width: 350px !important;
  left: 0 !important;
  top: 0 !important; }
  .gm-style-iw img {
    width: 100% !important; }
  .gm-style-iw > div {
    width: 100% !important;
    max-width: 350px !important; }

.map-discover-cta {
  position: absolute;
  left: 72px;
  bottom: 30px;
  width: 50%;
  height: 150px;
  background: #000; }
  .map-discover-cta .one-third, .map-discover-cta .two-sixths, .map-discover-cta .four-twelfths {
    padding: 20px;
    height: 100%;
    background-size: cover !important; }
  .map-discover-cta .two-thirds, .map-discover-cta .four-sixths, .map-discover-cta .eight-twelfths {
    height: 100px;
    background-size: cover;
    padding: 40px; }
    .map-discover-cta .two-thirds h3, .map-discover-cta .four-sixths h3, .map-discover-cta .eight-twelfths h3 {
      color: #fff;
      font-family: Roboto, sans-serif;
      font-weight: 100;
      margin-bottom: 10px; }
    .map-discover-cta .two-thirds p, .map-discover-cta .four-sixths p, .map-discover-cta .eight-twelfths p {
      color: #F3B520; }

/* SQUARED FOUR */
.soldProperties {
  display: inherit;
  position: relative;
  width: 200px; }
  .soldProperties [type="checkbox"] {
    display: none; }
  .soldProperties p {
    font-size: 18px;
    margin: 0px;
    padding: 0px; }

.soldProperties label {
  right: -10px;
  cursor: pointer;
  position: absolute;
  width: 22px;
  height: 22px;
  top: 2px;
  border-radius: 4px;
  border: 2px solid rgba(0, 0, 0, 0.4); }

.soldProperties label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  content: '';
  position: absolute;
  width: 9px;
  height: 5px;
  background: transparent;
  top: 3px;
  left: 3px;
  border: 3px solid #f3b520;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.soldProperties label:hover::after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  opacity: 0.5; }

.soldProperties input[type=checkbox]:checked + label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1; }

.page-template-templateproperty-single-php #header {
  background: #000 !important; }

.property-header {
  background: url(../../img/bitmap/property-header.png) center center no-repeat;
  background-size: cover;
  padding: 155px 0 50px 0; }
  @media (max-width: 768px) {
    .property-header {
      padding: 0; } }
  .property-header a {
    font-family: 'Roboto', sans-serif;
    color: #000;
    padding: 20px 0px 30px;
    text-decoration: none;
    display: inline-block; }
    @media (max-width: 768px) {
      .property-header a {
        padding: 90px 0 10px; } }
    .property-header a:hover img {
      margin-right: 10px;
      -webkit-transition: .3s;
      -moz-transition: .3s;
      -o-transition: .3s;
      transition: .3s; }
    .property-header a img {
      height: 11px;
      margin-right: 15px;
      -webkit-transition: .3s;
      -moz-transition: .3s;
      -o-transition: .3s;
      transition: .3s; }
    .property-header a p {
      display: inherit; }
  .property-header .desk--three-quarters h1, .property-header .desk--six-eighths h1, .property-header .desk--nine-twelfths h1 {
    font-size: 40px;
    text-transform: capitalize;
    line-height: 42px; }
  .property-header .desk--one-quarter, .property-header .desk--two-eighths, .property-header .desk--three-twelfths {
    text-align: right; }
    @media (max-width: 768px) {
      .property-header .desk--one-quarter, .property-header .desk--two-eighths, .property-header .desk--three-twelfths {
        text-align: left; } }
    @media (min-width: 769px) and (max-width: 1024px) {
      .property-header .desk--one-quarter, .property-header .desk--two-eighths, .property-header .desk--three-twelfths {
        text-align: left; } }
    .property-header .desk--one-quarter h2, .property-header .desk--two-eighths h2, .property-header .desk--three-twelfths h2 {
      font-size: 40px;
      margin: 0; }

.property-showcase {
  width: 100%;
  height: auto;
  background: #000;
  margin-bottom: 20px;
  padding-bottom: 20px; }
  @media (max-width: 768px) {
    .property-showcase {
      height: auto;
      margin-bottom: 0; } }

.propery-body {
  padding-bottom: 50px; }
  .propery-body .property-information {
    margin-top: -40px; }
    @media (max-width: 768px) {
      .propery-body .property-information {
        margin-top: 20px; } }
    .propery-body .property-information .inner {
      background: #fff; }
      @media (max-width: 768px) {
        .propery-body .property-information .inner {
          background: none; } }
      .propery-body .property-information .inner .property-tabs {
        border-bottom: 1px solid #D7D7D7; }
      .propery-body .property-information .inner ul.tabs {
        margin: 0px;
        padding: 0 30px;
        list-style: none; }
      .propery-body .property-information .inner ul.tabs li {
        background: #F7F7F7;
        color: #222;
        display: inline-block;
        padding: 20px 35px;
        cursor: pointer;
        font-weight: 600; }
      .propery-body .property-information .inner ul.tabs li.current {
        background: none;
        border-left: 1px solid #D7D7D7;
        border-right: 1px solid #D7D7D7;
        border-top: 4px solid #F3B520;
        color: #222;
        background: #fff;
        position: relative;
        top: 1px; }
      .propery-body .property-information .inner .tab-content {
        display: none;
        padding: 30px; }
      .propery-body .property-information .inner .tab-content.current {
        display: inherit; }
  .propery-body .property-action {
    margin-top: -175px; }
    @media (max-width: 768px) {
      .propery-body .property-action {
        margin-top: 0px; } }
    .propery-body .property-action .property-single-map {
      width: 100%;
      height: 200px;
      background: #000; }
    .propery-body .property-action .inner {
      background: #F3B520;
      width: 100%;
      padding: 30px; }
      .propery-body .property-action .inner .btn-view {
        background: #000;
        color: #fff;
        margin-bottom: 20px; }
      .propery-body .property-action .inner .action-options li {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
        .propery-body .property-action .inner .action-options li a {
          text-decoration: none;
          color: #000; }
        .propery-body .property-action .inner .action-options li:nth-last-child(1) {
          border: 0; }
        .propery-body .property-action .inner .action-options li img {
          width: 27px;
          margin-right: 10px; }
        .propery-body .property-action .inner .action-options li img, .propery-body .property-action .inner .action-options li p {
          display: inline;
          vertical-align: middle; }

.accordion-toggle {
  cursor: pointer; }

.accordion-content {
  display: none; }

.accordion-content.default {
  display: block; }

.accordion-toggle {
  background: #fff;
  margin: 0;
  padding: 20px 10px 20px 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
  font-size: 23px;
  font-weight: 500;
  background: url(../../img/icon/drop-down.png) #fff center right no-repeat;
  background-size: 15px;
  background-position-x: 96%; }

.accordion-content {
  background: #fff;
  padding: 10px;
  margin-top: -20px;
  margin-bottom: 20px;
  border-top: 1px solid #efefef; }
  .accordion-content p {
    font-family: 'Roboto', sans-serif; }
  .accordion-content .no-floorplan {
    font-family: 'Roboto', sans-serif; }

.mob-request {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #F3B520;
  width: 100%;
  padding: 10px 0;
  z-index: 99; }
  .mob-request .grid--full {
    width: 100%; }
  .mob-request a {
    background: #000;
    color: #fff;
    width: 48% !important;
    margin: 0 1%;
    text-align: center;
    padding: 20px 0; }

.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
  border-radius: 0 !important; }

@media (max-width: 768px) {
  .lightSlider li img {
    top: 0 !important; } }

.lSGallery {
  margin: 20px auto 0 auto !important;
  padding-left: 20px !important; }
  @media (max-width: 768px) {
    .lSGallery {
      overflow: scroll !important; } }
  @media (min-width: 1440px) {
    .lSGallery {
      width: 900px; } }

.lSSlideOuter .lSPager.lSGallery li {
  overflow: hidden;
  -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
  transition: border-radius 0.12s linear 0s 0.35s linear 0s;
  width: auto !important;
  height: 65px; }

.lSSlideOuter .lSPager.lSGallery img {
  display: block;
  height: auto;
  max-width: 100%;
  width: auto;
  height: 65px !important; }

input {
  border-radius: 0;
  -webkit-appearance: none; }

@media (max-width: 768px) {
  .featherlight {
    z-index: 90 !important; } }

.featherlight .featherlight-content {
  padding: 45px 35px 0 !important; }
  @media (max-width: 768px) {
    .featherlight .featherlight-content {
      position: fixed !important;
      top: 0;
      left: 0;
      box-sizing: border-box;
      height: 100vh;
      max-height: 100% !important;
      padding: 70px 0 0 0 !important;
      width: 100%;
      height: 150vh !important; }
      .featherlight .featherlight-content #request {
        padding: 30px; }
      .featherlight .featherlight-content input {
        width: 100%; } }

.wpcf7-form input {
  padding: 15px;
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  display: inline-block; }

.wpcf7-form .wpcf7-submit {
  margin-top: 20px; }

.featherlight .featherlight-close-icon {
  position: absolute;
  z-index: 9999;
  top: 10px !important;
  right: 10px !important;
  line-height: 25px;
  width: 25px;
  cursor: pointer;
  text-align: center;
  font-family: Arial,sans-serif;
  background: #fff;
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  border: 0;
  padding: 0;
  font-size: 1.4em; }
  @media (max-width: 768px) {
    .featherlight .featherlight-close-icon {
      top: 20px !important;
      right: 20px !important;
      font-size: 1.4em; } }

.wpcf7-form-control-wrap input {
  border: 1px solid #c4c4c4; }

.wpcf7-submit {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 20px;
  background: #f3b520;
  text-decoration: none;
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-weight: 700; }

.property-header .desk--nine-twelfths h1, .property-header .desk--six-eighths h1, .property-header .desk--three-quarters h1, .property-header .desk--six-eighths h1, .property-header .desk--nine-twelfths h1 {
  font-size: 40px;
  text-transform: capitalize;
  line-height: 1.1; }

.slider-counter {
  position: absolute;
  width: 100px;
  height: 30px;
  background: rgba(0, 0, 0, 0.5);
  bottom: 20px;
  left: 50%;
  margin-left: -50px;
  border-radius: 3px;
  color: #fff;
  font-family: roboto;
  text-align: center;
  padding: 7px; }

@media (max-width: 768px) {
  .gallery-wrap {
    overflow: scroll; } }

.page-template-templatediscover-php .hero {
  background: url(../../img/discover-header.jpg) center center no-repeat;
  background-size: cover;
  background-position-y: -280px; }

.discover-overview h2 {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 700;
  max-width: 750px;
  margin: 50px auto 50px auto;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
  text-transform: none; }

.discover-overview a {
  text-decoration: none;
  padding: 0 20px;
  display: inline-block;
  width: 100%; }

.discover-overview .grid__item {
  margin-bottom: 60px; }
  .discover-overview .grid__item .inner {
    height: 300px;
    background: #000; }
    .discover-overview .grid__item .inner .upper {
      height: 210px;
      width: 100%;
      display: table; }
      .discover-overview .grid__item .inner .upper h2 {
        position: relative;
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        color: #fff;
        font-family: "geoSlab";
        text-decoration: none;
        text-transform: uppercase;
        font-size: 35px;
        padding: 40px 20px 0 20px;
        line-height: 1.1; }
    .discover-overview .grid__item .inner .lower .grid__item {
      text-align: center;
      position: relative; }
      .discover-overview .grid__item .inner .lower .grid__item p {
        margin: 0; }
      .discover-overview .grid__item .inner .lower .grid__item p:nth-child(1) {
        color: #F3B520;
        font-size: 30px; }
      .discover-overview .grid__item .inner .lower .grid__item p:nth-child(2) {
        color: #fff;
        font-size: 16px;
        font-weight: 600; }

@media (min-width: 1200px) and (max-width: 1400px) {
  #discoverContainer h3 {
    font-size: 18px !important; }
  .map-discover-cta a {
    font-size: 14px !important; } }

@media (min-width: 768px) and (max-width: 1200px) {
  #discoverContainer h3 {
    font-size: 14px !important; }
  .map-discover-cta a {
    font-size: 11px !important; } }

.single-discover {
  background: #fff; }
  .single-discover .hero {
    position: relative;
    padding: 230px 0 120px 0; }

.discover-hero {
  overflow: visible;
  position: relative; }
  .discover-hero .max-width {
    position: relative;
    text-align: left; }
    @media (min-width: 1440px) {
      .discover-hero .max-width {
        padding-left: 90px; } }
    .discover-hero .max-width h1 {
      padding: 0; }
    .discover-hero .max-width p {
      text-align: left;
      margin: 0;
      max-width: 100%;
      padding: 0; }
    .discover-hero .max-width a {
      font-family: 'Roboto', sans-serif;
      color: #fff;
      text-decoration: none;
      margin-bottom: 50px;
      display: inline-block; }
      .discover-hero .max-width a img {
        position: relative;
        top: 4px;
        margin-right: 10px;
        -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
        -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
        -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
        transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s; }
      .discover-hero .max-width a:hover img {
        margin-right: 6px;
        -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
        -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
        -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
        transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s; }

.discover-headers {
  top: -50px;
  margin-bottom: 50px;
  background: #fff; }
  .discover-headers .max-width {
    border-bottom: 1px solid #eaeaea; }
  .discover-headers .grid--full {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative; }
    .discover-headers .grid--full .grid__item {
      padding: 35px 20px; }
      .discover-headers .grid--full .grid__item p {
        margin: 0;
        font-weight: 600;
        text-transform: uppercase; }
    .discover-headers .grid--full .discover-tab {
      position: relative;
      cursor: pointer;
      color: #000;
      text-decoration: none; }
      .discover-headers .grid--full .discover-tab:after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 0px;
        background: #f3b520;
        -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
        -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
        -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
        transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s; }

.active-discover {
  position: relative; }
  .active-discover:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    background: #f3b520;
    height: 5px !important;
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
    -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s; }

#discover-living {
  margin-bottom: 70px; }
  #discover-living img {
    width: 100%; }
  #discover-living .grid__item {
    margin-bottom: 24px; }
  #discover-living .living-copy {
    margin-bottom: 48px;
    padding-left: 24px; }
  #discover-living .sproutling-a {
    overflow: hidden; }
    #discover-living .sproutling-a img {
      width: 101%; }
  #discover-living .sproutling-b {
    overflow: hidden; }
    #discover-living .sproutling-b img {
      height: 100%;
      width: auto; }

#discover-travel {
  margin-bottom: 70px; }
  #discover-travel h3 {
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'roboto', sans-serif;
    margin-bottom: 50px; }
    #discover-travel h3 .dd {
      position: relative; }
      #discover-travel h3 .dd:after {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        right: 5px;
        top: 7px;
        background: url(../../img/icon/yellow-dd.png) center center no-repeat;
        background-size: 100%; }
      #discover-travel h3 .dd select {
        height: 49px;
        font-size: 1em;
        border: 0;
        border-bottom: 2px solid #f3b520;
        -webkit-appearance: none;
        border-radius: 0;
        background: none;
        position: relative;
        text-transform: uppercase;
        color: #f3b520;
        padding-right: 35px; }
  #discover-travel .stat-single {
    padding-left: 24px;
    position: relative; }
    #discover-travel .stat-single:nth-child(1) .stat-img img {
      margin-top: -20px;
      margin-left: 0px;
      width: 90px; }
    #discover-travel .stat-single:nth-child(2) .stat-img img {
      margin-top: -22px;
      width: 100px;
      margin-left: -15px; }
    #discover-travel .stat-single:nth-child(3) .stat-img img {
      margin-top: -16px;
      width: 85px; }
    #discover-travel .stat-single:nth-child(4) .stat-img img {
      margin-top: -22px;
      width: 95px;
      margin-left: -10px; }
    #discover-travel .stat-single .inner {
      border-bottom: 0.5px solid #d8d8d8;
      padding: 40px 0; }
    #discover-travel .stat-single .stat-img {
      text-align: center;
      height: 45px; }
    #discover-travel .stat-single .travel-name {
      font-size: 21px;
      text-transform: uppercase;
      font-weight: 700;
      padding-top: 25px;
      line-height: 0;
      margin: 0;
      padding-left: 15%; }
      @media (max-width: 768px) {
        #discover-travel .stat-single .travel-name {
          position: absolute;
          bottom: 60px;
          left: 0px;
          right: 0px;
          width: 100%; } }
    #discover-travel .stat-single .one-half, #discover-travel .stat-single .two-quarters, #discover-travel .stat-single .three-sixths, #discover-travel .stat-single .four-eighths, #discover-travel .stat-single .five-tenths, #discover-travel .stat-single .six-twelfths {
      text-align: right;
      padding-right: 40px;
      margin-top: -15px; }
      #discover-travel .stat-single .one-half .travel-time, #discover-travel .stat-single .two-quarters .travel-time, #discover-travel .stat-single .three-sixths .travel-time, #discover-travel .stat-single .four-eighths .travel-time, #discover-travel .stat-single .five-tenths .travel-time, #discover-travel .stat-single .six-twelfths .travel-time {
        font-size: 50px;
        margin: 0;
        line-height: 1;
        font-weight: 100; }
      #discover-travel .stat-single .one-half a, #discover-travel .stat-single .two-quarters a, #discover-travel .stat-single .three-sixths a, #discover-travel .stat-single .four-eighths a, #discover-travel .stat-single .five-tenths a, #discover-travel .stat-single .six-twelfths a {
        text-decoration: none;
        color: #000;
        text-transform: uppercase;
        font-weight: 700;
        font-family: 'roboto', sans-serif;
        font-size: 16px;
        margin-top: 5px;
        display: inline-block; }

#discover-property {
  background: #ececec;
  padding: 40px 60px;
  margin-bottom: 50px; }

.discover-title {
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'roboto', sans-serif;
  margin-bottom: 35px; }

.owners {
  padding: 24px 0; }

.tenants-intro {
  margin-bottom: 24px; }
  .tenants-intro .tenants-intro-text {
    padding: 60px !important;
    background: #fff; }
    @media (max-width: 768px) {
      .tenants-intro .tenants-intro-text {
        padding: 30px !important; } }
  .tenants-intro .owners-intro-img {
    background: url(../../img/bitmap/owners-image.jpg) left center no-repeat;
    background-size: cover; }
    @media (max-width: 768px) {
      .tenants-intro .owners-intro-img {
        height: 250px !important; } }

.sell-buy-module {
  margin-bottom: 24px; }
  @media (max-width: 768px) {
    .sell-buy-module .grid__item:nth-child(1) {
      margin-bottom: 24px; } }
  .sell-buy-module .grid__item .inner {
    background: #F3B520;
    padding: 60px !important; }
    @media (max-width: 768px) {
      .sell-buy-module .grid__item .inner {
        padding: 30px !important; } }
    .sell-buy-module .grid__item .inner hr {
      background: #fff; }
    .sell-buy-module .grid__item .inner h3 span {
      color: #fff; }
    .sell-buy-module .grid__item .inner a {
      color: #f3b520;
      background: #000; }

.property-latest {
  height: 150px;
  margin-bottom: 24px; }
  .property-latest .inner {
    width: 100%;
    height: 100%;
    background: #F3B520;
    display: table; }
    .property-latest .inner h2 {
      display: table-cell;
      text-align: center;
      vertical-align: middle;
      font-size: 35px;
      line-height: 1.1; }
      .property-latest .inner h2 span {
        color: #fff; }

.tenants {
  padding: 24px 0; }

.faulty-report {
  overflow: hidden;
  margin-bottom: 24px; }
  .faulty-report .inner {
    padding: 60px;
    background: url(../../img/bitmap/faulty-bg.png) #F3B520 center center repeat;
    background-size: 200px;
    background-repeat: space; }
    @media (max-width: 768px) {
      .faulty-report .inner {
        padding: 30px !important; } }
    .faulty-report .inner h3, .faulty-report .inner p {
      color: #fff; }
    .faulty-report .inner a {
      background: #000;
      color: #F3B520;
      width: auto; }

.tenants-intro-img {
  background: url(../../img/bitmap/owners.png) left center no-repeat;
  background-size: cover; }
  @media (max-width: 768px) {
    .tenants-intro-img {
      height: 250px !important; } }

.page-template-templateblog-php .container {
  overflow: hidden; }

.page-template-templateblog-php .hero {
  height: 575px;
  padding: 0;
  background: none;
  position: relative;
  padding: 0 !important; }
  .page-template-templateblog-php .hero .grad-top {
    height: 100% !important;
    z-index: 9; }
  .page-template-templateblog-php .hero h2 {
    text-transform: none; }

.avatar-default {
  height: 50px;
  width: 50px !important;
  text-align: center;
  border-radius: 50px;
  margin: 30px auto 0 auto;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2); }

.wpsdc-drop-cap {
  float: left;
  padding: 0.25em 0.15em 0.25em 0;
  font-size: 6em;
  line-height: 0.4em;
  color: #F3B520; }

.blog-pagination-btn {
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  width: auto; }

.blog-pagination-prev {
  margin-left: 24px; }

.blog-pagination-next {
  float: right; }

#blog-header {
  height: 575px; }
  #blog-header .owl-item {
    height: 565px; }
    #blog-header .owl-item .blog-header-slide {
      height: 575px; }
      #blog-header .owl-item .blog-header-slide .table-wrap {
        display: flex; }
        #blog-header .owl-item .blog-header-slide .table-wrap .hero-content {
          display: block;
          align-self: center;
          position: relative;
          z-index: 99;
          padding-top: 50px; }
          #blog-header .owl-item .blog-header-slide .table-wrap .hero-content h2 {
            color: #fff;
            text-decoration: none;
            width: 100%;
            padding: 0%;
            font-size: 3em;
            line-height: 1.1;
            margin: 0; }
            @media (max-width: 768px) {
              #blog-header .owl-item .blog-header-slide .table-wrap .hero-content h2 {
                padding: 0 10px;
                font-size: 2em; } }
          #blog-header .owl-item .blog-header-slide .table-wrap .hero-content .avatar-default {
            margin: 0 auto; }
          #blog-header .owl-item .blog-header-slide .table-wrap .hero-content p {
            color: #fff;
            font-size: 21px;
            font-weight: 700;
            max-width: 750px;
            padding: 0 24px;
            margin: 0 auto 0px auto;
            line-height: 1.5;
            font-size: 18px; }
          #blog-header .owl-item .blog-header-slide .table-wrap .hero-content a {
            margin: 0 10px 0 0;
            text-decoration: none; }
          #blog-header .owl-item .blog-header-slide .table-wrap .hero-content .btn {
            width: 175px;
            margin-top: 30px; }
  #blog-header .owl-stage-outer {
    height: 585px !important; }

.single-format-standard .hero .hero-content h1 {
  font-size: 60px; }

.single-format-standard .hero .hero-content p {
  margin: 0 auto;
  font-size: 18px; }

.blog-overview {
  padding: 24px 0; }

.blog-overview-sm {
  height: auto;
  padding: 0; }
  .blog-overview-sm .inner {
    background: #fff;
    padding-left: 0px; }
  .blog-overview-sm img {
    width: 100%;
    height: auto;
    margin-bottom: -3px; }

.blog-post-single .inner {
  height: 500px;
  margin-bottom: 24px;
  background: #fff;
  position: relative; }
  @media (max-width: 768px) {
    .blog-post-single .inner {
      height: auto; } }
  .blog-post-single .inner a {
    text-decoration: none; }
  .blog-post-single .inner img {
    width: 100%;
    height: auto; }
  .blog-post-single .inner h4 {
    padding: 20px 30px 0;
    text-decoration: none;
    color: #000;
    text-transform: none; }
  .blog-post-single .inner p {
    padding: 0 30px; }
  .blog-post-single .inner .btn-view {
    position: absolute;
    bottom: 0;
    left: 0; }
    @media (max-width: 768px) {
      .blog-post-single .inner .btn-view {
        position: relative;
        bottom: 0;
        margin-top: 30px; } }

.blog-upper .three-quarters, .blog-upper .six-eighths, .blog-upper .nine-twelfths {
  padding-right: 24px; }

.blog-upper .desk--one-quarter .grid__item, .blog-upper .desk--two-eighths .grid__item, .blog-upper .desk--three-twelfths .grid__item {
  text-align: center; }
  .blog-upper .desk--one-quarter .grid__item h5, .blog-upper .desk--two-eighths .grid__item h5, .blog-upper .desk--three-twelfths .grid__item h5 {
    padding: 82px 0 0;
    color: grey; }

.blog-overview-sm {
  padding-left: 24px; }

.ssba:nth-child(3) {
  display: none; }

.blog-single-content {
  padding: 40px 20px;
  position: relative; }
  .blog-single-content img {
    width: 100%;
    height: auto;
    margin-top: 10px; }
  .blog-single-content blockquote, .blog-single-content q {
    quotes: none;
    padding: 0 0 0 25px;
    border-left: 7px solid #f3b520;
    font-style: italic;
    font-size: 1.5em;
    font-weight: 300;
    margin: 40px 0; }
  .blog-single-content a {
    color: #F3B520; }
  .blog-single-content ul {
    padding: 24px 0 24px 24px; }
    .blog-single-content ul li {
      font-family: Roboto,sans-serif;
      margin: 10px 0;
      list-style-type: disc; }
  .blog-single-content ol {
    padding: 24px 0 24px 24px; }
    .blog-single-content ol li {
      font-family: Roboto,sans-serif;
      margin: 10px 0;
      list-style-type: decimal; }
  .blog-single-content h1 {
    font-family: geoSlab;
    font-size: 50px;
    margin-bottom: 20px;
    text-transform: none; }
  .blog-single-content h2 {
    font-family: geoSlab;
    font-size: 35px;
    margin-bottom: 20px;
    text-transform: none; }
  .blog-single-content h3 {
    font-family: geoSlab;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: none; }
  .blog-single-content h4 {
    font-family: geoSlab;
    font-size: 23px;
    margin-bottom: 20px;
    text-transform: none; }
  .blog-single-content h5 {
    font-family: geoSlab;
    font-size: 23px;
    margin-bottom: 20px;
    text-transform: none; }
  .blog-single-content h6 {
    font-family: geoSlab;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: none; }

.back-to-posts {
  background: #fff;
  display: block;
  padding: 30px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  color: #F3B520;
  text-decoration: none;
  font-weight: 600;
  margin-top: 40px;
  top: 0px;
  position: relative;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .back-to-posts:hover {
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
    top: -5px;
    position: relative;
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
    -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s; }

.tags {
  color: grey;
  font-size: 13px;
  font-style: italic; }
  .tags a {
    color: grey; }

.hover {
  top: 0px;
  position: relative;
  -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
  -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
  -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
  transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s; }
  .hover:hover {
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
    top: -5px;
    position: relative;
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
    -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s; }
    @media (max-width: 768px) {
      .hover:hover {
        box-shadow: 0px 0px 0px transparent;
        top: 0;
        position: relative;
        -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
        -moz-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
        -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
        transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s; } }

.hero-content header h1 {
  padding: 0 1em;
  text-transform: none; }
  @media (max-width: 768px) {
    .hero-content header h1 {
      font-size: 35px !important;
      padding: 0 1em;
      text-transform: none; } }
  @media (min-width: 769px) and (max-width: 1024px) {
    .hero-content header h1 {
      font-size: 45px !important;
      padding: 0 1em;
      text-transform: none; } }
  @media (min-width: 1025px) and (max-width: 1439px) {
    .hero-content header h1 {
      font-size: 55px !important;
      padding: 0 1em;
      text-transform: none; } }

.owl-dots {
  width: 100vw;
  position: absolute;
  bottom: 20px;
  padding-right: 15px; }

.about {
  padding: 24px 0; }
  .about .text-center hr {
    margin: 30px auto; }
  .about .about-reason {
    margin-bottom: 24px; }
    .about .about-reason h3 {
      font-family: geoSlab;
      font-size: 28px;
      margin-bottom: 20px;
      text-transform: none;
      line-height: 1.2; }
  .about .module-padding {
    background: #fff; }
  .about .about-img-1 .inner {
    height: 100%;
    background: url(../../img/bitmap/love-work.jpg) top center no-repeat;
    background-size: cover; }
  .about .about-img-2 .inner {
    height: 100%;
    background: url(../../img/bitmap/reason-img-2.jpg) bottom center no-repeat;
    background-size: cover; }
  .about .about-img-3 .inner {
    height: 100%;
    background: url(../../img/bitmap/reason-img-3.jpg) center center no-repeat;
    background-size: cover; }
  .about .about-img-4 .inner {
    height: 100%;
    background: url(../../img/bitmap/reason-img-4.jpg) center center no-repeat;
    background-size: cover; }
  .about .about-img-5 .inner {
    height: 100%;
    background: url(../../img/bitmap/reason-img-5.jpg) center center no-repeat;
    background-size: cover; }
  .about .about-img-6 .inner {
    height: 100%;
    background: url(../../img/bitmap/reason-img-6.jpg) center center no-repeat;
    background-size: cover; }
  .about .about-img-8 .inner {
    height: 100%;
    background: url(../../img/bitmap/facebook-sq.png) #3d5b96 center center no-repeat;
    background-size: 70%; }
  .about .about-img-9 .inner {
    height: 100%;
    background: url(../../img/bitmap/twitter-sq.png) #2aa2ef center center no-repeat;
    background-size: 70%; }
  .about .about-img-11 .inner {
    height: 100%;
    background: url(../../img/bitmap/instagram-sq.png) #d53a77 center center no-repeat;
    background-size: 70%; }
  .about .about-img-12 .inner {
    height: 100%;
    background: url(../../img/bitmap/canal.jpg) center center no-repeat;
    background-size: cover; }
  .about .about-img-13 .inner {
    height: 100%;
    background: url(../../img/bitmap/facade-angle.jpg) top center no-repeat;
    background-size: cover; }

.about-reason-1 .sproutling-a .inner {
  background: url(../../img/bitmap/about-1.png) #fff center bottom no-repeat;
  background-size: 100%;
  background-position-y: 75px; }

.about-reason-2 .sproutling-a .inner {
  background: url(../../img/bitmap/about-2.png) #fff center bottom no-repeat;
  background-size: 100%; }

.about-reason-3 .sproutling-a .inner {
  background: url(../../img/bitmap/about-3.png) #fff center bottom no-repeat;
  background-size: 100%; }

.about-reason-4 .sproutling-a .inner {
  background: url(../../img/bitmap/about-4.png) #fff center bottom no-repeat;
  background-size: 100%; }

.about-reason-5 .sproutling-a .inner {
  background: url(../../img/bitmap/about-5.png) #fff center bottom no-repeat;
  background-size: 100%; }

@media (max-width: 768px) {
  .about-sm {
    margin-bottom: 24px; } }

.about-sm .grid__item img {
  width: 100%; }

.contact {
  padding: 24px 0; }
  .contact .text-center hr {
    margin: 30px auto; }
  .contact .contact-form {
    background: #fff;
    width: 100%;
    padding: 40px 0; }
    .contact .contact-form input {
      -webkit-appearance: none;
      border: 1px solid #ccc; }
    .contact .contact-form .wpcf7-submit {
      border: 0; }
    @media (max-width: 768px) {
      .contact .contact-form {
        padding: 40px 20px; } }
    .contact .contact-form .grid__item {
      width: 48%;
      text-align: left; }
      @media (max-width: 768px) {
        .contact .contact-form .grid__item {
          width: 100%; } }
      .contact .contact-form .grid__item label {
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
        font-size: 14px; }
      .contact .contact-form .grid__item input {
        height: 45px;
        width: 100%;
        margin-top: 5px;
        padding: 0 10px;
        font-size: 1em; }
      .contact .contact-form .grid__item textarea {
        width: 100%;
        height: 225px;
        border: 1px solid #cccccc;
        margin-top: 5px;
        padding: 10px;
        font-size: 1em;
        -webkit-appearance: none;
        resize: none; }
  .contact iframe {
    width: 100%; }

.wpcf7-submit {
  padding: 20px !important;
  height: auto !important;
  border: 0; }

#title_form .Title .wpcf7-select {
  width: 100%;
  height: 49px;
  font-size: 1em;
  border: 0;
  border-bottom: 2px solid #f3b520;
  -webkit-appearance: none;
  border-radius: 0;
  background: none;
  position: relative; }

.Title:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: url(../../img/icon/drop-down.png) center center no-repeat;
  background-size: 100%;
  right: 10px;
  top: 0; }

select::-ms-expand {
  display: none; }

@media print {
  header nav, footer {
    display: none; }
  img {
    max-width: 500px; }
  @page {
    margin: 0cm;
    size: A4; }
  .property-header {
    padding: 80px 0 0 0; }
    .property-header:after {
      content: "Call: 0121 633 0744";
      position: absolute;
      right: 100px;
      top: 80px;
      text-align: right;
      width: 500px;
      height: 300px;
      font-family: Roboto; }
    .property-header a {
      display: none; }
  .propery-body {
    position: fixed;
    top: 350px !important;
    width: 100%; }
  .tabs {
    display: none; }
  .property-action {
    display: none; } }

footer {
  position: relative;
  background: #000;
  padding: 30px 0 0 0;
  overflow: hidden; }
  footer .footer-places-logo {
    bottom: 40px;
    position: absolute; }
  footer .max-width {
    position: relative;
    height: 500px; }
    footer .max-width .grid--full {
      position: relative;
      z-index: 1; }
    footer .max-width .menu {
      display: block !important; }
      @media (max-width: 768px) {
        footer .max-width .menu li {
          display: block;
          padding: 0; } }
    footer .max-width li {
      display: inline;
      padding: 10px 20px 10px 0px; }
      @media (max-width: 768px) {
        footer .max-width li {
          display: block;
          padding: 0; } }
      footer .max-width li a {
        color: #fff;
        text-decoration: none;
        margin: 10px 0;
        display: inline-block;
        font-weight: 600; }
    footer .max-width .header-SM-single {
      height: 20px;
      width: auto;
      margin: 20px 10px 0 0; }
    footer .max-width .footer-bg {
      position: absolute;
      right: 0;
      bottom: 0;
      height: 450px;
      width: 100%;
      text-align: right;
      z-index: 0; }
      footer .max-width .footer-bg img {
        width: auto;
        height: 450px; }
        @media (max-width: 768px) {
          footer .max-width .footer-bg img {
            display: none; } }
  footer .current-menu-item:after {
    content: "";
    height: 0px;
    width: 0%; }

/* OWNERS CHANGES */

.bg-grey {
  background: #F7F7F7;
}

.bg-white {
  background: white;
}

.grey-section { 
  padding-top: 60px;
  padding-bottom: 60px; 
  margin-bottom: 60px; 
  background: #F7F7F7;
}

.grey-section ul li {
  line-height: 30px;
  border-bottom: 2px solid #DFDFDF;
  padding-bottom: 10px;
  padding-top: 10px;
}

.grey-section ul li.tick:before {
  content: '\f058';
  /* font-size: 32px; */
  color: #f3b520;
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  padding-right: 10px;
  font-size: 22px;
}

.grey-section ul li.cross:before {
  content: '\f057';
  /* font-size: 32px; */
  color: #B8B8B8;
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  padding-right: 10px;
  font-size: 22px;
}

#managed, #tenantFind {
  display: none;
  margin-top: 140px;
}
#letTab, #sellTab {
  display: none;
}
.show-el {
  display: block !important;
}

.btn-new {
  background: #DCDCDC;
  padding: 30px;
  display: block;
  width: 50%;
  float: left;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-size: 23px;
  color: #999999;
  border-bottom: 5px solid #DCDCDC
}

.btn-new.active {
  background: #f3b520;
  color: black;
  border-bottom: 5px solid black
}

.btn-wrapper-list {
  width: 75%;
  margin: auto;
}

.owners-btn {
  background: black;
  color: #f3b520;
}

.owners-btn.active {
  background: #f3b520;
  color: black;
}

.owners-tabs ul {
  list-style: circle;
  margin-left: 20px;
  margin-bottom: 20px;
}

.owners-tabs ul li {
  line-height: 30px;
}

@media (max-width: 768px) {
  .hide-small {
    display: none;
  }
  .owners-btn {
    margin-bottom: 10px;
  }
  .btn-new{
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .offset-buttons {
    margin-top: -70px; margin-bottom: 80px;
  }
  
}