﻿/*	general	*/

section-gallery {
    border: 1px solid var(--gray-300, #D0D5DD);
    background: var(--gray-50, #F9FAFB);
    padding: 10px 0px;
}

.gallery_product {
    margin: 0px;
    padding: 0;
    position: relative;
}

    .gallery_product .img-info {
        position: absolute;
        background: rgba(0, 73, 135, 0.7);
        left: 0;
        bottom: 0;
        padding: 20px;
        overflow: hidden;
        color: #fff;
        top: 0;
        display: none;
        -webkit-transition: 2s;
        transition: 2s;
    }

    .gallery_product:hover .img-info {
        display: grid;
        -webkit-transition: 2s;
        transition: 2s;
    }

/*	end gallery */
