@import url(../../../../assets/css/font-face.css);

:root{
    --v2-color-primary: #FFC600;
    --v2-color-black: #07294D;
    --nav-item-color: #191919;
    --a-color : #216094;
    --a-hover-color : #218ff6;

    --btn-theme-primary-bg : #2073d4;
    --btn-theme-primary-hover-bg : #005bbe;
}

body{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;

    line-height: 1.5;
    color: #29303b;
    /* color: #f8f9fa; */
    -webkit-font-smoothing: antialiased;
}
body.rtl {
    direction: rtl;
    text-align: right;
}
h4{
    font-size: 18px;
}
h5{
    font-size: 16px;
}
.sponsor_card_ta p{
    margin-bottom: 0px !important;
}
/**
Reset CSS
 */

 /* Dropdown Button */
.dropbtn {
    background-color: #fff;
    color: black;
    padding: 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    text-align: center;
  }

  /* The container <div> - needed to position the dropdown content */
  .dropdown_1 {
    /* position: relative;
    display: inline-block; */
  }

  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}

  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}

  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #ccc;}


.sponsor_card_ta ul {
    width: 80%;
    margin: auto;
    text-align: left;
    list-style-type: disc;
    list-style-position: inside;
}

.displaynone {
    display: none;
}
.rating {
    --dir: right;
    --fill: gold;
    --fillbg: rgba(100, 100, 100, 0.15);
    --heart: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21.328l-1.453-1.313q-2.484-2.25-3.609-3.328t-2.508-2.672-1.898-2.883-0.516-2.648q0-2.297 1.57-3.891t3.914-1.594q2.719 0 4.5 2.109 1.781-2.109 4.5-2.109 2.344 0 3.914 1.594t1.57 3.891q0 1.828-1.219 3.797t-2.648 3.422-4.664 4.359z"/></svg>');
    --star: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.25l-6.188 3.75 1.641-7.031-5.438-4.734 7.172-0.609 2.813-6.609 2.813 6.609 7.172 0.609-5.438 4.734 1.641 7.031z"/></svg>');
    --stars: 5;
    --starsize: 3rem;
    --symbol: var(--star);
    --value: 5;
    --w: calc(var(--stars) * var(--starsize));
    --x: calc(100% * (var(--value) / var(--stars)));
    block-size: var(--starsize);
    inline-size: var(--w);
    position: relative;
    touch-action: manipulation;
    -webkit-appearance: none;
  }
  [dir="rtl"] .rating {
    --dir: left;
  }
  .rating::-moz-range-track {
    background: linear-gradient(to var(--dir), var(--fill) 0 var(--x), var(--fillbg) 0 var(--x));
    block-size: 100%;
    mask: repeat left center/var(--starsize) var(--symbol);
  }
  .rating::-webkit-slider-runnable-track {
    background: linear-gradient(to var(--dir), var(--fill) 0 var(--x), var(--fillbg) 0 var(--x));
    block-size: 100%;
    mask: repeat left center/var(--starsize) var(--symbol);
    -webkit-mask: repeat left center/var(--starsize) var(--symbol);
  }
  .rating::-moz-range-thumb {
    height: var(--starsize);
    opacity: 0;
    width: var(--starsize);
  }
  .rating::-webkit-slider-thumb {
    height: var(--starsize);
    opacity: 0;
    width: var(--starsize);
    -webkit-appearance: none;
  }
  .rating, .rating-label {
    display: block;
    font-family: ui-sans-serif, system-ui, sans-serif;
  }
  .rating-label {
    margin-block-end: 1rem;
  }

  /* NO JS */
  .rating--nojs::-moz-range-track {
    background: var(--fillbg);
  }
  .rating--nojs::-moz-range-progress {
    background: var(--fill);
    block-size: 100%;
    mask: repeat left center/var(--starsize) var(--star);
  }
  .rating--nojs::-webkit-slider-runnable-track {
    background: var(--fillbg);
  }
  .rating--nojs::-webkit-slider-thumb {
    background-color: var(--fill);
    box-shadow: calc(0rem - var(--w)) 0 0 var(--w) var(--fill);
    opacity: 1;
    width: 1px;
  }
  [dir="rtl"] .rating--nojs::-webkit-slider-thumb {
    box-shadow: var(--w) 0 0 var(--w) var(--fill);
  }
.content-expand-inner a {
    color: #0da8ee;
    text-decoration: underline;
    text-underline-position: under;
}

.content-expand-inner a:hover {
    color: #096c9a;
    text-decoration: underline;
    text-underline-position: under;
}

a{
    color: var(--a-color);
}
a:hover{
    color: var(--a-hover-color);
    text-decoration: none;
}

b {
    color: #EEE;
}

b:hover {
    color: #FFF;
    text-decoration: none;
}

b.disabled {
    cursor: not-allowed;
    background-color: #CCCCCC;
    color: #999999 !important;
}

b.nav-btn.disabled:hover {
    background-color: #CCCCCC;
}
a.disabled{
    cursor: not-allowed;
    background-color: #CCCCCC;
    color: #999999 !important;
}
a.nav-btn.disabled:hover{
    background-color: #CCCCCC;
}
.btn-purple{
    color: #fff;
    background-color: #aa66cc;
    border-color: #9359b2;
}

.btn-purple:hover{
    color: #fff;
    background-color: #8954a8;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.btn-link {
    color: #FFC600;
}
.bg-light-sky{
    background-color: #e7ecff !important;
}
.bg-light-success{
    background-color: #eefff6 !important;
}
.bg-dark-blue{
    background-color: #033E80 !important;
}
.box-shadow{
    box-shadow: 0 0 1px 1px rgba(20,23,28,.1), 0 3px 1px 0 rgba(20,23,28,.1);
}
ul{
    margin: 0;
    list-style: none;
    padding: 0;
}
.lecture-content-article h4{
    font-size: 20px;
}
.lecture-content-article ul{
    list-style: inside;
}
.has-error .invalid-feedback{
    display: block;
}
.form-group.has-error{
    color: var(--danger);
}
.form-group.has-error .form-control {
    border-color: var(--danger);
}
.btn, .form-control{
    min-width:30px;
    border-radius: 5px;
}
.form-control option:checked {
    background-color: lightblue;
    color: white;
}
.select2 {
    width: 100% !important;
}
.btn-round{
    border-radius: 25px;
}
.btn-theme-primary{
    color: #fff !important;
    background-color: #07294d;
    border-color: #07294d;
    border-radius: 5px;
}
.btn-theme-primary:hover{
    color: #07294d !important;
    background-color: #FFC600;
    border-color: #FFC600;
    border-radius: 5px;
}
.btn-theme-secondary {
    color: #07294d !important;
    background-color: #FFC600;
    border-color: #FFC600;
}
.btn-theme-secondary:hover{
    color: #fff !important;
    background-color: #07294d;
    border-color: #07294d;
}
.btn-login-outline{
    color: rgba(0,0,0,.6);
    border-color: rgba(0,0,0,.6);
}
.btn-login-outline:hover{
    color: rgba(0,0,0,.9);
    border-color: rgba(0,0,0,.9);
}
.btn-centered {
    position: relative;
    left:50%;
    transform: translate(-50%, 25%);
}
.no-hover {
    color: #fff !important;
    background-color: #07294d !important;
    border-color: #07294d !important;
    border-radius: 5px;
}

/**
* Nav menu CSS
*/
.navbar-light .navbar-nav .nav-link {
    color: #07294D;
    font-size: 1rem;
    font-weight: 400;
}
.navbar-light .navbar-nav .btn-theme-primary{
    color: #fff !important;
}
.navbar{
    padding: 0px 0 !important;
}
.site-main-logo img {
    height: 50px;
    max-height: 50px;
    width: auto;
}
/**
* Top categories menu
*/

.browse-categories-nav-link{
    background: rgba(20,23,28,.05);
    border: 1px solid rgba(20,23,28,.05);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 170px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 3px;
    color: #505763;
}
.categories-menu{
    position: relative;
}
.categories-menu ul{
    position: absolute;
    z-index: 99;
    background-color: #ffffff;
    width: 270px;
    min-height: 0px;
    padding: 0;
    border: none;
    border-radius: 0;
    border-bottom-left-radius: 2px;
    border-top: 1px solid #e8e9eb;
    box-shadow: 0 4px 16px rgba(20,23,28,.25);
    color: #505763;
    margin: 0;
    top: 0;
    display: none;
}
.nav-categories-item:hover .categories-ul-first{
    display: block;
}
.nav-categories-item:hover .categories-ul-first > li:hover > ul {
    display: block;
    left: 99%;
}
.categories-menu ul li a{
    display: block;
    padding: 5px 10px;
    color: #29303b;
}
.categories-menu ul li a:hover{
    background: #f2f3f5;
    color: #007791;
}
.categories-ul-first a .la-angle-right {
    float: right;
    color: #888;
    height: 22px;
    line-height: 22px;
}
/** END Categories Menu **/


.header-search-wrap {
    position: relative;
    width: 80%;
}
.header-search-wrap input.form-control{
    background-color: #ffffff;
    width: 100%;
    transition: all 0.5s ease 0s;
    padding-right: 35px;
}
.header-search-wrap input.form-control:focus {
    outline: none;
    box-shadow: none;
}
.header-search-btn{
    position: absolute;
    right: 0;
}
#mainNavbarContent {
    width: 100%;
}

.club-index-block {
    padding:25px 20px !important;
}
.club-index-block2 {
    padding:25px 20px !important;
}

.club-image-banner-center{
    width: 100%; margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align:center;
}
#mainNavbarContent .navbar-nav{float: right}
#mainNavbarContent .main-nav-right-menu{
    text-align: right;
    position: relative;
}
#mainNavbarContent .main-nav-right-menu .dropdown-menu {
    right: 0;
    left: auto;
    min-width: 265px;
}
#mainNavbarContent .main-nav-right-menu .dropdown-menu .dashboard-menu li a{
    font-size: 13px;
}
a#miniCartDropDown:after, a.profile-dropdown-toogle:after{
    content: none;
}
a#miniCartDropDown, a.profile-dropdown-toogle {
    border: 1px solid transparent;
    font-size: 22px;
    padding-top: 0px;
    margin-top: 2px;
    padding-left: 0rem;
    padding-right: 0rem;
}


a#miniCartDropDown:hover, a.profile-dropdown-toogle:hover {
    /*border: 1px solid #ccc;*/
    /*border-radius: 50%; */
    /*background: #eee;*/
}
#miniCartDropDown .badge {
    font-size: 10px;
    padding: 3px 5px;
    position: absolute;
    right: 6px;
    top: 0px;
}
.profile-dropdown-toogle{
    padding: 5px;
}
.profile-dropdown-toogle img{
    height: 30px;
    width: 30px;
    border-radius: 50%;
}
.profile-dropdown-menu{
    position: absolute;
    display: none;
    z-index: 99;
    right: auto;
    background-color: #fff;
    width: 250px;
    text-align: left;
    border: 1px solid #eeeeee;
    padding: 7px 15px 7px 0px;
    box-shadow: 0 4px 16px rgba(20,23,28,.25);
}
.profile-dropdown-menu .dashboard-menu li a{
    padding: 7px 10px;
    font-size: 14px;
}
.nav-item-user-profile:hover .profile-dropdown-menu{
    display: block;
}
.nav-item{padding-left: 12px}
.nav-item h4{margin-bottom: 0px}
.nav-user-item .btn{
    background-color: #07294d;
    color: #fff;
    border: 1px solid #07294D;
    /*border-radius: 45px;*/
    padding: 5px 25px;
}
.nav-user-item .btn:hover{
    background: #FFC600 !important;
    /* border: 2px solid #FFC600; */
    color: #07294D !important;
}

.mini-cart-item .mini-cart-body-wrap{
    width: 300px;
    padding: 0;
    display: none;
    position: absolute;
    z-index: 99;
    right: 0;
    background: #fff;
    border: 1px solid #dddddd;
}
.mini-cart-item:hover .mini-cart-body-wrap{
    display: block;
}
.mini-cart-total-wrap{
    background-color: #f2f3f5;
}
.mini-cart-course-item a:hover{
    background-color: #eeeeee;
    color: var(--btn-theme-primary-hover-bg);
}
.minicart-course-thumbnail{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
}
.mini-cart-course-title{
    font-size: 13px;
}
.minicart-course-info .current-price{
    color: #3977a8;
}
.minicart-course-info .old-price{
    font-size: 13px;
}
.mini-cart-course-item {
    position: relative;
}
.mini-cart-course-item .remove-cart-btn {
    position: absolute;
    right: 0;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    line-height: 20px;
    background-color: #5a63a2;
    color: #fff;
    border: none;
}
/**
* #END Nav Menu
*/



/**
Hero Section
 */

.hero-left-wrap {
    display: table-cell;
    vertical-align: middle;
    color: #ffffff;
    height: 385px;
}

.re-banner {
    height:100px;
    text-align: center;
    color: #fff;
    padding-top:25px;
}

.re-banner0 {
    background-color: #27aae3;
}

.re-banner1 {
    background-color: #24324a;
}
.re-d-flex {
    display: flex !important;
}

.hero-banner {
    padding: 100px 0;
    background: #d1d1d1 url(../../images/hero-background-home-top.png) no-repeat scroll top center / cover;
    position: relative;
    padding-bottom: 260px !important;
}

.hero-banner::before {
    content: "";
    /*background: #dddddd; */
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
}


@media (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}
.v2-section-landing {
    height: 780px;
    overflow: hidden;
}
.v2-section-landing .hero-left-wrap {
    margin-top: 30px;
}
.v2-section-landing  .landing-hero-title {
    font-size: 56px;
    line-height: 72px;
    font-weight: 700;
}
.v2-section-landing .landing-hero-title-en {
    font-size:40px;
    line-height:50px;
    font-weight:700;
}
.v2-section-landing  .landing-hero-subtitle {
    font-size: 40px;
    line-height: 60px;
    font-weight: 600;
}
.v2-section-landing  .landing-hero-description {
    margin-top: 32px;
    font-size: 24px;
    line-height: 32px;
}

.v2-section-landing .btn-warning {
    margin-top: 32px;
    border-radius: 2rem;
    padding: 0.5rem 2rem;
}

.v2-section-classes {
    margin-top: 68px;
}
.v2-section-classes .header .title-en {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: var(--v2-color-primary);
}
.v2-section-classes .header .title-ch {
    font-size: 32px;
    line-height: 46px;
    font-weight: 600;
    color: var(--v2-color-black);
}
.v2-section-classes .header .title-ch .desc {
    float: right;
}
.v2-section-classes .header .title-ch .desc .desc-label {
    color: rgba(22, 30, 49, 0.5);
    font-size: 16px;
    line-height: 20px;
}

.v2-section-classes .header .title-ch .desc .desc-link {
    display: block;
    /*text-align: right;*/
    color: var(--v2-color-primary);
    font-size: 20px;
    line-height: 24px;
}
.v2-section-classes .card-v2 {
    /*height: 280px;*/
    margin-top: 50px;
    padding-bottom: 25px;
    background: #EDF0F2;
    overflow: hidden;
}
.v2-section-classes .card-v2 .card-body {
    /* margin-top: 80px; */
    padding: 10px 30px;
    position: relative;
}
.v2-section-classes .card-v2 .card-body .card-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var(--v2-color-primary);
}
.v2-section-classes .card-v2 .card-body .card-text {
    color: #07294D;
    font-size: 16px;
    line-height: 25px;
}
.v2-section-classes .card-v2 .card-body .card-desc {
    display: none;
    color: rgba(255, 255, 255, 0.83);
}
.v2-section-classes .card-v2 .v2-image {
    visibility: visible;
}
.v2-section-classes .card-v2 .to-expand-col {
    width:75%; float:left; margin-top:-10px;
}
.v2-section-classes .card-v2 .card-body .card-info {
    display: none;
    font-size: 14px;
    position: absolute;
    width: 100%;
    padding: 5px 10px;
    bottom: 0;
    left: 0;
}
.v2-section-classes .card-v2 .card-body .card-info .card-link {
    color: #FAFAFA;
    float: right;
}
.v2-section-classes .card-v2 .card-body .card-info .card-label {
    color: #FFFFFF;
}
/* .v2-section-classes .card-v2:hover .card-body {
    margin-top: 0px;
    padding: 10px;
}
.v2-section-classes .card-v2:hover .card-body .card-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #FFFFFF;
}
.v2-section-classes .card-v2:hover .v2-image {
    visibility: hidden;
    position:absolute;
}
.v2-section-classes .card-v2:hover .to-expand-col {
    width:100%;
    padding: 10px;
}
.v2-section-classes .card-v2:hover .card-body .card-text {
    color: #FFFFFF;
}
.v2-section-classes .card-v2:hover .card-body .card-desc {
    display: block;
}
.v2-section-classes .card-v2:hover .card-body .card-info {
    display: block;
} */
.v2-section .v2-title {
    font-size: 32px;
    line-height: 48px;
    color: #07294D;
    text-align: center;
}
.v2-section .v2-subtitle {
    font-size: 20px;
    line-height: 24px;
    color: var(--v2-color-primary);
    text-align: center;
    font-weight: bold;
}

/**************** home  what we offer start **********************/
.v2-section-offer {
    background: #EDF0F2;
    padding: 70px 0 50px;
}
.v2-section-offer .card-v2 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 60px;
}
.v2-section-offer .card-v2 .car-images {
    padding: 20px;
}
.v2-section-offer .card-v2 .car-images img{
    height: 240px;
    overflow: hidden;
    box-shadow: 5px 5px 10px #e4e4e4;
}
.v2-section-offer .card-v2:hover .car-images img{
    box-shadow: 8px 8px 10px #d4d4d4;
}
.v2-section-offer .card-title  {
    color: #161E31;
    font-size: 16px;
    line-height: 25px;
    margin: 0;
}
.v2-section-offer .card-title .title-label {
    line-height: 38px;
    font-size: 16px;
    margin: 0;
}
.v2-section-offer .card-title .card-tip {
    float: right;
}
.v2-section-offer .card-v2 .card-body .card-text {
    color: rgba(22, 30, 49, 0.5);
    font-size: 16px;
    line-height: 25px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin: 0;
    height: 55px;
    overflow: hidden;
}
.btn-xuetang {
    margin-right:20px;
}
.btn-tip {
    color: #fff;
    background-color: #07294D;
    border-color: #345476;
    border-radius: 9px;
    padding-left: 20px;
    padding-right: 20px;
}
.btn-tip:hover {
    color: #fff;
    background-color: #345476;
    border-color: #5886b9;
}
.v2-section-offer .card-v2 .card-body .card-info {
    font-size: 14px;
    position: absolute;
    width: 100%;
    padding: 5px 10px;
    bottom: 0;
    left: 0;
    color: var(--v2-color-primary);
}
.v2-section-offer .card-v2 .card-body .price {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #07294D;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
}
.v2-section-banner {
    background: #d1d1d1 url(../../images/ads_banner_03.jpg) no-repeat scroll top left / cover;
    aspect-ratio: 4.84;
    width:100%;
    /* height:100% !important; */
}
/* @media(max-width:1491.5px) {
    .sponsor-card-title {
        font-size: 14px !important;
    }
} */
@media(max-width:991.5px) {
    .sponsors_bar{
        margin-top:50px !important;
    }
    .sponsor-card-title {
        font-size: 12px !important;
    }
    .sponsor-card-category {
        font-size: 12px !important;
    }
}
.v2-section-banner2 {
    background: #000000 url(../../images/ads_banner_02.png) no-repeat scroll center center;
    width: 100%;
    background-size:100%;
    aspect-ratio: 5 !important;
    /* height: 100% !important; */
}
.v2-section-banner2 banner2-body {
    text-align: center;
}
.v2-section-banner2 .banner-content {
    font-size: 40px;
    line-height: 59px;
    color: #FFFFFF;
    width: 470px;
    padding-top: 10%;
    display: inline-block;
    text-align: left;
}

.v2-section-top {
    padding-bottom: 0px;
}
.v2-section-services {
    background: #EDF0F2;
    text-align: center;
}
.v2-view-all-services {
    color: var(--v2-color-primary);
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
}
.v2-section-feature {
    height: 448px;
    background: #d1d1d1 url(../../images/background-feature.png) no-repeat scroll top center / cover;
    overflow: hidden;
    position: relative;
}
.v2-section-feature .feature-section {
    position: absolute;
    top: 0;
    right: 0;
    padding: 24px 80px;
    background: rgba(7, 41, 77, .9);
    height: 100%;
    color: #FFFFFF;
}
.v2-section-feature .feature-section .title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
}
.v2-section-feature .feature-section .item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.v2-section-feature .feature-section .item .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
}
.v2-section-feature .feature-section .item .item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.v2-section-feature .feature-section .item .item-title a{
    color: #ffffff;
}

.v2-section-feature .feature-section .item .item-desc {
    font-size: 15px;
}

.v2-section-comments .card-v2 {
    background-color: #07294D;
    color: #FFFFFF;
    position: relative;
}
.v2-section-comments .card-v2 .card-body {
    position: relative;
    padding-bottom: 60px;
}
.v2-section-comments .card-v2 .card-title {
    font-size: 15px;
}
.v2-section-comments .card-v2 .card-desc {
    font-size: 14px;
}
.v2-section-comments .card-v2 .card-body .card-info {
    font-size: 14px;
    position: absolute;
    width: 100%;
    padding: 5px 5px 5px 60px;
    bottom: 6px;
    left: 0;
}
.v2-section-comments .card-v2 .card-body .card-info .img {
    position: absolute;
    top: 0;
    left: 10px;
    width: 36px;
    height: 36px;
    border-radius: 100%;
}
.v2-section-comments .card-v2 .card-body .card-info .item-title {
    font-size: 10px;
    margin-bottom: 4px;
    white-space: nowrap;
}

.v2-section-comments .card-v2 .card-body .card-info .item-desc {
    font-size: 11px;
    color: #FFC600;
    white-space: nowrap;
}

/**********学堂************/
.v2-section-platform {
    height: 550px;
    background: #d1d1d1 url(../../images/v2-background-xuetang-top2.png) no-repeat scroll top center / cover;
}
.v2-section-platform .feature-section {
    left: 0;
    right: 65%;
    padding: 0 72px;
}
.v2-section-platform .feature-section .title-1 {
    font-size: 32px;
    margin-top: 60px;
    text-align: center;
    font-weight: 700;
    color: var(--v2-color-primary);
}

.v2-section-platform .feature-section .title-2 {
    font-size: 32px;
    color: #FFFFFF;
    text-align: center;
    font-weight: 700;
    margin-bottom: 45px;
}
.v2-section-platform .feature-section .item {
    margin-bottom: 24px;
    margin-left: 30px;
}
.v2-section-platform .feature-section .item .item-title {
    line-height: 56px;
    font-size: 26px;
}

/**
Home Info Box
 */
.home-section-wrap:nth-of-type(even) {
    background-color: #f8f9fa;
}

.home-info-box{
    text-align: center;
}
.home-info-box img{
    max-width: 80px;
    height: auto;
    margin-bottom: 20px;
}
.home-info-box h3 {
    font-size: 20px;
    margin: 10px 0;
}
/**
Responsive CSS
 */

/**
Home popular courses
 */
.home-popular-courses-wrapper{
    background-color: #f7f8fa;
}
.course-card{
    background-color: #ffffff;
    font-size: 14px;
    box-shadow: 0 0 1px 1px rgb(20 23 28 / 26%), 0 3px 1px 0 rgb(20 23 28 / 10%);
    position: relative;
}
.course-card:hover{
    box-shadow: 0 2px 8px 2px rgba(20,23,28,.15);
}
.course-card .course-card-img-wrap a {
    display: block;
    position: relative;
}
.course-card:hover .course-card-img-wrap a:before{
    content: "";
    background: #3a78ff;
    height: 100%;
    left: 0;
    opacity: 0.2;
    position: absolute;
    top: 0;
    width: 100%;
}
.course-card .course-card-img-wrap img {
    width: 100%;
    height: auto;
}
.course-card .course-card-contents{
    padding: 10px;
}
.course-card a{
    color: #29303b;
}
.course-card .course-card-title{
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-height: 22px;        /* fallback */
    height: 44px;       /* fallback */
}
.course-card-info-wrap{
    min-height: 80px;
}
.star-ratings-group i{
    color: #f4c150;
}
.course-card .price-html-wrap {
    font-size: 16px;
    color: #29303b;
}
.course-card-add-wish{
    font-size: 20px;
    color: #ec5252;
    margin-right: 1px;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    line-height: 30px;
    padding: 0;
}
.course-card-add-wish:hover{
    color: #ff0000;
    background-color: #ffffff;
    border-color: #ffffff;
}
.course-card-add-wish:hover i.la{
    font-weight: 600 !important;
}

/**  Mid Call To Action **/
.mid-callto-action-wrap{
    /* background-color: #007bff; */
}
.mid-callto-action-subtitle{
    line-height: 1.8;
}

/**
* Courses Page, Courses Archive, new courses, popular courses
*/
.filter-form-by-rating-field-wrap{
    line-height: 1;
}
.filter-form-by-rating-field-wrap i.la{
    line-height: .5;
}
.course-filter-form-group label{
    display: block;
}
/**
* Blog Section
 */
.home-blog-card img {
    margin-bottom: 30px;
}
.home-blog-card h2, .blog-card h2 {
    font-size: 22px;
    margin-bottom: 22px;
    font-weight: 300;
}
.home-blog-card h2 a {
    color: #033E80;
}
.home-blog-card a:hover{
    color: #0450bd;
}

.home-blog-card .post-meta {
    color: #4F5D69;
    font-size: 14px;
    width: 100%;
    display: block;
}
.home-blog-card .post-meta a {
    color: #4F5D69;
}
.btn-see-all-posts-wrapper{
    border-top: 1px solid #edf0f5 !important;
}
.post-content {
    color: #434e5a;
    font-size: 17px;
}
.blog-regular-post .blog-card-thumbnail-wrapper{
    margin-bottom: 30px;
}
.blog-feature-post .blog-card{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.blog-feature-post .blog-card-thumbnail-wrapper{
    margin-right: 30px;
}
.blog-card .excerpt{
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.blog-feature-post .blog-card{
    margin-bottom: 30px;
}

/**
* Home Call to action
 */
.home-partners-logo-section{
    border-bottom: 1px solid #dedfe0;
}
.home-partners-logo-wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.home-partners-logo-wrap .logo-item img{
    height: 40px;
    width: auto;
}
.home-partners-logo-wrap .logo-item{
    margin: 0 30px;
}
.home-partners-title{
    font-weight: 300;
}
.home-course-stats-wrap{
    border-bottom: 1px solid #dedfe0;
}
.home-course-stats-wrap h5{
    font-weight: 300;
}
.home-cta-left-col{
    border-right: 1px solid #dedfe0;
}

/**
* Checkout Page
*/
.checkout-page-wrap{
    background-color: #f2f2f2;
}
.order-summery-course-thumbnail{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
}
.checkout-section{
    background-color: #fff;
    box-shadow: 0 0 1px 1px rgba(20,23,28,.1), 0 3px 1px 0 rgba(20,23,28,.1);
    border-radius: 4px;
    color: #505763;
    padding: 3px;
}
.order-summery-course-item a{
    color: #505763;
    font-weight: 600;
}
.order-summery-course-item a:hover {
    color: var(--a-color);
}
.enroll-course-btn-price {
    /* color: #eac4ff; */
    font-size: 90%;
}
.agreement-text{
    line-height: 2;
}

.stripe-credit-card-form-wrap{
    max-width: 500px;
}

/**
* Dashboard Section
*/
#ChartArea{
    width: 100%; height: 400px;
}
.dashboard-wrap{
    background-color: #f6f7f2;
}
.dashboard-wrap .table{
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}
.dashboard-menu-col{
    border-right: 1px solid #dedfe0;
}
.dashboard-menu:not(.dropdown-menu .dashboard-menu){
    margin-right: -15px;
}
.dashboard-menu li a{
    color:#000000;
    padding: 10px;
    display: block;
}
.dashboard-menu li a:hover{
    background-color: #edf0f9;
}
.dashboard-menu li.active a{
    color: #ffffff !important;
    background-color: var(--btn-theme-primary-bg);
}
.dashboard-menu li.active a:hover{
    color: #ffffff;
    background-color: var(--btn-theme-primary-hover-bg);
}
.dashboard-section-header{
    background-color: #eeeeee;
}
.dashboard-section-header i{
    line-height: 1.6;
}
.dashboard-card .card-icon i{
    font-size: 42px;
}
.course-edit-nav a{
    color: #444444;
}
.course-edit-nav a i {
    font-size: 20px;
    color: #828282;
}
.course-edit-nav a.active i{
    color: #ffffff;
}
.section-add-item-wrap{
    font-weight: bold;
    font-size: 16px;
}
.section-add-item-wrap.bg-dark a{
    color: #ffc107;
}
.section-item-btn-tool{
    line-height: 1;
    color: #686f7a;
}
.section-item-btn-tool:hover{
    color: #212529;
}
.btn-outline-danger.text-danger:hover{
    color: #ffffff !important;
}
.loader:before {
    font-family: 'Line Awesome Free';
    font-weight: 900;
    margin-right: 5px;
    content: "\f110";
    -webkit-animation: la-spin 2s infinite linear;
    animation: la-spin 2s infinite linear;
    display: inline-block;
}
.la.loader:before{
    content: "\f110";
}
.edit-curriculum-item .section-item-top:hover{
    cursor: move;
}
.edit-curriculum-item .section-item-title{
    max-width: 400px;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis{
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}
.course-edit-header .header-course-title{
    max-width: 400px;
}
.section-item-top .section-item-btn-tool{
    display: none;
}
.section-item-top:hover .section-item-btn-tool{
    display: block;
}
.single-attachment-form{
    width: 48%;
}
.deselected {
    filter: brightness(80%);
}
.selected {
    border: 3px solid #FFC600;
}
.dashboard-section-item-attachments .downloadable-materials{
    font-size: 16px;
}
.dashboard-section-item-attachments .dashboard-item-attachment .attachment-title.flex-grow-1 {
    font-size: 13px;
}
textarea#benefits, textarea#requirements {
    font-size: 14px;
}
.dashboard-inline-submenu-wrap a{
    color: var(--a-color);
    display: inline-block;
    padding: 0 20px 12px;
}
.dashboard-inline-submenu-wrap a.active, .dashboard-inline-submenu-wrap a:hover{
    border-bottom: 1px solid var(--a-color);
}

.report-top-sub-menu a{
    text-align: center;
    font-size: 14px;
    padding-top: 7px;
    padding-bottom: 7px;
}
.report-top-sub-menu a.active {
    background-color: var(--a-hover-color);
    color: #ffffff;
    border: 1px solid var(--a-hover-color);
}
.report-filter-date-range-wrap input, .report-filter-date-range-wrap .btn, .report-filter-date-range-wrap .input-group-text{
    border-radius: 0;
}
/** Quiz Builder **/
.question-options-wrap .question-opt{
    border: 1px solid #ccc;
    background-color: #f8f9fa;
}
.question-options-wrap .question-opt.newly {
    background-color: #f2fff1;
}
.question-basic-info .question-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
}
.question-basic-info .question-score {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
}
.question-basic-info .question-image-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
}
.option-type-selection-wrapper{
    font-size: 13px;
}
.option-type-selection-wrapper label{
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}
.option-type-selection-wrapper label:hover, .option-type-selection-wrapper input:checked+label{
    background-color: #0269ed;
    border: 1px solid #004ec4;
    color: #ffffff;
    cursor: pointer;
}
.question-opt-display {
    font-size: 12px;
    color: #666;
}
.la-question-radio:before{
    content: "\f192";
}
.la-question-checkbox:before{
    content: "\f14a";
}
.la-question-text:before{
    content: "\f14b";
}
.la-question-textarea:before{
    content: "\f15c";
}
label.checkbox span, label.radio span{
    font-family: 'Line Awesome Free';
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 135%;
    color: #000b96;
}
label.checkbox input[type=checkbox], label.radio input[type=radio] {
    display: none;
}
label.checkbox input[type=checkbox]:checked+span, label.radio input[type=radio]:checked+span{
    font-weight: 900;
    font-size: 135%;
}
label.checkbox span:before {
    content: "\f0c8";
}
label.checkbox input[type=checkbox]:checked+span:before {
    content: "\f14a";
}
label.radio span:before {
    content: "\f111";
}
label.radio input[type=radio]:checked+span:before {
    content: "\f192";
}
.quiz-question-item .quiz-question-item-image{
    height: 38px; width: auto;
}
.quiz-question-item-title{
    -webkit-box-flex: 13;
        -ms-flex: 13;
            flex: 13;
}
/** END Quiz Builder **/


/**
* Dashboard Curriculum
 */
.section-item-form-html{
    background-color: #f6faff;
}
.curriculum-item-edit-tab a{
    border-radius: 0 !important;
}
.curriculum-item-edit-tab .list-group-item{
    padding: .40rem 1.25rem;
}
.video_source_wrap_html5 i{
    font-size: 50px;
}
.ui-sortable-placeholder{
    background-color: #dddd;
}
/** Dashboard Lecture Edit **/
.lecture_video_source{
    width: 200px;
}
.hidden-video {
    visibility: hidden;
}

.hidden {
    display:none !important;
}

/** Switch **/
label.switch {
    position: relative;
    cursor: pointer;
    margin: 0;
}
label.switch span {
    /*position: relative;*/
    display: block;
}
label.switch span:before {
    content: "";
    display: block;
    height: 16px;
    width: 30px;
    border: 2px solid #bbb;
    background: #bbb;
    border-radius: 13em;
    box-sizing: content-box;
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    position: absolute;
    top: 4px;
    left: 0;
}
label.switch span:after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: #fff;
    position: absolute;
    top: 7px;
    left: 3px;
    border-radius: 13em;
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
label.switch input[type=checkbox] {
    display: none;
}
label.switch input[type=checkbox]:checked+span:after {
    left: 17px;
}
label.switch input[type=checkbox]:checked+span:before {
    border-color: var(--a-hover-color);
    background: var(--a-hover-color);
}
/** Instructor Add **/
.course-default-author-wrap{
    background-color: #f7ead7;
    border: 1px solid #f3dbbe;
}
.course-description .content-expand-wrap p img {
    height: 300px !important;
    width: auto !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-height: 300px;
    max-height: 300px;
}.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
label .instructor-details{
    font-size: 12px;
}
label.add-instructor-result-item{
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    cursor: pointer;
    position: relative;
}
label.add-instructor-result-item:hover, .instructor-search-results input:checked+label{
    background-color: #ddeefa;
    border: 1px solid #d7d9ff;
}
/** END: Instructor Add **/
/**
* Pricing...
*/
.course-price-type-wrap label{
    text-align: center;
    cursor: pointer;
    height: 100px;
    width: 100px;
}

.course-price-type-wrap label img{
    max-height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
}
.course-price-type-wrap label input{
    display: none;
}
.course-price-type-wrap label span {
    text-align: center;
    display: block;
    border: 1px solid transparent;
    padding: 10px 20px;
}
.course-price-type-wrap label input[type=radio]:checked+span{
    border: 1px solid #0c5460;
}
.course-price-type-wrap label:hover strong, .course-price-type-wrap label input[type=radio]:checked+span strong {
    color: var(--a-color);
}
/** End: Switch **/

.course-publish-icon{
    font-size: 50px;
}

/** Withdraw preference **/

.select-withdraw-method-name label {
    cursor: pointer;
}
.select-withdraw-method-name input[type=radio]:checked+label {
    border-color: #c1eec5 !important;
    background: #e5ffe8;
}

/** END: Withdraw Preference **/
.quiz-attempt-stats .list-group-item{
    width: 100%;
    text-align: center;
    border-radius: 0 !important;
}


/** END: Dashboard **/


/**
* Media Manager
*/
.media-manager-grid-wrap{
    /* Grid styles */
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(120px, 120px));
    grid-gap: 1rem;
}
.adminMediaModalInfoSide {
    font-size: 12px;
}
img#mediaManagerPreviewScreen {
    border: 1px solid #ddd;
    padding: 5px;
}
#filemanager{
    max-width: 90%;
}
.media-modal-info-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
}
.media-modal-thumbnail{
    display: block;
    border: 2px solid transparent;
}
.media-modal-thumbnail img{
    width: 100%;
    height: auto;
}
.media-modal-thumbnail.selected{
    border: 2px solid #2879FE;
    padding: 2px;
}
.allowed_file_text{
    font-size: 12px;
}
.about-image img {
    width: 100%;
    border-radius: 5px;
}
.about-cont p {
    padding-top: 30px;
}
.about-items.pt-60 {
    padding-top: 25px;
}
.about-single-items {}
.about-single-items span {
    font-size: 60px;
    color: #dbdbdb;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 46px;
    padding-bottom: 22px;
}

.description_div img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    overflow: hidden;
}

.about-single-items h4 {
    color: #000;
    font-size: 24px;
    padding-bottom: 25px;
}
#modal-filemanager{
    z-index: 10050;
}
#modal-filemanager .pagination{
    margin: 0;
}
#modal-filemanager label{
    word-wrap: break-word;
}
.image-wrap .img-thumbnail{
    max-width: 80px;
}
#modal-filemanager .card {
    height: 147px;
    overflow: hidden;
    margin-bottom: 2rem;
}
#modal-filemanager .card .card-body{
    padding: 5px;
    font-size: 12px;
}
#modal-filemanager .card .card-body label{
    white-space: nowrap;
}
/**
END Media Manager
 */


/**
* Course Single Page
*/
.course-section-header{
    cursor: pointer;
}
.course-section-header .course-section-name{
    color: #666666;
}
.page-header-jumborton{
    min-height:220px;
    background:-webkit-linear-gradient(315deg, #011D4A 0%, #448ECB 100%);
    background:linear-gradient(135deg, #011D4A 0%, #448ECB 100%);
}
.page-header-jumborton .page-header-left{
    color: #ffffff;
}
.page-header-jumborton h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 52px;
}
.page-header-subtitle{
    font-size: 18px;
    font-weight: 300;
}
.page-header-right-enroll-box{
    border-top: 10px solid #CCCCCC;
}
.enroll-box-btn-group button{
    font-size: 16px;
    padding: .8rem 1rem;
    width: 100%;
}
.price-html-wrap{
    color: #505763;
}
.price-html-wrap span{
    vertical-align: middle;
    font-weight: 600;
}
.course-landing-page-price-wrap .price-html-wrap .current-price{
    font-size: 32px;
}
.price-html-wrap .old-price{
    font-size: 80%;
    color: #8a92a3;
}
.course-landing-page-price-wrap .price-html-wrap .old-price, .course-landing-page-price-wrap .price-html-wrap  .discount-text {
    font-size: 18px;
    color: #8a92a3;
    font-weight: 400;
}
.course-landing-page-price-wrap .price-html-wrap .free-text{
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
}
.course-curriculum-item{
    padding: 10px;
}
.course-section-item-details {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 190px;
            flex: 0 0 190px;
}
.section-item-duration{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
    text-align: right;
}
.course-curriculum-title{
    color: #505763;
}
.course-widget{
    background-color: #f6faff;
    box-shadow: 0 0 1px 1px rgba(20,23,28,.1), 0 3px 1px 0 rgba(20,23,28,.1);
    color: #505763;
}
.course-widget .la:before{
    line-height: 1.6;
}
.content-expand-wrap{
    /* max-height: 300px; */
    overflow: hidden;
    position: relative;
}

.expand-more-btn-wrap {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), color-stop(rgba(255,255,255,0.95)), to(#FFF));
    background: -webkit-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0.95), #FFF);
    background: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0.95),#FFF);
    bottom: 0;
    display: block;
    padding-top: 30px;
    position: absolute;
    width: 100%;
}
.course-widget .expand-more-btn-wrap {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(246,250,255,0)), color-stop(rgba(246,250,255,0.95)), to(#f6faff));
    background: -webkit-linear-gradient(rgba(246,250,255,0), rgba(246,250,255,0.95), #f6faff);
    background: linear-gradient(rgba(246,250,255,0),rgba(246,250,255,0.95),#f6faff);
}
.expand-more-btn.btn-link{
    color: var(--a-color);
}
.course-whats-included-box ul li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    vertical-align: top;
    line-height: 18px;
}
.course-whats-included-box ul li i{
    width: 20px;
}
.course-whats-included-box.course-widget{
    height: 100%;
}

/** Instructor Box **/
.course-single-instructor-wrap .instructor-stats{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
            flex: 0 0 220px;
}
.instructor-stats .profile-image img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 4px solid #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23)
}
.club-instructor .profile-image img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 4px solid #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.instructor-details .instructor-name{
    font-weight: 600;
}

/** END: Instructor Box **/

/**
* Review Box
*/
.rating-stats-avg{
    text-align: center;
}
.review-write-star-wrap i, .generated-star-rating-wrap i{
    color: #f4c150;
    font-size: 20px;
    cursor: pointer;
}

.star-rating-bar-bg{
    background: #f2f3f5;
    height: 20px;
    width: 100%;
    margin-right: 20px;
}
.rating-percent-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64px;
            flex: 0 0 64px;
    text-align: right;
}
.rating-avg-big {
    font-size: 60px;
}
.star-rating-bar-fill{
    background-color: #8a92a3;
    display: block;
    height: 100%;
}
.star-rating-percent-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    margin-bottom: 10px;
    text-align: right;
}
.reviews-list-wrap .reviewed-user{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(25% + 60px);
            flex: 0 0 -webkit-calc(25% + 60px);
            flex: 0 0 calc(25% + 60px)
}
.reviewed-user-photo{
    width: 48px;
    height: 48px;
    line-height: 48px;
    margin-right: 20px;
}
.reviewed-user-photo img, .profile-text-photo{
    width: 48px;
    height: 48px;
    line-height: 46px;
    border-radius: 50%;
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}
/** END Course Single **/

/**
* Lecture Single Page
 */
.section-header{
    background-color: #e8e8e8;
}
.lecture-header-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 349px;
            flex: 0 0 349px;
    border-right: 1px solid #dee2e6;
}
.lecture-header-right{
    width: 100%;
}
.book-card-div:hover {
    cursor: pointer;
}
.brokerage-0 {
    background-color: #fff;
}
.brokerage-1 {
    background-color: #ccc;
}
button.nav-icon-complete-course {
    height: 100%;
}
.lecture-header-right .nav-btn{
    width: 50%;
    text-align: center;
    /*line-height: 50px;*/
    font-size: 18px;
    color: #ffffff;
    display: inline-table;
}
.lecture-header-right .nav-btn span{
    height: 50px;
    display: table-cell;
    vertical-align: middle;
}
.lecture-header-right .nav-btn:hover{
    background-color: var(--btn-theme-primary-hover-bg);
}
/*
.lecture-page-course-progress .course-progress-percentage{
    font-size: 20px;
}*/
.lecture-page-course-progress .write-review-text{
    font-size: 14px;
}
.review-modal-footer{
    border-top: 1px solid #dee2e6;
    padding: 1rem;
}
.review-modal-footer .review-modal-nofity-text{
    font-size: 14px;
}
.lecture-header{
    background-color: #0a0a0a;
    height: 50px;
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
}
.lecture-container-wrap {
    margin-top: 50px;
}
.lecture-sidebar{
    width: 350px;
    background-color: #f7f7f7;
    border-right: 1px solid #d7dadb;
    position: fixed;
    height: 100% !important;
    overflow: scroll !important;
    padding-bottom: 120px;
    z-index: 9;
}
.lecture-sidebar-course-title{
    font-size: 18px;
}
.lecture-sidebar-curriculum-wrap .section-item-title a{
    background-color: #f0f0f0;
}
.sidebar-section-item.completed .section-item-title a{
    color: #666666;
}
.sidebar-section-item.active .section-item-title a{
    background-color: #D3E6FF;
}
.lecture-container{
    margin-left: 350px;
    background: #fff;
    padding: 40px;
    height: auto;
    width: 100%;
}
.back-to-curriculum{
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    margin-top: 8px;
    margin-left: 20px;
    color: #000000;
    font-weight: bold;
}
a.nav-icon-list{
    line-height: 50px;
    color: #fff;
    font-size: 30px;
    padding: 0 10px;
}
.section-item-title .lecture-name small {
    color: #666;
}
.lecture-title{
    font-size: 24px;
}
.lecture-lock-icon i{
    font-size: 50px;
}
.lecture-lock-title{
    font-weight: 300;
}
.lecture-attachments-title{
    font-size: 16px;
}
.lecture-attachments .lecture-attachment{
    font-size: 14px;
}

/**
* Assignment Single Page
*/
.assignment-header-info{
    background-color: #ddf1ff;
    border: 1px solid #bbdaf1;
}
#assignment-submission-form h4{
    font-size: 18px;
}
/**
* Quiz Single Page, Attempt Page
*/
.quiz-wrap{
    margin-bottom: 100px;
}
.quiz-wrap h1, .quiz-wrap h2{
    font-weight: 300;
    line-height: 1.4;
}
.quiz-wrap h1{
    font-size: 2.2em;
}
.quiz-wrap h2{
    font-size: 1.7em;
}
.question-wrap .quiz-image img{
    width: 100%;
    height: auto;
}
.attempt-options-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: justify;
        align-content: space-between;
    margin: 1% -1% -1% -1%;
}
.question-option {
    -webkit-box-flex: 0;
        -ms-flex: 0 auto;
            flex: 0 auto;
    padding: 1%;
    width: 50%;
}
.question-option label{
    background-color: #f1f1f1;
    color: #525252;
    border: 1px solid #e2e2e2;
    cursor: pointer;
    font-size: 15px;
    display: block;
    line-height: 1.5;
    padding: 13px 8px 11px;
    clear: both;
    overflow: hidden;
                                                                                                                                                                                                                                                                            -webkit-transition: box-shadow .2s, -webkit-box-shadow .2s;
                                                                                                                                                                                                                                                                                    transition: box-shadow .2s, -webkit-box-shadow .2s;
    border-radius: 2px;
}
.question-option label:hover {
    -webkit-filter: brightness(90%);
            filter: brightness(90%);
}
.btn-wide {
    min-width: 140px;
    cursor: pointer;
    -webkit-animation: 100ms ease-in;
            animation: 100ms ease-in;
                                                                                                                                                                                                                                                                            -webkit-transition: box-shadow .2s, -webkit-box-shadow .2s;
                                                                                                                                                                                                                                                                                    transition: box-shadow .2s, -webkit-box-shadow .2s;
    box-shadow: 0 2px 2px rgba(103, 103, 103, 0.1)
}
.btn-dark-blue{
    background-color: #0B79D3;
    color: #FFF;
    font-size: 16px;
}
.btn-dark-blue:hover{
    color: #ffffff;
    -webkit-filter: brightness(90%);
            filter: brightness(90%);
}
#quiz-progress {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #efecec;
    border-top: 1px solid #e2e2e2;
    padding: 3px 5px;
    z-index: 99;
}
span.quiz-progress-number {
    display: inline-block;
    padding: 6px 10px;;
    background: #dedede;
    border: 1px solid #d4d4d4;
}
span.quiz-progress-number.active {
    display: inline-block;
    padding: 6px 10px;;
    background: #bbb;
    border: 1px solid #aaa;
    font-weight: bold;
}
.quiz-submitted-alert h1{
    font-size: 4em;
}
.quiz-result-gretings .greetings-icon{
    font-size: 5em;
}
/** END Quiz Single page, Attempt Page **/

/**
* Categories page
*/
.page-header-wrapper{
    min-height:300px;
    background: url(../../images/page-banner-1.jpg) no-repeat scroll top center / cover;
    position: relative;
}
.page-header-wrapper::before {
    content: "";
    /* background: #07294d; */
    height: 100%;
    left: 0;
    opacity: 0.8;
    position: absolute;
    top: 0;
    width: 100%;
}
.page-header-wrapper h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #07294D!important;
    font-size: 52px;
}
.page-header-wrapper a:not(.btn) {
    /*color: #e8e9ff;*/
}
.page-header-wrapper2{
    min-height:300px;
    background: url(../../images/videosbanner.jpeg) no-repeat scroll top center / cover;
    position: relative;
}
.page-header-wrapper2::before {
    content: "";
    /* background: #07294d; */
    height: 100%;
    left: 0;
    opacity: 0.8;
    position: absolute;
    top: 0;
    width: 100%;
}
.page-header-wrapper2 h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #07294D!important;
    font-size: 52px;
}
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.page-header-wrapper .breadcrumb{
    background-color: transparent;
    padding-left: 0;
}
.category-item-name a{
    font-size: 18px;
    font-weight: 300;
    border-radius: 3px;
    position: relative;
}
.category-item-name a:hover:before {
    content: "";
    background: #000000;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
    position: absolute;
}
.category-item-name a i{
    display: block;
    font-size: 50px;
    margin-bottom: 10px;
}
/** END Categories **/

/**
* No data screen
*/
.no-data-screen-wrap{
    color: #777777;
}
.no-data-screen-wrap  i{
    font-size: 90px;
    margin-bottom: 10px;
}
.no-data-screen-wrap h3{
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}
.no-data-screen-wrap h5{
    font-size: 20px;
    font-weight: 300;
}
/** ENd no data screen **/

/**********************************************************************
* Plugins Support
***********************************************************************/

/**
* Student Progress
*/
.progress-report-loop-detail .progress{
    height: 5px;
}
.lecture-status-icon{
    font-size: 20px;
}

/**
* Pagination
*/

.pagination {
    font-size: 1.5rem;
    text-align: center;
    width:100%;
    padding-bottom: 25px;
    line-height:50px;
}

.pagination .page-item {
    width:48px;
    height:48px;
}

.page-link {
    color: #07294d;
}

.page-item.active .page-link {
    color: #fff;
    background-color: #07294d;
    border-color: #07294d;
}

/**
Footer Section
 */

footer{
    font-size: 14px;
    position: relative;
    top:0px;
    color: #ffffff;
    background: #07294d;   /*1 url(../../images/footer-bg.svg) no-repeat scroll center center / cover; */
}
footer::before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
footer a,.footer-bottom-wrap a{
    color: #ffffff;
}
footer a:hover,.footer-bottom-wrap a:hover{
    color: #ff9900;
}
footer h4{
    font-size: 18px;
    margin-bottom: 20px;
}
footer .footer-links{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
footer .footer-links li{
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
}
.footer-widget-wrap li{line-height: 24px}
footer .footer-links li a{
    line-height: 35px;
}
.footer-social-icon-wrap a:hover{
    color: var(--a-hover-color);
}
.footer-social-icon-wrap i{
    font-size: 24px;
}

.footer-bottom-wrap{
    color: #ffffff;
    background: #011C38;
}
.footer-bottom-right-links li{
    display: inline-block;
}
.footer-bottom-right-links li a{
    display: block;
    padding-left: 10px;
}


@media (max-width: 991.98px) {
    .page-header-wrapper{
        min-height: 150px;
    }
    .offcanvas-collapse {
        position: fixed;
        top: 62px; /* Height of navbar */
        bottom: 0;
        left: 100%;
        width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
        overflow-y: auto;
        visibility: hidden;
        background-color: #ffffff;
        transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out, visibility .3s ease-in-out;
        transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
    }
    .offcanvas-collapse.open {
        visibility: visible;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    .nav-user-item .btn,.nav-user-item .btn:hover{
        border: none;
        background: none!important;;
        color: #07294D;
        padding-left: 0px;
        text-align: left;
    }
    .mini-cart-item .text-center{
        text-align: left!important;
    }
    a#miniCartDropDown, a.profile-dropdown-toogle{
        padding-left: 0px;
    }
}



/**
* Circle Progress Bar
*/

/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/

.progress.circle {
    width: 120px;
    height: 120px;
    background: none;
    position: relative;
}

.progress.circle::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 10px solid #CCCCCC;
    position: absolute;
    top: 0;
    left: 0;
}

.progress.circle>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress.circle .progress-left {
    left: 0;
}

.progress.circle .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 10px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress.circle .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
        transform-origin: center left;
}

.progress.circle .progress-right {
    right: 0;
}

.progress.circle .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
        transform-origin: center right;
}

.progress.circle .progress-value {
    position: absolute;
    top: 0;
    left: 0;
}

/** END Circle Progress **/


/**
 * payment Form
 */

/**
 * payment Page
 */

.thankyou-payment-text-details{
    font-size: 18px; line-height: 2;
}

/**
 * The CSS shown here will not be introduced in the Quickstart guide, but shows
 * how you can use CSS to style your Element's container.
 */
.StripeElement {
    box-sizing: border-box;
    height: 40px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}
.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}
.StripeElement--invalid {
    border-color: #fa755a;
}
.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

/**
User Profile Page
*/
.profile-page-sidebar{
    width: 230px;
}
.profile-page-sidebar .profile-image img {
    border-radius: 50%;
    width: 140px;
    border: 7px solid #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23)
}
.profile-page-wrap .profile-designation{
    font-weight: 300;
    font-size: 22px;
}
.profile-social-icon-wrap a:hover{
    background-color: #eeeeee;
}
.profile-stat-title{
    color: #73726c;
}
.profile-stat-value{
    font-weight: 700;
    font-size: 23px;
}
/** END User Profile Pages **/


/**
* Video JS Custom Big Play Button
*/
.video-js .vjs-big-play-button {
    left: 40%;
    top: -webkit-calc(50% - 40px);
    top: -o-calc(50% - 40px);
    top: calc(50% - 40px);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border: none;
    border-radius: 50%;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before{
    font-size: 50px;
}

.video-player-wrapper{
    position: relative;
}
.videoPlayerCaption {
    position: absolute;
    bottom: 10%;
    text-align: center;
    width: 100%;
}
.videoPlayerCaption .captionText{
    background-color: rgba(43,51,63,.7);
    color: #ffffff;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 14px;
}
/**
* Social Login
*/
.social-login-item{
    padding: 8px 15px;
    background-color: #eeeeee;
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #ffffff;
}
.social-login-item:hover{
    color: #ffffff;
}
.social-login-item.btn-facebook{
    background-color: #3D5E96;
}
.social-login-item.btn-facebook:hover{
    background-color: #354e7e;
}
.social-login-item.btn-google{
    background-color: #D05D45;
}
.social-login-item.btn-google:hover{
    background-color: #b4553e;
}
.social-login-item.btn-twitter{
    background-color: #64ADEB;
}
.social-login-item.btn-twitter:hover{
    background-color: #599acf;
}
.social-login-item.btn-linkedin{
    background-color: #017BB6;
}
.social-login-item.btn-linkedin:hover{
    background-color: #01618f;
}

.nav-link.profile-dropdown-toogle .profile-text-photo {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
}
.nav-link.active {
    background-color: #07294D !important;
}
.profile-page-sidebar .profile-image .profile-text-photo {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    line-height: 125px;
    font-size: 40px;
    border: 7px solid #fff;
    margin: 0 auto;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
/**
* Cookie
*/
.cookie_notice_popup{
    position: fixed;
    z-index: 999;
    bottom: 20px;
    background-color: rgb(237, 239, 245);
    color: rgb(131, 131, 145);
    width: 300px;
    right: 20px;
}
.cookie_notice_msg{
    padding: 20px;
}
.cookie_notice_popup .cookie-dismiss{
    color: rgb(255, 255, 255);
    background-color: #4B81E8;
    padding: 0.5em;
    text-align: center;
    display: block;
}
.cookie_notice_popup .cookie-dismiss:hover {
    background-color: #205fd6;
}
@media (max-width: 1400px){
    .landing-hero-title{
        font-size: 48px !important;
        line-height: 60px !important;
    }
    .landing-hero-title-en {
        font-size:36px !important;
        line-height:45px !important;
    }
    .max-on-phone {
        width:40% !important
    }
}
@media (max-width: 1300px){
    .max-on-phone {
        width:50% !important
    }
}@media (max-width: 1000px){
    .max-on-phone {
        width:60% !important
    }
}
@media (min-width: 992px){
    .main-nav-auth-profile-wrap{
        margin-left: auto;
    }
}
@media(min-width:911.5px) {
    .large_hidden {
        position:absolute;
        visibility: hidden;
    }
}
@media(max-width:991.5px) {
    .sponsors_bar{
        margin-top:50px !important;
    }
    .sponsor_filter {
        font-size:14px !important;
        padding: 0px !important;
    }
    .dropdown_1{
        position: absolute;
        top:22px;
        right:0px;
    }
    .small-max-video {
        margin-left: -15%;
        margin-right: -15%;
        width:130%;
        height:130%;
    }
    .name_date_stars {
        position: absolute;
        visibility: hidden;
    }
    .small_hidden {
        visibility: hidden;
        height:0px;
    }
    .content-row {
        /* width:85%; */
    }
    .quote_div {
        width:10% !important;
    }
    .small_pfp {
        /* position: absolute;
        left:70%; */
        max-width:90px;
        margin: auto;
    }
    .small_name_stars_date {
        width: 100%;
        text-align: center;
        /* left: 25%; */
    }
    .content-row {
        width: 100%;
        /* max-height:20px !important; */
    }
    .sign {
        /* position: relative;
        right: -30% !important;
        bottom: 50px !important;
        left: 10% !important; */
        width: 100%;
        text-align: center;
    }
    .todown {
        bottom:75px;
    }
    #mainNavbarContent .main-nav-right-menu .dropdown-menu {
        max-width: 100%;
    }
    .hero-right-col{
        display: none;
    }
    .landing-hero-title {
        width: 50% !important;
    }
    .landing-hero-title-en {
        width:50% !important
    }

    .main-nav-auth-profile-wrap{
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        vertical-align: top;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .main-nav-auth-profile-wrap > li{
        display: inline-block;
    }
    .main-nav-auth-profile-wrap .nav-link{
        padding-right: 1rem;
        padding-left: 1rem;
    }
    a#miniCartDropDown{
        display: block;
        position: relative;
    }
    a#miniCartDropDown {
        display: block;
        position: relative;
        min-width: 60px;
    }
}
@media(min-width:768px) {
    .lecture-sidebar{
        display: block;
    }
    .navbar-collapse.show#mainNavbarContent{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}
@media(max-width:767.5px) {
    .godown {
        bottom:25px !important;
    }
    .page-header-wrapper h1 {
        color: #ffffff !important;
    }
    .landing-hero-title{
        font-size: 36px !important;
        line-height: 44px !important;
    }
    .landing-hero-title-en {
        font-size:24px !important;
        line-height: 34px !important;
    }

    #mainNavbarContent{
        margin-top: 10px;
    }
    a.nav-link.browse-categories-nav-link {
        width: 100%;
        display: block;
        max-width: 100%;
    }
    .header-search-wrap{
        margin: 10px 0 !important;
    }
    .main-nav-auth-profile-wrap{
        width: 100%;
        max-width: 100%;
    }

    .lecture-header-left {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 149px;
                flex: 0 0 149px;
    }
    .lecture-container{
        margin-left: 0;
        padding: 20px !important;
    }
    .lecture-sidebar{
        display: none;
        width: 100%;
    }
    .cookie_notice_popup{
        bottom: 0;
        width: 100%;
        right: 0;
    }
}
@media(max-width:574px) {
    /**
    * Mobile, iPhone
    */
    #mainNavbarContent .navbar-nav{float: left}
    .lecture-header-left{
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100px;
                flex: 0 0 100px;
    }
    /* .content-row {
        margin-left:10%;
        width:50% !important;
    } */
    .back-to-curriculum{
        margin-left: 10px;
    }
    .lecture-header-right .nav-btn{
        font-size: 13px;
    }
    .home-cta-left-col{
        margin-bottom: 50px;
    }
    .main-nav-auth-profile-wrap{
        display: table;
    }
    .main-nav-auth-profile-wrap > li{
        display: table-cell;
    }
}

@media (max-width:500px) {
    .dashboard-menu-col {
        display: none;
        position: absolute;
        z-index: 199;
        max-width: 50%;
        top:110px;
        background: #fff;
    }
    .enrolled_course_blade_table {
        display: none;
    }
    .m-h-9-p {
        min-height: 90%;
    }
    .go-down-mobile {
        position: relative;
        top:70px;
    }
    .pc-reading-club-img {
        max-width: 100%;
    }
    .pc-half {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .short_on_phone {
        height:0px !important;
    }
    .re-d-flex {
        display:block !important;
    }
    .reclub-smaller-mobile {
        font-size:24px !important;
    }
    .club-ul {
        font-size:12px;
    }
    .club-index-block {
        width: 90%;
        margin: 5%;
        padding:10px 15px !important;
    }
    .club-image-banner-center{
        height:150px;
        margin-top:50px;
    }
    .forum-banner {
        max-width: 200%;
        width: 150%;
        right: 25%;
        position: relative;
    }
    .dropdown_1{
        position: absolute;
        top:22px;
        right:0px;
    }
    .sponsors_bar{
        margin-top:50px !important;
    }
    .sponsor_filter {
        font-size:14px !important;
        padding: 0px !important;
    }
    .header-btn {
        position: absolute;
        left: 20px;
    }
    .h1-row {
        width: 100% !important;
    }
    .header-btn2 {
        visibility: hidden;
    }
    .club-mb-sm {
        margin-left: 5%;
        margin-right: 5%;
        width: 90% !important;
    }
    .club-videos-banner {
        background-image: url('/themes/edugator/images/club_videos_banner2.jpg') !important;
        background-size: 100% !important;
        aspect-ratio: 3.878788 !important;
    }

    .testimonial-cont {
        padding:0px !important;
    }
    .testimonial-row {
        max-height: 400px !important;
        margin-bottom:5px !important;
        box-shadow: #fff 0px 3px 6px, #eee 0px 3px 6px !important;
    }
    .mobile_expanded {
        max-height: 100% !important;
    }
    .quote_img {
        height:30px !important;
        width:30px;
    }
    .no-phone-flex {
        display:block !important;
    }
    .smallgrow {
        height:520px;
    }
    .play-button {
        position:relative !important;
        top:0px !important;
        left:0px !important;
        width:50px !important;
        height:50px !important;
    }
    .show-video {
        width:50px !important;
        height:50px !important;
        position:relative !important;
        left:45% !important;

    }
    .hide-video {
        position:relative;
        top:350px;
    }
    .hide-on-phone {
        visibility: hidden;
        display: none;
    }
    .godown {
        bottom:0px !important;
        padding:0 1% !important;
    }
    .max-on-phone {
        width:100% !important;
        max-width: 100% !important;
        font-size: 20px !important;
    }
    .more-padding-on-phone {
        padding:20px !important;
    }
    .name-box {
        width: 75% !important;
    }
    .nav-user-item .btn, .nav-user-item .btn:hover {
        border:none !important;
        color:#07294D !important;
        background-color: transparent !important;
    }
    .feature-section {
        padding:24px !important;
    }
    .landing-hero-title {
        line-height: 32px !important;
        font-size: 24px !important;
        width: 50% !important;
    }
    .landing-hero-title-en {
        line-height:28px !important;
        font-size:20px !important;
        width: 50% !important;
    }
    .landing-hero-description {
        line-height: 15px !important;
        font-size: 12px !important;
        margin-top: 20px !important;
    }
    .btn-xuetang {
        margin-right:0px;
    }
    .btn-lg {
        margin-top: 0px !important;
        font-size: 15px !important;
        padding: 0.25rem 0.75rem !important;
    }
    .btn-centered {
        position: relative;
        left:50%;
        transform: translate(-50%, 25%);
    }
    .btn-club-3 {
        position: relative;
        top: 20%;
        font-size: 24px !important;
    }
    .banner-content {
        font-size:20px !important;
        line-height: 30px !important;
        padding-top: 10px !important;
    }
    .hero-left-wrap {
        margin-top: 10px !important;
    }
    .container {
        bottom:0 !important;
        vertical-align: top !important;
    }
    /* .desc-label {
        font-size: 0 !important;
    }
    .desc-link {
        font-size: 0 !important;
    } */
    .item {
        margin-bottom: 25px !important;
    }
    .title {
        margin-bottom: 30px !important;
    }
    .shorten-cp {
        font-size: 20px !important;
    }
    .v2-section-banner2 .banner-content {
        font-size: 20px !important;
    }
    .hero-left-wrap {
        height:100% !important;
    }
    .coaching-header {
        padding-top:0 !important;
    }
    .image-container-offer {
        visibility: hidden;
        height: 0px;
    }
    .myProducts {
        /* height:320px !important; */
        /* height: 100% !important; */
    }
    .myProducts-gallery {
        /* height: 100% !important; */
        /* height:300px !important; */
    }
    .btn-club {
        padding: 100%;
        float: right;
        position: relative;
        top:10px;
        right:20px;
        margin-left:10px;
        line-height: 10px !important;
        font-size: 7px !important;
        border-radius: 50px !important;
    }
    .btn-club-nf {
        padding: 100%;
        margin-left:10px;
        line-height: 10px !important;
        font-size: 7px !important;
        border-radius: 50px !important;
    }
    .btn-club-illusion {
        font-size: 10px !important;
    }
    .btn-club-2 {
        margin-bottom: 10px;
    }
    .our_projects_cn {
        font-size: 1.5rem !important;
    }
}

@media(max-width:413.5px) {
    a#miniCartDropDown, a.profile-dropdown-toogle {
        width: 35px;
        height: 50px;
    }
    .mini-cart-body-wrap.d-block {
        right: 0px;
    }
    .title-1 {
        font-size:24px !important;
    }
    .title-2 {
        font-size:24px !important;
    }
}


@media (min-width:500px) {
    .mobile-content-menu {
        display: none;
    }
    .toggleMenuButton {
        display: none;
    }
    .enrolled_course_blade_mobile{
        display: none;
    }
    .pc-half {
        width:50%;
    }
    .height-on-pc-reading-club {
        width:100%; height:411px;
    }
    .pc-reading-club-img {
        width:100%; max-width:241px; max-height:411px;
    }
    .column-image {
        max-width: 100% !important;
    }
    .myProducts-gallery {
        max-height: 450px !important;
        overflow-y:scroll;
    }

    .btn-club-2 {
        position: relative;
        top:15px;
    }
    .btn-club-3 {
        line-height:50px; font-size:32px; width:20%; position: relative; top: 15%; left: 20%;
    }
}
@media (min-width: 576px){
    .modal-alert {
        max-width: 400px;
    }
}

.section-title h5 {
    color: #07294d;
    position: relative;
    padding-bottom: 12px;
}

.section-title h5::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: #ffc600;
    bottom: 0;
    left: 0;
}

.section-title h2 {
    font-size: 48px;
    color: #000;
    padding-top: 10px;
}

/*
  Theme Name: Edubin - LMS Education HTML Template
  Author: PixelCurve
  Author URL: https://themeforest.net/user/pixelcurve
  Support: help.pixelcurve@gmail.com
  Description: Creative  HTML5 template.
  Version: 2.0
*/


/* Deafult Margin & Padding */
/*-- Margin Top --*/
.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-105 {
    margin-top: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-115 {
    margin-top: 115px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-155 {
    margin-top: 155px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-165 {
    margin-top: 165px;
}

.mt-170 {
    margin-top: 170px;
}

.mt-175 {
    margin-top: 175px;
}

.mt-180 {
    margin-top: 180px;
}

.mt-185 {
    margin-top: 185px;
}

.mt-190 {
    margin-top: 190px;
}

.mt-195 {
    margin-top: 195px;
}

.mt-200 {
    margin-top: 200px;
}

/*-- Margin Bottom --*/

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-125 {
    margin-bottom: 125px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-135 {
    margin-bottom: 135px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-145 {
    margin-bottom: 145px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-155 {
    margin-bottom: 155px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-165 {
    margin-bottom: 165px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-175 {
    margin-bottom: 175px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-185 {
    margin-bottom: 185px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-195 {
    margin-bottom: 195px;
}

.mb-200 {
    margin-bottom: 200px;
}

/*-- margin left --*/
.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-55 {
    margin-left: 55px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-65 {
    margin-left: 65px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-75 {
    margin-left: 75px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-85 {
    margin-left: 85px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-105 {
    margin-left: 105px;
}

.ml-110 {
    margin-left: 110px;
}

.ml-115 {
    margin-left: 115px;
}

.ml-120 {
    margin-left: 120px;
}

.ml-125 {
    margin-left: 125px;
}

.ml-130 {
    margin-left: 130px;
}

.ml-135 {
    margin-left: 135px;
}

.ml-140 {
    margin-left: 140px;
}

.ml-145 {
    margin-left: 145px;
}

.ml-150 {
    margin-left: 150px;
}

.ml-155 {
    margin-left: 155px;
}

.ml-160 {
    margin-left: 160px;
}

.ml-165 {
    margin-left: 165px;
}

.ml-170 {
    margin-left: 170px;
}

.ml-175 {
    margin-left: 175px;
}

.ml-180 {
    margin-left: 180px;
}

.ml-185 {
    margin-left: 185px;
}

.ml-190 {
    margin-left: 190px;
}

.ml-195 {
    margin-left: 195px;
}

.ml-200 {
    margin-left: 200px;
}

/*-- margin right --*/
.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-55 {
    margin-right: 55px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-65 {
    margin-right: 65px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-75 {
    margin-right: 75px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-85 {
    margin-right: 85px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-95 {
    margin-right: 95px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-105 {
    margin-right: 105px;
}

.mr-110 {
    margin-right: 110px;
}

.mr-115 {
    margin-right: 115px;
}

.mr-120 {
    margin-right: 120px;
}

.mr-125 {
    margin-right: 125px;
}

.mr-130 {
    margin-right: 130px;
}

.mr-135 {
    margin-right: 135px;
}

.mr-140 {
    margin-right: 140px;
}

.mr-145 {
    margin-right: 145px;
}

.mr-150 {
    margin-right: 150px;
}

.mr-155 {
    margin-right: 155px;
}

.mr-160 {
    margin-right: 160px;
}

.mr-165 {
    margin-right: 165px;
}

.mr-170 {
    margin-right: 170px;
}

.mr-175 {
    margin-right: 175px;
}

.mr-180 {
    margin-right: 180px;
}

.mr-185 {
    margin-right: 185px;
}

.mr-190 {
    margin-right: 190px;
}

.mr-195 {
    margin-right: 195px;
}

.mr-200 {
    margin-right: 200px;
}


/*-- Padding Top --*/

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-65 {
    padding-top: 65px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-85 {
    padding-top: 85px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-125 {
    padding-top: 125px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-155 {
    padding-top: 155px;
}

.pt-160 {
    padding-top: 160px;
}

.pt-165 {
    padding-top: 165px;
}

.pt-170 {
    padding-top: 170px;
}

.pt-175 {
    padding-top: 175px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-185 {
    padding-top: 185px;
}

.pt-190 {
    padding-top: 190px;
}

.pt-195 {
    padding-top: 195px;
}

.pt-200 {
    padding-top: 200px;
}

/*-- Padding Bottom --*/

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-155 {
    padding-bottom: 155px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pb-165 {
    padding-bottom: 165px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pb-175 {
    padding-bottom: 175px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pb-185 {
    padding-bottom: 185px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pb-195 {
    padding-bottom: 195px;
}

.pb-200 {
    padding-bottom: 200px;
}

/*-- Padding left --*/

.pl-0 {
    padding-left: 0px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-105 {
    padding-left: 105px;
}

.pl-110 {
    padding-left: 110px;
}

.pl-115 {
    padding-left: 115px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-125 {
    padding-left: 125px;
}

/*-- Padding right --*/

.pr-0 {
    padding-right: 0px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-105 {
    padding-right: 105px;
}

/* Background Color */

.gray-bg {
    background: #edf0f2;
}

.white-bg {
    background: #fff;
}

.black-bg {
    background: #222;
}

/* Color */

.white {
    color: #fff;
}

.black {
    color: #222;
}

/* black overlay */

[data-overlay] {
    position: relative;
}

[data-overlay]::before {
    background: #07294d none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

[data-overlay="3"]::before {
    opacity: 0.3;
}

[data-overlay="4"]::before {
    opacity: 0.4;
}

[data-overlay="5"]::before {
    opacity: 0.5;
}

[data-overlay="6"]::before {
    opacity: 0.6;
}

[data-overlay="7"]::before {
    opacity: 0.7;
}

[data-overlay="8"]::before {
    opacity: 0.8;
}

[data-overlay="9"]::before {
    opacity: 0.9;
}
