/*Colors*/

/* Primary Color - Buttons, Titles, Highlights*/

  .site-primary-text {
    color: black;
  }

  .site-primary, .site-primary a {
    background-color: #f8d89f;
    color: black !important;
  }

  .site-primary-btn {
    background-color: #f8d89f;
    color: black;
  }

  .site-primary-btn:hover {
    background-color: #f4c166;
    border: 1px solid #be7e0e;
    color: black;
  }

/* Secondary Color - Footer */

  .site-secondary-text {
    color: #f8d89f;
  }

  .site-secondary, .site-secondary a {
    background-color: #f8d89f;
    color: black !important;
  }

  .site-secondary-btn {
    background-color: #f8d89f;
    color: black;
  }

  .site-secondary-btn:hover {
    background-color: #f4c166;
    border: 1px solid #be7e0e;
    color: black;
  }

/* Extra Color - Header*/

  .site-secondary-text {
    color: #030303;
  }

  .site-extra, .site-extra a {
    background-color: #030303;
    color: white !important;
  }

  .site-extra-btn {
    background-color: #030303;
    color: white;
  }

  .site-extra-btn:hover {
    background-color: #040404;
    border: 1px solid #020202;
    color: white;
  }

