﻿/* Product image gallery */
.SIN-gallery {
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    margin: 0 auto;
    background-color: #eee;
    /* background-image: url('');*/
    background-attachment: fixed;
    background-position: center;
}

    .SIN-gallery section {
        width: 1200px;
        padding-left: 30px;
        margin: 50px auto;
        height: auto;
        position: relative;
    }

    .SIN-gallery h2 {
        font-size: 42px;
        color: #f58025;
        line-height: 42px;
        font-weight: 300;
        padding-bottom: 15px;
    }

    .SIN-gallery .product {
        overflow: hidden;
        position: relative;
        display: block;
        margin: 5px;
        border-radius: 6px;
        border: 1px solid #888;
        padding-bottom: 20px;
        text-decoration: none;
    }

        .SIN-gallery .product h3 {
            font-size: 20px;
            font-weight: 400;
            text-decoration: none;
        }

        .SIN-gallery .product:hover .mask {
            opacity: 1;
        }

            .SIN-gallery .product:hover .mask .info {
                -moz-transform: none;
                -o-transform: none;
                -ms-transform: none;
                -webkit-transform: none;
                transform: none;
            }

            .SIN-gallery .product:hover .mask .btn-see-project {
                -moz-transform: none;
                -o-transform: none;
                -ms-transform: none;
                -webkit-transform: none;
                transform: none;
            }

        .SIN-gallery .product:hover .pic {
            -moz-transform: scale3d(1.1, 1.1, 1.1);
            -o-transform: scale3d(1.1, 1.1, 1.1);
            -ms-transform: scale3d(1.1, 1.1, 1.1);
            -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
        }

        .SIN-gallery .product .mask {
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            background: rgba(55, 55, 55, 0.9);
            opacity: 0;
            z-index: 9;
            color: #fff;
            text-align: center;
            -webkit-transition: all 0.35s ease;
            -moz-transition: all 0.35s ease;
            -ms-transition: all 0.35s ease;
            -o-transition: all 0.35s ease;
            transition: all 0.35s ease;
        }

            .SIN-gallery .product .mask .info {
                display: block;
                -moz-transform: translateY(-8px);
                -o-transform: translateY(-8px);
                -ms-transform: translateY(-8px);
                -webkit-transform: translateY(-8px);
                transform: translateY(-8px);
                -webkit-transition: all 0.35s ease;
                -moz-transition: all 0.35s ease;
                -ms-transition: all 0.35s ease;
                -o-transition: all 0.35s ease;
                transition: all 0.35s ease;
            }

            .SIN-gallery .product .mask h3 {
                margin-top: 70px;
                font-size: 22px;
                font-weight: 400;
            }

            .SIN-gallery .product .mask p {
                color: #fff;
                font-size: 15px;
                font-weight: 600;
            }

            .SIN-gallery .product .mask .btn-see-project {
                display: inline-block;
                margin-top: 30px;
                border: 1px solid #fff;
                padding: 9px 16px;
                border-radius: 3px;
                text-transform: uppercase;
                font-weight: 600;
                font-size: 12px;
                letter-spacing: 0.8px;
                -moz-transform: translateY(8px);
                -o-transform: translateY(8px);
                -ms-transform: translateY(8px);
                -webkit-transform: translateY(8px);
                transform: translateY(8px);
                -webkit-transition: all 0.35s ease;
                -moz-transition: all 0.35s ease;
                -ms-transition: all 0.35s ease;
                -o-transition: all 0.35s ease;
                transition: all 0.35s ease;
            }

        .SIN-gallery .product .pic {
            display: flex;
            position: relative;
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
            background-image: linear-gradient(0deg, rgba(220, 220, 220, 1) 0, rgba(220, 220, 220, 0.0) 100%);
            height: 240px;
            width: 100%;
            margin-bottom: 20px;
            float: left;
            -webkit-transition: all 0.35s ease;
            -moz-transition: all 0.35s ease;
            -ms-transition: all 0.35s ease;
            -o-transition: all 0.35s ease;
            transition: all 0.35s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .SIN-gallery .product .pic img {
                max-width: 100%;
                max-height: 240px;
            }

    .SIN-gallery .text {
        overflow: hidden;
        position: relative;
        display: block;
        margin: 5px;
        border: none;
        padding: 20px;
        text-decoration: none;
    }

        .SIN-gallery .text h3 {
            font-size: 32px;
            font-weight: 300;
            color: #f58025;
            text-decoration: none;
            margin-bottom: 20px;
            text-align: left;
        }

        .SIN-gallery .text p {
            margin-bottom: 30px;
        }

@media (max-width: 1200px) {
    .SIN-gallery section {
        width: 100%;
        padding-right: 30px;
    }
}

}
