/*------------------------------------------------ Zoom Effect photos starts--------------------------------------------------*/

#menu {
    max-width: 1200px;
    text-align: center;
    margin: auto;
}

.zoomimg:hover {
    cursor: pointer;
    background-size: 150% 150%;
}

/*CSS to Add an Overlay*/

.zoomimg:after {
    position: absolute;
    background-color: rgba(0,0,0,.35);
    content:'\f00e';
    font-family: FontAwesome;
    padding-top: 40%;
    padding-left: 45%;
    font-size: 3em;
    color: #fff;
    top:  0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s linear;
    box-sizing: border-box;
}
.zoomimg:hover:after {
    opacity: 1;
}

/*------------------------------------------------ Zoom Effect photos Ends--------------------------------------------------*/

/*------------------------------------------------ Zoom Effect album starts--------------------------------------------------*/



.album-zoomimg:hover {
    cursor: pointer;
    background-size: 150% 150%;
}

/*CSS to Add an Overlay*/

.album-zoomimg:after {
    position: absolute;
    background-color: rgba(0,0,0,.35);
    content:'\f00a';
    font-family: FontAwesome;
    padding-top: 40%;
    padding-left: 45%;
    font-size: 3em;
    color: #fff;
    top:  0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s linear;
    box-sizing: border-box;
}
.album-zoomimg:hover:after {
    opacity: 1;
}

/*------------------------------------------------ Zoom Effect album Ends--------------------------------------------------*/
