.wares {
    margin-bottom: 200px;
}

.wares-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: 40px;
}
.wares-item__title {
    height: 107px;
    display: flex;
    justify-content: center;
    padding: 0 24px 0 24px;
    text-align: center;
    align-items: center;
    background: #fff;
    color: #000;
    font-family: 'Lato';
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
}
.wares-item {
    display: block;
    text-decoration: none;
    box-shadow: 12px 4px 24px rgba(0, 0, 0, 0.08);
}
.wares-img {
    display: flex;
    width: 100%;
    height: 211px;
}
.wares-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wares-title {
    font-family: 'Oswald';
    font-weight: bold;
    font-size: 40px;
    line-height: 60px;
    color: #434343;
    margin-bottom: 56px;
}


@media (max-width: 1024px) {
    .wares-items {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .wares-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .wares-title {
        font-size: 28px;
        line-height: 36px;
        /* margin-bottom: 60px; */
    }
    .wares-item__title {
        height: 60px;
    }
    /* .wares {
        margin-bottom: 100px;
    } */
}

@media (max-width: 560px) {
    .wares-items {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
}