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

:root {
    --primary-color: #17202a;
    --secondary-color: #f2b10dcc;
    --shadow-color: #9d9fb3;
    --white-color: #fbfbfb;
  }

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

.horizontal-tabs .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #0C0C0F;
    background-color: var(--secondary-color);
    opacity: 0.8;
}


.horizontal-tabs .nav-pills {
    justify-content: center;
    --bs-nav-pills-link-active-bg: var(--secondary-color);
    border: none;
}

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

.horizontal-tabs .nav {
    --bs-nav-link-color: var(--secondary-color);
    --bs-nav-link-hover-color: var(--secondary-color);
    padding: 0 20px;
}


.horizontal-tabs .nav .nav-link {
    font: 700 21px "Lato", sans-serif;  
    margin: 0 10px;
    height: 60px;

}

/* Tab Content  */

.horizontal-tabs .tab-content {
    margin-top: 50px;
}

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

.horizontal-tabs .tab-content .tab-pane h2 {
    font: 700 24px "Lato", sans-serif;  
    color: var(--secondary-color);
}

.horizontal-tabs .tab-content .tab-pane p {
    font: 400 18px "Roboto", sans-serif;  
    color: var(--white-color);
    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;
        font-size: 18px;
        height: 50px;
    }

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

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

    .horizontal-tabs {
        display: block;
    }

}

@media screen and (min-width: 426px) and (max-width: 768px) {
    .horizontal-tabs .nav .nav-link {
        font-size: 18px;
        height: 60px;
    }
    
    /* Tab Content  */
    .horizontal-tabs .tab-content .tab-pane {
        line-height: 25px;
        padding: 5px 20px;
    }
    
    .horizontal-tabs .tab-content .tab-pane h2 {
        font-size: 24px;
        font-weight: 700;
    }

}