.column {
    margin: 15px 15px 0;
    padding: 0;
}
.column:last-child {
    padding-bottom: 60px;
}
.column::after {
    content: '';
    clear: both;
    display: block;
}
.column div {
    /*position: relative;*/
    /*float: left;*/
    /*width: 300px;*/
    /*height: 200px;*/
    /*margin: 0 0 0 25px;*/
    /*padding: 0;*/
}
.column div:first-child {
    margin-left: 0;
}
.column div span {
    position: absolute;
    /* bottom: 10px; */
    left: 0;
    z-index: 1030;
    display: block;
    width: 100%;
    /* margin: 0; */
    /* padding: 0; */
    color: #444;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: 0;
    top: 85%;
}
figure {
    width: 100%;
    /* height: 200px; */
    margin: 0;
    /* padding: 0; */
    padding-bottom: 15%;
    /* background: #fff; */
    overflow: hidden;
}
figure:hover+span {
    bottom: -36px;
    opacity: 1;
}

/* Flashing */
.hover13 figure:hover img {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
}
@-webkit-keyframes flash {
    0% {
        opacity: .4;
    }
    100% {
        opacity: 1;
    }
}
@keyframes flash {
    0% {
        opacity: .4;
    }
    100% {
        opacity: 1;
    }
}