body{
	font-family: 'Roboto', sans-serif;
	background: #F8F9FA;
}
.sch-tab-title {
    text-align: center;
    margin: 50px 0;
    font-size: 30px;
    font-weight: bold;
    font-family: 'Indie Flower', cursive !important;
}

.nav.nav-pills {
    position: relative;
    border-bottom: 1px solid #7b1fa2;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0px;
    width: 100%;
    z-index: 9;
}

.nav.nav-pills li {
    text-align: center;
    margin-right: 3px;
}

.nav.nav-pills li a {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #231123;
    text-transform: uppercase;
    padding: 15px;
    margin-right: 0;
    border-radius: 0;
    border: none;
    position: relative;
    transition: all 0.5s ease 0s;
	text-decoration: unset;
}

.nav.nav-pills li a::before {
    content: "";
    width: 50px;
    height: 5px;
    border-radius: 0%;
    background: transparent;
    position: absolute;
    margin-left: 0;
    bottom: -3px;
    left: 0;
    transition: all 0.2s ease 0s;
    right: 0;
    margin: 0 auto;
}

.nav.nav-pills li a:hover:before,
.nav.nav-pills li a.active:before,
.nav.nav-pills li a.active.show:before {
    background: #7b1fa2;
}



.nav.nav-pills li a:hover:after,
.nav.nav-pills li a.active:after {
    width: 1px;
}

.nav.nav-pills li a.active,
.nav.nav-pills li a.active.show,
.nav.nav-pills li a.active:focus,
.nav.nav-pills li a.active:hover,
.nav.nav-pills li a:hover {
    border: none!important;
    color: #7b1fa2!important;
}

.tab-content {
    padding: 50px 0;
}

@media (min-width:640px) and (max-width:767px) {
    .nav.nav-pills li a {
        padding: 15px 10px;
    }
}

@media (min-width:480px) and (max-width:639px) {
    .nav.nav-pills li a {
        padding: 15px 10px;
        font-size: 16px;
    }
}

@media (min-width:320px) and (max-width:479px) {
    .nav.nav-pills li a {
        padding: 10px;
        font-size: 10px;
    }
}