/*Colors*/

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

  .site-primary-text {
    color: #09b28b;
  }

  .site-primary, .site-primary a {
    background-color: #09b28b;
    color: white !important;
  }

  .site-primary-btn {
    background-color: #09b28b;
    color: white;
  }

  .site-primary-btn:hover {
    background-color: #0bdfae;
    border: 1px solid #045946;
    color: white;
  }

/* Secondary Color - Footer */

  .site-secondary-text {
    color: #7ad7c3;
  }

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

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

  .site-secondary-btn:hover {
    background-color: #53cbb1;
    border: 1px solid #27826e;
    color: black;
  }

/* Extra Color - Header*/

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

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

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

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

