$gray-base :#000;
@mixin translate($x, $y) {
  -webkit-transform: translate($x, $y);
  -ms-transform: translate($x, $y); // IE9 only
  -o-transform: translate($x, $y);
  transform: translate($x, $y);
}
@mixin background-size($size) {
 -webkit-background-size: $size;
    -moz-background-size: $size;
    -o-background-size: $size;
    background-size: $size ;
}
body {
  margin:0;
  padding:0;
}
.fullscreen-bg-utopia-video {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  /*z-index: 100;*/
    &::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba($gray-base, .5);
        z-index: 1;
    }
}
.fullscreen-bg-utopia-video-overlay {
  position:absolute;
  width:100%;
  height:100%;
  background-color:rgba(0, 0, 0, 0);
}
.fullscreen-bg-utopia-video-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-aspect-ratio: 16/9) {
  .fullscreen-bg-utopia-video-image {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .fullscreen-bg-utopia-video-image {
    width: 300%;
    left: -100%;
  }
}
@media (max-width: 767px) {
  .fullscreen-bg-utopia-video {
    background: url('../../assets/videos/utopia-ddg/images/opening-orange-lily-blue-backgound-1920x1080.webp') center center / cover no-repeat;
    @include background-size(cover);
  }
  .fullscreen-bg-utopia-video-image {
    display: none;
  }
}

