.heading {
  display: flex;
  justify-content: center;
  padding: 50px 0 50px 0;
}

.management-team {
  display: flex;
  flex-wrap: wrap;
  /* width: 90vw; */
  justify-self: center;
  justify-content: center;
  margin-bottom: 100px;
}

.team-details {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.team-img {
  display: flex;
  justify-content: center;
}

.team-img img {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  width: 60%;
  border-radius: 10px;
}

.description {
  background-color: #918e8e;
  width: 80%;
  height: 15vh;
}

.description h6 {
  text-align: center;
  padding-top: 10px;
}

.description p {
  text-align: center;
  color: white;
}

.emp-team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}

.emp-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

.emp-details {
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.emp-details img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.emp-details:hover img {
  transform: translateY(-10px);
}



@media screen and (max-width: 768px) {
  .management-team {
    flex-direction: column;
    align-items: center;
  }

  .team-details {
    width: 80vw;
    margin: 30px;
  }

  .emp-team {
    flex-direction: column;
    align-items: center;
  }

  .emp-img {
    width: 80vw;
  }

  .description {
    height: 15vh;
    width: 80%;
  }

  .emp-details {
    padding: 0 0 20px 0;
  }

  .emp-description {
    padding: 10px 0 0 0;
  }
}

@media screen and (max-width: 500px) {
  .team-details {
    width: 90vw;
  }

  .emp-img {
    width: 60vw;
  }

  .emp-details {
    padding: 0 0 20px 0;
  }
}