.gallery-img, .gallery-img img {
    width: 100%
}

.gallery-img {
    position: relative;
    overflow: hidden;
}

    .gallery-img img {
        transform: scaleY(1);
        transition: all 0.7s ease-in-out 0s;
        display: block;
        position: relative;
        max-height:240px;
    }

    .gallery-img .hover-effect {
        opacity: 0;
        transition: all 0.5s linear 0s;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        top: 0
    }

.zoom-icon a {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    z-index: 99;
    width: 50px;
    height: 50px;
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 50px;
    border: 1px solid #fff;
    margin: 0 auto;
}

    .zoom-icon a:hover {
        color: #fff;
        border-color: #fff;
    }

.gallery-img:hover img {
    transform: scale(1.5);
}

.gallery-img:hover .hover-effect {
    opacity: 1;
}

.gallery-img:hover h2, .gallery-img:hover p {
    opacity: 1;
    transform: scale(1);
}

.video-gallery {
    display: block;
    overflow: hidden;
    height: 215px
}
