/* ==========================================================
   G&S Quotient Website
   CSS Reset
   Version : 1.0
   ========================================================== */

/* Box sizing */
*,
*::before,
*::after{
    box-sizing:border-box;
}

/* Remove default spacing */
*{
    margin:0;
    padding:0;
}

/* Root */
html{
    scroll-behavior:smooth;
    scroll-padding-top:112px;
    -webkit-text-size-adjust:100%;
}

/* Body */
body{
    min-height:100vh;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    font-family:Inter,Arial,Helvetica,sans-serif;
    background:#ffffff;
    color:#2d2d2d;
    line-height:1.6;
}

/* Images */
img,
picture{
    display:block;
    max-width:100%;
    border:0;
}

/* SVG */
svg{
    display:block;
}

/* Form elements */
input,
button,
textarea,
select{
    font:inherit;
    color:inherit;
    border:none;
    outline:none;
    background:none;
}

/* Buttons */
button{
    cursor:pointer;
}

/* Links */
a{
    color:inherit;
    text-decoration:none;
}

/* Lists */
ul,
ol{
    list-style:none;
}

/* Tables */
table{
    border-collapse:collapse;
    border-spacing:0;
}

/* Heading */
h1,h2,h3,h4,h5,h6{
    font-weight:normal;
}

/* Paragraph */
p{
    margin:0;
}

/* HR */
hr{
    border:none;
}

/* Fieldset */
fieldset{
    border:none;
}

/* Textarea */
textarea{
    resize:vertical;
}

/* Hidden */
[hidden]{
    display:none !important;
}

/* Selection */
::selection{
    background:#d57b2a;
    color:#ffffff;
}

::-moz-selection{
    background:#d57b2a;
    color:#ffffff;
}

/* Focus */
:focus-visible{
    outline:2px solid #d57b2a;
    outline-offset:3px;
}
