.ts-gallery .card {
    margin-bottom: 30px;
}

.ts-gallery__item-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.ts-gallery__item:hover .ts-gallery__item-description {
    opacity: 1;
}

.pagination .page-item .page-link {
    color: #343a40;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}
.btn.btn-outline-primary.filter-button {
    border-color: rgb(242, 108, 79);
    color: rgb(242, 108, 79);
}

.btn.btn-outline-primary.filter-button:hover,
.btn.btn-outline-primary.filter-button.active {
    background-color: rgb(242, 108, 79);
    border-color: rgb(242, 108, 79);
    color: #fff;
}