.tab-group-section {
    margin-top: 24px;
}

.tab-group-section .tab-group-section-inner {
    max-width: 587px;
}

.tab-group-section .tab-group-section-inner .tab-button-section {
    margin-bottom: 24px;
}

.tab-group-section .tab-group-section-inner .tab-button-section .tab-button-section-inner {
    border-bottom: 1px solid var(--iron_gray_20);
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    gap: 15px 24px;
    list-style: none;
}

.tab-group-section .tab-group-section-inner .tab-button-section .tab-button-section-inner .tab-button {
    font-family: var(--font_Avenir_Next_Demi_Bold);
    font-size: 13px;
    line-height: 19.5px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    margin-bottom: 4px;
    position: relative;
    transition: all 0.5s ease-in-out;
}

.tab-group-section .tab-group-section-inner .tab-button-section .tab-button-section-inner .tab-button:hover {
    color: var(--stone);
}

.tab-group-section .tab-group-section-inner .tab-button-section .tab-button-section-inner .tab-button:before {
    display: none
}

.tab-group-section .tab-group-section-inner .tab-button-section .tab-button-section-inner .tab-button:after {
    content: "";
    width: 0;
    border-bottom: 1px solid var(--iron_gray);
    position: absolute;
    bottom: -4.8px;
    left: 0;
    transition: width 0.3s ease;
}

.tab-group-section .tab-group-section-inner .tab-button-section .tab-button-section-inner .tab-button.active {
    font-family: var(--font_Avenir_Next_Bold);
}

.tab-group-section .tab-group-section-inner .tab-button-section .tab-button-section-inner .tab-button.active:after {
    width: 100%;
}

.tab-group-section .tab-group-section-inner .tab-content-section .tab-content-item {
    display: none;
}

.tab-group-section .tab-group-section-inner .tab-content-section .tab-content-item.active {
    display: block;
}

.tab-group-section .tab-group-section-inner .tab-content-section .tab-content-item p {
    font-size: 15px;
}

.tab-group-section .tab-group-section-inner .tab-content-section .tab-content-item .grid-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 8px;
}

.tab-group-section .tab-group-section-inner .tab-content-section .tab-content-item .grid-content .grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 8px;
}

.tab-group-section .tab-group-section-inner .tab-content-section .tab-content-item .grid-content .grid-item .logo-image-section img {
    width: 48px;
    object-fit: cover;
    object-position: center;
    height: 48px;
}

.tab-group-section .tab-group-section-inner .tab-content-section .tab-content-item .grid-content .grid-item .logo-heading-section {
    font-family: var(--font_Avenir_Next_Medium);
    text-transform: uppercase;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.8px;
    margin-top: auto;
}



@media (max-width:1199px) {

    .tab-group-section .tab-group-section-inner .tab-content-section .tab-content-item .grid-content {
        row-gap: 15px;
    }
}

@media (max-width:767px) {
    .tab-group-section .tab-group-section-inner .tab-button-section .tab_button_section {
        overflow-x: scroll;
        border-bottom: 1px solid var(--iron_gray_20);
    }

    .tab-group-section .tab-group-section-inner .tab-button-section .tab_button_section::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .tab-group-section .tab-group-section-inner .tab-button-section .tab-button-section-inner {
        flex-wrap: nowrap;
    }

    .tab-group-section .tab-group-section-inner .tab-button-section .tab-button-section-inner .tab-button {
        white-space: nowrap;
        word-break: normal;
    }

    .tab-group-section .tab-group-section-inner .tab-button-section .tab-button-section-inner .tab-button:after {
        bottom: -3.8px;
    }

    .tab-group-section .tab-group-section-inner .tab-button-section .tab-button-section-inner {
        border-bottom: medium none;
    }

    /* .tab-group-section .tab-group-section-inner .tab-button-section .tab_button_section .tab-button-section-inner {
        min-width: 500px;
    } */
}

@media (max-width:575px) {
    .tab-group-section .tab-group-section-inner .tab-content-section .tab-content-item .grid-content {
        grid-template-columns: repeat(2, 1fr);
    }
}