﻿
.product-grid {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    border: 2px dashed #fff;
    border-radius: 5px;
    transition: all .4s ease-in-out;
}

    .product-grid .product-links {
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        opacity: 0;
        transform: translateX(-50%) translateY(-50%);
        position: absolute;
        top: 60%;
        left: 50%;
        z-index: 1;
        transition: all .4s ease;
    }

    .product-grid:hover .product-links {
        opacity: 1;
        top: 50%;
    }

    .product-grid .product-links li {
        display: inline-block;
        margin: 0 2px;
        transition: all 0.5s ease-in-out;
    }

        .product-grid .product-links li a {
            color: #8bdf04;
            background: #fff;
            font-size: 16px;
            line-height: 52px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: block;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

            .product-grid .product-links li a:hover {
                color: #fff;
                background: #8bdf04;
            }

            .product-grid .product-links li a:before,
            .product-grid .product-links li a:after {
                content: attr(data-tip);
                color: #fff;
                background-color: #000;
                font-size: 12px;
                font-weight: 500;
                line-height: 12px;
                padding: 5px 10px;
                white-space: nowrap;
                display: none;
                transform: translateX(-50%);
                position: absolute;
                left: 50%;
                top: -32px;
                transition: all 0.3s;
            }

            .product-grid .product-links li a:after {
                content: '';
                height: 15px;
                width: 15px;
                transform: translateX(-50%) rotate(45deg);
                top: -24px;
                z-index: -1;
            }

            .product-grid .product-links li a:hover:before,
            .product-grid .product-links li a:hover:after {
                display: block;
            }

    .product-grid .product-content {
        padding: 20px 12px;
    }

 

@media screen and (max-width: 990px) {
    .product-grid {
        margin-bottom: 30px;
    }
}



.social {
    display: none;
}


.zoom {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

    .zoom:hover, .zoom:active, .zoom:focus {
        transform: scale(1.2);
        position: relative;
        z-index: 100;
    }

.btn:focus, .btn:active, button:focus, button:active {
    outline: none !important;
    box-shadow: none !important;
}

#image-gallery .modal-footer {
    display: block;
}

.thumb {
    margin-top: 15px;
    margin-bottom: 15px;
}
.card1 {
    padding: 22px;
    border-radius: 7px;
    box-shadow: 10px 2px 21px 0px #ff880e;
    border: 2px solid #979998;
}