*,
*::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: var(--font-family-base);
  font-size: var(--text-base-size);
  font-weight: var(--text-base-weight);
  line-height: normal;
  color: var(--text-base-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,
.h1 {
  font-size: var(--font-size_h1);
  font-weight: var(--text-title-weight);
  line-height: normal;
}

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

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

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

a:hover,
a:focus-visible {
  border: 0;
  outline: 0;
}

button,
input {
  color: currentColor;
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
  border: none;
  outline: none;
}

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;
}

img {
  filter: brightness(105%) contrast(105%);
}