*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-onest);
  width: 100dvw;
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
  background: var(--color-white);
}

::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: var(--color-blue);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #1557cc;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
blockquote,
figure {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}

input,
textarea,
select {
  font-size: 18px !important;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  background-color: var(--color-white);
  color: var(--color-dark);
  font-weight: 400;
  overscroll-behavior: none;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

button,
input,
textarea {
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  background: none;
}