body {
  margin: 0px;
}
.wrapper {
  position: relative;
}
.web-img {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 9;
}
.mob-img {
  display: none;
  height: auto;
  width: 100%;
}
video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 10;
}
.web-banner-img {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  text-align: center;
  width: auto;
  z-index: 10;
}
.web-banner-img img {
  height: 100vh;
  width: auto;
}
.mob-banner-img {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  text-align: center;
  width: auto;
  z-index: 10;
  display: none;
}
.mob-banner-img img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .web-img {
    display: none;
  }
  .mob-img {
    display: block;
  }
  .web-banner-img, .web-banner-img img {
    display: none;
  }
  .mob-banner-img {
    display: block;
  }
}
