.browse-products.margin-browse-products .item {
    margin-bottom: 70px;
    display: flex;
}
@media(max-width:767px){
    .browse-products.margin-browse-products .item{
        margin-bottom: 50px;
    }
}
.browse-products .item {
    overflow: visible;
    /* margin-bottom: 120px; */
}

.browse-products .item .descr {
    padding-left: 40px;
}

.browse-products .item picture, .item picture {
    display: block;
    position: relative;
}

.browse-products .item picture img, .item picture img {
    position: relative;
    /* z-index: 20; */
    width: 100%;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.browse-products .item picture:hover img {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.browse-products .item .btn {
    background-color: transparent;
    color: var(--blue)!important;
    font-size: 16px;
    margin-top: 20px;
    font-family: 'Roboto-Medium', sans-serif;
    border: 1px solid var(--blue);
    padding: 0 30px;
}

.browse-products .item h3 {
    font-size: 36px;
    line-height: 36px;
    color: #343a40;
    margin-bottom: 30px;
    margin-top: 10px;
    text-align: start;
    padding: 0;
    text-transform: capitalize;
}

@media only screen and (max-width: 768px){
    .item-inverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .browse-products .item h3 {
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .browse-products .item .descr {
        padding-left: 0;
    }
    .browse-products .item p {
        line-height: 24px;
    }
}
