* {
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  text-align: left;
  border: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
  font-weight: normal;
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  line-height: 140%;
}

button {
  background: transparent;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

html,
body {
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow: overlay;
}
@media (max-width: 1250px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 62.5%;
  }
}

input,
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  line-height: 120%;
}

::-webkit-scrollbar {
  width: 10px;
  background: #c4c4c4;
}

::-webkit-scrollbar-thumb {
  background: #f7da22;
  border-radius: 0;
}

::-webkit-scrollbar-track {
  background: #c4c4c4;
  border-radius: 0;
}