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

h1 {
  font-family: "Sedan", serif;
}

html, body {
  position: relative;
  overflow-x: hidden;
  background: #fffae6 !important;
}

#onlyMob {
  display: block;
}

#onlyDes {
  display: none;
}

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 */