.collections_block{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 0.5fr));
    grid-column-gap: 10px;

    display: -ms-grid;
    -ms-grid-columns: 1fr 10px 1fr;
    -ms-grid-rows: auto;
}

@media all and (max-width: 617px) {
    .collections_block{
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.collection_item{
    -ms-grid-row: 1;
    margin-bottom: 30px;
}

.collection_item.col1{
    -ms-grid-column: 1;
}

.collection_item.col2{
    -ms-grid-column: 3;
}

.collection_item__name_block{
    display: block;
    text-align: right;
    margin: 5px 10px;
}

.collection_item__name, .collection_item__brand{
    display: block;
}

.collection_item__name{
    font-size: 28px;
    margin: 10px 0 1px;
}

.collection_item__brand{
    color: #888888;
    font-size: 18px;
}

.collection_item__brand span{
    font-size: 12px;
}

.photo_slider__item{
    height: 300px!important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
