*,
*::after,
*::before {
	border-width: 0;
	border-style: solid;
	border-color: currentColor;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

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

audio,
canvas,
embed,
figure,
iframe,
img,
object,
svg,
video {
	display: block;
	vertical-align: middle;
}

body {
	overflow-x: hidden;
	background-color: var(--bg-color);
    color: var(--text-color);
    font-size: var(--text-base);
}

button {
	font: inherit;
	background: none;
	color: currentColor;
	cursor: pointer;
	line-height: inherit;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

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

html {
	font-family: var(--main-font-family);
	font-weight: var(--main-font-weight);
	line-height: var(--leading-normal);
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	width: 100%;
	height: auto;
	transform-style: preserve-3d;
}

input,
textarea {
	font: inherit;
}

/*ol,
ul {
	list-style: none;
}*/

strong,
b {
	font-weight: var(--weight-bold);
}

summary {
	cursor: pointer;
}

summary:focus {
	outline: 0;
}

summary:focus-visible {
	outline: solid;
	outline: 5px auto -webkit-focus-ring-color;
}

table {
	font-variant-numeric: tabular-nums;
	border-spacing: 0;
	width: 100%;
}

th,
td {
	text-align: left;
	vertical-align: top;
}