:root {
  --kp-gold: #c9a84c;
  --kp-dark: #1a1a2e;
  --kp-dark-alt: #16213e;
  --kp-accent: #0f3460;
}

.hero {
  background-image: url("/img/handshake.jpg") !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: darken;
  height: 70vh;
  display: flex;
  /* background: url("/img/handshake.jpg") center center / cover no-repeat rgba(0,0,0,.08); */
}
.btn-kp {
  background: var(--kp-gold);
  color: var(--kp-dark);
  border: none;
  font-weight: 700;
  padding: .65rem 1.8rem;
  border-radius: 6px;
  font-size: 1rem;
  transition: opacity .2s,transform .15s;
}
.btn-kp:hover {
  opacity: .88;
  transform: translateY(-1px);
  color: var(--kp-dark);
  background: var(--kp-gold);
}

.btn-primary {
  color: #fff !important;
  background-color: #3182ce !important;
}
.how-it-works-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  margin: 24px 0;
  background-color: #fff;
  padding: 20px 10px;
}
.how-it-works-card h3 {
    color: #3182ce !important;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700 !important;
}
.how-it-works-card .card-text {
    color: #4a5568 !important;
    text-align: center;
    font-size: 1.1rem;
}