/*==================================
            RESET
==================================*/

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Poppins", Arial, sans-serif;

    background:#f5f7f4;

    color:#163c29;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

button,
input,
textarea,
select{

    font-family:inherit;

}