

.zoom-in {
    position: relative;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    margin-bottom: -1px;
}

    .zoom-in,
    .zoom-in * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .zoom-in a:first-child {
            color: #333;
        }

            .zoom-in a:first-child:hover {
                text-decoration: none;
            }

        .zoom-in img {
            width: 100%;
            height: 100%;
        }

        .zoom-in .info {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: center;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

.zoom-in {
    overflow: hidden;
}

    .zoom-in .img {
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .zoom-in .info {
        background: rgba(0, 0, 0, 0.6);
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.35s ease-in-out;
        -moz-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
    }

    .zoom-in.white .info {
        background: rgba(255, 255, 255, 0.6);
    }

    .zoom-in .info img {
        width: 140px;
        height: auto;
        margin: 37px 0 20px;
    }

        .zoom-in .info img.middle {
            margin-top: 18%;
        }

    .zoom-in .info h3 {
        color: #fff;
        text-align: center;
        font-size: 17px;
        padding: 10px;
        margin: 40px 0 0 0 !important;
    }

    .zoom-in .info p, .zoom-in .info a {
        font-style: italic;
        font-size: 14px;
        position: relative;
        color: white;
        padding: 7px 20px;
        text-align: center;
        font-family: b yekan;
    }

    .zoom-in.white .info a {
        color: black;
    }

    .zoom-in.white .info a.submitstylepage{
        color: white;
    }

    .zoom-in .info p a {
        font-size: 17px;
        line-height: 30px;
    }


    .zoom-in:hover .img {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }

        .zoom-in:hover .img .image-desc {
            display: none;
        }

    .zoom-in:hover .info {
        visibility: visible;
        opacity: 1;
    }

    .zoom-in .image-desc {
        position: absolute;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        color: white;
        background-color: RGBA(0, 0, 0, 0.84);
        padding: 6px 14px;
        font-size: 16px;
        font-family: b homa;
        border-radius: 2px;
    }


        .zoom-in .image-desc h2 {
            font-size: 18px;
            font-family: b homa;
        }
