.container_person {
        float: left;
        width:247px;
        height:300px;
        margin-bottom:15px;
        background:#E8EDF1;
        position: relative;
        list-style: none;
        text-align: center;
}

.top_person {
    width: 59px;
    height: 72px;
    float: left;
    display: block;
    position: relative;
    margin: 1px 1px 1.5px 1.5px;
    cursor: pointer;
    border: 0;
    background-color: #7b5e5e;
    background-position: center;
    background-repeat: no-repeat;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.top_person:hover{
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.top_person img {
    width: 59px;
    color: #fff;
}
.description_per{
    width: 100%;
    position: absolute;
    bottom: 0px;
    color: #fff;
    text-transform: none;
    opacity: 0;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
    -webkit-backface-visibility: hidden;
    margin: 0px;
}

/*.description_per:hover {
    opacity: 1;
}*/
.top_person:hover .description_per {
    opacity: 1;
    background: #000;
}