/* start global style */

* {
  outline: 0 !important;
  box-shadow: none !important;
}

body {
  margin: 0;
}

.fullscreen {
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  width: 100%;
  height: 89vh;
}

@media (max-width: 991px) {
  .fullscreen {
    height: 94vh;
  }
}

@media (max-width: 568px) {
  .fullscreen {
    height: 96vh;
  }
}

a {
  width: 100%;
  height: 100%;
}
.fullscreen img {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
}

.copyright img {
  width: 100%;
}

@media (min-width: 0) {
  .fullscreen img.labtop {
    display: none;
  }
  .fullscreen img.tablet {
    display: none;
  }
  .fullscreen img.mobile {
    display: block;
  }
}

@media (min-width: 568px) {
  .fullscreen img.labtop {
    display: none;
  }
  .fullscreen img.tablet {
    display: block;
  }
  .fullscreen img.mobile {
    display: none;
  }
}

@media (min-width: 991px) {
  .fullscreen img.labtop {
    display: block;
  }
  .fullscreen img.tablet {
    display: none;
  }
  .fullscreen img.mobile {
    display: none;
  }
}



