.wpt-profiles-list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.wpt-profile-card{
  width: 33.33%;
  background: #fff;
  border-radius: 5px;
  padding: 40px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0, 0.08);
  position: relative;
}
.wpt-prf-pic{
  width: 150px;
  height: 150px;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  border-radius: 50%;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}
.wpt-prf-content{
  margin-top: 80px;
  text-align: center;
}
.wpt-prf-content h3{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
}
.wpt-prf-content h4{
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
.wpt-prf-footer{
  margin-top: 30px;
}
.wpt-button{
  display: block;
  text-align: center;
  padding: 15px 30px;
  border-radius: 4px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.wpt-button:hover{
  color: #fff;
}
.wpt-prf-footer .wpt-prf-setting, .wpt-prf-footer .wpt-unfriend, .wpt-prf-footer .wpt-add-frnd{
  background: #FF7657;
  margin-bottom: 20px;
}
.wpt-prf-footer .wpt-acct-setting, .wpt-prf-footer .wpt-message{
  background: #000;
}

@media(max-width: 768px){
  .wpt-profiles-list{
    column-gap: 30px;
    row-gap: 115px;
  }
  .wpt-profile-card{
    width: 47.9%;
  }
}
@media(max-width: 576px){
  .wpt-profiles-list{
    gap: 115px;
  }
  .wpt-profile-card{
    width: 100%;
  }
}