/*======================================================
    Global
======================================================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--body-bg);
    color:var(--text);
    overflow-x:hidden;

}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

button,
input,
select,
textarea{

    font-family:inherit;
    outline:none;

}

ul{
    list-style:none;
}