@charset "UTF-8";
.qs-datepicker {
  color: black;
  position: absolute;
  width: 250px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  font-family: sans-serif;
  font-size: 14px;
  z-index: 9001;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid gray;
  border-radius: 4.22275px;
  overflow: hidden;
  background: white;
  -webkit-box-shadow: 0 20px 20px -15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 20px 20px -15px rgba(0, 0, 0, 0.3); }

.qs-datepicker * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.qs-datepicker.qs-hidden {
  display: none; }

.qs-datepicker .qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  width: 100%;
  height: 100%;
  padding: .5em;
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center; }

.qs-datepicker .qs-overlay.qs-hidden {
  opacity: 0;
  z-index: -1; }

.qs-datepicker .qs-overlay .qs-close {
  -ms-flex-item-align: end;
  align-self: flex-end;
  display: inline-table;
  padding: .5em;
  line-height: .77;
  cursor: pointer;
  position: absolute; }

.qs-datepicker .qs-overlay .qs-overlay-year {
  display: block;
  border: none;
  background: transparent;
  border-bottom: 1px solid white;
  border-radius: 0;
  color: white;
  font-size: 14px;
  padding: .25em 0;
  margin: auto 0 .5em;
  width: calc(100% - 1em); }

.qs-datepicker .qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
  -webkit-appearance: none; }

.qs-datepicker .qs-overlay .qs-submit {
  border: 1px solid white;
  border-radius: 4.22275px;
  padding: .5em;
  margin: 0 auto auto;
  cursor: pointer;
  background: rgba(128, 128, 128, 0.4); }

.qs-datepicker .qs-overlay .qs-submit.qs-disabled {
  color: gray;
  border-color: gray;
  cursor: not-allowed; }

.qs-datepicker .qs-controls {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: lightgray;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  -o-transition: filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s; }

.qs-datepicker .qs-controls.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px); }

.qs-datepicker .qs-arrow {
  height: 25px;
  width: 25px;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: background .15s;
  -o-transition: background .15s;
  transition: background .15s; }

.qs-datepicker .qs-arrow:hover {
  background: rgba(0, 0, 0, 0.1); }

.qs-datepicker .qs-arrow:hover.qs-left:after {
  border-right-color: black; }

.qs-datepicker .qs-arrow:hover.qs-right:after {
  border-left-color: black; }

.qs-datepicker .qs-arrow:after {
  content: '';
  border: 6.25px solid transparent;
  position: absolute;
  top: 50%;
  -webkit-transition: border .2s;
  -o-transition: border .2s;
  transition: border .2s; }

.qs-datepicker .qs-arrow.qs-left:after {
  border-right-color: gray;
  right: 50%;
  -webkit-transform: translate(25%, -50%);
  -ms-transform: translate(25%, -50%);
  transform: translate(25%, -50%); }

.qs-datepicker .qs-arrow.qs-right:after {
  border-left-color: gray;
  left: 50%;
  -webkit-transform: translate(-25%, -50%);
  -ms-transform: translate(-25%, -50%);
  transform: translate(-25%, -50%); }

.qs-datepicker .qs-month-year {
  font-weight: bold;
  -webkit-transition: border .2s;
  -o-transition: border .2s;
  transition: border .2s;
  border-bottom: 1px solid transparent;
  cursor: pointer; }

.qs-datepicker .qs-month-year:hover {
  border-bottom: 1px solid gray; }

.qs-datepicker .qs-month-year:focus,
.qs-datepicker .qs-month-year:active:focus {
  outline: none; }

.qs-datepicker .qs-month {
  padding-right: .5ex; }

.qs-datepicker .qs-year {
  padding-left: .5ex; }

.qs-datepicker .qs-squares {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 5px;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  -o-transition: filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s; }

.qs-datepicker .qs-squares.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px); }

.qs-datepicker .qs-square {
  width: 14.28571429%;
  height: 25px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: background .1s;
  -o-transition: background .1s;
  transition: background .1s;
  border-radius: 4.22275px; }

.qs-datepicker .qs-square.qs-current {
  font-weight: bold; }

.qs-datepicker .qs-square.qs-active {
  background: lightblue; }

.qs-datepicker .qs-square.qs-disabled span {
  opacity: .2; }

.qs-datepicker .qs-square.qs-empty {
  cursor: default; }

.qs-datepicker .qs-square.qs-disabled {
  cursor: not-allowed; }

.qs-datepicker .qs-square.qs-day {
  cursor: default;
  font-weight: bold;
  color: gray; }

.qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):hover {
  background: orange; }

/**
 * Swiper 4.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 13, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-invisible-blank-slide {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

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

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

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

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

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

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

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff; }

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000; }

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

@font-face {
  font-family: 'galano-grotesque';
  src: url("../fonts/GalanoGrotesque-Regular.woff2") format("woff2"), url("../fonts/GalanoGrotesque-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'galano-grotesque';
  src: url("../fonts/GalanoGrotesque-Bold.woff2") format("woff2"), url("../fonts/GalanoGrotesque-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url("../fonts/NHaasGroteskTXPro-55Rg.woff2") format("woff2"), url("../fonts/NHaasGroteskTXPro-55Rg.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url("../fonts/NHaasGroteskTXPro-75Bd.woff2") format("woff2"), url("../fonts/NHaasGroteskTXPro-75Bd.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url("../fonts/NHaasGroteskTXPro-56It.woff2") format("woff2"), url("../fonts/NHaasGroteskTXPro-56It.woff") format("woff");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url("../fonts/NHaasGroteskTXPro-76BdIt.woff2") format("woff2"), url("../fonts/NHaasGroteskTXPro-76BdIt.woff") format("woff");
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: 'icomoon';
  src: url("../icons/icomoon.eot?kcjssw");
  src: url("../icons/icomoon.eot?kcjssw#iefix") format("embedded-opentype"), url("../icons/icomoon.ttf?kcjssw") format("truetype"), url("../icons/icomoon.woff?kcjssw") format("woff"), url("../icons/icomoon.svg?kcjssw#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Fonts */
/* Colours */
/* Buttons */
/* Titles */
/* Text */
/* Links */
/* Forms */
/* Buttons */
@-webkit-keyframes loading {
  from {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    opacity: 1;
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
@keyframes loading {
  from {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    opacity: 1;
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

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

/**
 * 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 {
  font-size: 2em;
  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 {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

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

/* Text-level semantics
   ========================================================================== */
/**
 * 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 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/**
 * 1. Remove the bottom border in 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 */
  -webkit-text-decoration: underline dotted;
  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
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

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

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

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

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 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 {
  -webkit-box-sizing: border-box;
  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"] {
  -webkit-box-sizing: border-box;
  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; }

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

::-moz-selection {
  background: #00adbb;
  color: #000000; }

::selection {
  background: #00adbb;
  color: #000000; }

html {
  background: #000000; }

body {
  background: #181818;
  font-family: "Neue Haas Groesk", arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden; }
  body > main {
    overflow: hidden; }
  @media only screen and (max-width: 1280px) {
    body {
      font-size: 17px; } }
  @media only screen and (max-width: 1080px) {
    body {
      font-size: 16px; } }
  @media only screen and (max-width: 660px) {
    body {
      margin-top: 50px; }
      .countdown-visible body {
        margin-top: 79px; } }

@media only screen and (max-width: 660px) {
  .menu-expanded body > *:not(header),
  .search-expanded body > *:not(header) {
    -webkit-filter: blur(3px);
    filter: blur(3px);
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s; } }

figure figcaption {
  font-size: 82%;
  font-style: italic; }

img {
  max-width: 100%;
  height: auto; }

a {
  color: inherit; }

.button {
  display: inline-block;
  height: 50px;
  line-height: 44px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  color: #ffffff;
  background: transparent; }
  .button:hover {
    background: #00adbb;
    color: #000000; }

h1, h2, h3, h4, h5, h6 {
  font-family: "galano-grotesque", arial, sans-serif; }

h1 {
  font-size: 4.444em;
  line-height: 0.83;
  margin: 0.463em 0; }

h3 {
  font-weight: normal;
  font-size: 1.333em;
  font-family: "Neue Haas Groesk", arial, sans-serif; }
  .the-grid h3, .swiper-slide h3 {
    font-weight: bold;
    font-family: "galano-grotesque", arial, sans-serif;
    line-height: 1.525; }

.more {
  font-size: 0.95em;
  font-weight: bold; }

nav.social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  font-size: 0; }
  nav.social ul li:not(:last-of-type) {
    margin-right: 19px; }
  nav.social ul a {
    text-decoration: none;
    color: #ffffff;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
    display: inline-block; }
    nav.social ul a:before {
      font-size: 32px; }
    nav.social ul a:hover {
      text-decoration: none;
      color: #00adbb; }
  nav.social ul .item--messenger a:before {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-size: 35px; }
  nav.social ul .item--facebook a:before {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: ""; }
  nav.social ul .item--twitter a:before {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: ""; }
  nav.social ul .item--instagram a:before {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: ""; }
  nav.social ul .item--snapchat a:before {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: ""; }
  nav.social ul .item--spotify a:before {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: ""; }

.fluid-width-video-wrapper {
  margin: 3.5em 0; }

button.load-more {
  display: inline-block;
  height: 50px;
  line-height: 44px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  color: #ffffff;
  background: transparent;
  margin: 100px auto;
  display: table; }
  button.load-more:hover {
    background: #00adbb;
    color: #000000; }

/** Forms **/
input,
button,
select,
textarea {
  outline: none; }

input,
select,
textarea {
  font-family: "Neue Haas Groesk", arial, sans-serif;
  font-size: 18px;
  border: 1px solid #d7d7d7;
  width: 100%; }

input,
textarea {
  padding: 22px 15px 8px 15px; }

input,
select {
  height: 52px; }

select {
  padding: 15px; }

input[type=radio],
input[type=checkbox] {
  width: auto;
  height: auto; }

textarea {
  resize: vertical;
  min-height: 150px;
  display: block; }

input[type=button],
input[type=submit] {
  display: inline-block;
  height: 50px;
  line-height: 44px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  color: #ffffff;
  background: transparent;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  margin-right: auto;
  width: auto; }
  input[type=button]:hover,
  input[type=submit]:hover {
    background: #00adbb;
    color: #000000; }

input[type=checkbox] {
  opacity: 0;
  position: absolute; }

input[type=checkbox] + span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

input[type=checkbox] + span:before {
  border: 1px solid #626262;
  content: '';
  display: inline-block;
  height: 26px;
  width: 26px;
  min-width: 26px;
  margin-right: 10px;
  text-align: center;
  vertical-align: middle; }

input[type=checkbox].focused + span:before {
  border-color: #626262; }

input[type=checkbox]:checked + span:before {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  line-height: 24px;
  color: #00adbb; }

label {
  display: block;
  position: relative;
  margin: 0 0 1.667em 0; }
  label .label {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    line-height: 1.15;
    color: #000000;
    padding: 16px;
    width: 100%;
    pointer-events: none;
    -webkit-transition: padding 0.2s, font-size 0.2s;
    -o-transition: padding 0.2s, font-size 0.2s;
    transition: padding 0.2s, font-size 0.2s; }
  label.focused .label {
    padding: 8px 15px;
    font-size: 12px; }
  @media only screen and (max-width: 1280px) {
    label {
      margin-bottom: 1em; } }

label.select {
  position: relative; }
  label.select .custom-select-container {
    text-align: left;
    z-index: 20; }
    label.select .custom-select-container .custom-select-panel {
      -webkit-transition-duration: .15s;
      -o-transition-duration: .15s;
      transition-duration: .15s; }
    label.select .custom-select-container .custom-select-opener {
      background-color: transparent;
      outline: none;
      border: solid #444444;
      border-width: 0 0 1px 0;
      padding: 12px 0; }
      label.select .custom-select-container .custom-select-opener:after {
        font-family: 'icomoon' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "";
        position: absolute;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        color: #00adbb;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: .8em;
        -webkit-transition: .15s;
        -o-transition: .15s;
        transition: .15s; }
    label.select .custom-select-container.is-open .custom-select-opener:after {
      -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
      transform: translateY(-50%) rotate(180deg); }
    label.select .custom-select-container .custom-select-option.has-focus {
      background-color: rgba(0, 173, 187, 0.4); }

section > h2 {
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 3.111em;
  line-height: 1.17; }
  @media only screen and (max-width: 1280px) {
    section > h2 {
      font-size: 2.4em; } }
  @media only screen and (max-width: 960px) {
    section > h2 {
      font-size: 2em; } }
  @media only screen and (max-width: 660px) {
    section > h2 {
      font-size: 1.75em; } }

.single-mod_exhibit .app, .block-app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px;
  background-color: #eaeaea;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 2em 0; }
  @media only screen and (max-width: 1400px) {
    .single-mod_exhibit .app, .block-app {
      padding: 30px; } }
  @media only screen and (max-width: 1280px) {
    .single-mod_exhibit .app, .block-app {
      padding: 20px; } }
  @media only screen and (max-width: 430px) {
    .single-mod_exhibit .app, .block-app {
      padding: 10px; } }
  .single-mod_exhibit .app > div, .block-app > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; }
    .single-mod_exhibit .app > div.badges, .block-app > div.badges {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; }
    .single-mod_exhibit .app > div:first-child, .block-app > div:first-child {
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-right: 30px; }
  .single-mod_exhibit .app h3, .block-app h3 {
    font-size: 1.444em;
    margin: 0;
    width: 100%; }
  .single-mod_exhibit .app p, .block-app p {
    font-size: 1.222em;
    margin: 0;
    width: 100%; }
  .single-mod_exhibit .app a, .block-app a {
    display: inline-block;
    text-decoration: none; }
    .single-mod_exhibit .app a img, .block-app a img {
      width: auto;
      height: 45px; }
    .single-mod_exhibit .app a:not(:first-of-type) img, .block-app a:not(:first-of-type) img {
      margin-left: 5px; }
    .single-mod_exhibit .app a:not(:last-of-type) img, .block-app a:not(:last-of-type) img {
      margin-right: 5px; }
  @media only screen and (max-width: 1700px) {
    .single-mod_exhibit .app > div.badges, .block-app > div.badges {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
    .single-mod_exhibit .app a:not(:last-of-type) img, .block-app a:not(:last-of-type) img {
      margin-right: 0; } }
  @media only screen and (max-width: 780px) {
    .single-mod_exhibit .app, .block-app {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .single-mod_exhibit .app > div, .block-app > div {
        width: 100%; }
        .single-mod_exhibit .app > div:first-child, .block-app > div:first-child {
          margin-right: 0; }
        .single-mod_exhibit .app > div.badges, .block-app > div.badges {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-direction: row;
          flex-direction: row;
          margin-top: 10px; } }
  @media only screen and (max-width: 660px) {
    .single-mod_exhibit .app h3, .block-app h3 {
      font-size: 1.1em; }
    .single-mod_exhibit .app p, .block-app p {
      font-size: 1em; }
    .single-mod_exhibit .app a img, .block-app a img {
      height: 34px; } }

body {
  padding-left: 100px; }
  @media only screen and (max-width: 660px) {
    body {
      padding-left: 0; } }
  body > header:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100px;
    background: #000000; }
    body > header:first-of-type:before {
      content: '';
      display: block;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #000000;
      border-right: 1px solid #313131;
      position: absolute;
      z-index: -1; }
    body > header:first-of-type > button {
      margin: 0;
      padding: 0;
      border: none;
      background: none;
      color: #ffffff;
      outline: none;
      cursor: pointer;
      -webkit-transition: color 0.2s;
      -o-transition: color 0.2s;
      transition: color 0.2s; }
      body > header:first-of-type > button:hover {
        color: #00adbb; }
    body > header:first-of-type > nav {
      position: fixed;
      z-index: -2;
      left: 100px;
      top: 0;
      bottom: 0;
      width: 37%;
      min-width: 680px;
      background: #000000;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.3s;
      transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.3s;
      -o-transition: opacity 0.2s, visibility 0.2s, transform 0.3s;
      transition: opacity 0.2s, visibility 0.2s, transform 0.3s;
      transition: opacity 0.2s, visibility 0.2s, transform 0.3s, -webkit-transform 0.3s;
      -webkit-transform: translateX(-5%);
      -ms-transform: translateX(-5%);
      transform: translateX(-5%);
      line-height: 1;
      background-image: url(../images/morphtangle-menu.png);
      background-size: auto 60%;
      background-repeat: no-repeat;
      background-position: -100px 65%;
      pointer-events: none;
      font-family: "galano-grotesque", arial, sans-serif;
      -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0 10px;
      box-shadow: rgba(0, 0, 0, 0.5) 0 0 10px; }
      body > header:first-of-type > nav:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 50%;
        background: #181818; }
      .menu-expanded body > header:first-of-type > nav {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        pointer-events: auto; }
      body > header:first-of-type > nav .opening-times {
        position: absolute;
        left: calc( 50% + 58px);
        bottom: 60px;
        font-family: "Neue Haas Groesk", arial, sans-serif;
        line-height: 1.55;
        z-index: 3; }
        body > header:first-of-type > nav .opening-times ul {
          margin: 50px 0 40px 0; }
        body > header:first-of-type > nav .opening-times a {
          display: inline-block;
          height: 50px;
          line-height: 44px;
          border-radius: 25px;
          border: 3px solid #00adbb;
          padding: 0 25px;
          font-family: "galano-grotesque", arial, sans-serif;
          font-size: 17px;
          font-weight: bold;
          text-decoration: none;
          -webkit-transition: all 0.2s;
          -o-transition: all 0.2s;
          transition: all 0.2s;
          cursor: pointer;
          color: #ffffff;
          background: transparent; }
          body > header:first-of-type > nav .opening-times a:hover {
            background: #00adbb;
            color: #000000; }
        @media screen and (max-height: 680px) {
          body > header:first-of-type > nav .opening-times {
            display: none; } }
    body > header:first-of-type .quicklinks {
      position: absolute;
      bottom: 60px;
      left: 55px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      font-size: 14px;
      font-weight: bold;
      text-align: center; }
      body > header:first-of-type .quicklinks li {
        margin-left: 36px; }
        body > header:first-of-type .quicklinks li.home {
          margin-left: 0; }
        body > header:first-of-type .quicklinks li.search, body > header:first-of-type .quicklinks li.close {
          display: none; }
      body > header:first-of-type .quicklinks a {
        display: block; }
        body > header:first-of-type .quicklinks a:hover:before {
          background: #00adbb; }
        body > header:first-of-type .quicklinks a:before {
          background: #181818;
          width: 50px;
          height: 50px;
          display: block;
          margin-bottom: 10px;
          line-height: 50px !important;
          text-align: center;
          border-radius: 30px;
          position: relative;
          left: 50%;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%);
          -webkit-transition: background 0.2s;
          -o-transition: background 0.2s;
          transition: background 0.2s; }
      body > header:first-of-type .quicklinks li.home a:before {
        font-family: 'icomoon' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: ""; }
      body > header:first-of-type .quicklinks li.contact a:before {
        font-family: 'icomoon' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: ""; }
      body > header:first-of-type .quicklinks li.blog a:before {
        font-family: 'icomoon' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: ""; }
    body > header:first-of-type .menu {
      width: 50%;
      min-width: 340px;
      padding: 60px 0 60px 55px;
      font-size: 20px;
      line-height: 1.3; }
      body > header:first-of-type .menu > li {
        padding-bottom: 35px; }
        body > header:first-of-type .menu > li.visible.menu-item-has-children .sub-menu {
          opacity: 1;
          visibility: visible;
          z-index: 2; }
        body > header:first-of-type .menu > li.visible.menu-item-has-children > a {
          color: #00adbb; }
          body > header:first-of-type .menu > li.visible.menu-item-has-children > a:before, body > header:first-of-type .menu > li.visible.menu-item-has-children > a:after {
            opacity: 1;
            visibility: visible; }
          body > header:first-of-type .menu > li.visible.menu-item-has-children > a:after {
            right: -9px; }
        body > header:first-of-type .menu > li > a {
          display: block;
          width: 100%;
          font-size: 36px;
          font-weight: bold;
          line-height: 1;
          position: relative; }
        body > header:first-of-type .menu > li.menu-item-has-children > a {
          cursor: default; }
          body > header:first-of-type .menu > li.menu-item-has-children > a:before, body > header:first-of-type .menu > li.menu-item-has-children > a:after {
            opacity: 0;
            visibility: visible;
            -webkit-transition: opacity 0.2s, visibility 0.2s;
            -o-transition: opacity 0.2s, visibility 0.2s;
            transition: opacity 0.2s, visibility 0.2s; }
          body > header:first-of-type .menu > li.menu-item-has-children > a:before {
            content: '';
            visibility: hidden;
            display: block;
            width: 86px;
            height: 86px;
            border-radius: 5px;
            background: #000000;
            position: absolute;
            right: -12px;
            top: 50%;
            -webkit-transform: translateY(-50%) rotate(45deg);
            -ms-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
            z-index: 5; }
          body > header:first-of-type .menu > li.menu-item-has-children > a:after {
            font-family: 'icomoon' !important;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            line-height: 1;
            speak: none;
            text-transform: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "";
            color: #ffffff !important;
            position: absolute;
            right: -5px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            -webkit-transition: all 0.2s;
            -o-transition: all 0.2s;
            transition: all 0.2s;
            z-index: 6;
            visibility: hidden;
            font-size: 16px; }
      body > header:first-of-type .menu .sub-menu {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 50%;
        min-width: 340px;
        padding: 60px 58px;
        background: #181818;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 0.3s, visibility 0.3s;
        -o-transition: opacity 0.3s, visibility 0.3s;
        transition: opacity 0.3s, visibility 0.3s; }
        body > header:first-of-type .menu .sub-menu li {
          margin-bottom: 25px; }
          body > header:first-of-type .menu .sub-menu li.item--current-exhibition, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition {
            position: relative;
            padding-bottom: 58px; }
            body > header:first-of-type .menu .sub-menu li.item--current-exhibition:first-of-type:before, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition:first-of-type:before {
              content: 'Exhibitions';
              font-family: "galano-grotesque", arial, sans-serif;
              font-size: 12px;
              font-weight: bold;
              line-height: 1;
              letter-spacing: 0.5em;
              text-transform: uppercase;
              color: #00adbb;
              padding-bottom: 10px;
              display: block; }
            body > header:first-of-type .menu .sub-menu li.item--current-exhibition:after, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition:after {
              content: '';
              position: absolute;
              top: -58px;
              right: -58px;
              bottom: 0;
              left: -58px;
              background-color: #232323;
              z-index: -1; }
            body > header:first-of-type .menu .sub-menu li.item--current-exhibition a, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition a {
              display: block; }
              body > header:first-of-type .menu .sub-menu li.item--current-exhibition a .title, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition a .title {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                font-size: 1.1em;
                font-weight: bold;
                margin-top: .6em; }
                body > header:first-of-type .menu .sub-menu li.item--current-exhibition a .title span, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition a .title span {
                  -webkit-box-flex: 1;
                  -ms-flex: 1;
                  flex: 1; }
                body > header:first-of-type .menu .sub-menu li.item--current-exhibition a .title:after, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition a .title:after {
                  font-family: 'icomoon' !important;
                  font-style: normal;
                  font-weight: normal;
                  font-variant: normal;
                  line-height: 1;
                  speak: none;
                  text-transform: none;
                  -webkit-font-smoothing: antialiased;
                  -moz-osx-font-smoothing: grayscale;
                  content: "";
                  font-size: 1em;
                  -webkit-transition: .15s;
                  -o-transition: .15s;
                  transition: .15s; }
              body > header:first-of-type .menu .sub-menu li.item--current-exhibition a .date, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition a .date {
                color: #00adbb;
                font-size: 0.75em; }
              body > header:first-of-type .menu .sub-menu li.item--current-exhibition a:hover, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition a:hover {
                color: white; }
                body > header:first-of-type .menu .sub-menu li.item--current-exhibition a:hover > span:first-of-type:after, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition a:hover > span:first-of-type:after {
                  -webkit-transform: translateX(4px);
                  -ms-transform: translateX(4px);
                  transform: translateX(4px); }
          body > header:first-of-type .menu .sub-menu li.item--events {
            position: relative;
            padding-bottom: 58px;
            padding-top: 33px; }
            body > header:first-of-type .menu .sub-menu li.item--events:after {
              content: '';
              position: absolute;
              top: -25px;
              right: -58px;
              bottom: 0;
              left: -58px;
              background-color: #232323;
              border-top: 2px solid #181818;
              z-index: -1; }
            body > header:first-of-type .menu .sub-menu li.item--events a {
              display: block; }
              body > header:first-of-type .menu .sub-menu li.item--events a .title {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                font-size: 1.1em;
                font-weight: bold; }
                body > header:first-of-type .menu .sub-menu li.item--events a .title span {
                  -webkit-box-flex: 1;
                  -ms-flex: 1;
                  flex: 1; }
                body > header:first-of-type .menu .sub-menu li.item--events a .title:after {
                  font-family: 'icomoon' !important;
                  font-style: normal;
                  font-weight: normal;
                  font-variant: normal;
                  line-height: 1;
                  speak: none;
                  text-transform: none;
                  -webkit-font-smoothing: antialiased;
                  -moz-osx-font-smoothing: grayscale;
                  content: "";
                  font-size: 1em;
                  -webkit-transition: .15s;
                  -o-transition: .15s;
                  transition: .15s; }
              body > header:first-of-type .menu .sub-menu li.item--events a .count {
                color: #00adbb;
                font-size: 0.75em; }
              body > header:first-of-type .menu .sub-menu li.item--events a:hover {
                color: white; }
                body > header:first-of-type .menu .sub-menu li.item--events a:hover > span:first-of-type:after {
                  -webkit-transform: translateX(4px);
                  -ms-transform: translateX(4px);
                  transform: translateX(4px); }
      body > header:first-of-type .menu a {
        -webkit-transition: color 0.2s;
        -o-transition: color 0.2s;
        transition: color 0.2s; }
        body > header:first-of-type .menu a:hover {
          color: #00adbb; }
    body > header:first-of-type > .search {
      position: fixed;
      top: 0;
      bottom: 0;
      left: 100px;
      right: 0;
      background: #000000;
      padding: 70px 100px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.3s, visibility 0.3s;
      -o-transition: opacity 0.3s, visibility 0.3s;
      transition: opacity 0.3s, visibility 0.3s; }
      @media only screen and (max-width: 1400px) {
        body > header:first-of-type > .search {
          padding: 42px 60px; } }
      @media only screen and (max-width: 1280px) {
        body > header:first-of-type > .search {
          padding: 28px 40px; } }
      @media only screen and (max-width: 430px) {
        body > header:first-of-type > .search {
          padding: 14px 20px; } }
      body > header:first-of-type > .search input {
        background: transparent;
        color: #ffffff;
        padding: 0;
        font-size: 8.333em;
        font-weight: bold;
        height: auto;
        line-height: 1;
        border-width: 0 0 3px 0;
        border-color: #c028b9;
        caret-color: #c028b9;
        margin-bottom: 0.367em;
        -webkit-box-shadow: 0 0 0 1000px #000000 inset;
        -webkit-text-fill-color: #ffffff !important; }
        body > header:first-of-type > .search input:focus {
          -webkit-text-fill-color: #ffffff !important; }
        body > header:first-of-type > .search input::-webkit-input-placeholder {
          color: #181818; }
        body > header:first-of-type > .search input:-moz-placeholder {
          color: #181818; }
        body > header:first-of-type > .search input:-ms-input-placeholder {
          color: #181818; }
        body > header:first-of-type > .search input:-moz-placeholder {
          color: #181818; }
        @media only screen and (max-width: 900px) {
          body > header:first-of-type > .search input {
            font-size: 6.333em; } }
      body > header:first-of-type > .search button {
        display: inline-block;
        height: 50px;
        line-height: 44px;
        border-radius: 25px;
        border: 3px solid #ffffff;
        padding: 0 25px;
        font-family: "galano-grotesque", arial, sans-serif;
        font-size: 17px;
        font-weight: bold;
        text-decoration: none;
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s;
        cursor: pointer;
        color: #ffffff;
        background: transparent; }
        body > header:first-of-type > .search button:hover {
          background: #ffffff;
          color: #000000; }
        body > header:first-of-type > .search button[type=submit] {
          margin-right: 20px; }
        body > header:first-of-type > .search button[type=button] {
          border-color: #000000; }
          body > header:first-of-type > .search button[type=button]:hover {
            background: #000000;
            color: #ffffff; }
      body > header:first-of-type > .search .opening-times {
        margin-top: auto; }
        body > header:first-of-type > .search .opening-times a {
          -webkit-transition: color 0.2s;
          -o-transition: color 0.2s;
          transition: color 0.2s;
          font-family: "galano-grotesque", arial, sans-serif;
          font-size: 17px;
          font-weight: bold;
          text-decoration: none;
          display: -webkit-inline-box;
          display: -ms-inline-flexbox;
          display: inline-flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          body > header:first-of-type > .search .opening-times a:hover {
            color: #00adbb; }
          body > header:first-of-type > .search .opening-times a:after {
            font-family: 'icomoon' !important;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            line-height: 1;
            speak: none;
            text-transform: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "";
            font-size: 1.2em;
            margin-left: 0.5em;
            position: relative;
            left: 0px;
            -webkit-transition: left 0.15s;
            -o-transition: left 0.15s;
            transition: left 0.15s; }
          body > header:first-of-type > .search .opening-times a:hover:after {
            left: 4px; }
          body > header:first-of-type > .search .opening-times a:hover {
            color: #ffffff; }
          body > header:first-of-type > .search .opening-times a:after {
            color: #00adbb; }
      .search-expanded body > header:first-of-type > .search {
        opacity: 1;
        visibility: visible; }
    body > header:first-of-type .logo {
      margin: auto 34px 34px 34px;
      -ms-flex-item-align: start;
      align-self: flex-start; }
      body > header:first-of-type .logo a {
        display: block;
        margin-top: 34px; }
      body > header:first-of-type .logo img {
        display: block; }
    body > header:first-of-type .menu-button {
      width: 100px;
      height: 105px;
      min-height: 105px;
      text-align: center;
      position: relative;
      font-size: 9px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      border-bottom: 1px solid #313131;
      outline: none; }
      body > header:first-of-type .menu-button:hover span:nth-of-type(1) {
        background: #00adbb; }
        body > header:first-of-type .menu-button:hover span:nth-of-type(1):before, body > header:first-of-type .menu-button:hover span:nth-of-type(1):after {
          background: #00adbb; }
      body > header:first-of-type .menu-button span {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
        body > header:first-of-type .menu-button span:nth-of-type(1) {
          display: block;
          width: 30px;
          height: 3px;
          background: #ffffff;
          -webkit-transition: all 0.2s;
          -o-transition: all 0.2s;
          transition: all 0.2s;
          position: absolute;
          top: 42px;
          left: 50%; }
          body > header:first-of-type .menu-button span:nth-of-type(1):before, body > header:first-of-type .menu-button span:nth-of-type(1):after {
            content: '';
            display: block;
            left: 0;
            right: 0;
            height: 3px;
            background: #ffffff;
            position: absolute;
            -webkit-transition: all 0.2s;
            -o-transition: all 0.2s;
            transition: all 0.2s; }
          body > header:first-of-type .menu-button span:nth-of-type(1):before {
            top: -9px; }
          body > header:first-of-type .menu-button span:nth-of-type(1):after {
            top: 9px; }
        body > header:first-of-type .menu-button span:nth-of-type(2) {
          top: 69px; }
      .menu-expanded body > header:first-of-type .menu-button span:nth-of-type(1) {
        background: none !important; }
        .menu-expanded body > header:first-of-type .menu-button span:nth-of-type(1):before {
          top: 0 !important;
          -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); }
        .menu-expanded body > header:first-of-type .menu-button span:nth-of-type(1):after {
          top: 0 !important;
          -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg); }
    body > header:first-of-type > .search-button {
      width: 100px;
      height: 100px;
      min-height: 100px;
      font-size: 27px; }
      body > header:first-of-type > .search-button:before {
        font-family: 'icomoon' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: ""; }
      body > header:first-of-type > .search-button:hover span:nth-of-type(1):before, body > header:first-of-type > .search-button:hover span:nth-of-type(1):after {
        background: #00adbb; }
      body > header:first-of-type > .search-button span:nth-of-type(1) {
        display: none;
        height: 30px;
        width: 30px;
        position: relative; }
        body > header:first-of-type > .search-button span:nth-of-type(1):before, body > header:first-of-type > .search-button span:nth-of-type(1):after {
          content: none;
          display: block;
          width: 30px;
          height: 3px;
          background: #ffffff;
          position: absolute;
          -webkit-transition: all 0.2s;
          -o-transition: all 0.2s;
          transition: all 0.2s;
          top: 13px; }
        body > header:first-of-type > .search-button span:nth-of-type(1):before {
          -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); }
        body > header:first-of-type > .search-button span:nth-of-type(1):after {
          -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg); }
      body > header:first-of-type > .search-button span:nth-of-type(2) {
        display: none; }
      .search-expanded body > header:first-of-type > .search-button:before {
        content: none; }
      .search-expanded body > header:first-of-type > .search-button span:nth-of-type(1) {
        display: inline-block; }
        .search-expanded body > header:first-of-type > .search-button span:nth-of-type(1):before, .search-expanded body > header:first-of-type > .search-button span:nth-of-type(1):after {
          content: ''; }
    body > header:first-of-type > button {
      margin: 0;
      padding: 0; }
    body > header:first-of-type ul {
      margin: 0;
      padding: 0;
      list-style: none; }
    body > header:first-of-type a {
      text-decoration: none; }
    @media only screen and (max-width: 660px) {
      body > header:first-of-type {
        bottom: auto;
        right: 0;
        width: auto;
        height: 50px;
        border-bottom: 1px solid #323232; }
        body > header:first-of-type .menu-button {
          position: fixed;
          display: inline-block;
          height: 50px;
          line-height: 44px;
          border-radius: 25px;
          border: 3px solid #00adbb;
          padding: 0 25px;
          font-family: "galano-grotesque", arial, sans-serif;
          font-size: 17px;
          font-weight: bold;
          text-decoration: none;
          -webkit-transition: all 0.2s;
          -o-transition: all 0.2s;
          transition: all 0.2s;
          cursor: pointer;
          color: #ffffff;
          background: transparent;
          bottom: 18px;
          left: 50%;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%);
          height: 38px;
          min-height: 0;
          line-height: 1;
          color: #ffffff;
          text-transform: none;
          letter-spacing: 0;
          font-size: 14px;
          background: #000000; }
          body > header:first-of-type .menu-button:hover {
            background: #00adbb;
            color: #000000; }
          body > header:first-of-type .menu-button span {
            -webkit-transform: none;
            -ms-transform: none;
            transform: none; }
          body > header:first-of-type .menu-button span:nth-of-type(1) {
            width: 14px;
            top: 15px;
            left: 18px;
            height: 2px; }
            body > header:first-of-type .menu-button span:nth-of-type(1):before {
              top: -5px;
              height: 2px; }
            body > header:first-of-type .menu-button span:nth-of-type(1):after {
              top: 5px;
              height: 2px; }
          body > header:first-of-type .menu-button span:nth-of-type(2) {
            top: 9px;
            left: 40px; }
          body > header:first-of-type .menu-button:hover {
            background: #000000;
            color: #ffffff; }
            body > header:first-of-type .menu-button:hover span:nth-of-type(1),
            body > header:first-of-type .menu-button:hover span:nth-of-type(1):before,
            body > header:first-of-type .menu-button:hover span:nth-of-type(1):after {
              background: #ffffff; }
        body > header:first-of-type .search-button {
          position: absolute;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          right: 20px;
          width: auto;
          height: auto;
          min-height: unset; }
        body > header:first-of-type .logo {
          -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
          transform: rotate(90deg);
          margin: -7px 0 0 45px; }
          body > header:first-of-type .logo a {
            margin-top: 0; }
          body > header:first-of-type .logo img {
            width: 18px; }
        body > header:first-of-type > nav {
          top: auto;
          left: 0;
          right: 0;
          bottom: 60px;
          width: auto;
          min-width: 0;
          -webkit-transform: translateY(5%);
          -ms-transform: translateY(5%);
          transform: translateY(5%);
          background: #000000;
          z-index: -1; }
          body > header:first-of-type > nav:after {
            content: none; }
        body > header:first-of-type .menu {
          position: absolute;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          width: 100vw;
          min-width: 100vw;
          padding: 0 20px;
          bottom: 60px; }
          body > header:first-of-type .menu > li {
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            background-color: #1e1e1e;
            text-align: center;
            padding-bottom: 0;
            margin: 0 5px; }
            body > header:first-of-type .menu > li:first-of-type {
              display: none; }
            body > header:first-of-type .menu > li:nth-of-type(2) {
              margin-left: 0; }
            body > header:first-of-type .menu > li:last-of-type {
              margin-right: 0; }
            body > header:first-of-type .menu > li > a {
              font-size: .778em;
              padding: 18px 4px;
              border: 3px solid #1e1e1e;
              border-radius: 2px;
              -webkit-transition: .15s;
              -o-transition: .15s;
              transition: .15s; }
              body > header:first-of-type .menu > li > a:before, body > header:first-of-type .menu > li > a:after {
                content: none; }
            body > header:first-of-type .menu > li.visible > a {
              color: #ffffff;
              background-color: #000000;
              border-color: #00adbb; }
            body > header:first-of-type .menu > li.visible.menu-item-has-children > a:before, body > header:first-of-type .menu > li.visible.menu-item-has-children > a:after {
              content: none; }
          body > header:first-of-type .menu .sub-menu {
            top: auto;
            left: 0;
            right: 0;
            bottom: 65px;
            width: auto;
            min-width: 0;
            padding: 0 20px;
            background: #000000;
            font-size: 14px;
            text-align: left; }
            body > header:first-of-type .menu .sub-menu li {
              margin-bottom: 0;
              border-bottom: 1px solid #3b3b3b; }
              body > header:first-of-type .menu .sub-menu li a {
                display: block;
                padding: 13px 0; }
              body > header:first-of-type .menu .sub-menu li.item--current-exhibition, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition {
                padding-bottom: 0;
                margin-bottom: 0; }
                body > header:first-of-type .menu .sub-menu li.item--current-exhibition:before, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition:before {
                  padding-top: 20px;
                  padding-bottom: 0;
                  font-size: 9px !important; }
                body > header:first-of-type .menu .sub-menu li.item--current-exhibition:after, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition:after {
                  content: none; }
                body > header:first-of-type .menu .sub-menu li.item--current-exhibition a .title, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition a .title {
                  margin: 0; }
              body > header:first-of-type .menu .sub-menu li.item--current-exhibition {
                border-bottom: none; }
              body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition {
                margin: 0; }
                body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition a {
                  padding-top: 0; }
              body > header:first-of-type .menu .sub-menu li.item--events {
                padding: 0; }
                body > header:first-of-type .menu .sub-menu li.item--events:after {
                  content: none; }
              body > header:first-of-type .menu .sub-menu li:last-child {
                margin-bottom: 0;
                border-bottom: 0; }
        body > header:first-of-type .quicklinks {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          bottom: 20px;
          left: 40px;
          right: 40px;
          -ms-flex-pack: distribute;
          justify-content: space-around; }
          body > header:first-of-type .quicklinks:after {
            content: '';
            background: #000000;
            position: absolute;
            left: -50px;
            right: -50px;
            top: -95px;
            bottom: -150px;
            z-index: -1; }
          body > header:first-of-type .quicklinks li {
            margin-left: 0; }
            body > header:first-of-type .quicklinks li.search, body > header:first-of-type .quicklinks li.close {
              display: block; }
            body > header:first-of-type .quicklinks li.search:after {
              font-family: 'icomoon' !important;
              font-style: normal;
              font-weight: normal;
              font-variant: normal;
              line-height: 1;
              speak: none;
              text-transform: none;
              -webkit-font-smoothing: antialiased;
              -moz-osx-font-smoothing: grayscale;
              content: ""; }
            body > header:first-of-type .quicklinks li.close:after {
              font-family: 'icomoon' !important;
              font-style: normal;
              font-weight: normal;
              font-variant: normal;
              line-height: 1;
              speak: none;
              text-transform: none;
              -webkit-font-smoothing: antialiased;
              -moz-osx-font-smoothing: grayscale;
              content: ""; }
            body > header:first-of-type .quicklinks li a:before {
              content: none !important; }
        body > header:first-of-type .opening-times {
          display: none; }
        body > header:first-of-type > .search {
          top: 50px;
          left: 0;
          bottom: auto;
          padding: 15px 20px 30px; }
          body > header:first-of-type > .search .buttons .search-button {
            display: none; }
          body > header:first-of-type > .search input {
            font-size: 12vw; } }

body > footer {
  background: #000000;
  max-width: 100%;
  overflow: hidden; }
  body > footer .instagram-feed {
    padding: 100px; }
    body > footer .instagram-feed h2 {
      margin: 0 0 70px 0; }
      body > footer .instagram-feed h2 a {
        text-decoration: none;
        display: inline-block; }
        body > footer .instagram-feed h2 a:before {
          font-family: 'icomoon' !important;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          line-height: 1;
          speak: none;
          text-transform: none;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          content: "";
          font-size: 1.3em;
          vertical-align: middle;
          margin-right: 10px; }
    body > footer .instagram-feed ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
    body > footer .instagram-feed li {
      width: 25%; }
      body > footer .instagram-feed li a {
        display: block;
        padding-bottom: 100%;
        background-size: cover;
        position: relative;
        z-index: 0; }
        body > footer .instagram-feed li a:hover:before {
          visibility: visible;
          opacity: 1; }
        body > footer .instagram-feed li a:hover p {
          -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
          transform: translateY(0);
          visibility: visible;
          opacity: 1; }
        body > footer .instagram-feed li a:before {
          content: '';
          visibility: hidden;
          opacity: 0;
          -webkit-transition: .2s;
          -o-transition: .2s;
          transition: .2s;
          display: block;
          background-image: -webkit-gradient(linear, left bottom, left top, from(#000000), to(rgba(0, 0, 0, 0.5)));
          background-image: -webkit-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0.5) 100%);
          background-image: -o-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0.5) 100%);
          background-image: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0.5) 100%);
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          z-index: -1; }
    body > footer .instagram-feed .text {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; }
    body > footer .instagram-feed p {
      margin: 0;
      padding: 2vw 2.6vw;
      font-size: 0.9vw;
      visibility: hidden;
      opacity: 0;
      -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
      transform: translateY(30px);
      -webkit-transition: .2s;
      -o-transition: .2s;
      transition: .2s; }
  body > footer .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #313131; }
    body > footer .top > * {
      width: 25%;
      padding: 100px 45px;
      border-left: 1px solid #313131;
      border-bottom: 1px solid #313131;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      min-height: 630px; }
      body > footer .top > *:nth-child(4) {
        padding-left: 100px;
        border-left: none; }
  body > footer .instagram {
    -webkit-box-ordinal-group: 41;
    -ms-flex-order: 40;
    order: 40;
    font-size: 1.222em;
    line-height: 1.45;
    position: relative; }
    body > footer .instagram > * {
      z-index: 10; }
    body > footer .instagram:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 35%;
      left: 0;
      right: 0;
      z-index: 2;
      background: -webkit-gradient(linear, left top, left bottom, from(black), color-stop(40%, black), to(rgba(0, 0, 0, 0)));
      background: -webkit-linear-gradient(top, black 0%, black 40%, rgba(0, 0, 0, 0) 100%);
      background: -o-linear-gradient(top, black 0%, black 40%, rgba(0, 0, 0, 0) 100%);
      background: linear-gradient(to bottom, black 0%, black 40%, rgba(0, 0, 0, 0) 100%); }
    body > footer .instagram h2 {
      margin: 0;
      font-size: .944em;
      margin-top: -0.5em; }
      body > footer .instagram h2 a {
        text-decoration: none;
        display: inline-block;
        -webkit-transition: color 0.2s;
        -o-transition: color 0.2s;
        transition: color 0.2s; }
        body > footer .instagram h2 a:hover {
          color: #00adbb; }
        body > footer .instagram h2 a:before {
          font-family: 'icomoon' !important;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          line-height: 1;
          speak: none;
          text-transform: none;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          content: "";
          font-size: 35px;
          vertical-align: middle;
          margin-right: 10px; }
    body > footer .instagram .image {
      position: absolute;
      top: 25%;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
      opacity: 0.6;
      background-size: cover;
      background-position: center center; }
  body > footer .acknowledgement {
    -webkit-box-ordinal-group: 21;
    -ms-flex-order: 20;
    order: 20; }
    body > footer .acknowledgement h2 {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 12px;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: #00adbb;
      margin: 0 0 30px 0; }
    body > footer .acknowledgement p {
      margin: 0 0 1em 0; }
  body > footer .subscribe {
    -webkit-box-ordinal-group: 41;
    -ms-flex-order: 40;
    order: 40;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    body > footer .subscribe h2 {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 12px;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: #00adbb;
      margin: 0 0 30px 0; }
    body > footer .subscribe > p {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 1.444em;
      font-weight: bold;
      line-height: 1.3;
      margin: 0 0 30px 0; }
      @media only screen and (max-width: 1280px) {
        body > footer .subscribe > p {
          font-size: 1.2em; } }
    body > footer .subscribe label .label,
    body > footer .subscribe input {
      padding-left: 0;
      padding-right: 0;
      background: transparent;
      color: #ffffff; }
    body > footer .subscribe label[for=email] {
      margin-bottom: 60px; }
    body > footer .subscribe .nf-response-msg {
      margin: 0;
      font-size: 15px;
      color: #00adbb; }
    body > footer .subscribe .email-container .nf-error-msg,
    body > footer .subscribe .textbox-container .nf-error-msg,
    body > footer .subscribe .checkbox-container .nf-error-msg {
      display: none; }
    body > footer .subscribe .email-wrap.submit-wrap input, body > footer .subscribe .textbox-wrap.submit-wrap input {
      -webkit-box-shadow: 0 0 0 1000px #000000 inset;
      -webkit-text-fill-color: #ffffff !important;
      border-width: 3px;
      border-color: #00adbb;
      height: auto;
      line-height: 44px;
      padding: 0 25px;
      -webkit-box-shadow: none; }
      body > footer .subscribe .email-wrap.submit-wrap input:focus, body > footer .subscribe .textbox-wrap.submit-wrap input:focus {
        -webkit-text-fill-color: #ffffff !important; }
      body > footer .subscribe .email-wrap.submit-wrap input:hover, body > footer .subscribe .textbox-wrap.submit-wrap input:hover {
        background-color: #00adbb;
        color: black; }
    body > footer .subscribe .email-wrap.nf-error input, body > footer .subscribe .textbox-wrap.nf-error input {
      border-color: #bc1f19; }
    body > footer .subscribe .email-wrap.focused label, body > footer .subscribe .textbox-wrap.focused label {
      font-size: 12px;
      line-height: 12px; }
    body > footer .subscribe .email-wrap label, body > footer .subscribe .textbox-wrap label {
      position: absolute;
      top: 0;
      z-index: 2;
      line-height: 52px;
      -webkit-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s; }
    body > footer .subscribe .email-wrap input, body > footer .subscribe .textbox-wrap input {
      -webkit-box-shadow: 0 0 0 1000px #000000 inset;
      -webkit-text-fill-color: #ffffff !important;
      border-width: 0 0 1px 0;
      border-color: #626262;
      height: 52px;
      padding: 25px 0 10px 0;
      line-height: 17px; }
      body > footer .subscribe .email-wrap input:focus, body > footer .subscribe .textbox-wrap input:focus {
        -webkit-text-fill-color: #ffffff !important; }
    body > footer .subscribe .checkbox-wrap label {
      font-size: 15px; }
    body > footer .subscribe .checkbox-wrap.nf-error input[type=checkbox] + span:before {
      border-color: #bc1f19; }
    body > footer .subscribe .submit-container {
      float: left;
      margin-top: 10px;
      margin-bottom: 10px; }
    body > footer .subscribe .ninja-forms-req-symbol {
      display: none; }
    body > footer .subscribe .nf-after-form-content {
      font-size: 15px; }
    body > footer .subscribe .nf-error-msg {
      color: #c028b9; }
  body > footer .connect {
    -webkit-box-ordinal-group: 31;
    -ms-flex-order: 30;
    order: 30; }
    body > footer .connect h2 {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 12px;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: #00adbb;
      margin: 0 0 30px 0; }
    body > footer .connect p {
      font-size: 1.222em;
      line-height: 1.45;
      margin: 0 0 30px 0; }
      @media only screen and (max-width: 1280px) {
        body > footer .connect p {
          font-size: 1em; } }
      body > footer .connect p:nth-of-type(1) {
        font-family: "galano-grotesque", arial, sans-serif;
        font-size: 1.444em;
        font-weight: bold;
        line-height: 1.3; }
        @media only screen and (max-width: 1280px) {
          body > footer .connect p:nth-of-type(1) {
            font-size: 1.2em; } }
    body > footer .connect address {
      font-style: normal;
      font-size: 1.222em;
      line-height: 1.45; }
      @media only screen and (max-width: 1280px) {
        body > footer .connect address {
          font-size: 1em; } }
    body > footer .connect nav.social {
      margin-top: auto;
      -ms-flex-item-align: start;
      align-self: flex-start; }
      body > footer .connect nav.social ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
      body > footer .connect nav.social li {
        margin-top: 10px; }
    body > footer .connect p a {
      text-decoration: none;
      color: #00adbb; }
      body > footer .connect p a:hover {
        text-decoration: underline; }
  body > footer .quicklinks {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
    body > footer .quicklinks ul {
      margin: 0;
      padding: 0;
      list-style: none;
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 1.444em;
      font-weight: bold;
      line-height: 1.3; }
      @media only screen and (max-width: 1280px) {
        body > footer .quicklinks ul {
          font-size: 1.2em; } }
    body > footer .quicklinks li {
      margin-bottom: 0.7em; }
    body > footer .quicklinks img {
      margin-top: auto;
      -ms-flex-item-align: start;
      align-self: flex-start; }
    body > footer .quicklinks a {
      text-decoration: none;
      -webkit-transition: color 0.2s;
      -o-transition: color 0.2s;
      transition: color 0.2s; }
      body > footer .quicklinks a:hover {
        color: #00adbb; }
  body > footer .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 45px 100px; }
    @media only screen and (max-width: 1280px) {
      body > footer .bottom {
        padding: 35px 40px; } }
    body > footer .bottom img {
      display: none; }
    body > footer .bottom p {
      margin: 0; }
    body > footer .bottom ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0;
      padding: 0;
      list-style: none; }
    body > footer .bottom li {
      margin-left: 50px; }
    body > footer .bottom a {
      text-decoration: none;
      -webkit-transition: color 0.2s;
      -o-transition: color 0.2s;
      transition: color 0.2s; }
      body > footer .bottom a:hover {
        color: #00adbb; }
  @media only screen and (max-width: 1400px) {
    body > footer .instagram-feed {
      padding-left: 60px;
      padding-right: 60px; }
      body > footer .instagram-feed h2 {
        margin-bottom: 50px; }
    body > footer .top > *:nth-child(4) {
      padding-left: 60px; } }
  @media only screen and (max-width: 1280px) {
    body > footer .instagram-feed {
      padding-top: 50px;
      padding-bottom: 50px;
      padding-left: 40px;
      padding-right: 40px; }
    body > footer .top > * {
      padding: 50px 40px;
      min-height: 0; }
      body > footer .top > *:nth-child(4) {
        padding-left: 40px; } }
  @media only screen and (max-width: 1230px) {
    body > footer .instagram-feed li {
      width: 33.33%; }
      body > footer .instagram-feed li:nth-child(n+4) {
        display: none; }
    body > footer .instagram-feed p {
      padding: 3vw 3.6vw;
      font-size: 1.3vw; }
    body > footer .top > * {
      width: 50%; }
    body > footer .connect {
      -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
      order: 10; }
    body > footer .instagram {
      -webkit-box-ordinal-group: 21;
      -ms-flex-order: 20;
      order: 20; }
    body > footer .quicklinks {
      -webkit-box-ordinal-group: 31;
      -ms-flex-order: 30;
      order: 30; }
    body > footer .subscribe {
      -webkit-box-ordinal-group: 41;
      -ms-flex-order: 40;
      order: 40; } }
  @media only screen and (max-width: 1000px) {
    body > footer .instagram-feed li {
      width: 50%; }
      body > footer .instagram-feed li:nth-child(n+3) {
        display: none; }
    body > footer .instagram-feed p {
      padding: 4.5vw 5.2vw;
      font-size: 1.8vw; } }
  @media only screen and (max-width: 730px) {
    body > footer .bottom {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      font-size: .75em;
      text-align: center; }
      body > footer .bottom p, body > footer .bottom nav {
        width: 100%; }
      body > footer .bottom ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 10px; }
      body > footer .bottom li {
        margin: 0; }
        body > footer .bottom li:not(:first-child) {
          margin-left: 10px; }
        body > footer .bottom li:not(:last-child):after {
          content: '/';
          display: inline-block;
          margin-left: 10px; } }
  @media only screen and (max-width: 660px) {
    body > footer .bottom {
      padding-bottom: 80px; } }
  @media only screen and (max-width: 580px) {
    body > footer .instagram-feed li {
      width: 100%; }
      body > footer .instagram-feed li:nth-child(n+2) {
        display: none; }
    body > footer .instagram-feed a:before {
      visibility: visible;
      opacity: 1; }
    body > footer .instagram-feed p {
      padding: 6.2vw 8vw;
      font-size: 3.7vw;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      visibility: visible;
      opacity: 1; }
    body > footer .top > * {
      width: 100%;
      border-left: none; }
      body > footer .top > *:nth-child(4) {
        padding-left: 45px; }
    body > footer .instagram {
      -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
      order: 10; }
      body > footer .instagram:after {
        content: '';
        display: block;
        padding-top: 80%;
        float: left; }
    body > footer .subscribe {
      -webkit-box-ordinal-group: 21;
      -ms-flex-order: 20;
      order: 20; }
    body > footer .connect {
      -webkit-box-ordinal-group: 31;
      -ms-flex-order: 30;
      order: 30; }
    body > footer .quicklinks {
      display: none; }
    body > footer .bottom {
      background-color: #181818; }
      body > footer .bottom img {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        height: 81px; }
      body > footer .bottom p {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1; } }
  @media only screen and (max-width: 430px) {
    body > footer .instagram-feed {
      padding-left: 20px;
      padding-right: 20px; }
      body > footer .instagram-feed h2 {
        margin-bottom: 30px; }
    body > footer .top > * {
      padding: 50px 20px;
      min-height: 0; }
      body > footer .top > *:nth-child(4) {
        padding-left: 20px; } }
  @media only screen and (max-width: 400px) {
    body > footer .bottom {
      padding: 35px 20px 70px; } }

.upcoming-events {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding: 100px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media only screen and (max-width: 1400px) {
    .upcoming-events {
      padding: 60px; } }
  @media only screen and (max-width: 1280px) {
    .upcoming-events {
      padding: 40px; } }
  @media only screen and (max-width: 430px) {
    .upcoming-events {
      padding: 20px; } }
  .upcoming-events h2 {
    position: relative;
    margin: 0;
    z-index: 10;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 3.111em;
    line-height: 1.17; }
    @media only screen and (max-width: 1280px) {
      .upcoming-events h2 {
        font-size: 2.4em; } }
    @media only screen and (max-width: 960px) {
      .upcoming-events h2 {
        font-size: 2em; } }
    @media only screen and (max-width: 660px) {
      .upcoming-events h2 {
        font-size: 1.75em; } }
  @media only screen and (min-width: 860px) {
    .upcoming-events .see-all-events {
      display: inline-block;
      height: 50px;
      line-height: 44px;
      border-radius: 25px;
      border: 3px solid #626262;
      padding: 0 25px;
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 17px;
      font-weight: bold;
      text-decoration: none;
      -webkit-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s;
      cursor: pointer;
      color: #ffffff;
      background: transparent;
      position: relative;
      z-index: 10;
      margin-left: 24px; }
      .upcoming-events .see-all-events:hover {
        background: #626262;
        color: #000000; }
      .upcoming-events .see-all-events:hover {
        color: #ffffff; } }
  .upcoming-events .swiper-button-prev,
  .upcoming-events .swiper-button-next {
    background-color: #313131;
    visibility: hidden; }
  .upcoming-events .see-all-events {
    visibility: hidden; }
  .upcoming-events .upcoming-events-controls {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .upcoming-events .no-events {
    position: relative;
    z-index: 10; }
  .upcoming-events.more-than-4-events .swiper-button-prev,
  .upcoming-events.more-than-4-events .swiper-button-next,
  .upcoming-events.more-than-4-events .see-all-events {
    visibility: visible; }
  .upcoming-events .the-one-div-to-bind-them-all {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 2em; }
    .upcoming-events .the-one-div-to-bind-them-all:before {
      content: '';
      position: absolute;
      background: #181818;
      left: -99em;
      right: -99em;
      top: -99em;
      bottom: 50%;
      z-index: 1; }
    .upcoming-events .the-one-div-to-bind-them-all:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0 40px 10px;
      box-shadow: rgba(0, 0, 0, 0.2) 0 0 40px 10px;
      z-index: 2; }
    .upcoming-events .the-one-div-to-bind-them-all.slides-count-1 .swiper-slide {
      width: 33.33% !important; }
    .upcoming-events .the-one-div-to-bind-them-all.slides-count-1:after {
      right: 66.66%; }
    .upcoming-events .the-one-div-to-bind-them-all.slides-count-2:after {
      right: 50%; }
    .upcoming-events .the-one-div-to-bind-them-all.slides-count-3:after {
      right: 25%; }
    .upcoming-events .the-one-div-to-bind-them-all .swiper-container {
      z-index: 3; }
  .upcoming-events .swiper-slide {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 25% !important;
    height: auto;
    text-decoration: none;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-color: #181818; }
    .upcoming-events .swiper-slide:hover:before {
      background: white;
      color: #181818; }
    .upcoming-events .swiper-slide:before {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 60px;
      height: 60px;
      text-align: center;
      line-height: 60px;
      background: #1d1d1d;
      -webkit-transition: .15s;
      -o-transition: .15s;
      transition: .15s;
      z-index: 1;
      font-size: 15px;
      color: #00adbb; }
    .upcoming-events .swiper-slide:nth-child(even) {
      background-color: #1d1d1d; }
    .upcoming-events .swiper-slide figure {
      margin: 0;
      padding-bottom: 70%;
      position: relative; }
      .upcoming-events .swiper-slide figure img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover; }
    .upcoming-events .swiper-slide .content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 50px;
      z-index: 1; }
      @media only screen and (max-width: 1280px) {
        .upcoming-events .swiper-slide .content {
          padding: 30px; } }
    .upcoming-events .swiper-slide:hover .more:after {
      left: 14px; }
    .upcoming-events .swiper-slide :first-child {
      margin-top: 0; }
    .upcoming-events .swiper-slide h4 {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 12px;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.5em;
      text-transform: uppercase; }
      .upcoming-events .swiper-slide h4 span:before {
        content: '• '; }
    .upcoming-events .swiper-slide h3 {
      margin: 0; }
    .upcoming-events .swiper-slide.workshop .more:after,
    .upcoming-events .swiper-slide.workshop h4 {
      color: #00adbb; }
    .upcoming-events .swiper-slide.show .more:after,
    .upcoming-events .swiper-slide.show h4 {
      color: #ff5100; }
    .upcoming-events .swiper-slide.tour .more:after,
    .upcoming-events .swiper-slide.tour h4 {
      color: #c028b9; }
    .upcoming-events .swiper-slide.activity .more:after,
    .upcoming-events .swiper-slide.activity h4 {
      color: #f5ba1f; }
    .upcoming-events .swiper-slide.party .more:after,
    .upcoming-events .swiper-slide.party h4 {
      color: #214077; }
    .upcoming-events .swiper-slide .more {
      margin-top: auto; }
      .upcoming-events .swiper-slide .more:after {
        font-family: 'icomoon' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "";
        position: relative;
        top: 2px;
        left: 10px;
        -webkit-transition: .15s;
        -o-transition: .15s;
        transition: .15s; }
  @media only screen and (max-width: 1600px) {
    .upcoming-events .swiper-slide h3 {
      font-size: 1em; } }
  @media only screen and (max-width: 1200px) {
    .upcoming-events .the-one-div-to-bind-them-all.slides-count-1:after {
      right: 66.66%; }
    .upcoming-events .the-one-div-to-bind-them-all.slides-count-2:after {
      right: 33.33%; }
    .upcoming-events .the-one-div-to-bind-them-all.slides-count-3:after {
      right: 0; }
    .upcoming-events.more-than-3-events .swiper-button-prev,
    .upcoming-events.more-than-3-events .swiper-button-next,
    .upcoming-events.more-than-3-events .see-all-events {
      visibility: visible; }
    .upcoming-events .swiper-slide {
      width: 33.33% !important; } }
  @media only screen and (max-width: 930px) {
    .upcoming-events .the-one-div-to-bind-them-all.slides-count-1 .swiper-slide {
      width: 50% !important; }
    .upcoming-events .the-one-div-to-bind-them-all.slides-count-1:after {
      right: 50%; }
    .upcoming-events .the-one-div-to-bind-them-all.slides-count-2:after {
      right: 0; }
    .upcoming-events.more-than-2-events .swiper-button-prev,
    .upcoming-events.more-than-2-events .swiper-button-next,
    .upcoming-events.more-than-2-events .see-all-events {
      visibility: visible; }
    .upcoming-events .swiper-slide {
      width: 50% !important; } }
  @media only screen and (max-width: 880px) {
    .upcoming-events > a {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      margin: auto;
      text-decoration: none;
      font-weight: bold; }
    .upcoming-events .swiper-container {
      padding-bottom: 30px; }
    .upcoming-events .swiper-button-prev,
    .upcoming-events .swiper-button-next {
      position: absolute;
      bottom: 26px;
      background: none; }
      .upcoming-events .swiper-button-prev:hover,
      .upcoming-events .swiper-button-next:hover {
        background: none; }
    .upcoming-events .swiper-button-prev {
      left: 20px; }
    .upcoming-events .swiper-button-next {
      right: 20px; } }
  @media only screen and (max-width: 660px) {
    .upcoming-events .the-one-div-to-bind-them-all.slides-count-1 .swiper-slide {
      width: 100% !important; }
    .upcoming-events .the-one-div-to-bind-them-all.slides-count-1:after {
      right: 0; }
    .upcoming-events.more-than-1-event .swiper-button-prev,
    .upcoming-events.more-than-1-event .swiper-button-next,
    .upcoming-events.more-than-1-event .see-all-events {
      visibility: visible; }
    .upcoming-events .swiper-slide {
      width: 100% !important; }
    .upcoming-events.no-events {
      background-color: #181818; } }
  @media only screen and (max-width: 430px) {
    .upcoming-events .swiper-container {
      padding-bottom: 60px; }
    .upcoming-events .swiper-button-prev,
    .upcoming-events .swiper-button-next {
      margin: 0; }
    .upcoming-events .swiper-button-prev {
      left: 5px; }
    .upcoming-events .swiper-button-next {
      right: 5px; }
    .upcoming-events > a {
      position: absolute;
      display: inline-block;
      bottom: 39px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      z-index: 10; } }

.the-grid {
  width: 100%; }
  .the-grid ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%; }
    .the-grid ul li {
      position: relative;
      width: 25%;
      -webkit-transition: .15s;
      -o-transition: .15s;
      transition: .15s;
      background: #000000;
      border: 1px solid #181818; }
      .the-grid ul li.is-hidden {
        -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0; }
      .the-grid ul li a {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        height: 100%;
        text-decoration: none;
        -webkit-transition: .15s;
        -o-transition: .15s;
        transition: .15s;
        z-index: 1;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
        .the-grid ul li a:before {
          content: '';
          margin-bottom: auto;
          position: relative;
          padding-bottom: 70%;
          width: 100%; }
        .the-grid ul li a:after {
          content: '';
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          border: 3px solid transparent;
          -webkit-transition: .15s;
          -o-transition: .15s;
          transition: .15s; }
        @media only screen and (min-width: 660px) {
          .the-grid ul li a:hover:after {
            border-color: #c028b9; }
          .the-grid ul li a:hover .more:after {
            left: 14px; }
          .the-grid ul li a:hover .location {
            opacity: 1; }
          .the-grid ul li a:hover h4 {
            opacity: 0; } }
      @media only screen and (min-width: 660px) {
        .the-grid ul li.mod_exhibit a:hover .more:after {
          color: #c028b9; }
        .the-grid ul li:hover .background:after {
          visibility: visible;
          opacity: 1; } }
      .the-grid ul li.workshop h4 {
        color: #00adbb; }
      .the-grid ul li.show h4 {
        color: #ff5100; }
      .the-grid ul li.tour h4 {
        color: #c028b9; }
      .the-grid ul li.activity h4 {
        color: #f5ba1f; }
      .the-grid ul li.party h4 {
        color: #214077; }
      @media only screen and (min-width: 660px) {
        .the-grid ul li.workshop a .more:after {
          color: #00adbb; }
        .the-grid ul li.show a .more:after {
          color: #ff5100; }
        .the-grid ul li.tour a .more:after {
          color: #c028b9; }
        .the-grid ul li.activity a .more:after {
          color: #f5ba1f; }
        .the-grid ul li.party a .more:after {
          color: #214077; }
        .the-grid ul li.mod_exhibit a:hover {
          border-color: #c028b9; }
        .the-grid ul li.workshop a:hover {
          border-color: #00adbb; }
        .the-grid ul li.show a:hover {
          border-color: #ff5100; }
        .the-grid ul li.tour a:hover {
          border-color: #c028b9; }
        .the-grid ul li.activity a:hover {
          border-color: #f5ba1f; }
        .the-grid ul li.party a:hover {
          border-color: #214077; } }
      .the-grid ul li h4 {
        font-family: "galano-grotesque", arial, sans-serif;
        font-size: 12px;
        font-weight: bold;
        line-height: 1;
        letter-spacing: 0.5em;
        text-transform: uppercase;
        margin-top: auto;
        margin-bottom: 2.5em;
        -webkit-transition: .15s;
        -o-transition: .15s;
        transition: .15s; }
        .the-grid ul li h4 span:before {
          content: '• '; }
      .the-grid ul li h3 {
        margin: 0; }
      .the-grid ul li .content {
        margin-top: auto;
        padding: 50px;
        position: relative;
        -webkit-transition: .15s;
        -o-transition: .15s;
        transition: .15s; }
      .the-grid ul li .background {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        padding-bottom: 70%;
        background-size: cover;
        background-position: center;
        -webkit-transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease; }
        .the-grid ul li .background:after {
          font-family: 'icomoon' !important;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          line-height: 1;
          speak: none;
          text-transform: none;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          content: "";
          visibility: hidden;
          opacity: 0;
          position: absolute;
          top: 3px;
          right: 3px;
          width: 50px;
          height: 50px;
          text-align: center;
          line-height: 50px;
          background: rgba(192, 40, 185, 0.8);
          -webkit-transition: .15s;
          -o-transition: .15s;
          transition: .15s; }
        .the-grid ul li .background.has-image {
          opacity: 1; }
          .the-grid ul li .background.has-image img {
            display: none; }
        .the-grid ul li .background img {
          display: block; }
      .the-grid ul li .excerpt,
      .the-grid ul li .tagline {
        margin-top: 0; }
      .the-grid ul li .excerpt {
        display: none; }
      .the-grid ul li h4.status {
        margin-top: 0;
        margin-bottom: 3.55em;
        color: black;
        font-size: 11px; }
        @media only screen and (max-width: 1800px) {
          .the-grid ul li h4.status {
            letter-spacing: 0.4em; } }
        @media only screen and (max-width: 1600px) {
          .the-grid ul li h4.status {
            font-size: 9px; } }
        .the-grid ul li h4.status span {
          display: inline-block;
          width: auto;
          border-radius: 30px;
          padding: 10px 15px;
          text-align: center; }
          @media only screen and (max-width: 1600px) {
            .the-grid ul li h4.status span {
              padding: 8px 10px; } }
          .the-grid ul li h4.status span:before {
            content: none; }
        .the-grid ul li h4.status.booked-out span {
          background-color: #ff5100; }
        .the-grid ul li h4.status.limited-places span {
          background-color: #f5ba1f; }
        .the-grid ul li h4.status.multiple span {
          background-color: #00adbb; }
      .the-grid ul li .date-time {
        margin-top: 1em;
        display: block;
        font-weight: 300; }
      .the-grid ul li .location {
        position: absolute;
        top: 47px;
        left: 50px;
        width: calc( 100% - 100px);
        margin: 0;
        font-family: "galano-grotesque", arial, sans-serif;
        font-size: 12px;
        font-weight: bold;
        opacity: 0;
        -webkit-transition: .15s;
        -o-transition: .15s;
        transition: .15s; }
        .the-grid ul li .location span:not(:last-child):after {
          content: '• ';
          margin: 0 2px 0 6px; }
        @media only screen and (max-width: 1480px) {
          .the-grid ul li .location {
            top: 32px;
            left: 35px;
            width: calc( 100% - 70px); } }
        @media only screen and (max-width: 1030px) {
          .the-grid ul li .location {
            top: 27px;
            left: 30px;
            width: calc( 100% - 60px); } }
      .the-grid ul li:nth-child(10n + 1), .the-grid ul li:nth-child(10n + 6) {
        width: 50%; }
        .the-grid ul li:nth-child(10n + 1) a, .the-grid ul li:nth-child(10n + 6) a {
          -webkit-box-align: end;
          -ms-flex-align: end;
          align-items: flex-end; }
          .the-grid ul li:nth-child(10n + 1) a:before, .the-grid ul li:nth-child(10n + 6) a:before {
            width: 50%;
            padding-bottom: 35%; }
          @media only screen and (min-width: 660px) {
            .the-grid ul li:nth-child(10n + 1) a:hover .content, .the-grid ul li:nth-child(10n + 6) a:hover .content {
              background: rgba(192, 40, 185, 0.8); } }
        .the-grid ul li:nth-child(10n + 1) .content, .the-grid ul li:nth-child(10n + 6) .content {
          background: rgba(0, 0, 0, 0.8);
          width: 50%; }
        .the-grid ul li:nth-child(10n + 1) .excerpt, .the-grid ul li:nth-child(10n + 6) .excerpt {
          display: block; }
        .the-grid ul li:nth-child(10n + 1) .tagline, .the-grid ul li:nth-child(10n + 6) .tagline {
          font-size: 1.222em; }
        .the-grid ul li:nth-child(10n + 1) .background, .the-grid ul li:nth-child(10n + 6) .background {
          display: block;
          padding-bottom: 0;
          bottom: 0; }
          .the-grid ul li:nth-child(10n + 1) .background.has-image:after, .the-grid ul li:nth-child(10n + 6) .background.has-image:after {
            top: 0; }
        @media only screen and (max-width: 480px) {
          .the-grid ul li:nth-child(10n + 1) a:before, .the-grid ul li:nth-child(10n + 6) a:before {
            width: 100%;
            padding-bottom: 70%; }
          .the-grid ul li:nth-child(10n + 1) .content, .the-grid ul li:nth-child(10n + 6) .content {
            background: transparent;
            width: 100%; }
          .the-grid ul li:nth-child(10n + 1) .background, .the-grid ul li:nth-child(10n + 6) .background {
            padding-bottom: 70%;
            bottom: auto; } }
  @media only screen and (max-width: 1480px) {
    .the-grid ul li a .content {
      padding: 35px; } }
  @media only screen and (max-width: 1180px) {
    .the-grid ul li {
      width: 33.33%; }
      .the-grid ul li:nth-child(10n + 1), .the-grid ul li:nth-child(10n + 6) {
        width: 66.66%; } }
  @media only screen and (max-width: 1030px) {
    .the-grid ul li a .content {
      padding: 30px; } }
  @media only screen and (max-width: 830px) {
    .the-grid ul li {
      width: 50%; }
      .the-grid ul li:before {
        padding-top: 120%; }
      .the-grid ul li:nth-child(10n + 1), .the-grid ul li:nth-child(10n + 6) {
        width: 100%; }
        .the-grid ul li:nth-child(10n + 1):before, .the-grid ul li:nth-child(10n + 6):before {
          padding-top: 60%; } }
  @media only screen and (max-width: 720px) {
    .the-grid .event-type {
      display: none; }
    .the-grid ul li a .content {
      padding: 30px; } }
  @media only screen and (max-width: 540px) {
    .the-grid ul li a .content {
      padding: 20px; } }
  @media only screen and (max-width: 480px) {
    .the-grid ul li {
      width: 100%;
      margin: 10px 0;
      overflow: hidden; }
      .the-grid ul li:before {
        padding-top: 70%; }
      .the-grid ul li a .content {
        padding: 30px 20px;
        border: 0; } }

.top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .top-info header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: 0;
    left: 100px;
    bottom: 0;
    padding: 100px;
    right: 37%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(37% - 20px);
    overflow: hidden; }
    @media only screen and (max-width: 1400px) {
      .top-info header {
        padding: 60px; } }
    @media only screen and (max-width: 1280px) {
      .top-info header {
        padding: 40px; } }
    @media only screen and (max-width: 430px) {
      .top-info header {
        padding: 20px; } }
    .top-info header h2 {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 12px;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: #00adbb;
      margin: 0; }
    .top-info header h1 {
      font-size: 3.111em;
      line-height: 1;
      margin: .7em 0; }
    .top-info header h3 {
      margin: 0;
      font-weight: normal;
      font-size: 1.333em;
      max-width: 375px; }
    .top-info header .pages {
      list-style: none;
      padding: 0;
      font-size: 1.1em; }
      .top-info header .pages li {
        margin: .8em 0; }
      .top-info header .pages a {
        text-decoration: none;
        -webkit-transition: .15s;
        -o-transition: .15s;
        transition: .15s; }
        .top-info header .pages a:after {
          display: inline-block;
          font-family: 'icomoon' !important;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          line-height: 1;
          speak: none;
          text-transform: none;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          content: "";
          margin-left: 1em;
          font-size: .9em;
          color: #ffffff;
          opacity: 0;
          -webkit-transition: .15s;
          -o-transition: .15s;
          transition: .15s; }
        .top-info header .pages a:hover {
          color: #00adbb; }
          .top-info header .pages a:hover:after {
            color: #00adbb;
            opacity: 1;
            -webkit-transform: translateX(4px);
            -ms-transform: translateX(4px);
            transform: translateX(4px); }
    .top-info header .translations {
      display: none; }
      .top-info header .translations a {
        text-decoration: none;
        border-bottom: 3px solid #000000;
        display: inline-block;
        padding: 20px; }
    .top-info header .top {
      padding-bottom: 30px; }
      .top-info header .top a.visit {
        display: inline-block;
        height: 50px;
        line-height: 44px;
        border-radius: 25px;
        border: 3px solid #ffffff;
        padding: 0 25px;
        font-family: "galano-grotesque", arial, sans-serif;
        font-size: 17px;
        font-weight: bold;
        text-decoration: none;
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s;
        cursor: pointer;
        color: #ffffff;
        background: transparent;
        margin-top: 4.444em; }
        .top-info header .top a.visit:hover {
          background: #ffffff;
          color: #000000; }
    .top-info header .bottom {
      margin-top: auto;
      z-index: -1; }
      .top-info header .bottom :last-child {
        margin-bottom: 0; }
      .top-info header .bottom p {
        margin: 0; }
    .top-info header .background {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background-size: cover;
      background-position: center;
      opacity: .1;
      z-index: -1; }
  .top-info.hide-bottom .bottom {
    opacity: 0; }
  .top-info .content {
    position: relative;
    width: 63%;
    max-width: calc(100vw - 600px);
    margin-left: auto;
    padding: 100px;
    background: #ffffff;
    color: #000000;
    min-height: 100vh; }
    @media only screen and (max-width: 1400px) {
      .top-info .content {
        padding: 60px; } }
    @media only screen and (max-width: 1280px) {
      .top-info .content {
        padding: 40px; } }
    @media only screen and (max-width: 430px) {
      .top-info .content {
        padding: 20px; } }
    .top-info .content > div:first-of-type > figure:first-of-type img.size-large {
      margin-top: -200px; }
      @media only screen and (max-width: 1400px) {
        .top-info .content > div:first-of-type > figure:first-of-type img.size-large {
          margin-top: -160px; } }
      @media only screen and (max-width: 1280px) {
        .top-info .content > div:first-of-type > figure:first-of-type img.size-large {
          margin-top: -134px; } }
      @media only screen and (max-width: 1023px) {
        .top-info .content > div:first-of-type > figure:first-of-type img.size-large {
          margin-top: -88px; } }
      @media only screen and (max-width: 660px) {
        .top-info .content > div:first-of-type > figure:first-of-type img.size-large {
          margin-top: -72px; } }
      @media only screen and (max-width: 440px) {
        .top-info .content > div:first-of-type > figure:first-of-type img.size-large {
          margin-top: -52px; } }
    .top-info .content figure.wp-caption {
      margin: 3em 0;
      width: auto !important;
      position: relative; }
      .top-info .content figure.wp-caption:first-of-type {
        margin: 0; }
    .top-info .content img.size-large,
    .top-info .content .feature-video {
      width: calc(100% + 200px);
      max-width: calc(100% + 200px);
      margin: -100px -100px 0 -100px;
      display: block; }
    .top-info .content .feature-video {
      position: relative;
      padding-bottom: 85%;
      background: #000000; }
      .top-info .content .feature-video button {
        background-color: transparent;
        border: none;
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 2;
        width: 104px;
        height: 104px;
        cursor: pointer;
        background-image: url("../images/play-button.png");
        background-size: 100% auto;
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0); }
      .top-info .content .feature-video video {
        position: absolute;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover; }
      .top-info .content .feature-video .controls progress span {
        background-color: red; }
    .top-info .content .translations {
      line-height: 1;
      font-weight: bold;
      background-color: #ebebeb;
      position: relative;
      z-index: 0; }
      .top-info .content .translations:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 9999em;
        left: -4444em;
        z-index: -1;
        background: #ebebeb; }
      .top-info .content .translations a {
        text-decoration: none;
        border-bottom: 3px solid #000000;
        display: inline-block;
        padding: 20px; }
        .top-info .content .translations a.current {
          background: white;
          border-color: white; }
      @media only screen and (max-width: 1023px) {
        .top-info .content .translations {
          font-size: 13px; }
          .top-info .content .translations a {
            padding: 15px; } }
      @media only screen and (max-width: 430px) {
        .top-info .content .translations {
          font-size: 11px; }
          .top-info .content .translations a {
            padding: 10px; } }
    .top-info .content .main-content figure:first-child img {
      margin-top: 0; }
    .top-info .content h2 {
      font-size: 3.111em;
      line-height: 1.2;
      margin: 0.5em 0; }
    .top-info .content h3 {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 1.222em;
      font-weight: 700; }
    .top-info .content p a {
      text-decoration: none;
      border-bottom: 1px solid #00adbb;
      -webkit-transition: color 0.2s ease;
      -o-transition: color 0.2s ease;
      transition: color 0.2s ease; }
      .top-info .content p a:hover {
        color: #00adbb; }
    .top-info .content .top {
      -webkit-transition: .05s;
      -o-transition: .05s;
      transition: .05s; }
    .top-info .content .bottom {
      margin-top: auto; }
    .top-info .content .excerpt {
      font-size: 1.222em;
      border-bottom: 1px solid #979797;
      margin-bottom: 2em;
      padding-bottom: 1em; }
  .top-info.has-translations .content img.size-large + figcaption {
    max-width: 50%;
    display: block;
    width: 100%;
    text-align: right;
    right: 0; }
  .top-info .details {
    position: relative;
    margin-top: 100px;
    margin-bottom: 3em; }
    @media only screen and (max-width: 1023px) {
      .top-info .details {
        margin-top: 50px; } }
    .top-info .details h3 {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 12px;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.5em;
      text-transform: uppercase; }
    .top-info .details .date-range,
    .top-info .details .time,
    .top-info .details .cost {
      font-size: 1.667em; }
    .top-info .details .time span:before {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "";
      position: relative;
      margin: 0 4px;
      top: -2px;
      font-size: 15px; }
    .top-info .details .location,
    .top-info .details .rating {
      font-family: 'galano-grotesque', sans-serif;
      font-size: 0.944em;
      font-weight: bold; }
    .top-info .details .location span:not(:last-child):after {
      content: '• ';
      margin: 0 2px 0 6px; }
    .top-info .details .rating:before {
      display: inline-block;
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: ""; }
    .top-info .details .rating.rating-g:before {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: ""; }
    .top-info .details .rating.rating-pg:before {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: ""; }
    .top-info .details .rating.rating-m:before {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: ""; }
    .top-info .details .rating.rating-ma:before {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: ""; }
    .top-info .details .rating.rating-r:before {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: ""; }
    .top-info .details .rating span {
      display: inline-block;
      text-indent: -9999em; }
    .top-info .details .social h3 {
      margin: 0 0 3rem; }
      .single-mod_event .top-info .details .social h3,
      .single-mod_exhibit .top-info .details .social h3 {
        display: none; }
    .top-info .details .social ul a {
      color: #000000; }
      .top-info .details .social ul a:hover {
        color: #00adbb; }
    @media only screen and (min-width: 1100px) {
      .top-info .details .social .item--messenger {
        display: none; } }
    .top-info .details > div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .top-info .details > div > div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1; }
        .top-info .details > div > div > div {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          .top-info .details > div > div > div p {
            margin: 0; }
          .top-info .details > div > div > div p:first-child:not(:last-child):after {
            content: '/';
            display: inline-block;
            margin: 0 .5em; }
  .top-info .details + .block {
    margin-top: 0; }
    .top-info .details + .block.block-list > ul > li:first-child {
      padding-top: 0; }
  .top-info .map + .details {
    display: none; }
  .top-info .map {
    position: relative;
    margin: -100px -100px 0 -100px;
    background: #e5e3df;
    overflow: hidden; }
    .top-info .map:before {
      content: '';
      display: block;
      float: left;
      padding-bottom: 47%; }
    .top-info .map .map-canvas {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
  .top-info .also-in {
    border-top: 1px solid #cecece;
    padding-top: 5.556em; }
    .top-info .also-in h3 {
      font-size: 1.444em;
      margin-top: 0; }
    .top-info .also-in ul {
      padding: 0;
      list-style: none; }
      .top-info .also-in ul li {
        display: inline-block;
        font-size: 1.444em;
        padding-bottom: 10px; }
        .top-info .also-in ul li:not(:last-of-type):after {
          content: '/';
          padding: 0 14px 0 9px; }
    .top-info .also-in a {
      text-decoration: none;
      border-bottom: 1px solid #00adbb;
      padding-bottom: 5px; }
    @media only screen and (max-width: 1023px) {
      .top-info .also-in {
        padding-top: 3em; }
        .top-info .also-in h3, .top-info .also-in ul li {
          font-size: 1.3em; } }
    @media only screen and (max-width: 660px) {
      .top-info .also-in {
        padding-top: 2em; }
        .top-info .also-in h3, .top-info .also-in ul li {
          font-size: 1.1em; } }
    @media only screen and (max-width: 400px) {
      .top-info .also-in h3 {
        font-size: 1em; }
      .top-info .also-in ul li {
        font-size: .9em; } }
  .top-info .tabs {
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .top-info .tabs li {
      display: inline-block;
      font-size: 1.222em;
      font-family: "galano-grotesque", arial, sans-serif;
      padding-bottom: 10px; }
      .top-info .tabs li:not(:last-of-type):after {
        content: '/';
        padding: 0 0.55em 0 0.55em; }
      .top-info .tabs li.current span {
        border-bottom: 3px solid #00adbb; }
    .top-info .tabs span {
      text-decoration: none;
      border-bottom: 1px solid #cdcdcd;
      padding-bottom: 5px;
      cursor: pointer; }
    @media only screen and (max-width: 1023px) {
      .top-info .tabs li {
        font-size: 1.3em; } }
    @media only screen and (max-width: 660px) {
      .top-info .tabs li {
        font-size: 1.1em; } }
    @media only screen and (max-width: 400px) {
      .top-info .tabs li {
        font-size: .9em; } }
  .top-info .tab-content {
    position: relative;
    overflow: hidden; }
    .top-info .tab-content .tab-pane {
      position: absolute;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: .2s;
      -o-transition: .2s;
      transition: .2s;
      top: 0;
      left: 0; }
      .top-info .tab-content .tab-pane.current {
        visibility: visible;
        position: relative;
        opacity: 1; }
  .top-info .navigation {
    border-top: 1px solid #d7d7d7;
    padding-top: 4em;
    margin-top: 4em; }
    .top-info .navigation span {
      display: block;
      font-size: 1.444em;
      font-weight: bold;
      font-family: "galano-grotesque", arial, sans-serif;
      margin-bottom: 2.5em;
      line-height: 1; }
    .top-info .navigation a {
      -webkit-transition: color 0.2s;
      -o-transition: color 0.2s;
      transition: color 0.2s;
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 17px;
      font-weight: bold;
      text-decoration: none;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      font-weight: normal;
      font-size: 1.444em; }
      .top-info .navigation a:hover {
        color: #00adbb; }
      .top-info .navigation a:after {
        font-family: 'icomoon' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "";
        font-size: 1.2em;
        margin-left: 0.5em;
        position: relative;
        left: 0px;
        -webkit-transition: left 0.15s;
        -o-transition: left 0.15s;
        transition: left 0.15s; }
      .top-info .navigation a:hover:after {
        left: 4px; }
      .top-info .navigation a:hover {
        color: inherit; }
      .top-info .navigation a:after {
        color: #00adbb;
        font-size: .889em;
        margin-left: 1em; }
  @media only screen and (max-width: 1680px) {
    .top-info .details .date-range,
    .top-info .details .time,
    .top-info .details .cost {
      font-size: 1.2em; }
    .top-info .details:after {
      left: -150px; } }
  @media only screen and (max-width: 1470px) {
    .top-info header h1 {
      font-size: 2.7em; }
    .top-info nav.social ul li:not(:first-of-type) {
      margin-left: 10px; } }
  @media only screen and (max-width: 1400px) {
    .top-info .content {
      max-width: calc(100vw - 520px); }
      .top-info .content img.feature {
        width: calc(100% + 100px);
        max-width: calc(100% + 100px);
        margin: -100px 0 0 0; }
      .top-info .content img.size-large {
        width: calc(100% + 120px);
        max-width: calc(100% + 120px);
        margin: -60px 0 0 -60px; }
    .top-info .map {
      margin: -60px -60px 100px -60px; }
    .top-info .details:after {
      left: -100px; } }
  @media only screen and (max-width: 1280px) {
    .top-info header h1 {
      font-size: 2.6em; }
    .top-info header h3 {
      font-size: 1.222em; }
    .top-info .content {
      max-width: calc(100vw - 500px); }
      .top-info .content img.feature {
        width: calc(100% + 60px);
        max-width: calc(100% + 60px);
        margin: -100px 0 0 0; }
      .top-info .content img.size-large,
      .top-info .content .feature-video {
        width: calc(100% + 80px);
        max-width: calc(100% + 80px);
        margin: -40px 0 0 -40px; }
    .top-info .map {
      margin: -40px -40px 40px -40px; }
    .top-info .details:after {
      left: -60px; } }
  @media only screen and (max-width: 1180px) {
    .top-info header {
      width: calc(30% - 31px);
      right: 30%; }
      .top-info header h1 {
        font-size: 2em; }
      .top-info header h3 {
        font-size: 1em; }
    .top-info .content {
      width: 70%;
      max-width: 70%; }
    .top-info .details:after {
      left: 0; } }
  @media only screen and (max-width: 1023px) {
    .top-info {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .top-info header {
        position: relative;
        width: 100%;
        max-width: 100%;
        right: auto;
        left: auto; }
      .top-info .navigation {
        padding-top: 3em;
        margin-top: 3em; }
        .top-info .navigation span {
          margin-bottom: 1em; }
      .top-info .content {
        width: 100%;
        max-width: 100%;
        min-height: 0; } }
  @media only screen and (max-width: 760px) {
    .top-info .details > div {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .top-info .details > div > nav {
        width: 100%;
        margin-top: 2em; }
    .top-info .content h2 {
      font-size: 2.6em; } }
  @media only screen and (max-width: 660px) {
    .top-info header .translations {
      display: block; }
    .top-info .navigation {
      padding-top: 2em;
      margin-top: 2em; }
      .top-info .navigation span {
        margin-bottom: .5em; }
    .top-info .map:before {
      padding-bottom: 65%; }
    .top-info .content img.size-large,
    .top-info .content .feature-video {
      margin: -40px -40px 0 -40px;
      width: calc(100% + 80px);
      max-width: calc(100% + 80px); }
      .top-info .content img.size-large + figcaption,
      .top-info .content .feature-video + figcaption {
        right: auto; }
    .top-info.has-translations .content img.size-large + figcaption {
      position: relative;
      top: auto;
      max-width: 100%;
      text-align: left;
      right: auto; } }
  @media only screen and (max-width: 430px) {
    .top-info .content img.size-large,
    .top-info .content .feature-video {
      margin: -20px -20px 0 -20px;
      width: calc(100% + 40px);
      max-width: calc(100% + 40px); } }
  @media only screen and (max-width: 400px) {
    .top-info .map {
      margin: -20px -20px 30px -20px; }
    .top-info .details .date-range,
    .top-info .details .time,
    .top-info .details .cost {
      font-size: 1em; } }

.large-text {
  position: absolute;
  text-transform: uppercase;
  font-family: "galano-grotesque", arial, sans-serif;
  color: #222222;
  font-weight: bold;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
  -webkit-transition: .05s;
  -o-transition: .05s;
  transition: .05s;
  font-size: 350px;
  line-height: 274px;
  top: auto;
  bottom: 0;
  left: -130px; }
  @media only screen and (max-width: 1400px) {
    .large-text {
      font-size: 270px;
      line-height: 205px;
      left: -55px; } }
  @media only screen and (max-width: 1180px) {
    .large-text {
      font-size: 180px;
      line-height: 137px;
      left: -63px; } }
  @media only screen and (max-width: 1023px) {
    .large-text {
      display: none; } }

.back {
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  color: #00adbb;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .back:before {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-size: 1.3em;
    margin-right: 10px;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s; }
  .back span {
    margin-right: 8px; }
    .back span:after {
      content: ' /'; }
  .back:hover:before {
    -webkit-transform: translateX(-4px);
    -ms-transform: translateX(-4px);
    transform: translateX(-4px); }
  @media only screen and (min-width: 1024px) and (max-width: 1180px) {
    .back span {
      display: none; } }
  @media only screen and (max-width: 430px) {
    .back span {
      display: none; } }

.date-range span:before {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 14px;
  top: -2px;
  font-size: 15px; }

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  top: auto;
  left: auto;
  right: auto;
  margin: 0 6px;
  background-image: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #181818;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #00adbb;
  -webkit-transition: .15s;
  -o-transition: .15s;
  transition: .15s; }
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background-color: #444444; }

.swiper-button-prev:after {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.swiper-button-next:after {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.qs-datepicker {
  border: 0;
  border-radius: 0;
  color: #ffffff; }
  .qs-datepicker .qs-controls {
    background-color: #000000;
    color: #d7d7d7; }
  .qs-datepicker .qs-arrow.qs-left,
  .qs-datepicker .qs-arrow.qs-right {
    padding: 0 20px; }
    .qs-datepicker .qs-arrow.qs-left:after,
    .qs-datepicker .qs-arrow.qs-right:after {
      border: 0;
      -webkit-transition: .15s;
      -o-transition: .15s;
      transition: .15s; }
    .qs-datepicker .qs-arrow.qs-left:hover:after,
    .qs-datepicker .qs-arrow.qs-right:hover:after {
      color: #00adbb; }
  .qs-datepicker .qs-arrow.qs-left:after {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: ""; }
  .qs-datepicker .qs-arrow.qs-right:after {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: ""; }
  .qs-datepicker .qs-squares {
    background-color: #181818; }
  .qs-datepicker .qs-square.qs-day {
    color: #eaeaea; }
  .qs-datepicker .qs-square.qs-active {
    background-color: #c028b9; }
  .qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):hover {
    background-color: #00adbb; }

section.bottom {
  position: relative;
  padding: 100px;
  z-index: 10; }
  @media only screen and (max-width: 1400px) {
    section.bottom {
      padding: 60px; } }
  @media only screen and (max-width: 1280px) {
    section.bottom {
      padding: 40px; } }
  @media only screen and (max-width: 430px) {
    section.bottom {
      padding: 20px; } }
  section.bottom .background-image {
    content: '';
    position: absolute;
    top: 0;
    right: 70px;
    bottom: 0;
    width: 70%;
    background-size: 900px auto;
    z-index: -1;
    background-position: right bottom;
    background-repeat: no-repeat; }
  @media only screen and (max-width: 1400px) {
    section.bottom .background-image {
      background-size: 550px auto; } }
  @media only screen and (max-width: 1000px) {
    section.bottom .background-image {
      background-size: 350px auto; } }
  @media only screen and (max-width: 660px) {
    section.bottom {
      display: none; } }

.call-to-action {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #7a2682;
  font-family: "galano-grotesque", arial, sans-serif;
  font-weight: bold;
  padding: 32px 55px;
  text-decoration: none;
  -webkit-transition: .15s;
  -o-transition: .15s;
  transition: .15s;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
  z-index: 10; }
  .call-to-action:after {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    display: inline-block;
    margin-left: 10px;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s; }
  .call-to-action:hover {
    background-color: #c028b9; }
    .call-to-action:hover:after {
      -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
      transform: translateX(4px); }
  @media only screen and (max-width: 1400px) {
    .call-to-action {
      padding: 18px 38px; } }
  @media only screen and (max-width: 860px) {
    .call-to-action {
      display: none; } }

.pagination {
  padding: 100px 0;
  text-align: center; }
  @media only screen and (max-width: 1400px) {
    .pagination {
      padding: 60px 0; } }
  @media only screen and (max-width: 1280px) {
    .pagination {
      padding: 40px 0; } }
  @media only screen and (max-width: 430px) {
    .pagination {
      padding: 20px 0; } }
  .pagination .page-numbers {
    display: none; }
    .pagination .page-numbers.next {
      display: inline-block;
      display: inline-block;
      height: 50px;
      line-height: 44px;
      border-radius: 25px;
      border: 3px solid #00adbb;
      padding: 0 25px;
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 17px;
      font-weight: bold;
      text-decoration: none;
      -webkit-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s;
      cursor: pointer;
      color: #ffffff;
      background: transparent;
      position: relative;
      color: #000000; }
      .pagination .page-numbers.next:hover {
        background: #00adbb;
        color: #000000; }
      .pagination .page-numbers.next:before {
        content: '';
        position: absolute;
        display: block;
        width: 30px;
        height: 30px;
        border: 8px solid rgba(0, 173, 187, 0.4);
        border-top-color: #00adbb;
        border-radius: 100%;
        -webkit-animation: loading .6s infinite linear .25s;
        animation: loading .6s infinite linear .25s;
        top: 50%;
        left: 50%;
        margin: -15px 0 0 -15px;
        visibility: hidden; }
      .pagination .page-numbers.next.is-loading {
        color: rgba(255, 255, 255, 0); }
        .pagination .page-numbers.next.is-loading:before {
          visibility: visible; }
        .pagination .page-numbers.next.is-loading:hover {
          background: transparent; }

.filter-results,
ul.results,
.pagination {
  -webkit-transition: .15s;
  -o-transition: .15s;
  transition: .15s; }
  .filter-results.is-loading,
  ul.results.is-loading,
  .pagination.is-loading {
    opacity: .4; }

ul.results li {
  -webkit-transition: .15s;
  -o-transition: .15s;
  transition: .15s; }
  ul.results li.is-hidden {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0; }

.icons li > div {
  position: absolute; }

.icons img {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 450ms;
  animation-duration: 450ms;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.icons .transition-out {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3) translate3d(0, 0, 0);
    transform: scale(0.3) translate3d(0, 0, 0); }
  60% {
    opacity: 0.9;
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0); } }

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3) translate3d(0, 0, 0);
    transform: scale(0.3) translate3d(0, 0, 0); }
  60% {
    opacity: 0.9;
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0); } }

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

.page-template-default body {
  background: #181818; }

.page-template-default .large-text {
  text-transform: none; }

.page-template-default .top-info .details {
  margin-bottom: 5em;
  padding-bottom: 5em; }

@media only screen and (max-width: 1023px) {
  .page-template-default .top-info .details {
    margin-bottom: 3em;
    padding-bottom: 3em; } }

@media only screen and (max-width: 760px) {
  .page-template-default .top-info .details {
    margin-bottom: 30px;
    padding-bottom: 40px; } }

@media only screen and (max-width: 660px) {
  .page-template-default .top-info .details {
    margin-bottom: 2em;
    padding-bottom: 2em; }
    .page-template-default .top-info .details .social h3 {
      margin: 0 0 2rem; } }

.content .subpages > div {
  position: relative;
  padding: 50px 0; }
  .content .subpages > div h2 {
    margin-top: 0; }
    .content .subpages > div h2 a {
      text-decoration: none; }
  .content .subpages > div p {
    margin-bottom: 2em; }
  .content .subpages > div > a {
    display: inline-block;
    height: 50px;
    line-height: 44px;
    border-radius: 25px;
    border: 3px solid #00adbb;
    padding: 0 25px;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    color: #ffffff;
    background: transparent;
    color: #000000; }
    .content .subpages > div > a:hover {
      background: #00adbb;
      color: #000000; }
  .content .subpages > div:after {
    content: '';
    position: absolute;
    left: -100px;
    right: -100px;
    bottom: 0;
    height: 1px;
    background: #cecece; }
  .content .subpages > div:last-of-type {
    padding-bottom: 0; }
    .content .subpages > div:last-of-type:after {
      content: none; }
  @media only screen and (max-width: 1023px) {
    .content .subpages > div {
      padding: 30px 0 40px; } }

.page-template-page-landing .top-info header {
  background: url("../images/morphtangle-half.png") bottom left no-repeat;
  background-size: 100% auto; }

.page-template-page-landing .content {
  overflow: hidden; }

@media only screen and (max-width: 1023px) {
  .page-template-page-landing .top-info header {
    background-image: none; } }

.home body {
  background: #000000; }

.home section {
  position: relative;
  padding: 100px; }
  @media only screen and (max-width: 1400px) {
    .home section {
      padding: 60px; } }
  @media only screen and (max-width: 1280px) {
    .home section {
      padding: 40px; } }
  @media only screen and (max-width: 430px) {
    .home section {
      padding: 20px; } }
  .home section :first-child {
    margin-top: 0; }

.home .slideshow {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  overflow: hidden; }
  .home .slideshow .swiper-pagination {
    bottom: auto;
    top: 100px;
    width: auto;
    line-height: 1;
    font-size: 0;
    padding: 0 100px; }
    @media only screen and (max-width: 1400px) {
      .home .slideshow .swiper-pagination {
        padding: 0 60px; } }
    @media only screen and (max-width: 1280px) {
      .home .slideshow .swiper-pagination {
        padding: 0 40px; } }
    @media only screen and (max-width: 430px) {
      .home .slideshow .swiper-pagination {
        padding: 0 20px; } }
    .home .slideshow .swiper-pagination .swiper-pagination-bullet {
      background: #808080;
      opacity: 1;
      width: 14px;
      height: 14px;
      -webkit-transition: .15s;
      -o-transition: .15s;
      transition: .15s;
      margin-left: 11px; }
      .home .slideshow .swiper-pagination .swiper-pagination-bullet:first-of-type {
        margin-left: 0; }
    .home .slideshow .swiper-pagination .swiper-pagination-bullet-active {
      background: white; }
  .home .slideshow .swiper-container {
    overflow: visible; }
  .home .slideshow .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    max-height: 100vh;
    padding: 170px 0 70px 100px;
    overflow: hidden; }
    .home .slideshow .swiper-slide.type-video-fullscreen .content {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center;
      padding: 50px; }
    .home .slideshow .swiper-slide.type-video-fullscreen .media {
      width: 100%;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; }
      .home .slideshow .swiper-slide.type-video-fullscreen .media video {
        width: 100%;
        height: 100%;
        opacity: 0.5;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        -o-object-fit: cover;
        object-fit: cover;
        font-family: 'object-fit: cover'; }
    .home .slideshow .swiper-slide .content {
      position: relative;
      width: 37%;
      z-index: 10; }
      .home .slideshow .swiper-slide .content h1 {
        font-family: "galano-grotesque", arial, sans-serif;
        font-size: 4.444em;
        line-height: 1;
        line-height: 1.03; }
        @media only screen and (max-width: 1280px) {
          .home .slideshow .swiper-slide .content h1 {
            font-size: 3.4em; } }
        @media only screen and (max-width: 960px) {
          .home .slideshow .swiper-slide .content h1 {
            font-size: 2.8em; } }
        @media only screen and (max-width: 660px) {
          .home .slideshow .swiper-slide .content h1 {
            font-size: 2.2em; } }
        @media only screen and (max-width: 450px) {
          .home .slideshow .swiper-slide .content h1 {
            font-size: 2em; } }
      .home .slideshow .swiper-slide .content p {
        font-family: "galano-grotesque", arial, sans-serif;
        font-size: 3.2em;
        font-weight: bold;
        text-transform: uppercase;
        line-height: 1.1;
        max-width: 8em;
        margin: 1em 0 1.6em 0; }
      .home .slideshow .swiper-slide .content a {
        display: inline-block;
        height: 50px;
        line-height: 44px;
        border-radius: 25px;
        border: 3px solid white;
        padding: 0 25px;
        font-family: "galano-grotesque", arial, sans-serif;
        font-size: 17px;
        font-weight: bold;
        text-decoration: none;
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s;
        cursor: pointer;
        color: #ffffff;
        background: transparent;
        white-space: nowrap; }
        .home .slideshow .swiper-slide .content a:hover {
          background: white;
          color: #000000; }
    .home .slideshow .swiper-slide .media {
      width: 45%; }
      .home .slideshow .swiper-slide .media video {
        position: relative;
        width: 190%;
        height: auto;
        -webkit-transform: translate(-23%, -20%);
        -ms-transform: translate(-23%, -20%);
        transform: translate(-23%, -20%); }
    .home .slideshow .swiper-slide .exhibition {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; }
      .home .slideshow .swiper-slide .exhibition:before {
        content: '';
        display: block;
        pointer-events: none;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 60%;
        z-index: 2;
        background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(#000000));
        background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0) 0%, #000000 100%);
        background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0) 0%, #000000 100%);
        background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, #000000 100%); }
      .home .slideshow .swiper-slide .exhibition .horizontal-lines,
      .home .slideshow .swiper-slide .exhibition .vertical-lines {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1; }
        .home .slideshow .swiper-slide .exhibition .horizontal-lines:before, .home .slideshow .swiper-slide .exhibition .horizontal-lines:after,
        .home .slideshow .swiper-slide .exhibition .vertical-lines:before,
        .home .slideshow .swiper-slide .exhibition .vertical-lines:after {
          content: '';
          position: absolute;
          background-color: #313131; }
      .home .slideshow .swiper-slide .exhibition .horizontal-lines:before, .home .slideshow .swiper-slide .exhibition .horizontal-lines:after {
        height: 1px;
        width: 100%;
        left: 0; }
      .home .slideshow .swiper-slide .exhibition .horizontal-lines:before {
        top: 33.33%; }
      .home .slideshow .swiper-slide .exhibition .horizontal-lines:after {
        top: 66.66%; }
      .home .slideshow .swiper-slide .exhibition .vertical-lines:before, .home .slideshow .swiper-slide .exhibition .vertical-lines:after {
        height: 100%;
        width: 1px;
        top: 0; }
      .home .slideshow .swiper-slide .exhibition .vertical-lines:before {
        left: 25%; }
      .home .slideshow .swiper-slide .exhibition .vertical-lines:after {
        left: 50%; }
      .home .slideshow .swiper-slide .exhibition .image {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-size: cover;
        background-position: center center; }
    .home .slideshow .swiper-slide .icons {
      margin: 0;
      padding: 0;
      list-style: none;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: -1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .home .slideshow .swiper-slide .icons li {
        width: 25%;
        height: 33.33%;
        overflow: hidden;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative; }
        .home .slideshow .swiper-slide .icons li > div {
          padding: 15% 25%;
          height: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; }
      .home .slideshow .swiper-slide .icons img {
        width: auto;
        max-width: 100%;
        max-height: 100%; }
    .home .slideshow .swiper-slide .animations {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 63%;
      max-width: calc(100vw - 760px); }
      .home .slideshow .swiper-slide .animations .animation {
        position: absolute;
        background-size: cover;
        -webkit-transition: .2s;
        -o-transition: .2s;
        transition: .2s; }
      .home .slideshow .swiper-slide .animations .animation-01 {
        top: 0;
        left: 0;
        background-color: #333333; }
      .home .slideshow .swiper-slide .animations .animation-02 {
        top: 0;
        right: 0;
        background-color: #666666; }
      .home .slideshow .swiper-slide .animations .animation-03 {
        bottom: 0;
        right: 0;
        background-color: #999999; }
      .home .slideshow .swiper-slide .animations .animation-04 {
        bottom: 0;
        left: 0;
        background-color: #000000; }
      .home .slideshow .swiper-slide .animations.phase-01 .animation-01 {
        bottom: 40%;
        right: 25%;
        -webkit-transition: right .2s .3s, bottom .2s .8s;
        -o-transition: right .2s .3s, bottom .2s .8s;
        transition: right .2s .3s, bottom .2s .8s; }
      .home .slideshow .swiper-slide .animations.phase-01 .animation-02 {
        bottom: 20%;
        left: 75%;
        -webkit-transition: left .2s .3s, bottom .2s;
        -o-transition: left .2s .3s, bottom .2s;
        transition: left .2s .3s, bottom .2s; }
      .home .slideshow .swiper-slide .animations.phase-01 .animation-03 {
        top: 80%;
        left: 75%;
        -webkit-transition: left .2s .3s, top .2s;
        -o-transition: left .2s .3s, top .2s;
        transition: left .2s .3s, top .2s; }
      .home .slideshow .swiper-slide .animations.phase-01 .animation-04 {
        top: 60%;
        right: 25%;
        -webkit-transition: right .2s .3s, top .2s .8s;
        -o-transition: right .2s .3s, top .2s .8s;
        transition: right .2s .3s, top .2s .8s; }
      .home .slideshow .swiper-slide .animations.phase-02 .animation-01 {
        bottom: 15%;
        right: 65%;
        -webkit-transition: right .2s, bottom .2s .4s;
        -o-transition: right .2s, bottom .2s .4s;
        transition: right .2s, bottom .2s .4s; }
      .home .slideshow .swiper-slide .animations.phase-02 .animation-02 {
        bottom: 60%;
        left: 35%;
        -webkit-transition: left .2s, bottom .2s 1s;
        -o-transition: left .2s, bottom .2s 1s;
        transition: left .2s, bottom .2s 1s; }
      .home .slideshow .swiper-slide .animations.phase-02 .animation-03 {
        top: 40%;
        left: 35%;
        -webkit-transition: left .2s, top .2s 1s;
        -o-transition: left .2s, top .2s 1s;
        transition: left .2s, top .2s 1s; }
      .home .slideshow .swiper-slide .animations.phase-02 .animation-04 {
        top: 85%;
        right: 65%;
        -webkit-transition: right .2s, top .2s .4s;
        -o-transition: right .2s, top .2s .4s;
        transition: right .2s, top .2s .4s; }
      .home .slideshow .swiper-slide .animations.phase-03 .animation-01 {
        bottom: 85%;
        right: 48%;
        -webkit-transition: right .2s .5s, bottom .2s;
        -o-transition: right .2s .5s, bottom .2s;
        transition: right .2s .5s, bottom .2s; }
      .home .slideshow .swiper-slide .animations.phase-03 .animation-02 {
        bottom: 70%;
        left: 52%;
        -webkit-transition: left .2s .5s, bottom .2s 1.4s;
        -o-transition: left .2s .5s, bottom .2s 1.4s;
        transition: left .2s .5s, bottom .2s 1.4s; }
      .home .slideshow .swiper-slide .animations.phase-03 .animation-03 {
        top: 30%;
        left: 52%;
        -webkit-transition: left .2s .5s, top .2s 1.4s;
        -o-transition: left .2s .5s, top .2s 1.4s;
        transition: left .2s .5s, top .2s 1.4s; }
      .home .slideshow .swiper-slide .animations.phase-03 .animation-04 {
        top: 15%;
        right: 48%;
        -webkit-transition: right .2s .5s, top .2s;
        -o-transition: right .2s .5s, top .2s;
        transition: right .2s .5s, top .2s; }
    @media only screen and (max-width: 860px) {
      .home .slideshow .swiper-slide .exhibition .horizontal-lines:before {
        top: 25%; }
      .home .slideshow .swiper-slide .exhibition .horizontal-lines:after {
        top: 50%; }
      .home .slideshow .swiper-slide .exhibition .vertical-lines:before {
        left: 33.33%; }
      .home .slideshow .swiper-slide .exhibition .vertical-lines:after {
        left: 66.66%; }
      .home .slideshow .swiper-slide .icons li {
        width: 33.33%;
        height: 25%; } }
  .home .slideshow .swiper + div {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 50px 100px 0;
    margin-top: auto;
    z-index: 10;
    left: 0;
    right: 0;
    bottom: 60px; }
    .home .slideshow .swiper + div .opening-times ul {
      list-style: none;
      padding: 0; }
    .home .slideshow .swiper + div .opening-times a {
      -webkit-transition: color 0.2s;
      -o-transition: color 0.2s;
      transition: color 0.2s;
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 17px;
      font-weight: bold;
      text-decoration: none;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .home .slideshow .swiper + div .opening-times a:hover {
        color: #00adbb; }
      .home .slideshow .swiper + div .opening-times a:after {
        font-family: 'icomoon' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "";
        font-size: 1.2em;
        margin-left: 0.5em;
        position: relative;
        left: 0px;
        -webkit-transition: left 0.15s;
        -o-transition: left 0.15s;
        transition: left 0.15s; }
      .home .slideshow .swiper + div .opening-times a:hover:after {
        left: 4px; }
      .home .slideshow .swiper + div .opening-times a:hover {
        color: #ffffff; }
      .home .slideshow .swiper + div .opening-times a:after {
        color: #00adbb; }
    .home .slideshow .swiper + div .scroll {
      margin: 0 0 0 30px;
      text-align: right;
      display: block;
      text-decoration: none; }
      .home .slideshow .swiper + div .scroll:after {
        font-family: 'icomoon' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "";
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        background-color: #181818;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-left: 30px; }
  @media only screen and (max-width: 1400px) {
    .home .slideshow .swiper-slide {
      padding-left: 60px; }
      .home .slideshow .swiper-slide .content h1 {
        font-size: 3.4em; }
      .home .slideshow .swiper-slide .content p {
        font-size: 2.1em; }
      .home .slideshow .swiper-slide .animations {
        max-width: calc(100vw - 580px); }
    .home .slideshow .swiper + div {
      padding: 50px 60px 0; }
      .home .slideshow .swiper + div .opening-times {
        font-size: 0.8em; } }
  @media only screen and (max-width: 1280px) {
    .home .slideshow .swiper-slide {
      padding-left: 40px; }
      .home .slideshow .swiper-slide .animations {
        max-width: calc(100vw - 520px); }
    .home .slideshow .swiper + div {
      padding: 50px 40px 0; } }

@media only screen and (max-width: 1280px) and (min-height: 900px) {
  .home .slideshow .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .home .slideshow .swiper-slide .content {
      width: 100%;
      padding-right: 0; }
    .home .slideshow .swiper-slide .media {
      width: 100%; }
      .home .slideshow .swiper-slide .media video {
        width: 146%;
        -webkit-transform: translate(-18%, -8%);
        -ms-transform: translate(-18%, -8%);
        transform: translate(-18%, -8%); } }
  @media only screen and (max-height: 760px) {
    .home .slideshow .swiper + div {
      bottom: 40px; }
      .home .slideshow .swiper + div .scroll {
        display: none; }
      .home .slideshow .swiper + div .opening-times {
        width: 100%;
        white-space: nowrap; }
        .home .slideshow .swiper + div .opening-times ul {
          margin: 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          .home .slideshow .swiper + div .opening-times ul li:not(:last-child):after {
            content: '•';
            padding: 0 16px; } }
  @media only screen and (max-height: 440px) {
    .home .slideshow .swiper + div {
      display: none; } }
  @media only screen and (max-width: 1000px) {
    .home .slideshow .swiper-slide .content a {
      font-size: 15px;
      padding: 0 20px;
      height: 45px;
      line-height: 38px; }
    .home .slideshow .swiper-slide .exhibition:before {
      width: 250%; }
    .home .slideshow .swiper-slide .animations {
      left: 0;
      width: 100%;
      max-width: 100%; } }
  @media only screen and (max-width: 860px) {
    .home .slideshow .swiper-pagination {
      top: 56px; }
    .home .slideshow .swiper-slide {
      padding-top: 90px;
      padding-bottom: 20px; }
      .home .slideshow .swiper-slide .media video {
        width: 240%;
        -webkit-transform: translate(-27%, 10%);
        -ms-transform: translate(-27%, 10%);
        transform: translate(-27%, 10%); } }

@media only screen and (max-width: 860px) and (min-height: 630px) {
  .home .slideshow .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .home .slideshow .swiper-slide .content {
      width: 100%;
      padding-right: 0; }
    .home .slideshow .swiper-slide .media {
      width: 100%; }
      .home .slideshow .swiper-slide .media video {
        width: 186%;
        -webkit-transform: translate(-25%, 8%);
        -ms-transform: translate(-25%, 8%);
        transform: translate(-25%, 8%); } }
  @media only screen and (max-width: 660px) {
    .home .slideshow {
      height: calc( 100vh + 57px); }
      .home .slideshow .swiper + div {
        position: static;
        padding: 15px 40px;
        margin: 0; }
        .home .slideshow .swiper + div .scroll {
          display: none; }
      .home .slideshow .swiper-slide {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
        .home .slideshow .swiper-slide h2 {
          font-size: 34px; }
        .home .slideshow .swiper-slide .content {
          width: 100%;
          padding-right: 0; }
          .home .slideshow .swiper-slide .content p {
            font-size: 1.7em; }
          .home .slideshow .swiper-slide .content a {
            border: 0;
            padding: 0; }
            .home .slideshow .swiper-slide .content a:after {
              font-family: 'icomoon' !important;
              font-style: normal;
              font-weight: normal;
              font-variant: normal;
              line-height: 1;
              speak: none;
              text-transform: none;
              -webkit-font-smoothing: antialiased;
              -moz-osx-font-smoothing: grayscale;
              content: "";
              color: #00adbb;
              position: relative;
              top: 2px;
              left: 10px; }
            .home .slideshow .swiper-slide .content a:hover {
              color: #ffffff;
              background: transparent; }
        .home .slideshow .swiper-slide .media {
          width: 100%; }
          .home .slideshow .swiper-slide .media video {
            width: 186%;
            -webkit-transform: translate(-25%, -12%);
            -ms-transform: translate(-25%, -12%);
            transform: translate(-25%, -12%); } }
  @media only screen and (max-width: 430px) {
    .home .slideshow .swiper-slide {
      padding-left: 20px; }
    .home .slideshow .swiper + div {
      padding: 15px 20px; } }

.home .current-exhibition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("../images/current-exhibition-background.jpg") no-repeat center;
  background-size: cover;
  padding-right: 0;
  border-top: 1px solid #323232;
  padding-bottom: 430px; }
  @media only screen and (max-width: 1600px) {
    .home .current-exhibition {
      padding-bottom: 390px; } }
  @media only screen and (max-width: 1400px) {
    .home .current-exhibition {
      padding-bottom: 360px; } }
  .home .current-exhibition .exhibition-content {
    width: 45%;
    padding-right: 130px; }
    .home .current-exhibition .exhibition-content :first-child {
      margin-top: 0; }
    .home .current-exhibition .exhibition-content :last-child {
      margin-bottom: 0; }
    .home .current-exhibition .exhibition-content h3 {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 12px;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: #00adbb; }
    .home .current-exhibition .exhibition-content h2 {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 3.111em;
      line-height: 1.17;
      text-transform: uppercase; }
      @media only screen and (max-width: 1280px) {
        .home .current-exhibition .exhibition-content h2 {
          font-size: 2.4em; } }
      @media only screen and (max-width: 960px) {
        .home .current-exhibition .exhibition-content h2 {
          font-size: 2em; } }
      @media only screen and (max-width: 660px) {
        .home .current-exhibition .exhibition-content h2 {
          font-size: 1.75em; } }
    .home .current-exhibition .exhibition-content p {
      font-size: 1.222em; }
    .home .current-exhibition .exhibition-content a {
      display: inline-block;
      height: 50px;
      line-height: 44px;
      border-radius: 25px;
      border: 3px solid #00adbb;
      padding: 0 25px;
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 17px;
      font-weight: bold;
      text-decoration: none;
      -webkit-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s;
      cursor: pointer;
      color: #ffffff;
      background: transparent; }
      .home .current-exhibition .exhibition-content a:hover {
        background: #00adbb;
        color: #000000; }
  .home .current-exhibition .swiper-container {
    position: absolute;
    width: calc(55% + 430px);
    padding-left: 430px;
    right: 0; }
  .home .current-exhibition .swiper-slide {
    width: 380px;
    height: 500px;
    background: #1d1d1d;
    text-decoration: none;
    -webkit-transition: opacity .5s, -webkit-transform .5s;
    transition: opacity .5s, -webkit-transform .5s;
    -o-transition: opacity .5s, transform .5s;
    transition: opacity .5s, transform .5s;
    transition: opacity .5s, transform .5s, -webkit-transform .5s; }
    .home .current-exhibition .swiper-slide, .home .current-exhibition .swiper-slide.swiper-slide-prev {
      opacity: 0;
      -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
      transform: scale(0.5); }
    .home .current-exhibition .swiper-slide.swiper-slide-visible {
      opacity: 1;
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
    .home .current-exhibition .swiper-slide:hover:before {
      background: #ffffff;
      color: #181818; }
    .home .current-exhibition .swiper-slide:before {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 60px;
      height: 60px;
      text-align: center;
      line-height: 60px;
      background: #1d1d1d;
      -webkit-transition: .15s;
      -o-transition: .15s;
      transition: .15s;
      z-index: 1;
      font-size: 15px;
      color: #00adbb; }
    .home .current-exhibition .swiper-slide :first-child {
      margin-top: 0; }
    .home .current-exhibition .swiper-slide :last-child {
      margin-bottom: 0; }
    .home .current-exhibition .swiper-slide figure {
      margin: 0;
      height: 250px;
      position: relative; }
      .home .current-exhibition .swiper-slide figure img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover; }
    .home .current-exhibition .swiper-slide .content {
      padding: 50px; }
    .home .current-exhibition .swiper-slide h4 {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 12px;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: #00adbb; }
  .home .current-exhibition .nav {
    padding: 50px 100px; }
  @media only screen and (min-width: 1000px) {
    .home .current-exhibition .nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; }
      .home .current-exhibition .nav a {
        display: inline-block;
        height: 50px;
        line-height: 44px;
        border-radius: 25px;
        border: 3px solid #313131;
        padding: 0 25px;
        font-family: "galano-grotesque", arial, sans-serif;
        font-size: 17px;
        font-weight: bold;
        text-decoration: none;
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s;
        cursor: pointer;
        color: #ffffff;
        background: transparent;
        margin-left: 24px; }
        .home .current-exhibition .nav a:hover {
          background: #313131;
          color: #000000; }
        .home .current-exhibition .nav a:hover {
          color: #ffffff; } }
  @media only screen and (max-width: 1600px) {
    .home .current-exhibition .swiper-slide {
      width: 340px;
      height: 460px; }
      .home .current-exhibition .swiper-slide figure {
        height: 210px; }
    .home .current-exhibition .nav {
      padding: 50px 60px; } }
  @media only screen and (max-width: 1400px) {
    .home .current-exhibition .swiper-slide {
      width: 300px;
      height: 410px; }
      .home .current-exhibition .swiper-slide .content {
        padding: 30px; }
      .home .current-exhibition .swiper-slide figure {
        height: 180px; }
    .home .current-exhibition .nav {
      padding: 40px; } }
  @media only screen and (max-width: 1150px) {
    .home .current-exhibition .exhibition-content {
      padding-right: 65px; } }
  @media only screen and (max-width: 1000px) {
    .home .current-exhibition {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding: 50px 0 0 0; }
      .home .current-exhibition .exhibition-content {
        width: 100%;
        padding: 0 40px 40px 40px; }
      .home .current-exhibition .swiper-container {
        position: relative;
        width: 100%;
        padding-left: 0; }
      .home .current-exhibition .nav {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 100px;
        top: -100px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        .home .current-exhibition .nav .swiper-button-prev {
          -webkit-box-ordinal-group: 11;
          -ms-flex-order: 10;
          order: 10; }
        .home .current-exhibition .nav .swiper-button-next {
          -webkit-box-ordinal-group: 31;
          -ms-flex-order: 30;
          order: 30; }
        .home .current-exhibition .nav a {
          -webkit-box-ordinal-group: 21;
          -ms-flex-order: 20;
          order: 20; } }
  @media only screen and (max-width: 400px) {
    .home .current-exhibition .exhibition-content {
      padding: 0 20px 40px 20px; }
    .home .current-exhibition .nav {
      padding: 40px 20px; }
      .home .current-exhibition .nav > * {
        margin: 0; } }

.home .upcoming-exhibition {
  background: #181818;
  text-align: center;
  position: relative;
  padding: 200px 0;
  overflow: hidden;
  z-index: 0; }
  @media only screen and (max-width: 1400px) {
    .home .upcoming-exhibition {
      padding: 120px 0; } }
  @media only screen and (max-width: 1280px) {
    .home .upcoming-exhibition {
      padding: 80px 0; } }
  @media only screen and (max-width: 430px) {
    .home .upcoming-exhibition {
      padding: 40px 0; } }
  .home .upcoming-exhibition.feature-type-icons {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .home .upcoming-exhibition > * {
    position: relative;
    z-index: 10; }
  .home .upcoming-exhibition h3 {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #00adbb; }
  .home .upcoming-exhibition a {
    display: inline-block;
    height: 50px;
    line-height: 44px;
    border-radius: 25px;
    border: 3px solid #00adbb;
    padding: 0 25px;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    color: #ffffff;
    background: transparent; }
    .home .upcoming-exhibition a:hover {
      background: #00adbb;
      color: #000000; }
  .home .upcoming-exhibition .large-text {
    position: absolute;
    z-index: 1;
    text-transform: uppercase;
    top: 0;
    font-size: 720px;
    line-height: 700px;
    left: -43px;
    -webkit-transition: .05s;
    -o-transition: .05s;
    transition: .05s; }
  .home .upcoming-exhibition .icons {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .home .upcoming-exhibition .icons:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
      background: rgba(24, 24, 24, 0.8); }
    .home .upcoming-exhibition .icons li {
      width: 25%;
      height: 33.33%;
      overflow: hidden;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      position: relative; }
      .home .upcoming-exhibition .icons li > div {
        padding: 15% 25%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
    .home .upcoming-exhibition .icons img {
      width: auto;
      max-width: 100%;
      max-height: 100%; }
  @media only screen and (max-width: 1600px) {
    .home .upcoming-exhibition .large-text {
      font-size: 500px;
      line-height: 500px; } }
  @media only screen and (max-width: 1260px) {
    .home .upcoming-exhibition .large-text {
      font-size: 400px;
      line-height: 370px; } }
  @media only screen and (max-width: 960px) {
    .home .upcoming-exhibition.feature-type-icons {
      min-height: auto; }
    .home .upcoming-exhibition .large-text {
      font-size: 300px;
      line-height: 180px; } }
  @media only screen and (max-width: 730px) {
    .home .upcoming-exhibition .large-text {
      font-size: 200px;
      line-height: 125px; } }

.home .current-exhibition + .bottom {
  margin-top: 60px; }

.home .countdown {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  right: 0;
  padding: 25px 25px 25px 35px;
  background: #181818;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100; }
  .home .countdown h4 {
    margin: 0;
    padding-right: 15px; }
  .home .countdown ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0; }
    .home .countdown ul li {
      position: relative;
      padding: 0 20px; }
      .home .countdown ul li:after {
        content: ':';
        position: absolute;
        top: -10px;
        right: -2px;
        color: #4e4e4e;
        font-size: 36px;
        font-weight: bold;
        font-family: "galano-grotesque", arial, sans-serif; }
      .home .countdown ul li:last-child {
        padding-right: 0; }
        .home .countdown ul li:last-child:after {
          content: none; }
      .home .countdown ul li span {
        display: block;
        text-align: center; }
        .home .countdown ul li span.label {
          font-family: "galano-grotesque", arial, sans-serif;
          font-size: 12px;
          font-weight: bold;
          line-height: 1;
          letter-spacing: 0.5em;
          text-transform: uppercase;
          font-size: 10px;
          color: #00adbb; }
        .home .countdown ul li span.days, .home .countdown ul li span.hours, .home .countdown ul li span.minutes {
          font-weight: bold;
          font-size: 36px;
          letter-spacing: 6px;
          line-height: 1; }
  @media only screen and (max-width: 860px) {
    .home .countdown {
      padding: 20px 20px 20px 30px; }
      .home .countdown h4 {
        padding-right: 10px;
        font-size: 14px; }
      .home .countdown ul li {
        padding: 0 15px; }
        .home .countdown ul li:after {
          top: -11px;
          right: -2px;
          font-size: 30px; }
        .home .countdown ul li span.label {
          font-size: 8px; }
        .home .countdown ul li span.days, .home .countdown ul li span.hours, .home .countdown ul li span.minutes {
          font-size: 27px;
          letter-spacing: 4px; } }
  @media only screen and (max-width: 660px) {
    .home .countdown {
      top: 50px;
      width: 100%;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding: 4.8px 40px; }
      .home .countdown h4 {
        padding-right: 0;
        font-size: 12px;
        font-weight: normal;
        font-family: "Neue Haas Groesk", arial, sans-serif; }
      .home .countdown ul li {
        padding: 0 5px; }
        .home .countdown ul li:after {
          top: -5px;
          right: -1px;
          font-size: 12px;
          font-weight: normal;
          color: #ffffff; }
        .home .countdown ul li span.label {
          display: none; }
        .home .countdown ul li span.days, .home .countdown ul li span.hours, .home .countdown ul li span.minutes {
          font-size: 12px;
          letter-spacing: 0;
          font-weight: normal; }
        .home .countdown ul li span.days:after {
          content: 'd'; }
        .home .countdown ul li span.hours:after {
          content: 'h'; }
        .home .countdown ul li span.minutes:after {
          content: 'm'; } }

.top-info .team-accordion {
  margin: 0;
  padding: 0;
  border-top: 1px solid #d7d7d7; }
  .top-info .team-accordion li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 48px 0;
    border-bottom: 1px solid #d7d7d7; }
    .top-info .team-accordion li.expanded img {
      width: 170px;
      height: 170px;
      min-width: 170px;
      margin-right: 50px; }
    .top-info .team-accordion li.expanded .team-content {
      opacity: 1;
      visibility: visible; }
      .top-info .team-accordion li.expanded .team-content > div {
        padding: 50px 0 0 0; }
    .top-info .team-accordion li.expanded .toggle {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
  .top-info .team-accordion img {
    display: block;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    margin-right: 30px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; }
  .top-info .team-accordion h2 {
    font-size: 22px;
    line-height: 1.54;
    margin: -0.3em 0 0.4em 0; }
  .top-info .team-accordion h3 {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin: 0; }
  .top-info .team-accordion p {
    margin: 0; }
  .top-info .team-accordion .team-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    transition-position: opacity;
    -webkit-transition: opacity 0.2s, visibility 0.2s;
    -o-transition: opacity 0.2s, visibility 0.2s;
    transition: opacity 0.2s, visibility 0.2s; }
    .top-info .team-accordion .team-content > div {
      overflow: hidden;
      padding: 50px 0 0 200px; }
  .top-info .team-accordion .toggle {
    background: transparent;
    margin: 0;
    padding: 0;
    border: none;
    position: absolute;
    right: 0;
    top: 48px; }
    .top-info .team-accordion .toggle:before {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "";
      display: block;
      width: 50px;
      height: 50px;
      line-height: 50px;
      border-radius: 50%;
      background: #eaeaea;
      text-align: center;
      cursor: pointer; }

.page--whats-on .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px; }
  @media only screen and (max-width: 1400px) {
    .page--whats-on .header {
      padding: 60px; } }
  @media only screen and (max-width: 1280px) {
    .page--whats-on .header {
      padding: 40px; } }
  @media only screen and (max-width: 430px) {
    .page--whats-on .header {
      padding: 20px; } }
  .page--whats-on .header h1 {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 4.444em;
    line-height: 1; }
    @media only screen and (max-width: 1280px) {
      .page--whats-on .header h1 {
        font-size: 3.4em; } }
    @media only screen and (max-width: 960px) {
      .page--whats-on .header h1 {
        font-size: 2.8em; } }
    @media only screen and (max-width: 660px) {
      .page--whats-on .header h1 {
        font-size: 2.2em; } }
    @media only screen and (max-width: 450px) {
      .page--whats-on .header h1 {
        font-size: 2em; } }
  .page--whats-on .header a.visit {
    display: inline-block;
    height: 50px;
    line-height: 44px;
    border-radius: 25px;
    border: 3px solid #00adbb;
    padding: 0 25px;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    color: #ffffff;
    background: transparent; }
    .page--whats-on .header a.visit:hover {
      background: #00adbb;
      color: #000000; }

.page--whats-on .header header {
  width: 50%;
  padding-right: 120px; }

.page--whats-on .featured-item {
  position: relative;
  width: 50%;
  padding-left: 100px; }
  .page--whats-on .featured-item > * {
    position: relative;
    z-index: 10;
    max-width: 500px; }
  .page--whats-on .featured-item h3 {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.5em;
    text-transform: uppercase; }
  .page--whats-on .featured-item h2 {
    font-size: 2.556em;
    line-height: 1.2; }
    .page--whats-on .featured-item h2 a {
      text-decoration: none; }
  .page--whats-on .featured-item > a {
    display: inline-block;
    height: 50px;
    line-height: 44px;
    border-radius: 25px;
    border: 3px solid #ffffff;
    padding: 0 25px;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    color: #ffffff;
    background: transparent; }
    .page--whats-on .featured-item > a:hover {
      background: #ffffff;
      color: #000000; }
  .page--whats-on .featured-item .background {
    position: absolute;
    top: -100px;
    right: -100px;
    bottom: -600px;
    left: 0;
    z-index: 0;
    max-width: none; }
    .page--whats-on .featured-item .background:after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 600px;
      background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(85%, #181818), to(#181818));
      background: -webkit-linear-gradient(transparent 0%, #181818 85%, #181818 100%);
      background: -o-linear-gradient(transparent 0%, #181818 85%, #181818 100%);
      background: linear-gradient(transparent 0%, #181818 85%, #181818 100%); }

.page--whats-on section.exhibitions {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 100px;
  z-index: 1; }
  @media only screen and (max-width: 1400px) {
    .page--whats-on section.exhibitions {
      padding: 0 60px; } }
  @media only screen and (max-width: 1280px) {
    .page--whats-on section.exhibitions {
      padding: 0 40px; } }
  @media only screen and (max-width: 430px) {
    .page--whats-on section.exhibitions {
      padding: 0 20px; } }
  .page--whats-on section.exhibitions h3 {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin-top: 0; }
  .page--whats-on section.exhibitions .current-exhibition {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #000000;
    padding: 100px;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: right bottom;
    position: relative; }
    @media only screen and (max-width: 1400px) {
      .page--whats-on section.exhibitions .current-exhibition {
        padding: 60px; } }
    @media only screen and (max-width: 1280px) {
      .page--whats-on section.exhibitions .current-exhibition {
        padding: 40px; } }
    @media only screen and (max-width: 430px) {
      .page--whats-on section.exhibitions .current-exhibition {
        padding: 20px; } }
    .page--whats-on section.exhibitions .current-exhibition > * {
      z-index: 1;
      position: relative; }
    .page--whats-on section.exhibitions .current-exhibition h2 {
      font-size: 4.444em;
      margin: 1.667rem 0 0 0;
      line-height: 1; }
      .page--whats-on section.exhibitions .current-exhibition h2 a {
        text-decoration: none; }
    .page--whats-on section.exhibitions .current-exhibition > a {
      display: inline-block;
      height: 50px;
      line-height: 44px;
      border-radius: 25px;
      border: 3px solid #c028b9;
      padding: 0 25px;
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 17px;
      font-weight: bold;
      text-decoration: none;
      -webkit-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s;
      cursor: pointer;
      color: #ffffff;
      background: transparent; }
      .page--whats-on section.exhibitions .current-exhibition > a:hover {
        background: #c028b9;
        color: #000000; }
    .page--whats-on section.exhibitions .current-exhibition:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(#000000));
      background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0) 0%, #000000 100%);
      background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0) 0%, #000000 100%);
      background-image: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
      background-image: -webkit-gradient(linear, left top, right top, from(#000000), color-stop(30%, #000000), to(rgba(0, 0, 0, 0)));
      background-image: -webkit-linear-gradient(left, #000000 0%, #000000 30%, rgba(0, 0, 0, 0) 100%);
      background-image: -o-linear-gradient(left, #000000 0%, #000000 30%, rgba(0, 0, 0, 0) 100%);
      background-image: linear-gradient(90deg, #000000 0%, #000000 30%, rgba(0, 0, 0, 0) 100%); }
  .page--whats-on section.exhibitions .upcoming-exhibition {
    width: 400px;
    background-color: #222;
    padding: 50px;
    text-decoration: none;
    position: relative;
    z-index: 0; }
    .page--whats-on section.exhibitions .upcoming-exhibition h3 {
      position: relative;
      color: #00adbb; }
      .page--whats-on section.exhibitions .upcoming-exhibition h3:after {
        font-family: 'icomoon' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "";
        position: absolute;
        right: 0;
        -webkit-transition: .15s;
        -o-transition: .15s;
        transition: .15s; }
    .page--whats-on section.exhibitions .upcoming-exhibition:hover h3:after {
      -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
      transform: translateX(4px); }
    .page--whats-on section.exhibitions .upcoming-exhibition .icons {
      margin: 0;
      padding: 0;
      list-style: none;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: -1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      overflow: hidden; }
      .page--whats-on section.exhibitions .upcoming-exhibition .icons:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        background: rgba(0, 0, 0, 0.8); }
      .page--whats-on section.exhibitions .upcoming-exhibition .icons li {
        width: 50%;
        height: 33.33%;
        overflow: hidden;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative; }
        .page--whats-on section.exhibitions .upcoming-exhibition .icons li > div {
          padding: 15%;
          width: 100%;
          height: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; }
      .page--whats-on section.exhibitions .upcoming-exhibition .icons img {
        width: auto;
        max-width: 100%;
        max-height: 100%; }
  .page--whats-on section.exhibitions .feature-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-size: cover;
    background-position: center center; }
    .page--whats-on section.exhibitions .feature-image:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
      background: rgba(0, 0, 0, 0.8); }

.page--whats-on section.events {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 100px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  z-index: 1; }
  @media only screen and (max-width: 1400px) {
    .page--whats-on section.events {
      padding: 60px; } }
  @media only screen and (max-width: 1280px) {
    .page--whats-on section.events {
      padding: 40px; } }
  @media only screen and (max-width: 430px) {
    .page--whats-on section.events {
      padding: 20px; } }
  .page--whats-on section.events.is-loading {
    opacity: .4; }
  .page--whats-on section.events form {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 50px;
    text-align: right; }
    .page--whats-on section.events form label {
      display: inline-block;
      vertical-align: bottom;
      width: 250px;
      margin: 0 15px; }
      .page--whats-on section.events form label:last-of-type {
        margin-right: 0; }
      .page--whats-on section.events form label .custom-select-opener {
        padding-left: 15px;
        padding-right: 15px; }
        .page--whats-on section.events form label .custom-select-opener:after {
          right: 15px; }
      .page--whats-on section.events form label .custom-select-panel {
        background-color: #181818; }
    .page--whats-on section.events form select,
    .page--whats-on section.events form input {
      padding: 15px;
      color: #ffffff;
      background: #181818;
      border: solid #444444;
      border-width: 0 0 1px 0;
      vertical-align: top; }
  .page--whats-on section.events .the-grid li .background.hasnt-image {
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: .05;
    background-size: 100% auto; }
  .page--whats-on section.events .the-grid li.activity .background.hasnt-image {
    background-image: url("../images/event-types/activity.svg"); }
  .page--whats-on section.events .the-grid li.party .background.hasnt-image {
    background-image: url("../images/event-types/party.svg"); }
  .page--whats-on section.events .the-grid li.show .background.hasnt-image {
    background-image: url("../images/event-types/show.svg");
    background-size: 120% auto; }
  .page--whats-on section.events .the-grid li.talk .background.hasnt-image {
    background-image: url("../images/event-types/talk.svg"); }
  .page--whats-on section.events .the-grid li.tour .background.hasnt-image {
    background-image: url("../images/event-types/tour.svg"); }
  .page--whats-on section.events .the-grid li.workshop .background.hasnt-image {
    background-image: url("../images/event-types/workshop.svg");
    background-size: 120% auto; }
  .page--whats-on section.events .the-grid li:nth-child(10n + 1) .background.hasnt-image, .page--whats-on section.events .the-grid li:nth-child(10n + 2) .background.hasnt-image, .page--whats-on section.events .the-grid li:nth-child(10n + 6) .background.hasnt-image, .page--whats-on section.events .the-grid li:nth-child(10n + 8) .background.hasnt-image {
    background-image: none; }
  .page--whats-on section.events .next {
    display: inline-block;
    height: 50px;
    line-height: 44px;
    border-radius: 25px;
    border: 3px solid #00adbb;
    padding: 0 25px;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    color: #ffffff;
    background: transparent;
    display: inline-block;
    margin: 3em auto; }
    .page--whats-on section.events .next:hover {
      background: #00adbb;
      color: #000000; }

@media only screen and (max-width: 1400px) {
  .page--whats-on .featured-item .background {
    right: -60px; } }

@media only screen and (max-width: 1330px) {
  .page--whats-on section.events form label {
    width: 200px;
    margin: 0 10px; } }

@media only screen and (max-width: 1280px) {
  .page--whats-on .featured-item {
    padding: 0 40px; }
    .page--whats-on .featured-item h2 {
      font-size: 1.778em; }
    .page--whats-on .featured-item .background {
      left: -40px;
      right: -40px; }
  .page--whats-on section.exhibitions .current-exhibition h2 {
    font-size: 3em; }
  .page--whats-on section.exhibitions .upcoming-exhibition .icons li {
    height: 50%; }
    .page--whats-on section.exhibitions .upcoming-exhibition .icons li > div {
      padding: 10% 25%; } }

@media only screen and (max-width: 1040px) {
  .page--whats-on section.events form label {
    width: 170px; } }

@media only screen and (max-width: 980px) {
  .page--whats-on section.exhibitions .upcoming-exhibition {
    display: none; } }

@media only screen and (max-width: 920px) {
  .page--whats-on section.events h2 {
    width: 100%; }
  .page--whats-on section.events form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1em;
    padding-left: 0; }
    .page--whats-on section.events form label {
      width: 33.33%; }
      .page--whats-on section.events form label:first-of-type {
        margin-left: 0; } }

@media only screen and (max-width: 840px) {
  .page--whats-on .header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .page--whats-on .header header {
      width: 100%;
      padding-bottom: 60px;
      padding-right: 0; }
  .page--whats-on .featured-item {
    width: 100%;
    padding: 40px 0; }
    .page--whats-on .featured-item .background {
      top: 0;
      right: -40px;
      bottom: 0;
      left: 100px; }
      .page--whats-on .featured-item .background:after {
        content: none; } }

@media only screen and (max-width: 920px) {
  .page--whats-on section.events form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .page--whats-on section.events form label {
      margin: 0;
      width: 100%; }
      .page--whats-on section.events form label select,
      .page--whats-on section.events form label input {
        padding-left: 0; } }

@media only screen and (max-width: 430px) {
  .page--whats-on section.events .the-grid li {
    border: 0; }
  .page--whats-on .featured-item .background {
    right: -20px; } }

.page--events .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px; }
  @media only screen and (max-width: 1400px) {
    .page--events .header {
      padding: 60px; } }
  @media only screen and (max-width: 1280px) {
    .page--events .header {
      padding: 40px; } }
  @media only screen and (max-width: 430px) {
    .page--events .header {
      padding: 20px; } }
  .page--events .header h1 {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 4.444em;
    line-height: 1; }
    @media only screen and (max-width: 1280px) {
      .page--events .header h1 {
        font-size: 3.4em; } }
    @media only screen and (max-width: 960px) {
      .page--events .header h1 {
        font-size: 2.8em; } }
    @media only screen and (max-width: 660px) {
      .page--events .header h1 {
        font-size: 2.2em; } }
    @media only screen and (max-width: 450px) {
      .page--events .header h1 {
        font-size: 2em; } }
  .page--events .header a.visit {
    display: inline-block;
    height: 50px;
    line-height: 44px;
    border-radius: 25px;
    border: 3px solid #00adbb;
    padding: 0 25px;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    color: #ffffff;
    background: transparent; }
    .page--events .header a.visit:hover {
      background: #00adbb;
      color: #000000; }

.page--events .header header {
  width: 50%;
  padding-right: 120px; }

.page--events section.events {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 100px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  z-index: 1; }
  @media only screen and (max-width: 1400px) {
    .page--events section.events {
      padding: 60px; } }
  @media only screen and (max-width: 1280px) {
    .page--events section.events {
      padding: 40px; } }
  @media only screen and (max-width: 430px) {
    .page--events section.events {
      padding: 20px; } }
  .page--events section.events.is-loading {
    opacity: .4; }
  .page--events section.events form {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3em; }
    .page--events section.events form legend {
      font-size: 1.4em;
      font-weight: bold;
      font-family: "galano-grotesque", arial, sans-serif;
      margin-right: 2em; }
    .page--events section.events form label {
      display: inline-block;
      vertical-align: bottom;
      width: 250px;
      margin: 0 15px; }
      .page--events section.events form label:last-of-type {
        margin-right: 0; }
      .page--events section.events form label .custom-select-opener {
        padding-left: 15px;
        padding-right: 15px; }
        .page--events section.events form label .custom-select-opener:after {
          right: 15px; }
      .page--events section.events form label .custom-select-panel {
        background-color: #181818; }
    .page--events section.events form select,
    .page--events section.events form input {
      padding: 15px;
      color: #ffffff;
      background: #181818;
      border: solid #444444;
      border-width: 0 0 1px 0;
      vertical-align: top; }
  .page--events section.events .the-grid li .background.hasnt-image {
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: .05;
    background-size: 100% auto; }
  .page--events section.events .the-grid li.activity .background.hasnt-image {
    background-image: url("../images/event-types/activity.svg"); }
  .page--events section.events .the-grid li.party .background.hasnt-image {
    background-image: url("../images/event-types/party.svg"); }
  .page--events section.events .the-grid li.show .background.hasnt-image {
    background-image: url("../images/event-types/show.svg");
    background-size: 120% auto; }
  .page--events section.events .the-grid li.talk .background.hasnt-image {
    background-image: url("../images/event-types/talk.svg"); }
  .page--events section.events .the-grid li.tour .background.hasnt-image {
    background-image: url("../images/event-types/tour.svg"); }
  .page--events section.events .the-grid li.workshop .background.hasnt-image {
    background-image: url("../images/event-types/workshop.svg");
    background-size: 120% auto; }
  .page--events section.events .the-grid li:nth-child(10n + 1) .background.hasnt-image, .page--events section.events .the-grid li:nth-child(10n + 2) .background.hasnt-image, .page--events section.events .the-grid li:nth-child(10n + 6) .background.hasnt-image, .page--events section.events .the-grid li:nth-child(10n + 8) .background.hasnt-image {
    background-image: none; }
  .page--events section.events .next {
    display: inline-block;
    height: 50px;
    line-height: 44px;
    border-radius: 25px;
    border: 3px solid #00adbb;
    padding: 0 25px;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    color: #ffffff;
    background: transparent;
    display: inline-block;
    margin: 3em auto; }
    .page--events section.events .next:hover {
      background: #00adbb;
      color: #000000; }

@media only screen and (max-width: 1400px) {
  .page--events .featured-item .background {
    right: -60px; } }

@media only screen and (max-width: 1330px) {
  .page--events section.events form label {
    width: 200px;
    margin: 0 10px; } }

@media only screen and (max-width: 1280px) {
  .page--events .featured-item {
    padding: 0 40px; }
    .page--events .featured-item h2 {
      font-size: 1.778em; }
    .page--events .featured-item .background {
      left: -40px;
      right: -40px; }
  .page--events section.exhibitions .current-exhibition h2 {
    font-size: 3em; }
  .page--events section.exhibitions .upcoming-exhibition .icons li {
    height: 50%; }
    .page--events section.exhibitions .upcoming-exhibition .icons li > div {
      padding: 10% 25%; } }

@media only screen and (max-width: 1040px) {
  .page--events section.events form label {
    width: 170px; } }

@media only screen and (max-width: 980px) {
  .page--events section.exhibitions .upcoming-exhibition {
    display: none; } }

@media only screen and (max-width: 920px) {
  .page--events section.events h2 {
    width: 100%; }
  .page--events section.events form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1em;
    padding-left: 0; }
    .page--events section.events form label {
      width: 33.33%; }
      .page--events section.events form label:first-of-type {
        margin-left: 0; } }

@media only screen and (max-width: 840px) {
  .page--events .header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .page--events .header header {
      width: 100%;
      padding-bottom: 60px;
      padding-right: 0; }
  .page--events .featured-item {
    width: 100%;
    padding: 40px 0; }
    .page--events .featured-item .background {
      top: 0;
      right: -40px;
      bottom: 0;
      left: 100px; }
      .page--events .featured-item .background:after {
        content: none; } }

@media only screen and (max-width: 920px) {
  .page--events section.events form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .page--events section.events form label {
      margin: 0;
      width: 100%; }
      .page--events section.events form label select,
      .page--events section.events form label input {
        padding-left: 0; } }

@media only screen and (max-width: 430px) {
  .page--events section.events .the-grid li {
    border: 0; }
  .page--events .featured-item .background {
    right: -20px; } }

.single-post .top-info .details > div {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.single-post .top-info .details .publish-date {
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin: 0 0 80px 0; }

.single-post .top-info .details .author {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold; }
  .single-post .top-info .details .author img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin-right: 20px;
    background: #BEBFBE; }

.single-post .top-info nav.social h3 {
  display: none; }

.single-post .top-info .content.has-feature-image .details {
  margin-bottom: 0; }
  .single-post .top-info .content.has-feature-image .details:after {
    content: none; }

.single-post .top-info .content img.feature {
  margin: 60px 0 50px 0;
  width: 100%;
  max-width: 100%; }

.single-post .top-info .content .tagline {
  font-size: 1.222em;
  line-height: 1.45; }
  @media only screen and (max-width: 1280px) {
    .single-post .top-info .content .tagline {
      font-size: 1em; } }

.single-post .comments {
  margin-top: 4em; }
  .single-post .comments .navigation {
    display: none; }
  .single-post .comments .commentlist {
    margin-top: 5em; }
    .single-post .comments .commentlist > .comment:first-of-type {
      padding-top: 0;
      margin-top: 0;
      border-top: none; }
  .single-post .comments .comment {
    padding: 40px 0 0 70px;
    margin-top: 40px;
    border-top: 1px solid #d7d7d7; }
  .single-post .comments .comment-metadata {
    font-size: 14px; }
    .single-post .comments .comment-metadata a {
      text-decoration: none; }
  .single-post .comments .comment-reply-link {
    text-decoration: none;
    font-weight: bold; }
  .single-post .comments .avatar {
    float: left;
    margin-left: -70px;
    border-radius: 100%;
    display: block; }
  .single-post .comments .comment-respond {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid #d7d7d7; }
  .single-post .comments .submit {
    margin-top: 1em; }
  .single-post .comments ul, .single-post .comments ol {
    margin: 0;
    padding: 0;
    list-style: none; }
  .single-post .comments .nocomments {
    display: none; }

.single-post .comment-form p {
  margin: 0; }
  .single-post .comment-form p.comment-notes, .single-post .comment-form p.logged-in-as {
    margin-bottom: 30px; }
  .single-post .comment-form p.comment-form-author, .single-post .comment-form p.comment-form-email {
    width: 48.717948717948715%; }
  .single-post .comment-form p.comment-form-author {
    float: left; }
  .single-post .comment-form p.comment-form-email {
    float: right; }

@media only screen and (max-width: 1200px) {
  .single-post .top-info .details .author {
    font-size: 15px; }
    .single-post .top-info .details .author img {
      width: 30px;
      height: 30px; } }

@media only screen and (max-width: 1023px) {
  .single-post .top-info .details .publish-date {
    margin-bottom: 40px; } }

@media only screen and (max-width: 850px) {
  .single-post .top-info .content img.feature {
    margin-bottom: 30px; } }

@media only screen and (max-width: 530px) {
  .single-post .comments .comment {
    padding-left: 40px; }
  .single-post .comments .avatar {
    margin-left: -40px;
    margin-right: 20px; }
  .single-post .comment-content,
  .single-post .reply {
    margin-left: -40px; }
  .single-post .comment-form p.comment-form-author, .single-post .comment-form p.comment-form-email {
    width: 100%;
    float: none; } }

.single-mod_exhibition body {
  background: #181818; }

.single-mod_exhibition .top-info header h1 {
  font-size: 4.444em; }

.single-mod_exhibition .top-info .content {
  background: #000000;
  color: white; }

.single-mod_exhibition .exhibits {
  padding: 100px; }
  @media only screen and (max-width: 1400px) {
    .single-mod_exhibition .exhibits {
      padding: 60px; } }
  @media only screen and (max-width: 1280px) {
    .single-mod_exhibition .exhibits {
      padding: 40px; } }
  @media only screen and (max-width: 430px) {
    .single-mod_exhibition .exhibits {
      padding: 20px; } }

.single-mod_exhibition .top-info .content .feature {
  margin: -100px 0 100px -100px;
  width: calc(100% + 200px);
  position: relative; }
  .single-mod_exhibition .top-info .content .feature.feature-type-icons, .single-mod_exhibition .top-info .content .feature.feature-type-animations {
    padding-bottom: 75.6%;
    z-index: 0; }
    .single-mod_exhibition .top-info .content .feature.feature-type-icons > div, .single-mod_exhibition .top-info .content .feature.feature-type-animations > div {
      padding: 40px; }
  .single-mod_exhibition .top-info .content .feature > img {
    width: 100%;
    display: block; }
  .single-mod_exhibition .top-info .content .feature .icons,
  .single-mod_exhibition .top-info .content .feature .animations {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden; }
    .single-mod_exhibition .top-info .content .feature .icons:before,
    .single-mod_exhibition .top-info .content .feature .animations:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 0;
      background: #080E0E; }
    .single-mod_exhibition .top-info .content .feature .icons li,
    .single-mod_exhibition .top-info .content .feature .animations li {
      width: 25%;
      height: 50%;
      overflow: hidden;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      position: relative; }
      .single-mod_exhibition .top-info .content .feature .icons li > div,
      .single-mod_exhibition .top-info .content .feature .animations li > div {
        padding: 30% 15%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
    .single-mod_exhibition .top-info .content .feature .icons img,
    .single-mod_exhibition .top-info .content .feature .animations img {
      width: auto;
      max-width: 100%;
      max-height: 100%; }
  .single-mod_exhibition .top-info .content .feature .animations .animation {
    position: absolute;
    background-size: cover;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s; }
  .single-mod_exhibition .top-info .content .feature .animations .animation-01 {
    top: 0;
    left: 0;
    background-color: #333333; }
  .single-mod_exhibition .top-info .content .feature .animations .animation-02 {
    top: 0;
    right: 0;
    background-color: #666666; }
  .single-mod_exhibition .top-info .content .feature .animations .animation-03 {
    bottom: 0;
    right: 0;
    background-color: #999999; }
  .single-mod_exhibition .top-info .content .feature .animations .animation-04 {
    bottom: 0;
    left: 0;
    background-color: #000000; }
  .single-mod_exhibition .top-info .content .feature .animations.phase-01 .animation-01 {
    bottom: 40%;
    right: 25%;
    -webkit-transition: right .2s .3s, bottom .2s .8s;
    -o-transition: right .2s .3s, bottom .2s .8s;
    transition: right .2s .3s, bottom .2s .8s; }
  .single-mod_exhibition .top-info .content .feature .animations.phase-01 .animation-02 {
    bottom: 20%;
    left: 75%;
    -webkit-transition: left .2s .3s, bottom .2s;
    -o-transition: left .2s .3s, bottom .2s;
    transition: left .2s .3s, bottom .2s; }
  .single-mod_exhibition .top-info .content .feature .animations.phase-01 .animation-03 {
    top: 80%;
    left: 75%;
    -webkit-transition: left .2s .3s, top .2s;
    -o-transition: left .2s .3s, top .2s;
    transition: left .2s .3s, top .2s; }
  .single-mod_exhibition .top-info .content .feature .animations.phase-01 .animation-04 {
    top: 60%;
    right: 25%;
    -webkit-transition: right .2s .3s, top .2s .8s;
    -o-transition: right .2s .3s, top .2s .8s;
    transition: right .2s .3s, top .2s .8s; }
  .single-mod_exhibition .top-info .content .feature .animations.phase-02 .animation-01 {
    bottom: 15%;
    right: 65%;
    -webkit-transition: right .2s, bottom .2s .4s;
    -o-transition: right .2s, bottom .2s .4s;
    transition: right .2s, bottom .2s .4s; }
  .single-mod_exhibition .top-info .content .feature .animations.phase-02 .animation-02 {
    bottom: 60%;
    left: 35%;
    -webkit-transition: left .2s, bottom .2s 1s;
    -o-transition: left .2s, bottom .2s 1s;
    transition: left .2s, bottom .2s 1s; }
  .single-mod_exhibition .top-info .content .feature .animations.phase-02 .animation-03 {
    top: 40%;
    left: 35%;
    -webkit-transition: left .2s, top .2s 1s;
    -o-transition: left .2s, top .2s 1s;
    transition: left .2s, top .2s 1s; }
  .single-mod_exhibition .top-info .content .feature .animations.phase-02 .animation-04 {
    top: 85%;
    right: 65%;
    -webkit-transition: right .2s, top .2s .4s;
    -o-transition: right .2s, top .2s .4s;
    transition: right .2s, top .2s .4s; }
  .single-mod_exhibition .top-info .content .feature .animations.phase-03 .animation-01 {
    bottom: 85%;
    right: 48%;
    -webkit-transition: right .2s .5s, bottom .2s;
    -o-transition: right .2s .5s, bottom .2s;
    transition: right .2s .5s, bottom .2s; }
  .single-mod_exhibition .top-info .content .feature .animations.phase-03 .animation-02 {
    bottom: 70%;
    left: 52%;
    -webkit-transition: left .2s .5s, bottom .2s 1.4s;
    -o-transition: left .2s .5s, bottom .2s 1.4s;
    transition: left .2s .5s, bottom .2s 1.4s; }
  .single-mod_exhibition .top-info .content .feature .animations.phase-03 .animation-03 {
    top: 30%;
    left: 52%;
    -webkit-transition: left .2s .5s, top .2s 1.4s;
    -o-transition: left .2s .5s, top .2s 1.4s;
    transition: left .2s .5s, top .2s 1.4s; }
  .single-mod_exhibition .top-info .content .feature .animations.phase-03 .animation-04 {
    top: 15%;
    right: 48%;
    -webkit-transition: right .2s .5s, top .2s;
    -o-transition: right .2s .5s, top .2s;
    transition: right .2s .5s, top .2s; }
  @media only screen and (max-width: 1400px) {
    .single-mod_exhibition .top-info .content .feature {
      margin: -60px 0 60px -60px;
      width: calc(100% + 120px); } }
  @media only screen and (max-width: 1280px) {
    .single-mod_exhibition .top-info .content .feature {
      margin: -40px 0 40px -40px;
      width: calc(100% + 80px); } }
  @media only screen and (max-width: 1023px) {
    .single-mod_exhibition .top-info .content .feature {
      margin: -40px -40px 30px -40px; } }
  @media only screen and (max-width: 430px) {
    .single-mod_exhibition .top-info .content .feature {
      margin: -20px -20px 30px -20px;
      width: calc(100% + 40px); } }

@media only screen and (max-width: 1550px) {
  .single-mod_exhibition .top-info header h1 {
    font-size: 3.6em; } }

@media only screen and (max-width: 1330px) {
  .single-mod_exhibition .top-info header h1 {
    font-size: 3em; } }

@media only screen and (max-width: 1023px) {
  .single-mod_exhibition .top-info .content {
    position: static; } }

@media only screen and (max-width: 660px) {
  .single-mod_exhibition body {
    background: #000000; }
  .single-mod_exhibition .top-info {
    padding-top: 18vw; }
    .single-mod_exhibition .top-info header {
      overflow: visible;
      z-index: 10; }
      .single-mod_exhibition .top-info header h2 {
        font-size: 8px; }
      .single-mod_exhibition .top-info header h1 {
        font-size: 2.125em;
        margin-bottom: 8px; }
      .single-mod_exhibition .top-info header a.visit {
        display: none; }
      .single-mod_exhibition .top-info header .bottom > * {
        display: none; }
        .single-mod_exhibition .top-info header .bottom > *.date-range {
          display: block;
          position: absolute;
          top: -18vw;
          left: 0;
          right: 0;
          background-color: #262626;
          padding: 12px 100px;
          padding-top: 5px;
          padding-bottom: 5px;
          text-align: center;
          font-size: 12px; } }
        @media only screen and (max-width: 660px) and (max-width: 1400px) {
          .single-mod_exhibition .top-info header .bottom > *.date-range {
            padding: 7.2px 60px; } }
        @media only screen and (max-width: 660px) and (max-width: 1280px) {
          .single-mod_exhibition .top-info header .bottom > *.date-range {
            padding: 4.8px 40px; } }
        @media only screen and (max-width: 660px) and (max-width: 430px) {
          .single-mod_exhibition .top-info header .bottom > *.date-range {
            padding: 2.4px 20px; } }

@media only screen and (max-width: 660px) {
          .single-mod_exhibition .top-info header .bottom > *.date-range:before {
            content: 'Open '; }
    .single-mod_exhibition .top-info .content {
      padding-top: 0; }
      .single-mod_exhibition .top-info .content .feature.feature-type-icons:after, .single-mod_exhibition .top-info .content .feature.feature-type-animations:after {
        content: none; }
      .single-mod_exhibition .top-info .content > h2 {
        display: none; }
  .single-mod_exhibition .exhibits {
    background-color: #181818; } }

@media only screen and (max-width: 480px) {
  .single-mod_exhibition {
    /*ul li.mod_exhibit {
            background-color: $cod-grey;
            border: none;
            margin: 0 -40px;
            width: calc(100% + 80px);

            h3 {
                font-size: 14px;
                margin-top: 0;
                max-width: 12em;
            }

            .more {
                display: none;
            }

            &:before {
                content: none;
            }

            &:after {
                content: '';
                position: absolute;
                top: auto;
                left: -40px;
                right: -40px;
                bottom: 0;
                height: 1px;
                background: none;
                background: #2e2e2e;
            }

            &:not(:nth-child(10n + 1)):not(:nth-child(10n + 6)) {
            }
            .background.has-image {
                bottom: 0;
                left: 36%;
                opacity: .8;
                padding-bottom: 0;

                img {
                    display: none;
                }

                &:after {
                    top: 0;
                    background-image: linear-gradient(to left, transparent 0%, $cod-grey 100%);
                    height: auto;
                }
            }

            h4 {
                font-size: 8px;
            }
        } */ }
    .single-mod_exhibition .tagline {
      display: none !important; }
    .single-mod_exhibition ul li.mod_exhibit {
      background-color: #181818;
      border: none;
      margin: 0 -40px;
      width: calc(100% + 80px);
      min-height: 100px; }
      .single-mod_exhibition ul li.mod_exhibit a {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        .single-mod_exhibition ul li.mod_exhibit a:before {
          padding-bottom: 0;
          -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
          order: 2;
          -ms-flex-preferred-size: 100px;
          flex-basis: 100px;
          -ms-flex-negative: 0;
          flex-shrink: 0; }
      .single-mod_exhibition ul li.mod_exhibit .content {
        padding: 20px 20px 20px 40px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1; }
      .single-mod_exhibition ul li.mod_exhibit h4 {
        font-size: 8px;
        margin-bottom: 1.5em; }
      .single-mod_exhibition ul li.mod_exhibit h3 {
        font-size: 14px;
        margin-top: 0; }
      .single-mod_exhibition ul li.mod_exhibit .background {
        width: 100px;
        padding-bottom: 0;
        top: 5px;
        bottom: 5px;
        right: 20px;
        left: auto; } }

@media only screen and (max-width: 430px) {
  .single-mod_exhibition ul li.mod_exhibit {
    margin: 0 -20px;
    width: calc(100% + 40px); }
    .single-mod_exhibition ul li.mod_exhibit .content {
      padding-left: 20px; }
  .single-mod_exhibition .top-info .content .feature {
    margin-left: -20px; } }

.single-mod_exhibit .top-info header.has-gradient .back {
  color: #ffffff; }

.single-mod_exhibit .top-info header h2 {
  margin: 0;
  font-weight: normal;
  font-size: 1.333em;
  max-width: 375px;
  text-transform: none;
  color: white;
  letter-spacing: 0;
  line-height: 1.6; }
  @media only screen and (max-width: 1280px) {
    .single-mod_exhibit .top-info header h2 {
      font-size: 1em;
      width: calc(100% - 20px); } }
  @media only screen and (max-width: 1180px) {
    .single-mod_exhibit .top-info header h2 {
      width: 100%; } }

.single-mod_exhibit .top-info .content {
  overflow: hidden; }

.single-mod_exhibit .top-info .gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.single-mod_exhibit .top-info .top,
.single-mod_exhibit .top-info .bottom {
  position: relative;
  z-index: 10; }

.single-mod_exhibit .top-info .top {
  padding-bottom: 0; }
  @media only screen and (max-width: 1023px) {
    .single-mod_exhibit .top-info .top a.visit {
      display: none; } }

.single-mod_exhibit .top-info .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 50px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 10px; }
  .single-mod_exhibit .top-info .bottom > div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 40px; }
  .single-mod_exhibit .top-info .bottom p {
    font-size: 0.833em; }
  .single-mod_exhibit .top-info .bottom a {
    text-decoration: none; }
    .single-mod_exhibit .top-info .bottom a:after {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "";
      display: inline-block;
      margin-left: 10px;
      -webkit-transition: .15s;
      -o-transition: .15s;
      transition: .15s; }
    .single-mod_exhibit .top-info .bottom a:hover:after {
      -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
      transform: translateX(4px); }
  @media only screen and (max-width: 1680px) {
    .single-mod_exhibit .top-info .bottom {
      width: 100%; } }
  @media only screen and (max-width: 1400px) {
    .single-mod_exhibit .top-info .bottom {
      width: calc(100% - 20px); } }
  @media only screen and (min-width: 1024px) and (max-width: 1370px) {
    .single-mod_exhibit .top-info .bottom {
      width: 100%; }
      .single-mod_exhibit .top-info .bottom div {
        padding-right: 0; }
      .single-mod_exhibit .top-info .bottom img {
        display: none; } }
  @media only screen and (max-width: 1023px) {
    .single-mod_exhibit .top-info .bottom {
      display: none; } }
  @media only screen and (max-width: 360px) {
    .single-mod_exhibit .top-info .bottom {
      width: 100%; }
      .single-mod_exhibit .top-info .bottom div {
        padding-right: 0; }
      .single-mod_exhibit .top-info .bottom img {
        display: none; } }

.single-mod_exhibit .main-content {
  border-bottom: 2px solid #cdcdcd;
  padding-bottom: 50px; }

.single-mod_exhibit .artists p {
  margin: .5em 0; }

.single-mod_exhibit .credits ul {
  padding: 0;
  list-style: none; }
  .single-mod_exhibit .credits ul li {
    font-size: 1.222em;
    margin-bottom: 0.7em; }
    .single-mod_exhibit .credits ul li span {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 12px;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      display: block;
      margin-top: 2px; }

.single-mod_exhibit .more-exhibits {
  padding: 100px; }
  .single-mod_exhibit .more-exhibits .the-grid ul li {
    width: 25%; }
    .single-mod_exhibit .more-exhibits .the-grid ul li a:before {
      content: '';
      margin-bottom: auto;
      position: relative;
      padding-bottom: 70%;
      width: 100%; }
    .single-mod_exhibit .more-exhibits .the-grid ul li .content {
      width: 100%;
      background: transparent; }
    .single-mod_exhibit .more-exhibits .the-grid ul li .tagline {
      display: none; }
    .single-mod_exhibit .more-exhibits .the-grid ul li .background {
      padding-bottom: 70%;
      bottom: auto; }
  @media only screen and (max-width: 1400px) {
    .single-mod_exhibit .more-exhibits {
      padding: 60px; } }
  @media only screen and (max-width: 1280px) {
    .single-mod_exhibit .more-exhibits {
      padding: 40px; } }
  @media only screen and (max-width: 1180px) {
    .single-mod_exhibit .more-exhibits .the-grid ul li {
      width: 33.33%; } }
  @media only screen and (max-width: 830px) {
    .single-mod_exhibit .more-exhibits .the-grid ul li {
      width: 50%; } }
  @media only screen and (max-width: 480px) {
    .single-mod_exhibit .more-exhibits .the-grid ul li {
      background-color: #181818;
      border: none;
      margin: 0 -40px;
      width: calc(100% + 80px);
      min-height: 100px; }
      .single-mod_exhibit .more-exhibits .the-grid ul li a {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        .single-mod_exhibit .more-exhibits .the-grid ul li a:before {
          padding-bottom: 0;
          -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
          order: 2;
          -ms-flex-preferred-size: 100px;
          flex-basis: 100px;
          -ms-flex-negative: 0;
          flex-shrink: 0; }
      .single-mod_exhibit .more-exhibits .the-grid ul li .content {
        padding: 20px 20px 20px 40px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1; }
      .single-mod_exhibit .more-exhibits .the-grid ul li h4 {
        font-size: 8px;
        margin-bottom: 1.5em; }
      .single-mod_exhibit .more-exhibits .the-grid ul li h3 {
        font-size: 14px;
        margin-top: 0; }
      .single-mod_exhibit .more-exhibits .the-grid ul li .background {
        width: 100px;
        padding-bottom: 0;
        top: 5px;
        bottom: 5px;
        right: 20px;
        left: auto; } }
  @media only screen and (max-width: 430px) {
    .single-mod_exhibit .more-exhibits {
      padding: 20px; }
      .single-mod_exhibit .more-exhibits .the-grid ul li {
        margin: 0 -20px;
        width: calc(100% + 40px); }
        .single-mod_exhibit .more-exhibits .the-grid ul li .content {
          padding-left: 20px; } }

.single-mod_event .top-info .exhibition {
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  color: #00adbb;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .single-mod_event .top-info .exhibition:before {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-size: 1.3em;
    margin-right: 10px;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s; }
  .single-mod_event .top-info .exhibition:hover:before {
    -webkit-transform: translateX(-4px);
    -ms-transform: translateX(-4px);
    transform: translateX(-4px); }

.single-mod_event .top-info.workshop .large-text {
  color: rgba(0, 173, 187, 0.2); }

.single-mod_event .top-info.show .large-text {
  color: rgba(255, 81, 0, 0.2); }

.single-mod_event .top-info.tour .large-text {
  color: rgba(192, 40, 185, 0.2); }

.single-mod_event .prices {
  margin-top: 2em;
  padding-top: 1em;
  border-top: 2px solid #cdcdcd; }
  .single-mod_event .prices button {
    display: inline-block;
    height: 50px;
    line-height: 44px;
    border-radius: 25px;
    border: 3px solid #00adbb;
    padding: 0 25px;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    color: #ffffff;
    background: transparent;
    color: #000000; }
    .single-mod_event .prices button:hover {
      background: #00adbb;
      color: #000000; }
  .single-mod_event .prices .button {
    color: #000000; }

.single-mod_event h4.status {
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.5em;
  text-transform: uppercase; }
  .single-mod_event h4.status span {
    display: inline-block;
    border-radius: 30px;
    padding: 10px 15px;
    color: black;
    text-align: center; }
    .single-mod_event h4.status span.booked-out {
      background-color: #ff5100; }
    .single-mod_event h4.status span.limited-places {
      background-color: #f5ba1f; }
    .single-mod_event h4.status span.multiple {
      background-color: #00adbb; }

.post-type-archive-mod_exhibition main {
  color: #ffffff; }
  .post-type-archive-mod_exhibition main > header {
    padding: 100px;
    position: relative;
    font-size: 24px; }
    @media only screen and (max-width: 1400px) {
      .post-type-archive-mod_exhibition main > header {
        padding: 60px; } }
    @media only screen and (max-width: 1280px) {
      .post-type-archive-mod_exhibition main > header {
        padding: 40px; } }
    @media only screen and (max-width: 430px) {
      .post-type-archive-mod_exhibition main > header {
        padding: 20px; } }
    .post-type-archive-mod_exhibition main > header a {
      margin-bottom: 35px; }
    .post-type-archive-mod_exhibition main > header h1 {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 4.444em;
      line-height: 1;
      margin: 0 0 0.5em 0; }
      @media only screen and (max-width: 1280px) {
        .post-type-archive-mod_exhibition main > header h1 {
          font-size: 3.4em; } }
      @media only screen and (max-width: 960px) {
        .post-type-archive-mod_exhibition main > header h1 {
          font-size: 2.8em; } }
      @media only screen and (max-width: 660px) {
        .post-type-archive-mod_exhibition main > header h1 {
          font-size: 2.2em; } }
      @media only screen and (max-width: 450px) {
        .post-type-archive-mod_exhibition main > header h1 {
          font-size: 2em; } }
    .post-type-archive-mod_exhibition main > header p {
      margin: 0; }
  .post-type-archive-mod_exhibition main > p {
    padding: 0 100px; }
    @media only screen and (max-width: 1400px) {
      .post-type-archive-mod_exhibition main > p {
        padding: 0 60px; } }
    @media only screen and (max-width: 1280px) {
      .post-type-archive-mod_exhibition main > p {
        padding: 0 40px; } }
    @media only screen and (max-width: 430px) {
      .post-type-archive-mod_exhibition main > p {
        padding: 0 20px; } }

.post-type-archive-mod_exhibition .results {
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden; }
  .post-type-archive-mod_exhibition .results li {
    margin: 0 100px 100px 100px;
    background: #000000;
    padding: 120px;
    background-size: cover;
    position: relative;
    z-index: 0; }
    .post-type-archive-mod_exhibition .results li:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 90%;
      z-index: -1;
      background: -webkit-gradient(linear, left top, right top, from(black), color-stop(30%, black), to(rgba(0, 0, 0, 0)));
      background: -webkit-linear-gradient(left, black 0%, black 30%, rgba(0, 0, 0, 0) 100%);
      background: -o-linear-gradient(left, black 0%, black 30%, rgba(0, 0, 0, 0) 100%);
      background: linear-gradient(to right, black 0%, black 30%, rgba(0, 0, 0, 0) 100%); }
    .post-type-archive-mod_exhibition .results li:last-of-type {
      margin-bottom: 0; }
  .post-type-archive-mod_exhibition .results h3 {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin: 0; }
  .post-type-archive-mod_exhibition .results h2 {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 4.444em;
    line-height: 1;
    margin: 0.3em 0; }
    @media only screen and (max-width: 1280px) {
      .post-type-archive-mod_exhibition .results h2 {
        font-size: 3.4em; } }
    @media only screen and (max-width: 960px) {
      .post-type-archive-mod_exhibition .results h2 {
        font-size: 2.8em; } }
    @media only screen and (max-width: 660px) {
      .post-type-archive-mod_exhibition .results h2 {
        font-size: 2.2em; } }
    @media only screen and (max-width: 450px) {
      .post-type-archive-mod_exhibition .results h2 {
        font-size: 2em; } }
    .post-type-archive-mod_exhibition .results h2 a {
      -webkit-transition: color 0.2s;
      -o-transition: color 0.2s;
      transition: color 0.2s;
      text-decoration: none; }
      .post-type-archive-mod_exhibition .results h2 a:hover {
        color: #c028b9; }
  .post-type-archive-mod_exhibition .results .date-range {
    margin: 1.5em 0; }
  .post-type-archive-mod_exhibition .results .view-exhibition {
    display: inline-block;
    height: 50px;
    line-height: 44px;
    border-radius: 25px;
    border: 3px solid #c028b9;
    padding: 0 25px;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    color: #ffffff;
    background: transparent; }
    .post-type-archive-mod_exhibition .results .view-exhibition:hover {
      background: #c028b9;
      color: #000000; }

.post-type-archive-mod_exhibition .pagination .page-numbers.next {
  color: #ffffff; }
  .post-type-archive-mod_exhibition .pagination .page-numbers.next.is-loading {
    color: rgba(255, 255, 255, 0); }

html.search main {
  background: #ffffff;
  color: #000000; }
  html.search main > header {
    background: #181818;
    color: #ffffff;
    padding: 100px;
    position: relative; }
    @media only screen and (max-width: 1400px) {
      html.search main > header {
        padding: 60px; } }
    @media only screen and (max-width: 1280px) {
      html.search main > header {
        padding: 40px; } }
    @media only screen and (max-width: 430px) {
      html.search main > header {
        padding: 20px; } }
    html.search main > header:before {
      content: '';
      background-image: url("../images/morphtangle-top-2.png");
      background-size: 100% auto;
      background-repeat: no-repeat;
      position: absolute;
      top: 0;
      right: 41px;
      width: 48%;
      max-width: 881px;
      padding-bottom: 50%; }
    html.search main > header a {
      margin-bottom: 35px; }
    html.search main > header p {
      margin: 0;
      font-size: 1.333em; }
      @media only screen and (max-width: 1280px) {
        html.search main > header p {
          font-size: 1em; } }

html.search h1 {
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 3.111em;
  line-height: 1.17;
  margin: 0 0 1.944rem 0; }
  @media only screen and (max-width: 1280px) {
    html.search h1 {
      font-size: 2.4em; } }
  @media only screen and (max-width: 960px) {
    html.search h1 {
      font-size: 2em; } }
  @media only screen and (max-width: 660px) {
    html.search h1 {
      font-size: 1.75em; } }

html.search .filter-results {
  padding: 110px 100px;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media only screen and (max-width: 1400px) {
    html.search .filter-results {
      padding: 66px 60px; } }
  @media only screen and (max-width: 1280px) {
    html.search .filter-results {
      padding: 44px 40px; } }
  @media only screen and (max-width: 430px) {
    html.search .filter-results {
      padding: 22px 20px; } }
  html.search .filter-results h2 {
    margin: 0 2.5em 0 0;
    font-size: 0.944em; }
  html.search .filter-results label {
    margin: 0 1.667em 0 0; }
  html.search .filter-results label[for=search]:after {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    color: #00adbb;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  html.search .filter-results input {
    padding: 0.833em 1.389em 0.833em 0;
    width: 250px;
    border-width: 0 0 2px 0;
    border-color: #444444; }
    html.search .filter-results input .custom-select-opener {
      border: 0; }
  html.search .filter-results select {
    width: 250px;
    min-width: 250px;
    margin-right: 1.667em;
    border-width: 0 0 2px 0;
    border-color: #444444;
    padding-left: 0;
    padding-right: 0; }
  html.search .filter-results label[for=include-past-events] {
    margin: 0 0 0 auto; }
  html.search .filter-results button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 24px;
    overflow: hidden;
    cursor: pointer;
    z-index: 10;
    opacity: 0; }
  @media only screen and (max-width: 1080px) {
    html.search .filter-results input {
      width: 100%; }
    html.search .filter-results label:last-child {
      margin-right: 0; } }
  @media only screen and (max-width: 800px) {
    html.search .filter-results h2 {
      display: none; } }
  @media only screen and (max-width: 530px) {
    html.search .filter-results {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      html.search .filter-results label {
        margin-right: 0;
        width: 100%; } }

html.search .results {
  margin: 0;
  padding: 0;
  list-style: none; }
  html.search .results li {
    padding: 100px;
    border-bottom: 1px solid #d1d1d1; }
    @media only screen and (max-width: 1400px) {
      html.search .results li {
        padding: 60px; } }
    @media only screen and (max-width: 1280px) {
      html.search .results li {
        padding: 40px; } }
    @media only screen and (max-width: 430px) {
      html.search .results li {
        padding: 20px; } }
    html.search .results li > div {
      max-width: 1000px; }
    html.search .results li .type {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 12px;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      color: #00adbb; }
      html.search .results li .type > *:after {
        content: '/';
        display: inline-block;
        margin: 0 0.8em; }
      html.search .results li .type > *:last-child:after {
        content: none; }
  html.search .results h3 {
    margin: 0;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.5em;
    text-transform: uppercase; }
  html.search .results h2 {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 2em;
    line-height: 1.17; }
    @media only screen and (max-width: 1280px) {
      html.search .results h2 {
        font-size: 1.556em; } }
    @media only screen and (max-width: 960px) {
      html.search .results h2 {
        font-size: 1.333em; } }
    html.search .results h2 a {
      -webkit-transition: color 0.2s;
      -o-transition: color 0.2s;
      transition: color 0.2s;
      color: #000000;
      text-decoration: none; }
      html.search .results h2 a:hover {
        color: #00adbb; }
  html.search .results .read-more {
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    html.search .results .read-more:hover {
      color: #00adbb; }
    html.search .results .read-more:after {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "";
      font-size: 1.2em;
      margin-left: 0.5em;
      position: relative;
      left: 0px;
      -webkit-transition: left 0.15s;
      -o-transition: left 0.15s;
      transition: left 0.15s; }
    html.search .results .read-more:hover:after {
      left: 4px; }

html.search .no-results {
  padding: 110px 100px; }
  @media only screen and (max-width: 1400px) {
    html.search .no-results {
      padding: 66px 60px; } }
  @media only screen and (max-width: 1280px) {
    html.search .no-results {
      padding: 44px 40px; } }
  @media only screen and (max-width: 430px) {
    html.search .no-results {
      padding: 22px 20px; } }
  html.search .no-results label {
    max-width: 350px; }
    html.search .no-results label input {
      padding-top: 8px; }
  html.search .no-results button {
    display: inline-block;
    height: 50px;
    line-height: 44px;
    border-radius: 25px;
    border: 3px solid #00adbb;
    padding: 0 25px;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    color: #ffffff;
    background: transparent;
    color: #000000; }
    html.search .no-results button:hover {
      background: #00adbb;
      color: #000000; }

.archive.date main,
.blog main {
  background: #ffffff;
  color: #000000; }
  .archive.date main > header,
  .blog main > header {
    background: #181818;
    color: #ffffff;
    padding: 100px;
    position: relative;
    font-size: 1.333em; }
    @media only screen and (max-width: 1400px) {
      .archive.date main > header,
      .blog main > header {
        padding: 60px; } }
    @media only screen and (max-width: 1280px) {
      .archive.date main > header,
      .blog main > header {
        padding: 40px; } }
    @media only screen and (max-width: 430px) {
      .archive.date main > header,
      .blog main > header {
        padding: 20px; } }
    .archive.date main > header:before,
    .blog main > header:before {
      content: '';
      background-image: url("../images/morphtangle-top-2.png");
      background-size: 100% auto;
      background-repeat: no-repeat;
      position: absolute;
      top: 0;
      right: 41px;
      width: 48%;
      max-width: 881px;
      padding-bottom: 50%; }
    .archive.date main > header a,
    .blog main > header a {
      margin-bottom: 35px; }
    .archive.date main > header p,
    .blog main > header p {
      margin: 0;
      max-width: 19.5em; }

.archive.date h1,
.blog h1 {
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 3.111em;
  line-height: 1.17;
  margin: 0 0 35px 0; }
  @media only screen and (max-width: 1280px) {
    .archive.date h1,
    .blog h1 {
      font-size: 2.4em; } }
  @media only screen and (max-width: 960px) {
    .archive.date h1,
    .blog h1 {
      font-size: 2em; } }
  @media only screen and (max-width: 660px) {
    .archive.date h1,
    .blog h1 {
      font-size: 1.75em; } }

.archive.date .filter-results,
.blog .filter-results {
  padding: 110px 100px;
  padding-bottom: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media only screen and (max-width: 1400px) {
    .archive.date .filter-results,
    .blog .filter-results {
      padding: 66px 60px; } }
  @media only screen and (max-width: 1280px) {
    .archive.date .filter-results,
    .blog .filter-results {
      padding: 44px 40px; } }
  @media only screen and (max-width: 430px) {
    .archive.date .filter-results,
    .blog .filter-results {
      padding: 22px 20px; } }
  .archive.date .filter-results h2,
  .blog .filter-results h2 {
    margin: 0 45px 0 0;
    font-size: 17px; }
  .archive.date .filter-results label,
  .blog .filter-results label {
    width: 250px;
    margin-right: 30px;
    margin-bottom: 0; }
    .archive.date .filter-results label select,
    .blog .filter-results label select {
      padding-left: 0;
      padding-right: 0; }

.archive.date .results,
.blog .results {
  margin: 0;
  padding: 0;
  list-style: none; }
  .archive.date .results li,
  .blog .results li {
    padding: 100px;
    border-bottom: 1px solid #d1d1d1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s; }
    @media only screen and (max-width: 1400px) {
      .archive.date .results li,
      .blog .results li {
        padding: 60px; } }
    @media only screen and (max-width: 1280px) {
      .archive.date .results li,
      .blog .results li {
        padding: 40px; } }
    @media only screen and (max-width: 430px) {
      .archive.date .results li,
      .blog .results li {
        padding: 20px; } }
  .archive.date .results .image,
  .blog .results .image {
    display: block;
    min-width: 580px;
    margin-right: 100px; }
    .archive.date .results .image img,
    .blog .results .image img {
      display: block; }
  .archive.date .results .content,
  .blog .results .content {
    max-width: 1000px; }
  .archive.date .results time,
  .blog .results time {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #00adbb; }
  .archive.date .results h2,
  .blog .results h2 {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 2em;
    line-height: 1.17;
    margin: 30px 0 15px 0; }
    @media only screen and (max-width: 1280px) {
      .archive.date .results h2,
      .blog .results h2 {
        font-size: 1.556em; } }
    @media only screen and (max-width: 960px) {
      .archive.date .results h2,
      .blog .results h2 {
        font-size: 1.333em; } }
    .archive.date .results h2 a,
    .blog .results h2 a {
      -webkit-transition: color 0.2s;
      -o-transition: color 0.2s;
      transition: color 0.2s;
      color: #000000;
      text-decoration: none; }
      .archive.date .results h2 a:hover,
      .blog .results h2 a:hover {
        color: #00adbb; }
  .archive.date .results p.tagline,
  .blog .results p.tagline {
    font-size: 1.222em;
    line-height: 1.45;
    margin: 15px 0 25px 0; }
    @media only screen and (max-width: 1280px) {
      .archive.date .results p.tagline,
      .blog .results p.tagline {
        font-size: 1em; } }
  .archive.date .results .read-more,
  .blog .results .read-more {
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .archive.date .results .read-more:hover,
    .blog .results .read-more:hover {
      color: #00adbb; }
    .archive.date .results .read-more:after,
    .blog .results .read-more:after {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "";
      font-size: 1.2em;
      margin-left: 0.5em;
      position: relative;
      left: 0px;
      -webkit-transition: left 0.15s;
      -o-transition: left 0.15s;
      transition: left 0.15s; }
    .archive.date .results .read-more:hover:after,
    .blog .results .read-more:hover:after {
      left: 4px; }

@media only screen and (max-width: 1250px) {
  .archive.date .results .image,
  .blog .results .image {
    margin-right: 60px;
    min-width: 500px; } }

@media only screen and (max-width: 1120px) {
  .archive.date .results .image,
  .blog .results .image {
    margin-right: 40px;
    min-width: 440px; } }

@media only screen and (max-width: 980px) {
  .archive.date .results li,
  .blog .results li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .archive.date .results .image,
  .blog .results .image {
    min-width: 100%;
    margin-right: 0;
    margin-bottom: 20px; }
    .archive.date .results .image img,
    .blog .results .image img {
      width: 100%; } }

@media only screen and (max-width: 660px) {
  .archive.date .results h2,
  .blog .results h2 {
    font-size: 1.6em; } }

@media only screen and (max-width: 500px) {
  .archive.date .filter-results label,
  .blog .filter-results label {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 0; } }

.block {
  margin: 5.556em 0; }
  @media only screen and (max-width: 1023px) {
    .block {
      margin: 3em 0; } }
  @media only screen and (max-width: 660px) {
    .block {
      margin: 2em 0; } }

html.single-mod_gallery, .single-mod_exhibit.from-gallery {
  background-color: #181818; }

.single-mod_gallery body,
.single-mod_exhibit.from-gallery body {
  padding: 80px 0 0;
  background-color: #181818;
  max-width: 100vw;
  overflow-x: hidden; }

.single-mod_gallery body > article,
.single-mod_exhibit.from-gallery body > article {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s; }
  .single-mod_gallery body > article.fade-out,
  .single-mod_exhibit.from-gallery body > article.fade-out {
    opacity: 0; }

.single-mod_gallery body > footer,
.single-mod_gallery .call-to-action,
.single-mod_exhibit.from-gallery body > footer,
.single-mod_exhibit.from-gallery .call-to-action {
  display: none; }

.single-mod_gallery body > header,
.single-mod_exhibit.from-gallery body > header {
  height: 80px;
  bottom: auto;
  right: 0;
  width: auto; }
  .single-mod_gallery body > header .menu-button,
  .single-mod_gallery body > header .search-button,
  .single-mod_exhibit.from-gallery body > header .menu-button,
  .single-mod_exhibit.from-gallery body > header .search-button {
    display: none; }
  .single-mod_gallery body > header .logo,
  .single-mod_exhibit.from-gallery body > header .logo {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    position: absolute;
    right: 0;
    margin: -33px 50px 0 0; }

.post-type-archive-mod_gallery main {
  padding: 100px; }
  @media only screen and (max-width: 1400px) {
    .post-type-archive-mod_gallery main {
      padding: 60px; } }
  @media only screen and (max-width: 1280px) {
    .post-type-archive-mod_gallery main {
      padding: 40px; } }
  @media only screen and (max-width: 430px) {
    .post-type-archive-mod_gallery main {
      padding: 20px; } }

.single-mod_gallery body {
  min-height: 100vh; }

.single-mod_gallery body > article {
  min-height: calc(100vh - 80px);
  padding: 100px; }
  .single-mod_gallery body > article :first-child {
    margin-top: 0; }
  .single-mod_gallery body > article header {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
    .single-mod_gallery body > article header.fade-out {
      opacity: 0; }
  .single-mod_gallery body > article h2 {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.5em;
    text-transform: uppercase; }
  .single-mod_gallery body > article h1 {
    font-size: 100px;
    margin-top: 20px; }
  .single-mod_gallery body > article .exhibits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
    margin-bottom: auto; }
    .single-mod_gallery body > article .exhibits a {
      position: relative;
      width: 50%;
      padding: 50px;
      text-decoration: none;
      background-color: #000000;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s; }
      .single-mod_gallery body > article .exhibits a:before {
        content: '';
        display: block;
        float: left;
        padding-bottom: 60%; }
      .single-mod_gallery body > article .exhibits a:last-child {
        top: 100px; }
      .single-mod_gallery body > article .exhibits a .content {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
        z-index: 10; }
      .single-mod_gallery body > article .exhibits a h4 {
        font-family: "galano-grotesque", arial, sans-serif;
        font-size: 12px;
        font-weight: bold;
        line-height: 1;
        letter-spacing: 0.5em;
        text-transform: uppercase; }
      .single-mod_gallery body > article .exhibits a h3 {
        font-family: "galano-grotesque", arial, sans-serif;
        font-size: 46px;
        margin-top: 30px;
        font-weight: bold; }
      .single-mod_gallery body > article .exhibits a .more {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: auto;
        font-family: "galano-grotesque", arial, sans-serif;
        font-size: 17px;
        font-weight: bold;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .single-mod_gallery body > article .exhibits a .more:after {
          font-family: 'icomoon' !important;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          line-height: 1;
          speak: none;
          text-transform: none;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          content: "";
          margin-left: 10px;
          -webkit-transition: .15s;
          -o-transition: .15s;
          transition: .15s; }
      .single-mod_gallery body > article .exhibits a:hover .more:after {
        -webkit-transform: translate(4px);
        -ms-transform: translate(4px);
        transform: translate(4px); }
      .single-mod_gallery body > article .exhibits a > .background {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-position: center;
        background-size: cover;
        z-index: 1; }
        .single-mod_gallery body > article .exhibits a > .background:before, .single-mod_gallery body > article .exhibits a > .background:after {
          content: '';
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0; }
        .single-mod_gallery body > article .exhibits a > .background:before {
          background-image: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(0%, #000000), to(transparent));
          background-image: -webkit-linear-gradient(0, #000000 0%, transparent 100%);
          background-image: -o-linear-gradient(0, #000000 0%, transparent 100%);
          background-image: linear-gradient(0, #000000 0%, transparent 100%);
          opacity: 0.95; }
        .single-mod_gallery body > article .exhibits a > .background:after {
          background-color: #181818;
          opacity: .4; }
        .single-mod_gallery body > article .exhibits a > .background img {
          display: none; }
      .single-mod_gallery body > article .exhibits a.fade-out {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 0; }
      .single-mod_gallery body > article .exhibits a.fade-in {
        -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
        transform: scale(1.5); }

.single-mod_exhibit.from-gallery {
  padding-left: 0; }
  .single-mod_exhibit.from-gallery body > header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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; }
    .single-mod_exhibit.from-gallery body > header .back {
      padding: 20px 35px;
      color: white;
      text-transform: none;
      letter-spacing: 0;
      font-size: 17px; }
      .single-mod_exhibit.from-gallery body > header .back:before {
        font-size: 1em; }
  .single-mod_exhibit.from-gallery article {
    padding-left: 110px; }
    .single-mod_exhibit.from-gallery article header {
      position: relative;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      height: 944px; }
      .single-mod_exhibit.from-gallery article header > div {
        position: absolute;
        z-index: 10;
        top: calc(50% - 120px);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%; }
      .single-mod_exhibit.from-gallery article header .background {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: -110px;
        background-size: cover;
        z-index: 1;
        opacity: .5;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        width: auto; }
        .single-mod_exhibit.from-gallery article header .background:after {
          content: '';
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          height: 450px;
          background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#181818));
          background-image: -webkit-linear-gradient(transparent 0%, #181818 100%);
          background-image: -o-linear-gradient(transparent 0%, #181818 100%);
          background-image: linear-gradient(transparent 0%, #181818 100%); }
      .single-mod_exhibit.from-gallery article header .back {
        color: white; }
        .single-mod_exhibit.from-gallery article header .back:before {
          content: none; }
      .single-mod_exhibit.from-gallery article header h2 {
        position: relative;
        left: 100px;
        width: 575px;
        font-family: "Neue Haas Groesk", arial, sans-serif;
        font-weight: normal;
        font-size: 1.889em; }
        .single-mod_exhibit.from-gallery article header h2:before {
          content: '';
          position: absolute;
          display: block;
          width: 3px;
          background-color: #c028b9;
          top: 14px;
          left: -47px;
          height: 360px; }
    .single-mod_exhibit.from-gallery article .content {
      position: relative;
      margin-top: -220px;
      background-color: black;
      padding: 100px;
      z-index: 10;
      font-family: "Neue Haas Groesk", arial, sans-serif;
      font-size: 1.167em; }
      .single-mod_exhibit.from-gallery article .content:before {
        content: '';
        position: absolute;
        display: block;
        width: 3px;
        background-color: #c028b9;
        top: 0;
        left: 53px;
        height: 54px; }
      .single-mod_exhibit.from-gallery article .content .main-content :first-child {
        margin-top: 0; }
  .single-mod_exhibit.from-gallery .more-exhibits {
    margin: 100px 0;
    padding: 0 100px; }
    .single-mod_exhibit.from-gallery .more-exhibits > h3 {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 12px;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.5em;
      text-transform: uppercase; }
    .single-mod_exhibit.from-gallery .more-exhibits > h2 {
      font-family: "galano-grotesque", arial, sans-serif;
      font-size: 3.111em;
      line-height: 1.17; }
      @media only screen and (max-width: 1280px) {
        .single-mod_exhibit.from-gallery .more-exhibits > h2 {
          font-size: 2.4em; } }
      @media only screen and (max-width: 960px) {
        .single-mod_exhibit.from-gallery .more-exhibits > h2 {
          font-size: 2em; } }
      @media only screen and (max-width: 660px) {
        .single-mod_exhibit.from-gallery .more-exhibits > h2 {
          font-size: 1.75em; } }
    .single-mod_exhibit.from-gallery .more-exhibits .the-grid ul li {
      width: 50%;
      overflow: hidden; }
      .single-mod_exhibit.from-gallery .more-exhibits .the-grid ul li:before {
        padding-top: 65%; }
      .single-mod_exhibit.from-gallery .more-exhibits .the-grid ul li:after {
        opacity: .96; }
      .single-mod_exhibit.from-gallery .more-exhibits .the-grid ul li h3 {
        font-size: 2.556em; }
  .single-mod_exhibit.from-gallery button.back-to-top {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    position: fixed;
    left: 30px;
    bottom: 70px;
    background: none;
    border: none;
    color: white;
    width: 50px;
    text-align: center;
    padding: 70px 0 0 0;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-indent: .5em; }
    .single-mod_exhibit.from-gallery button.back-to-top.is-visible {
      opacity: 1; }
    .single-mod_exhibit.from-gallery button.back-to-top:before {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "";
      position: absolute;
      display: inline-block;
      -webkit-transform: rotate(180deg) translateX(calc(50% - 3px));
      -ms-transform: rotate(180deg) translateX(calc(50% - 3px));
      transform: rotate(180deg) translateX(calc(50% - 3px));
      top: 0;
      left: 50%;
      margin-top: 19px;
      letter-spacing: 0; }
    .single-mod_exhibit.from-gallery button.back-to-top:after {
      content: '';
      position: absolute;
      display: inline-block;
      border: 2px solid #c028b9;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      left: 0;
      top: 0; }
  .single-mod_exhibit.from-gallery.colour-dark-on-light article .content {
    background-color: #ffffff;
    color: #000000; }

.four-oh-four {
  position: relative;
  padding: 100px;
  min-height: 100vh;
  overflow: hidden;
  background-color: black; }
  @media only screen and (max-width: 1400px) {
    .four-oh-four {
      padding: 60px; } }
  @media only screen and (max-width: 1280px) {
    .four-oh-four {
      padding: 40px; } }
  @media only screen and (max-width: 430px) {
    .four-oh-four {
      padding: 20px; } }
  .four-oh-four h2 {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #00adbb; }
  .four-oh-four h1 {
    line-height: 1.1; }
  .four-oh-four h1, .four-oh-four h2 {
    position: relative;
    z-index: 10; }
  .four-oh-four .video-wrapper {
    position: absolute;
    display: block;
    -webkit-clip-path: url("#clippath");
    clip-path: url("#clippath");
    margin: 20px auto;
    top: 0;
    background-color: #181818; }
    .four-oh-four .video-wrapper video {
      opacity: .3; }
  @media only screen and (max-width: 1770px) {
    .four-oh-four .video-wrapper {
      -webkit-transform: scale(0.8) translate(-10%, -10%);
      -ms-transform: scale(0.8) translate(-10%, -10%);
      transform: scale(0.8) translate(-10%, -10%); } }
  @media only screen and (max-width: 1520px) {
    .four-oh-four .video-wrapper {
      -webkit-transform: scale(0.7) translate(-20%, -10%);
      -ms-transform: scale(0.7) translate(-20%, -10%);
      transform: scale(0.7) translate(-20%, -10%); } }
  @media only screen and (max-width: 1320px) {
    .four-oh-four h1 {
      font-size: 3em; } }
  @media only screen and (max-width: 1280px) {
    .four-oh-four .video-wrapper {
      -webkit-transform: scale(0.7) translate(-30%, -12%);
      -ms-transform: scale(0.7) translate(-30%, -12%);
      transform: scale(0.7) translate(-30%, -12%); } }
  @media only screen and (max-width: 1100px) {
    .four-oh-four .video-wrapper {
      -webkit-transform: scale(0.6) translate(-40%, -20%);
      -ms-transform: scale(0.6) translate(-40%, -20%);
      transform: scale(0.6) translate(-40%, -20%); } }
  @media only screen and (max-width: 1000px) {
    .four-oh-four .video-wrapper {
      -webkit-transform: scale(0.6) translate(-45%, -30%);
      -ms-transform: scale(0.6) translate(-45%, -30%);
      transform: scale(0.6) translate(-45%, -30%); } }
  @media only screen and (max-width: 860px) {
    .four-oh-four .video-wrapper {
      -webkit-transform: scale(0.5) translate(-70%, -10%);
      -ms-transform: scale(0.5) translate(-70%, -10%);
      transform: scale(0.5) translate(-70%, -10%); } }
  @media only screen and (max-width: 720px) {
    .four-oh-four h1 {
      font-size: 2.5em; } }
  @media only screen and (max-width: 520px) {
    .four-oh-four h1 {
      font-size: 2em; }
    .four-oh-four .video-wrapper {
      -webkit-transform: scale(0.4) translate(-90%, -40%);
      -ms-transform: scale(0.4) translate(-90%, -40%);
      transform: scale(0.4) translate(-90%, -40%); } }
  @media only screen and (max-width: 430px) {
    .four-oh-four h1 {
      font-size: 1.6em; }
    .four-oh-four .video-wrapper {
      -webkit-transform: scale(0.3) translate(-135%, -80%);
      -ms-transform: scale(0.3) translate(-135%, -80%);
      transform: scale(0.3) translate(-135%, -80%); } }
  @media only screen and (max-width: 375px) {
    .four-oh-four .video-wrapper {
      -webkit-transform: scale(0.25) translate(-165%, -100%);
      -ms-transform: scale(0.25) translate(-165%, -100%);
      transform: scale(0.25) translate(-165%, -100%); } }

.nf-form-cont .nf-form-fields-required {
  display: none; }

.nf-form-cont input, .nf-form-cont textarea {
  padding: 15px; }

.nf-form-cont .nf-form-content {
  *zoom: 1;
  clear: both; }
  .nf-form-cont .nf-form-content:before, .nf-form-cont .nf-form-content:after {
    content: " ";
    display: table; }
  .nf-form-cont .nf-form-content:after {
    clear: both; }

.nf-form-cont .nf-field-label label {
  font-weight: normal; }

.nf-form-cont .nf-field-description {
  font-size: 12px;
  margin-bottom: 10px; }

.nf-form-cont .label-right .checkbox-wrap .nf-field-label {
  padding: 0; }

.nf-form-cont .label-right .checkbox-wrap .nf-field-element {
  width: 26px;
  height: 26px;
  margin-right: 20px; }
  .nf-form-cont .label-right .checkbox-wrap .nf-field-element label {
    margin: 0; }

.nf-form-cont .file_upload-container .nf-field-element .nf-element {
  padding: 0;
  position: absolute;
  margin: 0;
  border: 0; }

.nf-form-cont .file_upload-container .nf-field-element .nf-fu-progress {
  display: none; }

.nf-form-cont .file_upload-container .files_uploaded {
  display: inline-block; }
  .nf-form-cont .file_upload-container .files_uploaded p {
    margin: 10px 0; }

.nf-form-cont .nf-after-field .nf-error-msg {
  font-size: 15px; }

.nf-form-cont .nf-fu-fileinput-button {
  display: inline-block;
  height: 50px;
  line-height: 44px;
  border-radius: 25px;
  border: 3px solid black;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  color: #ffffff;
  background: transparent;
  color: black;
  margin-right: 20px; }
  .nf-form-cont .nf-fu-fileinput-button:hover {
    background: black;
    color: #000000; }
  .nf-form-cont .nf-fu-fileinput-button:hover {
    color: white; }

.nf-form-cont .submit-container {
  float: right; }
  .nf-form-cont .submit-container input {
    padding: 0 25px; }

.custom-select-container {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.custom-select-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.custom-select-container.is-disabled {
  opacity: .333; }

.custom-select-opener {
  background-color: #ccc;
  padding: 0.5em;
  display: block;
  cursor: pointer;
  width: 100%; }

.custom-select-container select {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0; }

.custom-select-panel {
  max-height: 0;
  -webkit-transition: max-height .5s ease-out, overflow-y 0.1s 0.5s;
  -o-transition: max-height .5s ease-out, overflow-y 0.1s 0.5s;
  transition: max-height .5s ease-out, overflow-y 0.1s 0.5s;
  overflow: hidden;
  background-color: #e9e9e9;
  position: absolute;
  top: 100%;
  z-index: 1;
  width: 100%; }

.custom-select-container.is-open .custom-select-panel {
  max-height: 10.7em;
  overflow-y: auto; }

.custom-select-option {
  padding: 0.5em; }

.custom-select-option.has-focus {
  background-color: LightBlue; }

.custom-select-option.is-selected::before {
  content: "✔";
  padding-right: 0.5em; }

.custom-select-optgroup > .custom-select-option {
  padding-left: 2em; }

.custom-select-optgroup::before {
  content: attr(data-label);
  display: block;
  padding: 0.5em;
  color: #888; }

.block-list h2 {
  margin: 0;
  border-bottom: 1px solid #d7d7d7; }

.block-list ul {
  list-style: none;
  margin: 0;
  padding: 0; }

.block-list li {
  overflow: hidden;
  border-top: 1px solid #d7d7d7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0; }
  .block-list li:first-of-type {
    border-top: none; }
  .block-list li > div > *:last-child {
    margin-bottom: 0; }

.block-list h3 {
  margin-top: 0; }

.block-list img {
  margin-right: 40px;
  max-width: 250px;
  display: block;
  height: auto; }

@media only screen and (max-width: 1023px) {
  .block-list {
    margin-bottom: 40px; } }

@media only screen and (max-width: 760px) {
  .block-list li {
    padding: 30px 0; }
    .block-list li:last-child {
      padding-bottom: 0; } }

@media only screen and (max-width: 660px) {
  .block-list {
    margin-bottom: 0; } }

.block-accordion ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid #d7d7d7; }
  .block-accordion ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 48px 0;
    border-bottom: 1px solid #d7d7d7; }
    .block-accordion ul li.expanded img {
      width: 170px;
      height: 170px;
      min-width: 170px;
      margin-right: 50px; }
    .block-accordion ul li.expanded .team-content {
      opacity: 1;
      visibility: visible; }
      .block-accordion ul li.expanded .team-content > div {
        padding: 50px 0 0 0; }
    .block-accordion ul li.expanded .toggle {
      top: 48px;
      left: auto;
      bottom: auto; }
      .block-accordion ul li.expanded .toggle:before {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
        top: 0; }
    .block-accordion ul li.expanded.has-image .team-content > div {
      overflow: hidden;
      padding: 50px 0 0 0; }
    .block-accordion ul li.has-image .team-content {
      -webkit-transition: opacity 0.2s, visibility 0.2s;
      -o-transition: opacity 0.2s, visibility 0.2s;
      transition: opacity 0.2s, visibility 0.2s; }
      .block-accordion ul li.has-image .team-content > div {
        overflow: hidden;
        padding: 50px 0 0 200px; }
  .block-accordion ul img {
    display: block;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    margin-right: 30px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; }
  .block-accordion ul h3 {
    margin: -0.3em 0 0.4em 0; }
  .block-accordion ul h4 {
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin: 0; }
  .block-accordion ul p {
    margin: 0; }
  .block-accordion ul .team-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s, visibility 0.2s, height 0.2s;
    -o-transition: opacity 0.2s, visibility 0.2s, height 0.2s;
    transition: opacity 0.2s, visibility 0.2s, height 0.2s; }
    .block-accordion ul .team-content > div {
      overflow: hidden;
      padding: 50px 0 0 0; }
  .block-accordion ul .toggle {
    background: transparent;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%; }
    .block-accordion ul .toggle:before {
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "";
      position: absolute;
      right: 0;
      top: 48px;
      display: block;
      width: 50px;
      height: 50px;
      line-height: 50px;
      border-radius: 50%;
      background: #eaeaea;
      text-align: center; }

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