/* ===========================================================
   Bhairav One
   Reset.css
   Version : 1.0
=========================================================== */

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

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

/* ===========================================================
   HTML
=========================================================== */

html{

    font-size:16px;

    -webkit-text-size-adjust:100%;

    scroll-behavior:smooth;

    touch-action:manipulation;

}

/* ===========================================================
   BODY
=========================================================== */

body{

    margin:0;

    padding:0;

    width:100%;

    height:100dvh;

    overflow:hidden;

    user-select:none;

    -webkit-user-select:none;

    -webkit-touch-callout:none;

    -webkit-tap-highlight-color:transparent;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

/* ===========================================================
   IMAGES
=========================================================== */

img{

    display:block;

    max-width:100%;

    user-select:none;

    -webkit-user-drag:none;

}

/* ===========================================================
   LINKS
=========================================================== */

a{

    text-decoration:none;

    color:inherit;

}

/* ===========================================================
   BUTTONS
=========================================================== */

button{

    appearance:none;

    -webkit-appearance:none;

    border:none;

    outline:none;

    background:none;

    font:inherit;

    cursor:pointer;

    color:inherit;

}

/* ===========================================================
   INPUTS
=========================================================== */

input,
textarea,
select{

    appearance:none;

    -webkit-appearance:none;

    border:none;

    outline:none;

    background:none;

    font:inherit;

    color:inherit;

}

/* ===========================================================
   LISTS
=========================================================== */

ul,
ol{

    list-style:none;

}

/* ===========================================================
   SVG
=========================================================== */

svg{

    display:block;

}

/* ===========================================================
   FOCUS
=========================================================== */

:focus{

    outline:none;

}

/* ===========================================================
   SCROLLBAR
=========================================================== */

::-webkit-scrollbar{

    display:none;

}