#itrfeaturedproducts .nav-tabs {
    justify-content: center;
    position: relative;
}

#itrfeaturedproducts .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
}

#itrfeaturedproducts .nav-tabs .nav-link.active {
    border-color: var(--pink-800);
}

#itrfeaturedproducts .nav-tabs .nav-link.active .itrfp__title {
    font-weight: 600;
}

#itrfeaturedproducts .nav-tabs:after {
    content: '';
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: var(--gray-200);
}

#featuredTabContent {
    padding-top: 16px;
}

.itrfp__title {
    display: block;
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    text-align: center;
    text-transform: uppercase;
}

.itrfp__subtitle {
    display: block;
    color: var(--gray-900);
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
}

@media(max-width:767px) {
    #itrfeaturedproducts .nav-tabs .nav-item {
        width: calc(100% / 3);
    }

    #itrfeaturedproducts .nav-tabs .nav-link {
        padding-left: 8px;
        padding-right: 8px;
    }

    .itrfp__title {
        display: block;
        color: var(--gray-900);
        font-size: 14px;
        font-weight: 500;
        line-height: 150%;
        text-align: center;
        text-transform: uppercase;
    }
}