/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: Avenir, Arial, Helvetica, sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  background: #fff;
  margin: 0;
  overflow-x: hidden;
}

html, body {
  font-size: 16px;
  line-height: 1.2em;
  height: 100%;
  overflow-x: hidden;
}
@media only screen and (min-width: 770px) {
  html, body {
    font-size: 18px;
  }
}

/* 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 {
  splay: 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,
a:focus {
  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-family: Avenir, Arial, Helvetica, sans-serif;
  font-weight: 700;
}

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

/**
 * 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;
  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;
  width: 100%;
  height: auto;
}

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

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

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-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] {
  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 */
  -moz-box-sizing: content-box;
  -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;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0;
}

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

/*
    Don't get bigger than this
 */
header, main, footer {
  margin: 0 auto;
}

@media only screen and (min-width: 1440px) {
  .header-nav.stay {
    max-width: 1440px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
b,
a,
span,
label,
input,
textarea,
li {
  margin: 0;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: Avenir, Arial, Helvetica, sans-serif;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  line-height: 1.2em;
}

input:before,
select:before,
option:before {
  content: "";
  height: 56px;
  position: absolute;
  top: 56px;
  right: 20px;
  width: 20px;
}

* {
  position: relative;
}

form, button {
  margin: 0;
  padding: 0;
  border: 0;
}

.u-cf {
  clear: both;
  content: "";
  display: table;
}

@media only screen and (min-width: 1440px) {
  .u-br:before {
    content: "\a";
    white-space: pre;
  }
}

* {
  position: relative;
  line-height: 1.35em;
  outline: none;
}

main {
  font-size: 0;
}

a {
  color: inherit;
}

h1, h2 {
  font-family: Avenir, Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media only screen and (min-width: 770px) {
  h1, h2 {
    font-family: Avenir, Arial, Helvetica, sans-serif;
    font-size: 28px;
    line-height: 28px;
  }
}
h3 {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

p {
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 1.5em;
}
@media only screen and (min-width: 770px) {
  p {
    font-size: 18px;
  }
}

ul {
  list-style: disc;
}

ol {
  padding: 0.5rem 0;
}

.center {
  text-align: center;
}

.noscroll {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

.box-shadow {
  display: block;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  padding: 30px;
  width: calc(90% - 60px);
}

.website {
  margin: 0 !important;
}
.website * {
  height: 1px;
  width: 1px;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
}

.text {
  width: 95vw;
  margin: 0 auto;
}
@media only screen and (min-width: 770px) {
  .text {
    width: 50vw;
  }
}

.zoomin-cont, .zoominbg-cont {
  overflow: hidden;
}
.zoomin-cont img, .zoominbg-cont img {
  display: block;
  transition: transform 2s;
}
.zoomin-cont:hover img, .zoominbg-cont:hover img {
  transform: scale(1.15);
  transform-origin: 50% 50%;
}

.landscape {
  padding: 0;
  margin: 0 auto 60px;
  text-align: center;
}
.landscape-slider {
  margin-bottom: 30px;
}
.landscape h2 {
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
}
.landscape p {
  text-align: left;
}

.tiles {
  margin: 0 auto;
  text-align: center;
  padding: 30px 0 0;
}
@media only screen and (min-width: 770px) {
  .tiles {
    padding: 70px 0 20px;
    top: 0;
  }
}
.tiles .tile {
  display: inline-block;
  padding-bottom: 40px;
  text-align: left;
  vertical-align: top;
  width: calc(100% - 20px);
}
@media only screen and (min-width: 770px) {
  .tiles .tile {
    width: 40%;
    padding-bottom: 60px;
  }
  .tiles .tile:nth-of-type(2n+1) {
    padding-right: 15px;
  }
  .tiles .tile:nth-of-type(2n+2) {
    padding-left: 15px;
  }
}
.tiles .tile h2, .tiles .tile h3 {
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2em;
  padding: 15px 0 0 0;
}
@media only screen and (min-width: 770px) {
  .tiles .tile h2, .tiles .tile h3 {
    font-size: 14px;
    padding: 20px 0 0 0;
  }
}
.tiles .tile h3 {
  font-size: 18px;
  padding-top: 10px;
  padding-bottom: 5px;
}
@media only screen and (min-width: 770px) {
  .tiles .tile h3 {
    font-size: 28px;
    padding-top: 15px;
    padding-bottom: 10px;
  }
}
.tiles .tile .swiper-wrapper {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.tiles .tile .fadeout {
  max-height: 95px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.tiles .tile .fadeout .showall {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 30px 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.tiles .tile .fadeout .showall:before {
  content: " ";
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 28px;
  background: url('data:image/svg+xml;charset=UTF-8,<svg width="60" height="35" xmlns="http://www.w3.org/2000/svg"><path d="M42.6738282 2.1176065L22.6237054 24.8354589m-.0000012-4e-7L2.57837013 2.1176065" stroke="black" stroke-width="5" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="bevel"/></svg>') center bottom no-repeat;
  background-size: 100%;
  position: absolute;
  left: 50%;
  margin-left: -14px;
  bottom: 0;
  text-align: center;
}
.tiles .tile .fadeout.all {
  max-height: none;
  margin-bottom: 10px;
}
.tiles .tile .fadeout.all .showall {
  position: relative;
  background: none;
}
.tiles .tile .fadeout.all .showall:before {
  transform: rotate(180deg);
}

.textis {
  background: #F6F6F6;
  padding: 80px 0 20px;
}
@media only screen and (min-width: 770px) {
  .textis {
    padding: 70px 0 40px;
    top: 0;
  }
}
.textis h2 {
  font-weight: 600;
  margin: 0 auto 30px;
  text-align: center;
}
.textis a {
  font-size: 16px;
}
@media only screen and (min-width: 770px) {
  .textis a {
    font-size: 18px;
  }
}

.ig {
  padding: 0 0 50px 0;
}
.ig-grid {
  text-align: center;
}
.ig-row {
  vertical-align: baseline;
}
.ig-row :last-child {
  vertical-align: top;
}
.ig-item {
  transition: 2s;
  display: inline-block;
  height: 25vw;
  width: 25vw;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  margin-bottom: 20px;
  margin-right: 10px;
}
.ig-item:last-child {
  margin-right: 0;
  margin-left: 10px;
}
.ig-item:hover {
  background-size: 120% 120%;
}
.ig h2 {
  font-weight: 600;
  margin: 0 auto 30px;
  text-align: center;
}
.ig-grid {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}
.ig-grid a {
  display: inline-block;
  padding-bottom: 10px;
}
.ig-grid a figure {
  width: 300px;
  height: 300px;
  margin: 0 5px;
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: center center;
}
@media only screen and (min-width: 770px) {
  .ig-grid a figure {
    max-width: 250px;
    max-height: 250px;
  }
}
@media only screen and (min-width: 1170px) {
  .ig-grid a figure {
    width: 280px;
    height: 280px;
  }
}
.ig-grid a figure img {
  height: 100%;
}
@media only screen and (max-width: 769px) {
  .ig-grid.gsm1 a:nth-child(n+2) {
    display: none;
  }
  .ig-grid.gsm2 a:nth-child(n+3) {
    display: none;
  }
  .ig-grid.gsm3 a:nth-child(n+4) {
    display: none;
  }
  .ig-grid.gsm4 a:nth-child(n+5) {
    display: none;
  }
  .ig-grid.gsm5 a:nth-child(n+6) {
    display: none;
  }
  .ig-grid.gsm6 a:nth-child(n+7) {
    display: none;
  }
  .ig-grid.gsm7 a:nth-child(n+8) {
    display: none;
  }
  .ig-grid.gsm8 a:nth-child(n+9) {
    display: none;
  }
}

.hero {
  top: 48px;
  bottom: 0;
  right: 0;
  left: 0;
}
@media only screen and (min-width: 770px) {
  .hero {
    top: 0;
  }
}
@media only screen and (min-width: 1170px) {
  .hero-slider {
    padding: 0;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
}

.wrap {
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
  width: calc(100% - 20px);
}
@media only screen and (min-width: 770px) {
  .wrap {
    max-width: 770px;
  }
}
@media only screen and (min-width: 1170px) {
  .wrap {
    max-width: 1440px;
  }
}
.wrap.inside {
  max-width: 1170px;
}

.c50 {
  display: block;
}
.c50 figure {
  display: block;
  margin: 0 auto;
  width: 80%;
  vertical-align: bottom;
}
@media only screen and (min-width: 770px) {
  .c50 {
    padding: 100px 0;
    display: inline-block;
    vertical-align: middle;
    width: 49%;
  }
  .c50 figure {
    display: inline-block;
    width: 80%;
  }
  .c50.r {
    text-align: right;
  }
}
.c50.block {
  display: block;
  margin: 0 auto;
  padding: 50px 0;
}

.c30 {
  display: block;
  width: 300px;
}
@media only screen and (min-width: 770px) {
  .c30 {
    padding: 100px 0;
    display: inline-block;
    vertical-align: middle;
    width: 33%;
  }
  .c30 figure {
    display: inline-block;
  }
  .c30.r {
    text-align: right;
  }
}

.c60 {
  display: block;
}
@media only screen and (min-width: 770px) {
  .c60 {
    padding: 100px 0;
    display: inline-block;
    vertical-align: middle;
    width: 66%;
  }
  .c60 figure {
    display: inline-block;
  }
  .c60.r {
    text-align: right;
  }
}

.c66 {
  display: block;
  margin: 0 auto;
}
@media only screen and (min-width: 770px) {
  .c66 {
    padding: 30px 0;
    vertical-align: top;
    width: 50%;
  }
  .c66 figure {
    display: inline-block;
  }
}

header {
  background-color: #F6F6F6;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  color: #000;
  height: 48px;
  max-width: 100%;
  margin: 0 auto;
  vertical-align: middle;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5000;
}
@media only screen and (min-width: 770px) {
  header {
    height: 86px;
    padding-top: 10px;
  }
}
@media only screen and (min-width: 1170px) {
  header {
    padding-top: 20px;
  }
}
header ul {
  display: inline-block;
}
header a {
  text-decoration: none;
  display: inline-block;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
header .header-logo figure {
  display: inline-block;
  margin: 0 30px;
}
header .header-logo figure img {
  width: 155px;
  height: auto;
}
header .header-logo.mobile {
  top: 5px;
  left: 20px;
  width: 100px;
}
header .header-logo.mobile figure {
  top: 2px;
  display: inline-block;
  margin: 0;
  width: inherit;
}
header .header-logo.mobile figure img {
  width: auto;
  height: 35px;
}
@media only screen and (min-width: 769px) {
  header .header-logo.mobile {
    display: none;
  }
}
header .header-logo.medium {
  display: none;
  top: 5xp;
  left: 20px;
  width: 100px;
}
@media only screen and (min-width: 770px) {
  header .header-logo.medium {
    display: block;
    width: 155px;
  }
}
@media only screen and (min-width: 1169px) {
  header .header-logo.medium {
    display: none;
  }
}
header .header-logo.medium figure {
  top: 6px;
  display: inline-block;
  margin: 0;
  width: inherit;
}
header .header-logo.medium figure img {
  width: inherit;
  height: auto;
}
header .header-logo.desktop {
  display: none;
  top: unset;
  left: unset;
}
@media only screen and (min-width: 1170px) {
  header .header-logo.desktop {
    display: inline-block;
  }
  header .header-logo.desktop figure {
    display: inline-block;
    margin: 0 30px;
  }
  header .header-logo.desktop figure img {
    width: 198px;
    height: auto;
  }
}
header .header-nav {
  display: none;
}
@media only screen and (min-width: 1170px) {
  header .header-nav {
    display: block;
    font-size: inherit;
    width: auto;
    margin: 0 auto;
    text-align: center;
  }
  header .header-nav ul {
    padding: 0;
    margin: 0;
    top: -20px;
    /*li:hover ul, ul:hover {
      display: block;
      position: absolute;
      top: 40px;
      left: 0;
    }*/
  }
  header .header-nav ul li {
    display: inline-block;
    margin: 0 1vw;
    /*ul {
      display: none;
      list-style: none;
      background: $c-white;
      -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
      -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
      box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);

      margin: 0;
      padding: 20px;
      z-index: 2;
      width: 220px;

      li {
        display: block;
        margin: 0;
        line-height: 2em;
        padding: 0;
        margin: 3px 0;

        a {
          padding: 0 0 0 5px;
          display: block;
          &:hover {
            background: $c-bluegray50;
          }
        }
      }
    }*/
  }
  header .header-nav ul li.active a {
    border-bottom: 2px solid #37474F;
    height: 31px;
  }
  header .header-nav ul li.active ul li a {
    border: 0;
  }
  header .header-nav ul.contact {
    top: -8px;
  }
  header .header-nav ul.contact li {
    margin: 0;
  }
}
@media only screen and (min-width: 1440px) {
  header .header-nav ul li {
    margin: 0 2vw;
  }
}
header .header-meta {
  display: none;
}
@media only screen and (min-width: 1170px) {
  header .header-meta {
    display: block;
    float: right;
    font-size: inherit;
    top: calc(2rem - 12px);
  }
  header .header-meta a:last-child {
    font-size: 18px;
    line-height: unset;
    margin-left: 20px;
    padding: 10px 25px;
    width: auto;
  }
}
header .header-nav-mobile {
  display: none;
  background: #fff;
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  z-index: 100;
  padding-top: 30px;
  overflow: hidden;
  overflow-y: auto;
  margin: 0;
}
@media only screen and (min-width: 770px) {
  header .header-nav-mobile {
    top: 86px;
  }
}
header .header-nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}
header .header-nav-mobile ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .header-nav-mobile ul li a {
  font-size: 18px;
  padding: 0 0 0 10vw;
  line-height: 2em;
}
header .header-nav-mobile ul li ul {
  list-style: disc;
  margin: 0 0 0 10vw;
  padding: 0 0 0 10vw;
}
header .header-nav-mobile ul li ul li {
  list-style: disc;
  margin: 0;
  padding: 0;
}
header .header-nav-mobile ul li ul li a {
  padding: 0;
}
header .header-nav-mobile ul.contact {
  padding-left: 10vw;
}
header .header-nav-mobile ul.contact li {
  display: inline-block;
  margin: 0;
  padding-left: 0;
}
header .header-nav-mobile ul.contact li:first-child {
  margin-left: -20px;
}
header .header-nav-mobile ul.contact li a {
  padding: 0;
}
header .header-nav-mobile ul.contact li a svg {
  width: 75px;
  height: 75px;
}
header .header-nav-mobile-toggle {
  background: transparent;
  cursor: pointer;
  display: block;
  height: 50px;
  margin: 0;
  position: absolute;
  right: 0;
  top: 2px;
  width: 50px;
  z-index: 5;
  overflow: hidden;
  padding: 0;
  font-size: 0;
  text-indent: -9999px;
  box-shadow: none;
  border: none;
  transition: background 0.3s;
}
header .header-nav-mobile-toggle:focus {
  outline: none;
}
@media only screen and (min-width: 770px) {
  header .header-nav-mobile-toggle {
    top: 8px;
  }
}
@media only screen and (min-width: 1170px) {
  header .header-nav-mobile-toggle {
    display: none;
  }
}
header .header-nav-mobile-toggle span {
  background: #000;
  display: block;
  height: 2px;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 16px;
  width: 16px;
}
@media only screen and (min-width: 770px) {
  header .header-nav-mobile-toggle span {
    height: 3px;
    width: 20px;
  }
}
header .header-nav-mobile-toggle span:after, header .header-nav-mobile-toggle span:before {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  content: "";
}
@media only screen and (min-width: 770px) {
  header .header-nav-mobile-toggle span:after, header .header-nav-mobile-toggle span:before {
    height: 3px;
  }
}
header .header-nav-mobile-toggle span:after {
  top: 7px;
}
header .header-nav-mobile-toggle.on span {
  background: #fff;
  top: 12px;
}
header .header-nav-mobile-toggle.on span:before {
  top: 7px;
  transform: rotate(45deg);
}
header .header-nav-mobile-toggle.on span:after {
  bottom: -7px;
  transform: rotate(-45deg);
}
header .header-nav-mobile.on {
  display: block;
}
header .menu-wrap {
  position: relative;
}

.nav-main {
  position: absolute;
  top: 14px;
  left: 0;
}
.nav-main-languages {
  display: none;
}
@media only screen and (min-width: 770px) {
  .nav-main-languages {
    color: transparent;
    display: inline-block;
    width: 20px;
  }
  .nav-main-languages:before {
    background: url("/assets/img/globe.svg") 0 0;
    background-size: 16px;
    content: "";
    height: 16px;
    position: absolute;
    width: 16px;
  }
}
.nav-main-languages-item {
  display: block;
}
@media only screen and (min-width: 770px) {
  .nav-main-languages-item {
    display: none !important;
  }
}
.nav-footer {
  padding-top: 20px;
}
.nav-footer a {
  text-decoration: none;
}
.nav-footer a:hover {
  text-decoration: underline;
}
.nav-footer-languages {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 770px) {
  .nav-footer-languages {
    display: inline-block;
  }
}
.nav-footer-languages li {
  text-align: center;
}
@media only screen and (min-width: 770px) {
  .nav-footer-languages li {
    display: inline-block;
    margin-right: 15px;
    text-align: left;
  }
}
.nav-footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
@media only screen and (min-width: 770px) {
  .nav-footer-legal {
    display: inline-block;
    float: right;
  }
}
.nav-footer-legal li {
  text-align: center;
}
@media only screen and (min-width: 770px) {
  .nav-footer-legal li {
    display: inline-block;
    margin-left: 35px;
    text-align: right;
  }
}
.nav-footer-legal .twitter,
.nav-footer-legal .linkedin,
.nav-footer-legal .facebook,
.nav-footer-legal .xing {
  display: inline-block;
  height: auto;
  margin: 0 10px;
  text-align: center;
  vertical-align: middle;
  width: 15px;
}

.btn {
  transition: all 0.2s ease-out;
  cursor: pointer;
  border-radius: 0;
  display: block;
  font-size: 14px;
  font-family: Avenir, Arial, Helvetica, sans-serif;
  margin-bottom: 5px;
  text-align: center;
  text-decoration: none;
}
@media only screen and (min-width: 770px) {
  .btn {
    display: inline-block;
    font-size: 18px;
    padding: 0 20px;
  }
}
br + .btn {
  margin-top: 10px;
}

.ghostblack {
  border: 4px solid #000;
  background-color: transparent;
  color: #000;
  padding: 8px 14px;
  font-size: inherit;
  font-weight: 400;
}
.ghostblack:hover {
  background-color: #000;
  color: #fff;
}
@media only screen and (min-width: 1170px) {
  .ghostblack {
    border: 3px solid #000;
    padding: 5px 10px;
  }
}

.booking, .booking-mobile {
  transition: all 0.2s ease-out;
  background: none;
  background: none;
  border: 4px solid #000;
  font-size: 20px;
  padding: 8px 14px;
  font-weight: 400;
}
@media only screen and (min-width: 1170px) {
  .booking, .booking-mobile {
    font-size: 14px;
    border: 3px solid #000;
    padding: 5px 10px;
    top: -20px;
  }
}
.booking.modal, .modal.booking-mobile {
  border: 4px solid #fff;
  color: #fff;
}
.booking:hover, .booking-mobile:hover {
  background: #000;
  color: #fff;
}

.booking-mobile {
  position: absolute;
  right: 100px;
  font-size: 16px;
  padding: 4px 12px;
  top: 6px;
}
@media only screen and (min-width: 770px) {
  .booking-mobile {
    right: 100px;
  }
}
@media only screen and (min-width: 1170px) {
  .booking-mobile {
    display: none !important;
  }
}

.send {
  transition: all 0.2s ease-out;
  background: none;
  background: none;
  border: 4px solid #000;
  font-size: 20px;
  line-height: 2em;
  font-weight: 700;
  width: 80%;
  max-width: 350px;
}
@media only screen and (min-width: 1170px) {
  .send {
    font-size: 18px;
    border: 3px solid #000;
  }
}
.send:hover {
  background: #000;
  color: #fff;
}

.callpopup {
  height: 0;
  font-size: 0;
  opacity: 0;
}

.popup {
  display: none;
  position: absolute;
  top: 20vh;
  left: 50%;
  font-family: Avenir, Arial, Helvetica, sans-serif;
  font-size: 24px;
  text-align: center;
  line-height: 32px;
  width: 300px;
  margin-left: -150px;
  padding-bottom: 2rem;
  z-index: 50;
  -webkit-box-shadow: 0 2px 6px 9px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 6px 9px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px 9px rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 770px) {
  .popup {
    width: 600px;
    margin-left: -300px;
  }
}
.popup .btn {
  border-radius: 2px;
}
.popup .popupclosebtn {
  width: 24px;
  height: 24px;
  position: absolute;
  border: 0;
  cursor: pointer;
  right: 20px;
  top: 20px;
  background: center center no-repeat;
  z-index: 2;
}
.popup .popupclosebtn.popupclosebright {
  background-image: url('data:image/svg+xml;utf8,<svg width="13" height="13" xmlns="http://www.w3.org/2000/svg"><path d="M2.042575 12.567585l4.20741-4.208212 4.207792 4.20783c.243377.243339.638274.243339.882032 0l.977743-.977743c.243339-.243377.243339-.638273 0-.882032L8.10934 6.500018l4.20783-4.207792c.243339-.243377.243339-.638274 0-.882032l-.977742-.977743c-.243377-.243339-.638274-.243339-.882033 0l-4.20741 4.208212L2.042193.432833c-.243377-.243339-.638273-.243339-.882032 0L.1828 1.410194c-.243339.243339-.243339.638274 0 .882032l4.20783 4.207792L.1828 10.70781c-.243339.243377-.243339.638273 0 .882032l.977743.977743c.243377.243339.638273.243339.882032 0z" fill="%23fff" fill-rule="nonzero"/></svg>');
}
.popup .popupclosebtn.popupclosedark {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.042575 12.567585l4.20741-4.208212 4.207792 4.20783c.243377.243339.638274.243339.882032 0l.977743-.977743c.243339-.243377.243339-.638273 0-.882032L8.10934 6.500018l4.20783-4.207792c.243339-.243377.243339-.638274 0-.882032l-.977742-.977743c-.243377-.243339-.638274-.243339-.882033 0l-4.20741 4.208212L2.042193.432833c-.243377-.243339-.638273-.243339-.882032 0L.1828 1.410194c-.243339.243339-.243339.638274 0 .882032l4.20783 4.207792L.1828 10.70781c-.243339.243377-.243339.638273 0 .882032l.977743.977743c.243377.243339.638273.243339.882032 0z' fill='%25232424242' fill-rule='nonzero'/%3E%3C/svg%3E");
}
.popup .popupbtndark,
.popup .popupbtnbright {
  margin-top: 1rem;
  font-size: 20px;
  padding: 0.1em 0.3em;
  border: 0;
}
.popup .popupbtndark {
  background: #000;
  color: #fff;
}
.popup .popupbtnbright {
  background: #fff;
  color: #000;
}
.popup .popupcontent {
  padding: 3rem 1rem 2rem;
}
.popup.bgdark {
  background: #242424;
  color: #fff;
}
.popup.bgbright {
  background: #fefefe;
  color: #000;
}
.popup figure {
  z-index: -1;
}
.popup h2 {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 24px;
  font-family: Avenir, Arial, Helvetica, sans-serif;
}
.popup p {
  font-size: 18px;
}
.popup ul {
  padding: 1rem 0;
}
.popup ul, .popup ul li {
  list-style-type: initial;
  list-style-position: inside;
}

@-webkit-keyframes swing-in-top-bck {
  0% {
    -webkit-transform: rotateX(70deg);
    transform: rotateX(70deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}
@keyframes swing-in-top-bck {
  0% {
    -webkit-transform: rotateX(70deg);
    transform: rotateX(70deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}
.swiper-slide {
  position: relative;
}

.book-button-container {
  display: flex;
  justify-content: center;
}

.swiper-bookbutton {
  position: absolute;
  bottom: 50px;
  padding: 13px 40px !important;
  background: #ffffff;
  border: 3px solid #000;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 20;
  transition: background-color 0.35s ease, color 0.35s ease;
  text-decoration: none;
}

.swiper-bookbutton:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .swiper-bookbutton {
    bottom: 30px;
    padding: 8px 30px !important;
    font-size: 13px;
  }
}
.cookieConsentContainer {
  z-index: 999;
  width: 350px;
  min-height: 20px;
  box-sizing: border-box;
  padding: 30px 30px 30px 30px;
  background: #37474F;
  overflow: hidden;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
}

.cookieConsentContainer .cookieTitle a {
  font-family: Avenir, Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 22px;
  line-height: 20px;
  display: block;
}

.cookieConsentContainer .cookieDesc p {
  margin: 0;
  padding: 0;
  font-family: Avenir, Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  display: block;
  margin-top: 10px;
}

.cookieConsentContainer .cookieDesc a {
  font-family: Avenir, Arial, Helvetica, sans-serif;
  color: #fff;
  text-decoration: underline;
}

.cookieConsentContainer .cookieButton {
  display: inline-block;
  margin-right: 20px;
}

.cookieConsentContainer .cookieButton a {
  display: inline-block;
  font-family: Avenir, Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin-top: 14px;
  background: #000000;
  box-sizing: border-box;
  padding: 15px 24px;
  text-align: center;
  transition: background 0.3s;
}

.cookieConsentContainer .cookieButton a:hover {
  cursor: pointer;
  background: #00796B;
}

.cookieConsentContainer a.cookieNo {
  cursor: pointer;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .cookieConsentContainer {
    bottom: 0px !important;
    left: 0px !important;
    width: 100% !important;
  }
}
