* {
  padding: 0;
  margin: 0;
}

.hm-team {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: flex-start;
  gap: 2%;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .hm-team {
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: center;
  }
}

.hm-team > div {
  width: 32%;
  position: relative;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .hm-team > div {
    width: 60%;
  }
}

@media (max-width: 575px) {
  .hm-team > div {
    width: 100%;
  }
}

.hm-team > div > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.hm-team > div > div {
  position: absolute;
  bottom: 10px;
  left: 15px;
  right: 15px;
  padding: 15px 15px;
  /*height: 70px;*/
  overflow-y: hidden;
  transition: height 0.5s ease-in-out;
  border-top-right-radius: 10px;
  backdrop-filter: blur(0px) saturate(180%);
  -webkit-backdrop-filter: blur(0px) saturate(200%);
  background-color: rgba(2,79,42,0.6);
  /*border-radius: 12px;*/
}

.hm-team > div > div > h5 {
  color: #00ff87;
  font-family: "Work Sans", arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.hm-team > div > div > span {
  color: #defaf8;
  font-size: 13px;
  display: block;
}

