@font-face {
  font-family: "Helvetica_b";
  src: url("/fonts/Helvetica-Bold.ttf");
}
@font-face {
  font-family: "Helvetica_bo";
  src: url("/fonts/Helvetica-BoldOblique.ttf");
}
@font-face {
  font-family: "Helvetica";
  src: url("/fonts/Helvetica.ttf");
}
* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.a-enter-vr {
  display: none;
}

#loader {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: black;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  -webkit-animation: 1s loader 3s ease-in-out forwards;
          animation: 1s loader 3s ease-in-out forwards;
}
@-webkit-keyframes loader {
  0% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@keyframes loader {
  0% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -100%);
  }
}
#loader img {
  width: 100px;
  height: 100px;
  -webkit-animation: 1s blinking infinite;
          animation: 1s blinking infinite;
}
@-webkit-keyframes blinking {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blinking {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#loader p {
  font-size: 8px;
  font-family: "Helvetica";
  color: #fff;
  letter-spacing: 1em;
  text-indent: 1em;
  text-transform: uppercase;
  text-align: center;
}

#custom_cursor {
  width: auto;
  height: auto;
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#custom_cursor img {
  width: 30px;
  height: 30px;
}

#overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.631372549);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#overlay .overlay_inner {
  width: 100%;
  height: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-gap: 20px;
  position: relative;
}
#overlay .overlay_inner .logo {
  width: auto;
  height: auto;
}
#overlay .overlay_inner .logo img {
  width: 150px;
  height: auto;
}
#overlay .overlay_inner h1 {
  margin: 8px 0px 0px;
  overflow-wrap: break-word;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  text-align: left;
  letter-spacing: -0.01em;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: rgb(255, 255, 255);
  padding: 0px;
  max-width: 800px;
  font-family: "Helvetica";
  text-align: center;
}
#overlay .overlay_inner p {
  font-size: 17px;
  font-family: "Helvetica";
  color: #fff;
  text-align: center;
}
#overlay .overlay_inner button {
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap;
  padding: 10px 32px;
  border: 1px solid white;
  outline: none;
  border-radius: 55px;
  height: 55px;
  color: rgb(255, 255, 255);
  background: none;
  font-family: "Helvetica";
}
#overlay .overlay_inner button:hover {
  background-color: #fff;
  color: black;
}
#overlay .overlay_inner .directions {
  width: 100%;
  height: 100px;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#overlay .overlay_inner .directions .directions_inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 5%;
  grid-gap: 20px;
  -webkit-animation: blink 2s infinite;
          animation: blink 2s infinite;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#overlay .overlay_inner .directions .directions_inner img {
  width: 80px;
  height: auto;
}
#overlay .overlay_inner .directions .directions_inner p {
  font-size: 12px;
  font-family: "Helvetica";
  color: #fff;
}/*# sourceMappingURL=main.css.map */