.smki-guru-card {
  height: 23rem;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  transition: all 1s;
  position: relative;
  overflow: hidden;
}

.smki-guru-card header {
  height: 46%;
  /* background: red; */
  position: relative;
}

.smki-guru-card img {
  height: 6.5rem;
  border-radius: 100%;
  width: 6.5rem;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid #303F9F;
  transform: translateY(-40%) translateX(-50%);
}

.smki-guru-card article {
  text-align: center;
}
.smki-guru-card article p {
  padding: 0;
  margin: 0;
}
.smki-guru-card article .smki-fullname {
  color: #4a4a4a;
  font-size: 1.25rem;
  font-weight: 500;
}

.smki-guru-card article .smki-rolename {
  color: #777;
  font-size: 0.9rem;
}

.smki-guru-card article .smki-role-id {
  width: 80%;
  height: 2.5rem;
  text-align: center;
  margin: 0 auto;
  border: 2px solid #dadada;
  border-radius: 2.5rem;
  margin-top: 2.25rem;
  color: #bfbfbf;
  font-weight: 500;
  padding-top: 0.35rem;
  box-sizing: border-box;
}

.smki-guru-card footer {
  position: absolute;
  bottom: 0;
  /* background: red; */
  width: 100%;
  height: 3rem;
  transform: translateY(100%);
  transition: all 1s;
}

.smki-guru-card footer a {
  text-decoration: none;
  outline: 0;
}

.smki-guru-card footer button {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 0;
  width: 100%;
  background: #303F9F;
}

.smki-guru-card footer button:focus {
  outline: 0;
}

.smki-guru-card footer span {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
}

/* Hover and Animation */

.smki-guru-card:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  transition: all 1s;
}

.smki-guru-card:hover footer {
  transform: translateY(0);
  transition: all 1s;
}

.smki-guru-card footer button:hover {
  background: #303F9F;
  transition: 0.5s all;
}
