.container-tabs {
    width: 100%;
    margin: auto;
    padding-bottom: 0;
    border-bottom: 1px solid #dee2e6;
    height: 65px;
}

.container-tabs ul.nav.nav-tabs {
    padding: 0;
    border-bottom: initial;
}

.container-tabs .nav-tabs .nav-item, .container-tabs .nav-tabs .nav-item:last-of-type  {
    padding: 0;
}

.container-tabs .nav-tabs a {
    font-size: 20px;
    font-family: var(--fuente-montserrat);
    display: inline-flex;
    font-weight: 400;
    color: #A8A89D;
    margin-right: 30px;
    margin-bottom: -2px;
    align-items: center;
    justify-items: center;
    transition: all 0.3s ease;
    padding-right: 10px;
    height: 65px;
}

.container-tabs .nav-tabs .active a {
    color: var(--naranja);
    border-bottom: 4px solid var(--naranja);
    font-size: 23px;
}

.container-tabs .nav-tabs a:hover {
    text-decoration: none;
}

.container-tabs .nav-tabs a p {
    margin: 0;
}

.container-tabs .link-on-right {
    font-size: 14px;
    margin: auto;
    float: right;
    display: flex;
    align-items: center;
    height: 100%;
}

@media (max-width: 768px) {
    .container-tabs .nav-tabs .active a {
        font-size: 16px;
        line-height: 19px;
    }

    .container-tabs .nav-tabs a {
        font-size: 16px;
        margin-right: 12px;
    }

    .container-tabs {
        height: fit-content;
    }
}
