.sectionCatalog__right--brand{
    margin: 100px 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    max-width: 800px;
}

.brand-header{
    font-weight: 700;
    font-size: 33px;
    color: #383639;
    margin-bottom: 50px;
    font-family: Montserrat;
}

.bannerLink {
    text-decoration: none;
    color: #383639;
}
.bannerLink:hover {
    text-decoration: none;
    color: #383639;
}

.block {
    width: 192px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #E6E6E6;
    font-size: 16px;
    font-family: Montserrat;
    line-height: 19.5px;

    p{
        margin: 10px;
    }
}

.block img {
    width: 100px;
    height: 100px;
}

@media (max-width: 1600px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
        margin: auto;
    }
}

@media (max-width: 800px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        margin: auto;
    }
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        margin: auto;
    }
}

@media (max-width: 400px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
        width: 192px;
        margin: auto;
    }
}