.gallery-tabs {
    display: flex;
    gap: 15px 25px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: var(--figtree-font);
    margin-bottom: 40px;
}

.gallery-tab {
    padding: 5px 5px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: 0.3s ease all;
    font-size: var(--font-18);
    font-weight: 500;
}

.gallery-tab:hover{
    transition: 0.3s ease all;
    border-bottom: 3px solid var(--primary-color);
    color: var(--primary-color);
}

.gallery-tab.active {
    border-bottom: 3px solid var(--primary-color);
    color: var(--primary-color);
}

.gallery-item img{
    aspect-ratio: 3/2;
    object-fit: cover;
    width: 100%;
}


.vbox-close{
    top: 20px;
    right: 20px;
}


.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    display: block;
}

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    padding: 15px;
    transition: o.3s ease all;
}

.gallery-hover span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.gallery-image-wrapper:hover .gallery-hover {
    opacity: 1;
}


#load-more-gallery {
    font-family: var(--secondary-font);
}

