/*Colors*/

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

  .site-primary-text {
    color: #041f3e;
  }

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

  .site-primary-btn {
    background-color: #041f3e;
    color: white;
  }

  .site-primary-btn:hover {
    background-color: #05274e;
    border: 1px solid #020f1f;
    color: white;
  }

/* Secondary Color - Footer */

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

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

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

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

/* Extra Color - Header*/

  .site-secondary-text {
    color: #0179e0;
  }

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

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

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

