/* ===== PAGE HEADER ===== */
/* .page-header{
    background: linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('images/gallery-banner.jpg') center/cover no-repeat;
    color:#fff;
} */

/* ===== FILTER BUTTONS ===== */
.gallery-filter {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-filter button {
    border: none;
    background: #f2f2f2;
    padding: 10px 22px;
    margin: 5px;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
}

.gallery-filter button.active,
.gallery-filter button:hover {
    background: #ff6a00;
    color: #fff;
}

/* ===== GALLERY CARD ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    /* object-fit: contain; */
    transition: .5s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    transition: .4s;
    text-align: center;
}

.gallery-overlay h5 {
    color: #fff;
}

.gallery-overlay i {
    font-size: 30px;
    margin-bottom: 10px;
    background: #ff6a00;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}