/* CREATE FONT CLASSES */

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.unna-regular {
    font-family: "Unna", serif;
    font-weight: 400;
    font-style: normal;
}

.unna-bold {
    font-family: "Unna", serif;
    font-weight: 700;
    font-style: normal;
}

.unna-regular-italic {
    font-family: "Unna", serif;
    font-weight: 400;
    font-style: italic;
}

.unna-bold-italic {
    font-family: "Unna", serif;
    font-weight: 700;
    font-style: italic;
}
  
.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.montserrat-bold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.montserrat-light {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.tangerine-regular {
    font-family: "Tangerine", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.tangerine-bold {
    font-family: "Tangerine", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.text-size-24 {
    font-size: 24px;
}
.text-size-20 {
    font-size: 20px;
}
.text-size-18 {
    font-size: 18px;
}

/* CUSTOM THEME COLOURS */

:root {
    /*--primary: #606c38;*/
    --primary: #708090;
    --light: #ffffff;
    --gray: #f2f2f2;
    --secondary: #8A9A5B;
    --tertiary: #65a56e;
    --footer-background: #fcfaf4;
    --black: #000000;

  }

.bg-c-primary {
    background-color: var(--primary) !important;
    color: white;
}


.bg-c-light {
    background-color: var(--light);
}
.bg-c-gray {
    background-color: var(--gray);
}
.bg-c-secondary {
    background-color: var(--secondary) !important;
    color: white;
}

.bg-c-tertiary {
    background-color: var(--tertiary);
    color: white;
}

.bg-c-footer {
    background-color: var(--footer-background);
}
.bg-c-black {
    background-color: var(--black);
}


/* UPDATE BOOTSTRAP CLASSES */

.card {
  border: none;
}