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

.qs-datepicker * {
  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: 0.5em;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.qs-datepicker .qs-overlay .qs-close {
  align-self: flex-end;
  display: inline-table;
  padding: 0.5em;
  line-height: 0.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: 0.25em 0;
  margin: auto 0 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: 0.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: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  background: lightgray;
  filter: blur(0px);
  transition: filter 0.3s;
}

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

.qs-datepicker .qs-arrow {
  height: 25px;
  width: 25px;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.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%;
  transition: border 0.2s;
}

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

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

.qs-datepicker .qs-month-year {
  font-weight: bold;
  transition: border 0.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: 0.5ex;
}

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

.qs-datepicker .qs-squares {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
  filter: blur(0px);
  transition: filter 0.3s;
}

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

.qs-datepicker .qs-square {
  width: 14.28571429%;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.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: 0.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 {
  flex-direction: column;
}

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

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

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

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

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

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

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

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

/* 3D Effects */
.swiper-container-3d {
  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 {
  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: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  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: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  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 {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  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;
  transition: 300ms opacity;
  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 {
  transform: scale(0.33);
  position: relative;
}

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

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

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

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

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  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;
  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%;
  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%;
  transform: translateY(-50%);
  width: 8px;
}

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

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

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

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

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

/* 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%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  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: flex;
  justify-content: 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;
  transform-origin: 50%;
  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");
}
@keyframes swiper-preloader-spin {
  100% {
    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 {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  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;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  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 {
  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;
  backface-visibility: hidden;
}

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

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

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  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;
  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?apznwt");
  src: url("../icons/icomoon.eot?apznwt#iefix") format("embedded-opentype"), url("../icons/icomoon.ttf?apznwt") format("truetype"), url("../icons/icomoon.woff?apznwt") format("woff"), url("../icons/icomoon.svg?apznwt#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Fonts */
/* Colours */
/* Buttons */
/* Titles */
/* Text */
/* Links */
/* Forms */
/* Buttons */
@keyframes loading {
  from {
    opacity: 1;
    transform: rotate(0deg);
  }
  to {
    opacity: 1;
    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 {
  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 */
  -webkit-text-decoration: underline;
  text-decoration: underline; /* 2 */
  text-decoration: underline;
  -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 {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

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

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

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

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

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

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

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

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

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

*, *:before, *:after {
  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) {
    filter: blur(3px);
    transition: 0.15s;
  }
}
iframe {
  max-width: 100%;
}

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: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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: flex;
  line-height: 1;
  font-size: 0;
}
nav.social ul li:not(:last-of-type) {
  margin-right: 19px;
}
nav.social ul a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.2s;
  display: inline-block;
}
nav.social ul a:before {
  font-size: 32px;
}
nav.social ul a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #00adbb;
}
nav.social ul .item--messenger a:before {
  font-family: "icomoon" !important;
}
nav.social ul .item--messenger a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e906";
  font-size: 35px;
}
nav.social ul .item--facebook a:before {
  font-family: "icomoon" !important;
}
nav.social ul .item--facebook a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e904";
}
nav.social ul .item--twitter a:before {
  font-family: "icomoon" !important;
}
nav.social ul .item--twitter a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e908";
}
nav.social ul .item--instagram a:before {
  font-family: "icomoon" !important;
}
nav.social ul .item--instagram a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e905";
}
nav.social ul .item--snapchat a:before {
  font-family: "icomoon" !important;
}
nav.social ul .item--snapchat a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e907";
}
nav.social ul .item--spotify a:before {
  font-family: "icomoon" !important;
}
nav.social ul .item--spotify a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e915";
}
nav.social ul .item--twitch a:before {
  font-family: "icomoon" !important;
}
nav.social ul .item--twitch a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e917";
}
nav.social ul .item--linkedin a:before {
  font-family: "icomoon" !important;
}
nav.social ul .item--linkedin a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e918";
}
nav.social ul .item--youtube a:before {
  font-family: "icomoon" !important;
}
nav.social ul .item--youtube a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e919";
}

.g-recaptcha {
  position: relative;
  z-index: 999999;
}

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

button.load-more {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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: 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;
}

input[type=checkbox]:checked + span:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e914";
  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;
  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 {
  transition-duration: 0.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;
}
label.select .custom-select-container .custom-select-opener:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #00adbb;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 0.8em;
  transition: 0.15s;
}
label.select .custom-select-container.is-open .custom-select-opener:after {
  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;
  }
}

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

#sb_instagram #sbi_load .sbi_load_btn {
  border: 3px solid #000000 !important;
}

#sb_instagram #sbi_load .sbi_load_btn {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  border: 3px solid #000000;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  color: #ffffff;
  background: transparent;
  color: #000000;
}
#sb_instagram #sbi_load .sbi_load_btn:hover {
  background: #000000;
  color: #000000;
}
#sb_instagram #sbi_load .sbi_load_btn:hover {
  background: #000000;
  box-shadow: none;
  color: #ffffff;
}
#sb_instagram #sbi_load .sbi_load_btn br {
  display: none;
}
#sb_instagram #sbi_load .sbi_load_btn .sbi_loader {
  background-color: #888 !important;
}

body {
  padding-left: 100px;
}
@media only screen and (max-width: 660px) {
  body {
    padding-left: 0;
  }
}
body > header:first-of-type {
  display: flex;
  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;
  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;
  transition: opacity 0.2s, visibility 0.2s, transform 0.3s;
  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;
  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;
  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 {
  transition: color 0.2s;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
body > header:first-of-type > nav .opening-times a:hover {
  color: #00adbb;
}
body > header:first-of-type > nav .opening-times a:after {
  font-family: "icomoon" !important;
}
body > header:first-of-type > nav .opening-times a:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  font-size: 1.2em;
  margin-left: 0.5em;
  position: relative;
  left: 0px;
  transition: left 0.15s;
}
body > header:first-of-type > nav .opening-times a:hover:after {
  left: 4px;
}
body > header:first-of-type > nav .opening-times a:hover {
  color: white;
}
body > header:first-of-type > nav .opening-times a:after {
  color: #00adbb;
}
@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: 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 {
  line-height: 50px !important;
}
body > header:first-of-type .quicklinks a:before {
  background: #181818;
  width: 50px;
  height: 50px;
  display: block;
  margin-bottom: 10px;
  text-align: center;
  border-radius: 30px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: background 0.2s;
}
body > header:first-of-type .quicklinks li.home a:before {
  font-family: "icomoon" !important;
}
body > header:first-of-type .quicklinks li.home a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90a";
}
body > header:first-of-type .quicklinks li.contact a:before {
  font-family: "icomoon" !important;
}
body > header:first-of-type .quicklinks li.contact a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e909";
}
body > header:first-of-type .quicklinks li.visit a:before {
  font-family: "icomoon" !important;
}
body > header:first-of-type .quicklinks li.visit a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e916";
}
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;
  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%;
  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;
  color: #ffffff !important;
}
body > header:first-of-type .menu > li.menu-item-has-children > a:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  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;
  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: 38px;
}
body > header:first-of-type .menu .sub-menu li.item--current-exhibition:first-of-type, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition:first-of-type {
  padding-bottom: 0;
}
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: flex;
  align-items: center;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 0.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 {
  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;
}
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-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  font-size: 1em;
  transition: 0.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 {
  transform: translateX(4px);
}
body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition:before {
  content: "Upcoming Exhibition";
  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--events {
  position: relative;
  padding-bottom: 38px;
  padding-top: 13px;
}
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: flex;
  align-items: center;
  font-size: 1.1em;
  font-weight: bold;
}
body > header:first-of-type .menu .sub-menu li.item--events a .title span {
  flex: 1;
}
body > header:first-of-type .menu .sub-menu li.item--events a .title:after {
  font-family: "icomoon" !important;
}
body > header:first-of-type .menu .sub-menu li.item--events a .title:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  font-size: 1em;
  transition: 0.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 {
  transform: translateX(4px);
}
body > header:first-of-type .menu a {
  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: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media only screen and (max-width: 1900px) {
  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 {
  -webkit-text-fill-color: #ffffff !important;
}
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;
}
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: 50px;
  border-radius: 25px;
  border: 3px solid #ffffff;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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 {
  transition: color 0.2s;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  display: inline-flex;
  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;
}
body > header:first-of-type > .search .opening-times a:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  font-size: 1.2em;
  margin-left: 0.5em;
  position: relative;
  left: 0px;
  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;
  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%;
  transform: translateX(-50%);
}
body > header:first-of-type .menu-button span:nth-of-type(1) {
  display: block;
  width: 30px;
  height: 3px;
  background: #ffffff;
  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;
  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;
}
.menu-expanded body > header:first-of-type .menu-button span:nth-of-type(1):before {
  transform: rotate(-45deg);
}
.menu-expanded body > header:first-of-type .menu-button span:nth-of-type(1):after {
  top: 0 !important;
}
.menu-expanded body > header:first-of-type .menu-button span:nth-of-type(1):after {
  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;
}
body > header:first-of-type > .search-button:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e912";
}
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;
  transition: all 0.2s;
  top: 13px;
}
body > header:first-of-type > .search-button span:nth-of-type(1):before {
  transform: rotate(-45deg);
}
body > header:first-of-type > .search-button span:nth-of-type(1):after {
  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 {
  -webkit-text-decoration: none;
  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: 50px;
    border-radius: 25px;
    border: 3px solid #00adbb;
    padding: 0 25px;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    -webkit-text-decoration: none;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    color: #ffffff;
    background: transparent;
    bottom: 18px;
    left: 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 {
    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%;
    transform: translateY(-50%);
    right: 20px;
    width: auto;
    height: auto;
    min-height: 0;
    min-height: initial;
  }
  body > header:first-of-type .logo {
    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;
    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: flex;
    width: 100vw;
    min-width: 100vw;
    padding: 0 20px;
    bottom: 60px;
  }
  body > header:first-of-type .menu > li {
    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: 0.578em;
    padding: 18px 4px;
    border: 3px solid #1e1e1e;
    border-radius: 2px;
    transition: 0.15s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  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:first-of-type:before, body > header:first-of-type .menu .sub-menu li.item--upcoming-exhibition:first-of-type:before {
    padding-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 {
    font-size: 9px !important;
  }
  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;
  }
  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--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: flex;
    bottom: 20px;
    left: 40px;
    right: 40px;
    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;
  }
  body > header:first-of-type .quicklinks li.search:after {
    font-style: normal;
    font-weight: normal;
    font-feature-settings: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e912";
  }
  body > header:first-of-type .quicklinks li.close:after {
    font-family: "icomoon" !important;
  }
  body > header:first-of-type .quicklinks li.close:after {
    font-style: normal;
    font-weight: normal;
    font-feature-settings: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e913";
  }
  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 {
  -webkit-text-decoration: none;
  text-decoration: none;
  display: inline-block;
}
body > footer .instagram-feed h2 a:before {
  font-family: "icomoon" !important;
}
body > footer .instagram-feed h2 a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90b";
  font-size: 1.3em;
  vertical-align: middle;
  margin-right: 10px;
}
@media (max-width: 480px) {
  body > footer .instagram-feed #sb_instagram #sbi_images .sbi_item:nth-child(n+2) {
    display: none;
  }
}
body > footer .top {
  display: flex;
  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: flex;
  flex-direction: column;
  min-height: 630px;
}
body > footer .top > *:nth-child(4) {
  padding-left: 100px;
  border-left: none;
}
body > footer .instagram {
  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: linear-gradient(to bottom, black 0%, black 40%, rgba(0, 0, 0, 0) 100%);
}
body > footer .instagram h2 {
  margin: 0;
  font-size: 0.944em;
  margin-top: -0.5em;
}
body > footer .instagram h2 a {
  -webkit-text-decoration: none;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s;
}
body > footer .instagram h2 a:hover {
  color: #00adbb;
}
body > footer .instagram h2 a:before {
  font-family: "icomoon" !important;
}
body > footer .instagram h2 a:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90b";
  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 {
  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 {
  order: 40;
  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-text-fill-color: #ffffff !important;
}
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;
  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;
  transition: all 0.2s;
}
body > footer .subscribe .email-wrap input, body > footer .subscribe .textbox-wrap input {
  -webkit-text-fill-color: #ffffff !important;
}
body > footer .subscribe .email-wrap input, body > footer .subscribe .textbox-wrap input {
  -webkit-box-shadow: 0 0 0 1000px #000000 inset;
  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 {
  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;
  align-self: flex-start;
}
body > footer .connect nav.social ul {
  flex-wrap: wrap;
}
body > footer .connect nav.social li {
  margin-top: 10px;
}
body > footer .connect p a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #00adbb;
}
body > footer .connect p a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
body > footer .quicklinks {
  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;
  align-self: flex-start;
}
body > footer .quicklinks a {
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.2s;
}
body > footer .quicklinks a:hover {
  color: #00adbb;
}
body > footer .bottom {
  display: flex;
  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: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
body > footer .bottom li {
  margin-left: 50px;
}
body > footer .bottom a {
  -webkit-text-decoration: none;
  text-decoration: none;
  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 {
    order: 10;
  }
  body > footer .instagram {
    order: 20;
  }
  body > footer .quicklinks {
    order: 30;
  }
  body > footer .subscribe {
    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 {
    flex-wrap: wrap;
    font-size: 0.75em;
    text-align: center;
  }
  body > footer .bottom p, body > footer .bottom nav {
    width: 100%;
  }
  body > footer .bottom ul {
    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;
    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 {
    order: 10;
  }
  body > footer .instagram:after {
    content: "";
    display: block;
    padding-top: 80%;
    float: left;
  }
  body > footer .subscribe {
    order: 20;
  }
  body > footer .connect {
    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 {
    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: flex;
  overflow: hidden;
  padding: 100px;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 1900px) {
  .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;
  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: 50px;
    border-radius: 25px;
    border: 3px solid #626262;
    padding: 0 25px;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    -webkit-text-decoration: none;
    text-decoration: none;
    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: flex;
  overflow: hidden;
  flex-wrap: wrap;
  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;
  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 {
  width: 25% !important;
}
.upcoming-events .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  -webkit-text-decoration: none;
  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;
}
.upcoming-events .swiper-slide:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background: #1d1d1d;
  transition: 0.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: flex;
  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;
}
.upcoming-events .swiper-slide .more:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  position: relative;
  top: 2px;
  left: 10px;
  transition: 0.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 {
    order: 1;
    margin: auto;
    -webkit-text-decoration: none;
    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%;
    transform: translateX(-50%);
    z-index: 10;
  }
}

.the-grid {
  width: 100%;
}
.the-grid ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  width: 100%;
}
.the-grid ul li {
  position: relative;
  width: 25%;
  transition: 0.15s;
  background: #000000;
  border: 1px solid #181818;
}
.the-grid ul li.is-hidden {
  transform: scale(0.5);
  opacity: 0;
}
.the-grid ul li a {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: 0.15s;
  z-index: 1;
  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;
  transition: 0.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;
  transition: 0.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;
  transition: 0.15s;
}
.the-grid ul li .background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding-bottom: 70%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease;
}
.the-grid ul li .background:after {
  font-family: "icomoon" !important;
}
.the-grid ul li .background:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  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);
  transition: 0.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;
  transition: 0.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 {
  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: flex;
}
.top-info header {
  display: flex;
  position: fixed;
  top: 0;
  left: 100px;
  bottom: 0;
  padding: 100px;
  right: 37%;
  flex-direction: column;
  width: calc(37% - 20px);
  overflow: hidden;
}
@media only screen and (max-width: 1900px) {
  .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: 0.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: 0.8em 0;
}
.top-info header .pages a {
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: 0.15s;
}
.top-info header .pages a:after {
  font-family: "icomoon" !important;
}
.top-info header .pages a:after {
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  margin-left: 1em;
  font-size: 0.9em;
  color: #ffffff;
  opacity: 0;
  transition: 0.15s;
}
.top-info header .pages a:hover {
  color: #00adbb;
}
.top-info header .pages a:hover:after {
  color: #00adbb;
  opacity: 1;
  transform: translateX(4px);
}
.top-info header .translations {
  display: none;
}
.top-info header .translations a {
  -webkit-text-decoration: none;
  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: 50px;
  border-radius: 25px;
  border: 3px solid #ffffff;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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: 0.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: 1900px) {
  .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 {
  width: auto !important;
}
.top-info .content figure.wp-caption {
  margin: 3em 0;
  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;
  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 {
  -webkit-text-decoration: none;
  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 {
  -webkit-text-decoration: none;
  text-decoration: none;
  border-bottom: 1px solid #00adbb;
  transition: color 0.2s ease;
}
.top-info .content p a:hover {
  color: #00adbb;
}
.top-info .content p a.image-wrapper {
  border: none;
}
.top-info .content p a.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.top-info .content .map img {
  margin-top: 0;
  margin-bottom: 0;
}
.top-info .content img {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.top-info .content img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.top-info .content .top {
  transition: 0.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;
}
.top-info .details .time span:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  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 {
  font-family: "icomoon" !important;
}
.top-info .details .rating:before {
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90d";
}
.top-info .details .rating.rating-g:before {
  font-family: "icomoon" !important;
}
.top-info .details .rating.rating-g:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90d";
}
.top-info .details .rating.rating-pg:before {
  font-family: "icomoon" !important;
}
.top-info .details .rating.rating-pg:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e910";
}
.top-info .details .rating.rating-m:before {
  font-family: "icomoon" !important;
}
.top-info .details .rating.rating-m:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90e";
}
.top-info .details .rating.rating-ma:before {
  font-family: "icomoon" !important;
}
.top-info .details .rating.rating-ma:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90f";
}
.top-info .details .rating.rating-r:before {
  font-family: "icomoon" !important;
}
.top-info .details .rating.rating-r:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e911";
}
.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: flex;
}
.top-info .details > div > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.top-info .details > div > div > div {
  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 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 {
  -webkit-text-decoration: none;
  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: 0.9em;
  }
}
.top-info .tabs {
  padding: 0;
  list-style: none;
  display: flex;
  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 {
  -webkit-text-decoration: none;
  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: 0.9em;
  }
}
.top-info .tab-content {
  position: relative;
  overflow: hidden;
}
.top-info .tab-content .tab-pane {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: 0.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;
  display: flex;
  justify-content: space-between;
}
.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 {
  transition: color 0.2s;
  font-weight: normal;
  font-size: 1.444em;
  font-family: "galano-grotesque", arial, sans-serif;
  -webkit-text-decoration: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.top-info .navigation a:hover {
  color: #00adbb;
}
.top-info .navigation a:before, .top-info .navigation a:after {
  position: relative;
  color: #00adbb;
  font-size: 0.889em;
  transition: 0.15s;
}
.top-info .navigation a.next:after {
  font-family: "icomoon" !important;
}
.top-info .navigation a.next:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  left: 0;
  margin-left: 0.8em;
}
.top-info .navigation a.next:hover:after {
  left: 4px;
}
.top-info .navigation a.prev:before {
  font-family: "icomoon" !important;
}
.top-info .navigation a.prev:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e902";
  margin-right: 0.8em;
  right: 0;
}
.top-info .navigation a.prev:hover:before {
  right: 4px;
}
.top-info .navigation a:hover {
  color: inherit;
}
@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: 1580px) {
  .top-info header h1 {
    font-size: 2em;
  }
  .top-info header h2 {
    font-size: 1em;
  }
  .top-info header h3 {
    font-size: 1em;
  }
  .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: 1470px) {
  .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: 1180px) {
  .top-info {
    flex-wrap: wrap;
  }
  .top-info header {
    position: relative;
    width: 100%;
    max-width: 100%;
    right: auto;
    left: auto;
    padding-top: 100px;
  }
  .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;
  }
  .top-info .details:after {
    left: 0;
  }
}
@media only screen and (max-width: 760px) {
  .top-info .details > div {
    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: 0.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;
          user-select: none;
  z-index: 1;
  transition: 0.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: inline-flex;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #00adbb;
  align-items: center;
}
.back:before {
  font-family: "icomoon" !important;
}
.back:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e902";
  font-size: 1.3em;
  margin-right: 10px;
  transition: 0.15s;
}
.back span {
  margin-right: 8px;
}
.back span:after {
  content: " /";
}
.back:hover:before {
  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;
}

.date-range span:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  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: inline-flex;
  top: auto;
  left: auto;
  right: auto;
  margin: 0 6px;
  background-image: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #181818;
  justify-content: center;
  align-items: center;
  color: #00adbb;
  transition: 0.15s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #444444;
}

.swiper-button-prev:after {
  font-family: "icomoon" !important;
}

.swiper-button-prev:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e902";
}

.swiper-button-next:after {
  font-family: "icomoon" !important;
}

.swiper-button-next:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
}

.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;
  transition: 0.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;
}
.qs-datepicker .qs-arrow.qs-left:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e902";
}
.qs-datepicker .qs-arrow.qs-right:after {
  font-family: "icomoon" !important;
}
.qs-datepicker .qs-arrow.qs-right:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
}
.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: 1900px) {
  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;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: 0.15s;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
  z-index: 30;
}
.call-to-action:after {
  font-family: "icomoon" !important;
}
.call-to-action:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  display: inline-block;
  margin-left: 10px;
  transition: 0.15s;
}
.call-to-action:hover {
  background-color: #c028b9;
}
.call-to-action:hover:after {
  transform: translateX(4px);
}
@media only screen and (max-width: 1400px) {
  .call-to-action {
    padding: 18px 38px;
  }
}
@media only screen and (max-width: 660px) {
  .call-to-action {
    padding: 8px 20px;
    width: 100%;
    top: 50px;
  }
}

.pagination {
  padding: 100px 0;
  text-align: center;
}
@media only screen and (max-width: 1900px) {
  .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: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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%;
  animation: loading 0.6s infinite linear 0.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 {
  transition: 0.15s;
}
.filter-results.is-loading,
ul.results.is-loading,
.pagination.is-loading {
  opacity: 0.4;
}

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

.icons li > div {
  position: absolute;
}
.icons img {
  animation-name: bounceIn;
  animation-duration: 450ms;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.icons .transition-out {
  animation-name: bounceOut;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translate3d(0, 0, 0);
  }
  60% {
    opacity: 0.9;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    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 {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.content .subpages > div p {
  margin-bottom: 2em;
}
.content .subpages > div > a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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: 1900px) {
  .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,
.home .slideshow_2 {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}
.home .slideshow .swiper-pagination,
.home .slideshow_2 .swiper-pagination {
  bottom: auto;
  top: 100px;
  width: auto;
  line-height: 1;
  font-size: 0;
  padding: 0 100px;
}
@media only screen and (max-width: 1900px) {
  .home .slideshow .swiper-pagination,
  .home .slideshow_2 .swiper-pagination {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1280px) {
  .home .slideshow .swiper-pagination,
  .home .slideshow_2 .swiper-pagination {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 430px) {
  .home .slideshow .swiper-pagination,
  .home .slideshow_2 .swiper-pagination {
    padding: 0 20px;
  }
}
.home .slideshow .swiper-pagination .swiper-pagination-bullet,
.home .slideshow_2 .swiper-pagination .swiper-pagination-bullet {
  background: #808080;
  opacity: 1;
  width: 14px;
  height: 14px;
  transition: 0.15s;
  margin-left: 11px;
}
.home .slideshow .swiper-pagination .swiper-pagination-bullet:first-of-type,
.home .slideshow_2 .swiper-pagination .swiper-pagination-bullet:first-of-type {
  margin-left: 0;
}
.home .slideshow .swiper-pagination .swiper-pagination-bullet-active,
.home .slideshow_2 .swiper-pagination .swiper-pagination-bullet-active {
  background: white;
}
.home .slideshow .swiper-container,
.home .slideshow_2 .swiper-container {
  overflow: visible;
}
.home .slideshow .swiper-slide,
.home .slideshow_2 .swiper-slide {
  display: flex;
  min-height: 100vh;
  max-height: 100vh;
  padding: 170px 0 70px 100px;
  overflow: hidden;
}
.home .slideshow .swiper-slide.type-video-fullscreen .content,
.home .slideshow_2 .swiper-slide.type-video-fullscreen .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
}
.home .slideshow .swiper-slide.type-video-fullscreen .media,
.home .slideshow_2 .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,
.home .slideshow_2 .swiper-slide.type-video-fullscreen .media video {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transform: none;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}
.home .slideshow .swiper-slide.type-exhibition .exhibition.feature-type-gif:before,
.home .slideshow_2 .swiper-slide.type-exhibition .exhibition.feature-type-gif:before {
  content: none;
}
.home .slideshow .swiper-slide.feature-type-gif .content,
.home .slideshow_2 .swiper-slide.feature-type-gif .content {
  width: auto;
  position: absolute;
  top: 100px;
  right: 0;
  padding: 0 100px;
}
@media only screen and (max-width: 1900px) {
  .home .slideshow .swiper-slide.feature-type-gif .content,
  .home .slideshow_2 .swiper-slide.feature-type-gif .content {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1280px) {
  .home .slideshow .swiper-slide.feature-type-gif .content,
  .home .slideshow_2 .swiper-slide.feature-type-gif .content {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 430px) {
  .home .slideshow .swiper-slide.feature-type-gif .content,
  .home .slideshow_2 .swiper-slide.feature-type-gif .content {
    padding: 0 20px;
  }
}
.home .slideshow .swiper-slide.feature-type-gif .content h1,
.home .slideshow_2 .swiper-slide.feature-type-gif .content h1 {
  display: none;
}
.home .slideshow .swiper-slide .content,
.home .slideshow_2 .swiper-slide .content {
  position: relative;
  width: 37%;
  z-index: 10;
}
.home .slideshow .swiper-slide .content h1,
.home .slideshow_2 .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,
  .home .slideshow_2 .swiper-slide .content h1 {
    font-size: 3.4em;
  }
}
@media only screen and (max-width: 960px) {
  .home .slideshow .swiper-slide .content h1,
  .home .slideshow_2 .swiper-slide .content h1 {
    font-size: 2.8em;
  }
}
@media only screen and (max-width: 660px) {
  .home .slideshow .swiper-slide .content h1,
  .home .slideshow_2 .swiper-slide .content h1 {
    font-size: 2.2em;
  }
}
@media only screen and (max-width: 450px) {
  .home .slideshow .swiper-slide .content h1,
  .home .slideshow_2 .swiper-slide .content h1 {
    font-size: 2em;
  }
}
.home .slideshow .swiper-slide .content p,
.home .slideshow_2 .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,
.home .slideshow_2 .swiper-slide .content a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  border: 3px solid white;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  color: #ffffff;
  background: transparent;
  white-space: nowrap;
}
.home .slideshow .swiper-slide .content a:hover,
.home .slideshow_2 .swiper-slide .content a:hover {
  background: white;
  color: #000000;
}
.home .slideshow .swiper-slide .media,
.home .slideshow_2 .swiper-slide .media {
  width: 45%;
}
.home .slideshow .swiper-slide .media.type-image img,
.home .slideshow_2 .swiper-slide .media.type-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .slideshow .swiper-slide .media video,
.home .slideshow_2 .swiper-slide .media video {
  position: relative;
  width: 190%;
  height: auto;
  transform: translate(-23%, -20%);
}
.home .slideshow .swiper-slide .exhibition,
.home .slideshow_2 .swiper-slide .exhibition {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.home .slideshow .swiper-slide .exhibition:before,
.home .slideshow_2 .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: 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,
.home .slideshow_2 .swiper-slide .exhibition .horizontal-lines,
.home .slideshow_2 .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,
.home .slideshow_2 .swiper-slide .exhibition .horizontal-lines:before,
.home .slideshow_2 .swiper-slide .exhibition .horizontal-lines:after,
.home .slideshow_2 .swiper-slide .exhibition .vertical-lines:before,
.home .slideshow_2 .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,
.home .slideshow_2 .swiper-slide .exhibition .horizontal-lines:before,
.home .slideshow_2 .swiper-slide .exhibition .horizontal-lines:after {
  height: 1px;
  width: 100%;
  left: 0;
}
.home .slideshow .swiper-slide .exhibition .horizontal-lines:before,
.home .slideshow_2 .swiper-slide .exhibition .horizontal-lines:before {
  top: 33.33%;
}
.home .slideshow .swiper-slide .exhibition .horizontal-lines:after,
.home .slideshow_2 .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,
.home .slideshow_2 .swiper-slide .exhibition .vertical-lines:before,
.home .slideshow_2 .swiper-slide .exhibition .vertical-lines:after {
  height: 100%;
  width: 1px;
  top: 0;
}
.home .slideshow .swiper-slide .exhibition .vertical-lines:before,
.home .slideshow_2 .swiper-slide .exhibition .vertical-lines:before {
  left: 25%;
}
.home .slideshow .swiper-slide .exhibition .vertical-lines:after,
.home .slideshow_2 .swiper-slide .exhibition .vertical-lines:after {
  left: 50%;
}
.home .slideshow .swiper-slide .exhibition .image,
.home .slideshow_2 .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 .gif,
.home .slideshow_2 .swiper-slide .gif {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home .slideshow .swiper-slide .gif img,
.home .slideshow_2 .swiper-slide .gif img {
  position: relative;
  width: 100%;
  height: auto;
}
.home .slideshow .swiper-slide .icons,
.home .slideshow_2 .swiper-slide .icons {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: flex;
  flex-wrap: wrap;
}
.home .slideshow .swiper-slide .icons li,
.home .slideshow_2 .swiper-slide .icons li {
  width: 25%;
  height: 33.33%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home .slideshow .swiper-slide .icons li > div,
.home .slideshow_2 .swiper-slide .icons li > div {
  padding: 15% 25%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .slideshow .swiper-slide .icons img,
.home .slideshow_2 .swiper-slide .icons img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.home .slideshow .swiper-slide .animations,
.home .slideshow_2 .swiper-slide .animations {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 63%;
  max-width: calc(100vw - 760px);
}
.home .slideshow .swiper-slide .animations .animation,
.home .slideshow_2 .swiper-slide .animations .animation {
  position: absolute;
  background-size: cover;
  transition: 0.2s;
}
.home .slideshow .swiper-slide .animations .animation-01,
.home .slideshow_2 .swiper-slide .animations .animation-01 {
  top: 0;
  left: 0;
  background-color: #333333;
}
.home .slideshow .swiper-slide .animations .animation-02,
.home .slideshow_2 .swiper-slide .animations .animation-02 {
  top: 0;
  right: 0;
  background-color: #666666;
}
.home .slideshow .swiper-slide .animations .animation-03,
.home .slideshow_2 .swiper-slide .animations .animation-03 {
  bottom: 0;
  right: 0;
  background-color: #999999;
}
.home .slideshow .swiper-slide .animations .animation-04,
.home .slideshow_2 .swiper-slide .animations .animation-04 {
  bottom: 0;
  left: 0;
  background-color: #000000;
}
.home .slideshow .swiper-slide .animations.phase-01 .animation-01,
.home .slideshow_2 .swiper-slide .animations.phase-01 .animation-01 {
  bottom: 40%;
  right: 25%;
  transition: right 0.2s 0.3s, bottom 0.2s 0.8s;
}
.home .slideshow .swiper-slide .animations.phase-01 .animation-02,
.home .slideshow_2 .swiper-slide .animations.phase-01 .animation-02 {
  bottom: 20%;
  left: 75%;
  transition: left 0.2s 0.3s, bottom 0.2s;
}
.home .slideshow .swiper-slide .animations.phase-01 .animation-03,
.home .slideshow_2 .swiper-slide .animations.phase-01 .animation-03 {
  top: 80%;
  left: 75%;
  transition: left 0.2s 0.3s, top 0.2s;
}
.home .slideshow .swiper-slide .animations.phase-01 .animation-04,
.home .slideshow_2 .swiper-slide .animations.phase-01 .animation-04 {
  top: 60%;
  right: 25%;
  transition: right 0.2s 0.3s, top 0.2s 0.8s;
}
.home .slideshow .swiper-slide .animations.phase-02 .animation-01,
.home .slideshow_2 .swiper-slide .animations.phase-02 .animation-01 {
  bottom: 15%;
  right: 65%;
  transition: right 0.2s, bottom 0.2s 0.4s;
}
.home .slideshow .swiper-slide .animations.phase-02 .animation-02,
.home .slideshow_2 .swiper-slide .animations.phase-02 .animation-02 {
  bottom: 60%;
  left: 35%;
  transition: left 0.2s, bottom 0.2s 1s;
}
.home .slideshow .swiper-slide .animations.phase-02 .animation-03,
.home .slideshow_2 .swiper-slide .animations.phase-02 .animation-03 {
  top: 40%;
  left: 35%;
  transition: left 0.2s, top 0.2s 1s;
}
.home .slideshow .swiper-slide .animations.phase-02 .animation-04,
.home .slideshow_2 .swiper-slide .animations.phase-02 .animation-04 {
  top: 85%;
  right: 65%;
  transition: right 0.2s, top 0.2s 0.4s;
}
.home .slideshow .swiper-slide .animations.phase-03 .animation-01,
.home .slideshow_2 .swiper-slide .animations.phase-03 .animation-01 {
  bottom: 85%;
  right: 48%;
  transition: right 0.2s 0.5s, bottom 0.2s;
}
.home .slideshow .swiper-slide .animations.phase-03 .animation-02,
.home .slideshow_2 .swiper-slide .animations.phase-03 .animation-02 {
  bottom: 70%;
  left: 52%;
  transition: left 0.2s 0.5s, bottom 0.2s 1.4s;
}
.home .slideshow .swiper-slide .animations.phase-03 .animation-03,
.home .slideshow_2 .swiper-slide .animations.phase-03 .animation-03 {
  top: 30%;
  left: 52%;
  transition: left 0.2s 0.5s, top 0.2s 1.4s;
}
.home .slideshow .swiper-slide .animations.phase-03 .animation-04,
.home .slideshow_2 .swiper-slide .animations.phase-03 .animation-04 {
  top: 15%;
  right: 48%;
  transition: right 0.2s 0.5s, top 0.2s;
}
@media only screen and (max-width: 860px) {
  .home .slideshow .swiper-slide.feature-type-gif .content,
  .home .slideshow_2 .swiper-slide.feature-type-gif .content {
    top: 56px;
  }
  .home .slideshow .swiper-slide .exhibition .horizontal-lines:before,
  .home .slideshow_2 .swiper-slide .exhibition .horizontal-lines:before {
    top: 25%;
  }
  .home .slideshow .swiper-slide .exhibition .horizontal-lines:after,
  .home .slideshow_2 .swiper-slide .exhibition .horizontal-lines:after {
    top: 50%;
  }
  .home .slideshow .swiper-slide .exhibition .vertical-lines:before,
  .home .slideshow_2 .swiper-slide .exhibition .vertical-lines:before {
    left: 33.33%;
  }
  .home .slideshow .swiper-slide .exhibition .vertical-lines:after,
  .home .slideshow_2 .swiper-slide .exhibition .vertical-lines:after {
    left: 66.66%;
  }
  .home .slideshow .swiper-slide .gif,
  .home .slideshow_2 .swiper-slide .gif {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .home .slideshow .swiper-slide .icons li,
  .home .slideshow_2 .swiper-slide .icons li {
    width: 33.33%;
    height: 25%;
  }
}
@media only screen and (max-width: 660px) {
  .home .slideshow .swiper-slide.feature-type-gif .content,
  .home .slideshow_2 .swiper-slide.feature-type-gif .content {
    top: 43px;
  }
}
.home .slideshow .swiper + div,
.home .slideshow_2 .swiper + div {
  padding: 70px 100px;
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media only screen and (max-width: 1900px) {
  .home .slideshow .swiper + div,
  .home .slideshow_2 .swiper + div {
    padding: 42px 60px;
  }
}
@media only screen and (max-width: 1280px) {
  .home .slideshow .swiper + div,
  .home .slideshow_2 .swiper + div {
    padding: 28px 40px;
  }
}
@media only screen and (max-width: 430px) {
  .home .slideshow .swiper + div,
  .home .slideshow_2 .swiper + div {
    padding: 14px 20px;
  }
}
.home .slideshow .swiper + div .opening-times > *,
.home .slideshow_2 .swiper + div .opening-times > * {
  pointer-events: all;
}
.home .slideshow .swiper + div .opening-times ul,
.home .slideshow_2 .swiper + div .opening-times ul {
  list-style: none;
  padding: 0;
}
.home .slideshow .swiper + div .opening-times a,
.home .slideshow_2 .swiper + div .opening-times a {
  transition: color 0.2s;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.home .slideshow .swiper + div .opening-times a:hover,
.home .slideshow_2 .swiper + div .opening-times a:hover {
  color: #00adbb;
}
.home .slideshow .swiper + div .opening-times a:after,
.home .slideshow_2 .swiper + div .opening-times a:after {
  font-family: "icomoon" !important;
}
.home .slideshow .swiper + div .opening-times a:after,
.home .slideshow_2 .swiper + div .opening-times a:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  font-size: 1.2em;
  margin-left: 0.5em;
  position: relative;
  left: 0px;
  transition: left 0.15s;
}
.home .slideshow .swiper + div .opening-times a:hover:after,
.home .slideshow_2 .swiper + div .opening-times a:hover:after {
  left: 4px;
}
.home .slideshow .swiper + div .opening-times a:hover,
.home .slideshow_2 .swiper + div .opening-times a:hover {
  color: #ffffff;
}
.home .slideshow .swiper + div .opening-times a:after,
.home .slideshow_2 .swiper + div .opening-times a:after {
  color: #00adbb;
}
.home .slideshow .swiper + div .scroll,
.home .slideshow_2 .swiper + div .scroll {
  margin: 0 0 0 30px;
  text-align: right;
  display: block;
  -webkit-text-decoration: none;
  text-decoration: none;
  pointer-events: all;
}
.home .slideshow .swiper + div .scroll:after,
.home .slideshow_2 .swiper + div .scroll:after {
  font-family: "icomoon" !important;
}
.home .slideshow .swiper + div .scroll:after,
.home .slideshow_2 .swiper + div .scroll:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  display: inline-flex;
  background-color: #181818;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
}
@media only screen and (max-width: 1400px) {
  .home .slideshow .swiper-slide,
  .home .slideshow_2 .swiper-slide {
    padding-left: 60px;
  }
  .home .slideshow .swiper-slide .content h1,
  .home .slideshow_2 .swiper-slide .content h1 {
    font-size: 3.4em;
  }
  .home .slideshow .swiper-slide .content p,
  .home .slideshow_2 .swiper-slide .content p {
    font-size: 2.1em;
  }
  .home .slideshow .swiper-slide .animations,
  .home .slideshow_2 .swiper-slide .animations {
    max-width: calc(100vw - 580px);
  }
}
@media only screen and (max-width: 1280px) {
  .home .slideshow .swiper-slide,
  .home .slideshow_2 .swiper-slide {
    padding-left: 40px;
  }
  .home .slideshow .swiper-slide .animations,
  .home .slideshow_2 .swiper-slide .animations {
    max-width: calc(100vw - 520px);
  }
}
@media only screen and (max-width: 1280px) and (min-height: 900px) {
  .home .slideshow .swiper-slide,
  .home .slideshow_2 .swiper-slide {
    flex-direction: column;
  }
  .home .slideshow .swiper-slide .content,
  .home .slideshow_2 .swiper-slide .content {
    width: 100%;
    padding-right: 0;
  }
  .home .slideshow .swiper-slide .media,
  .home .slideshow_2 .swiper-slide .media {
    width: 100%;
  }
  .home .slideshow .swiper-slide .media video,
  .home .slideshow_2 .swiper-slide .media video {
    width: 146%;
    transform: translate(-18%, -8%);
  }
}
@media only screen and (max-height: 760px) {
  .home .slideshow .swiper + div .opening-times,
  .home .slideshow_2 .swiper + div .opening-times {
    white-space: nowrap;
  }
  .home .slideshow .swiper + div .opening-times ul,
  .home .slideshow_2 .swiper + div .opening-times ul {
    margin: 0;
    display: flex;
  }
  .home .slideshow .swiper + div .opening-times ul li:not(:last-child):after,
  .home .slideshow_2 .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,
  .home .slideshow_2 .swiper + div {
    display: none;
  }
}
@media only screen and (max-width: 1000px) {
  .home .slideshow .swiper-slide .content a,
  .home .slideshow_2 .swiper-slide .content a {
    font-size: 15px;
    padding: 0 20px;
    height: 45px;
    line-height: 38px;
  }
  .home .slideshow .swiper-slide .exhibition:before,
  .home .slideshow_2 .swiper-slide .exhibition:before {
    width: 250%;
  }
  .home .slideshow .swiper-slide .animations,
  .home .slideshow_2 .swiper-slide .animations {
    left: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 860px) {
  .home .slideshow .swiper-pagination,
  .home .slideshow_2 .swiper-pagination {
    top: 56px;
  }
  .home .slideshow .swiper-slide,
  .home .slideshow_2 .swiper-slide {
    padding-top: 90px;
    padding-bottom: 20px;
  }
  .home .slideshow .swiper-slide .media video,
  .home .slideshow_2 .swiper-slide .media video {
    width: 240%;
    transform: translate(-27%, 10%);
  }
}
@media only screen and (max-width: 860px) and (min-height: 630px) {
  .home .slideshow .swiper-slide,
  .home .slideshow_2 .swiper-slide {
    flex-direction: column;
  }
  .home .slideshow .swiper-slide .content,
  .home .slideshow_2 .swiper-slide .content {
    width: 100%;
    padding-right: 0;
  }
  .home .slideshow .swiper-slide .media,
  .home .slideshow_2 .swiper-slide .media {
    width: 100%;
  }
  .home .slideshow .swiper-slide .media video,
  .home .slideshow_2 .swiper-slide .media video {
    width: 186%;
    transform: translate(-25%, 8%);
  }
}
@media only screen and (max-width: 660px) {
  .home .slideshow .swiper + div,
  .home .slideshow_2 .swiper + div {
    display: none;
  }
  .home .slideshow .swiper-pagination,
  .home .slideshow_2 .swiper-pagination {
    top: 76px;
  }
  .home .slideshow .swiper-slide,
  .home .slideshow_2 .swiper-slide {
    flex-direction: column;
    padding-top: 110px;
  }
  .home .slideshow .swiper-slide h2,
  .home .slideshow_2 .swiper-slide h2 {
    font-size: 34px;
  }
  .home .slideshow .swiper-slide .content,
  .home .slideshow_2 .swiper-slide .content {
    width: 100%;
    padding-right: 0;
  }
  .home .slideshow .swiper-slide .content p,
  .home .slideshow_2 .swiper-slide .content p {
    font-size: 1.7em;
  }
  .home .slideshow .swiper-slide .content a,
  .home .slideshow_2 .swiper-slide .content a {
    border: 0;
    padding: 0;
  }
  .home .slideshow .swiper-slide .content a:after,
  .home .slideshow_2 .swiper-slide .content a:after {
    font-family: "icomoon" !important;
  }
  .home .slideshow .swiper-slide .content a:after,
  .home .slideshow_2 .swiper-slide .content a:after {
    font-style: normal;
    font-weight: normal;
    font-feature-settings: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e901";
    color: #00adbb;
    position: relative;
    top: 2px;
    left: 10px;
  }
  .home .slideshow .swiper-slide .content a:hover,
  .home .slideshow_2 .swiper-slide .content a:hover {
    color: #ffffff;
    background: transparent;
  }
  .home .slideshow .swiper-slide .media,
  .home .slideshow_2 .swiper-slide .media {
    width: 100%;
  }
  .home .slideshow .swiper-slide .media video,
  .home .slideshow_2 .swiper-slide .media video {
    width: 186%;
    transform: translate(-25%, -12%);
  }
}
@media only screen and (max-width: 430px) {
  .home .slideshow .swiper-slide,
  .home .slideshow_2 .swiper-slide {
    padding-left: 20px;
  }
  .home .slideshow .swiper + div,
  .home .slideshow_2 .swiper + div {
    padding: 15px 20px;
  }
}
.home .current-exhibitions {
  display: flex;
  border-top: 1px solid #323232;
  padding-bottom: 0;
  background: url("../images/current-exhibition-background.jpg") no-repeat center;
  background-size: cover;
}
.home .current-exhibitions .current-exhibition {
  position: relative;
  display: flex;
  width: 100%;
  padding-right: 0;
  padding-bottom: 430px;
}
@media only screen and (max-width: 1600px) {
  .home .current-exhibitions .current-exhibition {
    padding-bottom: 390px;
  }
}
@media only screen and (max-width: 1400px) {
  .home .current-exhibitions .current-exhibition {
    padding-bottom: 360px;
  }
}
.home .current-exhibitions .current-exhibition .exhibition-content {
  width: 45%;
  padding-right: 130px;
}
.home .current-exhibitions .current-exhibition .exhibition-content :first-child {
  margin-top: 0;
}
.home .current-exhibitions .current-exhibition .exhibition-content :last-child {
  margin-bottom: 0;
}
.home .current-exhibitions .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-exhibitions .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-exhibitions .current-exhibition .exhibition-content h2 {
    font-size: 2.4em;
  }
}
@media only screen and (max-width: 960px) {
  .home .current-exhibitions .current-exhibition .exhibition-content h2 {
    font-size: 2em;
  }
}
@media only screen and (max-width: 660px) {
  .home .current-exhibitions .current-exhibition .exhibition-content h2 {
    font-size: 1.75em;
  }
}
.home .current-exhibitions .current-exhibition .exhibition-content p {
  font-size: 1.222em;
}
.home .current-exhibitions .current-exhibition .exhibition-content a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  color: #ffffff;
  background: transparent;
}
.home .current-exhibitions .current-exhibition .exhibition-content a:hover {
  background: #00adbb;
  color: #000000;
}
.home .current-exhibitions .current-exhibition .swiper-container {
  position: absolute;
  width: calc(55% + 430px);
  padding-left: 430px;
  right: 0;
}
.home .current-exhibitions .current-exhibition .swiper-slide {
  width: 380px;
  height: 500px;
  background: #1d1d1d;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: opacity 0.5s, transform 0.5s;
}
.home .current-exhibitions .current-exhibition .swiper-slide, .home .current-exhibitions .current-exhibition .swiper-slide.swiper-slide-prev {
  opacity: 0;
  transform: scale(0.5);
}
.home .current-exhibitions .current-exhibition .swiper-slide.swiper-slide-visible {
  opacity: 1;
  transform: scale(1);
}
.home .current-exhibitions .current-exhibition .swiper-slide:hover:before {
  background: #ffffff;
  color: #181818;
}
.home .current-exhibitions .current-exhibition .swiper-slide:before {
  font-family: "icomoon" !important;
}
.home .current-exhibitions .current-exhibition .swiper-slide:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background: #1d1d1d;
  transition: 0.15s;
  z-index: 1;
  font-size: 15px;
  color: #00adbb;
}
.home .current-exhibitions .current-exhibition .swiper-slide :first-child {
  margin-top: 0;
}
.home .current-exhibitions .current-exhibition .swiper-slide :last-child {
  margin-bottom: 0;
}
.home .current-exhibitions .current-exhibition .swiper-slide figure {
  margin: 0;
  height: 250px;
  position: relative;
}
.home .current-exhibitions .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-exhibitions .current-exhibition .swiper-slide .content {
  padding: 50px;
}
.home .current-exhibitions .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-exhibitions .current-exhibition .nav {
  padding: 50px 100px;
}
@media only screen and (min-width: 1000px) {
  .home .current-exhibitions .current-exhibition .nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .home .current-exhibitions .current-exhibition .nav a {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    border: 3px solid #313131;
    padding: 0 25px;
    font-family: "galano-grotesque", arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    -webkit-text-decoration: none;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    color: #ffffff;
    background: transparent;
    margin-left: 24px;
  }
  .home .current-exhibitions .current-exhibition .nav a:hover {
    background: #313131;
    color: #000000;
  }
  .home .current-exhibitions .current-exhibition .nav a:hover {
    color: #ffffff;
  }
}
@media only screen and (max-width: 1600px) {
  .home .current-exhibitions .current-exhibition .swiper-slide {
    width: 340px;
    height: 460px;
  }
  .home .current-exhibitions .current-exhibition .swiper-slide figure {
    height: 210px;
  }
  .home .current-exhibitions .current-exhibition .nav {
    padding: 50px 60px;
  }
}
@media only screen and (max-width: 1400px) {
  .home .current-exhibitions .current-exhibition .swiper-slide {
    width: 300px;
    height: 410px;
  }
  .home .current-exhibitions .current-exhibition .swiper-slide .content {
    padding: 30px;
  }
  .home .current-exhibitions .current-exhibition .swiper-slide figure {
    height: 180px;
  }
  .home .current-exhibitions .current-exhibition .nav {
    padding: 40px;
  }
}
@media only screen and (max-width: 1150px) {
  .home .current-exhibitions .current-exhibition .exhibition-content {
    padding-right: 65px;
  }
}
@media only screen and (max-width: 1000px) {
  .home .current-exhibitions .current-exhibition {
    flex-wrap: wrap;
    padding: 50px 0 0 0;
  }
  .home .current-exhibitions .current-exhibition .exhibition-content {
    width: 100%;
    padding: 0 40px 40px 40px;
  }
  .home .current-exhibitions .current-exhibition .swiper-container {
    position: relative;
    width: 100%;
    padding-left: 0;
  }
  .home .current-exhibitions .current-exhibition .nav {
    position: relative;
    display: flex;
    height: 100px;
    top: -100px;
    align-items: center;
    justify-content: space-between;
  }
  .home .current-exhibitions .current-exhibition .nav .swiper-button-prev {
    order: 10;
  }
  .home .current-exhibitions .current-exhibition .nav .swiper-button-next {
    order: 30;
  }
  .home .current-exhibitions .current-exhibition .nav a {
    order: 20;
  }
}
@media only screen and (max-width: 400px) {
  .home .current-exhibitions .current-exhibition .exhibition-content {
    padding: 0 20px 40px 20px;
  }
  .home .current-exhibitions .current-exhibition .nav {
    padding: 40px 20px;
  }
  .home .current-exhibitions .current-exhibition .nav > * {
    margin: 0;
  }
}
.home .current-exhibitions[data-count="2"] {
  justify-content: space-between;
  border-bottom: 1px solid #313131;
}
.home .current-exhibitions[data-count="2"]:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #313131;
}
.home .current-exhibitions[data-count="2"] .current-exhibition {
  flex-direction: column;
  width: calc(50% - 100px);
  padding: 0;
}
.home .current-exhibitions[data-count="2"] .exhibition-content {
  width: auto;
  padding-right: 0;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1000px) {
  .home .current-exhibitions[data-count="2"] .swiper-container {
    position: relative;
    padding-left: 0;
    margin-top: auto;
    margin-left: -100px;
    overflow: hidden;
    width: calc(100% + 200px);
  }
  .home .current-exhibitions[data-count="2"] .swiper-container .swiper-wrapper {
    height: auto;
    padding-left: 100px;
    padding-right: 100px;
  }
  .home .current-exhibitions[data-count="2"] .swiper-slide {
    width: 327px;
    height: 430px;
  }
  .home .current-exhibitions[data-count="2"] .swiper-slide:last-child {
    margin-right: 150px;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1400px) {
  .home .current-exhibitions[data-count="2"] .current-exhibition {
    width: calc(50% - 60px);
  }
  .home .current-exhibitions[data-count="2"] .swiper-container {
    margin-left: -60px;
    width: calc(100% + 120px);
  }
  .home .current-exhibitions[data-count="2"] .swiper-container .swiper-wrapper {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1280px) {
  .home .current-exhibitions[data-count="2"] .current-exhibition {
    width: calc(50% - 40px);
  }
  .home .current-exhibitions[data-count="2"] .swiper-container {
    margin-left: -40px;
    width: calc(100% + 80px);
  }
  .home .current-exhibitions[data-count="2"] .swiper-container .swiper-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 1000px) {
  .home .current-exhibitions[data-count="2"] {
    flex-wrap: wrap;
    padding: 50px 0 0 0;
  }
  .home .current-exhibitions[data-count="2"]:after {
    content: none;
  }
  .home .current-exhibitions[data-count="2"] .current-exhibition {
    width: 100%;
  }
  .home .current-exhibitions[data-count="2"] .exhibition-content {
    margin-bottom: 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: 1900px) {
  .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: flex;
  flex-direction: column;
  align-items: 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: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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;
  transition: 0.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: flex;
  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: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home .upcoming-exhibition .icons li > div {
  padding: 15% 25%;
  height: 100%;
  display: flex;
  align-items: 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: flex;
  top: 0;
  right: 0;
  padding: 25px 25px 25px 35px;
  background: #181818;
  align-items: center;
  z-index: 100;
}
.home .countdown h4 {
  margin: 0;
  padding-right: 15px;
}
.home .countdown ul {
  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%;
    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: 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 {
  transform: rotate(180deg);
}
.top-info .team-accordion img {
  display: block;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  margin-right: 30px;
  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;
  transition-delay: 0.2s;
  transition-position: opacity;
  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;
}
.top-info .team-accordion .toggle:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: #eaeaea;
  text-align: center;
  cursor: pointer;
}

.page--whats-on .header {
  display: flex;
  padding: 100px;
}
@media only screen and (max-width: 1900px) {
  .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: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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 {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.page--whats-on .featured-item > a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  border: 3px solid #ffffff;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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: linear-gradient(transparent 0%, #181818 85%, #181818 100%);
}
.page--whats-on section.exhibitions {
  position: relative;
  display: flex;
  padding: 0 100px;
  z-index: 1;
}
@media only screen and (max-width: 1900px) {
  .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 {
  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: 1900px) {
  .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 {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.page--whats-on section.exhibitions .current-exhibition > a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  border: 3px solid #c028b9;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 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;
  -webkit-text-decoration: none;
  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;
}
.page--whats-on section.exhibitions .upcoming-exhibition h3:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  position: absolute;
  right: 0;
  transition: 0.15s;
}
.page--whats-on section.exhibitions .upcoming-exhibition:hover h3:after {
  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: flex;
  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: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page--whats-on section.exhibitions .upcoming-exhibition .icons li > div {
  padding: 15%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: 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: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 100px;
  transition: 0.3s;
  z-index: 1;
}
@media only screen and (max-width: 1900px) {
  .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: 0.4;
}
.page--whats-on section.events form {
  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;
  transform: none;
  opacity: 0.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: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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: 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 {
    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 {
    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: flex;
  padding: 100px;
}
@media only screen and (max-width: 1900px) {
  .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: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 100px;
  transition: 0.3s;
  z-index: 1;
}
@media only screen and (max-width: 1900px) {
  .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: 0.4;
}
.page--events section.events form {
  flex: 1;
  display: flex;
  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;
  transform: none;
  opacity: 0.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: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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: 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 {
    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 {
    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 {
  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 {
  flex-direction: row;
  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 {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.single-post .comments .comment-reply-link {
  -webkit-text-decoration: none;
  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.7179487179%;
}
.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: 3em;
}
.single-mod_exhibition .top-info.has-translations .content .feature {
  margin-bottom: 0;
}
.single-mod_exhibition .top-info .content {
  background: #000000;
  color: white;
  overflow: hidden;
}
.single-mod_exhibition .top-info .content h2 {
  margin-top: 1em;
}
.single-mod_exhibition .top-info .content .translations {
  background: #333;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1400px) {
  .single-mod_exhibition .top-info .content .translations {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 1280px) {
  .single-mod_exhibition .top-info .content .translations {
    margin-bottom: 40px;
  }
}
.single-mod_exhibition .top-info .content .translations:before {
  background: #333;
}
.single-mod_exhibition .top-info .content .translations a {
  border-color: white;
}
.single-mod_exhibition .top-info .content .translations a.current {
  border-color: black;
  background: black;
}
.single-mod_exhibition .exhibits {
  padding: 100px;
}
@media only screen and (max-width: 1900px) {
  .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 .fluid-width-video-wrapper {
  margin: 0;
}
.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: flex;
  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: flex;
  align-items: 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: flex;
  align-items: 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;
  transition: 0.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%;
  transition: right 0.2s 0.3s, bottom 0.2s 0.8s;
}
.single-mod_exhibition .top-info .content .feature .animations.phase-01 .animation-02 {
  bottom: 20%;
  left: 75%;
  transition: left 0.2s 0.3s, bottom 0.2s;
}
.single-mod_exhibition .top-info .content .feature .animations.phase-01 .animation-03 {
  top: 80%;
  left: 75%;
  transition: left 0.2s 0.3s, top 0.2s;
}
.single-mod_exhibition .top-info .content .feature .animations.phase-01 .animation-04 {
  top: 60%;
  right: 25%;
  transition: right 0.2s 0.3s, top 0.2s 0.8s;
}
.single-mod_exhibition .top-info .content .feature .animations.phase-02 .animation-01 {
  bottom: 15%;
  right: 65%;
  transition: right 0.2s, bottom 0.2s 0.4s;
}
.single-mod_exhibition .top-info .content .feature .animations.phase-02 .animation-02 {
  bottom: 60%;
  left: 35%;
  transition: left 0.2s, bottom 0.2s 1s;
}
.single-mod_exhibition .top-info .content .feature .animations.phase-02 .animation-03 {
  top: 40%;
  left: 35%;
  transition: left 0.2s, top 0.2s 1s;
}
.single-mod_exhibition .top-info .content .feature .animations.phase-02 .animation-04 {
  top: 85%;
  right: 65%;
  transition: right 0.2s, top 0.2s 0.4s;
}
.single-mod_exhibition .top-info .content .feature .animations.phase-03 .animation-01 {
  bottom: 85%;
  right: 48%;
  transition: right 0.2s 0.5s, bottom 0.2s;
}
.single-mod_exhibition .top-info .content .feature .animations.phase-03 .animation-02 {
  bottom: 70%;
  left: 52%;
  transition: left 0.2s 0.5s, bottom 0.2s 1.4s;
}
.single-mod_exhibition .top-info .content .feature .animations.phase-03 .animation-03 {
  top: 30%;
  left: 52%;
  transition: left 0.2s 0.5s, top 0.2s 1.4s;
}
.single-mod_exhibition .top-info .content .feature .animations.phase-03 .animation-04 {
  top: 15%;
  right: 48%;
  transition: right 0.2s 0.5s, top 0.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: 2.5em;
  }
}
@media only screen and (max-width: 1330px) {
  .single-mod_exhibition .top-info header h1 {
    font-size: 2em;
  }
}
@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: 1900px) {
  .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 {
    flex-direction: row;
    justify-content: space-between;
  }
  .single-mod_exhibition ul li.mod_exhibit a:before {
    padding-bottom: 0;
    order: 2;
    flex-basis: 100px;
    flex-shrink: 0;
  }
  .single-mod_exhibition ul li.mod_exhibit .content {
    padding: 20px 20px 20px 40px;
    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: 1580px) {
  .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: 1180px) {
  .single-mod_exhibit .top-info .top a.visit {
    display: none;
  }
}
.single-mod_exhibit .top-info .bottom {
  display: flex;
  width: calc(100% - 50px);
  align-items: center;
  padding-top: 10px;
}
.single-mod_exhibit .top-info .bottom > div {
  flex: 1;
  padding-right: 40px;
}
.single-mod_exhibit .top-info .bottom p {
  font-size: 0.833em;
}
.single-mod_exhibit .top-info .bottom a {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.single-mod_exhibit .top-info .bottom a:after {
  font-family: "icomoon" !important;
}
.single-mod_exhibit .top-info .bottom a:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  display: inline-block;
  margin-left: 10px;
  transition: 0.15s;
}
.single-mod_exhibit .top-info .bottom a:hover:after {
  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: 0.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 {
    flex-direction: row;
    justify-content: space-between;
  }
  .single-mod_exhibit .more-exhibits .the-grid ul li a:before {
    padding-bottom: 0;
    order: 2;
    flex-basis: 100px;
    flex-shrink: 0;
  }
  .single-mod_exhibit .more-exhibits .the-grid ul li .content {
    padding: 20px 20px 20px 40px;
    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: inline-flex;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #00adbb;
  align-items: center;
}
.single-mod_event .top-info .exhibition:before {
  font-family: "icomoon" !important;
}
.single-mod_event .top-info .exhibition:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e902";
  font-size: 1.3em;
  margin-right: 10px;
  transition: 0.15s;
}
.single-mod_event .top-info .exhibition:hover:before {
  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: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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: 1900px) {
  .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: 1900px) {
  .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: 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 {
  transition: color 0.2s;
  -webkit-text-decoration: none;
  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: 50px;
  border-radius: 25px;
  border: 3px solid #c028b9;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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: 1900px) {
  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: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 1900px) {
  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;
}
html.search .filter-results label[for=search]:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e912";
  color: #00adbb;
  position: absolute;
  top: 50%;
  right: 0;
  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 {
    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: 1900px) {
  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: 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 {
  transition: color 0.2s;
  color: #000000;
  -webkit-text-decoration: none;
  text-decoration: none;
}
html.search .results h2 a:hover {
  color: #00adbb;
}
html.search .results .read-more {
  transition: color 0.2s;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
html.search .results .read-more:hover {
  color: #00adbb;
}
html.search .results .read-more:after {
  font-family: "icomoon" !important;
}
html.search .results .read-more:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  font-size: 1.2em;
  margin-left: 0.5em;
  position: relative;
  left: 0px;
  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: 1900px) {
  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: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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,
html.category main {
  background: #ffffff;
  color: #000000;
}
.archive.date main > header,
.blog main > header,
html.category main > header {
  background: #181818;
  color: #ffffff;
  padding: 100px;
  position: relative;
  font-size: 1.333em;
}
@media only screen and (max-width: 1900px) {
  .archive.date main > header,
  .blog main > header,
  html.category main > header {
    padding: 60px;
  }
}
@media only screen and (max-width: 1280px) {
  .archive.date main > header,
  .blog main > header,
  html.category main > header {
    padding: 40px;
  }
}
@media only screen and (max-width: 430px) {
  .archive.date main > header,
  .blog main > header,
  html.category main > header {
    padding: 20px;
  }
}
.archive.date main > header:before,
.blog main > header:before,
html.category 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,
html.category main > header a {
  margin-bottom: 35px;
}
.archive.date main > header p,
.blog main > header p,
html.category main > header p {
  margin: 0;
  max-width: 19.5em;
}
.archive.date h1,
.blog h1,
html.category 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,
  html.category h1 {
    font-size: 2.4em;
  }
}
@media only screen and (max-width: 960px) {
  .archive.date h1,
  .blog h1,
  html.category h1 {
    font-size: 2em;
  }
}
@media only screen and (max-width: 660px) {
  .archive.date h1,
  .blog h1,
  html.category h1 {
    font-size: 1.75em;
  }
}
.archive.date .filter-results,
.blog .filter-results,
html.category .filter-results {
  padding-bottom: 0 !important;
}
.archive.date .filter-results,
.blog .filter-results,
html.category .filter-results {
  padding: 110px 100px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1900px) {
  .archive.date .filter-results,
  .blog .filter-results,
  html.category .filter-results {
    padding: 66px 60px;
  }
}
@media only screen and (max-width: 1280px) {
  .archive.date .filter-results,
  .blog .filter-results,
  html.category .filter-results {
    padding: 44px 40px;
  }
}
@media only screen and (max-width: 430px) {
  .archive.date .filter-results,
  .blog .filter-results,
  html.category .filter-results {
    padding: 22px 20px;
  }
}
.archive.date .filter-results h2,
.blog .filter-results h2,
html.category .filter-results h2 {
  margin: 0 0 15px 0;
  font-size: 17px;
  width: 100%;
}
.archive.date .filter-results .categories,
.blog .filter-results .categories,
html.category .filter-results .categories {
  width: calc(100% - 340px);
  max-width: 877px;
  list-style: none;
  padding-left: 0;
  margin: 15px 40px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.archive.date .filter-results .categories li,
.blog .filter-results .categories li,
html.category .filter-results .categories li {
  margin: 0 10px 15px 0;
}
.archive.date .filter-results .categories li a,
.blog .filter-results .categories li a,
html.category .filter-results .categories li a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  color: #ffffff;
  background: transparent;
  color: #000000;
  height: 43px;
  line-height: 37px;
}
.archive.date .filter-results .categories li a:hover,
.blog .filter-results .categories li a:hover,
html.category .filter-results .categories li a:hover {
  background: #00adbb;
  color: #000000;
}
.archive.date .filter-results .categories li.current-cat a,
.blog .filter-results .categories li.current-cat a,
html.category .filter-results .categories li.current-cat a {
  background: #00adbb;
}
.archive.date .filter-results label,
.blog .filter-results label,
html.category .filter-results label {
  width: 250px;
  margin-right: 30px;
  margin-bottom: 0;
}
.archive.date .filter-results label select,
.blog .filter-results label select,
html.category .filter-results label select {
  padding-left: 0;
  padding-right: 0;
}
.archive.date .filter-results .filter-text,
.blog .filter-results .filter-text,
html.category .filter-results .filter-text {
  width: 100%;
  order: 3;
  font-size: 22px;
}
.archive.date .filter-results .filter-text p,
.blog .filter-results .filter-text p,
html.category .filter-results .filter-text p {
  max-width: 867px;
}
@media only screen and (max-width: 1280px) {
  .archive.date .filter-results .filter-text,
  .blog .filter-results .filter-text,
  html.category .filter-results .filter-text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1080px) {
  .archive.date .filter-results .filter-text,
  .blog .filter-results .filter-text,
  html.category .filter-results .filter-text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 700px) {
  .archive.date .filter-results .categories,
  .blog .filter-results .categories,
  html.category .filter-results .categories {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .archive.date .filter-results .categories li,
  .blog .filter-results .categories li,
  html.category .filter-results .categories li {
    flex-shrink: 0;
  }
  .archive.date .filter-results .filter-text,
  .blog .filter-results .filter-text,
  html.category .filter-results .filter-text {
    display: none;
  }
}
.archive.date .results,
.blog .results,
html.category .results {
  margin: 0;
  padding: 0;
  padding: 100px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1900px) {
  .archive.date .results,
  .blog .results,
  html.category .results {
    padding: 60px;
  }
}
@media only screen and (max-width: 1280px) {
  .archive.date .results,
  .blog .results,
  html.category .results {
    padding: 40px;
  }
}
@media only screen and (max-width: 430px) {
  .archive.date .results,
  .blog .results,
  html.category .results {
    padding: 20px;
  }
}
.archive.date .results li,
.blog .results li,
html.category .results li {
  display: block;
  transition: 0.15s;
  width: calc(33% - 37px);
  margin-bottom: 85px;
}
.archive.date .results .image,
.blog .results .image,
html.category .results .image {
  display: block;
  width: 100%;
}
.archive.date .results .image img,
.blog .results .image img,
html.category .results .image img {
  display: block;
}
.archive.date .results .content,
.blog .results .content,
html.category .results .content {
  max-width: 1000px;
}
.archive.date .results .category,
.blog .results .category,
html.category .results .category {
  display: block;
  font-size: 1.111em;
  font-weight: bold;
  color: #c028b9;
  text-transform: uppercase;
  font-family: "galano-grotesque", arial, sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin: 25px 0 15px 0;
}
.archive.date .results time,
.blog .results time,
html.category .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;
  margin-bottom: 30px;
  display: block;
}
.archive.date .results h2,
.blog .results h2,
html.category .results h2 {
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 2em;
  line-height: 1.17;
  margin: 15px 0 15px 0;
}
@media only screen and (max-width: 1280px) {
  .archive.date .results h2,
  .blog .results h2,
  html.category .results h2 {
    font-size: 1.556em;
  }
}
@media only screen and (max-width: 960px) {
  .archive.date .results h2,
  .blog .results h2,
  html.category .results h2 {
    font-size: 1.333em;
  }
}
.archive.date .results h2 a,
.blog .results h2 a,
html.category .results h2 a {
  transition: color 0.2s;
  color: #000000;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.archive.date .results h2 a:hover,
.blog .results h2 a:hover,
html.category .results h2 a:hover {
  color: #00adbb;
}
.archive.date .results p.tagline,
.blog .results p.tagline,
html.category .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,
  html.category .results p.tagline {
    font-size: 1em;
  }
}
.archive.date .results .read-more,
.blog .results .read-more,
html.category .results .read-more {
  transition: color 0.2s;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.archive.date .results .read-more:hover,
.blog .results .read-more:hover,
html.category .results .read-more:hover {
  color: #00adbb;
}
.archive.date .results .read-more:after,
.blog .results .read-more:after,
html.category .results .read-more:after {
  font-family: "icomoon" !important;
}
.archive.date .results .read-more:after,
.blog .results .read-more:after,
html.category .results .read-more:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  font-size: 1.2em;
  margin-left: 0.5em;
  position: relative;
  left: 0px;
  transition: left 0.15s;
}
.archive.date .results .read-more:hover:after,
.blog .results .read-more:hover:after,
html.category .results .read-more:hover:after {
  left: 4px;
}
@media only screen and (max-width: 1280px) {
  .archive.date .results li,
  .blog .results li,
  html.category .results li {
    width: calc(33% - 20px);
  }
}
@media only screen and (max-width: 1100px) {
  .archive.date .results li,
  .blog .results li,
  html.category .results li {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 980px) {
  .archive.date .filter-results .categories,
  .blog .filter-results .categories,
  html.category .filter-results .categories {
    width: 100%;
    order: 2;
    margin: 40px 0 0 0;
  }
  .archive.date .results .category,
  .blog .results .category,
  html.category .results .category {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 660px) {
  .archive.date .results h2,
  .blog .results h2,
  html.category .results h2 {
    font-size: 1.6em;
  }
}
@media only screen and (max-width: 600px) {
  .archive.date .results li,
  .blog .results li,
  html.category .results li {
    width: 100%;
    margin-bottom: 45px;
  }
}
@media only screen and (max-width: 500px) {
  .archive.date .filter-results label,
  .blog .filter-results label,
  html.category .filter-results label {
    flex: 1;
    margin-right: 0;
  }
}

.surprise-me {
  background-color: #00adbb;
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 30;
  padding: 35px 55px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}
.surprise-me-visible .surprise-me {
  visibility: visible;
  opacity: 1;
}
.surprise-me .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.surprise-me .close:before {
  font-family: "icomoon" !important;
}
.surprise-me .close:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e913";
}
.surprise-me h3 {
  margin: 0 30px 0 0;
  font-weight: bold;
  font-family: "galano-grotesque", arial, sans-serif;
}
.surprise-me a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  border: 3px solid white;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  color: #ffffff;
  background: transparent;
}
.surprise-me a:hover {
  background: white;
  color: #000000;
}
@media only screen and (max-width: 1400px) {
  .surprise-me {
    padding: 20px 35px;
  }
  .surprise-me .close {
    top: 5px;
  }
  .surprise-me .close:before {
    font-size: 13px;
  }
}
@media only screen and (max-width: 860px) {
  .surprise-me {
    display: none;
  }
}

.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 {
  transition: 0.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 {
  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: 1900px) {
  .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 {
  transition: 0.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: flex;
  margin-top: auto;
  margin-bottom: auto;
}
.single-mod_gallery body > article .exhibits a {
  position: relative;
  width: 50%;
  padding: 50px;
  -webkit-text-decoration: none;
  text-decoration: none;
  background-color: #000000;
  transition: 0.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: flex;
  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: flex;
  margin-top: auto;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  align-items: center;
}
.single-mod_gallery body > article .exhibits a .more:after {
  font-family: "icomoon" !important;
}
.single-mod_gallery body > article .exhibits a .more:after {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  margin-left: 10px;
  transition: 0.15s;
}
.single-mod_gallery body > article .exhibits a:hover .more:after {
  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: linear-gradient(0, #000000 0%, transparent 100%);
  opacity: 0.95;
}
.single-mod_gallery body > article .exhibits a > .background:after {
  background-color: #181818;
  opacity: 0.4;
}
.single-mod_gallery body > article .exhibits a > .background img {
  display: none;
}
.single-mod_gallery body > article .exhibits a.fade-out {
  transform: scale(0.7);
  opacity: 0;
}
.single-mod_gallery body > article .exhibits a.fade-in {
  transform: scale(1.5);
}

.single-mod_exhibit.from-gallery {
  padding-left: 0;
}
.single-mod_exhibit.from-gallery body > header {
  display: flex;
  align-items: center;
  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;
  align-items: center;
  height: 944px;
}
.single-mod_exhibit.from-gallery article header > div {
  position: absolute;
  z-index: 10;
  top: calc(50% - 120px);
  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: 0.5;
  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: 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: 0.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;
  transition: 0.3s;
  text-indent: 0.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;
}
.single-mod_exhibit.from-gallery button.back-to-top:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  display: inline-block;
  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: 1900px) {
  .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: 0.3;
}
@media only screen and (max-width: 1770px) {
  .four-oh-four .video-wrapper {
    transform: scale(0.8) translate(-10%, -10%);
  }
}
@media only screen and (max-width: 1520px) {
  .four-oh-four .video-wrapper {
    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 {
    transform: scale(0.7) translate(-30%, -12%);
  }
}
@media only screen and (max-width: 1100px) {
  .four-oh-four .video-wrapper {
    transform: scale(0.6) translate(-40%, -20%);
  }
}
@media only screen and (max-width: 1000px) {
  .four-oh-four .video-wrapper {
    transform: scale(0.6) translate(-45%, -30%);
  }
}
@media only screen and (max-width: 860px) {
  .four-oh-four .video-wrapper {
    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 {
    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 {
    transform: scale(0.3) translate(-135%, -80%);
  }
}
@media only screen and (max-width: 375px) {
  .four-oh-four .video-wrapper {
    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: 50px;
  border-radius: 25px;
  border: 3px solid black;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  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;
  box-sizing: border-box;
}

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

.custom-select-container.is-disabled {
  opacity: 0.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;
  transition: max-height 0.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 {
  background-color: #00adbb;
  color: white;
}

.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: flex;
  padding: 50px 0;
}
.block-list li:first-of-type {
  border-top: none;
}
.block-list li > div > *:last-child {
  margin-bottom: 0;
}
.block-list .list-item-image {
  margin-right: 5%;
  flex-basis: 30%;
  max-width: 250px;
}
.block-list h3 {
  margin-top: 0;
}
.block-list img {
  margin: 0 !important;
}
.block-list img {
  width: 100%;
  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: 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 {
  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 {
  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;
  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 .team-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  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;
}
.block-accordion ul .toggle:before {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  right: 0;
  top: 48px;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: #eaeaea;
  text-align: center;
}

.block-video_player {
  background: #000000;
  position: relative;
}
.block-video_player:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.block-video_player .player {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.block-video_player button {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #000000 center/cover;
  border: none;
  border-radius: 0;
  display: flex;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  transition: 0.2s opacity;
  width: 100%;
}
.block-video_player button span {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  border: 3px solid #c028b9;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  color: #ffffff;
  background: transparent;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}
.block-video_player button span:hover {
  background: #c028b9;
  color: #000000;
}
.block-video_player.is--playing button {
  opacity: 0;
}

.block-html .elq-form *, .block-html .elq-form :after, .block-html .elq-form :before {
  box-sizing: border-box;
}
.block-html .elq-form input, .block-html .elq-form textarea {
  padding: 15px;
}
.block-html .elq-form .layout > .row {
  margin-bottom: 25px;
}
.block-html .elq-form input[type=button],
.block-html .elq-form input[type=submit] {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  border: 3px solid #00adbb;
  padding: 0 25px;
  font-family: "galano-grotesque", arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  color: #ffffff;
  background: transparent;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  margin-right: auto;
  width: auto;
}
.block-html .elq-form input[type=button]:hover,
.block-html .elq-form input[type=submit]:hover {
  background: #00adbb;
  color: #000000;
}
.block-html .elq-form input[type=submit] {
  margin-bottom: 25px;
}
.block-html .elq-form input[type=checkbox] + span:before {
  margin-right: 20px;
}
.block-html .elq-form input[type=checkbox].LV_invalid_field + span:before {
  border-color: #e80000;
}
.block-html .elq-form p:empty {
  margin: 3px 0;
  height: 1px;
}
.block-html .elq-form .elq-required {
  color: #e80000 !important;
}
.block-html .elq-form .elq-required {
  display: inline;
  float: none;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.block-html .elq-form .elq-label {
  display: inline-block;
  max-width: 100%;
  font-weight: 400;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.block-html .elq-form .elq-label-top {
  padding-bottom: 3px;
}
.block-html .elq-form .elq-item-label {
  max-width: 100%;
  font-weight: 400;
  box-sizing: border-box;
}
.block-html .elq-form .list-order {
  margin-left: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.block-html .elq-form .one-column {
  width: 100%;
  clear: both;
}
.block-html .elq-form .two-column {
  float: left;
  width: 38%;
}
.block-html .elq-form .three-column {
  float: left;
  width: 30%;
}
.block-html .elq-form .elq-item-textarea {
  resize: vertical;
  min-height: 48px;
  max-height: 360px;
  box-sizing: border-box;
}
.block-html .elq-form .elq-item-select {
  text-transform: none;
}
.block-html .elq-form .elq-field-style {
  padding-bottom: 5px;
}
.block-html .elq-form .elq-field-style input[type=submit] {
  -webkit-appearance: square-button;
}
.block-html .elq-form .loader {
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #3498db;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
}
.block-html .elq-form .list-order input[type=radio] {
  margin-left: 1px;
}
.block-html .elq-form html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}
.block-html .elq-form body {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333;
  background-color: #fff;
}
.block-html .elq-form a {
  color: #337ab7;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.block-html .elq-form a:focus, .block-html .elq-form a:hover {
  color: #23527c;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.block-html .elq-form a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.block-html .elq-form .img-rounded {
  border-radius: 6px;
}
.block-html .elq-form .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.block-html .elq-form .sr-only-focusable:active, .block-html .elq-form .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.block-html .elq-form [role=button] {
  cursor: pointer;
}
.block-html .elq-form .single-checkbox-row {
  display: flex;
}
.block-html .elq-form .single-checkbox-row .LV_validation_message.LV_invalid {
  display: none;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.block-html .LV_invalid_field, .block-html input.LV_invalid_field:active, .block-html input.LV_invalid_field:hover, .block-html textarea.LV_invalid_field:active, .block-html textarea.LV_invalid_field:hover {
  outline: 0px;
  border: 1px solid #e80000;
}
.block-html .LV_validation_message {
  margin: 5px 0 0 0;
}
.block-html .LV_valid {
  display: none;
}
.block-html .LV_invalid {
  color: #e80000;
  font-size: 15px;
}
.block-html .LV_validation_message {
  display: none;
}
.block-html .LV_validation_message.LV_invalid {
  display: block;
}
.block-html input.elq-item-input, .block-html textarea.elq-item-input {
  padding: 10px 15px;
}
.block-html .elq-label br {
  display: none;
}
.block-html .form-element-layout {
  padding: 0px 0px;
}
.block-html .form-element-instruction {
  font-size: 13px;
}
.block-html .form-element-form-text {
  margin: 0;
}
.block-html .form-field-visible-xs-block {
  display: none;
}
.block-html .elq-form-design-field .list-order input[type=radio] {
  margin-left: 1px;
}
@media (max-width: 767px) {
  .block-html .form-field-visible-xs-block {
    display: block;
  }
}
.block-html .form-field-hidden-xs {
  display: block;
}
@media (max-width: 767px) {
  .block-html .form-field-hidden-xs {
    display: none;
  }
}
/*# sourceMappingURL=frontend.css.map */
