* {
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

html {
  height: 100%;
}
@media (max-width: 1024px) and (orientation: landscape) {
  html {
    height: 100vh;
  }
}

body {
  background-color: #AF1A1C;
  color: #FFF;
  font-family: "Rubik";
  font-weight: normal;
  font-size: 16px;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 1024px) and (orientation: landscape) {
  body {
    height: 100vh;
  }
}

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

h1, h2 {
  font-weight: normal;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

input:focus {
  outline: none;
}

#tour-container {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 1;
}

/*
@mixin flex-centered {
	align-items: center;
	display: flex;
	justify-content: center;
}

@mixin flex-centered-v {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@mixin flex-start {
	align-items: flex-start;
	display: flex;
	justify-content: flex-start;
}

@mixin flex-start-v {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

@mixin flex-end {
	align-items: flex-end;
	display: flex;
	justify-content: flex-end;
}

@mixin flex-end-v {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
*/
.tour-gui {
  height: 100%;
  position: absolute;
  width: 100%;
  pointer-events: none;
  position: fixed;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  z-index: 2;
}
@media (max-width: 1024px) and (orientation: landscape) {
  .tour-gui {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .tour-gui .mobile-only {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .tour-gui .desktop-only {
    display: none !important;
  }
}

.modal *, .popup *, .button * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.admission {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #AF1A1C;
  border-radius: 28px;
  box-sizing: border-box;
  gap: 10px;
  padding: 40px;
  pointer-events: all;
  position: absolute;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  z-index: 7;
}
@media (min-width: 1025px) {
  .admission {
    max-width: 375px;
    right: 32px;
    top: 90px;
  }
}
@media (max-width: 1024px) {
  .admission {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: calc(100vw - 56px);
  }
}
.admission__close {
  cursor: pointer;
  pointer-events: all;
  border-radius: 100%;
  padding: 9px;
  position: absolute;
  right: 8px;
  top: 8px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  z-index: 3;
}
@media (hover: hover) and (pointer: fine) {
  .admission__close:hover {
    background: rgba(0, 0, 0, 0.2);
  }
}
.admission__subtitle {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}
.admission__title {
  font-size: 18px;
  font-weight: 700;
}
.admission .button {
  background-color: transparent;
  border: 2px solid #FFF;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  margin: 30px 0px 0px;
  outline: transparent;
  padding: 9px 30px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
@media (hover: hover) and (pointer: fine) {
  .admission .button:hover {
    background: #FFF !important;
    color: #AF1A1C;
  }
}

.bottom-section {
  bottom: 0px;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  z-index: 2;
}
@media (min-width: 1025px) {
  .bottom-section {
    align-items: flex-end;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 0px 32px 32px;
  }
  .bottom-section > :nth-child(1) {
    justify-self: start;
  }
  .bottom-section > :nth-child(2) {
    justify-self: center;
  }
  .bottom-section > :nth-child(3) {
    justify-self: center;
  }
  .bottom-section > :nth-child(4) {
    justify-self: end;
  }
}
@media (max-width: 1024px) {
  .bottom-section {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 12px;
    padding: 0px 12px;
  }
}

.button {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  background: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: 500;
  outline: 4px solid rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover {
    background: #af1a1c !important;
  }
}
.button:active {
  background: #af1a1c !important;
}

.gt {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  pointer-events: all;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  z-index: 5;
}
@media (min-width: 1025px) {
  .gt {
    border-radius: 24px;
    left: 32px;
    padding: 0px 4px;
    top: 32px;
    width: 380px;
  }
}
@media (max-width: 1024px) {
  .gt {
    box-sizing: border-box;
    height: 100dvh;
    left: 0px;
    padding: 10px;
    top: 0px;
    width: 100vw;
  }
}
.gt__close {
  cursor: pointer;
  pointer-events: all;
  border-radius: 100%;
  padding: 9px;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  z-index: 3;
}
@media (min-width: 1025px) {
  .gt__close {
    right: 24px;
    top: 22px;
  }
}
@media (max-width: 1024px) {
  .gt__close {
    background: #AF1A1C;
    right: 14px;
    top: 14px;
  }
}
.gt__item {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  cursor: pointer;
  pointer-events: all;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  box-sizing: border-box;
  gap: 14px;
  min-height: 132px;
  outline: 4px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  width: 100%;
}
@media (min-width: 1025px) {
  .gt__item {
    backdrop-filter: blur(5px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .gt__item:hover {
    outline: 4px solid #AF1A1C;
  }
}
.gt__item img.gt-visited, .gt__item img.gt-unvisited {
  bottom: 10px;
  position: absolute;
  right: 10px;
}
.gt__item img.gt-visited {
  display: none;
}
.gt__item img.nav-unvisited {
  display: block;
}
.gt__item--visited img.gt-visited {
  display: block;
}
.gt__item--visited img.gt-unvisited {
  display: none;
}
.gt__item-description {
  font-size: 12px;
  font-weight: 400;
  font-weight: 400;
  line-height: 15px;
}
.gt__item-text {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  gap: 4px;
  height: 100%;
  padding: 10px 20px 10px 134px;
}
.gt__item-thumbnail {
  flex-shrink: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 120px;
}
.gt__item-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.gt__list-container {
  box-sizing: border-box;
  margin: 20px 0px 4px;
  padding-bottom: 6px;
  overflow-y: auto;
}
@media (min-width: 1025px) {
  .gt__list-container {
    max-height: calc(100dvh - 220px);
  }
}
@media (max-width: 1024px) {
  .gt__list-container {
    max-height: calc(100dvh - 180px);
    position: absolute;
    top: 130px;
    z-index: 2;
  }
}
.gt__list {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}
@media (min-width: 1025px) {
  .gt__list {
    padding: 10px;
  }
}
@media (max-width: 1024px) {
  .gt__list {
    padding: 10px 12px 0px 4px;
  }
}
.gt__shape {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  height: 100dvh;
  left: 0px;
  position: absolute;
  top: 80px;
  width: 100vw;
  z-index: 1;
}
.gt__title {
  font-size: 28px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .gt__title {
    margin: 24px 0px 0px 24px;
  }
}
@media (max-width: 1024px) {
  .gt__title {
    margin: 24px 0px 0px 14px;
    position: absolute;
    top: 80px;
    z-index: 2;
  }
}
.gt .admission-button {
  border-radius: 24px;
  left: 14px;
  position: absolute;
  top: 14px;
  width: fit-content;
}
@media (min-width: 1025px) {
  .gt .admission-button {
    padding: 4px 16px 4px 5px;
  }
}
@media (max-width: 1024px) {
  .gt .admission-button {
    padding-right: 16px;
  }
}
.gt .admission-button div {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #AF1A1C;
  border-radius: 100%;
  margin-right: 10px;
  padding: 9px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}

.gt-controls {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-radius: 24px;
  display: none;
  gap: 12px;
  padding: 4px;
}
.gt-controls__dot {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid white;
  box-sizing: border-box;
  flex-shrink: 0;
  height: 20px;
  padding: 4px;
  pointer-events: none;
  width: 20px;
}
.gt-controls__dot .gt-selected {
  display: none;
}
.gt-controls__dot .gt-visited {
  border-radius: 100%;
  border: 1px solid white;
  box-sizing: border-box;
  display: none;
  height: 18px;
  padding: 4px;
  width: 18px;
}
.gt-controls__dot--visited .gt-visited {
  display: block !important;
}
.gt-controls__dot--visited .gt-selected {
  display: none !important;
}
.gt-controls__dot--selected {
  border: 2px solid #FFF;
}
.gt-controls__dot--selected .gt-selected {
  display: block !important;
}
.gt-controls__dot--selected .gt-visited {
  display: none !important;
}
.gt-controls__dots {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 12px;
  pointer-events: all;
}
@media (max-width: 1024px) {
  .gt-controls__dots {
    margin-top: 8px;
    max-width: calc(100vw - 130px);
    overflow-x: auto;
    padding-bottom: 8px;
  }
}
.gt-controls__next, .gt-controls__prev {
  cursor: pointer;
  pointer-events: all;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 100%;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
@media (min-width: 1025px) {
  .gt-controls__next, .gt-controls__prev {
    padding: 12px 13px 10px;
  }
}
@media (max-width: 1024px) {
  .gt-controls__next, .gt-controls__prev {
    padding: 8px 9px 6px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .gt-controls__next:hover, .gt-controls__prev:hover {
    background: #AF1A1C;
  }
}
.gt-controls__next--disabled, .gt-controls__prev--disabled {
  opacity: 0.5;
  pointer-events: none !important;
}
.gt-controls__prev img {
  transform: scaleX(-1);
}

.hotspot {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 116px;
  margin: -58px 0px 0px -58px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  width: 116px;
}
.hotspot__icon {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  z-index: 2;
}
.hotspot__icon--nav {
  background-color: #AF1A1C;
  border-radius: 100%;
  padding: 5px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
.hotspot__preview {
  border-radius: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  width: 100%;
  z-index: 1;
}
.hotspot__preview img {
  width: 100%;
}
.hotspot__shape {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border: 4px solid #FFF;
  border-radius: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  width: 100%;
}
.hotspot__shape-2 {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: transparent;
  border-radius: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  width: 100%;
}
.hotspot__title {
  background: #AF1A1C;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  padding: 13px 18px;
  pointer-events: none;
  position: absolute;
  top: 0px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  white-space: nowrap;
}
.hotspot--contracted.hotspot--custom-icon {
  height: 34px;
  margin: -17px 0px 0px -17px;
  width: 34px;
}
.hotspot--contracted.hotspot--custom-icon .hotspot__icon {
  opacity: 0;
}
.hotspot--contracted.hotspot--custom-icon .hotspot__shape {
  border: 11px solid #FFF;
  height: 12px;
  width: 12px;
}
.hotspot--custom-icon {
  height: 46px;
  margin: -24px 0px 0px -24px;
  width: 46px;
}
.hotspot--custom-icon .hotspot__icon--nav {
  display: none;
}
.hotspot--custom-icon .hotspot__shape {
  background: #AF1A1C;
  height: 26px;
  width: 26px;
}
.hotspot--custom-icon .hotspot__shape-2 {
  background: #FFF;
}
.hotspot--custom-icon .hotspot__title {
  display: none;
}
.hotspot--init {
  opacity: 0;
}
.hotspot--tapped {
  height: 144px;
  margin: -72px 0px 0px -72px;
  width: 144px;
}
.hotspot--tapped .hotspot__icon--nav {
  transform: rotate(90deg);
}
.hotspot--tapped .hotspot__preview {
  opacity: 1;
}
.hotspot--tapped .hotspot__shape {
  border: 6px solid #af1a1c;
}
.hotspot--tapped .hotspot__title {
  opacity: 1;
  top: -60px;
}
@media (hover: hover) and (pointer: fine) {
  .hotspot:hover.hotspot--traversal {
    height: 144px;
    margin: -72px 0px 0px -72px;
    width: 144px;
  }
  .hotspot:hover.hotspot--traversal .hotspot__icon--nav {
    transform: rotate(90deg);
  }
  .hotspot:hover.hotspot--traversal .hotspot__preview {
    opacity: 1;
  }
  .hotspot:hover.hotspot--traversal .hotspot__shape {
    border: 6px solid #af1a1c;
  }
  .hotspot:hover.hotspot--traversal .hotspot__title {
    opacity: 1;
    top: -60px;
  }
  .hotspot:hover.hotspot--custom-icon .hotspot__shape {
    border: 5px solid #FFF;
    height: 36px;
    width: 36px;
  }
}

.landing {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 100%;
  position: absolute;
  width: 100%;
  backdrop-filter: blur(25px);
  background: rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
.landing__carousel {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  height: 270px;
  overflow-x: hidden;
}
@media (min-width: 1025px) {
  .landing__carousel {
    margin: 50px 0px 24px;
    width: 540px;
  }
}
@media (max-width: 1024px) {
  .landing__carousel {
    width: 100vw;
  }
}
@media (min-width: 1025px) {
  .landing__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .landing__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    gap: 10px;
    height: calc(100dvh - 40px);
    padding: 20px 0px;
  }
}
.landing__controls {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
}
.landing__controls--disabled {
  opacity: 0.5;
  pointer-events: none !important;
}
.landing__controls--disabled * {
  pointer-events: none !important;
}
.landing__dot {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  height: 21px;
  width: 21px;
}
.landing__dot__inside {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  border: 2px solid #FFF;
  border-radius: 18px;
  box-shadow: 0 0 4px 3px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  height: 18px;
  width: 18px;
}
.landing__dot__inside:after {
  background: #FFF;
  border-radius: 6px;
  content: "";
  height: 6px;
  opacity: 0;
  width: 6px;
}
.landing__dot--selected .landing__dot__inside {
  border: 3px solid #FFF;
}
.landing__dot--selected .landing__dot__inside:after {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .landing__dot:hover .landing__dot__inside {
    border: 3px solid #FFF;
  }
  .landing__dot:hover .landing__dot__inside:after {
    opacity: 1;
  }
}
.landing__dots {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
}
.landing__elements {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0px;
}
.landing__element {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 14px;
  flex-shrink: 0;
  height: 260px;
  outline: 4px solid rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
@media (min-width: 1025px) {
  .landing__element {
    width: 420px;
  }
}
@media (max-width: 1024px) {
  .landing__element {
    width: calc(100vw - 20px);
  }
}
.landing__element img {
  height: 126px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.landing__element__description {
  color: #A9A9A9;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}
.landing__element__text {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  gap: 10px;
  height: 100%;
  padding: 10px 10px 24px;
  text-align: center;
  width: 100%;
}
.landing__element__title {
  font-size: 17px;
  font-weight: 500;
}
.landing__element__subtitle {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  font-size: 10px;
  font-weight: 400;
  padding: 8px 10px;
}
.landing__element--base .landing__element__subtitle {
  display: none;
}
@media (min-width: 1025px) {
  .landing__logo {
    position: absolute;
    right: 62px;
    top: 45px;
    width: 140px;
  }
}
@media (max-width: 1024px) {
  .landing__logo {
    width: 120px;
  }
}
.landing__logo img {
  width: 100%;
}
.landing__prev img {
  margin-left: -2px;
  transform: scaleX(-1);
}
.landing__next img {
  margin-left: 2px;
}
.landing__prev, .landing__next {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  border-radius: 40px;
  height: 40px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  width: 40px;
}
@media (min-width: 1025px) {
  .landing__prev, .landing__next {
    background: rgba(0, 0, 0, 0.4);
    outline: 4px solid rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 1024px) {
  .landing__prev, .landing__next {
    background: #AF1A1C;
  }
}
.landing__prev img, .landing__next img {
  height: 16px;
  user-select: none;
}
@media (hover: hover) and (pointer: fine) {
  .landing__prev:hover, .landing__next:hover {
    background: #AF1A1C;
  }
}
.landing__prev:active, .landing__next:active {
  background: #AF1A1C;
}
.landing__start {
  border-radius: 54px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .landing__start {
    font-size: 20px;
    margin-top: 54px;
    padding: 20px 52px;
  }
}
@media (max-width: 1024px) {
  .landing__start {
    font-size: 18px;
    padding: 13px 36px;
  }
}
.landing__subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}
.landing__text {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
@media (min-width: 1025px) {
  .landing__text {
    max-width: 50vw;
  }
}
@media (max-width: 1024px) {
  .landing__text {
    padding: 0px 24px;
  }
}
.landing__title {
  text-align: center;
}
@media (min-width: 1025px) {
  .landing__title {
    font-size: 40px;
    font-weight: 700;
  }
}
@media (max-width: 1024px) {
  .landing__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    padding: 0px 40px;
  }
}
.landing .lang-menu {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-radius: 100%;
  padding-bottom: 2px;
}
@media (min-width: 1025px) {
  .landing .lang-menu {
    bottom: 50px;
    height: 46px;
    left: 64px;
    position: absolute;
    width: 48px;
  }
}
@media (max-width: 1024px) {
  .landing .lang-menu {
    height: 38px;
    width: 40px;
  }
}

.landing-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}
.landing-hidden * {
  opacity: 0 !important;
  pointer-events: none !important;
}

.lang-menu div:not(:first-of-type) {
  display: none;
}
.lang-menu__item {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-radius: 100%;
  height: 100%;
  width: 100%;
}

.link {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #AF1A1C;
  border-radius: 28px;
  box-sizing: border-box;
  gap: 10px;
  padding: 40px;
  pointer-events: all;
  position: absolute;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  z-index: 6;
}
@media (min-width: 1025px) {
  .link {
    bottom: 90px;
    left: 32px;
    max-width: 336px;
  }
}
@media (max-width: 1024px) {
  .link {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: calc(100vw - 56px);
  }
}
.link__close {
  cursor: pointer;
  pointer-events: all;
  border-radius: 100%;
  padding: 9px;
  position: absolute;
  right: 8px;
  top: 8px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  z-index: 3;
}
@media (hover: hover) and (pointer: fine) {
  .link__close:hover {
    background: rgba(0, 0, 0, 0.2);
  }
}
.link__subtitle {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}
.link__subsubtitle {
  font-size: 10px;
  font-weight: 400;
  margin: 10px 0px -8px;
}
.link__success {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #AF1A1C;
  border-radius: 28px;
  gap: 10px;
  height: 100%;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  width: 100%;
  z-index: 2;
}
.link__success__title {
  font-size: 18px;
  font-weight: 700;
}
.link__success__subtitle {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}
.link__success img {
  margin-top: 24px;
}
.link__title {
  font-size: 18px;
  font-weight: 700;
}
.link input {
  background: #FFF;
  border: none;
  border-radius: 40px;
  box-sizing: border-box;
  color: #2A2A2A;
  padding: 8px 16px;
  width: 100%;
}
.link .button {
  background-color: transparent;
  border: 2px solid #FFF;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  margin: 30px 0px 0px;
  outline: transparent;
  padding: 9px 30px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
@media (hover: hover) and (pointer: fine) {
  .link .button:hover {
    background: #FFF !important;
    color: #AF1A1C;
  }
}

.logo {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  position: relative;
}
.logo img {
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
@media (min-width: 1025px) {
  .logo img {
    position: absolute;
    width: 140px;
  }
}
.logo img:nth-of-type(2) {
  filter: brightness(0) saturate(100%) invert(13%) sepia(91%) saturate(3972%) hue-rotate(350deg) brightness(86%) contrast(92%);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .logo:hover img:nth-of-type(1) {
    opacity: 0;
  }
  .logo:hover img:nth-of-type(2) {
    opacity: 1;
  }
}

.map-container {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 100%;
  position: absolute;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  width: 100vw;
  z-index: 8;
}
@media (max-width: 1024px) {
  .map-container {
    height: calc(100dvh - 20px);
    overflow: hidden;
    position: absolute;
    top: 10px;
  }
}
.map-container .map {
  border-radius: 24px;
  pointer-events: all;
}
@media (min-width: 1025px) {
  .map-container .map {
    height: calc(100dvh - 50px);
    width: calc(100vw - 50px);
  }
}
@media (max-width: 1024px) {
  .map-container .map {
    height: calc(100dvh - 20px);
    width: calc(100dvw - 20px);
  }
}
.map-container .map__close {
  border-radius: 24px;
  padding: 13px;
  position: absolute;
  z-index: 2;
}
@media (min-width: 1025px) {
  .map-container .map__close {
    right: 30px;
    top: 30px;
  }
}
@media (max-width: 1024px) {
  .map-container .map__close {
    background: #AF1A1C;
    padding: 9px;
    right: 10px;
    top: 10px;
    width: 26px;
  }
}
.map-container .map__marker {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 41px;
  margin-top: -20px;
}
.map-container .map__marker svg path {
  fill: #AF1A1C;
}
.map-container .map__marker svg path:nth-of-type(2) {
  stroke: #FFF;
}
.map-container .map__marker__title {
  background: #AF1A1C;
  border-radius: 24px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 18px;
  position: absolute;
  top: -44px;
  white-space: nowrap;
}
.map-container .map .mapboxgl-ctrl {
  display: none;
}

.modal {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  pointer-events: all;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  width: 390px;
}
.modal__close {
  cursor: pointer;
  pointer-events: all;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  outline: transparent;
  padding: 9px;
  position: absolute;
  right: 13px;
  top: 22px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  z-index: 3;
}
@media (min-width: 1025px) {
  .modal__close {
    display: none;
  }
}
.modal__content {
  align-items: start;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background: #AF1A1C;
  border-radius: 10px;
  box-sizing: border-box;
  height: 100%;
  overflow: hidden;
  padding: 24px 10px 20px 20px;
  width: 100%;
  z-index: 1;
}
.modal__cta {
  align-items: start;
  display: flex;
  flex-direction: row;
  justify-content: start;
}
.modal__mask {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(1px);
  height: 0%;
  left: 0px;
  position: fixed;
  top: 0px;
  width: 0%;
  z-index: 0;
}
.modal__scrollable {
  box-sizing: border-box;
  height: 100%;
  margin-top: 12px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 20px;
  width: 100%;
}
@media (min-width: 1025px) {
  .modal__scrollable > img {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .modal__scrollable > img {
    width: calc(100vw - 52px);
  }
}
.modal__scrollable p {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin: 12px 0px;
}
.modal h1 {
  font-size: 18px;
  font-weight: 700;
  line-height: 19px;
  max-width: 80%;
}
.modal--hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}
.modal--hidden * {
  pointer-events: none !important;
}

@media (min-width: 1025px) {
  .nav-section {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }
}
@media (max-width: 1024px) {
  .nav-section {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.nav {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 0px 5px 0px 10px;
  pointer-events: all;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  width: 380px;
  z-index: 4;
}
@media (min-width: 1025px) {
  .nav {
    border-radius: 24px;
    left: 32px;
    top: 32px;
  }
}
@media (max-width: 1024px) {
  .nav {
    box-sizing: border-box;
    height: 100dvh;
    left: 0px;
    padding: 80px 0px 0px;
    top: 0px;
    width: 100vw;
  }
}
.nav__close {
  cursor: pointer;
  pointer-events: all;
  border-radius: 100%;
  padding: 9px;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  z-index: 3;
}
@media (min-width: 1025px) {
  .nav__close {
    right: 16px;
    top: 22px;
  }
}
@media (max-width: 1024px) {
  .nav__close {
    background: #AF1A1C;
    right: 14px;
    top: 14px;
  }
}
.nav__group {
  border-radius: 20px;
  flex-shrink: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85) 0.3s;
  width: 100%;
}
.nav__group__title {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
  pointer-events: all;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
  padding: 19px 3px 19px 14px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  width: 100%;
  /*
  @media (hover: hover) and (pointer: fine) {
      &:hover {
          img {
              border: 2px solid $color-2;
              transform: rotate(-90deg) scale(0.7);
          }
      }
  }
  */
}
.nav__group__title:after {
  background: rgba(0, 0, 0, 0.2);
  height: 1px;
  content: "";
  left: 13px;
  opacity: 0;
  position: absolute;
  top: 60px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  width: calc(100% - 26px);
}
.nav__group__title img {
  border: 2px solid transparent;
  border-radius: 100%;
  margin-right: 4px;
  padding: 5px 9px;
  transform: rotate(90deg) scale(0.7);
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
.nav__group--expanded {
  background: #AF1A1C;
  color: #FFF;
  transition: none;
}
.nav__group--expanded .nav__list--sub {
  max-height: calc(100dvh - 200px);
  padding-bottom: 10px;
}
.nav__group--expanded .nav__group__title {
  background: transparent;
}
.nav__group--expanded .nav__group__title:after {
  opacity: 1;
}
.nav__group--expanded .nav__group__title img {
  transform: rotate(-90deg) scale(0.7);
}
.nav__group--current .nav__group__title img {
  border: 2px solid #FFF;
}
@media (hover: hover) and (pointer: fine) {
  .nav__group:hover .nav__group__title {
    background: #AF1A1C;
    color: #FFF;
  }
}
.nav__item {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
  pointer-events: all;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 14px 12px 24px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
  width: 100%;
}
@media (max-width: 1024px) {
  .nav__item {
    position: relative;
  }
}
@media (hover: hover) and (pointer: fine) {
  .nav__item:hover {
    background: rgba(0, 0, 0, 0.2);
  }
}
.nav__item img.nav-visited {
  display: none;
}
.nav__item img.nav-unvisited {
  display: block;
}
.nav__item--selected {
  background: rgba(0, 0, 0, 0.2);
}
.nav__item--visited img.nav-visited {
  display: block;
}
.nav__item--visited img.nav-unvisited {
  display: none;
}
.nav__list-container {
  box-sizing: border-box;
  margin: 26px 0px 10px;
  overflow-y: auto;
}
@media (min-width: 1025px) {
  .nav__list-container {
    max-height: calc(100dvh - 220px);
  }
}
@media (max-width: 1024px) {
  .nav__list-container {
    max-height: calc(100dvh - 180px);
    position: absolute;
    top: 130px;
    width: 100vw;
    z-index: 2;
  }
}
.nav__list {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.nav__list--main {
  gap: 4px;
}
@media (min-width: 1025px) {
  .nav__list--main {
    padding-right: 5px;
  }
}
@media (max-width: 1024px) {
  .nav__list--main {
    padding: 0px 10px;
  }
}
.nav__list--sub {
  max-height: 0px;
  overflow-y: hidden;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
.nav__shape {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  height: 100dvh;
  left: 0px;
  position: absolute;
  top: 80px;
  width: 100vw;
  z-index: 1;
}
.nav__title {
  font-size: 28px;
  font-weight: 500;
  margin: 24px 0px 0px 24px;
}
@media (max-width: 1024px) {
  .nav__title {
    position: absolute;
    z-index: 2;
  }
}
.nav .admission-button {
  border-radius: 24px;
  left: 14px;
  position: absolute;
  top: 14px;
  width: fit-content;
}
@media (min-width: 1025px) {
  .nav .admission-button {
    padding: 4px 16px 4px 5px;
  }
}
@media (max-width: 1024px) {
  .nav .admission-button {
    padding-right: 16px;
  }
}
.nav .admission-button div {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #AF1A1C;
  border-radius: 100%;
  margin-right: 10px;
  padding: 9px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}

.scene-info {
  backdrop-filter: blur(10px);
}
@media (min-width: 1025px) {
  .scene-info {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin-bottom: 4px;
    max-width: 350px;
    outline: 5px solid rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 1024px) {
  .scene-info {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 27px;
    box-sizing: border-box;
    margin-top: 5px;
    padding: 18px;
    width: 100%;
  }
}
.scene-info__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  pointer-events: all;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
@media (min-width: 1025px) {
  .scene-info__description {
    margin: 0px;
    max-height: 0px;
    overflow-y: auto;
    padding: 0px 18px;
  }
}
@media (max-width: 1024px) {
  .scene-info__description {
    margin: 18px -10px 10px 0px;
    max-height: 36px;
    overflow-y: hidden;
    padding-right: 16px;
  }
}
.scene-info__description a {
  text-decoration: underline;
}
.scene-info__description p {
  margin: 5px 0px;
}
.scene-info__description ul {
  margin-left: 5px;
}
.scene-info__description ul li {
  margin: 4px 0px;
}
.scene-info__title {
  font-size: 18px;
}
@media (min-width: 1025px) {
  .scene-info__title {
    font-weight: 500;
  }
}
@media (max-width: 1024px) {
  .scene-info__title {
    font-weight: 700;
  }
}
.scene-info__toggle {
  cursor: pointer;
  pointer-events: all;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: -10px;
  padding: 8px 0px;
  text-align: center;
}
.scene-info .button {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  justify-content: space-between;
  outline: transparent !important;
  padding: 14px 22px;
}
@media (min-width: 1025px) {
  .scene-info .button {
    background: #af1a1c !important;
    padding: 19px 22px;
  }
}
@media (max-width: 1024px) {
  .scene-info .button {
    padding: 14px 22px;
  }
}
.scene-info .button img {
  transform: rotate(-90deg);
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
.scene-info .button span {
  margin-right: 32px;
}
@media (hover: hover) and (pointer: fine) {
  .scene-info .button:hover img {
    transform: rotate(-90deg) translateX(5px);
  }
}
.scene-info--expanded .scene-info__description {
  max-height: 300px;
}
@media (min-width: 1025px) {
  .scene-info--expanded .scene-info__description {
    margin: 10px 0px 20px;
    padding: 2px 18px 4px;
  }
}
@media (max-width: 1024px) {
  .scene-info--expanded .scene-info__description {
    overflow-y: auto;
  }
}
.scene-info--expanded .button img {
  transform: rotate(90deg);
}
@media (hover: hover) and (pointer: fine) {
  .scene-info--expanded .button:hover img {
    transform: rotate(90deg) translateX(5px);
  }
}

.shadow {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.shadow--bottom {
  background: linear-gradient(0deg, rgba(51, 51, 51, 0.5) 0%, rgba(51, 51, 51, 0) 100%);
  bottom: 0px;
  height: 120px;
}
.shadow--top {
  background: linear-gradient(180deg, rgba(51, 51, 51, 0.5) 0%, rgba(51, 51, 51, 0) 100%);
  height: 120px;
  top: 0px;
}

@media (min-width: 1025px) {
  .steppers {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    gap: 4px;
    padding: 4px;
  }
}
@media (max-width: 1024px) {
  .steppers {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}
.steppers__next, .steppers__prev {
  cursor: pointer;
  pointer-events: all;
  border-radius: 100%;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
@media (min-width: 1025px) {
  .steppers__next, .steppers__prev {
    padding: 8px 9px 6px;
  }
}
@media (max-width: 1024px) {
  .steppers__next, .steppers__prev {
    background-color: rgba(0, 0, 0, 0.45);
    padding: 8px 9px 6px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .steppers__next:hover, .steppers__prev:hover {
    background: #AF1A1C;
  }
}
.steppers__prev img {
  transform: scaleX(-1);
}

.tour-controls {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
@media (min-width: 1025px) {
  .tour-controls {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-radius: 24px;
    box-sizing: border-box;
    gap: 4px;
    height: 48px;
    padding: 4px;
  }
}
@media (max-width: 1024px) {
  .tour-controls {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 40px;
    left: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
  }
}
@media (max-width: 1024px) {
  .tour-controls__admission {
    background: #AF1A1C;
    border-radius: 100%;
    padding: 9px 9px 5px !important;
  }
}
.tour-controls__admission, .tour-controls__fullscreen, .tour-controls__home, .tour-controls__link, .tour-controls__map {
  cursor: pointer;
  pointer-events: all;
  padding: 9px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
@media (min-width: 1025px) {
  .tour-controls__admission, .tour-controls__fullscreen, .tour-controls__home, .tour-controls__link, .tour-controls__map {
    border-radius: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .tour-controls__admission:hover, .tour-controls__fullscreen:hover, .tour-controls__home:hover, .tour-controls__link:hover, .tour-controls__map:hover {
    background: #AF1A1C;
  }
}
.tour-controls__gotoweb {
  border-radius: 40px;
  outline: transparent !important;
}
@media (min-width: 1025px) {
  .tour-controls__gotoweb {
    background: rgba(0, 0, 0, 0.2);
    padding-right: 9px;
  }
}
@media (max-width: 1024px) {
  .tour-controls__gotoweb {
    background: #AF1A1C;
  }
}
@media (hover: hover) and (pointer: fine) {
  .tour-controls__gotoweb:hover {
    background: rgba(0, 0, 0, 0.2) !important;
  }
  .tour-controls__gotoweb:hover img {
    background: #AF1A1C;
  }
}
.tour-controls__gotoweb img {
  padding: 9px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
@media (min-width: 1025px) {
  .tour-controls__gotoweb img {
    border-radius: 100%;
    margin-right: 6px;
  }
}
.tour-controls--hidden {
  left: -40px;
}
.tour-controls .lang-menu {
  background: transparent;
  border-radius: 100%;
  height: 38px;
  outline: transparent;
  padding-bottom: 2px;
  width: 40px;
}
.tour-controls img {
  overflow: visible;
}

@media (max-width: 1024px) {
  .tour-gui--gt .admission-button {
    align-items: center;
    display: flex !important;
    justify-content: center;
  }
}
.tour-gui--gt .gt-controls, .tour-gui--gt .gt-exit, .tour-gui--gt .gt-header {
  display: flex !important;
}
.tour-gui--gt .gt-exit {
  display: flex !important;
}
@media (max-width: 1024px) {
  .tour-gui--gt .gt-header {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.tour-gui--gt .nav-section, .tour-gui--gt .nav-button, .tour-gui--gt .gt-button {
  display: none;
}
.tour-gui--gt .logo {
  display: none;
}
@media (max-width: 1024px) {
  .tour-gui--gt .top-section {
    background: rgba(0, 0, 0, 0.45);
    grid-template-columns: 60px minmax(0, 1fr) 60px;
    padding: 8px 0px;
  }
}
@media (max-width: 1024px) {
  .tour-gui--gt .top-section__left, .tour-gui--gt .top-section__right {
    place-items: center;
  }
}
@media (max-width: 1024px) {
  .tour-gui--gt .top-section .button div {
    margin-right: 0px;
  }
}
@media (max-width: 1024px) {
  .tour-gui--gt .tour-controls {
    display: none;
  }
}
.tour-gui--gt .tour-controls__map, .tour-gui--gt .tour-controls__link, .tour-gui--gt .lang-menu, .tour-gui--gt .tour-controls__gotoweb, .tour-gui--gt .steppers {
  display: none;
}

.top-section {
  position: absolute;
  z-index: 3;
}
@media (min-width: 1025px) {
  .top-section {
    align-items: center;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 32px 32px 0px;
    top: 0px;
    width: 100%;
  }
  .top-section > :nth-child(1) {
    justify-self: start;
  }
  .top-section > :nth-child(2) {
    justify-self: center;
  }
  .top-section > :nth-child(3) {
    justify-self: end;
  }
}
@media (max-width: 1024px) {
  .top-section {
    align-items: stretch;
    border-radius: 28px;
    display: grid;
    left: 12px;
    grid-template-columns: 1fr 0 1fr;
    top: 12px;
    width: calc(100vw - 24px);
  }
}
.top-section__left {
  display: grid;
  place-items: start;
}
.top-section__right {
  display: grid;
  place-items: end;
}
@media (max-width: 1024px) {
  .top-section__center {
    display: grid;
    grid-template-rows: auto auto;
    min-width: 0;
    place-items: center;
    text-align: center;
  }
}
.top-section .button {
  border-radius: 24px;
}
@media (min-width: 1025px) {
  .top-section .button {
    padding: 4px 16px 4px 5px;
  }
}
@media (max-width: 1024px) {
  .top-section .button {
    padding-right: 16px;
  }
}
.top-section .button div {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-radius: 100%;
  margin-right: 8px;
  padding: 9px;
  transition: all 0.3s cubic-bezier(0.85, 0.125, 0.125, 0.85);
}
@media (hover: hover) and (pointer: fine) {
  .top-section .button:hover {
    background: rgba(0, 0, 0, 0.5) !important;
  }
  .top-section .button:hover div {
    background: #af1a1c;
  }
}
@media (max-width: 1024px) {
  .top-section .admission-button {
    background: #AF1A1C;
    display: none;
    outline: transparent;
    padding: 0px;
    width: fit-content;
  }
}
@media (max-width: 1024px) {
  .top-section .gt-exit {
    outline: transparent;
    padding: 0px;
    width: fit-content;
  }
}
.top-section .gt-exit, .top-section .gt-header {
  display: none;
}
.top-section .gt-header {
  pointer-events: none !important;
}
.top-section .gt-subtitle {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 4px;
  padding: 6px 10px;
  width: fit-content;
}
@media (min-width: 1025px) {
  .top-section .gt-title {
    font-size: 24px;
    font-weight: 500;
  }
}
@media (max-width: 1024px) {
  .top-section .gt-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
  }
}
.top-section .home-button {
  padding: 0px;
}
.top-section .home-button div {
  margin: 0px;
  padding: 12px 13px 14px;
}

@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
    scrollbar-color: #AF1A1C #343434;
  }
}
*::-webkit-scrollbar {
  height: 1px;
  width: 2px;
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.65);
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.65);
  border: none;
  border-radius: 0px;
}

.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}
.hidden * {
  pointer-events: none !important;
}