﻿@import url("colors.css");

@media screen and (max-width: 767px) {
    .products-row {
        margin-bottom: 0;
        box-shadow: none;
        border-bottom: none;
    }
}

.products-row .products-row-item {
    padding: 0 25px 30px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 33%;
}

@media screen and (max-width: 991px) {
    .products-row .products-row-item {
        padding: 0 15px 30px;
        width: 49%;
    }
}

@media screen and (max-width: 767px) {
    .products-row .products-row-item {
        padding: 0 25px 30px;
        border-bottom: 1px solid #cccccc;
        margin-bottom: 30px;
        width: 100%;
    }
}

.products-row .products-row-item img {
    margin-left: -20px;
    margin-bottom: 15px;
}

.products-row h4 {
    color: var(--color-primary-dark);
    font-size: 18px;
    font-weight: 600;
    font-family: 'Glober';
}

.products-row h5 {
    color: var(--color-secondary-dark);
    font-size: 15px;
    font-weight: 600;
}

legend {
    margin-bottom:-10px;
}