@font-face {
  font-family: "RobotoRegular";
  src: url("../tour/fonts/Roboto-Regular.ttf");
}

@font-face {
  font-family: "RobotoBold";
  src: url("../tour/fonts/Roboto-Bold.ttf");
}

@font-face {
  font-family: "Breamcatcher";
  src: url("../tour/fonts/breamcatcher.woff");
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/montserrat-v30-latin-500.woff2') format('woff2');
}

.copymodal {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 24px;
  position: absolute;
  height: 100%;
  width: 100%;
}
.copymodal__mask {
  background: #1b1b1b;
  height: 100%;
  opacity: 0.75;
  position: absolute;
  width: 100%;
}
.copymodal__container {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  max-width: 600px;
  position: absolute;
  text-align: left;
  width: 80%;
}
.copymodal__content {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  height: auto;
  justify-content: center;
  line-height: 24px;
  max-height: calc(100% - 100px);
  padding: 0px 20px;
  width: 100%;
}
@media (min-width: 1025px) {
  .copymodal__content--video {
    height: 42.22vw;
    width: 75vw;
  }
}
@media (max-width: 1024px) {
  .copymodal__content--video {
    height: 56.25vw;
    width: 100vw;
  }
}
.copymodal__content a {
  text-decoration: underline;
}
.copymodal__content img {
  max-width: 100%;
}
.copymodal__innercontent--centered {
  text-align: center;
}
.copymodal__button {
  margin-top: 20px !important;
}
.copymodal h1 {
  text-align: center;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before,
.hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before,
.hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before,
.hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before,
.hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before,
.hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before,
.hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before,
.hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before,
.hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease,
    transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease,
    transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before,
.hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before,
.hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

html.os-html,
html.os-html > .os-host {
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  height: 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  position: absolute !important;
}

html.os-html > .os-host > .os-padding {
  position: absolute;
}

body.os-dragging,
body.os-dragging * {
  cursor: default;
}

.os-host,
.os-host-textarea {
  position: relative;
  overflow: visible !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
}

.os-host-flexbox {
  overflow: hidden !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.os-host-flexbox > .os-size-auto-observer {
  height: inherit !important;
}

.os-host-flexbox > .os-content-glue {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.os-host-flexbox > .os-size-auto-observer,
.os-host-flexbox > .os-content-glue {
  min-height: 0;
  min-width: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

#os-dummy-scrollbar-size {
  position: fixed;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  overflow: scroll;
  height: 500px;
  width: 500px;
}

#os-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

#os-dummy-scrollbar-size,
.os-viewport {
  -ms-overflow-style: scrollbar !important;
}

.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size,
.os-viewport-native-scrollbars-invisible.os-viewport {
  scrollbar-width: none !important;
}

.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size::-webkit-scrollbar,
.os-viewport-native-scrollbars-invisible.os-viewport::-webkit-scrollbar,
.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size::-webkit-scrollbar-corner,
.os-viewport-native-scrollbars-invisible.os-viewport::-webkit-scrollbar-corner {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  visibility: hidden !important;
  background: 0 0 !important;
}

.os-content-glue {
  box-sizing: inherit;
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.os-padding {
  box-sizing: inherit;
  direction: inherit;
  position: absolute;
  overflow: visible;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 1;
}

.os-host-overflow > .os-padding {
  overflow: hidden;
}

.os-viewport {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  outline: 0 !important;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.os-content-arrange {
  position: absolute;
  z-index: -1;
  min-height: 1px;
  min-width: 1px;
  pointer-events: none;
}

.os-content {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  height: 100%;
  width: 100%;
  visibility: visible;
}

.os-content:before,
.os-content:after {
  content: "";
  display: table;
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
}

.os-content > .os-textarea {
  box-sizing: border-box !important;
  direction: inherit !important;
  background: 0 0 !important;
  outline: 0 transparent !important;
  overflow: hidden !important;
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  float: none !important;
  -webkit-filter: none !important;
  filter: none !important;
  border: 0 !important;
  resize: none !important;
  -webkit-transform: none !important;
  transform: none !important;
  max-width: none !important;
  max-height: none !important;
  box-shadow: none !important;
  -webkit-perspective: none !important;
  perspective: none !important;
  opacity: 1 !important;
  z-index: 1 !important;
  clip: auto !important;
  vertical-align: baseline !important;
  padding: 0;
}

.os-host-rtl > .os-padding > .os-viewport > .os-content > .os-textarea {
  right: 0 !important;
}

.os-content > .os-textarea-cover {
  z-index: -1;
  pointer-events: none;
}

.os-content > .os-textarea[wrap="off"] {
  white-space: pre !important;
  margin: 0 !important;
}

.os-text-inherit {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-transform: inherit;
  text-decoration: inherit;
  text-indent: inherit;
  text-align: inherit;
  text-shadow: inherit;
  text-overflow: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  line-height: inherit;
  unicode-bidi: inherit;
  direction: inherit;
  color: inherit;
  cursor: text;
}

.os-resize-observer,
.os-resize-observer-host {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.os-resize-observer-host {
  padding: inherit;
  border: inherit;
  border-color: transparent;
  border-style: solid;
  box-sizing: border-box;
}

.os-resize-observer-host:after {
  content: "";
}

.os-resize-observer-host > .os-resize-observer,
.os-resize-observer-host:after {
  height: 200%;
  width: 200%;
  padding: inherit;
  border: inherit;
  margin: 0;
  display: block;
  box-sizing: content-box;
}

.os-resize-observer.observed,
object.os-resize-observer {
  box-sizing: border-box !important;
}

.os-size-auto-observer {
  box-sizing: inherit !important;
  height: 100%;
  width: inherit;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.os-size-auto-observer > .os-resize-observer {
  width: 1000%;
  height: 1000%;
  min-height: 1px;
  min-width: 1px;
}

.os-resize-observer-item {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  direction: ltr !important;
  -webkit-box-flex: 0 !important;
  -ms-flex: none !important;
  flex: none !important;
}

.os-resize-observer-item-final {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-box-flex: 0 !important;
  -ms-flex: none !important;
  flex: none !important;
}

.os-resize-observer {
  -webkit-animation-duration: 0.001s;
  animation-duration: 0.001s;
  -webkit-animation-name: hs-resize-observer-dummy-animation;
  animation-name: hs-resize-observer-dummy-animation;
}

.os-host-transition > .os-scrollbar,
.os-host-transition > .os-scrollbar-corner {
  -webkit-transition: opacity 0.3s, visibility 0.3s, top 0.3s, right 0.3s,
    bottom 0.3s, left 0.3s;
  transition: opacity 0.3s, visibility 0.3s, top 0.3s, right 0.3s, bottom 0.3s,
    left 0.3s;
}

html.os-html > .os-host > .os-scrollbar {
  position: absolute;
  z-index: 999999;
}

.os-scrollbar,
.os-scrollbar-corner {
  position: absolute;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 1;
}

.os-scrollbar-corner {
  bottom: 0;
  right: 0;
}

.os-scrollbar {
  pointer-events: none;
}

.os-scrollbar-track {
  pointer-events: auto;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 0 !important;
  border: 0 !important;
}

.os-scrollbar-handle {
  pointer-events: auto;
  position: absolute;
  width: 100%;
  height: 100%;
}

.os-scrollbar-handle-off,
.os-scrollbar-track-off {
  pointer-events: none;
}

.os-scrollbar.os-scrollbar-unusable,
.os-scrollbar.os-scrollbar-unusable * {
  pointer-events: none !important;
}

.os-scrollbar.os-scrollbar-unusable .os-scrollbar-handle {
  opacity: 0 !important;
}

.os-scrollbar-horizontal {
  bottom: 0;
  left: 0;
}

.os-scrollbar-vertical {
  top: 0;
  right: 0;
}

.os-host-rtl > .os-scrollbar-horizontal {
  right: 0;
}

.os-host-rtl > .os-scrollbar-vertical {
  right: auto;
  left: 0;
}

.os-host-rtl > .os-scrollbar-corner {
  right: auto;
  left: 0;
}

.os-scrollbar-auto-hidden,
.os-padding + .os-scrollbar-corner,
.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden
  > .os-scrollbar-corner,
.os-host-scrollbar-horizontal-hidden > .os-scrollbar-horizontal,
.os-host-resize-disabled.os-host-scrollbar-vertical-hidden
  > .os-scrollbar-corner,
.os-host-scrollbar-vertical-hidden > .os-scrollbar-vertical,
.os-scrollbar-horizontal.os-scrollbar-auto-hidden
  + .os-scrollbar-vertical
  + .os-scrollbar-corner,
.os-scrollbar-horizontal
  + .os-scrollbar-vertical.os-scrollbar-auto-hidden
  + .os-scrollbar-corner,
.os-scrollbar-horizontal.os-scrollbar-auto-hidden
  + .os-scrollbar-vertical.os-scrollbar-auto-hidden
  + .os-scrollbar-corner {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.os-scrollbar-corner-resize-both {
  cursor: nwse-resize;
}

.os-host-rtl > .os-scrollbar-corner-resize-both {
  cursor: nesw-resize;
}

.os-scrollbar-corner-resize-horizontal {
  cursor: ew-resize;
}

.os-scrollbar-corner-resize-vertical {
  cursor: ns-resize;
}

.os-dragging .os-scrollbar-corner.os-scrollbar-corner-resize {
  cursor: default;
}

.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden
  > .os-scrollbar-vertical {
  top: 0;
  bottom: 0;
}

.os-host-resize-disabled.os-host-scrollbar-vertical-hidden
  > .os-scrollbar-horizontal,
.os-host-rtl.os-host-resize-disabled.os-host-scrollbar-vertical-hidden
  > .os-scrollbar-horizontal {
  right: 0;
  left: 0;
}

.os-scrollbar:hover,
.os-scrollbar-corner.os-scrollbar-corner-resize {
  opacity: 1 !important;
  visibility: visible !important;
}

.os-scrollbar-corner.os-scrollbar-corner-resize {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB3aWR0aD0iMTAiICAgaGVpZ2h0PSIxMCIgICB2ZXJzaW9uPSIxLjEiPiAgPGcgICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsLTEwNDIuMzYyMikiICAgICBzdHlsZT0iZGlzcGxheTppbmxpbmUiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iZmlsbDojMDAwMDAwO2ZpbGwtb3BhY2l0eTowLjQ5NDExNzY1O2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lIiAgICAgICBkPSJtIDcuNDI0MjE4NywxMDQyLjM2MjIgYyAtMC43MjM1NzkyLDAgLTEuMzEwMTU2MiwwLjU4NjYgLTEuMzEwMTU2MiwxLjMxMDIgMCwwLjI5OSAwLjEwNDM0MTksMC41NzEgMC4yNzI5NDkyLDAuNzkxNSAwLjIwOTEwMjQsMC4xNDEzIDAuNDY1NjIwNiwwLjIxODQgMC43MzY5NjI5LDAuMjE4NCAwLjcyMzU3OTMsMCAxLjMxMDE1NjMsLTAuNTg2NiAxLjMxMDE1NjMsLTEuMzEwMiAwLC0wLjI3MTMgLTAuMDc3MDkzLC0wLjUyNzggLTAuMjE4MzU5NCwtMC43MzcgLTAuMjIwNDk0MSwtMC4xNjg2IC0wLjQ5MjU0NDMsLTAuMjcyOSAtMC43OTE1NTI4LC0wLjI3MjkgeiBtIDAsMy4wODQzIGMgLTAuNzIzNTc5MiwwIC0xLjMxMDE1NjIsMC41ODY2IC0xLjMxMDE1NjIsMS4zMTAyIDAsMC4yOTkgMC4xMDQzNDE5LDAuNTcxIDAuMjcyOTQ5MiwwLjc5MTUgMC4yMDkxMDI0LDAuMTQxMyAwLjQ2NTYyMDYsMC4yMTg0IDAuNzM2OTYyOSwwLjIxODQgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjYgMS4zMTAxNTYzLC0xLjMxMDIgMCwtMC4yNzEzIC0wLjA3NzA5MywtMC41Mjc4IC0wLjIxODM1OTQsLTAuNzM2OSAtMC4yMjA0OTQxLC0wLjE2ODYgLTAuNDkyNTQ0MywtMC4yNzMgLTAuNzkxNTUyOCwtMC4yNzMgeiBtIC0zLjA4NDMyNjEsMCBjIC0wLjcyMzU3OTMsMCAtMS4zMTAxNTYzLDAuNTg2NiAtMS4zMTAxNTYzLDEuMzEwMiAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MSAwLjI3Mjk0OTIsMC43OTE1IDAuMjA5MTAyNCwwLjE0MTMgMC40NjU2MjA3LDAuMjE4NCAwLjczNjk2MjksMC4yMTg0IDAuNzIzNTc5MywwIDEuMzEwMTU2MywtMC41ODY2IDEuMzEwMTU2MywtMS4zMTAyIDAsLTAuMjcxMyAtMC4wNzcwOTMsLTAuNTI3OCAtMC4yMTgzNTk0LC0wLjczNjkgLTAuMjIwNDk0LC0wLjE2ODYgLTAuNDkyNTQ0MiwtMC4yNzMgLTAuNzkxNTUyNywtMC4yNzMgeiBtIC0zLjAyOTczNjQsMy4wMjk4IEMgMC41ODY1NzY5MywxMDQ4LjQ3NjMgMCwxMDQ5LjA2MjggMCwxMDQ5Ljc4NjQgYyAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MTEgMC4yNzI5NDkyMiwwLjc5MTYgMC4yMDkxMDIyOSwwLjE0MTIgMC40NjU2MjA2NSwwLjIxODMgMC43MzY5NjI4OCwwLjIxODMgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjUgMS4zMTAxNTYzLC0xLjMxMDEgMCwtMC4yNzE0IC0wLjA3NzA5MywtMC41Mjc5IC0wLjIxODM1OTQsLTAuNzM3IC0wLjIyMDQ5NDEsLTAuMTY4NiAtMC40OTI1NDQzLC0wLjI3MjkgLTAuNzkxNTUyOCwtMC4yNzI5IHogbSAzLjAyOTczNjQsMCBjIC0wLjcyMzU3OTMsMCAtMS4zMTAxNTYzLDAuNTg2NSAtMS4zMTAxNTYzLDEuMzEwMSAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MTEgMC4yNzI5NDkyLDAuNzkxNiAwLjIwOTEwMjQsMC4xNDEyIDAuNDY1NjIwNywwLjIxODMgMC43MzY5NjI5LDAuMjE4MyAwLjcyMzU3OTMsMCAxLjMxMDE1NjMsLTAuNTg2NSAxLjMxMDE1NjMsLTEuMzEwMSAwLC0wLjI3MTQgLTAuMDc3MDkzLC0wLjUyNzkgLTAuMjE4MzU5NCwtMC43MzcgLTAuMjIwNDk0LC0wLjE2ODYgLTAuNDkyNTQ0MiwtMC4yNzI5IC0wLjc5MTU1MjcsLTAuMjcyOSB6IG0gMy4wODQzMjYxLDAgYyAtMC43MjM1NzkyLDAgLTEuMzEwMTU2MiwwLjU4NjUgLTEuMzEwMTU2MiwxLjMxMDEgMCwwLjI5OSAwLjEwNDM0MTksMC41NzExIDAuMjcyOTQ5MiwwLjc5MTYgMC4yMDkxMDI0LDAuMTQxMiAwLjQ2NTYyMDYsMC4yMTgzIDAuNzM2OTYyOSwwLjIxODMgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjUgMS4zMTAxNTYzLC0xLjMxMDEgMCwtMC4yNzE0IC0wLjA3NzA5MywtMC41Mjc5IC0wLjIxODM1OTQsLTAuNzM3IC0wLjIyMDQ5NDEsLTAuMTY4NiAtMC40OTI1NDQzLC0wLjI3MjkgLTAuNzkxNTUyOCwtMC4yNzI5IHoiLz4gIDwvZz4gIDxnICAgICBzdHlsZT0iZGlzcGxheTppbmxpbmUiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lIiAgICAgICBkPSJtIDguMjE1NzcxNSwwLjI3Mjk0OTIyIGMgMC4xNDEyNjY3LDAuMjA5MTAyMjkgMC4yMTgzNTk0LDAuNDY1NjIwNjUgMC4yMTgzNTk0LDAuNzM2OTYyODggMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MyAtMS4zMTAxNTYzLDEuMzEwMTU2MyAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTk0IDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDc2IC0wLjIwNTUxNzYsLTAuNzk3Nzk2NTkgLTAuNTE4NjAzNSwtMS4wMzcyMDY5OCB6IG0gMCwzLjA4NDMyNjE4IGMgMC4xNDEyNjY3LDAuMjA5MTAyMyAwLjIxODM1OTQsMC40NjU2MjA2IDAuMjE4MzU5NCwwLjczNjk2MjkgMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MiAtMS4zMTAxNTYzLDEuMzEwMTU2MiAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTkzIDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY3IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogbSAtMy4wODQzMjYyLDAgYyAwLjE0MTI2NjcsMC4yMDkxMDIzIDAuMjE4MzU5NCwwLjQ2NTYyMDYgMC4yMTgzNTk0LDAuNzM2OTYyOSAwLDAuNzIzNTc5MyAtMC41ODY1NzcsMS4zMTAxNTYyIC0xLjMxMDE1NjMsMS4zMTAxNTYyIC0wLjI3MTM0MjIsMCAtMC41Mjc4NjA1LC0wLjA3NzA5MyAtMC43MzY5NjI5LC0wLjIxODM1OTMgMC4yMzk0MTA0LDAuMzEzMDg1OSAwLjYxMjYzNjMsMC41MTg2MDM1IDEuMDM3MjA3MSwwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYyLC0wLjU4NjU3NyAxLjMxMDE1NjIsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NSwtMC43OTc3OTY3IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogTSAyLjEwMTcwOSw2LjM4NzAxMTcgYyAwLjE0MTI2NjcsMC4yMDkxMDI0IDAuMjE4MzU5NCwwLjQ2NTYyMDYgMC4yMTgzNTk0LDAuNzM2OTYyOSAwLDAuNzIzNTc5MyAtMC41ODY1NzcsMS4zMTAxNTYzIC0xLjMxMDE1NjMsMS4zMTAxNTYzIC0wLjI3MTM0MjIzLDAgLTAuNTI3ODYwNTksLTAuMDc3MDkzIC0wLjczNjk2Mjg4LC0wLjIxODM1OTQgMC4yMzk0MTAzOSwwLjMxMzA4NTkgMC42MTI2MzYyMiwwLjUxODYwMzUgMS4wMzcyMDY5OCwwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY2IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogbSAzLjAyOTczNjMsMCBjIDAuMTQxMjY2NywwLjIwOTEwMjQgMC4yMTgzNTk0LDAuNDY1NjIwNiAwLjIxODM1OTQsMC43MzY5NjI5IDAsMC43MjM1NzkzIC0wLjU4NjU3NywxLjMxMDE1NjMgLTEuMzEwMTU2MywxLjMxMDE1NjMgLTAuMjcxMzQyMiwwIC0wLjUyNzg2MDUsLTAuMDc3MDkzIC0wLjczNjk2MjksLTAuMjE4MzU5NCAwLjIzOTQxMDQsMC4zMTMwODU5IDAuNjEyNjM2MywwLjUxODYwMzUgMS4wMzcyMDcxLDAuNTE4NjAzNSAwLjcyMzU3OTMsMCAxLjMxMDE1NjIsLTAuNTg2NTc3IDEuMzEwMTU2MiwtMS4zMTAxNTYzIDAsLTAuNDI0NTcwOCAtMC4yMDU1MTc1LC0wLjc5Nzc5NjYgLTAuNTE4NjAzNSwtMS4wMzcyMDcgeiBtIDMuMDg0MzI2MiwwIGMgMC4xNDEyNjY3LDAuMjA5MTAyNCAwLjIxODM1OTQsMC40NjU2MjA2IDAuMjE4MzU5NCwwLjczNjk2MjkgMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MyAtMS4zMTAxNTYzLDEuMzEwMTU2MyAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTk0IDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY2IC0wLjUxODYwMzUsLTEuMDM3MjA3IHoiIC8+ICA8L2c+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  pointer-events: auto !important;
}

.os-host-rtl > .os-scrollbar-corner.os-scrollbar-corner-resize {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.os-host-overflow {
  overflow: hidden !important;
}

@-webkit-keyframes hs-resize-observer-dummy-animation {
  0% {
    z-index: 0;
  }
  to {
    z-index: -1;
  }
}

@keyframes hs-resize-observer-dummy-animation {
  0% {
    z-index: 0;
  }
  to {
    z-index: -1;
  }
}

.os-theme-none > .os-scrollbar-horizontal,
.os-theme-none > .os-scrollbar-vertical,
.os-theme-none > .os-scrollbar-corner {
  display: none !important;
}

.os-theme-none > .os-scrollbar-corner-resize {
  display: block !important;
  min-width: 10px;
  min-height: 10px;
}

.os-theme-dark > .os-scrollbar-horizontal,
.os-theme-light > .os-scrollbar-horizontal {
  right: 10px;
  height: 10px;
}

.os-theme-dark > .os-scrollbar-vertical,
.os-theme-light > .os-scrollbar-vertical {
  bottom: 10px;
  width: 10px;
}

.os-theme-dark.os-host-rtl > .os-scrollbar-horizontal,
.os-theme-light.os-host-rtl > .os-scrollbar-horizontal {
  left: 10px;
  right: 0;
}

.os-theme-dark > .os-scrollbar-corner,
.os-theme-light > .os-scrollbar-corner {
  height: 10px;
  width: 10px;
}

.os-theme-dark > .os-scrollbar-corner,
.os-theme-light > .os-scrollbar-corner {
  background-color: transparent;
}

.os-theme-dark > .os-scrollbar,
.os-theme-light > .os-scrollbar {
  padding: 2px;
  box-sizing: border-box;
  background: 0 0;
}

.os-theme-dark > .os-scrollbar.os-scrollbar-unusable,
.os-theme-light > .os-scrollbar.os-scrollbar-unusable {
  background: 0 0;
}

.os-theme-dark > .os-scrollbar > .os-scrollbar-track,
.os-theme-light > .os-scrollbar > .os-scrollbar-track {
  background: 0 0;
}

.os-theme-dark
  > .os-scrollbar-horizontal
  > .os-scrollbar-track
  > .os-scrollbar-handle,
.os-theme-light
  > .os-scrollbar-horizontal
  > .os-scrollbar-track
  > .os-scrollbar-handle {
  min-width: 30px;
}

.os-theme-dark
  > .os-scrollbar-vertical
  > .os-scrollbar-track
  > .os-scrollbar-handle,
.os-theme-light
  > .os-scrollbar-vertical
  > .os-scrollbar-track
  > .os-scrollbar-handle {
  min-height: 30px;
}

.os-theme-dark.os-host-transition
  > .os-scrollbar
  > .os-scrollbar-track
  > .os-scrollbar-handle,
.os-theme-light.os-host-transition
  > .os-scrollbar
  > .os-scrollbar-track
  > .os-scrollbar-handle {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-dark > .os-scrollbar > .os-scrollbar-track,
.os-theme-light > .os-scrollbar > .os-scrollbar-track {
  border-radius: 10px;
}

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  background: rgba(0, 0, 0, 0.4);
}

.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  background: rgba(255, 255, 255, 0.4);
}

.os-theme-dark
  > .os-scrollbar:hover
  > .os-scrollbar-track
  > .os-scrollbar-handle {
  background: rgba(0, 0, 0, 0.55);
}

.os-theme-light
  > .os-scrollbar:hover
  > .os-scrollbar-track
  > .os-scrollbar-handle {
  background: rgba(255, 255, 255, 0.55);
}

.os-theme-dark
  > .os-scrollbar
  > .os-scrollbar-track
  > .os-scrollbar-handle.active {
  background: rgba(0, 0, 0, 0.7);
}

.os-theme-light
  > .os-scrollbar
  > .os-scrollbar-track
  > .os-scrollbar-handle.active {
  background: rgba(255, 255, 255, 0.7);
}

.os-theme-dark > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
}

.os-theme-dark.os-host-scrollbar-horizontal-hidden
  > .os-scrollbar-horizontal
  .os-scrollbar-handle:before,
.os-theme-dark.os-host-scrollbar-vertical-hidden
  > .os-scrollbar-vertical
  .os-scrollbar-handle:before,
.os-theme-light.os-host-scrollbar-horizontal-hidden
  > .os-scrollbar-horizontal
  .os-scrollbar-handle:before,
.os-theme-light.os-host-scrollbar-vertical-hidden
  > .os-scrollbar-vertical
  .os-scrollbar-handle:before {
  display: none;
}

.os-theme-dark > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-horizontal .os-scrollbar-handle:before {
  top: -6px;
  bottom: -2px;
}

.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
  left: -6px;
  right: -2px;
}

.os-host-rtl.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-host-rtl.os-theme-light
  > .os-scrollbar-vertical
  .os-scrollbar-handle:before {
  right: -6px;
  left: -2px;
}

/*
os-theme-minimal-light
*/
.os-theme-minimal-light > .os-scrollbar {
  padding: 0px;
}

.os-theme-minimal-light > .os-scrollbar-horizontal {
  right: 16px;
  height: 16px;
}

.os-theme-minimal-light > .os-scrollbar-vertical {
  bottom: 16px;
  width: 16px;
}

.os-theme-minimal-light.os-host-rtl > .os-scrollbar-horizontal {
  left: 16px;
  right: 0;
}

.os-theme-minimal-light > .os-scrollbar-corner {
  height: 16px;
  width: 16px;
  background-color: transparent;
}

.os-theme-minimal-light > .os-scrollbar > .os-scrollbar-track,
.os-theme-minimal-light
  > .os-scrollbar
  > .os-scrollbar-track
  > .os-scrollbar-handle {
  background: transparent;
}

.os-theme-minimal-light
  > .os-scrollbar
  > .os-scrollbar-track
  > .os-scrollbar-handle:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  opacity: 0.48;
  border-radius: 10px;
}

.os-theme-minimal-light
  > .os-scrollbar
  > .os-scrollbar-track
  > .os-scrollbar-handle:hover:before {
  opacity: 0.68;
}

.os-theme-minimal-light
  > .os-scrollbar
  > .os-scrollbar-track
  > .os-scrollbar-handle.active:before {
  opacity: 0.7;
}

.os-theme-minimal-light
  > .os-scrollbar-horizontal
  > .os-scrollbar-track
  > .os-scrollbar-handle {
  min-width: 15px;
}

.os-theme-minimal-light
  > .os-scrollbar-vertical
  > .os-scrollbar-track
  > .os-scrollbar-handle {
  min-height: 15px;
}

.os-theme-minimal-light
  > .os-scrollbar-horizontal
  > .os-scrollbar-track
  > .os-scrollbar-handle:before {
  height: 6px;
  bottom: 0;
  top: auto;
}

.os-theme-minimal-light
  > .os-scrollbar-vertical
  > .os-scrollbar-track
  > .os-scrollbar-handle:before {
  width: 6px;
  right: 0;
  left: auto;
}

.os-theme-minimal-light.os-host-rtl
  > .os-scrollbar-vertical
  > .os-scrollbar-track
  > .os-scrollbar-handle:before {
  left: 0;
  right: auto;
}

.os-theme-minimal-light
  > .os-scrollbar-horizontal
  > .os-scrollbar-track
  > .os-scrollbar-handle:hover:before,
.os-theme-minimal-light
  > .os-scrollbar-horizontal
  > .os-scrollbar-track
  > .os-scrollbar-handle.active:before {
  height: 100%;
}

.os-theme-minimal-light
  > .os-scrollbar-vertical
  > .os-scrollbar-track
  > .os-scrollbar-handle:hover:before,
.os-theme-minimal-light
  > .os-scrollbar-vertical
  > .os-scrollbar-track
  > .os-scrollbar-handle.active:before {
  width: 100%;
}

.os-theme-minimal-light.os-host-transition
  > .os-scrollbar-horizontal
  > .os-scrollbar-track
  > .os-scrollbar-handle:before {
  transition: opacity 0.3s, height 0.3s;
}

.os-theme-minimal-light.os-host-transition
  > .os-scrollbar-vertical
  > .os-scrollbar-track
  > .os-scrollbar-handle:before {
  transition: opacity 0.3s, width 0.3s;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0px;
  padding: 0px;
}

html {
  height: 100%;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "korolev";
  font-weight: normal;
  font-size: 16px;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  text-decoration: none;
}

iframe {
  height: 100%;
  width: 100%;
}

h1,
h2 {
  font-weight: normal;
}

input:focus {
  outline: none;
}

.disabled {
  pointer-events: none;
}

.flex-centered {
  align-items: center;
  display: flex;
  justify-content: center;
}

.fullscreen {
  height: 100%;
  position: absolute;
  width: 100%;
}

.video-container-ar-169 {
  padding-bottom: 56.25%;
  position: relative;
}

.video-ar {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .mobile-only {
    display: none !important;
  }
}

.pointer {
  cursor: pointer !important;
  pointer-events: all !important;
}

.nav-element {
  transition: opacity 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
.nav-element--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.button {
  align-items: center;
  background: #010202;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: "korolev";
  font-size: 20px;
  line-height: 28px;
  justify-content: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: fit-content;
}
@media (min-width: 1025px) {
  .button {
    padding: 14px 32px;
  }
}
@media (max-width: 1024px) {
  .button {
    padding: 14px 32px;
  }
}
.button:hover {
  background: #2c2c2c;
}

.colophon {
  background: #000;
  box-sizing: border-box;
  color: #fff;
  height: 100%;
  pointer-events: all;
  position: absolute;
  transition: opacity 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: 100%;
  z-index: 13;
}
@media (min-width: 1025px) {
  .colophon {
    padding: 88px 140px;
  }
}
@media (max-width: 1024px) {
  .colophon {
    padding: 64px 24px;
  }
}
.colophon__close-button {
  position: absolute;
  right: 24px;
  top: 32px;
  width: 18px;
}
.colophon__container {
  height: 100%;
  overflow-y: scroll;
  padding-right: 24px;
  width: 100%;
}
.colophon__subtitle {
  font-family: "korolev-compressed";
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 24px;
}
.colophon a {
  color: #fff;
  display: block;
  font-family: "RobotoBold";
  font-size: 14px;
  margin-top: 24px;
}
/* hack */
.colophon ul a {
  margin-top: 0px;
}
.colophon h1 {
  font-family: "korolev";
  font-size: 18px;
  margin-bottom: 16px;
}
.colophon p {
  font-family: "RobotoRegular";
  font-size: 14px;
  line-height: 16px;
}
.colophon ul {
  margin-bottom: 40px;
}
.colophon ul li {
  display: flex;
  flex-direction: column;
  font-family: "RobotoBold";
  font-size: 14px;
  margin-bottom: 20px;
}
.colophon ul li:last-of-type {
  margin-bottom: 0px;
}
.colophon ul li span {
  color: #859baa;
  font-family: "RobotoRegular";
}
/*.colophon ul li.hidden {
      display: none; }*/
.colophon--hidden {
  opacity: 0;
  pointer-events: none;

  * {
    pointer-events: none !important;
  }
}

/*
.copy-scrollable {
    overflow: hidden !important;
}
*/
.copy-modal-v3-wrapper {
  align-items: center;
  cursor: default;
  display: none;
  height: 100%;
  justify-content: center;
  pointer-events: all;
  position: absolute;
  width: 100%;
  z-index: 15;
}
.copy-modal-v3-wrapper__container {
  height: 100%;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.copy-modal-v3-wrapper__content {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  pointer-events: none;
  width: 100%;
}
.copy-modal-v3-wrapper__mask {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.copy-modal-v3-wrapper__mobile-close-button {
  height: 200px;
  pointer-events: all;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 5;
}
.copy-modal-v3-wrapper
  .os-theme-minimal-light
  > .os-scrollbar
  > .os-scrollbar-track
  > .os-scrollbar-handle:before {
  background: #000;
  opacity: 0.7;
}

.copy-modal-v3 {
  align-items: flex-start;
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: all;
  position: relative;
}
@media (min-width: 1025px) {
  .copy-modal-v3 {
    max-height: calc(100% - 200px);
    width: 720px;
    /*
        @-moz-document url-prefix() { 
           height: calc(100% - 200px);
        }
        */
  }
}
@media (max-width: 1024px) {
  .copy-modal-v3 {
    bottom: 0px;
    height: calc(100% - 200px);
    position: absolute;
    width: 100%;
  }
}
.copy-modal-v3__audio-display {
  width: 100%;
}
.copy-modal-v3__audio-seeker {
  cursor: pointer;
  background: linear-gradient(
    90deg,
    black 0%,
    black 0%,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  height: 2px;
  margin: 0px 16px;
  max-width: 250px;
  pointer-events: all;
  transition: height 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: calc(100% - 160px);
}
.copy-modal-v3__audio-seeker:hover {
  height: 6px;
}
.copy-modal-v3__close-button {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  pointer-events: all;
  position: absolute;
  z-index: 3;
}
@media (min-width: 1025px) {
  .copy-modal-v3__close-button {
    height: 32px;
    right: 20px;
    top: 20px;
    width: 32px;
  }
}
@media (max-width: 1024px) {
  .copy-modal-v3__close-button {
    height: 16px;
    right: 16px;
    top: 16px;
    width: 16px;
  }
}
@media (min-width: 1025px) {
  .copy-modal-v3__close-button img {
    width: 15px !important;
  }
}
.copy-modal-v3__footer {
  color: #000;
  font-family: Helvetica;
  font-size: 12px;
  line-height: 14px;
  flex-direction: column;
  padding: 20px 0px;
  width: 100%;
}
.copy-modal-v3__footer audio {
  outline: none;
}
.copy-modal-v3__main {
  display: inherit;
  height: 100%;
  margin-top: 64px;
  transition: height 0.35s cubic-bezier(0.86, 0, 0.07, 1),
    width 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
@media (min-width: 1025px) {
  .copy-modal-v3__main {
    padding: 0px 80px 48px;
    width: calc(100% - 160px);
  }
}
@media (max-width: 1024px) {
  .copy-modal-v3__main {
    padding: 0px 20px 48px;
    width: calc(100% - 40px);
  }
}
.copy-modal-v3__mark {
  display: none;
}
.copy-modal-v3__pp-button {
  cursor: pointer;
  height: 20px;
  margin-bottom: 5px;
}
.copy-modal-v3__preloader {
  left: 50%;
  margin: -40px 0px 0px -40px;
  position: absolute !important;
  top: 50%;
  transition: opacity 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
.copy-modal-v3__preloader--hidden {
  opacity: 0;
}
.copy-modal-v3__tutorial {
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  transition: opacity 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: 100%;
}
.copy-modal-v3__tutorial span {
  margin-left: 10px;
  padding-top: 4px;
}
.copy-modal-v3__tutorial--hidden {
  opacity: 0;
  pointer-events: none;
}
.copy-modal-v3 h1 {
  font-family: "korolev-compressed";
  font-size: 36px;
  line-height: 40px;
}
.copy-modal-v3 h2 {
  font-family: "korolev-compressed";
  color: #686868;
  font-size: 24px;
  line-height: 40px;
}
.copy-modal-v3 p {
  font-family: "korolev";
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 16px;
}
.copy-modal-v3 p:first-of-type {
  margin-top: 32px;
}
.copy-modal-v3 p:last-of-type {
  margin-bottom: 0px;
}
@media (min-width: 1025px) {
  .copy-modal-v3--gallery {
    max-height: none;
    width: auto;
  }
}
@media (max-width: 1024px) {
  .copy-modal-v3--gallery {
    height: 100%;
    align-items: center;
    position: relative;
    justify-content: center;
  }
}
.copy-modal-v3--gallery .gallery-image {
  cursor: zoom-in;
  opacity: 0;
}
.copy-modal-v3--gallery img.iv-image {
  transform: scale(1.02);
}
.copy-modal-v3--gallery .copy-modal-v3__close-button {
  align-items: center;
  display: flex;
  height: 32px;
  justify-content: center;
  pointer-events: all;
  position: absolute;
  width: 32px;
  z-index: 3;
}
@media (min-width: 1025px) {
  .copy-modal-v3--gallery .copy-modal-v3__close-button {
    background: #000;
    border-radius: 50%;
    right: -18px;
    top: -16px;
  }
}
@media (max-width: 1024px) {
  .copy-modal-v3--gallery .copy-modal-v3__close-button {
    background: #000;
    right: 0px;
    top: 0px;
  }
}
.copy-modal-v3--gallery .copy-modal-v3__close-button img {
  width: 10px !important;
}
.copy-modal-v3--gallery .copy-modal-v3__main {
  height: 160px;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  width: 160px;
}
.copy-modal-v3--youtube {
  background: #000;
  bottom: auto;
  height: auto;
}
@media (min-width: 1025px) {
  .copy-modal-v3--youtube {
    width: calc(100vw * 0.5625);
  }
}
@media (max-width: 1024px) {
  .copy-modal-v3--youtube {
    align-items: center;
    height: 100%;
    justify-content: center;
    position: relative;
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .copy-modal-v3--youtube iframe {
    position: absolute;
  }
}
@media (max-width: 1024px) {
  .copy-modal-v3--youtube iframe {
    height: 100%;
    position: absolute;
    width: 100%;
  }
}
.copy-modal-v3--youtube .copy-modal-v3__close-button {
  align-items: center;
  display: flex;
  height: 32px;
  justify-content: center;
  pointer-events: all;
  position: absolute;
  width: 32px;
  z-index: 3;
}
@media (min-width: 1025px) {
  .copy-modal-v3--youtube .copy-modal-v3__close-button {
    background: #000;
    border-radius: 50%;
    right: -14px;
    top: -14px;
  }
}
@media (max-width: 1024px) {
  .copy-modal-v3--youtube .copy-modal-v3__close-button {
    background: #000;
    right: 0px;
    top: 0px;
  }
}
.copy-modal-v3--youtube .copy-modal-v3__close-button img {
  width: 10px !important;
}
.copy-modal-v3--youtube .copy-modal-v3__main {
  margin: 0px;
  padding: 0px;
  padding-bottom: calc(56.25% - 1px);
  width: 100%;
}
@media (max-width: 1024px) {
  .copy-modal-v3--youtube .copy-modal-v3__main {
    height: 0px;
    position: relative;
  }
}

.copy-modal-v5-wrapper {
  align-items: center;
  height: 100%;
  justify-content: center;
  pointer-events: all;
  position: absolute;
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: 100%;
  z-index: 16;
}
.copy-modal-v5-wrapper__bottom-shadow {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  bottom: 0px;
  height: 40px;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.copy-modal-v5-wrapper__container {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.copy-modal-v5-wrapper__content {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.copy-modal-v5-wrapper__mask {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.copy-modal-v5-wrapper--hidden {
  opacity: 0;
  pointer-events: none;
}

.copy-modal-v5 a {
  color: #859baa !important;
}

.copy-modal-v5 {
  background: #02323e;
  box-sizing: border-box;
  color: #fff;
  cursor: default;
  pointer-events: all;
  position: relative;
}
@media (min-width: 1025px) {
  .copy-modal-v5 {
    max-height: 448px;
    max-width: 448px;
    padding: 55px 48px;
  }
}
@media (max-width: 1024px) {
  .copy-modal-v5 {
    height: 100%;
    padding: 100px 24px 24px;
    width: 100%;
  }
}

.copy-modal-v5__audio-display {
  font-family: "korolev";
  font-size: 12px;
  width: 100%;
}
.copy-modal-v5__audio-seeker {
  cursor: pointer;
  background: linear-gradient(
    90deg,
    black 0%,
    black 0%,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  height: 2px;
  margin: 0px 16px;
  max-width: 250px;
  pointer-events: all;
  transition: height 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: calc(100% - 160px);
}
.copy-modal-v5__audio-seeker:hover {
  height: 6px;
}
.copy-modal-v5__close-button {
  cursor: pointer;
  pointer-events: all;
  position: absolute;
  z-index: 2;
}
@media (min-width: 1025px) {
  .copy-modal-v5__close-button {
    right: 24px;
    top: 24px;
  }
}
@media (max-width: 1024px) {
  .copy-modal-v5__close-button {
    right: 16px;
    top: 24px;
  }
}
@media (min-width: 1025px) {
  .copy-modal-v5__close-button svg {
    fill: #fff;
  }
}
.copy-modal-v5__footer {
  background: #fff;
  color: #000;
  flex-direction: column;
  height: 82px;
  left: 0px;
  position: absolute;
}
@media (min-width: 1025px) {
  .copy-modal-v5__footer {
    bottom: -41px;
    width: 400px;
  }
}
@media (max-width: 1024px) {
  .copy-modal-v5__footer {
    bottom: 0px;
    width: 100%;
  }
}
.copy-modal-v5__footer audio {
  outline: none;
}
.copy-modal-v5__main {
  overflow-y: auto;
  width: 100%;
}
@media (min-width: 1025px) {
  .copy-modal-v5__main {
    max-height: calc(448px - 110px);
    padding-right: 48px;
  }
}
@media (max-width: 1024px) {
  .copy-modal-v5__main {
    max-height: 100%;
    padding-right: 24px;
  }
}
.copy-modal-v5__pp-button {
  cursor: pointer;
  height: 20px;
  margin-bottom: 5px;
}
.copy-modal-v5__preloader {
  left: 50%;
  margin: -40px 0px 0px -40px;
  position: absolute !important;
  top: 50%;
  transition: opacity 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
.copy-modal-v5__preloader--hidden {
  opacity: 0;
}
.copy-modal-v5 h1 {
  color: #859baa;
  font-family: "RobotoBold";
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 16px;
}
.copy-modal-v5 p {
  font-family: "RobotoRegular";
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 24px;
}
.copy-modal-v5 ul li {
  margin: 10px 0px;
}
.copy-modal-v5 ul li:before {
  color: #859baa;
  content: "\2022";
  margin-right: 10px;
}
@media (min-width: 1025px) {
  .copy-modal-v5--audio {
    padding: 55px 48px 68px;
  }
}
@media (min-width: 1025px) {
  .copy-modal-v5--audio .copy-modal-v5__main {
    max-height: calc(448px - 130px);
  }
}
@media (max-width: 1024px) {
  .copy-modal-v5--audio .copy-modal-v5__main {
    max-height: calc(100% - 86px);
  }
}

.cta-bottom {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: "RobotoRegular";
  font-size: 14px;
  line-height: 16px;
  pointer-events: all;
  transition: right 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: 8;
}
@media (min-width: 1025px) {
  .cta-bottom {
    position: absolute;
    right: 16px;
    bottom: 4px;
  }
}
@media (max-width: 1024px) {
  .cta-bottom {
    display: none;
  }
}
.cta-bottom--closed {
  right: -136px;
}
.cta-bottom a {
  color: #fff;
}
.cta-bottom a,
.cta-bottom div {
  margin-left: 32px;
  opacity: 0.6;
  transition: opacity 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
.cta-bottom a:hover,
.cta-bottom div:hover {
  opacity: 1;
}
.cta-bottom .tickets {
  background: #859baa;
  bottom: 0px;
  color: #fff;
  font-family: "korolev";
  font-size: 16px;
  padding: 12px 25px;
  position: fixed;
  right: 0px;
}

.cta-top {
  color: #fff;
  display: flex;
  pointer-events: all;
  position: absolute;
}
@media (min-width: 1025px) {
  .cta-top {
    font-family: "RobotoRegular";
    font-size: 14px;
    line-height: 16px;
    right: 24px;
    top: 24px;
    z-index: 7;
  }
}
@media (max-width: 1024px) {
  .cta-top {
    background: #859baa;
    bottom: 0px;
    font-family: "korolev";
    font-size: 16px;
    line-height: 24px;
    padding: 12px 25px;
    right: 0px;
    z-index: 3;
  }
}
@media (min-width: 1025px) {
  .cta-top a {
    color: #fff;
    opacity: 0.6;
    transition: opacity 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  }
}
@media (max-width: 1024px) {
  .cta-top a {
    color: #fff;
  }
}
.cta-top a:hover {
  opacity: 1;
}

.gui-stage {
  background: #fff;
  box-shadow: inset 0px 10px 15px -10px rgba(0, 0, 0, 0.25);
  height: 100%;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  width: 100%;
}

.gui-pano {
  display: none;
  height: 100%;
  width: 100%;
}
.gui-pano--hidden {
  display: none;
}

.gui-static {
  height: 100%;
  position: absolute;
  width: 100%;
}
.gui-static__top-shadow {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  height: 80px;
  position: absolute;
  top: 0px;
  width: 100%;
}
.gui-static__bottom-shadow {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  bottom: 0px;
  height: 80px;
  position: absolute;
  width: 100%;
}

.hotspot-v2 {
  background: #859baa;
  border: 2px solid #859baa;
  border-radius: 50%;
  height: 30px;
  margin-left: -15px;
  margin-top: -15px;
  transform: scale(1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: 30px;
}
.hotspot-v2__icon {
  height: 100%;
  position: absolute;
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: 100%;
  z-index: 3;
}
.hotspot-v2__icon img {
  width: 16px;
}
.hotspot-v2__icon svg {
  fill: #859baa;
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: 8px;
}
.hotspot-v2__pause-icon,
.hotspot-v2__play-icon {
  display: none;
  position: absolute;
  width: 16px;
  z-index: 2;
}
.hotspot-v2__play-icon {
  left: 4px;
  top: 3px;
}
.hotspot-v2__progress {
  opacity: 0;
  z-index: 25;
}
.hotspot-v2__shape {
  background: #000;
  border-radius: 50%;
  height: 24px;
  position: absolute;
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: 24px;
  z-index: 2;
}
.hotspot-v2__title {
  background: rgba(255, 255, 255, 0.25);
  color: #000;
  font-family: "korolev-compressed";
  font-size: 16px;
  line-height: 21px;
  max-width: 150px;
  opacity: 0;
  padding: 5px 10px;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 48px;
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: max-content;
}
.hotspot-v2--audio-paused,
.hotspot-v2--audio-playing {
  background: #000 !important;
  border: 2px solid #000 !important;
}
.hotspot-v2--audio-paused .hotspot-v2__icon,
.hotspot-v2--audio-playing .hotspot-v2__icon {
  display: none;
}
.hotspot-v2--audio-paused .hotspot-v2__progress,
.hotspot-v2--audio-playing .hotspot-v2__progress {
  margin-top: 5px;
  opacity: 1;
}
.hotspot-v2--audio-paused .hotspot-v2__progress svg,
.hotspot-v2--audio-playing .hotspot-v2__progress svg {
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 112;
  stroke-dashoffset: 112;
  transform: rotate(-90deg);
}
.hotspot-v2--audio-paused .hotspot-v2__shape,
.hotspot-v2--audio-playing .hotspot-v2__shape {
  background: #000 !important;
}
.hotspot-v2--audio-paused .hotspot-v2__play-icon {
  display: block;
}
.hotspot-v2--audio-playing .hotspot-v2__pause-icon {
  display: block;
}
.hotspot-v2--custom-icon {
  background: #fff;
  border: 2px solid #fff;
  height: 22px;
  margin-left: -11px;
  margin-top: -11px;
  width: 22px;
}
.hotspot-v2--custom-icon .hotspot-v2__icon img {
  width: 12px;
}
.hotspot-v2--custom-icon .hotspot-v2__shape {
  background: #fff;
}
.hotspot-v2--custom-icon .hotspot-v2__title {
  display: none;
}
.hotspot-v2--minified {
  transform: scale(0.01);
}
.hotspot-v2--opened .hotspot-v2__icon svg {
  fill: #000;
}
.hotspot-v2--opened .hotspot-v2__shape {
  background: #859baa;
  height: 40px;
  width: 40px;
}
.hotspot-v2--opened .hotspot-v2__title {
  opacity: 1;
}
.hotspot-v2--custom-icon.hotspot-v2:hover {
  transform: scale(1.25);
}

.landing {
  background: #000;
  color: #fff;
  height: 100%;
  pointer-events: auto;
  position: absolute;
  width: 100%;
}
@media (min-width: 1025px) {
  .landing {
    z-index: 9;
  }
}
@media (max-width: 1024px) {
  .landing {
    z-index: 12;
  }
}
.landing__background {
  object-fit: cover;
  position: absolute;
}
@media (min-width: 1025px) {
  .landing__background {
    height: calc(100% - 38px);
    object-position: left;
    top: 0px;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .landing__background {
    height: 100%;
    left: 0px;
    opacity: 0.25;
  }
}
@media (max-width: 1024px) {
  .landing__button {
    -webkit-transform: translateZ(0);
    bottom: 0px;
    font-size: 16px;
    position: fixed;
    width: 100%;
  }
}
@media (min-width: 375px) {
  .landing__button {
    font-size: 20px;
  }
}
.landing__content {
  box-sizing: border-box;
  z-index: 2;
}
@media (min-width: 1025px) {
  .landing__content {
    background: #92222e;
    max-width: 700px;
    padding: 52px 48px;
    box-shadow: 0px 0px 23px 0px #232323;
  }
}
@media (max-width: 1024px) {
  .landing__content {
    background: #92222e;
    height: calc(100% - 100px);
    margin-top: 100px;
    position: absolute;
    top: 30px;
    width: 100%;
    box-shadow: 0px 0px 23px 0px #232323;
  }
}
.landing__description {
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .landing__description {
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .landing__description {
    margin-bottom: 85px;
    padding: 0px 24px;
  }
}
.landing__headings {
  box-sizing: border-box;
  display: flex;
}
@media (min-width: 1025px) {
  .landing__headings {
    align-items: flex-end;
    margin-bottom: 32px;
  }
}
@media (max-width: 1024px) {
  .landing__headings {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 9px;
    padding: 0px 24px;
    margin-top:15%;
    margin-bottom:15px;
  }
}
.landing__logo {
  left: 24px;
  position: absolute;
  top: 24px;
  z-index: 3;
}
@media (min-width: 1025px) {
  .landing__logo {
    height: 90px;
    width: 215px;
  }
}
@media (max-width: 1024px) {
  .landing__logo {
    height: 70px;
    width: 160px;
  }
}
.landing__logo img {
  height: 100%;
  width: 100%;
}
.landing__share {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: "RobotoRegular";
  font-size: 14px;
  line-height: 16px;
  pointer-events: all;
  transition: right 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
@media (min-width: 1025px) {
  .landing__share {
    position: absolute;
    right: 0px;
    bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .landing__share {
    display: none;
  }
}
.landing__share a {
  color: #fff;
}
.landing__share a.subscribe-button,
.landing__share div {
  margin-left: 32px;
  opacity: 0.6;
  transition: opacity 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
.landing__share a.subscribe-button:hover,
.landing__share div:hover {
  opacity: 1;
}
.landing__share .tickets {
  /* hack */
  background: #859baa;
  bottom: 0px;
  color: #fff;
  font-family: "korolev";
  font-size: 16px;
  margin-left: 16px;
  padding: 12px 25px;
  right: 0px;
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
.landing__share--closed .tickets {
  margin-left: -136px;
}
.landing h1 {
  color: #fbb98f;
  font-family: "Breamcatcher";
  font-weight: normal;
}
@media (min-width: 1025px) {
  .landing h1 {
    font-size: 100px;
    line-height: 85px;
  }
}
@media (max-width: 1024px) {
  .landing h1 {
    font-size: 75px;
    line-height: 55px;
  }
}
.landing h2 {
  color: #d8d3c5;
  font-family: "korolev-compressed";
  font-weight: bold;
}
@media (min-width: 1025px) {
  .landing h2 {
    font-size: 48px;
    line-height: 38px;
    margin-left: 16px;
  }
}
@media (max-width: 1024px) {
  .landing h2 {
    font-size: 36px;
    line-height: 28px;
    margin-top: 10px;
  }
}
.landing p {
  font-family: "korolev";
  font-size: 18px;
}
@media (min-width: 1025px) {
  .landing p {
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .landing p {
    line-height: 28px;
  }
}

.credit {
  z-index: 1000;
  position: absolute;
  opacity: 0.6;
  color: white;
  left: 50%;
  transform: translateX(-50%);
  font-family: "korolev";
  font-size: 12px;
  line-height: 16px;
  display: none;
  pointer-events: all;
  transition: opacity 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
.credit:hover {
  opacity: 1;
}
@media (min-width: 1024px) {
  .credit {
    bottom: 12px;
    display: flex;
  }
}

.lang-switcher {
  color: #fff;
  display: flex;
  font-family: "korolev";
  font-size: 16px;
  line-height: 19px;
  pointer-events: all;
  position: absolute;
  z-index: 11;
}
@media (min-width: 1025px) {
  .lang-switcher {
    left: 19px;
    bottom: 12px;
    opacity: 0.6;
  }
}
@media (max-width: 1024px) {
  .lang-switcher {
    bottom: 13px;
    left: 20px;
  }
}
.lang-switcher__arrow {
  display: none;
}
.lang-switcher img {
  display: none;
}

.lang-list {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "korolev";
  font-size: 16px;
  line-height: 19px;
  padding: 18px 0px calc(18px + 38px) 0px;
  pointer-events: all;
  position: absolute;
  transition: opacity 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: 80px;
  z-index: 10;
}
@media (min-width: 1025px) {
  .lang-list {
    bottom: 0px;
    left: 0px;
  }
}
@media (max-width: 1024px) {
  .lang-list {
    bottom: 0px;
    left: 0px;
    width: 100%;
  }
}
.lang-list__item {
  margin: 14px 0px 0px 19px;
}
@media (min-width: 1025px) {
  .lang-list__item {
    opacity: 0.6;
  }
}
.lang-list__item:last-of-type {
  /* margin-bottom: 38px; */
}
.lang-list__item:hover {
  opacity: 1;
}
.lang-list__item--active {
  display: none;
}
.lang-list--hidden {
  opacity: 0;
  pointer-events: none;
}
.lang-list img {
  display: none;
}

.menu {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  position: absolute;
  right: 10px;
  top: 7px;
}
.menu__menuItem {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  margin-left: 20px;
  pointer-events: all;
  text-align: center;
  width: 32px;
}
.menu__menuItem img {
  height: 20px;
  width: 20px;
}
.menu__menuItem span {
  font-family: "korolev";
  font-size: 12px;
  line-height: 24px;
  pointer-events: none;
}
.menu__gyro {
  opacity: 0.5;
}

.nav-button {
  background: #15161c;
  color: #fff;
  font-family: "korolev";
  font-size: 16px;
  line-height: 24px;
  pointer-events: all;
  position: absolute;
  z-index: 4;
}
@media (min-width: 1025px) {
  .nav-button {
    padding: 8px 34px;
  }
}
@media (max-width: 1024px) {
  .nav-button {
    padding: 8px 34px;
  }
}

.nav-close-button {
  background: #fff;
  color: #000;
  font-family: "korolev";
  font-size: 16px;
  left: 00px;
  pointer-events: all;
  position: absolute;
}
@media (min-width: 1025px) {
  .nav-close-button {
    padding: 8px 34px;
  }
}
@media (max-width: 1024px) {
  .nav-close-button {
    padding: 8px 34px;
  }
}

.nav {
  background: #15161c;
  color: #fff;
  font-size: 20px !important;
  pointer-events: all;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: 6;
}
@media (min-width: 1025px) {
  .nav {
    height: 100%;
    width: 500px;
  }
}
@media (max-width: 1024px) {
  .nav {
    height: 100%;
    width: 100%;
  }
}
.nav--hidden {
  left: -100%;
}
.nav__background {
  align-items: center;
  display: flex;
}
@media (min-width: 1025px) {
  .nav__background {
    height: 115px;
  }
}
@media (max-width: 1024px) {
  .nav__background {
    height: 80px;
  }
}
.nav__container {
  display: flex;
  flex-direction: column;
  margin: 0px;
  position: absolute;
  width: 100%;
}
@media (min-width: 1025px) {
  .nav__container {
    height: calc(100% - 115px);
  }
}
@media (max-width: 1024px) {
  .nav__container {
    height: calc(100% - 80px);
  }
}
.nav__copyright {
  bottom: 10px;
  color: #3d4246;
  font-family: "korolev";
  font-size: 12px;
  position: absolute;
}
.nav__copyright:hover {
  color: #fff;
}
.nav__footer {
  background: #000;
  color: #fff;
  font-family: "korolev";
  font-size: 16px;
  justify-content: center;
  line-height: 19px;
  transition: left 0.35s cubic-bezier(0.86, 0, 0.07, 1),
    opacity 0.01s cubic-bezier(0.86, 0, 0.07, 1);
}
@media (min-width: 1025px) {
  .nav__footer {
    display: none;
  }
}
@media (max-width: 1024px) {
  .nav__footer {
    bottom: 0px;
    height: 66px;
    left: 0px;
    position: absolute;
    width: 100%;
    z-index: 2;
  }
}
.nav__footer--hidden {
  left: 100%;
  opacity: 0;
  pointer-events: none;
  transition: left 0.35s cubic-bezier(0.86, 0, 0.07, 1),
    opacity 0.01s cubic-bezier(0.86, 0, 0.07, 1) 0.35s;
}
.nav__footer--share {
  z-index: 2;
}
.nav__footer a {
  color: #fff;
}
.nav__footer a,
.nav__footer div {
  padding: 6px 0px 0px;
}
.nav__footer .share-button,
.nav__footer .subscribe-button,
.nav__footer .colophon-button {
  margin: 0px 24px;
  padding: 0px;
}
.nav__footer-share {
  background: #000;
  color: #fff;
  font-family: "korolev-compressed";
  font-size: 14px;
  font-weight: bold;
  justify-content: space-evenly;
  line-height: 17px;
}
.nav__list {
  list-style: none;
  margin: 0px;
  overflow-x: hidden;
  padding: 0px;
  pointer-events: all;
}
.nav__list--root {
  margin-left: 40px;
  overflow: hidden;
  width: calc(100% - 80px);
}
.nav__list--sub {
  display: none;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .nav__list--sub {
    margin-left: 18px;
  }
}
@media (max-width: 1024px) {
  .nav__list--sub {
    margin-left: 8px;
  }
}
.nav__list-container {
  margin: 0px;
  overflow-y: scroll;
  width: 100%;
}
@media (min-width: 1025px) {
  .nav__list-container {
    height: calc(100%);
  }
}
@media (max-width: 1024px) {
  .nav__list-container {
    height: calc(100% - 66px);
  }
}
.nav__list-item {
  color: #fff;
  cursor: pointer;
  font-family: "korolev";
  font-size: 24px;
  line-height: 40px;
  opacity: 1;
  transition: color 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
.nav__list-item--always-expanded {
  cursor: default;
}
.nav__list-item--active {
  cursor: default;
}
.nav__list-item:hover,
.nav__list-item--active {
  color: #859baa;
}
.nav__list-item--spot {
  display: flex;
  padding: 7px 0px;
}
.nav__list-item-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
.nav__list-item-header--active {
  /*
            font-size: 26px;
            opacity: 1.0;

            @media ($desktop) {
                padding-left: 50px;
            }
            */
}
.nav__list-item-header:hover {
  opacity: 1;
}
.nav__list-item-toggle {
  display: none;
}
.nav
  .os-theme-minimal-light
  > .os-scrollbar
  > .os-scrollbar-track
  > .os-scrollbar-handle:before {
  background: #fff;
  border-radius: 0px;
  opacity: 1;
}

.share {
  border: 1px solid #fff;
  border-radius: 50%;
  flex-shrink: 0;
  height: 32px;
  opacity: 1 !important;
  padding: 0px !important;
  width: 32px;
}
@media (min-width: 1025px) {
  .share {
    margin-bottom: 3px;
    margin-left: 16px !important;
  }
}
@media (max-width: 1024px) {
  .share {
    margin-left: 16px !important;
  }
}
.share__close-button {
  margin-left: 24px;
}
@media (max-width: 1024px) {
  .share__more {
    margin-right: 24px;
  }
}
.share__spacer {
  width: 100%;
}
@media (min-width: 1025px) {
  .share__twitter {
    margin-left: 20px !important;
  }
}
@media (max-width: 1024px) {
  .share__twitter {
    margin-left: 24px;
  }
}
.share img {
  width: 16px;
}

.tutorial {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: none;
  pointer-events: all;
  z-index: 2;
}
.tutorial__step {
  position: absolute;
  transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
}
@media (max-width: 1024px) {
  .tutorial__step {
    width: calc(100% - 48px);
  }
}
.tutorial__step--fade-1 {
  opacity: 0;
  padding-top: 150px;
}
.tutorial__step--fade-2 {
  opacity: 0;
  padding-bottom: 150px;
}
.tutorial__step img {
  margin-right: 10px;
}
.tutorial__step p {
  font-family: "korolev";
  padding-top: 9px;
}
@media (min-width: 1025px) {
  .tutorial__step p {
    font-size: 24px;
    line-height: 29px;
  }
}
@media (max-width: 1024px) {
  .tutorial__step p {
    font-size: 14px;
    line-height: 17px;
  }
}

.os-theme-minimal-light
  > .os-scrollbar
  > .os-scrollbar-track
  > .os-scrollbar-handle:before {
  background: #fff;
  border-radius: 0px;
  opacity: 1;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #000 #fff;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: #000;
}

*::-webkit-scrollbar-thumb {
  background-color: #fff;
  border: none;
}

.lds-default {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}

.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}

.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}

.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}

.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}

.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}

.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}

.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}

.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}

.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}

.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}

.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}

.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}

@keyframes lds-default {
  0%,
  100%,
  20%,
  80% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}
