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

html {
  height: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  height: var(--vh);
  padding: 0;
  margin: 0;
  font-family: 'Inter-Variable', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-color);
  overflow-x: hidden;
  overflow-y: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 768px) {
  body {
    height: 100%;
  }
}

@media (max-height: 600px) and (max-width: 1024px) {
  body {
    overflow-y: auto;
    height: 100%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

.h1 {
  font-size: var(--font-size_h1);
  font-weight: 600;
  line-height: normal;
}

.h2 {
  font-size: var(--font-size_h2);
  font-weight: 400;
  line-height: normal;
}

.h3 {
  font-size: var(--font-size_h3);
  font-weight: 300;
  line-height: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  color: currentColor;
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: none;
  margin: 0;
  padding: 0;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}
