html {
  font-size: 62.5%;
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

video {
  pointer-events: none;
}

.arjs-loader {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arjs-loader div {
  text-align: center;
  font-size: 1.25em;
  color: white;
}

#test-overlay {
  width: 100vw;
  height: 100vh;
  background-color: aqua;
}

.hidden {
  display: none;
}

.language_select {
  position: relative;
  width: 100vw;
  background-color: #ffffff;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.language_select .top_logo {
  width: 200px;
  margin: 20px auto 40px auto;
}
.language_select .title {
  width: 250px;
  margin: 0px auto 60px auto;
}
.language_select .laguage_select-container {
  margin: 10px;
  margin-bottom: 30%;
}
.language_select .laguage_select-container h3 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
}
.language_select .laguage_select-container ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  padding-left: 0;
}
.language_select .laguage_select-container ul li {
  width: 40%;
  text-align: center;
  list-style: none;
  border: #000000 1px solid;
  padding: 5px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}
.language_select .laguage_select-container ul li:hover {
  color: #897e45;
  border: solid 1px #897e45;
}
.language_select .laguage_select-container ul li:active {
  color: #897e45;
  border: solid 1px #897e45;
}

.loader {
  position: absolute;
  z-index: 20000;
}
.loader #debug {
  position: relative;
  z-index: 20001;
}

.header {
  position: fixed;
  z-index: 3000;
  background-color: #ffffff;
  width: 100vw;
  text-align: center;
}
.header-logo {
  width: 150px;
  text-align: center;
  margin: 10px auto 0px auto;
  position: relative;
  z-index: 3000;
}
.header-container {
  padding: 1.5%;
  padding-top: 70px;
  margin-bottom: 5px;
  background-color: #ffffff;
  position: relative;
  z-index: 500;
}
.header-container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header-container ul div {
  width: 100vw;
}
.header-container ul li {
  width: 32%;
  list-style: none;
  border: #887E45 2px solid;
  border-radius: 20px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 30px;
  margin-bottom: 10px;
}
.header-container ul li:nth-child(1) {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.header-container ul li img {
  margin-right: 5px;
  pointer-events: none;
}
.header-container ul li p {
  color: #887E45;
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -10%;
  line-height: 1;
  pointer-events: none;
}

.selected {
  background-color: #887E45;
}
.selected img {
  filter: brightness(100) saturate(0%);
}
.selected p {
  color: #ffffff !important;
}

.base {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 100;
}

.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: absolute;
  z-index: 9000;
  display: flex;
  align-items: center;
  align-self: center;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.lds-spinner {
  color: #999999;
  position: relative;
  width: 80px;
  height: 80px;
  margin: auto;
  z-index: 9000;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
  position: relative;
  z-index: 9000;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #887e46;
  z-index: 9000;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#particle-canvas {
  position: absolute;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.main_video_root {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 3100;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.main_video {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 3101;
}

.guide {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  justify-content: center;
  position: absolute;
  z-index: 100;
}
.guide p {
  color: #fff;
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */