/*======================================================

The IdeaGen Technologies

File :
reset.css

Version :
1.0

======================================================*/

/*=============================
        RESET
=============================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;

}

body{

    font-family:var(--font);

    background:var(--white);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.6;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

}

/*=============================
        MEDIA
=============================*/

img,
picture,
video,
canvas,
svg{

    display:block;

    max-width:100%;

}

img{

    user-select:none;

    pointer-events:none;

}

/*=============================
        LINKS
=============================*/

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

/*=============================
        BUTTONS
=============================*/

button{

    border:none;

    outline:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

/*=============================
        INPUTS
=============================*/

input,
textarea,
select{

    font:inherit;

    outline:none;

    border:none;

    background:none;

}

/*=============================
        LISTS
=============================*/

ul,
ol{

    list-style:none;

}

/*=============================
        TABLES
=============================*/

table{

    border-collapse:collapse;

    border-spacing:0;

}

/*=============================
        HEADINGS
=============================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--heading);

    font-weight:var(--bold);

    line-height:1.15;

}

p{

    color:var(--text);

}

/*=============================
        SELECTION
=============================*/

::selection{

    background:var(--primary);

    color:var(--white);

}

/*=============================
        SCROLLBAR
=============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F1F5F9;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*=============================
        UTILITIES
=============================*/

.hidden{

    display:none;

}

.text-center{

    text-align:center;

}

.overflow-hidden{

    overflow:hidden;

}