/* ==========================================================================
   HAUS OF LESS
   RESET
   Version: 1.0
   ========================================================================== */

/* ==========================================================
   Box Sizing
========================================================== */

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

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

html{

    scroll-behavior:smooth;

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

    text-size-adjust:100%;

}

/* ==========================================================
   Body
========================================================== */

body{

    min-height:100vh;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

    overflow-x:hidden;

}

/* ==========================================================
   Images
========================================================== */

img,
picture,
svg,
canvas,
video{

    display:block;

    max-width:100%;

    height:auto;

}

/* ==========================================================
   Forms
========================================================== */

input,
button,
textarea,
select{

    font:inherit;

    color:inherit;

}

button{

    cursor:pointer;

    background:none;

    border:none;

}

textarea{

    resize:vertical;

}

/* ==========================================================
   Lists
========================================================== */

ul,
ol{

    list-style:none;

}

/* ==========================================================
   Links
========================================================== */

a{

    color:inherit;

    text-decoration:none;

}

/* ==========================================================
   Tables
========================================================== */

table{

    border-collapse:collapse;

    border-spacing:0;

}

/* ==========================================================
   Headings
========================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    font:inherit;

}

/* ==========================================================
   Paragraphs
========================================================== */

p{

    overflow-wrap:break-word;

}

/* ==========================================================
   Strong
========================================================== */

strong{

    font-weight:600;

}

/* ==========================================================
   Selection
========================================================== */

::selection{

    background:#1F3A2E;

    color:#FFFFFF;

}

/* ==========================================================
   Focus
========================================================== */

:focus{

    outline:none;

}

:focus-visible{

    outline:2px solid #B08A4E;

    outline-offset:3px;

}

/* ==========================================================
   Hidden
========================================================== */

[hidden]{

    display:none !important;

}
