* {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.coming-soon {
  height: 100vh;
  background: url(../img/banner-v-man.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.coming-soon-tab {
  display: none;
  height: 100vh;
  background: url(../img/banner-tab.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.coming-soon-mobile {
  display: none;
  height: 100vh;
  background: url(../img/banner-mobile.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 991px) {
  .coming-soon {
    display: none;
  }
  .coming-soon-tab {
    display: block;
  }
  .coming-soon-mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .coming-soon {
    display: none;
  }
  .coming-soon-tab {
    display: none;
  }
  .coming-soon-mobile {
    display: block;
  }
}
