*, *::before, *::after { box-sizing: border-box; }
body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #0a0a0a;
}

#main-content {
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro-overlay.hidden { display: none; }
.intro-play {
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 2rem);
}
.intro-play img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.intro-overlay video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hidden { display: none; }

.mobileview-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
}

.mobileview {
  height: calc(100vh - 6.66vh);
  width: 100%; 
  max-width: calc((100vh - 6.66vh) * 9 / 20);
  overflow: hidden;
  transition: all 0.3s ease-out;
  border-radius: 0;
  padding: 3.33vh;
  border: none;
  box-sizing: border-box;
  position: relative;
}

.video-desktop {
  display: inline-block;
  width: 100%;
  height: auto;
}

.video-mobile {
  display: none;
  width: 100%;
  height: 100vh;
}

.videoelement-mobile {
  width: auto;
  height: 100%;
}

@media (orientation: portrait) {
  .mobileview {
    width: 100%;
    border: 0px;
  }

  .video-desktop {
    display: none;
  }

  .video-mobile {
    display: inline-block;
  }
}

@media (orientation: portrait) and (min-device-width: 768px){
  .videoelement-mobile {
    width: 100%;
    height: auto;
  }
}


.video-desktop, .video-mobile {
  position: absolute;
  z-index: 0;
}

.content-container {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.title {
  position: relative;
  width: 100%;
}

.wen {
  position: relative;
}

.where {
  position: relative;
  padding-top: 30px;
}

.cta {
  position: relative;
  cursor: pointer;
  padding-top: 25px;
}

.content-bottom {
  position: relative;
  bottom: 0px;
  left: 0px;
  padding-top: 60px;
}

.form-container {
  padding: 0;
  margin: 0;
}

.hero-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}