*,
*::before,
*::after {
   -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

/* basic settings */

html{
	font-size:16px;
}
body{
	font-size: 1em;
	background:#fff;
	color:#000;
	font-style: normal;
	font-weight: normal;
	vertical-align:baseline;
	min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}
/* reset */
address{
	font-style: normal
}
dl,dt,dd{
	margin:0;
	padding:0;
}
table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0 }
a{
	text-decoration:none;
	color:#000;
}
h1,h2,h3,h4,h5,h6{
	font-size:1em;
	font-weight:normal;
	margin:0;
	padding:0;
}
figure{
	margin:0;
	padding:0;
}
img{
 	width:100%;
    height:auto;
    display:block;
    margin:auto;
}
video{
	border:none;
	display:inline-block;
}
menu,ul,ol{
	margin:0em;
	padding:0em;
}
li{
	list-style-type:none;
}
p{
	margin:0em;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}