.sv03-teamlist {
  display: flex;
  flex-flow: row wrap;
}
.sv03-teamlist li {
  flex: 0 0 auto;
  width: 100%;
  max-width: 20%;
  position: relative;
  overflow: hidden;
}
.sv03-teamlist li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sv03-teamlist li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.6;
  display: none;
  transition: 0.5s all;
}
.sv03-teamlist li .tmbody {
  position: absolute;
  inset: 0;
  top: 100%;
  z-index: 5;
  opacity: 0;
  transition: 0.5s all;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sv03-teamlist li:hover::before {
  display: block;
}
.sv03-teamlist li:hover .tmbody {
  opacity: 1;
  top: 0;
}
.tmbody h4 {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
}
.tmbody span {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  display: block;
  line-height: 1;
}

@media (max-width: 767px) {
  .sv03-teamlist .slick-list {
    padding-left: 0 !important;
  }
  .tmbody h4 {
    font-size: 18px;
  }
  .tmbody span {
    font-size: 14px;
  }
}
