.education {
  --bg-color: #ffd861;
  --bg-color-light: #ffeeba;
  --text-color-hover: #4c5656;
  --box-shadow-color: rgba(255, 215, 97, 0.48);
}

.credentialing {
  --bg-color: #b8f9d3;
  --bg-color-light: #e2fced;
  --text-color-hover: #4c5656;
  --box-shadow-color: rgba(184, 249, 211, 0.48);
}

.wallet {
  --bg-color: #ceb2fc;
  --bg-color-light: #f0e7ff;
  --text-color-hover: #fff;
  --box-shadow-color: rgba(206, 178, 252, 0.48);
}

.human-resources {
  --bg-color: #dce9ff;
  --bg-color-light: #f1f7ff;
  --text-color-hover: #4c5656;
  --box-shadow-color: rgba(220, 233, 255, 0.48);
}

.card {
  width: 130px;
  height: 140px;
  background: #fff;
  /*background: rgba(255, 255, 255, 0.4);*/
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-out;
  text-decoration: none;
  z-index: 200;
}

/*.card img{*/
/*  width: 100px;*/
/*  height: 100px;*/
/*  margin-bottom: 30px;*/
/*  z-index: 100;*/
/*}*/

.image{
  width: 80px;
  height: 75px;
  margin-bottom: 30px;
  z-index: 100;
}

.images{
  width: 65px;
  height: 55px;
  margin-bottom: 30px;
  z-index: 100;
}

.card:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11),
    0 24px 46px var(--box-shadow-color);
}

.card:hover .overlay {
  transform: scale(250) translateZ(0);
}

.card:hover p {
  color: var(--text-color-hover);
}

.card:active {
  transform: scale(1) translateZ(0);
  box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11),
    0 15px 24px var(--box-shadow-color);
}

.card > span {
  font-size: 70px;
  margin-bottom: 30px;
  z-index: 100;
}

.card p {
  font-size: 13px;
  color: #4c5656;
  margin-top: 30px;
  z-index: 1000;
  transition: color 0.3s ease-out;
}

.overlay {
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: var(--bg-color);
  z-index: 0;
  transition: transform 0.3s ease-out;
}

.icon-2x {
  font-size: 6rem !important;
  z-index: 2;
  margin-top: -2rem;
  color: #1c1c1c;
}

.card-desc {
  position: absolute;
  bottom: 0;
  text-align: center;
}


/*Responsif*/

@media (max-width : 768px){
  .card {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  /*background: rgba(255, 255, 255, 0.4);*/
  }
  
  .card p {
  font-size: 10px;
  margin-top: 0px;
  }

  .image{
  margin-bottom: 10px;
  }

.images{
  margin-bottom: 10px;
  }

}
