* {
    padding: 0;
    margin: 0;
    border: 0;
}

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

:focus,
:active {
    /* outline: none; */
}

html,
body {
    /* min-width: 375px; */
    height: 100%;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    line-height: 1;
    color: #000;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Disable Blue Highlight when touch/press object with cursor:pointer */
}

body p {
    font-size: var(--font-size-text);
    line-height: var(--line-height-normal);
}

@media (min-width: 1024px) {
    body h1 {
        font-size: 60px;
        line-height: 63px;
    }
}

input,
button,
textarea {
    font-family: var(--font-main);
    font-size: inherit;
}

button {
    color: inherit;
    cursor: pointer;
    background-color: inherit;
}

a {
    color: inherit;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:focus {
    /* outline: none; */
}

a:hover {
    text-decoration: none;
}

a:active {
    /* outline: none; */
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

input[type="search"]::-moz-search-clear {
    display: none;
}

input[type="search"]::-ms-clear {
    display: none;
}

/* p:not([class]) {
  font-size: 18px;
  line-height: 30px;
} */