/* Colors */
:root {/*
    --color-1:#38908F;
    --color-1-dark:#225958;

    --color-2:#e08963;
    --color-2-dark:#cc7d5b;
    --color-2-rgba: rgba(224, 137, 99, 0.90);

    --color-3:#B2EBE0;
    --color-4:#5E96AE;
    --color-5:#FFBFA3;
    --color-6:#EFEEE5;
    */


    --color-1:#6B705C;
    --color-1-dark:#515546;

    --color-2:#C58C6E;
    --color-2-dark:#a0725a;
    --color-2-rgba: rgba(197, 140, 110, 0.902);

    --color-3:#B2EBE0;
    --color-4:#5E96AE;
    --color-5:#FFBFA3;
    --color-6:#EFEEE5;

    --color-bg:#FAF9F6;
    --color-white:white;
    --color-black:black;
}

/* Fonts */
:root {
    --title-font:'Poppins', 'sans-serif';
    --text-font:'Roboto', 'sans-serif';
}

/*  */
:root {
    --global-max-width: 90rem;
}

/* breakpoints */
:root {
    --sm:375px;
    --md:575px;
    --lg:875px;
    --extra-lg:1000px;
}

/* Type scale: Major Third) */
:root {
    font-size: 16px;
    line-height: 1.25;
    --fs--3: 0.5rem;
    --fs--2: 0.625rem;
    --fs--1: 0.8125rem;
    --fs-base: 1rem; /* Base */
    --fs-1: 1.25rem;
    --fs-2: 1.5625rem;
    --fs-3: 1.9375rem;
    --fs-4: 2.4375rem;
    --fs-5: 3.0625rem;
    --fs-6: 3.8125rem;
    --lh--3: 0.625rem;
    --lh--2: 0.8125rem;
    --lh--1: 1rem;
    --lh-base: 1.25rem;
    --lh-1: 1.5625rem;
    --lh-2: 1.9375rem;
    --lh-3: 2.4375rem;
    --lh-4: 3.0625rem;
    --lh-5: 3.8125rem;
    --lh-6: 4.75rem;
  }