@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

html, body {
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: auto;
  background: rgb(246, 246, 246);
}

#onlyMob {
  display: block;
}

#onlyDes {
  display: none;
}

#onPageLoad {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  left: 0;
  top: 0;
  z-index: 10000000000000000000000;
  background: white;
  transition: 0.2s;
  pointer-events: visible;
}
#onPageLoad.hide {
  pointer-events: none;
  opacity: 0;
}

button {
  cursor: pointer !important;
  outline: none !important;
  transition: 0.2s !important;
  font-weight: 400;
}

#backToTop {
  position: fixed;
  right: 15px;
  bottom: 0px;
  z-index: 110;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  background: #007be0;
  border-radius: 4px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  padding: 10px 13px;
}
#backToTop i {
  font-size: 19px;
  color: white;
}
#backToTop.active {
  opacity: 1;
  pointer-events: visible;
  bottom: 60px;
}
#backToTop.menu-active {
  opacity: 0;
  pointer-events: none;
}

@media only screen and (min-device-width: 1145px) {
  #onlyMob {
    display: none;
  }
  #onlyDes {
    display: block;
  }
}/*# sourceMappingURL=global.css.map */