.shop-sidebar .filter-title {
    font-weight: 500;
    font-size: 25px;
    line-height: 24px;
    margin-bottom: 18px;
}

.shop-sidebar .wrap-filter:not(:first-child) {
    margin-top: 2em;
}

.course-box .box-image .image-cover {
    padding-top: 65%;
}

.course-box .format {
    font-size: 14px;
    margin-bottom: 10px;
}

.course-box .format i {
    color: var(--primary-color-2);
}

.course-box .short-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

.course-box .price {
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 0.5px;
    color: var(--primary-color-2);
}

@media screen and (max-width: 767px) {
    .page-title {
        display: none;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        height: 101vh;
        transform: translateX(-100%);
    }

    .shop-sidebar form {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        width: 259px;
        background-color: rgba(0, 0, 0, 1);
        height: 100%;
        padding: 30px 16px;
        transform: translateX(-100%);
        transition: transform .3s ease;
    }

    .shop-sidebar.show {
        transform: translateX(0);
    }

    .shop-sidebar.show form {
        transform: translateX(0);
    }

    .paginate-custom {
        margin-top: 30px;
    }
}