/*Colors*/

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

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

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

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

  .site-primary-btn:hover {
    background-color: #2882ba;
    border: 1px solid #174c6d;
    color: black;
  }

/* Secondary Color - Footer */

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

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

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

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

/* Extra Color - Header*/

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

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

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

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

