
/* Help Center Card Buttons CSS*/
.help-center-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 60px; /* create space for button */
  position: relative;
}

.help-center-card .fixed-btn {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
}

.help-center-card .btn {
  transition: all 0.3s ease;
}

.help-center-card .btn:hover {
  background-color: #f2eb52;
  color: #111e3b;
}


/* Buttons Size*/
@media (max-width: 476px) {
  .help-center-card .btn {
    padding: 5px 10px;
    width: 150px;
  }
}