* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*  filter section start*/

@media (max-width:767px) {

    .filter-select,
    .filter-search {
        margin-bottom: 10px;
    }
}
/*  filter section end*/


/* gallery section start  */
.gallery label {
    display: flex;
    text-align: center;
    background-color: #eff1f2;
    text-transform: uppercase;
    /* padding: 10px; */
    color: #000;
    justify-content: center;
    min-height: 46px;
    line-height: 46px;
}

.gallery img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}


/* tabs */
.nav-pills {
    border-bottom: 1px solid #f1f1f1;
}

.nav-pills .nav-link.active {
    background: transparent;
    color: #dc3545;
    border-bottom: 2px solid #dc3545;
    border-radius: 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.nav-pills .nav-link {
    font-size: 1.6rem;
    font-weight: 600;
    color: #000;
    width: 100%;
}

@media (max-width:360px) {
    .nav-pills .nav-link {
        font-size: 1.4rem;
    }
    .nav-pills .nav-link.active{
        font-size: 1.4rem;
    }
}

/* gallery popup  */

.gallery-item {
    cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.popup a {
    text-decoration: none;
}

.popup-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border: 6px solid #fff;
    border-radius: 5px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 1.4rem;
    transition: 0.6s ease;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* birthday tab */
.birthday-venues {
    background-color: #f2f2f2;
}

.birthday-venues .images {
    transition: transform 0.3s ease, scale 0.3s ease;
    height: 21rem;
}

@media (max-width:991px) {
    .birthday-venues .images {
        text-align: center;
    }
}

.birthday-venues .images img {
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.birthday-venues .images:hover {
    transform: scale(1.1) translateY(-5px);
}

.birthday-venues .viedos {
    height: 21rem;

}

.birthday-venues .w-custom {
    border: 10px solid #fff;
}

.bg-yellow {
    background-color: #f7e338;
    padding: 0.3rem 1.4rem;
    border-radius: 20px;
}

/* pagination */
.pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.pagination .page-link {
    color: #dc3545;
    background-color: #ffffff;
    border-color: #dc3545;
}

/* gallery section end  */