.comm-banner {
  background-image: url(../images/professional.png);
}

.person-box {
  padding-top: 50px;
}
.person-item {
  height: 200px;
  padding: 0 10px;
  margin-bottom: 20px;
}
.person-item-box {
  position: relative;
  padding-left: 200px;
  background-color: #fff;
  transition: all .5s ease 0s;
}
.person-item-box:hover{
  transform: scale(1.1);
}
.person-pic {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 170px;
  height: 180px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.person-info {
  padding:18px 24px 0 24px;
  height: 200px;
}
.person-name {
  font-size: 24px;
  line-height: 26px;
  color: #333333;
  margin-bottom: 10px;
}
.person-role{
  font-size: 14px;
  line-height: 26px;
  color: #333333;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.person-desc {
  padding-top: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  word-break: break-all;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 992px) {
  .person-box {
    padding: 15px;
  }
  .col-md-6 {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .person-item-box {
    padding-left: 180px;
  }
  .person-pic {
    height: 170px;
    width: 180px;
  }
}