.csmf--team-item .csmf--social-items {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.csmf--team-item {
  background-color: #fff;
  transition: all 0.5s;
  text-align: center;
}
.csmf--team-item:hover .csmf--thumb {
  transform: scale(1.1);
}
.csmf--team-item .csmf--thumb {
  transition: all 0.5s;
  height: 100%;
  width: 100%;
}
.csmf--team-item .csmf--thumb-wrap {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 15px;
  display: inline-block;
}
.csmf--team-item .csmf--name {
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  line-height: 1.2;
  transition: all 0.5s;
}
.csmf--team-item .csmf--name:hover {
  color: #f7c600;
}
@media only screen and (max-width: 1199px) {
  .csmf--team-item .csmf--name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .csmf--team-item .csmf--name {
    font-size: 20px;
  }
}
.csmf--team-item .csmf--details .csmf--designation {
  font-weight: 500;
  color: gray;
}
@media only screen and (max-width: 1199px) {
  .csmf--team-item .csmf--details .csmf--designation {
    font-size: 14px;
  }
}

.csmf--team-item .csmf--social-item {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.csmf--team-item .csmf--social-item > a {
  height: 100%;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}
.csmf--team-item .csmf--social-item:hover > a {
  background-color: #f7c600;
}
