.photo{
   margin-bottom: 30px;

}

.photo a{
    display: block;
}
.photo img{
    border-radius: 10px;
    vertical-align: bottom;
    object-fit: cover; 
    object-position: center; 
    display: block;
}
.photo .thumb{
    opacity: 0.8;
}

.photo:hover .thumb{
    opacity: 1;
}
.photo .thumb:before{
    width: 100%;

    position: absolute;
    content: "\f03e";
    font-family: FontAwesome;
    font-size: 50px;
    color: rgba(255,255,255,0.7);
    text-align: center;
    top: 30%;

    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;

}

.photo:hover .thumb:before{
    color: rgba(255,255,255,0.9);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}

.album .news-footer{
    padding: 15px;
    background-color: rgba(0,0,0,0.9);
    position: absolute;
    bottom: 0;
    color: #ffffff;
    box-sizing: border-box;
    width: 100%;
}

.album .news-footer .title{
    font-weight: bold;
    font-family: Verdana;
    font-size: 18px;
}


.news:hover .news-footer .title{
    text-decoration: underline;
}

/* overlay at start */
.mfp-fade.mfp-bg {
    opacity: 0;

    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;

    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}