/* placeholder colors */
form input::-webkit-input-placeholder {
  color: #000;
}

form input:-moz-placeholder {
  color: #000;
}

form input::-ms-input-placeholder {
  color: #000;
}

form input:-ms-input-placeholder {
  color: #000;
}

/* focus */
form input:focus::-webkit-input-placeholder {
  color: #000;
}

form input:focus:-moz-placeholder {
  color: #000;
}

form input:focus::-ms-input-placeholder {
  color: #000;
}

form input:focus:-ms-input-placeholder {
  color: #000;
}

/* mixins */
.no-overflow {
  overflow: hidden;
}

.right {
  float: right;
}

.hide {
  display: none;
}

/* Wobble Vertical */
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes hvr-wobble-vertical2 {
  8.32% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  16.6% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  25% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  33.4% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  41.75% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hvr-wobble-vertical2 {
  8.32% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  16.6% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  25% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  33.4% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  41.75% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.hvr-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-wobble-vertical:hover,
.hvr-wobble-vertical:focus,
.hvr-wobble-vertical:active {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.bounce {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.bounce-repeat {
  -webkit-animation-name: hvr-wobble-vertical2;
  animation-name: hvr-wobble-vertical2;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

/* Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Wobble Horizontal */
@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.hvr-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-wobble-horizontal:hover, .hvr-wobble-horizontal:focus, .hvr-wobble-horizontal:active {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Pulse Grow */
@-webkit-keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.hvr-pulse-grow,
.hover_pulse,
.hover_pulse2 {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-pulse-grow:hover, .hvr-pulse-grow:focus, .hvr-pulse-grow:active, .hover_pulse.active {
  -webkit-animation-name: hvr-pulse-grow;
          animation-name: hvr-pulse-grow;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.hover_pulse2.active {
  -webkit-animation-iteration-count: 4;
          animation-iteration-count: 4;
}

/* Pulse */
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.overlay-scale {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  -webkit-transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
}

.overlay-scale.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

/* Pulse */
@-webkit-keyframes cont-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes cont-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.pulse {
  -webkit-animation-name: cont-pulse;
  animation-name: cont-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Rotate */
.hvr-rotate,
.hvr-rotate2 {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.hvr-rotate:hover {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hvr-rotate2 {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
          transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hvr-rotate2.active {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.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: 0.75s;
  animation-duration: 0.75s;
}

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

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

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

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

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

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

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

/* Grouping content
   ========================================================================== */
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

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

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

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

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

* {
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background: #4e7079;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
}

.clear--left {
  clear: left;
}

/*
img {
	width: 100%;
	vertical-align: middle;
}
*/
body {
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-size: 51px;
}

h3 {
  font-size: 4em;
}

p {
  color: #000;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.4;
  margin-bottom: 10px;
}
p strong {
  font-weight: 600;
}
@media only screen and (min-width: 1024px) {
  p {
    font-size: 17px;
  }
}

ul li {
  letter-spacing: 1px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider * {
  outline: none;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.fancybox-button {
  background: #fff;
  color: #000;
}
.fancybox-button:hover {
  background: #000;
  color: #fff;
}

.fancybox-slide {
  padding: 44px 0;
}
@media only screen and (min-width: 768px) {
  .fancybox-slide {
    padding: 44px;
  }
}

section {
  clear: both;
}
section#space {
  padding-top: 70px;
}
section .inner {
  margin: 0 auto;
  text-align: center;
}
section .inner figure {
  margin-bottom: 25px;
}
section .inner figcaption {
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 1.4;
}
section .inner figcaption span {
  display: block;
}
section ul {
  display: inline-block;
  margin-bottom: 30px;
  margin-top: 10px;
  width: 100%;
}
section ul li {
  font-size: 3em;
  margin-bottom: 5px;
}

.scrolling .header {
  margin-bottom: 70px;
}

@media only screen and (min-width: 768px) {
  section {
    clear: both;
  }
  section .inner figcaption span {
    display: inline;
  }
}
@media only screen and (min-width: 1024px) {
  section ul {
    margin-top: 0px;
  }
  section ul li {
    font-size: 4em;
  }
}
header {
  display: inline-block;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 620px;
  position: relative;
  width: 100%;
  z-index: 9999;
}
header .header__content {
  margin: 0 auto;
  padding: 0;
  padding-bottom: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 95%;
}
header h1 {
  background: url(/images/SVG/98_Theobalds_rd_logo.svg) 0 0 no-repeat;
  background-size: 100% auto;
  height: 224.42px;
  margin: 80px auto 90px;
  width: 186.93px;
  color: transparent;
  font: 0/0 a;
}
@media only screen and (min-width: 1200px) {
  header h1 {
    height: 330.35px;
    width: 275.17px;
  }
}
header p {
  color: white;
  height: 200px;
  margin: 30px auto;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
@media only screen and (min-width: 375px) {
  header p {
    bottom: 13px;
  }
}
@media only screen and (min-width: 1200px) {
  header p {
    height: 120px;
    font-size: 34px;
  }
}
header .scroll-down {
  background: url(/images/SVG/Down_arrow.svg) 0 0 no-repeat;
  background-size: 100% auto;
  height: 39px;
  position: absolute;
  width: 32px;
  bottom: 43px;
  left: 50%;
  margin-left: -16px;
}
@media only screen and (min-width: 1200px) {
  header .scroll-down {
    bottom: 80px;
  }
}

.desktop-only {
  display: none;
}
@media only screen and (min-width: 640px) {
  .desktop-only {
    display: block;
  }
}

footer {
  clear: both;
  padding: 70px 0;
  position: relative;
  text-align: center;
}
footer p {
  color: #fff;
  clear: both;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
  margin: 0 auto 10px;
  max-width: 1390px;
  padding: 0 40px;
  width: 100%;
}
footer p a {
  color: #fff;
  text-decoration: none;
}
footer p a:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 1024px) {
  footer {
    padding: 80px 0;
  }
}
.button--download {
  background: url(../images/SVGs/6-floor-symbol.svg) center top/85px auto no-repeat;
  color: #000;
  display: inline-block;
  font-size: 17px;
  margin-bottom: 50px;
  padding: 125px 0px 60px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.button--download:hover {
  color: #3A5149;
}
.button--download:after {
  content: "";
  background: url(../images/SVGs/Arrow.svg) 0 0 no-repeat;
  background-size: 100% auto;
  bottom: 0px;
  height: 26.6px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 49.3px;
}

.download {
  background-size: 60px auto;
  background-position: center top;
  background-repeat: no-repeat;
  display: inline-block;
  padding-top: 90px;
  max-width: 475px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .download {
    background-size: 80px auto;
    padding-top: 130px;
  }
}
.download:hover p {
  color: #E38472;
}
.download p {
  border-top: 1px solid #E38472;
  padding-top: 10px !important;
  display: inline-block;
  font-weight: 600;
}
@media only screen and (min-width: 1024px) {
  .download p {
    padding-top: 20px !important;
  }
}

.download--pdf {
  background-image: url(../images/new/SVGs/PDF_ICON.svg);
}

.download--dwg {
  background-image: url(../images/new/SVGs/DWG_ICON.svg);
}

.mobile {
  display: block;
}

.desktop {
  display: none;
}

.content__text__featured {
  margin: 0 0 50px 0;
}

.content__links {
  line-height: 1.2;
  text-align: center;
  width: 100%;
}
.content__links a {
  color: #000;
  font-size: 40px;
  text-decoration: none;
}

.intro {
  margin: 0 auto 40px;
  max-width: 536px;
  padding: 0 10px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .intro {
    margin-bottom: 70px;
    padding: 0 20px;
  }
}
.intro p {
  padding: 0 10px;
}
@media only screen and (min-width: 1024px) {
  .intro p {
    padding: 0px;
  }
}

.terms {
  margin-bottom: 10px;
}
.terms p {
  font-size: 16px;
  margin-bottom: 20px;
}
.terms p span {
  color: #3A5149;
}

.content__cutting-edge {
  padding: 50px 40px;
}

.content--center {
  text-align: center;
}
.content--center p a {
  color: #000;
  text-decoration: none;
}

.content__contact {
  margin-bottom: 30px;
  margin-top: 20px;
  width: 250px;
}

.content__logo {
  margin: 0 auto;
}

.content__logo--1 {
  margin-top: 3px;
  width: 187px;
}
@media only screen and (min-width: 1024px) {
  .content__logo--1 {
    width: 283px;
  }
}

.content__logo--2 {
  margin-top: 3px;
  width: 125px;
}

.content__cols--50 {
  width: 100%;
  margin-bottom: 70px;
}

.content__cols--100 {
  margin-bottom: 30px;
  padding-top: 20px;
  position: relative;
}

.contact__details {
  max-width: 1600px;
  margin: 0 auto 50px;
}
.contact__details p {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 70px;
  padding: 0;
  max-width: 270px;
}
.contact__details p a {
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  .contact__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contact__details p {
    border-top: 2px solid #fff;
    padding-top: 22px;
  }
}

.logo-border {
  display: inline-block;
  max-width: 475px;
  padding-bottom: 70px;
  width: 100%;
}

.addresses {
  padding: 0 20px;
}

@media only screen and (min-width: 375px) {
  .content__cutting-edge h2 {
    height: 93px;
    width: 300px;
  }
  .content__tour {
    height: 38px;
    width: 300px;
  }
  .content__download {
    height: 93px;
    width: 250px;
  }
}
@media only screen and (min-width: 768px) {
  .margin--top--50-m {
    margin-bottom: 50px;
  }
  .content__contact {
    height: 125px;
    margin-bottom: 60px;
    width: 100%;
  }
  .content__cols--50 {
    display: inline-block;
    float: none;
    width: 540px;
  }
  .addresses {
    width: 100%;
    text-align: center;
    overflow: hidden;
  }
  .content__cutting-edge {
    padding: 100px 40px;
  }
  .content__cutting-edge h2 {
    height: 93px;
    margin-bottom: 50px;
    width: 412px;
  }
  .content__tour {
    height: 38px;
    margin-bottom: 70px;
    width: 402px;
  }
  .content__download {
    height: 93px;
    margin-bottom: 130px;
    width: 328px;
  }
  .addresses {
    padding: 0px;
  }
}
@media only screen and (min-width: 1024px) {
  .content__download {
    width: 310px;
  }
  .mobile {
    display: none;
  }
  .desktop {
    display: block;
  }
}
.map {
  max-width: 755px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .map {
    margin-bottom: 90px;
  }
}

.carousel__wrapper {
  position: relative;
}

.carousel {
  margin: 0px auto 80px auto;
  position: relative;
  max-width: 100%;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .carousel {
    margin: 0 auto;
  }
}
.carousel img {
  margin: 0 auto;
  width: 100%;
}
.carousel p {
  display: none;
}
.carousel .intro {
  padding: 0;
}
.carousel ul.slick-dots {
  bottom: -52px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.carousel ul.slick-dots li {
  display: inline-block;
  margin: 0 5px;
  width: 26px;
}
.carousel ul.slick-dots li button {
  background: #fff;
  border-radius: 0;
  border: none;
  display: block;
  height: 2px;
  opacity: 0.5;
  padding: 0px;
  width: 26px;
  color: transparent;
  font: 0/0 a;
}
.carousel ul.slick-dots li.slick-active button {
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .carousel ul.slick-dots li {
    width: 34px;
  }
  .carousel ul.slick-dots li button {
    height: 3px;
    width: 34.4px;
  }
}
@media only screen and (min-width: 768px) {
  .carousel ul.slick-dots {
    bottom: -11px;
  }
}

button.slick-arrow {
  display: none !important;
  border: none;
  cursor: pointer;
  position: absolute;
  color: transparent;
  font: 0/0 a;
  z-index: 9998;
  background: url(/images/SVG/Left_arrow_Carousel.svg) 0 0 no-repeat;
  background-size: 100% auto;
  bottom: 0px;
  height: 38.26px;
  width: 19.86px;
}
@media only screen and (min-width: 768px) {
  button.slick-arrow {
    display: block !important;
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
button.slick-arrow.slick-prev {
  left: 20px;
}
button.slick-arrow.slick-next {
  right: 20px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
button.slick-arrow.slick-disabled {
  cursor: default;
  opacity: 0.3;
  outline: none;
}

.carousel--desktop {
  display: none;
}

@media only screen and (min-width: 768px) {
  .carousel--desktop {
    display: block;
  }
  .carousel--mobile {
    display: none;
  }
}
.bar {
  background: #3f626b;
  height: 70px;
  left: 0px;
  opacity: 0;
  overflow: hidden;
  position: relative;
  top: -55px;
  top: 0px;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.bar.visible {
  opacity: 1;
  top: 0px;
  position: fixed;
}

.bar__logo {
  background: url(/images/SVG/98_Theobalds_logo_header.svg) 0 0 no-repeat;
  background-size: 100% auto;
  display: block;
  float: left;
  height: 50px;
  margin: 10px 0 0 30px;
  width: 203px;
  color: transparent;
  font: 0/0 a;
}

.nav--main {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 999999999;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav--main ul {
  text-align: center;
}
.nav--main ul li {
  margin: 30px 0;
}

.downloads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto 50px;
  max-width: 1200px;
  padding-top: 30px;
}
@media only screen and (min-width: 768px) {
  .downloads {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.title--download {
  background: url(/images/SVG/Download_Brochure.svg) center 0 no-repeat;
  display: inline-block;
  height: 98.03px;
  margin: 0px auto 70px;
  position: relative;
  width: 185.15px;
  color: transparent;
  font: 0/0 a;
}
@media only screen and (min-width: 1024px) {
  .title--download {
    height: 124px;
    width: 234px;
  }
}

.title--download-plans {
  background: url(/images/SVG/Download_Space_Plans.svg) center 0 no-repeat;
  display: inline-block;
  height: 98.03px;
  margin: 0px auto 70px;
  position: relative;
  width: 185.15px;
  color: transparent;
  font: 0/0 a;
}
@media only screen and (min-width: 1024px) {
  .title--download-plans {
    height: 124px;
    width: 234px;
  }
}

.btn-play-film {
  background: url(/images/SVG/Play_Film.svg) center 0 no-repeat;
  display: inline-block;
  height: 126.1px;
  margin: 0px auto 70px;
  position: relative;
  width: 121.67px;
  color: transparent;
  font: 0/0 a;
}
@media only screen and (min-width: 1024px) {
  .btn-play-film {
    height: 202.09px;
    width: 194.98px;
  }
}
/*# sourceMappingURL=main.css.map */