@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");

/* Default styling overrides*/
html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
}

body {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

/* h1 {
  margin: 0px;
  padding: 2%;
} */

p {
  /* margin: 0px;
      max-width: 1000px; */
  line-height: 1.2em;
}

/* Loading Progress Bar Syling*/
#progress.finish {
  opacity: 0;
}

#progress {
  width: 0;
  height: 5px;
  position: fixed;
  z-index: 3;
  top: 0;
  background: #fff;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

/* Infospot sytling*/
.info-hotspot {
  max-width: 350px;
  max-height: 500px;
  border-radius: 3px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.info-hotspot-stuck {
  display: block !important;
}

.infospt-image {
  width: 100%;
  border-radius: 5px;
  opacity: 0.85;
}

.infospot-tab-button {
  width: 50px;
  height: auto;
  padding: 5px 10px 5px 0px;
  margin: 0px;
  border: 0px;
  background-color: transparent;
}

.infospot-tab-button-active {
  filter: hue-rotate(30deg);
}

.infospot-tab-button-img {
  width: 100%;
}

.infospot-tab-button-container {
  width: 100%;
  background-color: rgba(100, 100, 100, 0.8);
  display: flex;
  justify-content: center;
}

/* Intro text styling*/
.curtain {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: black;
  z-index: 1;
  transition: opacity 4s;
  /* transition-delay: 2s; */
  pointer-events: none;
}

.overlay-text {
  /* position: absolute;
      top: 0;
      left: 5%;
      height: 100%;
      width: 90%;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; */
  pointer-events: none;
  z-index: 5;
  font-family: "Open Sans", sans-serif;
  font-size: 2em;
  line-height: 1em;
  color: white;
}

.title {
  font-size: 1.5em;
  text-align: center;
  padding: 5px;
}

.subtitle {
  font-size: 1.5em;
}

.initial-text {
  transition: all 4s;
  transition-delay: 5s;
}

.secondary-text {
  opacity: 0;
}

.zero-opacity {
  opacity: 0;
}

.half-opacity {
  opacity: 0.5;
}

.animate-opacity {
  animation-name: opacity;
  animation-duration: 9s;
  animation-delay: 8s;
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Menu Styling */
.menu-container {
  position: absolute;
  display: flex;
  align-content: center;
  flex-direction: column;
  right: 65px;
  top: 60px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.5s;
  z-index: 550;
  transform: translateY(-100%);
  pointer-events: none;
}

.menu-container[data-visible="true"] {
  display: flex;
  align-content: center;
  flex-direction: column;
  opacity: 1;
  transition: opacity 1s, transform 0.5s;
  transform: translateY(0%);
  pointer-events: initial;
}

.hidden {
  right: -100px;
}

/* Menu Buttons*/

.mw-1000 {
  max-width: 1000px;
}

/* ----- Bootstrap modifications ----- */

/* .navbar {
  position: absolute;
  top: 0;
  left: 0;
}

.navbar-brand {
  z-index: 10;
} */
