/*AllFaculty*/
section.allFaculty {
    padding: 60px 0;
    background-color: whitesmoke;
  }

  .faculty-wrap {
    position: relative;
    padding: 10px;
    margin-bottom: 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 30px;
    box-shadow: 0px 3px 0px 0px #e3b121;
    background-color: #fff;
    transition: all ease-in-out 0.5s;
}
.faculty-wrap:hover {
  transform: translateY(-5px);
}

.faculty-wrap:hover{
  scale: 1.02;
}
.faculty-name p {
    font-size: 14px;
    margin: 0;
    line-height: 25px;
    color: #b48600;
}
.faculty-wrap figure {
  box-shadow: 0 0 2px 0 #7171719c;
  border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
}
.faculty-wrap figure img {
  height: 100%;
  width: 100%;
  transition: all ease-in-out 0.5s;
}
.faculty-wrap:hover figure img {
  scale: 1.05;
}
.faculty-name {
    padding: 10px 43px 10px 10px;
    min-height: 100px;
}
.profile-read {
    position: absolute;
    right: 10px;
    bottom: 58px;
    
}
.profile-read a{
  width: 40px;
  height: 40px;
  background-color: #e3b121;
  text-align: center;
  border-radius: 25px;
  display: inline-block;
}
.faculty-name h5 {
    margin: 0;
    font-size: 18px;
}
.profile-read a i {
    padding-top: 11px;
    /* animation: pulse 5s linear infinite alternate, nudge 5s linear infinite alternate; */
}
.profile-read a {
    color: black;
    transition: all ease-in-out 0.5s;
}

.faculty-wrap:hover .profile-read a {
  background: #bd393e;
  color: #fff;
}

  /* .faculty-wrap:hover .faculty-name {
    transform: translateY(0);
    transition: 0.4s;
  } */

  /* .faculty-name {
    background-color: #4c4c4c;
    color: white;
    text-align: center;
    padding: 10px 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    transform: translateY(48px);
    transition: 0.4s;
} */

  /* .profile-read a {
    text-decoration: none;
    background: #ffffffc2;
    padding: 10px 20px;
    text-align: center;
    color: black;
    transition: 0.5s;
  } */

  /* .faculty-wrap:hover .profile-read {
    transform: translateY(0);
    transition: 0.8s;
  } */

  /* .profile-read {
    position: absolute;
    transform: translateX(-100%);
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
    transition: 0.8s;
    height: max-content;
  } */

  /* .faculty-wrap img {
    height: 100%;
  } */

  /* .faculty-wrap:hover:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #7070707a;
    transition: 0.5s;
  } */

  /* .profile-read a:hover {
    background-color: #d99400d1;
    color: white;
    transition: 0.5s;
  } */
  div#FacultyDetails {
    height: 750px;
    overflow-y: scroll;
	overflow: auto;
    scrollbar-width: none;
}


/*AllFacultyEnd*/
@keyframes nudge {
    0%, 100% {
      transform: translate(0, 0);
    }
    
    50% {
      transform: translate(10px, 0);
    }
    
    80% {
      transform: translate(-10px, 0);
    }
  }
  @keyframes pulse {
    0%, 100% {
      color: black;
    }
    50% {
      color: #0c2354;
    }
  }
  