.nt-tabs {
    display: inline-flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 100px -20px #666;
}
.nt-tab {
    background: white;
    font-family: inherit;
    border: none;
    padding: 18px 30px;
    color: #141613;
    font-size: 1.125rem;
    transition: .3s;
}
.nt-tab.active {
    background: var( --e-global-color-secondary );
    color: white;
}

@media (max-width: 767px) {
    .nt-tab {
        padding: 12px 18px;
        font-size: 1rem;
    }
}