/* human resources section */

.btn__add{
  z-index: 3;
  margin:0px auto;
  background-color: #FFFAFA;
  border-radius: 10px;
  border:solid 1px #36363632;
  cursor:pointer;
  transition:background-color 0.5s, color 0.3s;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.176);
}

.btn__add:hover{
  z-index: 3;
  background-color: rgb(0, 0, 0);
  color:rgb(173, 255, 80);
}

.profile-container{
  width:80%;
  justify-content: center;
  margin:100px auto;
}

.item{
  z-index: 3;
}

.profile-card{
  background-color: #FFFAFA;
  padding:5px 0px;
  border-radius: 30px;
  box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
  cursor: pointer;
  transition:background-color 0.3s, color 0.2s;
  margin:50px 0px;
}

.profile-card:hover{
  background-color: rgba(0, 0, 0, 0.566);
  color:rgb(173, 255, 80);
}

@media (min-width:780px){
  .profile-container{
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, minmax(20em,27em));
    -moz-column-gap: 50px;
         column-gap: 50px;
    row-gap: 100px;
    margin:100px auto;
  }

  .profile-card{
    margin:0px;
  }
}

.profile-image{
  max-width: 70%;
  max-height: 70%;
  margin:40px auto 30px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-container{
  display: flex;
  flex-direction: column;
  margin:0px 20% 50px 20%;
  line-height: 25px;
}

.text-container .subtitle{
  font-weight: 900;
  font-size:19px;
}

.text-container h1{
  text-align: center;
  margin:1rem 0px;
  padding-bottom: 20px;
  font-weight: 900;
  font-size: 1.5rem;
}