@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Roboto&display=swap');

/* Tabs  */
.horizontal-tabs {
    margin: 50px auto;
    margin-bottom: 100px;
    text-align: center;
    justify-content: center;
}

.horizontal-tabs .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #000000;
    background-color: #f2b10d;
}


.horizontal-tabs .nav-pills {
    justify-content: center;
    --bs-nav-pills-link-active-bg: #f2b10d;
    border: none;
}

.horizontal-tabs .nav-pills .nav-item {
    float: none;
    position: relative;
}

.horizontal-tabs .nav {
    --bs-nav-link-color: #f2b10d;
    --bs-nav-link-hover-color: #f2b10d;
    padding: 0 20px;
}

.horizontal-tabs .nav .nav-link {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 10px;
    height: 60px;

}

/* Tab Content  */
.horizontal-tabs .tab-content .tab-pane {
    line-height: 25px;
    text-align: left;
    padding: 5px 20px;
}

.horizontal-tabs .tab-content .tab-pane h2 {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #f2b10d;
}

.horizontal-tabs .tab-content .tab-pane p {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #FBFBFB;
    line-height: 1.5;
}

/* Responsive  */
@media only screen and (max-width: 445px) {
    .horizontal-tabs .nav .nav-link {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .horizontal-tabs .tab-content .tab-pane h2 {
        font-size: 26px;
        margin: auto;
        padding: 20px 0;
    }
    
    .horizontal-tabs .tab-content .tab-pane p {
        margin: auto;
    }

    .horizontal-tabs .nav-pills {
        display: block;
        margin: 20px 0;
    }

    .horizontal-tabs {
        display: block;
    }

}