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

/* html,
body {
	overflow-x: hidden;
} */
body {
    font-family: var(--font-family-sans-serif), sans-serif;
}

img,
svg {
    max-width: 100%;
}

ul,
ol {
    list-style-type: none;
}

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

.hidden {
    display: none;
}

button {
    cursor: pointer;
}