/*
 * Fonts
 */
@font-face {
  font-family: "Whyte Black";
  font-display: swap;
  src: url("../fonts/Whyte-Black.woff2"), url("../fonts/Whyte-Black.woff");
}
@font-face {
  font-family: "Whyte Black Italic";
  font-display: swap;
  src: url("../fonts/Whyte-BlackItalic.woff2"), url("../fonts/Whyte-BlackItalic.woff");
}
@font-face {
  font-family: "Whyte Bold";
  font-display: swap;
  src: url("../fonts/Whyte-Bold.woff2"), url("../fonts/Whyte-Bold.woff");
}
@font-face {
  font-family: "Whyte Bold Italic";
  font-display: swap;
  src: url("../fonts/Whyte-BoldItalic.woff2"), url("../fonts/Whyte-BoldItalic.woff");
}
@font-face {
  font-family: "Whyte Italic";
  font-display: swap;
  src: url("../fonts/Whyte-Italic.woff2"), url("../fonts/Whyte-Italic.woff");
}
@font-face {
  font-family: "Whyte Light";
  font-display: swap;
  src: url("../fonts/Whyte-Light.woff2"), url("../fonts/Whyte-Light.woff");
}
@font-face {
  font-family: "Whyte Light Italic";
  font-display: swap;
  src: url("../fonts/Whyte-LightItalic.woff2"), url("../fonts/Whyte-LightItalic.woff");
}
@font-face {
  font-family: "Whyte Regular";
  font-display: swap;
  src: url("../fonts/Whyte-Regular.woff2"), url("../fonts/Whyte-Regular.woff");
}
/*
 * Reset
 */
html {
  height: 100%;
}

body {
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #000000;
  -webkit-font-smoothing: subpixel-antialiased;
}

* {
  outline: none;
}

.glider, .glider-contain {
  margin: 0 auto;
  position: relative;
}

.glider, .glider-track {
  transform: translateZ(0);
}

.glider-dot, .glider-next, .glider-prev {
  border: 0;
  padding: 0;
  user-select: none;
  outline: 0;
}

.glider-contain {
  width: 100%;
}

.glider {
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
}

.glider-track {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  z-index: 1;
}

.glider.draggable {
  user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
}

.glider.draggable .glider-slide img {
  user-select: none;
  pointer-events: none;
}

.glider.drag {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.glider-slide {
  user-select: none;
  justify-content: center;
  align-content: center;
  width: 100%;
  min-width: 150px;
}

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

.glider::-webkit-scrollbar {
  opacity: 0;
  height: 0;
}

.glider-next, .glider-prev {
  position: absolute;
  background: 0 0;
  z-index: 2;
  font-size: 40px;
  text-decoration: none;
  left: -23px;
  top: 30%;
  cursor: pointer;
  color: #666;
  opacity: 1;
  line-height: 1;
  transition: opacity 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67), color 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.glider-next:focus, .glider-next:hover, .glider-prev:focus, .glider-prev:hover {
  color: #ccc;
}

.glider-next {
  right: -23px;
  left: auto;
}

.glider-next.disabled, .glider-prev.disabled {
  opacity: 0.25;
  color: #666;
  cursor: default;
}

.glider-hide {
  opacity: 0;
}

.glider-dots {
  user-select: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}

.glider-dot {
  display: block;
  cursor: pointer;
  color: #ccc;
  border-radius: 999px;
  background: #ccc;
  width: 12px;
  height: 12px;
  margin: 7px;
}

.glider-dot:focus, .glider-dot:hover {
  background: #ddd;
}

.glider-dot.active {
  background: #000000;
}

@media (max-width: 36em) {
  .glider::-webkit-scrollbar {
    opacity: 1;
    -webkit-appearance: none;
    width: 7px;
    height: 3px;
  }

  .glider::-webkit-scrollbar-thumb {
    opacity: 1;
    border-radius: 99px;
    background-color: rgba(156, 156, 156, 0.25);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.25);
  }
}
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content, .fancybox-can-swipe .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image, .fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe, .fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
  color: #ccc;
}

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

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled], .fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2), .fancybox-button--fsexit svg:first-child, .fancybox-button--pause svg:first-child, .fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes a {
  to {
    transform: rotate(1turn);
  }
}
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translateZ(0) scale(1);
}

@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link, .fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/* Accessibility: hide screen reader texts (and prefer "top" for RTL languages).
Reference: http://blog.rrwd.nl/2015/04/04/the-screen-reader-text-class-why-and-how/ */
.mejs__offscreen {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.mejs__container {
  background: #000;
  box-sizing: border-box;
  font-family: "Helvetica", Arial, serif;
  position: relative;
  text-align: left;
  text-indent: 0;
  vertical-align: top;
}

.mejs__container * {
  box-sizing: border-box;
}

/* Hide native play button and control bar from iOS to favor plugin button */
.mejs__container video::-webkit-media-controls,
.mejs__container video::-webkit-media-controls-panel,
.mejs__container video::-webkit-media-controls-panel-container,
.mejs__container video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.mejs__fill-container,
.mejs__fill-container .mejs__container {
  height: 100%;
  width: 100%;
}

.mejs__fill-container {
  background: transparent;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.mejs__container:focus {
  outline: none;
}

.mejs__iframe-overlay {
  height: 100%;
  position: absolute;
  width: 100%;
}

.mejs__embed,
.mejs__embed body {
  background: #000;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.mejs__fullscreen {
  overflow: hidden !important;
}

.mejs__container-fullscreen {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.mejs__container-fullscreen .mejs__mediaelement,
.mejs__container-fullscreen video {
  height: 100% !important;
  width: 100% !important;
}

/* Start: LAYERS */
.mejs__background {
  left: 0;
  position: absolute;
  top: 0;
}

.mejs__mediaelement {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.mejs__poster {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}

:root .mejs__poster-img {
  display: none;
}

.mejs__poster-img {
  border: 0;
  padding: 0;
}

.mejs__overlay {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
}

.mejs__layer {
  z-index: 1;
}

.mejs__overlay-play {
  cursor: pointer;
}

.mejs__overlay-button {
  background: url("mejs-controls.svg") no-repeat;
  background-position: 0 -39px;
  height: 80px;
  width: 80px;
}

.mejs__overlay:hover > .mejs__overlay-button {
  background-position: -80px -39px;
}

.mejs__overlay-loading {
  height: 80px;
  width: 80px;
}

.mejs__overlay-loading-bg-img {
  -webkit-animation: mejs__loading-spinner 1s linear infinite;
  animation: mejs__loading-spinner 1s linear infinite;
  background: transparent url("mejs-controls.svg") -160px -40px no-repeat;
  display: block;
  height: 80px;
  width: 80px;
  z-index: 1;
}

@-webkit-keyframes mejs__loading-spinner {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes mejs__loading-spinner {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* End: LAYERS */
/* Start: CONTROL BAR */
.mejs__controls {
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  left: 0;
  list-style-type: none;
  margin: 0;
  padding: 0 10px;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.mejs__controls:not([style*="display: none"]) {
  background: rgba(255, 0, 0, 0.7);
  background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.35));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
}

.mejs__button,
.mejs__time,
.mejs__time-rail {
  font-size: 10px;
  height: 40px;
  line-height: 10px;
  margin: 0;
  width: 32px;
}

.mejs__button > button {
  background: transparent url("mejs-controls.svg");
  border: 0;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  margin: 10px 6px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  text-decoration: none;
  width: 20px;
}

/* :focus for accessibility */
.mejs__button > button:focus {
  outline: dotted 1px #999;
}

.mejs__container-keyboard-inactive a,
.mejs__container-keyboard-inactive a:focus,
.mejs__container-keyboard-inactive button,
.mejs__container-keyboard-inactive button:focus,
.mejs__container-keyboard-inactive [role=slider],
.mejs__container-keyboard-inactive [role=slider]:focus {
  outline: 0;
}

/* End: CONTROL BAR */
/* Start: Time (Current / Duration) */
.mejs__time {
  box-sizing: content-box;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  height: 24px;
  overflow: hidden;
  padding: 16px 6px 0;
  text-align: center;
  width: auto;
}

/* End: Time (Current / Duration) */
/* Start: Play/Pause/Stop */
.mejs__play > button {
  background-position: 0 0;
}

.mejs__pause > button {
  background-position: -20px 0;
}

.mejs__replay > button {
  background-position: -160px 0;
}

/* End: Play/Pause/Stop */
/* Start: Progress Bar */
.mejs__time-rail {
  direction: ltr;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 40px;
  margin: 0 10px;
  padding-top: 10px;
  position: relative;
}

.mejs__time-total,
.mejs__time-buffering,
.mejs__time-loaded,
.mejs__time-current,
.mejs__time-float,
.mejs__time-hovered,
.mejs__time-float-current,
.mejs__time-float-corner,
.mejs__time-marker {
  border-radius: 2px;
  cursor: pointer;
  display: block;
  height: 10px;
  position: absolute;
}

.mejs__time-total {
  background: rgba(255, 255, 255, 0.3);
  margin: 5px 0 0;
  width: 100%;
}

.mejs__time-buffering {
  -webkit-animation: buffering-stripes 2s linear infinite;
  animation: buffering-stripes 2s linear infinite;
  background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
  background-size: 15px 15px;
  width: 100%;
}

@-webkit-keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 0;
  }
}
@keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 0;
  }
}
.mejs__time-loaded {
  background: rgba(255, 255, 255, 0.3);
}

.mejs__time-current,
.mejs__time-handle-content {
  background: rgba(255, 255, 255, 0.9);
}

.mejs__time-hovered {
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.mejs__time-hovered.negative {
  background: rgba(0, 0, 0, 0.2);
}

.mejs__time-current,
.mejs__time-buffering,
.mejs__time-loaded,
.mejs__time-hovered {
  left: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: 0.15s ease-in all;
  transition: 0.15s ease-in all;
  width: 100%;
}

.mejs__time-buffering {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.mejs__time-hovered {
  -webkit-transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
  transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
}

.mejs__time-hovered.no-hover {
  -webkit-transform: scaleX(0) !important;
  -ms-transform: scaleX(0) !important;
  transform: scaleX(0) !important;
}

.mejs__time-handle,
.mejs__time-handle-content {
  border: 4px solid transparent;
  cursor: pointer;
  left: 0;
  position: absolute;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  z-index: 11;
}

.mejs__time-handle-content {
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  height: 10px;
  left: -7px;
  top: -4px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  width: 10px;
}

.mejs__time-rail:hover .mejs__time-handle-content,
.mejs__time-rail .mejs__time-handle-content:focus,
.mejs__time-rail .mejs__time-handle-content:active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mejs__time-float {
  background: #eee;
  border: solid 1px #333;
  bottom: 100%;
  color: #111;
  display: none;
  height: 17px;
  margin-bottom: 9px;
  position: absolute;
  text-align: center;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 36px;
}

.mejs__time-float-current {
  display: block;
  left: 0;
  margin: 2px;
  text-align: center;
  width: 30px;
}

.mejs__time-float-corner {
  border: solid 5px #eee;
  border-color: #eee transparent transparent;
  border-radius: 0;
  display: block;
  height: 0;
  left: 50%;
  line-height: 0;
  position: absolute;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
}

.mejs__long-video .mejs__time-float {
  margin-left: -23px;
  width: 64px;
}

.mejs__long-video .mejs__time-float-current {
  width: 60px;
}

.mejs__broadcast {
  color: #fff;
  height: 10px;
  position: absolute;
  top: 15px;
  width: 100%;
}

/* End: Progress Bar */
/* Start: Fullscreen */
.mejs__fullscreen-button > button {
  background-position: -80px 0;
}

.mejs__unfullscreen > button {
  background-position: -100px 0;
}

/* End: Fullscreen */
/* Start: Mute/Volume */
.mejs__mute > button {
  background-position: -60px 0;
}

.mejs__unmute > button {
  background-position: -40px 0;
}

.mejs__volume-button {
  position: relative;
}

.mejs__volume-button > .mejs__volume-slider {
  -webkit-backface-visibility: hidden;
  background: rgba(50, 50, 50, 0.7);
  border-radius: 0;
  bottom: 100%;
  display: none;
  height: 115px;
  left: 50%;
  margin: 0;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 25px;
  z-index: 1;
}

.mejs__volume-button:hover {
  border-radius: 0 0 4px 4px;
}

.mejs__volume-total {
  background: rgba(255, 255, 255, 0.5);
  height: 100px;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 8px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 2px;
}

.mejs__volume-current {
  background: rgba(255, 255, 255, 0.9);
  left: 0;
  margin: 0;
  position: absolute;
  width: 100%;
}

.mejs__volume-handle {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1px;
  cursor: ns-resize;
  height: 6px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 16px;
}

.mejs__horizontal-volume-slider {
  display: block;
  height: 36px;
  position: relative;
  vertical-align: middle;
  width: 56px;
}

.mejs__horizontal-volume-total {
  background: rgba(50, 50, 50, 0.8);
  border-radius: 2px;
  font-size: 1px;
  height: 8px;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 16px;
  width: 50px;
}

.mejs__horizontal-volume-current {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  font-size: 1px;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.mejs__horizontal-volume-handle {
  display: none;
}

/* End: Mute/Volume */
/* Start: Track (Captions and Chapters) */
.mejs__captions-button,
.mejs__chapters-button {
  position: relative;
}

.mejs__captions-button > button {
  background-position: -140px 0;
}

.mejs__chapters-button > button {
  background-position: -180px 0;
}

.mejs__captions-button > .mejs__captions-selector,
.mejs__chapters-button > .mejs__chapters-selector {
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  border-radius: 0;
  bottom: 100%;
  margin-right: -43px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 50%;
  visibility: visible;
  width: 86px;
}

.mejs__chapters-button > .mejs__chapters-selector {
  margin-right: -55px;
  width: 110px;
}

.mejs__captions-selector-list,
.mejs__chapters-selector-list {
  list-style-type: none !important;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

.mejs__captions-selector-list-item,
.mejs__chapters-selector-list-item {
  color: #fff;
  cursor: pointer;
  display: block;
  list-style-type: none !important;
  margin: 0 0 6px;
  overflow: hidden;
  padding: 0;
}

.mejs__captions-selector-list-item:hover,
.mejs__chapters-selector-list-item:hover {
  background-color: #c8c8c8 !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.mejs__captions-selector-input,
.mejs__chapters-selector-input {
  clear: both;
  float: left;
  left: -1000px;
  margin: 3px 3px 0 5px;
  position: absolute;
}

.mejs__captions-selector-label,
.mejs__chapters-selector-label {
  cursor: pointer;
  float: left;
  font-size: 10px;
  line-height: 15px;
  padding: 4px 10px 0;
  width: 100%;
}

.mejs__captions-selected,
.mejs__chapters-selected {
  color: #21f8f8;
}

.mejs__captions-translations {
  font-size: 10px;
  margin: 0 0 5px;
}

.mejs__captions-layer {
  bottom: 0;
  color: #fff;
  font-size: 16px;
  left: 0;
  line-height: 20px;
  position: absolute;
  text-align: center;
}

.mejs__captions-layer a {
  color: #fff;
  text-decoration: underline;
}

.mejs__captions-layer[lang=ar] {
  font-size: 20px;
  font-weight: normal;
}

.mejs__captions-position {
  bottom: 15px;
  left: 0;
  position: absolute;
  width: 100%;
}

.mejs__captions-position-hover {
  bottom: 35px;
}

.mejs__captions-text,
.mejs__captions-text * {
  background: rgba(20, 20, 20, 0.5);
  box-shadow: 5px 0 0 rgba(20, 20, 20, 0.5), -5px 0 0 rgba(20, 20, 20, 0.5);
  padding: 0;
  white-space: pre-wrap;
}

.mejs__container.mejs__hide-cues video::-webkit-media-text-track-container {
  display: none;
}

/* End: Track (Captions and Chapters) */
/* Start: Error */
.mejs__overlay-error {
  position: relative;
}

.mejs__overlay-error > img {
  left: 0;
  max-width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.mejs__cannotplay,
.mejs__cannotplay a {
  color: #fff;
  font-size: 0.8em;
}

.mejs__cannotplay {
  position: relative;
}

.mejs__cannotplay p,
.mejs__cannotplay a {
  display: inline-block;
  padding: 0 15px;
  width: 100%;
}

/* End: Error */
/*
.container-wrapper {
    margin: auto;
}

.container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.text {
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    color: white;
}
*/
.container,
#pano {
  display: block;
  width: 100%;
  height: 100vh;
}

h1 {
  font-family: "Whyte Black";
  font-size: 88px;
  line-height: 96px;
}

p {
  font-family: "Whyte Regular";
  font-size: 20px;
  line-height: 32px;
}

#pano.nopointer #krpanoSWFObject {
  pointer-events: none;
}

#intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 50px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1000000000000;
  overflow: auto;
}
#intro .scrolling_down {
  background: #fff url("./icons/icon-arrow-single.svg") no-repeat center center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 100px;
  right: 10%;
  z-index: 10000;
  transform: rotate(90deg);
  border-radius: 50%;
  display: none;
  animation: leaves 2s infinite ease-in-out;
  -webkit-animation: leaves 2s infinite ease-in-out;
}
#intro h1, #intro p, #intro button {
  z-index: 10000;
  position: relative;
}
#intro h1, #intro p, #intro button, #intro .peopleBg {
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
#intro h1 {
  margin-top: 50px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: -0.7px;
}
#intro h1 .block {
  display: block;
}
#intro p {
  width: 533px;
  margin-top: 22px;
  margin-left: 3px;
  text-shadow: 0px 1px 20px #000;
}
#intro button {
  background: unset;
  border: unset;
  margin: unset;
  padding: unset;
  cursor: pointer;
  font-family: "Whyte Bold";
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  margin: 30px 100px 30px 0;
  padding-bottom: 100px;
}
#intro button .btnIcon {
  background: #fff url("./icons/icon-play.svg") no-repeat 25px center;
  background-size: 20px;
  display: inline-block;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  float: left;
}
#intro button .btnText {
  display: inline-block;
  line-height: 64px;
  margin-left: 18px;
}
#intro .peopleBg {
  background: url("start-jennifer-markus.png") no-repeat right bottom;
  background-size: contain;
  width: 50vw;
  height: 100vw;
  max-height: 100vh;
  position: fixed;
  right: 5%;
  bottom: -130px;
}

#help-container {
  position: absolute;
  right: 35px;
  bottom: 100px;
  background: #000000;
  color: #ffffff;
  display: none;
  width: 342px;
  z-index: 19700;
  font-family: "Whyte Regular";
  font-size: 14px;
  line-height: 16px;
}
#help-container .close {
  background: #fff;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  mask-image: url("close-icon.png");
  -webkit-mask-image: url("close-icon.png");
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
#help-container .close:hover {
  transform: scale(1.2);
}
#help-container ul {
  padding: 49px 40px 24px 40px;
  margin: 0;
}
#help-container ul li {
  padding-left: 65px;
  padding-bottom: 25px;
  padding-top: 5px;
  list-style: none;
}
#help-container ul li:nth-child(1) {
  background: url("move-icon.png") no-repeat 5px 0;
}
#help-container ul li:nth-child(2) {
  background: url("hotspot-icon.png") no-repeat 3px 5px;
}
#help-container ul li:nth-child(3) {
  background: url("play-circle-icon.png") no-repeat 8px 0;
}

#videoPlayer {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10000;
  background: black;
  display: none;
}
#videoPlayer video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#content-container {
  position: absolute;
  right: 35px;
  top: 35px;
  display: none;
  z-index: 19800;
  bottom: 100px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #ccc #888;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
#content-container .content-wrapper {
  width: 520px;
  background: #fff;
  color: #000;
  padding: 30px;
}
#content-container .close {
  background: url("close-icon.png") no-repeat;
  position: fixed;
  right: 40px;
  top: 40px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
#content-container .close:hover {
  transform: scale(1.2);
}
#content-container .draggable {
  overflow: hidden;
}
#content-container .glider {
  overflow: hidden;
}
#content-container .glider-dots {
  margin-top: -10px;
}
#content-container .glider-dots .glider-dot {
  width: 6px;
  height: 6px;
  margin: 0 5px 10px 5px;
}
#content-container .glider-dots .glider-dot.active {
  cursor: unset;
}
#content-container .glider-slide {
  position: relative;
}
#content-container .glider-slide img {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
  cursor: url("./icons/icon-search.png"), pointer;
}
#content-container .gallery {
  position: relative;
}
#content-container .gallery .openFancybox {
  width: 40px;
  height: 40px;
  display: inline-block;
  border: 0;
  border-radius: 50%;
  background: #fff;
  background-size: 50%;
  cursor: pointer;
  position: absolute;
  right: 5px;
  bottom: 17px;
}
#content-container .gallery .openFancybox svg {
  width: 20px;
  position: relative;
  top: 7px;
}
#content-container .gallery-next,
#content-container .gallery-prev {
  width: 40px;
  height: 40px;
  display: inline-block;
  border: 0;
  border-radius: 50%;
  background: #fff url(./icons/icon-arrow-single.svg) no-repeat center center;
  background-size: 25%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  z-index: 20000;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
#content-container .gallery-next.disabled,
#content-container .gallery-prev.disabled {
  opacity: 0.2;
}
#content-container .gallery-prev {
  transform: rotate(180deg);
  left: 5px;
}
#content-container .gallery-next {
  right: 5px;
}
#content-container .content figure {
  margin: 0;
  padding: 0;
}
#content-container .content .wp-block-gallery .blocks-gallery-item {
  text-align: center;
}
#content-container .content .wp-block-gallery .blocks-gallery-item a {
  display: block;
}
#content-container .content .wp-block-gallery .blocks-gallery-item figcaption {
  font-family: "Whyte Regular";
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #333333;
  padding-bottom: 10px;
}
#content-container .content h1 {
  font-family: "Whyte Bold";
  font-size: 24px;
  line-height: 29px;
}
#content-container .content p {
  font-family: "Whyte Regular";
  font-size: 20px;
  line-height: 28px;
}

#navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
  z-index: 10000;
}
#navigation li, #navigation #navigation {
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
#navigation.active {
  background: radial-gradient(circle, rgba(255, 255, 255, 0) -50%, rgba(0, 0, 0, 0.7) 64%);
}
#navigation .header .teaser {
  display: inline-block;
}
#navigation .header .teaser h1 {
  font-size: 40px;
  line-height: 42px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  padding-left: 38px;
  padding-top: 32px;
}
#navigation .header .teaser h1 span {
  display: block;
}
#navigation .header .home {
  z-index: 10200;
  background: url("./icons/icon-home.svg") no-repeat;
  filter: brightness(0) invert(1);
  width: 34px;
  height: 34px;
  position: absolute;
  right: 40px;
  top: 34px;
  cursor: pointer;
  pointer-events: all;
}
#navigation .modeswitcher {
  display: none;
  text-align: center;
  position: absolute;
  left: 0;
  top: 45%;
  margin-top: -45px;
  width: 100%;
}
#navigation .modeswitcher button {
  background: unset;
  border: unset;
  margin: unset;
  padding: unset;
  pointer-events: all;
  cursor: pointer;
  font-family: "Whyte Bold";
  font-size: 24px;
  line-height: 90px;
  color: #fff;
}
#navigation .modeswitcher button .btnIcon {
  background: #fff url("./icons/icon-360.svg") no-repeat center center;
  background-size: 60%;
  display: inline-block;
  width: 90px;
  height: 90px;
  border-radius: 100%;
  float: left;
}
#navigation .modeswitcher button .btnText {
  margin-left: 15px;
  display: inline-block;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 95px;
  display: none;
  z-index: 2000000;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6699054622) 110%);
}
.footer .playBtn {
  background: #fff url("./icons/icon-pause.svg") no-repeat 20px center;
  background-size: 25%;
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  left: 40px;
  position: absolute;
  top: 3px;
  pointer-events: all;
  cursor: pointer;
}
.footer.active .playBtn {
  background: #fff url("./icons/icon-play.svg") no-repeat 20px center;
  background-size: 35%;
}
.footer .subText {
  margin: auto 170px auto 110px;
  text-align: center;
  font-family: "Whyte Regular";
  font-size: 16px;
  position: relative;
  bottom: -55px;
  padding: 0 50px;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.footer .capitelbar {
  display: none;
  margin: auto 170px auto 120px;
  position: relative;
  top: 28px;
  pointer-events: all;
  text-align: center;
}
.footer .capitelbar span.text {
  display: inline-block;
  font-family: "Whyte Regular";
  font-size: 20px;
  position: relative;
  top: -4px;
  pointer-events: none;
  background: url("./icons/icon-arrow-single.svg") no-repeat right 11px;
  filter: brightness(0) invert(1);
  padding-right: 30px;
}
.footer .capitelbar ul {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
}
.footer .capitelbar ul li {
  height: 18px;
  width: 18px;
  display: inline-block;
  border-radius: 100%;
  background: white;
  position: relative;
  cursor: pointer;
  margin-left: 41px;
  opacity: 0.5;
  z-index: 200000;
}
.footer .capitelbar ul li span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000000;
}
.footer .capitelbar ul li ul {
  display: none;
  width: 295px;
  position: absolute;
  bottom: 20px;
  left: -155px;
  text-align: left;
  padding-bottom: 20px;
}
.footer .capitelbar ul li ul:after {
  content: "";
  position: absolute;
  left: 153px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  clear: both;
}
.footer .capitelbar ul li ul li {
  background: #ffffff;
  color: #000000;
  font-family: "Whyte Regular";
  font-size: 18px;
  line-height: 24px;
  padding: 5px 15px;
  height: unset;
  border-radius: unset;
  display: block;
  width: unset;
  opacity: 1;
  margin-top: 2px;
}
.footer .capitelbar ul li ul li:hover {
  padding-left: 20px;
}
.footer .capitelbar ul li ul li:hover:after {
  content: unset;
}
.footer .capitelbar ul li.active {
  opacity: 1;
}
.footer .capitelbar ul li.hover {
  opacity: 1;
}
.footer .capitelbar ul li.hover:after {
  content: "";
  border: 2px solid #fff;
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px;
  position: relative;
  left: -6px;
  top: -6px;
  border-radius: 100%;
}
.footer .capitelbar ul li.hover ul {
  display: unset;
}
.footer .timebar {
  display: none;
  margin: auto 170px auto 120px;
  position: relative;
  top: 28px;
  height: 14px;
  pointer-events: all;
  z-index: 10000;
}
.footer .timebar:before {
  content: "";
  height: 4px;
  width: 100%;
  position: absolute;
  background: #7F7F7F;
  top: 5px;
  display: block;
}
.footer .timebar .progress {
  background: #fff;
  height: 4px;
  display: block;
  position: absolute;
  top: 5px;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.footer .timebar .activeMouse {
  left: 0;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  margin-left: -8px;
  display: none;
  position: absolute;
  top: -2px;
  -webkit-transition: display 250ms ease-in-out;
  -moz-transition: display 250ms ease-in-out;
  -ms-transition: display 250ms ease-in-out;
  -o-transition: display 250ms ease-in-out;
  transition: display 250ms ease-in-out;
  cursor: pointer;
}
.footer .timebar:hover .activeMouse {
  display: block;
}
.footer .timebar ul {
  position: relative;
  margin: 0;
  padding: 0;
}
.footer .timebar ul li {
  height: 14px;
  width: 14px;
  display: inline-block;
  border-radius: 100%;
  background: white;
  position: absolute;
  cursor: pointer;
}
.footer .timebar ul li:hover {
  transform: scale(1.3);
}
.footer .timebar ul li:hover div {
  display: inline-block;
}
.footer .timebar ul li div {
  display: none;
  position: absolute;
  bottom: 15px;
  margin-left: -70px;
  transform: scale(0.74975);
}
.footer .timebar ul li div span {
  font-family: "Whyte Bold";
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 10px;
  display: block;
}
.footer .timebar ul li div img {
  border: 3px solid #ffffff;
}
.footer .timebar ul li:nth-child(1) {
  left: 0%;
}
.footer .timebar ul li:nth-child(2) {
  left: 29.36%;
}
.footer .timebar ul li:nth-child(3) {
  left: 42.22%;
}
.footer .timebar ul li:nth-child(4) {
  left: 53.04%;
}
.footer .timebar ul li:nth-child(5) {
  left: 66.71%;
}
.footer .timebar ul li:nth-child(6) {
  left: 84.57%;
}
.footer .toggleBtn {
  position: absolute;
  right: 40px;
  top: 17px;
}
.footer .toggleBtn .soundBtn {
  background: url("./icons/icon-sound-on.svg") no-repeat 2px;
  background-size: contain;
  filter: brightness(0) invert(1);
  display: inline-block;
  width: 31px;
  height: 26px;
  pointer-events: all;
  cursor: pointer;
}
.footer .toggleBtn .soundBtn.off {
  background: url("./icons/icon-sound-off.svg") no-repeat;
  background-size: contain;
}
.footer .toggleBtn .fullscreenBtn {
  background: url("./icons/icon-fullscreen.svg") no-repeat center center;
  display: inline-block;
  width: 36px;
  height: 26px;
  margin-left: 13px;
  pointer-events: all;
  cursor: pointer;
}
.footer .toggleBtn .fullscreenBtn.open {
  background: url("./icons/icon-fullscreen-off.svg") no-repeat center center;
}

.explorermode .footer .playBtn {
  background: #fff url("./icons/icon-play.svg") no-repeat 20px center;
  background-size: 35%;
}

/*
#portrait-mode {
    display: none;
}
*/
#loading-mode {
  font-family: "Whyte Bold";
  font-size: 20px;
  line-height: 32px;
}
#loading-mode span {
  display: inline-block;
  line-height: 64px;
  margin-left: 18px;
}

@keyframes ripple-out {
  80% {
    top: 0rem;
    right: 0rem;
    bottom: 0rem;
    left: 0rem;
    opacity: 0;
  }
  100% {
    top: 0rem;
    right: 0rem;
    bottom: 0rem;
    left: 0rem;
    opacity: 0;
  }
}
.hotspot_pulse {
  background: #fff;
  width: 28px;
  height: 28px;
  margin: 36px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.hotspot_pulse:before {
  content: "";
  position: absolute;
  border-radius: 4.2rem;
  top: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  border: 0.3rem solid #fff;
  animation: ripple-out 1500ms infinite;
  animation-delay: 500ms;
}
.hotspot_pulse.hover {
  transform: scale(1.3);
}
.hotspot_pulse.hover:before {
  animation: none;
  border: 0;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 64px;
    line-height: 72px;
  }

  p {
    font-size: 18px;
    line-height: 28px;
  }

  #intro p {
    width: 470px;
  }
}
@media (max-width: 896px) {
  h1 {
    font-size: 32px;
    line-height: 36px;
  }

  p {
    font-size: 14px;
    line-height: 22px;
  }

  #intro p {
    width: 482px;
  }
  #intro button {
    font-size: 18px;
  }
  #intro button .btnIcon {
    background: #fff url("./icons/icon-play.svg") no-repeat 18px center;
    background-size: 15px;
    width: 50px;
    height: 50px;
  }
  #intro button .btnText {
    line-height: 50px;
    margin-left: 18px;
  }

  #content-container {
    max-height: 70vh;
  }

  #navigation .header .teaser h1 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (max-width: 698px) {
  h1 {
    font-size: 24px;
    line-height: 30px;
  }

  p {
    font-size: 14px;
    line-height: 22px;
  }

  #intro p {
    width: 394px;
  }

  #help-container {
    bottom: 25px;
  }

  #navigation .header .teaser h1 {
    font-size: 24px;
    line-height: 30px;
  }

  #navigation .footer .capitelbar span.text {
    display: none;
  }

  #content-container {
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    max-height: unset;
    z-index: 2000000;
  }
  #content-container .content-wrapper {
    width: unset;
  }
  #content-container .close {
    right: 20px;
    top: 20px;
  }

  .footer .capitelbar span.text {
    display: none;
  }
}
@media (max-width: 500px) {
  body {
    overflow: hidden;
  }

  #portrait-mode {
    display: block;
    background: black url("rotate_device.png") no-repeat center;
    background-size: 25%;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 101000000000;
  }
}
@media screen and (orientation: portrait) {
  body {
    overflow: hidden;
  }

  #portrait-mode {
    display: block;
    background: black url("rotate_device.png") no-repeat center;
    background-size: 25%;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 101000000000;
  }
}
@supports (-moz-appearance: none) {
  #content-container .content-wrapper {
    padding-right: 40px;
  }
  #content-container.scroll .close {
    right: 50px;
  }
}
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #ccc;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  float: left;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fancybox-container {
  z-index: 29999200;
}

@keyframes leaves {
  0% {
    transform: scale(1) rotate(90deg);
  }
  50% {
    transform: scale(1.2) rotate(90deg);
  }
  0% {
    transform: scale(1) rotate(90deg);
  }
}

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