/* =====================================
   RESET
===================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =====================================
   ROOT
===================================== */

:root{

    --primary:#7A8F63;
    --primary-hover:#687C54;

    --text:#1F2937;
    --text-light:#6B7280;

    --background:#F8F5EF;
    --white:#FFFFFF;

    --border:#E7E2D9;

    --radius:18px;
    --radius-large:28px;

    --container:1280px;

    --transition:.25s ease;

}

/* =====================================
   HTML
===================================== */

html{

    scroll-behavior:smooth;

}

/* =====================================
   BODY
===================================== */

body{

    font-family:
        Inter,
        system-ui,
        sans-serif;

    font-size:16px;

    line-height:1.7;

    color:var(--text);

    background:var(--background);

    overflow-x:hidden;

}

/* =====================================
   IMAGES
===================================== */

img{

    display:block;

    max-width:100%;

    height:auto;

}

/* =====================================
   LINKS
===================================== */

a{

    color:inherit;

    text-decoration:none;

}

/* =====================================
   LISTS
===================================== */

ul,
ol{

    list-style:none;

}

/* =====================================
   BUTTONS
===================================== */

button{

    font:inherit;

    cursor:pointer;

    border:none;

    background:none;

}

/* =====================================
   INPUTS
===================================== */

input,
textarea,
select{

    font:inherit;

}

/* =====================================
   HEADINGS
===================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    font-weight:700;

    line-height:1.15;

}

p{

    color:var(--text-light);

}
