.mobile-menu-bar {
    position: fixed;
    background: #fff;
    width: 70%;
    height: 100vh;
    top: 0;
    left: 0;
    padding: 15px;
    z-index: 1040;
    overflow-y: scroll;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

.mobile-menu-bar::-webkit-scrollbar {
    width: 2px;
}

.mobile-menu-bar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0);
}

.mobile-menu-bar::-webkit-scrollbar-thumb {
    background-color: var(--defult);
}


.mobile-menu-bar.menuOpen {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-bar-titel {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--primary);
    margin-bottom: 15px;
}

.mobile-menu-bar-titel p {
    color: var(--primary);
}

.mobile-menu-bar-titel p i {
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 100%;
    background: #fff;
    color: var(--primary);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.5s ease;
    border: 1px solid var(--primary);
}

.mobile-menu-bar-titel p i:hover {
    background: var(--primary);
    color: #fff;
}

p.mobile-menu-bar-titel-txt {
    font-size: 20px;
}

.mobile-menu-bar ul li {
    list-style: none;
    padding: 8px 0;
    border-bottom: 1px solid #f2f2f2;
}

.mobile-menu-bar ul li:last-child {
    border: none;
}

.mobile-menu-bar ul li a {
    font-size: 16px;
    color: var(--defult);
}

.mobile-menu-bar ul li a:hover {
    color: var(--primary);
}

.open-in-mobile {
    display: none;
}

.course_left_side_bar_menu a {
    background: var(--primary);
    display: block;
    padding: 6px 10px;
    font-size: 18px;
    color: #fff;
    display: none;
}

.course_left_side_bar.show {
    display: block;
}

.course_left_side_bar::-webkit-scrollbar {
    width: 5px;
}

.course_left_side_bar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.course_left_side_bar::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    /* outline: 1px solid slategrey; */
}

@media (max-width: 1199px) {
    .course_university img {
        width: 100%;
        height: auto;
    }

    .course_university {
        height: auto;
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .menu-bar .logo img {
        width: 100%;
        height: auto;
    }

    .all-course-box {
        width: 50%;
    }

    .owl-carousel .owl-item img {
        height: 100%;
        object-fit: contain;
    }

    .giant-text {
        margin-bottom: 30px;
    }

    .program-banner-right-sec {
        margin-top: 30px;
    }

    .program-banner-right-sec img {
        width: 100%;
    }

    .coursDetails-accordion {
        margin-bottom: 30px;
    }

    .awarded-txt {
        margin-top: 30px;
    }

    .program-banner-left-sec h4 {
        background: #fff;
        display: inline-block;
        padding-right: 5px;
        border-radius: 50px;
    }

    .course_left_side_bar_menu a {
        display: block;
    }

    .course_left_side_bar {
        background: #f2f2f2;
        height: 295px;
        overflow-y: auto;
        display: none;
    }

    .universities_right_side_bar {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }

    .menu {
        display: none;
    }

    .menu.mobile-menu,
    .open-in-mobile {
        display: block;
    }

    .menu ul li {
        padding: 0;
    }

    .menu ul li .special-btn {
        font-size: 14px;
        padding: 6px 10px;
    }

    .close-in-mobile {
        display: none;
    }

    .all-course-box.open {
        width: 70%;
    }

    .universities_box {
        text-align: center;
    }

    .universities_box .col-md-8 {
        order: 1;
    }
}

@media (max-width: 576px) {

    .all-course-box.open,
    .mobile-menu-bar {
        width: 80%;
    }

    .program-price-box h3 {
        font-size: 18px;
    }

    .program-price {
        display: block;
    }

    .program-price-box {
        text-align: center;
        margin-bottom: 5px;
        background: transparent;
    }
}