.tab-content {
    display: none;
}

.tab-btn.active {
    background-color: #202020;
    color: white;
}

.tab-controls {
    position: sticky;
    top: 80px;
    z-index: 1;
}

.tabs-btn {
    display: flex;
    width: fit-content;
    border-radius: 12px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); 
    color: black;
}

.tabs button {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    width: 186px;
    height: 48px;
    cursor: pointer;
    transition: .3s;
}

.tabs button {
    border-radius: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tabs button:first-child {    
    border-radius: 12px 0 0 12px;
}

.tabs button:last-child {    
    border-radius: 0 12px 12px 0;
}


@media screen and (max-width: 1000px) {
    .tabs-btn {

        overflow-x: auto;
        width: auto;
        
    }

    .tabs button {
        font-size: 14px;
        line-height: 24px;
        width: 120px;
        min-width: 120px;
        height: 40px;
    }
}

@media screen and (max-width: 650px) {
    .tabs-btn { 
        color: black !important;
    }
}