
#courses,
#schedule {
    scroll-margin-top: 85px;
}

@media screen and (max-width: 991px) {

    #courses,
    #schedule {
        scroll-margin-top: 60px;
    }
}

.section-wrapper {
    padding: 80px 0;
}

@media(max-width: 767px) {
    .section-wrapper {
        padding: 60px 0;
    }
}


 .time-table .schedule-table .schedule-list {
    background: #242728;
    padding: 30px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100%;
    cursor: pointer;
    font-size: 13px;
}

@media(max-width: 575px) {
     .time-table .schedule-table .schedule-list {
        font-size: 9px;
    }
}

@media(max-width: 767px) {
     .time-table .schedule-table .schedule-list {
        padding: 15px;
    }
}

 .time-table .schedule-table .schedule-list .col {
    color: #fff;
    position: relative;
    text-align: center;
}

 .time-table .schedule-table .schedule-list .col:nth-child(2) {
    max-width: 120px;
}

@media(max-width: 575px) {
     .time-table .schedule-table .schedule-list .col: nth-child(2) {
        max-width: 80px;
    }
}

 .time-table .schedule-table .schedule-list .col:nth-child(2)::before,
 .time-table .schedule-table .schedule-list .col:nth-child(2)::after {
    position: absolute;
    content: "";
    height: 100%
}

 .time-table .schedule-table .schedule-list .col:nth-child(2)::before {
    border-left: 1px solid #303a3e;
    top: 0;
    left: 0;
}

 .time-table .schedule-table .schedule-list .col:nth-child(2)::after {
    border-right: 1px solid #303a3e;
    top: 0;
    right: 0;
}

 .time-table .schedule-table .schedule-list:hover .col {
    color: #212225;
    font-weight: 500;
}

 .time-table .schedule-table .schedule-list:hover {
    -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    background-image: -webkit-gradient(linear, left bottom, left top, from(#3843c1), to(#3843c1));
    background-image: linear-gradient(0deg, #3843c1 0%, #3843c1 100%);
    color: #000;
}


.heading {
    margin-bottom: 70px;
}

@media(max-width: 991px) {
    .heading {
        text-align: center;
    }
}

@media(max-width: 767px) {
    .heading {
        margin-bottom: 30px;
    }
}

.heading h2,
.heading h3 {
    font-size: 36px;
    line-height: 1;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.heading h2 span,
.heading h3 span {
    color: #3843c1;
}

.heading h2::after,
.heading h3::after {
    position: absolute;
    content: "";
    background: #3843c1;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -20px;
    position: absolute;
    width: 50px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.heading h2::before,
.heading h3::before {
    background: #3843c1;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: 20px;
    position: absolute;
    width: 15px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media(max-width: 991px) {

    .heading h2,
    .heading h3 {
        font-size: 32px;
    }
}

@media(max-width: 575px) {

    .heading h2,
    .heading h3 {
        font-size: 24px;
    }
}

.heading p {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
}


 .time-table ::-webkit-scrollbar-thumb {
    background: #3843c1;
    width: 1px;
    border: 1px solid;
    height: 1px;
}

 .time-table ::-webkit-scrollbar {
    width: 0px;
}

 .time-table ::-webkit-scrollbar {
    max-height: 3px;
    height: 3px;
}

 .time-table .table-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
}

@media(max-width: 991px) {
     .time-table .table-content {
        margin-bottom: 30px;
    }
}

@media(max-width: 767px) {
     .time-table .table-content {
        margin-bottom: 20px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow: scroll;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
}

 .time-table .table-content .nav-link {
    font-size: 18px;
    line-height: 31px;
    color: #000;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    text-align: center;
    padding: 0 25px;
    position: relative;
    cursor: pointer;
    border: none;
    background:transparent;
}

@media(max-width: 991px) {
     .time-table .table-content .nav-link {
        font-size: 16px;
        padding: 0 10px;
    }
}

 .time-table .table-content .nav-link::after {
    background: #3843c1;
    width: 0px;
    height: 1px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 40%;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
}

 .time-table .table-content .nav-link:hover,
 .time-table .table-content .nav-link.active {
    color: #3843c1;
}

 .time-table .table-content .nav-link:hover::after,
 .time-table .table-content .nav-link.active::after {
    width: 20px;
}

 .time-table .schedule-table .schedule-list {
    background: #242728;
    padding: 30px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100%;
    cursor: pointer;
    font-size: 13px;
}

@media(max-width: 575px) {
     .time-table .schedule-table .schedule-list {
        font-size: 9px;
    }
}

@media(max-width: 767px) {
     .time-table .schedule-table .schedule-list {
        padding: 15px;
    }
}

 .time-table .schedule-table .schedule-list .col {
    color: #fff;
    position: relative;
    text-align: center;
}

 .time-table .schedule-table .schedule-list .col:nth-child(2) {
    max-width: 120px;
}

@media(max-width: 575px) {
     .time-table .schedule-table .schedule-list .col: nth-child(2) {
        max-width: 80px;
    }
}

 .time-table .schedule-table .schedule-list .col:nth-child(2)::before,
 .time-table .schedule-table .schedule-list .col:nth-child(2)::after {
    position: absolute;
    content: "";
    height: 100%
}

 .time-table .schedule-table .schedule-list .col:nth-child(2)::before {
    border-left: 1px solid #303a3e;
    top: 0;
    left: 0;
}

 .time-table .schedule-table .schedule-list .col:nth-child(2)::after {
    border-right: 1px solid #303a3e;
    top: 0;
    right: 0;
}

 .time-table .schedule-table .schedule-list:hover .col {
    color: #212225;
    font-weight: 500;
}

 .time-table .schedule-table .schedule-list:hover {
    -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    background-image: -webkit-gradient(linear, left bottom, left top, from(#3843c1), to(#3843c1));
    background-image: linear-gradient(0deg, #3843c1 0%, #3843c1 100%);
    color: #000;
}
