/* ============================================
   RESET CSS
   Vimday Catering Services
============================================ */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f7f7;
    color:#222;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

button{
    border:none;
    cursor:pointer;
    font-family:inherit;
}

input,
textarea,
select{
    outline:none;
    font-family:inherit;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}