* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: rgb(20, 20, 20);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

#container_load {
  background-color: #000;
  z-index: 1;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  outline: none;
  transition: opacity 1.3s;
  -webkit-transition: opacity 1.3s;
}

#loader-progress-wrapper {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 40px;
  background: #000;
  border: none;
}

#loader-progress-progress {
  top: 0;
  width: 0;
  height: 40px;
  background: #ff1e00;
  border: none;
}

#progresspercent {
  margin: auto;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  color: black;
  border: none;
}

.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
}

#camtext {
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: white;
  position: fixed;
  top: 80px;
  left: 20px;
  opacity: 0;
  pointer-events: none;
}

#start {
  height: 30%;
}

#first {
  height: 100vh;
}

#second {
  height: 100vh;
}

#third {
  height: 100vh;
}

#forth {
  height: 140vh;
}

#icon-scroll,
#icon-scroll:before {
  position: absolute;
  bottom: 15%;
  left: 50%;
}

#icon-scroll {
  opacity: 1;
  position: fixed;
  width: 40px;
  height: 70px;
  margin-left: -20px;
  bottom: 5%;
  margin-top: -35px;
  background-color: rgba(255, 125, 0, 0.2);
  box-shadow: inset 0 0 0 2px #ff1e00;
  border-radius: 25px;
}

#icon-scroll:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ff1e00;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: scroll;
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(46px);
  }
}


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