
.top-aut{
    padding-top: 80px;
    padding-bottom: 40px;
}
.top-aut .name{
    font-size: 18px;
    color: #f11a28;
     margin-bottom: 10px;
    
}
.tabs {
    margin: 0px auto;
}

.tab-header {
    position: relative;
    display: flex;
    justify-content: flex-start;
}
.tab-header:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100vw; /* Полная ширина страницы */
    height: 1px; /* Толщина бордера */
    background-color: #c81f2c;
/*    z-index: 1;  За текстом */
}
.tab-header:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 100vw; /* Полная ширина страницы */
    height: 1px; /* Толщина бордера */
    background-color: #c81f2c;
/*    z-index: 1;  За текстом */
}

.tab-btn {
    z-index: 1;
    position: relative;
    margin-right: 10%;
    padding: 0 20px;
    font-family: 'Oxanium', sans-serif;
    line-height: normal;
    border-radius: 8px;
    color: #fff;
    background: #1d2933;
    border: 1px solid #f11a28;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s;
    height: 40px;
}
.tab-btn:last-child{
    margin-right: 0%;
}
.tab-btn.active {
    color: #ff3b3b;
    background-color: #000000;
    border: 1px solid #ffffff;
}

.tab-btn:hover {
    background-color: #4e1412;
    color: #ffffff;
}

.tab-content {
    margin-top: 40px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h2 {
    padding-left: 20px;
    font-size: 16px;
    margin-bottom: 10px;
    color: #ff3b3b;
}

.tab-panel p {
    margin-bottom: 40px;
    padding: 20px;
    font-size: 14px;
    border-radius: 8px;
    line-height: 1.5;
    color: #adadad;
    background-color: #000000;
}