body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

a:hover {
  text-decoration: none;
}

p {
  margin: 0;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

.list-team-members ul li {
  height: 75px;
  background-color: #f2f2f2;
  padding: 5px;
  border-radius: 4px;
  transition: .3s all ease-in-out;
  -webkit-transition: .3s all ease-in-out;
}


.list-team-members ul li:hover{
  background-color: rgb(255, 255, 254);
  color: #fff;
}

.user-photo img {
  height: 100%;
  object-fit: cover;
}

.user-photo {
  max-width: 60px;
  height: 60px;
  border-radius: 100px;
  border: 2px solid azure;
  overflow: hidden;
}

.w-30 {
  width: 296px;
}

@media screen and (max-width: 1200px) {
  .list-team-members ul li {
    width: 950px;
  }
}

@media screen and (max-width: 991px) {
  .list-team-members {
    overflow-x: auto;
  }
}