/*=========================================================
    HP-EXAM-PRO
    RESET.CSS
    --------------------------------------------------------
    Global Reset & Base Styles
==========================================================*/

/*==============================
    IMPORT VARIABLES
===============================*/

@import url("variables.css");

/*==============================
    GOOGLE FONT
===============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
    RESET
===============================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/*==============================
    HTML
===============================*/

html{

    font-size:16px;

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}

/*==============================
    BODY
===============================*/

body{

    font-family:var(--font-family);

    font-size:var(--font-md);

    font-weight:400;

    line-height:1.7;

    color:var(--gray-800);

    background:var(--white);

    overflow-x:hidden;

    min-height:100vh;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

/*==============================
    SELECTION
===============================*/

::selection{

    background:var(--primary);

    color:#fff;

}

::-moz-selection{

    background:var(--primary);

    color:#fff;

}

/*==============================
    SCROLLBAR
===============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==============================
    LINKS
===============================*/

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}

a:hover{

    color:var(--primary);

}

/*==============================
    IMAGES
===============================*/

img{

    max-width:100%;

    height:auto;

    display:block;

    object-fit:cover;

}

/*==============================
    SVG
===============================*/

svg{

    vertical-align:middle;

}

/*==============================
    LISTS
===============================*/

ul,
ol{

    list-style:none;

    margin:0;

    padding:0;

}

/*==============================
    TABLE
===============================*/

table{

    width:100%;

    border-collapse:collapse;

}

/*==============================
    BUTTON
===============================*/

button{

    border:none;

    background:none;

    cursor:pointer;

    outline:none;

    transition:var(--transition);

}

/*==============================
    INPUTS
===============================*/

input,
textarea,
select{

    font-family:inherit;

    outline:none;

    border:none;

}

textarea{

    resize:vertical;

}

/*==============================
    FIELDSET
===============================*/

fieldset{

    border:none;

}

/*==============================
    IFRAME
===============================*/

iframe{

    border:0;

    width:100%;

}

/*==============================
    HORIZONTAL RULE
===============================*/

hr{

    border:none;

    border-top:1px solid var(--gray-300);

    margin:2rem 0;

}

/*==============================
    CONTAINER
===============================*/

.container{

    width:100%;

    max-width:1320px;

    margin:auto;

}

/*==============================
    SECTION
===============================*/

section{

    position:relative;

}

/*==============================
    UTILITIES
===============================*/

.clearfix::after{

    content:"";

    display:block;

    clear:both;

}

.d-none{

    display:none !important;

}

.d-block{

    display:block !important;

}

.overflow-hidden{

    overflow:hidden;

}

/*==============================
    FOCUS
===============================*/

:focus{

    outline:none;

}

:focus-visible{

    outline:3px solid rgba(13,110,253,.35);

    outline-offset:3px;

}

/*==============================
    PLACEHOLDER
===============================*/

::placeholder{

    color:var(--gray-500);

    opacity:1;

}

/*==============================
    DISABLED
===============================*/

:disabled{

    cursor:not-allowed;

    opacity:.6;

}

/*==============================
    SMOOTH TRANSITIONS
===============================*/

*{

    transition:

    background-color .3s ease,

    color .3s ease,

    border-color .3s ease,

    transform .3s ease,

    box-shadow .3s ease;

}