/*------------------------------------------- Variables -----------------------------------------*/
:root {
  /************************************************* main color ---- */
  --main-color: #518fbb;
  --second-color: #518fbb;
  /************************************************* header color ---- */
  --header-background-color: rgb(255, 255, 255);
  --header-text-color: black;
  --header-hover-color: #f2f3f5;
  /************************************************* Font Variables ---- */
  --main-font: "Tajawal";
  --second-font: sans-serif;
  /************************************************* RTL and directions Variables ---- */
  --rtl: rtl;
  --direction: right;
  --flex-directions: flex-start;
  /************************************************* Header Variables ---- */
  /************************************************* body Variables ---- */
  --body-backgound: rgb(255, 255, 255);
  --body-h-color: black;
  --b-font-size: 15px;
  --b-line-height: 1.5;
  --b-font-color: black;
  /************************************************* card Vriables --- */
  --card-backgound: rgb(255, 255, 255);
  --card-text-color: #000000;
  --card-cat-text-color: #464646;
  /************************************************* a Vriables --- */
  --a-color: rgb(5, 5, 5);
  --a-hover-color: #00c8f0;
  /************************************************* btn Variables --- */
  --btn-theme-primary-bg: #3d3d3d;
  --btn-theme-primary-hover-bg: #8e8e8f;
  /************************************************* footer Variables ----*/
  --footer-backgound: rgb(255, 255, 255);
  --footer-font-color: black;
  --placeholder-font-color: rgb(117, 117, 117);
  /************************************************* footer Variables ----*/
  --see-more-color: rgb(255, 255, 255);
  --lecture-section: #f1f1f1;
  --lecture-font-color: #000000;
  --lecture-background-color: #ffffff;
  --lecture-active-color: #D3E6FF;
  --lecture-disabled-color: #aaaaaa;
}

.dark-mood {
  --main-color: #518fbb;
  --second-color: #518fbb;
  --header-background-color: rgb(0, 0, 0);
  --header-text-color: rgb(255, 255, 255);
  --header-hover-color: #353535;
  --body-backgound: rgb(37, 37, 37);
  --body-h-color: rgb(255, 255, 255);
  --a-color: rgb(255, 255, 255);
  --b-font-color: rgb(255, 255, 255);
  --footer-backgound: rgb(0, 0, 0);
  --footer-font-color: rgb(255, 255, 255);
  --placeholder-font-color: rgb(119, 119, 119);
  /************************************************* card Vriables --- */
  --card-backgound: rgb(0, 0, 0);
  --card-text-color: #ffffff;
  --card-cat-text-color: #464646;
  --see-more-color: rgb(0, 0, 0);
  --lecture-section: #000000;
  --lecture-font-color: #ececec;
  --lecture-background-color: #2e2e2e;
  --lecture-active-color: #6b6b6b;
  --lecture-disabled-color: #6c6c6c;
}

/* --------- New grid system --------- */
.col-2-5 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 18.666667%;
  max-width: 20.666667%;
}

@media (min-width: 992px) {
  .col-lg-1-5 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 11.333333%;
    max-width: 11.333333%;
  }
}
*::-webkit-scrollbar {
  width: 6px;
  height: 4px;
  background-color: var(--body-backgound);
}

*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--main-color);
}

body {
  font-family: var(--main-font), var(--second-font);
  font-size: var(--b-font-size);
  line-height: var(--b-line-height);
  color: var(--b-font-color);
  -webkit-font-smoothing: antialiased;
  background-color: var(--body-backgound);
  transition: all 0.6s ease-in-out;
}

body.rtl {
  direction: var(--rtl);
  text-align: var(--direction);
}

p {
  color: var(--body-h-color);
}

h1 {
  color: var(--body-h-color);
}

h2 {
  color: var(--body-h-color);
}

h3 {
  color: var(--body-h-color);
}

h4 {
  font-size: 18px;
  color: var(--body-h-color);
}

h5 {
  font-size: 16px;
  color: var(--body-h-color);
}

a {
  color: var(--a-color);
}

a:hover {
  color: var(--main-color) !important;
  text-decoration: none;
}

input {
  font-family: var(--main-font) !important;
}

.form-control {
  background-color: var(--header-background-color) !important;
  color: var(--b-font-color) !important;
}

::-moz-placeholder {
  color: var(--placeholder-font-color) !important;
  font-family: var(--main-font), var(--second-font);
  opacity: 1;
}

::placeholder {
  color: var(--placeholder-font-color) !important;
  font-family: var(--main-font), var(--second-font);
  opacity: 1;
}

.btn {
  font-size: 0.9rem !important;
}

.btn-warning {
  color: #ffffff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.btn-outline-dark {
  color: var(--body-h-color);
}

.modal-content {
  background-color: var(--body-backgound);
}

@media (min-width: 576px) {
  .form-inline .form-control {
    display: inline-block;
    vertical-align: middle;
  }
}
.row {
  margin-right: 0px;
  margin-left: 0px;
}

#abd {
  color: #004b5a;
}

/* ---------------------------------- header Style --------------------------------------- */
/*-- first row --*/
.nav-1-row {
  padding-right: 2.5%;
  padding-left: 2.5%;
  background-color: var(--header-background-color);
}
.nav-1-row a {
  color: var(--header-text-color);
}
.nav-1-row i {
  color: var(--header-text-color);
}
.nav-1-row .nav-icon {
  font-size: 20px;
  margin-left: 6px;
  margin-right: 6px;
}

.main-navbar {
  background-color: var(--h-main-color);
  font-size: 15px;
  color: var(--h-secound-color);
}

.line {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: #7e7e7e;
}

.mar-0 {
  margin: 0px !important;
}

.nav-list {
  display: flex;
}

.lang {
  color: white;
  font-size: large;
}

.lang-mobail a {
  color: white;
}
.lang-mobail a i {
  color: white;
}

.dropdown-menu {
  position: absolute;
  left: -40px !important;
  transform: translate3d(-5px, 34px, 0px);
  top: 0px;
  will-change: transform;
  color: var(--body-h-color) !important;
}

.nav-font-size {
  font-size: var(--h-font-size);
}

.menu-list {
  display: flex;
  float: left;
}

.nav-item-margin {
  margin: 7px 20px 5px 20px;
  font-size: 13px;
  color: var(--header-text-color);
}
.nav-item-margin a {
  color: var(--header-text-color);
}

.header-search-wrap {
  width: 40%;
  background: var(--body-backgound);
  position: relative;
}

.header-search-wrap input.form-control {
  background-color: var(--body-backgound);
  width: 100%;
  padding-right: 30px;
}

.header-search-wrap input.form-control:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

/*
.header-search-btn{
    position: absolute;
    right: 0;
}
*/
#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;
}

.dashboard-menu li {
  display: flex;
}

a#miniCartDropDown:after,
a.profile-dropdown-toogle:after {
  content: none;
}

/*
a#miniCartDropDown:hover  {
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #eee;

}
*/
#miniCartDropDown .badge {
  font-size: 11px;
  padding: 3px 7px;
  position: absolute;
  right: -11px;
}

#dropdownNotification .badge {
  font-size: 11px;
  padding: 3px 7px;
  position: absolute;
  right: -11px;
}

.dropdownNotification {
  width: 265px;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99;
  right: -91px;
  background: var(--header-background-color);
  border: 1px solid #dddddd;
  box-shadow: 0 10px 20px rgba(2, 2, 2, 0.3);
  border-radius: 6px;
  height: 280px;
  overflow-y: scroll;
  text-align: start;
  padding: 15px;
  border-radius: 5px;
}
.dropdownNotification img {
  border-radius: 50% !important;
  height: 50px;
  min-width: 50px;
  width: 50px;
  max-width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0px 12px;
}
.dropdownNotification p {
  font-size: 14px;
}

.new-notification {
  background-color: rgba(0, 0, 255, 0.1215686275);
}

.free-text {
  font-size: 14px;
}

/*.profile-dropdown-toogle{
    padding: 5px;
}*/
.profile-dropdown-toogle img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.profile-dropdown-menu {
  position: absolute;
  display: none;
  z-index: 99;
  top: 61px;
  right: -75px;
  background-color: var(--header-background-color);
  width: 240px;
  text-align: left;
  border: 1px solid #eeeeee;
  box-shadow: 0 4px 16px rgba(20, 23, 28, 0.25);
}

.profile-dropdown-menu-mobail {
  top: 172px;
  right: 54px;
}

.profile-dropdown-menu .dashboard-menu li a {
  padding: 7px 10px;
  font-size: 14px;
  color: var(--header-text-color);
  display: flex;
  align-items: center;
}

.nav-item-user-profile:hover .profile-dropdown-menu {
  display: block;
}

[dir=ltr] .header-wishlist {
  margin-left: 30px !important;
}

[dir=rtl] .header-wishlist {
  margin-right: 30px !important;
}

.mini-cart-item .mini-cart-body-wrap {
  width: 290px;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99;
  right: -175px;
  background: var(--header-background-color);
  border: 1px solid #dddddd;
  top: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}
.mini-cart-item .mini-cart-body-wrap .mini-cart-course-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mini-cart-item .mini-cart-body-wrap span {
  color: var(--header-text-color);
}
.mini-cart-item .mini-cart-body-wrap .current-price {
  font-size: 15px;
}
.mini-cart-item .mini-cart-body-wrap .old-price {
  font-size: 12px;
  color: var(--header-text-color);
}

.mini-cart-item:hover .mini-cart-body-wrap {
  display: block;
}

.mini-cart-item i {
  color: var(--header-text-color);
  font-size: 31px;
}

.header-item .mini-cart-body-wrap {
  width: 245px;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99;
  right: -125px;
  background: var(--header-background-color);
  border: 1px solid #dddddd;
  top: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}

.header-item:hover .mini-cart-body-wrap {
  display: block;
}

.header-item i {
  color: var(--header-text-color);
  font-size: 31px;
}

.mini-cart-total-wrap {
  background-color: var(--header-background-color);
}

.mini-cart-course-item a:hover {
  background-color: var(--header-background-color);
  color: var(--btn-theme-primary-hover-bg);
}

.minicart-course-thumbnail {
  flex: 0 0 70px;
}

.mini-cart-course-title {
  font-size: 13px;
}

.minicart-course-info .current-price {
  color: var(--main-color);
}

.minicart-course-info .old-price {
  font-size: 13px;
}

.mini-cart-course-item {
  position: relative;
}

label.checkbox span,
label.radio span {
  font-family: "Line Awesome Free";
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 135%;
  color: #e2c000;
}

.mini-cart-course-item .remove-cart-btn {
  position: absolute;
  /* left: 15px; */
  border-radius: 50%;
  width: 23px;
  height: 23px;
  margin: 10px;
  line-height: 20px;
  background-color: var(--header-text-color);
  color: var(--header-background-color);
  border: none;
  top: 60px;
  font-size: 15px;
}

.minicart-total-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 19px;
}

/**
* #END Nav Menu
*/
.socail-nav {
  font-size: 23px;
  color: #fff;
  margin-left: 8px;
  margin-right: 8px;
}

.nav-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 26px;
  margin-right: 4%;
}
.nav-social li {
  margin-left: 2%;
}
.nav-social li a {
  color: #004b5a;
}
.nav-social li p {
  font-size: 12px;
  align-content: center;
  display: inline;
}

.dropdown-menu {
  background-color: var(--header-background-color);
  border: 1px solid var(--main-color);
}
.dropdown-menu .dropdown-item {
  color: var(--header-text-color);
  font-size: 16px;
  display: flex;
}
.dropdown-menu .dropdown-item:hover {
  color: var(--main-color);
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: var(--body-backgound);
}

.dropdown-user-info {
  color: black;
  text-align: center;
}

.dashboard-menu li a i {
  font-size: 23px;
  padding-right: 10px;
  padding-left: 10px;
}

/*-- 2 row --*/
.nav-2-row {
  padding-right: 5%;
  padding-left: 5%;
  padding-top: 0.7%;
  padding-bottom: 0.7%;
  align-items: center;
  background-color: var(--header-background-color);
  box-shadow: -1px 7px 8px 0px rgba(189, 189, 189, 0.1490196078);
  z-index: 50;
  position: relative;
}
.nav-2-row a {
  color: var(--header-text-color);
}
.nav-2-row i {
  color: var(--header-text-color);
}
.nav-2-row .row2-search {
  border-radius: 11px;
  max-height: 100%;
  border: 0.5px solid #a5a2a2;
}
.nav-2-row .row2-search form {
  font-family: var(--main-font);
  background-color: transparent;
  display: flex;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.nav-2-row .row2-search input {
  width: inherit;
  display: block;
  border: none;
}

.logosvg {
  height: 45px;
  margin: 7px;
  padding: 2px;
}

.site-main-logo img {
  height: 45px;
  margin: 7px;
  padding: 2px;
  max-height: 40px;
  width: auto;
}

@media (max-width: 990px) {
  .nav-logo a svg {
    height: 40px;
  }
}
.nav-logo img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.certification {
  display: flex;
  justify-content: center;
}
.certification a {
  color: #fff;
}

.rating-stats-avg {
  text-align: center;
}

.review-write-star-wrap i,
.generated-star-rating-wrap i {
  color: gold;
  font-size: 16px;
  cursor: pointer;
}

.star-rating-bar-bg {
  background: #f2f3f5;
  height: 20px;
  width: 100%;
  margin-right: 20px;
}

.rating-percent-text {
  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 {
  flex: 0 0 120px;
  margin-bottom: 10px;
  text-align: right;
}

.reviews-list-wrap .reviewed-user {
  flex: 0 0 calc(25% + 60px);
}

.reviewed-user-photo {
  width: 48px;
  height: 48px;
  line-height: 48px;
  margin-right: 20px;
  margin-left: 20px;
}

.reviewed-user-photo img,
.profile-text-photo {
  border-radius: 62%;
  display: block;
  text-align: center;
  font-size: 19px;
  background-color: var(--main-color) !important;
  color: rgb(255, 255, 255) !important;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
}

.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;
  align-items: center;
  border-radius: 3px;
  color: #505763;
  font-size: 17px;
}

.categories-menu {
  position: relative;
}

.categories-menu ul {
  position: absolute;
  z-index: 99;
  background-color: var(--header-background-color);
  width: 270px;
  min-height: 400px;
  padding: 0.8rem 0;
  border: none;
  border-radius: 0;
  border-bottom-left-radius: 2px;
  border-top: 1px solid #e8e9eb;
  box-shadow: 0 0 0 1px #d1d7dc, 0 2px 4px rgba(0, 0, 0, 0.068);
  color: var(--header-text-color);
  margin: 0;
  top: 0px;
  /*  left: -128px;  */
  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%;
}

.nav-categories-item-ar:hover .categories-ul-first > li:hover > ul {
  display: block;
  right: 99% !important;
}

.categories-menu ul li a {
  display: block;
  padding: 8px 12px;
  color: var(--header-text-color);
}

.categories-menu ul li a:hover {
  background: var(--header-hover-color);
  color: var(--a-hover-color);
}

.categories-ul-first a .la-angle-right {
  float: right;
  color: var(--header-text-color);
}

.categories-ul-first a .la-angle-left {
  float: left;
  color: var(--header-text-color);
}

/** END Categories Menu **/
.nav-user-ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav-user-ul .nav-login a {
  color: var(--main-color);
  margin: 5px 7px;
}
.nav-user-ul .nav-login a:hover {
  color: var(--h-thrd-color);
}
.nav-user-ul .nav-signup {
  background-color: var(--main-color);
  height: 40px;
}
.nav-user-ul .nav-signup a {
  color: #fff;
}
.nav-user-ul a {
  color: #fff;
}
.nav-user-ul a i {
  color: var(--header-text-color);
}

.nav-collapse {
  font-size: 37px;
  color: white;
}

.mini-cart {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
  font-size: xx-large;
  padding-bottom: 5px;
}

@media (max-width: 1299px) {
  .tablet-berackpoint {
    display: none;
  }
}
@media (min-width: 1299px) {
  .tablet-berackpoint-2 {
    display: none;
  }
}
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  background-color: var(--main-color);
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: var(--header-background-color);
  color: var(--header-text-color);
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  color: var(--h-thrd-color);
}

#main {
  transition: margin-left 0.5s;
}

@media screen and (max-height: 450px) {
  .sidebar {
    padding-top: 15px;
  }
  .sidebar a {
    font-size: 18px;
  }
}
.mini-cart-old {
  color: white;
  font-size: xx-large;
  padding: 0px;
  margin: 0px;
}

.footer-nav {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  font-size: 16px;
  padding-top: 16px;
  text-align: start;
}

.footer-social {
  padding: 5px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 40px;
}

.footer-payment {
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 28px;
}

.footer-about {
  text-align: center;
}

.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10%;
  background-color: var(--main-color);
  z-index: 10;
  box-shadow: 0px 0px 6px silver;
  display: flex;
  color: black;
  width: 100%;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .site-end {
    padding-bottom: 20%;
  }
}
@media (max-width: 750px) {
  .hide-filter {
    max-height: 0px;
    overflow: hidden;
    display: none;
  }
  .show-filter {
    height: 1130px;
    max-height: 1130px;
    display: block;
    transition: all 750ms linear;
  }
  .show-Filter-btn {
    width: 100%;
    padding: 10px;
    background-color: var(--body-backgound);
    color: var(--body-h-color);
    border-radius: 8px;
    border: 1px solid;
    margin-bottom: 20px;
    cursor: pointer;
  }
}
.mobile-nav-li {
  color: white;
  display: flex;
  justify-content: center;
}
.mobile-nav-li a {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: white !important;
}
.mobile-nav-li a i {
  font-size: 30px;
}
.mobile-nav-li a p {
  font-size: 12px;
}

.slider-img {
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 1400px) {
  .slider-img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.home-category {
  flex-wrap: wrap;
}
.home-category div {
  padding: 6px;
}
@media (min-width: 768px) {
  .home-category div {
    flex: 0 0 25%;
    max-width: 20%;
  }
}
.home-category a {
  border: 1px solid #d1d7dc;
  padding: 0.8rem 1.6rem;
  color: #1c1d1f;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 5.6rem;
  font-size: 16px;
  color: var(--b-font-size);
}

.content-us {
  min-height: 220px;
  background-color: var(--main-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.last-category {
  border-width: 2px !important;
  border-style: dashed !important;
  border-color: var(--main-color) !important;
  color: var(--main-color) !important;
}

.course-box.style-1.additional-info {
  min-height: 380px;
  padding: 38px;
  margin-top: 0;
  height: calc(100% - 30px);
  display: flex;
  align-items: center;
  background-color: var(--card-backgound);
  border-width: 2px;
  border-style: dashed;
  border-color: #c1c1c1;
}

.courses-h-live {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}

.live-point {
  width: 20px;
  height: 20px;
  background-color: red;
  border-radius: 50px;
  margin: 10px;
  margin-right: 24px;
  margin-left: 24px;
  animation: live-zoom 1s infinite ease-in-out;
}

.live-point-off {
  width: 15px;
  height: 15px;
  background-color: red;
  border-radius: 50px;
  margin-right: 5px;
  margin-left: 5px;
  color: rgba(255, 255, 255, 0);
}

.event {
  border: 1px solid #acacac;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.08);
}
.event .event-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 44px;
}
.event img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .event .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 14.666667% !important;
  }
}

[dir=ltr] .event {
  direction: ltr;
}

[dir=rtl] .event {
  direction: rtl;
}

@keyframes live-zoom {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1.4);
  }
}
.our-teachers {
  background-color: var(--card-backgound);
  color: var(--card-text-color);
  height: 260px;
  background-size: 170%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  align-items: center;
  flex-direction: column-reverse;
}
.our-teachers .card-body {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--card-backgound);
  height: 100px;
  max-height: 100px;
  width: 92%;
  margin: 10px;
  border-radius: 0 0 10px 10px;
  padding: 6px;
}
.our-teachers .card-body h4 {
  color: var(--card-text-color) !important;
}
.our-teachers .card-body h5 {
  color: var(--card-text-color) !important;
  font-size: 12px;
}
.our-teachers:hover {
  background-size: 200%;
  transition: background-size 1500ms linear;
}
.our-teachers:hover .card-body {
  transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
  background-color: var(--main-color);
}
.our-teachers:hover .card-body h4 {
  color: #f3f3f3 !important;
}
.our-teachers:hover .card-body h5 {
  color: #fcfcfc !important;
}

.home-blog-card {
  background-color: var(--card-backgound);
  color: var(--card-text-color);
  height: 255px;
  background-size: 170%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
}
.home-blog-card .excerpt {
  background-color: var(--card-backgound);
  padding: 7px;
  border-radius: 0 0 10px 10px;
  width: 100%;
}
.home-blog-card .excerpt span {
  font-size: 10px;
  color: var(--card-text-color);
}
.home-blog-card .excerpt h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home-blog-card .excerpt a {
  color: var(--card-text-color);
}
.home-blog-card .excerpt p {
  margin-top: 8px;
  margin-bottom: 8px;
}
.home-blog-card.big-card {
  height: 530px;
}
.home-blog-card.big-card .excerpt {
  background-color: var(--card-backgound);
  padding: 7px;
  border-radius: 0 0 10px 10px;
}
.home-blog-card.big-card .excerpt span {
  font-size: 15px;
  color: var(--card-text-color);
}
.home-blog-card.big-card .excerpt h2 {
  margin-top: 17px;
  margin-bottom: 13px;
  overflow: hidden;
  font-size: 19px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home-blog-card.big-card .excerpt a {
  color: var(--card-text-color);
}
.home-blog-card.big-card .excerpt p {
  margin-top: 8px;
  margin-bottom: 8px;
}
.home-blog-card:hover {
  background-size: 200%;
  transition: all 1500ms ease-in-out;
}
.home-blog-card:hover .excerpt {
  transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
  background-color: var(--main-color);
}
.home-blog-card:hover .excerpt a {
  color: #ffffff !important;
}
.home-blog-card:hover .excerpt span {
  color: #ffffff !important;
}

.blog-box {
  min-height: 255px !important;
  margin-top: 20px !important;
  border-radius: 10px !important;
  text-align: center;
}

.event-date-m {
  font-size: 27px;
  font-weight: 600;
  margin: 0;
}

.date-hr {
  width: 100%;
  border-top: 6px solid red;
  padding: 0px !important;
  margin: 0;
}

.event-date-d {
  font-size: 49px;
  font-weight: bold;
  padding: 1px !important;
}

@media (max-width: 770px) {
  .date-hr {
    width: 80%;
  }
}
@media (max-width: 500px) {
  .event h3 {
    font-size: 25px;
    font-weight: 600;
  }
}
.join-now {
  border-radius: 10px;
  padding: 4px 35px;
  margin-left: 21%;
  margin-bottom: 4%;
  background-color: var(--main-color);
}

.join-now:hover {
  background-color: var(--main-color);
  color: black;
}

@media (max-width: 500px) {
  .r-col-padding {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
.courses-card {
  padding-right: 6px;
  padding-left: 6px;
}

.quote {
  text-align: center;
  font-size: 20px;
  margin: auto;
  padding: 15px;
  border: 2px solid var(--main-color);
  max-width: 70%;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}

blockquote {
  color: rgb(0, 0, 0);
  font-style: italic;
  position: relative;
  z-index: 20;
}

.left {
  position: absolute;
  top: -50px;
  left: -20px;
  width: 150px;
  text-align: left;
  z-index: 10;
  font-size: 5rem;
  color: #070707;
  background-color: #ffffff;
  line-height: 200px;
}

.right {
  position: absolute;
  bottom: -50px;
  right: -20px;
  width: 150px;
  text-align: right;
  z-index: 10;
  font-size: 5rem;
  color: #000000;
  background-color: #ffffff;
  line-height: 200px;
}

small {
  font-size: 14px;
  color: #6b6b6b;
  position: relative;
  z-index: 20;
  white-space: pre-wrap;
  /*
  &:before{
    content: "\2014 \0020";
    width: 5px;
  }*/
}

.login * {
  box-sizing: border-box;
}
.login body {
  background: #f6f5f7;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  height: 100vh;
  margin: -20px 0 50px;
}
.login h1 {
  font-weight: bold;
  margin: 0;
}
.login h2 {
  text-align: center;
}
.login p {
  font-size: 14px;
  font-weight: 100;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 20px 0 30px;
}
.login span {
  font-size: 12px;
}
.login a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  margin: 15px 0;
}
.login button {
  border-radius: 20px;
  border: 1px solid #FF4B2B;
  background-color: #FF4B2B;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
}
.login button:active {
  transform: scale(0.95);
}
.login button:focus {
  outline: none;
}
.login button.ghost {
  background-color: transparent;
  border-color: #FFFFFF;
}
.login form {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 50px;
  height: 100%;
  text-align: center;
}
.login input {
  background-color: #eee;
  border: none;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100%;
}
.login .container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 28px var(--main-color), 0 10px 10px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  width: 768px;
  max-width: 100%;
  min-height: 480px;
}
.login .form-container {
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 0.6s ease-in-out;
}
.login .sign-in-container {
  left: 0;
  width: 50%;
  z-index: 2;
}
.login .container.right-panel-active .sign-in-container {
  transform: translateX(100%);
}
.login .sign-up-container {
  left: 0;
  width: 50%;
  opacity: 0;
  z-index: 1;
}
.login .container.right-panel-active .sign-up-container {
  transform: translateX(100%);
  opacity: 1;
  z-index: 5;
  animation: show 0.6s;
}
@keyframes show {
  0%, 49.99% {
    opacity: 0;
    z-index: 1;
  }
  50%, 100% {
    opacity: 1;
    z-index: 5;
  }
}
.login .overlay-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
  z-index: 100;
}
.login .container.right-panel-active .overlay-container {
  transform: translateX(-100%);
}
.login .overlay {
  background: #FF416C;
  background: linear-gradient(to right, #FF4B2B, #FF416C);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  color: #FFFFFF;
  position: relative;
  left: -100%;
  height: 100%;
  width: 200%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}
.login .container.right-panel-active .overlay {
  transform: translateX(50%);
}
.login .overlay-panel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  top: 0;
  height: 100%;
  width: 50%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}
.login .overlay-left {
  transform: translateX(-20%);
}
.login .container.right-panel-active .overlay-left {
  transform: translateX(0);
}
.login .overlay-right {
  right: 0;
  transform: translateX(0);
}
.login .container.right-panel-active .overlay-right {
  transform: translateX(20%);
}
.login .social-container {
  margin: 20px 0;
}
.login .social-container a {
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  height: 40px;
  width: 40px;
}

.btn-info,
.btn-purple {
  color: #fff;
  background-color: #000000 !important;
  border-color: var(--main-color) !important;
}

.login-card {
  border-radius: 10px;
  box-shadow: 0px 0px 8px 0px rgba(10, 10, 10, 0.3);
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
}

.social-login-item {
  border-radius: 50px;
  width: 50px;
  height: 50px;
  margin: 7px;
  padding: 5px;
  font-size: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-login-wrap {
  display: flex;
}

.h-3-flex {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 1200px) {
  .container-wide {
    max-width: 1300px !important;
  }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  display: inline-flex;
}

.inline-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
}

.btn-fill {
  display: inline-block;
  background-color: var(--main-color);
  color: #ffffff;
  padding: 8px 30px;
  border-radius: 5px;
  font-size: 14px;
  border: 1px solid var(--main-color);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.btn-fill:hover {
  color: var(--main-color);
  background-color: transparent;
}

.btn-fill:focus {
  outline: none;
}

.btn-fill.style-4 {
  display: inline-block;
  background-color: #ffffff;
  color: var(--main-color);
  padding: 7px 4px;
  border-radius: 5px;
  font-size: 12px;
  border: 1px solid #ffffff;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  width: 50%;
}

.btn-fill.style-4:hover {
  color: #ffffff;
  background-color: transparent;
}

.course-box.style-1 {
  margin-top: 40px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.226);
  background-color: var(--card-backgound);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.course-box.style-1 .figure-box {
  margin-top: -60px;
  margin-bottom: 25px;
}

.course-box.style-1 .figure-box img {
  border-radius: 5px 5px 0 0;
  width: 100%;
}

.hover-content a {
  color: white;
}

.course-box.style-1 .content-box .category-name {
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 5px;
  color: var(--card-cat-text-color);
  font-weight: 500;
  font-size: 12px;
}

.course-box.style-1 .content-box .category-name:after {
  position: absolute;
  z-index: 1;
  content: "";
  height: 1px;
  width: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  line-height: 1.2;
}

[dir=rtl] .course-box.style-1 .content-box .category-name:after {
  right: 0;
}

[dir=ltr] .course-box.style-1 .content-box .category-name:after {
  left: 0;
}

.price-html-wrap {
  color: var(--card-text-color);
  display: flex;
  flex-direction: column-reverse;
}

.price-html-wrap span {
  vertical-align: middle;
  font-weight: 600;
}

.course-landing-page-price-wrap .price-html-wrap .current-price {
  font-size: 32px;
  white-space: nowrap;
}

.price-html-wrap .old-price {
  font-size: 80%;
  color: rgb(255, 103, 103);
}

.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-box.style-1 .content-box .category-name.color-1 {
  color: var(--main-color);
}

.course-box.style-1 .content-box .category-name.color-1:after {
  background-color: var(--main-color);
}

.course-box.style-1 .content-box .title {
  height: 51px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 17px;
  line-height: 1.4;
}

.course-box.style-1 .content-box .sub-title {
  color: var(--main-color);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 18px;
}

.course-box.style-1 .content-box .course-feature li {
  font-size: 12px;
}

.course-box.style-1 .content-box .course-feature li:last-child {
  margin-right: 0;
}

.course-box.style-1 .content-box .course-feature li i {
  font-size: 15px;
  font-weight: 600;
  margin-right: 5px;
  margin-left: 5px;
}

.course-box.style-1 .course-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #d0d1d2;
  padding-top: 10px;
  margin-top: 10px;
}

.course-box.style-1 .course-footer .course-fee {
  color: var(--card-text-color);
  font-size: 20px;
  font-weight: 600;
  height: 45px;
  display: flex;
  align-items: center;
}

.course-box.style-1 .course-footer .course-rating {
  color: #f5c415;
  font-size: 14px;
}

.course-box.style-1 .course-footer .course-rating li {
  margin-right: 5px;
}

.course-box.style-1 .course-footer .course-rating li:last-child {
  margin-right: 0;
}

.course-box.style-1 .course-footer .course-rating .rating-count {
  color: #8d8d8d;
}

.course-box.style-1 .hover-content {
  height: calc(100% + 40px);
  position: absolute;
  z-index: 2;
  top: -40px;
  width: 100%;
  left: 0;
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  align-items: center;
  transition: all 0.6s ease-in-out;
}

.course-box.style-1 .hover-content:after {
  border-radius: 5px;
  height: 100%;
  width: 100%;
  left: 0;
  top: -100%;
  content: "";
  background-color: var(--main-color);
  position: absolute;
  z-index: -1;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.1s;
}

.course-box.style-1 .hover-content .inner {
  opacity: 0;
  width: 100%;
  visibility: hidden;
  transform: translateY(-100%);
  padding: 80px 30px 40px;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
  transition-delay: 0s;
}

.course-box.style-1 .hover-content .inner .course-wish-list {
  display: inline-block;
  height: 50px;
  width: 50px;
  background-color: #f4245f;
  border: 1px solid #f4245f;
  font-size: 20px;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  transition: all 0.3s ease-in-out;
}

[dir=rtl] .course-box.style-1 .hover-content .inner .course-wish-list {
  right: 25px;
}

[dir=ltr] .course-box.style-1 .hover-content .inner .course-wish-list {
  right: 25px;
}

.course-box.style-1 .hover-content .inner .course-wish-list:hover {
  background-color: white;
  color: #000;
  border: 1px solid #ffffff;
}

.in-wish-list {
  background-color: white !important;
  color: #000 !important;
  border: 1px solid #ffffff !important;
}

.hover-content a:hover {
  color: white !important;
  text-decoration: none;
}

.course-box.style-1 .hover-content .inner .title {
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 24px;
  line-height: 1.4;
}

.course-box.style-1 .hover-content .inner .title a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.course-box.style-1 .hover-content .inner .title a:hover {
  color: var(--color_hover_light);
}

.course-box.style-1 .hover-content .inner .course-admin {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-direction: column;
  align-content: flex-start;
}

.course-box.style-1 .hover-content .inner .course-admin .admin {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #ffffff;
  font-size: 17px;
}

.course-box.style-1 .hover-content .inner .course-admin .admin img {
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 5px;
}

.course-box.style-1 .hover-content .inner .course-admin .admin span {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 5px;
}

.course-box.style-1 .hover-content .inner .course-admin .course-rating {
  color: #f5c415;
  font-size: 14px;
}

.course-box.style-1 .hover-content .inner .course-admin .course-rating li {
  margin-right: 5px;
}

.course-box.style-1 .hover-content .inner .course-admin .course-rating li:last-child {
  margin-right: 0;
}

.course-box.style-1 .hover-content .inner .course-admin .course-rating .rating-count {
  color: #ffffff;
}

.course-box.style-1 .hover-content .inner .description {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media (max-width: 575px) {
  .course-box.style-1 .hover-content .inner .description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.course-box.style-1 .hover-content .inner .course-feature {
  margin-bottom: 20px;
}

.course-box.style-1 .hover-content .inner .course-feature li {
  color: #ffffff;
  font-size: 12px;
}

.course-box.style-1 .hover-content .inner .course-feature li span {
  color: #fff;
}

.course-box.style-1 .hover-content .inner .course-feature li:last-child {
  margin-right: 0;
}

.course-box.style-1 .hover-content .inner .course-feature li i {
  font-size: 15px;
  font-weight: 600;
  margin-right: 5px;
  margin-left: 5px;
}

.course-box.style-1 .hover-content .inner .course-footer {
  padding-top: 0;
  border-top: 0;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
}

.course-box.style-1 .hover-content .inner .course-footer .price {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}

.course-box.style-1:hover .hover-content:after {
  top: 0;
  transition-delay: 0s;
}

.course-box.style-1:hover .hover-content .inner {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.tutor-star-rating-group {
  color: #f4c150;
  display: flex;
  text-align: left;
  margin-right: 4px;
}

.tutor-star-rating-group i {
  cursor: pointer;
  font-size: 22px;
}

/**
* Course Single Page
*/
.course-section-header {
  cursor: pointer;
}

.course-section-header .course-section-name {
  color: var(--body-h-color);
}

.page-header-jumborton {
  min-height: 220px;
  background-color: var(--main-color);
}
.page-header-jumborton h1 {
  color: white;
}
.page-header-jumborton p {
  color: white;
}

.page-header-jumborton .page-header-left {
  color: #ffffff;
}

.page-header-jumborton h1 {
  font-weight: 300;
  font-size: 30px;
  line-height: 40px;
}

.page-header-subtitle {
  font-size: 18px;
  font-weight: 300;
}

.page-header-right-enroll-box {
  border-top: 10px solid var(--main-color);
}

.enroll-box-btn-group button {
  font-size: 16px;
  padding: 0.8rem 1rem;
}

.course-curriculum-item {
  padding: 10px;
}

.course-section-item-details {
  flex: 0 0 190px;
}

.section-item-duration {
  flex: 0 0 60px;
  text-align: right;
}

.course-curriculum-title {
  color: #505763;
}

.course-widget {
  box-shadow: 0 0 1px 1px rgba(145, 145, 145, 0.41), 0 3px 1px 0 rgba(120, 120, 120, 0.14);
  color: var(--body-h-color);
}

.course-widget .la:before {
  line-height: 1.6;
}

.content-expand-wrap {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

.expand-more-btn-wrap {
  background: linear-gradient(rgba(255, 255, 255, 0), var(--see-more-color), var(--see-more-color));
  bottom: 0;
  display: block;
  padding-top: 30px;
  position: absolute;
  width: 100%;
}

.course-widget .expand-more-btn-wrap {
  background: linear-gradient(rgba(246, 250, 255, 0), var(--see-more-color), var(--see-more-color));
}

.expand-more-btn.btn-link {
  color: var(--a-color);
}

.course-whats-included-box ul li {
  display: flex;
  align-items: center;
  vertical-align: top;
  line-height: 18px;
  vertical-align: top;
  line-height: 18px;
}

.course-whats-included-box ul li i {
  width: 26px;
  font-size: 21px;
}

.course-whats-included-box.course-widget {
  height: 20%;
}

/** Instructor Box **/
.course-single-instructor-wrap .instructor-stats {
  flex: 0 0 220px;
}

.instructor-stats .profile-image img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  min-width: 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);
}

.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 {
  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 {
  flex: 0 0 120px;
  margin-bottom: 10px;
  text-align: right;
}

.reviews-list-wrap .reviewed-user {
  flex: 0 0 calc(25% + 60px);
}

.reviewed-user-photo img,
.profile-text-photo {
  border-radius: 62%;
  display: block;
  text-align: center;
  font-size: 19px;
  background-color: #004b5a !important;
  color: rgb(255, 255, 255) !important;
  width: 50px;
  height: 50px;
}

/** END Course Single **/
/**
* Lecture Single Page
 */
.section-header {
  background-color: var(--lecture-section);
}

.lecture-header-left {
  flex: 0 0 349px;
  border-right: 1px solid #dee2e6;
}

.lecture-header-right {
  width: 100%;
}

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 a:hover {
  color: var(--lecture-font-color) !important;
}

.nav-icon-complete-course {
  border-radius: 5px;
}

.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: var(--body-backgound);
  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: var(--lecture-background-color);
}

.sidebar-section-item.completed .section-item-title a {
  color: var(--lecture-font-color);
}

.sidebar-section-item.active .section-item-title a {
  background-color: var(--lecture-active-color);
}

.lecture-icon {
  font-size: 22px;
  margin: 0px 9px;
}

.lecture-container {
  margin-left: 350px;
  background: var(--lecture-background-color);
  padding: 40px;
  height: auto;
  width: 100%;
}
.lecture-container .title-container {
  align-items: center;
}

.a.disabled {
  background-color: var(--lecture-disabled-color);
  color: var(--header-text-color);
}

.bg-dark-blue {
  background-color: var(--main-color) !important;
}

.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: var(--lecture-font-color);
}

.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 {
  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: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: space-between;
  margin: 1% -1% -1% -1%;
}

.question-option {
  flex: 0 auto;
  padding: 1%;
  width: 50%;
}

.question-option label {
  border: 1px solid #e2e2e2;
  cursor: pointer;
  font-size: 15px;
  display: block;
  line-height: 1.5;
  padding: 13px 8px 11px;
  clear: both;
  overflow: hidden;
  transition: box-shadow 0.2s;
  border-radius: 2px;
}

.question-option label:hover {
  filter: brightness(90%);
}

.btn-wide {
  min-width: 140px;
  cursor: pointer;
  animation: 100ms ease-in;
  transition: box-shadow 0.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;
  filter: brightness(90%);
}

#quiz-progress {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #e2e2e2;
  padding: 3px 5px;
  z-index: 99;
}

span.quiz-progress-number {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid #d4d4d4;
}

span.quiz-progress-number.active {
  display: inline-block;
  padding: 6px 10px;
  background: var(--main-color);
  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 **/
.section-padding {
  padding: 60px 0;
}

.brand-carousel {
  background: #eee;
  margin-top: 15%;
}

.owl-dots {
  text-align: center;
  margin-top: 4%;
}

.owl-dot {
  display: inline-block;
  height: 15px !important;
  width: 15px !important;
  background-color: #878787 !important;
  opacity: 0.8;
  border-radius: 50%;
  margin: 0 5px;
}

.owl-dot.active {
  background-color: #000 !important;
}

.blog-card {
  border: 1px solid #898989;
  border-radius: 10px;
}

.home-blog-card img {
  margin-bottom: 30px;
}

.home-blog-card h2,
.blog-card h2 {
  font-size: 22px;
  margin-bottom: 22px;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 55px;
}

.excerpt-content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 41px;
}

.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 {
  font-size: 17px;
}

.blog-regular-post .blog-card-thumbnail-wrapper {
  margin-bottom: 30px;
}

.blog-feature-post .blog-card {
  display: flex;
}

.blog-feature-post .blog-card-thumbnail-wrapper {
  margin-left: 20px;
  margin-right: 20px;
}

.blog-card .excerpt {
  flex: 1;
  padding: 5px 24px;
}

.blog-feature-post .blog-card {
  margin-bottom: 30px;
}

.breadcrumb {
  background-color: rgba(233, 236, 239, 0);
}

.newsletter {
  padding: 10px 0;
  background: var(--footer-backgound);
  border-top: 1px solid #7c7c7c;
  border-bottom: 1px solid #7c7c7c;
}

.newsletter .content {
  margin: 10px auto;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 750px) {
  .newsletter .content {
    flex-direction: column;
  }
}
.newsletter .content h2 {
  color: var(--footer-font-color);
  font-size: 24px;
}

.newsletter .content .form-control {
  width: 260px;
  height: 50px;
  border-color: var(--footer-font-color);
  border-radius: 0;
}

.newsletter .content.form-control:focus {
  box-shadow: none;
  border: 2px solid var(--main-color);
}

.newsletter .content .btn {
  min-height: 50px;
  border-radius: 0;
  background: var(--main-color);
  color: white;
  font-weight: 600;
}

/**
Footer Section
 */
footer {
  font-size: 14px;
  position: relative;
  color: var(--footer-font-color);
  background-color: var(--footer-backgound);
}

/*
footer::before {
    content: "";
    background: #000000;
    height: 100%;
    left: 0;
    opacity: 0.3;
    position: absolute;
    top: 0;
    width: 100%;
}
*/
footer a {
  color: var(--footer-font-color);
  padding-top: 4px;
}

footer a:hover {
  color: var(--a-hover-color);
}

footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
}

footer .footer-links li {
  flex: 50%;
  flex-grow: 0;
}

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: 30px;
}

footer .footer-top {
  border-bottom: 1px solid #dedfe0;
}

.footer-bottom-right-links li {
  display: inline-block;
}

.footer-bottom-right-links li a {
  display: block;
  padding-left: 10px;
}

.teacher-card .reviewed-user-photo img,
.teacher-card .profile-text-photo {
  width: 100px !important;
  height: 100PX !important;
  padding: 35px !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #6c757d;
  content: "/";
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-right: 1.5rem;
}

[dir=rtl] .custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  right: -1.5rem;
  left: auto;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

[dir=rtl] .custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  right: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.bg-white {
  background-color: var(--body-backgound) !important;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--body-h-color) !important;
}

.card {
  background-color: var(--card-backgound);
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.text-muted {
  color: var(--card-text-color) !important;
}

.list-group-item {
  background-color: var(--body-backgound) !important;
}

.list-group-item-action {
  color: var(--body-h-color) !important;
}

.input-group-text {
  background-color: var(--body-backgound) !important;
  color: var(--body-h-color) !important;
}

.dashboard-card {
  border-radius: 5px;
}

.border {
  border-radius: 8px;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff !important;
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}
.list-group-item-info.list-group-item-action.active p {
  color: #fff !important;
}

.select2-container--default .select2-selection--single {
  background-color: var(--body-backgound) !important;
  color: var(--body-h-color) !important;
  border: 1px solid #aaa;
  border-radius: 4px;
  height: 36px;
  padding: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--body-h-color) !important;
  line-height: 28px;
}

.select2-dropdown {
  background-color: var(--body-backgound);
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: var(--body-backgound);
}

.dashboard-section-header i {
  line-height: 1.6;
  color: var(--body-h-color) !important;
}

.section-item-btn-tool {
  color: var(--body-h-color) !important;
}

.alert-success {
  color: #155724 !important;
  background-color: #d4edda !important;
  border-color: #c3e6cb !important;
}
.alert-success p {
  color: #155724 !important;
}
.alert-success h3 {
  color: #155724 !important;
}

.alert-warning {
  color: #856404 !important;
  background-color: #fff3cd !important;
  border-color: #ffeeba !important;
}
.alert-warning p {
  color: #856404 !important;
}
.alert-warning h3 {
  color: #856404 !important;
}

.la-refresh {
  color: var(--body-h-color) !important;
}

.bg-light {
  background-color: var(--body-backgound) !important;
}

.btn-light {
  color: var(--body-h-color) !important;
  background-color: var(--body-backgound) !important;
  border-color: var(--body-backgound) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  color: var(--body-h-color) !important;
}

#bs-select-1 {
  height: 150px;
}

.dropdown-item.active,
.dropdown-item:active {
  color: rgb(255, 255, 255) !important;
}

.option-type-selection-wrapper label {
  background-color: rgba(248, 249, 250, 0) !important;
}

.question-options-wrap .question-opt {
  background-color: rgba(248, 249, 250, 0) !important;
}

.modal-footer > :not(:last-child) {
  margin-left: 0.25rem;
}

.copyright-color {
  color: var(--main-color);
}

.home-info-box img {
  max-width: 250px !important;
  height: 158px !important;
  margin-bottom: 20px;
}

.videowrapper {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-top: 25px;
  height: 315px;
}

.videowrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 315px;
}

.about-title {
  font-size: 40px;
  font-weight: 700;
  color: #f39a00;
  margin-bottom: 35px;
}

@media (max-width: 785px) {
  .course-intro-stats-wrapper {
    min-height: 700px;
  }
  .page-header-right-enroll-box {
    background-color: white;
    position: fixed;
    z-index: 999999999;
    bottom: 0;
    width: 100%;
    right: 0;
    display: flex;
    align-items: end;
    justify-content: space-around;
    padding: 2px 17px 15px 17px !important;
  }
  .coures-add-to-cart-btn,
  .discount-text {
    display: none;
  }
  .coures-pay-now-btn {
    color: #fff !important;
    background-color: #383838;
    border-color: #272727;
  }
  .add_to_cart_form,
  .course-free-enroll {
    width: 100%;
    padding: 0px 15px;
  }
  .course-landing-page-price-wrap .price-html-wrap .current-price {
    font-size: 18px;
    white-space: nowrap;
  }
  .old-price {
    font-size: 14px;
    white-space: nowrap;
  }
  .live-corse-enroll {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 17px 15px 17px !important;
    flex-direction: column;
    align-content: center;
  }
  .live-corse-date {
    margin: 0;
  }
  .course-section-item-details {
    flex: 0 0 62px;
  }
  .course-details-wrap ~ .footer {
    margin-top: 220px;
  }
  .footer-top-in-corses {
    margin-top: 220px;
  }
  .course-widget {
    box-shadow: -4px 6px 1px 1px rgba(145, 145, 145, 0.41), 0 3px 1px 0 rgba(120, 120, 120, 0.14);
    color: var(--body-h-color);
  }
  .course-landing-page-price-wrap .price-html-wrap .free-text {
    font-size: 20px;
    margin-bottom: 0px;
    margin-top: 18px;
    display: block;
  }
  .lecture-header-right .nav-btn {
    font-size: 14px;
  }
}
.course-rating-stats-wrap {
  overflow: hidden;
}

.text-muted {
  white-space: nowrap;
}/*# sourceMappingURL=newstyle.css.map */