.gallery-switch {
    padding: 15px;
}

.filter-btn {
    padding: 6px 12px;
    margin-right: 6px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
    font-size: 12px;
}

.filter-btn.active {
    background: #8B1A1A;
    color: white;
    border-color: #8B1A1A;
}


.gallery {
    padding: 10px;
    width: 100%;
}

.item {
    width: 200px;
    margin-bottom: 10px;
    float: left;
    display: block;
    border-radius: 3px;
    overflow: hidden;
}

.item img {
    width: 100%;
    display: block;
    transition: transform 0.25s ease;
}

.item img:hover {
    transform: scale(1.05);
}


.gallery-switch {
    margin-bottom: 12px;
}

.filter-btn {
    padding: 6px 10px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
}

.filter-btn.active {
    background: #8B1A1A;
    color: white;
    border-color: #8B1A1A;
}







@media (max-width: 390px) {

    .item {
        width: 170px;
    }
}



@media (min-width: 391px) and (max-width: 600px) {

    .item {
        width: 170px;
    }
}




@media (min-width: 601px) and (max-width: 1250px) {

    .item {
        width: 170px;
    }
}