.tabs {
    position: relative;
}
section.katalog_block .tabs__content.list {
    display: none; /* по умолчанию прячем все блоки */
    transition: all 1s ease;
}
section.katalog_block .tabs__content.list.active {
    display: flex; /* по умолчанию показываем нужный блок */
    transition: all 1s ease;
}
.tabs__caption {
    margin: 50px 0;
    padding: 0;
}
.tabs__caption li {
    display: inline-block;
    vertical-align: top;
    width: auto;
    background-color: #EFEFEF;
    padding: 8px 20px;
    border-radius: 30px;
    margin: 8px 2px;
    font-size: 14px;
    font-family: 'Inter';
    transition: 0.3s;
    border: 1px solid #11111100;
    text-decoration: none;
    cursor: pointer;
}
.tabs__caption li:hover {
    background: #FFC300;
    border: 1px solid #111111;
}
.tabs__caption li.active {
    background: #fff;
    border: 1px solid #111111;
    pointer-events: none;
}
.tabs__content {

}
.tabs__button {
    margin: 20px 0 50px;
    width: 100%;
    text-align: center;
}