.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .94rem;
  transition: .22s ease;
  cursor: pointer;
}

.btn-primary {
  background: #ffffff;
  color: #102414;
  border: 1px solid rgba(255, 255, 255, .18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #dff7d1;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .08);
}
