#grid {
    padding: 30px 10px 10px 10px;
}

#grid .column {
    display: inline-block;
    text-align: center;
}

#grid figure {
    overflow: hidden;
    position: relative;
}

#grid .column img {
    display: block;
    width: 100%;
    height: auto;
}

/*Zoom In*/
#grid .column.zoomIn img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .2s ease-in-out;
    transition: 0.7s ease-in-out;
}

#grid .zoomIn:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: 0.7s ease-in-out;  
}

.column.caption {
    position: relative;
}

.column.caption .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    transition: all 0.8s ease;
    margin-left: -30px;
    margin-top: -30px;
    color: var(--white);
}

.column.caption:hover .text {
    opacity: 1;
}

.column.caption:hover img {
    -webkit-filter: grayscale(100%);
}

.column.caption .icon {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    border: 1px solid var(--white);
    background-color: var(--opacity_90);
}

figure.media_gallery {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100px;
    display: block;
}