/* collection-tab-grid-section css start */
/* tab css start */
.collection-tab-grid-section .container {
    max-width: 100%;
}

.tab-wrapper .section-sub-heading {
    text-align: center;
}

.tab-navs {
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 30px;
    padding: 5px;
    backdrop-filter: blur(40px);
    position: sticky;
    top: 72px;
    z-index: 8;
    background: var(--overlay4);
    border-radius: 50px;
}

.tabs-nav-item-link {
    color: var(--btn-bg);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--paragraph-font);
    line-height: 100%;
    display: block;
    border-bottom: 0;
    text-wrap: nowrap;
    text-transform: capitalize;
    padding: 10px 20px;
    border-radius: 50px;
}

[data-theme="dark"] .tabs-nav-item-link {
    color: var(--black);
}

.tabs-nav-item-link:hover {
    background: var(--brand-color);
    color: var(--white);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000;
}

[data-theme="dark"] .tabs-nav-item-link:hover {
    color: var(--black);
}

.tab-nav-item.active .tabs-nav-item-link {
    background: var(--brand-color);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),   0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .tab-nav-item.active .tabs-nav-item-link {
    color: var(--black);
}

.tab-content-items {
    padding: 20px 0 0 0;
}

.tab-content-text {
    margin: 15px 0 0 0;
    max-width: 1062px;
}

.tab-content-text:first-child {
    margin: 0;
}

/* tab css end */
.collection-tab-grid-wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

/* collection-tab-grid-section css end */
@media only screen and (max-width: 1260px) {

    /* collection-tab-grid-section css start */
    .collection-tab-grid-wrap {
        grid-template-columns: repeat(4, 1fr);
    }

    /* collection-tab-grid-section css end */
}

@media only screen and (max-width: 992px) {

    /* collection-tab-section start */
    .collection-tab-section .container {
        padding: 0 0 0 20px;
    }

    /* collection-tab-section end */

    /* collection-tab-grid-section css start */
    .collection-tab-grid-wrap {
        grid-template-columns: repeat(3, 1fr);
    }

    /* collection-tab-grid-section css end */
}

@media only screen and (max-width: 767px) {

    /* collection-tab-section start */
    .tab-navs {
        gap: 20px;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .tabs-nav-item-link {
        font-size: 20px;
    }

    /* collection-tab-section end */

    /* collection-tab-grid-section css start */
    .collection-tab-grid-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* collection-tab-grid-section css end */
}


@media only screen and (max-width: 575px) {

    /* collection-tab-grid-section css start */
    .tab-navs {
        gap: 10px;
        top: 52px;
    }

    .tabs-nav-item-link {
        font-size: 14px;
        padding: 8px 16px;
    }

    /* collection-tab-grid-section css end */

}