.palettes {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2em;
}


.palette-item {
    flex: 0 0 calc(20% - 4em);
    padding: 0;
    /*background-color: #E7E8EA;*/
    border: 1px solid #e7e8ea;
    background-position: right 16px;
    margin: 5px;
    border-radius: 8px;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    .palette-item {
        flex: 0 0 calc(50% - 6em);
    }
}

.show-more-btn {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px 0 8px;
    box-sizing: border-box;
}

.palette-item .bx_catalog_tile_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.palette-item .bx_catalog_tile_title {
    margin: 10px;
    text-align: center;
}
.palette-item .bx_catalog_tile_title a {
    color: #212B36;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    text-decoration: none;
    line-height: 20px;
    margin-top: 0.5em;
    display: block;
}