* {
  padding: 0;
  margin: 0;
  outline: none;
}

html {
  height: 100vh;
  overflow: hidden;
}

@font-face {
  font-family: "myriad-pro";
  src: url("./fonts/MyriadPro.OTF");
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  font-family: "myriad-pro", sans-serif;
}

ul {
  list-style: none;
}

a,
li {
  text-decoration: none;
  color: white;
}

/* audio */
audio {
  width: 100%;
  height: 100vh;
  position: absolute;
}

.fullscreen {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  z-index: 990;
}

.fullscreen .popupbox {
  width: 60%;
  height: 60vh;
  position: absolute;
  background-color: white;
  border-radius: 10px;
  left: 20%;
  top: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fullscreen .popupbox .lowerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fullscreen .popupbox .lowerbox button {
  position: relative;
  top: 50%;
  height: 1.5rem;
  width: 150%;
  cursor: pointer;
  border: gray;
}

.warning {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 999;
}

.phone {
  height: 50px;
  width: 100px;
  border: 3px solid white;
  border-radius: 10px;
  -webkit-animation: rotate 1.5s ease-in-out infinite alternate;
          animation: rotate 1.5s ease-in-out infinite alternate;
  /* display: none; */
}

.message {
  color: white;
  font-size: 1em;
  margin-top: 40px;
  /* display: none; */
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

@media only screen and (min-width: 450px) {
  .warning {
    display: none;
  }
}

/* Page */
.page {
  height: 100vh;
  width: 100%;
  position: absolute;
  display: none;
}

@-webkit-keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.page iframe {
  height: 100vh;
  width: 100%;
  z-index: 1;
}

.page .close {
  width: 2vw;
  height: 1vh;
  position: absolute;
  top: 2%;
  right: 1%;
  cursor: pointer;
  display: block;
  font-size: 2vw;
  color: white;
  z-index: 10;
  mix-blend-mode: difference;
}

/* Loading Page  */
.loading .loading_video {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  -webkit-animation: loading_vid 6.6s normal forwards ease-out;
  animation: loading_vid 6.6s normal forwards ease-out;
}

@-webkit-keyframes loading_vid {
  0% {
    opacity: 1;
    z-index: 100;
  }
  20% {
    opacity: 1;
    /* z-index: 3; */
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -2;
  }
}

@keyframes loading_vid {
  0% {
    opacity: 1;
    z-index: 100;
  }
  20% {
    opacity: 1;
    /* z-index: 3; */
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -2;
  }
}

/* Onboarding Page */
.onboarding {
  z-index: 5;
}

.onboarding_content {
  display: -ms-grid;
  display: grid;
  gap: 5%;
  -ms-grid-rows: 2.5fr 3fr 1.5fr;
      grid-template-rows: 2.5fr 3fr 1.5fr;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 5;
  height: 100vh;
}

.onboarding_content .onboarding-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.onboarding_content .logo_container {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.onboarding_content .logo_container img {
  height: 20%;
}

.onboarding_content .onboarding_text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: lighten;
}

.onboarding_content .onboarding_text div {
  background-image: url("./0_OnboardingPage/SUCCESS.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 100%;
  width: 60%;
}

.onboarding_content .onboarding_text div:hover {
  background-image: url("./0_OnboardingPage/SUCCESS SOLID.png");
}

.onboarding_content .logoWatermark
.explore_button {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.onboarding_content .bg-2 {
  background: rgba(241, 241, 241, 0);
}

.onboarding_content .bg-2 .btn-2 button {
  color: black;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  font-family: "myriad-pro", sans-serif;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.onboarding_content .bg-2 .btn-2 button:hover {
  background: transparent;
  color: white;
}

.onboarding_content .bg-2 .btn-2 button:hover:before {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  width: 100%;
}

.onboarding_content .bg-2 .btn-2 button:hover:after {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  width: 100%;
}

.onboarding_content .bg-2 .btn-2 button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0px;
  width: 0px;
  height: 1px;
  background: white;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.onboarding_content .bg-2 .btn-2 button:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0px;
  width: 0px;
  height: 1px;
  background: white;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  top: inherit;
  left: inherit;
  bottom: 0;
  right: 0;
}

.onboarding_content .btn {
  display: block;
}

.onboarding_content button {
  cursor: pointer;
  overflow: hidden;
  outline: none;
  color: #fff;
  position: relative;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  -o-object-position: center;
     object-position: center;
  font-family: "myriad-pro", sans-serif;
  font-size: 0.9vw;
  width: 8vw;
  height: 4vh;
}

.onboarding_content button a {
  text-decoration: none;
}

/* Home Page */
.home {
  /* Background video */
}

.home * {
  font-size: 1vw;
  line-height: 8vh;
}

.home .bg_video {
  height: 100vh;
  width: 100%;
  background-color: black;
  background-size: cover;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}

.home .bg_video video {
  height: 125vh;
  top: 0;
  width: 100%;
  background-size: cover;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Menu Bar */
.menu_bar {
  width: 100%;
  height: 7vh;
  bottom: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  z-index: -1;
  font-size: 0.7vw;
  letter-spacing: 0.5em;
  font-weight: 700;
}

.menu_bar .left_container {
  width: 20%;
}

.menu_bar .left_container li {
  background-image: url("./0_OnboardingPage/Sugee Logo.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 60%;
  cursor: pointer;
}

.menu_bar .no_pointer {
  pointer-events: none;
}

.menu_bar .center_container {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.menu_bar .center_container li {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  text-transform: uppercase;
  color: white;
  text-align: center;
  padding-top: 2.1%;
  cursor: pointer;
}

.menu_bar .right_container {
  width: 20%;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.menu_bar .right_container .home_btn {
  width: 40%;
  text-transform: uppercase;
  color: white;
  text-align: center;
  padding-top: 5%;
  cursor: pointer;
}

.menu_bar .right_container #menu-container {
  width: 30%;
}

.menu_bar .right_container #menu-container .menu-list {
  height: 12vh;
  width: 4vw;
  right: 2.5vw;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu_bar .right_container #menu-container .toggle {
  height: 50%;
  width: 100%;
  text-align: center;
  bottom: 0;
}

/* Page Border */
.page_border {
  width: 100%;
  height: 100vh;
  position: absolute;
  pointer-events: none;
  z-index: 99;
  mix-blend-mode: difference;
}

.border_centre .hor {
  width: 30vw;
  height: 1px;
  border-radius: 10px;
  background-color: white;
  position: absolute;
}

.border_centre .hor:nth-child(1) {
  left: 20vw;
  top: 1.5vh;
}

.border_centre .hor:nth-child(2) {
  left: 50vw;
  top: 1.5vh;
}

.border_centre .hor:nth-child(3) {
  left: 20vw;
  bottom: 1.5vh;
}

.border_centre .hor:nth-child(4) {
  left: 50vw;
  bottom: 1.5vh;
}

.border_centre .ver {
  width: 1px;
  height: 30vh;
  border-radius: 10px;
  background-color: white;
  position: absolute;
}

.border_centre .ver:nth-child(5) {
  left: 1.5vh;
  top: 20vh;
}

.border_centre .ver:nth-child(6) {
  left: 1.5vh;
  top: 50vh;
}

.border_centre .ver:nth-child(7) {
  right: 1.5vh;
  top: 20vh;
}

.border_centre .ver:nth-child(8) {
  right: 1.5vh;
  top: 50vh;
}

.anim_left {
  -webkit-animation: left ease-in-out 2s;
          animation: left ease-in-out 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.anim_right {
  -webkit-animation: right ease-in-out 2s;
          animation: right ease-in-out 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.anim_top {
  -webkit-animation: top ease-in-out 2s;
          animation: top ease-in-out 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.anim_bottom {
  -webkit-animation: bottom ease-in-out 2s;
          animation: bottom ease-in-out 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-120%);
            transform: translateX(-120%);
  }
}

@keyframes left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-120%);
            transform: translateX(-120%);
  }
}

@-webkit-keyframes right {
  0% {
  }
  100% {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
}

@keyframes right {
  0% {
  }
  100% {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
}

@-webkit-keyframes top {
  0% {
  }
  100% {
    -webkit-transform: translateY(-90%);
            transform: translateY(-90%);
  }
}

@keyframes top {
  0% {
  }
  100% {
    -webkit-transform: translateY(-90%);
            transform: translateY(-90%);
  }
}

@-webkit-keyframes bottom {
  0% {
  }
  100% {
    -webkit-transform: translateY(90%);
            transform: translateY(90%);
  }
}

@keyframes bottom {
  0% {
  }
  100% {
    -webkit-transform: translateY(90%);
            transform: translateY(90%);
  }
}

/* Logo Watermark */
.logoWatermark {
  height: 80vh;
  width: 100%;
  position: absolute;
  top: 10vh;
  z-index: 100;
  pointer-events: none;
}

.logoWatermark img {
  height: 100%;
  width: 100%;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.1;
  z-index: 100;
}

/* Presence page */
/* Residence page */
.residence iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.residence_bgvid {
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.residence_bgvid #media-video {
  width: 100%;
  height: 100vh;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

.player-container {
  width: 50vw;
  height: 40px;
  position: absolute;
  left: 25vw;
  bottom: 0vh;
  z-index: 10;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.player-container .play-control {
  width: 10%;
  height: 40px;
  display: table;
  border-right: 1px solid #dddddd;
  cursor: pointer;
  float: left;
  color: white;
}

.player-container .play-control .play-button {
  vertical-align: middle;
  text-align: center;
  display: none;
}

.player-container .play-control .pause-button {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.player-container .play-control .play-control .fa {
  font-size: 0.1em;
}

.player-container .progress {
  width: 90%;
  height: 100%;
}

.player-container .progress .progress-background {
  position: absolute;
  width: 100%;
  height: 1.5px;
  background-color: white;
  margin-left: 20px;
  margin-top: 20px;
}

.player-container .progress .progress-over {
  position: absolute;
  width: 0;
  height: 1.5px;
  background-color: #1f5dcf;
  margin-left: 20px;
  margin-top: 20px;
}

.player-container .progress .progress-hidden {
  position: absolute;
  width: 100%;
  height: 40px;
  margin-left: 20px;
  cursor: pointer;
}

/* Amenities Page */
/* Surroundings Page */
.active {
  display: block;
  -webkit-animation: fadeInAnimation ease-in-out 1s;
          animation: fadeInAnimation ease-in-out 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}
/*# sourceMappingURL=style.css.map */