*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: sans-serif;
}
a{
    color: black;
}

html, body{
    height: 100%;
    width: 100%;
}
 .interest-header{
    position: relative;
    height: 50vh;
    width: 100%;
}
.interest-header .interest-bg{
    position: absolute;
    background-image: url("https://img.freepik.com/free-photo/saving-money-car-trade-car-cash_1150-18254.jpg?size=626&ext=jpg");
    background-position: center 90%;
    background-size: cover;
    height: 100%;
    width: 100%;
}
.interest-header h1, .interest-header h1 span{
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 800;
    <!-- color: black; -->
}

.breadcrumb li{
    font-size: 20;
}
.interest-header .subtitle{

    color: white;
    position: absolute;
    top: 50%;
    margin-left: 2%;
    font-size: 1.5rem;
    font-weight: 500;
}
.subtitle p{
    font-size:.8rem;
    font-weight: 300;
}


.interest-nav{
    min-height: 100vh;
    width: 90%;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: auto;
    padding: 2rem 6rem;
    border-radius: 1.5rem;
}
.interest-nav nav ol li:last-child{
    font-weight: 600;
    font-size: 1rem;
    color: green ;
}
.main1{
    margin-top: 3rem;
}
.main1 .interest-titles{
    display: flex;
    gap: 5rem;
    justify-content: center;
    align-items: center;
    /* position: relative; */
    margin-bottom: 2rem;

}
.interest-titles .tab-links{
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}


.tab-links::after{
    content: "";
    width: 0;
    height: 5px;
    border-radius: 1rem;
    background: #ababab;
    position: absolute;
    left: 3rem;
    bottom: -2rem;
    transition: all ease .5s;
 }

 .tab-links.active-link{
     position: relative;
    font-weight: 900;
    color: green;
}
 .tab-links.active-link::after{
     width: 50%;
    }
    .fa-circle{
        font-size: .4rem;
    }

 .table thead{
    text-align: center;
    font-weight: 300;
 }

.tab-contents{
    margin-top: 2rem;
}

tbody tr td{
    font-size: 1rem;
}
thead tr th{
    color: black;
    background-color: #C5E1A5 !important;
    font-weight: 300;
    font-size: 1.3rem;

}
.table {
    width: 100% !important;
    margin: auto;
    margin-bottom: 1rem;
    vertical-align: top;
    border-color: var(--bs-table-border-color);
}
.interest-section{
    background: #f8f8f8;
    padding: 2rem 0;
}
.tab-contents{
    display: none;
}
.tab-contents h4{
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}
.tab-contents.active-tab{
    transition: all ease 1s;

    display: block;
}
.interest-info{
    font-size: 1rem;
    width: 100%;
    margin: auto;
}
.interest-info h5{
    font-size: 1rem;
    font-weight: 600;
    color: green;
    text-align: left;
}

@media only screen and (max-width: 1000px){
    .interest-nav {
    width: 93%;
    padding: 1.8rem 1.8rem;
    border-radius:1rem;
}
.main1 .interest-titles {
    display: flex;
    gap: 0rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.main1 .interest-titles svg{
    margin: 0 10px;
}
thead tr th {
    font-size: 1rem;
}
tbody tr td {
    font-size: 0.8rem;
}
}
@media only screen and (max-width: 500px){
    .breadcrumb li{
        font-size: 1rem !important;
    }
    .interest-titles .tab-links {
    font-size: 0.8rem !important;
}
.main1 .interest-titles svg{
    margin: 0 6px;
}
thead tr th {
    font-size: 0.8rem;
}
tbody tr td {
    font-size: 0.7rem;
}
.interest-info {
    font-size: 0.8rem;
}
.interest-header {
    position: relative;
    height: 30vh;
    width: 100%;
}
.interest-header h1, .interest-header h1 span {
    font-size: 2rem;
}
}
