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

body {
  overflow-x: hidden;
  width: 100vw;
}

.site-wrapper {
  width: 100%;
  /* min-height: 100vh; */
  background-color: #ffffff;
}

.max-width {
  width: 100%;
  max-width: 1800px;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 600px) {
  .max-width {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* Hide arrows in Chrome, Safari, Edge, and Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows in Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/*# sourceMappingURL=reset.css.map */
