.n-tab {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 32px;
}
.n-tabs_m{
    display: none;
}
.n-tab div {
    position: relative;
    text-align: center;
    color: #6A6B6D;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    padding: 12px 32px;
    cursor: pointer;
}

.n-tab div::after {
    content: '';
    display: block;
    left: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #E3E5E6;
}

.n-tab div.n-tab-active {
    color: #2A2B2E;
    font-weight: 700;
    line-height: 150%;
}

.n-tab div.n-tab-active::after {
    content: '';
    display: block;
    left: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #e60039;
}
@media screen and (max-width:1280px) { 
    .n-tab div {
        font-size: 16px;
    }
}
@media screen and (max-width:768px) {
    .n-tab{
        display: none;
    }
    .n-tabs_m{
        display: block;
        padding: 12px 10px;
        background: #E4E8EB;
        margin-bottom: 12px;
        margin-top: 20px;
        font-size: 16px;
        border-bottom: 1px solid #D5D5D5;
        color: var(--neutra-color);
    }

    .n-tabs-active_m{
        color: #2A2B2E;
        border-bottom: 1px solid var(--standard-red-color);
        font-weight: 700;
    }
    .n-tabs_m img{
        width: 24px;
        float: right;
    }
    .n-tabs-active_m img{
        transform: rotate(-90deg);
    }
}