/*=================================
RESET
=================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{

scroll-behavior:smooth;

}

body{

font-family:var(--font);

background:var(--bg);

color:var(--text);

overflow-x:hidden;

line-height:1.6;

-webkit-font-smoothing:antialiased;

}

img{

display:block;

width:100%;

}

a{

text-decoration:none;

color:inherit;

}

button{

border:none;

background:none;

cursor:pointer;

font-family:inherit;

}

input{

font-family:inherit;

outline:none;

}

ul{

list-style:none;

}

section{

position:relative;

}
