/*Profile card 2*/
.profile-card-2 .card-img-block{
    float:left;
    width:100%;
    height:125px;
    overflow:hidden;
}

.profile-card-2 .card-body{
    position:relative;
}

.profile-card-2 .profile {
  border-radius: 50%;
  position: absolute;
  top: -50%;
  left: 55px;
  max-width: 75px;
  border: 3px solid rgba(255, 255, 255, 1);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

@media screen and (max-width: 992px) 
{
    .profile-card-2 .profile {
      top: -45% !important;
    }   
}

@media screen and (max-width: 600px) 
{
    .profile-card-2 .profile {
      top: -75px !important;
    }   
}

 