*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

ul li {
    display: flex;
}

a {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
}

button {
    all: unset;
    display: inline-block;
    cursor: pointer;
    box-sizing: border-box;
}

input,
textarea,
select {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    box-sizing: border-box;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'LTSuperior', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
}

body {
    line-height: normal;
    text-rendering: optimizeLegibility;
    background-color: #fff;
    color: #111;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

input,
button,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-title);
    font-weight: 400;
    line-height: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}