@charset "UTF-8";
/* CSS Document */
.hero-wrapper {
  position: relative;
  display: table;
  height: 100vh;
  *height: 100%;
  width: 100%;
  margin: 0 auto;
  -webkit-box-shadow: inset 0 0 100px rgba(0,0,0,.5);
          box-shadow: inset 0 0 100px rgba(0,0,0,.5);
}
.hero-wrapper-inner {
  display: table-cell;
  vertical-align: top;
}
.cover-container {
  margin-right: auto;
  margin-left: auto;
}

#video_container,#img_container {
    overflow: hidden;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
#background_video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    z-index: -1;
}
#video_cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('./assets/bideo/video_cover.jpg?2307') no-repeat;
    background-size: cover;
    background-position: center;
}
#video_cover.loaded{
  display: none;
}


#video_container {
    text-align: center;
    height: 100%;
}

@media (min-width: 1600px){
    #background_video {
      height: auto;
  }
}
@supports (-ms-ime-align: auto) {
  #background_video {
      height: auto;
  }
}

@media only screen and (max-width: 991px) {
  /* #background_video {
    display: none;
  } */

  #video_cover.loaded{
    display: block;
  }
}
