.stoleshnitsy-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 212px));
    justify-content: center;
    gap: 50px;
}
.stoleshnitsy-main-img {
    display: block;
    height: 138px;
    width: auto;
    margin-bottom: 17px;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}
.stoleshnitsy-main-name {
    display: block;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    margin-bottom: 6px;
}
.stoleshnitsy-main-desc {
    max-width: 100%;
    width: max-content;
    font-size: 14px;
    font-weight: 300;
}
@media (max-width: 620px) {
    .stoleshnitsy-main {
        grid-template-columns: repeat(auto-fit, minmax(120px, 280px));
    }
}
@media (max-width: 375px) {
    .stoleshnitsy-main {
        grid-template-columns: repeat(auto-fit, 100%);
    }
}