.lions {

}

.lions .row {
    margin-right: -5px;
    margin-left: -5px;
}

.lions [class^=col] {
    padding-right: 5px;
    padding-left: 5px;
}

.lions .item {
    margin-bottom: 10px;
    position: relative;
    display: block;
    overflow: hidden;
}

.lions .title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    color: white;
    font-weight: bold;
    padding: 5px;
    transition: all ease 0.3s;

}

.lions .item img {
    transition: all ease 0.3s;
    width: 100%;
}

.lions .item:hover img {
    transform: scale(1.1);
}

.lions .item:hover .title {
    padding: 15px 5px;
}