.featured {
    background-color: var(--bg-color);
}

.nav-pills li{
    font-weight: 700;
    font-size: 22px;
    padding: 15px;
    margin: 0;
    list-style: none;
    cursor: pointer;
    float: left;
    width: 33.333%;
    text-align: center;
    color: #0c0d0fde;
    background-color: none;
    border-bottom: 3px solid var(--border-color-light);
}
.featured .nav-pills .active {
    /* margin-bottom: -1px; */
    border-bottom: 3px var(--primary) solid;
    color: var(--primary);
} 
.featured .nav-pills .nav-link {
    color: var(--title-color);
    background-color: var(--bg-color);
}
.tab-content {
    margin: 20px 0;
}
.tab-content h3{
    color: var(--title-color);
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
}
.tab-content p{
    color: var(--text-color);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24.5px;
}
.tab-content .theme-button{
    transition: 0.3s ease-out;
    display: inline-block;
    line-height: 52px;
    font-weight: 700;
    font-size: 14px;
    margin: 0px;
    padding: 0px 30px;
}
.col-md-6 img{
    border-radius: 6px;
    transform: translateY(0);
    transition: all 0.3s;
    max-width: 100%;
    height: auto;
}
.col-md-6 img:hover{
    transform: translateY(-10px);
}
