/* animation class --------------------------------------------------------- */
[data-hidden],
.hidden {
  visibility: hidden;
}
.warning-fixers{
  z-index: -1;
}
/* useful for img caching -------------------------------------------------- */
.no-display {
  display: none;
}
/* reset ------------------------------------------------------------------- */
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  -webkit-tap-highlight-color: transparent;

  background-color: transparent;
  color: white;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
    "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}
img {
  display: block;
  backface-visibility: hidden;
  flex-shrink: 0; /* IE fix */

  max-width: 100%;
  height: auto;

  /*max-height: 100%;
  width: auto;*/ 
}
button {
  display: block;
  margin: 0;
  overflow: visible;
  background-color: transparent;
  border: none;
  padding: 0;
  border-radius: 4px;
  color: inherit;
  font-family: inherit;
  font-size: 100%;
  font-weight: normal;
}
small {
  font-size: smaller;
}
em {
  font-weight: 700;
}
video {
  max-width: 100%;
}
/* layout ------------------------------------------------------------------ */
.wrapper {
  /* position: fixed; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* iPhone 7 fix */
}
.wrapper-side {
  width: 100%;
  height: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.flex-v {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.flex-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.full {
  width: 100%;
  height: 100%;
}
.pos-c {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pos-cx {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.pos-a {
  position: absolute;
  top: 0;
  left: 0;
}
.pos-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.faux-top {
  height: 250px;
  width: 1000px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.faux-side {
  height: 100%;
  width: 400px;
  position: absolute;
  top: 0;
}
.faux-side.left {
  left: 0;
}
.faux-side.right {
  right: 0;
}
.video-container {
  height: 100%;
  width: auto;
}
.video-container.width {
  height: auto;
  width: 100%;
}
.video-container-side {
  position: absolute !important; /* ie fix  */
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  max-width: 400px;
}
[jp-controls] {
  height: 100%;
  visibility: visible!important;
}
.bg {
  background-size: cover;
  background-position: center;
}
.bg-img {
  object-fit: contain;
  object-position: center;
}
/* custom ------------------------------------------------------------------ */
/* start here */
/* ==================== BG ==================== */
.bg-wrapper{
  bottom: 0;
  width: 94vw;
  height: 95vh;
  background-position: 50% 0%;
  background-repeat: no-repeat;
}
/* ==================== TOP ==================== */
.headline-top{
  margin-top: 11.5%;
  width: 71%;
}
.sparkle{
  position: absolute;
  right: 4%;
  top: 4%;
  width: 3%;
}
/* ==================== LEFT ==================== */
.left-container{
  justify-content: center;
  align-items: flex-start;
  padding-left: 10%;
}
.sparkles{
  position: absolute;
  left: 4%;
  top: 2%;
  width: 15%;
}
.pdf-container{
  width: 53%;
  height: 8%;
  margin-top: 83%;
  min-width: 90px;
}
.pdf-container > img{
  object-position: 0%  50%;
}
.template-container{
  width: 79%;
  height: 8%;
  margin-top: 45%;
  min-width: 130px;
}
.template-container > img{
  object-position: 0%  100%;
}
.visual-container{
  width: 150%;
  height: 40%;
  min-width: 200px;
}
.visual-container > img{
  object-position: 0%  10%;
}
/* media queries ----------------------------------------------------------- */
@media (max-width: 1550px) {
  .bg-wrapper{
    width: 97vw;
  }
}
@media (max-width: 1400px) {
  .bg-wrapper{
    width: 100vw;
  }

}
@media (max-aspect-ratio: 25/20) {
  .bg-wrapper{
    background-size: contain;
    width: 100vw;
  }
}
@media (max-aspect-ratio: 3/10){
}
@media (max-aspect-ratio: 1/5){
}
@media (max-aspect-ratio: 3/20){

}
