/* products section start */
.products_section {
    padding: 75px 0 55px;
    background: #fff;
}
.products_section .products_box {
    transition: all .2s;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.products_section .products_gallery {
    overflow: hidden;
    display: block;
    height: 380px;
    width: 100%;
}
.products_section .products_box:hover .products_gallery img {transform: scale(1.02);}
.products_section .products_gallery img {
    transition: all .2s;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.products_section .products_title {
    border: 3px solid #F5F5F5;
    padding: 20px 20px 15px;
    position: relative;
    border-left: none;
    border-top: none;
}
.products_section .products_box:hover .products_title::after {bottom: 0;}
.products_section .products_title::after {
    display: inline-block;
    transition: all .2s;
    background: #F2F2F2;
    position: absolute;
    bottom: -100%;
    height: 100%;
    content: '';
    width: 100%;
    left: 0;
}
.products_section .products_title .article {
    position: relative;
    z-index: 999;
}
.products_section .products_title h4 a {
    /*text-overflow: ellipsis;*/
    display: inline-block;
    white-space: normal;
    transition: all .2s;
    margin-bottom: 10px;
    font-weight: 600;
    overflow: hidden;
    font-size: 22px;
    color: #000;
    width: 100%;
}
.products_section .products_title h5 {
    font-weight: 500;
    color: #515151;
    font-size: 16px;
}
.products_section .products_title h4 a:hover,
.products_section .products_title h5 span {color: #B30101;}
/* products section end */
