.team-wrapper .team-list {
  display: flex;
  column-gap: 30px;
  row-gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  /*   max-width: 358px; */
  cursor: pointer;
}

.team-wrapper .team-list .member{
  display: block;
}

.team-wrapper .team-list .image {
  max-width: 280px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.team-wrapper .team-list .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-wrapper .team-list .social-link-wrapper{
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.team-wrapper .team-list .image .social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFF;
  cursor: none;
  transition: all .3s ease;
  opacity: 0;
  z-index: 2;
}

.team-wrapper .team-list .social-link span svg{
  display: block;
  width: 17px;
  height: 17px;
}

.team-wrapper .team-list .social-link img{
  width: 50%;
  height: 50%;
}

.team-wrapper .team-list .team-member .name{
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}


/* hover effect */
.team-wrapper .team-list .team-member:hover .image .social-link {
  opacity: 1;
  cursor: pointer;
}

.team-member {  
  width: 20%;
}

.social-link svg path {
  fill: #fff;
}

{# Responsive CSS #}
@media only screen and (max-width: 991px) {
  .team-member {  
    width: 30.3%;
  }
}

@media only screen and (max-width: 767px) {
  .team-member {
    width: initial;
  }
}