/*
  Theme Name: eClass - Learning Management System
  Theme URL: https://eclass.mediacity.co.in/
  Author: Media City
  Author URI: https://mediacity.co.in
  Creation Date: 30 January 2020 
  Description: A default stylesheet for eClass - Learning Management System.
  Version: 4.0.0
*/

/*=======================================================================
              [Table of Contents]
=========================================================================

01. Typography 
02. General
03. Preloader
04. 404 page
05. coming-soon page
06. Nav-Bar
07. Home
08. Work
09. Courses
10. Student-View
11. Recommendation
12. Categories
13. Testimonial
14. Footer
15. Product-Dtl-Home-Page
16. Product-Dtl-Page
17. Login-Page
18. SignUp-Page
19. AboutUs-Page
20. Category-Page
21. Blog-Page
22. Blog-dtl-Page
23. Contact-us page
24. Map
25. Courses-Page
26. Filter-Page
27. Featured-Iteam
28. Mobile-Page
29. Help-Page
30. Terms-page
31. Teach-Online-Page
32. Affiliate-Page
33. Careers-page 

/* =============== Colors Used =====================

  Red         : #F44A4A;
  Mehroon     : #992337;
  Blue        : #0284A2;
  Black       : #000;
  White       : #FFF;
  Gray        : #F4F4F4;
  Yellow      : #F5C252;
  
 ===================================================*/
 

/* ================================= */
    /*===== Typography =====*/
/* ================================= */
body {  
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--text-black-color);
  font-size: 14px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
html,
body {
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  background-color: #fff !important;
  scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 { 
  /*font-family: 'Muli', sans-serif;*/
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  color: var(--text-black-color);
  margin-bottom: 20px;
  font-weight: 600;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 13px;
}
a {  
  color: #e53726;
  font-size: 14px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover, 
a:focus {
  /*color: inherit;*/
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
p {
  margin-bottom: 10px;
}
blockquote {  
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
}
ul {
  list-style: none;
  padding-left: 0;
}

/* ================================= */
    /*===== General =====*/
/* ================================= */
.error{
    color:red;
}
.overlay-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);   
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;      
}
.parallax {
  width: 100%;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;   
  position: relative;      
}
.btn-primary { 
  /*padding: 20px 25px;*/
  background-color: var(--background-red-bg-color);
  color: var(--text-white-color);
  font-size: 15px;
  font-weight: 400;
  border: 1px solid transparent;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-primary:hover {
  border: 1px solid transparent;
  background-color: var(--background-mehroon-bg-color);
}
.btn-secondary { 
  padding: 15px 25px;
  background-color: var(--background-white-bg-color);
  color: var(--text-dark-grey-color);
  font-size: 15px;
  border: 1px solid #686F7A;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-secondary:hover {
  border: 1px solid #29303B;
  background-color: var(--background-white-bg-color);
  color: var(--text-black-color);
}
.btn-info { 
  padding: 10px 15px;
  background: var(--background-blue-bg-color);
  color: var(--text-white-color);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--text-blue-color);
  border-radius: 1px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-info:hover {
  border: 1px solid #00576B;
  background-color: #00576B;
  color: var(--text-white-color);
}
.btn-link { 
  padding: 5px;
  font-size: 13px;
  padding: 3px 17px;
  background-color: transparent;
  color: var(--text-dark-grey-color);
  border: 1px solid #CACBCC;
  border-radius: 3px;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-link.active,
.btn-link:hover {
  background: transparent;
  border-color: var(--text-light-grey-color);
  color: var(--text-light-grey-color);
  text-decoration: none;
}
.btn-light { 
  font-size: 16px;
  border-radius: 0;
  background: var(--background-blue-bg-color);
  color: var(--text-white-color);
  width: 100%;
  border: 1px solid var(--text-blue-color);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-light.active,
.btn-light:hover {
  background-color: #003845;
  border: 1px solid #003845;
  color: var(--text-white-color);
  text-decoration: none;
  border-radius: 0;
}
.form-control:focus { 
  -webkit-box-shadow: none;
  box-shadow: none;
}
/*.owl-carousel .owl-nav button.owl-prev  {
  margin-right: 58px;
  margin-left: -35px;
}
.owl-carousel .owl-nav button.owl-next {
  margin-left: 98%;
}*/
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev { 
  /*position: absolute;*/
  color: #fff;
  background: rgb(193,40,42); background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%);
  border-radius: 4px;
  box-shadow: 0 0 1px 1px rgba(20,23,28,0.1); 
  font-size: 24px;
  top: 50%;
  transform: translate(0, -50%);
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 40px;
  z-index: 10; 
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
  background: rgb(209,100,26); background: linear-gradient(281deg, rgba(209,100,26,1) 0%, rgba(193,40,42,1) 100%);
}
.owl-dot {
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
}
.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid var(--text-black-color);
  background-color: var(--background-white-bg-color);
  margin-right: 5px;
}
.owl-dot.active {
  border: 1px solid #0891FF;
}
.rating {
  unicode-bidi: bidi-override;
  display: inline-block;
  font-size: 12px;
  color: #F4C150;
  margin-bottom: 5px;
}
.rating input {
  position: absolute;
  left: -999999px;
}
.rating label {
  display: inline-block;
  font-size: 0;
}
.rating > label:before {
  position: relative;
  font: 16px/1 FontAwesome;
  display: block;
  content: "\f005";
  color: #F4C150;
  background: -webkit-linear-gradient(-45deg, #B6C1C7 0%, #B6C1C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rating > label:hover:before,
.rating > label:hover ~ label:before,
.rating > label.selected:before,
.rating > label.selected ~ label:before {
  color: #F4C150;
  background: -webkit-linear-gradient(-45deg, #FCB551 0%, #D69A45 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h-center {
  margin: 0 auto;
  left: 0;
  right: 0;
}
.v-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.text-center {
  text-align: center;
}
.txt-rgt {
  text-align: right;
}
.txt-black {
  color: var(--text-black-color);
}
.border-btm {
  border-bottom: 1px solid #DEDFE0;
}
.btm-120 {
  margin-bottom: 120px;
}
.btm-105 {
  margin-bottom: 105px;
}
.btm-60 {
  margin-bottom: 60px;
}
.btm-40 {
  margin-bottom: 40px;
}
.btm-30 {
  margin-bottom: 30px;
}
.btm-20 {
  margin-bottom: 20px;
}
.btm-10 {
  margin-bottom: 10px;
}
.btm-5 {
  margin-bottom: 5px;
}
.rgt-20 {
  margin-right: 20px;
}
.rgt-15 {
  margin-right: 15px;
}
.rgt-10 {
  margin-right: 10px;
}
.rgt-5 {
  margin-right: 5px;
}
.lft-7 {
  margin-left: 7px;
}
.lft-10 {
  margin-left: 10px;
}
.lft-20 {
  margin-left: 20px;
}
.lft-40 {
  margin-left: 40px;
}
.lft-90 {
  margin-left: 90px;
}
.top-10 {
  margin-top: 10px;
}
.top-20 {
  margin-top: 20px;
}
.top-30 {
  margin-top: 30px;
}
.top-40 {
  margin-top: 40px;
}
.float-rgt {
  float: right;
}
.bg-white {
  background-color: var(--background-white-bg-color);
}
.bdr-yellow,
.bdr-purple,
.bdr-blue {
  border-top: 8px solid #F4C150;
  border-radius: 4px 4px 0 0;
}
.bdr-purple {
  border-top: 8px solid #853C6C;
}
.bdr-blue {
  border-top: 8px solid var(--text-blue-color);
}
button:focus {
  outline: none;
}
.italic {
  font-style: italic;
}
.section-heading {
  position: relative;
  padding: 22px 0;
  margin-bottom: 50px;
}
.section-heading:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--background-blue-bg-color);
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 0;
}
.col-five {
  width: 20%;
  height: auto;
}
.width {
  width: 33%;
}
.border-rgt {
  border-right: 1px solid #DEDFE0;
}
.facebook {
  background-color: #4264A3;
  border: 1px solid #4264A3;
}
.twitter {
  background-color: #60B6F0;
  border: 1px solid #60B6F0;
}
.linkedin {
  background-color: #0086C2;
  border: 1px solid #0086C2;
}
.youtube {
  background-color: #E15849;
  border: 1px solid #E15849;
}
.display-inline {
  display: inline;
}
.display-none {
  display: none;
}
sup.redstar {
  color: #FF0000;
}

.page-item .page-link {
  color: #e53726;
  font-size: 17px;
  background-color: transparent;
  border: 1px solid #EDEEF0;
  border-radius: 0;
  padding: 10px 15px;
}
.page-item .page-link:last-child {
  border-radius: 0;   
}
.page-item.active .page-link {
  color: var(--text-white-color);
  font-size: 17px;
  background-color: #e53726;
  border: 1px solid #e53726;
  border-radius: 0;
  padding: 10px 15px;
}
.page-item .page-link:hover {
  color: #084054;
  background-color: #EDEEF0;
}

/* ================================= */
    /*===== Preloader =====*/
/* ================================= */
.preloader { 
  background-color: var(--background-white-bg-color);
  bottom: 0;
  top: 0;
  left: 0; 
  right: 0;  
  position: fixed;
  z-index: 9999999999999;
}
.status,
.status-message {   
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; 
  right: 0;  
  background-position: center;
  background-repeat: no-repeat;     
}
.status-message {
  top: 40%;
    bottom: 0;
    margin: 0 auto;
}

/* ================================= */
    /*===== 404 page =====*/
/* ================================= */
.error-page-main-block {
  background-color: #F3F4F3;
  height: 100%;
}
.error-block {
  padding: 60px 0;
}
.error-heading {
  font-size: 70px;
}
.error-heading span {
  font-size: 110px;
  font-weight: 500;
}
.error-block p {
  font-size: 20px;
}

/* ================================= */
    /*===== coming-soon page =====*/
/* ================================= */
.coming-soon-main-block {
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
  height: 100vh;
  position: fixed;
  width: 100%;

}
.coming-soon-main-block .logo {
  position: relative;
}
.coming-soon-block {
  padding: 120px 0;
}
.comming-soon-heading {
  font-size: 80px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.coming-soon-main-block .nav-bar-btn {
  position: relative;
}

/* ================================= */
    /*===== Nav-Bar =====*/
/* ================================= */
.nav-bar-main-block {
  padding: 15px 0;
  /*box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.08);*/
  background-color: #fff;
}
.nav-search .form-control {
  padding: 13px 0 13px 20px;
  color: var(--text-black-color);
  border-radius: 0;
  border: none;
  background-color: var(--background-grey-bg-color);
  display: inline-block;
  float: left;
  width: 250px;
}
.nav-bar-main-block .logo a img {
  width: 100px;
}
.nav-bar-main-block .logo .img-fluid {
  max-width: 100px;
  height: auto;
}
.nav-search .btn-primary {
  padding: 14px 15px;
  border-radius: 0;
  color:var(--text-red-color);
  background-color: var(--background-grey-bg-color);
  height: 50px;
}
.nav-search .btn-primary:hover {
  color: var(--text-white-color);
  background-color: var(--background-red-bg-color);
}
.learning-business .btn-link {
  padding: 15px;
  border: none;
}
.learning-business .btn-link:hover {
  border-color: var(--text-light-grey-color);
  color: var(--text-light-grey-color); 
  background-color: var(--background-grey-bg-color);
}
.shopping-cart i {
  border: 1px solid transparent;
  border-radius: 100%;
  display: inline-flex;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/*.shopping-cart i:hover {
  background: rgba(20,23,28,0.05);
  border: 1px solid rgba(20,23,28,0.05);
}*/
.shopping-cart [class^="flaticon-"]::before, [class*=" flaticon-"]::before, [class^="flaticon-"]::after, [class*=" flaticon-"]::after {
  margin-left: 2px;
  color: #4b51a0;
  font-size: 22px;
}
/*.Login-btn {
  text-align: right;
}
.Login-btn .btn-primary,
.Login-btn .btn-secondary {
  padding: 13px;
  border-radius: 3px;
}
.Login-btn .btn-secondary {
  padding: 13px;
}*/
#cssmenu ul ul li a 
[class^="flaticon-"]:before, 
[class*=" flaticon-"]:before, 
[class^="flaticon-"]:after, 
[class*=" flaticon-"]:after {
  font-size: 20px;
  vertical-align: middle;
}
#cssmenu ul ul li a .fa, .fas {
 margin-top: 5px;
}
.featured-iteam-main-block {
  padding: 60px 0;
}

@media (max-width: 992px){
  .nav-search {
    margin-bottom: 20px;
  }
  .nav-bar-main-block .form-inline.search-form .form-group {
    display: block;
    text-align: center;
    /*margin: 0 auto;*/
    margin-bottom: 0;
  }
  .nav-search form {
    justify-content: center;
  }
}
@media (max-width: 576px){
  .nav-search form {
    justify-content: center;
  }
  .nav-bar-main-block .form-inline.search-form .form-group {
    width: 250px;
  }
}

/* ================================= */
    /*===== Home =====*/
/* ================================= */
.home-main-block {
  padding: 80px 0px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  /*height: 390px;*/
}
/*.home-heading {*/
/*  font-size: 50px;*/
/*}*/
/*.home-dtl p {*/
/*  font-size: 20px;*/
/*}*/
.search-block .form-group {
  border-radius: 2px;
  position: relative;
}
.search-block .form-control {
  padding: 13px 0 13px 13px;
  width: 500px;
  border-radius: 1px;
}
.search-block .form-btn .btn-primary {
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 18px;
  background-color: transparent;
  border: none;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-block .form-btn .btn-primary:hover {
  background-color: var(--background-red-bg-color);
  color: var(--text-white-color);
  border-radius: 2px;
}
.search-block .form-btn .btn-primary i {
  font-size: 20px;
  color:var(--text-red-color);;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-block .form-btn .btn-primary:hover i {
  color: var(--text-white-color);
}
.navigation [class^="flaticon-"]:before,
[class*=" flaticon-"]:before, 
[class^="flaticon-"]:after, 
[class*=" flaticon-"]:after {
  font-size: 18px;
  /*color: var(--text-light-grey-color);*/
  margin-right: 5px;
}
@media (max-width: 992px) {
  .learning-business {
    text-align: center;
    margin-bottom: 20px;
  }
  .logo {
    text-align: center;
  }
  .shopping-cart {
    text-align: center;
  }
  .search-block .form-control {
    width: 300px;
  }
  
}
@media (max-width: 576px) {
  /*.home-heading {
    font-size: 40px;
  }*/
  .home-main-block {
    padding: 30px 0px;
    /*height: 350px;*/
  }
  .search-block .form-control {
    width: 100%;
  }
}

/* ================================= 
    /*===== Work =====*/
/* ================================= */
.learning-work-main-block {
  background: var(--linear-gradient-bg-color);
  padding: 10px 0;
}
.work-heading {
  font-size: 17px;
  font-weight: 500;
}
.learning-work-dtl p {
  font-size: 15px;
  margin-bottom: 2px;
}
.learning-work-dtl {
  padding: 5px 10px;
}
.learning-work-icon i {
  font-size: 45px;
  margin-left: 10px;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .learning-work-block {
    text-align: center;
    padding: 15px 0 30px;
  }
}

/* ================================= 
    /*===== Courses =====*/
/* ================================= */
.learning-courses-main-block {
  padding: 40px 0; 
}
.learning-selection {
  padding: 148px 20px 57px;
  background-color: var(--background-grey-bg-color);
  margin-bottom: 30px;
  margin-top: 40px;
  margin-right: 7px;
}
.selection-heading {
  font-size: 20px;
  font-weight: 500;
}
.learning-selection p {
  font-size: 17px;
}
.learning-courses ul {
  border-bottom: 1px solid #DEDFE0;
}
.learning-courses-main-block .view-block:hover {
  box-shadow: 0 2px 8px 2px rgba(20,23,28,0.2); 
}
.learning-courses-main-block .view-block {
  margin-bottom: 20px;
  box-shadow: 0 0 1px 1px rgba(20,23,28,0.1), 0 3px 1px 0 rgba(20,23,28,0.1);
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.learning-courses ul li {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.learning-courses .btn {
  padding: 0;
  margin-bottom: 7px;
}
.learning-courses .nav-link {
  border: none;
  border-bottom: 5px solid transparent;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.learning-courses .nav-link.active {
  border: none;
  border-bottom: 5px solid var(--text-blue-color);
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.learning-courses .nav-tabs .nav-link:hover {
    border-color: var(--text-blue-color) var(--text-blue-color) var(--text-blue-color);
}
.learning-courses-main-block .owl-carousel .owl-nav button.owl-prev  {
  margin-right: 36px;
  margin-left: -27px;
}
.learning-courses-main-block .owl-carousel .owl-nav button.owl-next {
  margin-left: 96%;
}
.learning-courses-main-block .owl-carousel .owl-nav button.owl-prev , 
.learning-courses-main-block .owl-nav button.owl-next { 
  top: 32%;
}
.learning-courses-main-block .owl-carousel .owl-nav.disabled {
  display: block;
}
@media (max-width: 992px) {
  .learning-selection {
    display: none;
  }
}

/* ================================= 
    /*===== Student-View =====*/
/* ================================= */
.student-view-block {
  margin-bottom: 50px;
}
.student-heading {
  color: var(--text-light-grey-color);
}
.view-dtl {
  /*padding: 10px;*/
  /*border: 1px solid #DEDFE0;*/
  /*border-radius: 0;*/
  /*height: 160px;*/
  /*box-shadow: 0 0 1px 1px rgba(20,23,28,0.1), 0 3px 1px 0 rgba(20,23,28,0.1);*/
 /* -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;*/
}
.best-seller {
  position: absolute;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  top: 15px;
  left: -27px;
  width: 100px;
  z-index: 9;
  text-transform: capitalize;
  background: linear-gradient(281deg, rgba(209,100,26,1) 0%, rgba(193,40,42,1) 100%);
  color: #fff;
  padding: 5px 8px;
  transform: rotate(-50deg);
}
/*.student-view-block:hover {
  box-shadow: 0 2px 8px 2px rgba(20,23,28,0.2);
}*/
.student-view-block {
  /*border: 1px solid #DEDFE0;*/
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.view-heading {
  font-size: 16px;
  color: var(--text-black-color);
  font-weight: 500;
}
.view-heading a {
  font-size: 15px;
  color: var(--text-black-color);
  font-weight: 500;
}
.view-dtl p {
  font-size: 8px;
  color: var(--text-dark-grey-color);
}
.view-dtl .rating ul li {
  display: inline-flex;
  color: var(--text-light-grey-color);
  font-size: 14px;
  vertical-align: text-bottom;
}
.view-dtl .rating ul li i {
  color: #F4C150;
}
.view-dtl .rate ul li {
  display: inline-block;
  color: #FFF;
}
.view-dtl .rate ul li a {
  font-size: 16px;
}
.view-dtl .rate ul li b {
  font-weight: 500;
}
.view-dtl .rate ul li strike {
  font-size: 12px;
  display: inline-block;
  color: #FFF;
}
.view-dtl .rate ul li:last-child b {
  font-weight: 400;
}
.view-dtl .rate .rate-r {
  font-size: 18px;
  margin-right: 10px;
  font-weight: 500;
}
.seller-dtl-block {
  padding: 20px 15px;
}
.update-date {
  color: var(--text-dark-grey-color);
}
.view-heading-one a {
  font-size: 20px;
  color: var(--text-black-color);
  font-weight: 500;
}
.student-view-block .view-img {
  position: relative;
}
/*.student-main-block .owl-carousel .owl-nav button.owl-prev , 
.student-main-block .owl-carousel .owl-nav button.owl-next { 
  top: 30%;
}*/

/* ================================= 
    /*===== Recommendation =====*/
/* ================================= */
.border-recommendation .top-border {
  background: var(--linear-gradient-bg-color);
  height: 8px;
}
.recommendation-main-block {
  padding: 105px 0;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 310px;
}
.recommendation-btn .btn-primary{
  padding: 12px 30px;
  border-radius: 1px;
}

/* ================================= */
    /*===== Categories =====*/
/* ================================= */
.categories-main-block {
  padding: 50px 0;
}
/*.categories-block a {
  color: #14171C;
  font-size: 15px;
}*/
/*.categories-block i {*/
/*  margin-right: 15px;*/
/*  font-size: 30px;*/
/*}*/
.categories-block {
  /*border: 1px solid #DEDFE0;
  box-shadow: 0 0 1px 1px rgba(20,23,28,0.1), 0 3px 1px 0 rgba(20,23,28,0.1);
  margin-bottom: 20px;
  padding: 10px 10px 1px;*/
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.categories-block [class^="flaticon-"]:before, 
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after, 
[class*=" flaticon-"]:after {
  font-size: 30px;
}
.categories-block ul {
  margin-bottom: 10px;
}
.categories-block ul li {
  display: inline-block;
  vertical-align: middle;
} 

/* ================================= 
    /*===== Testimonial =====*/
/* ================================= */
/*.testimonial-main-block {
  background-color: var(--background-grey-bg-color);
  padding: 50px 0 50px;
}*/
.testimonial-slider-main-block.owl-carousel .owl-item .testimonial-block img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
} 
.testimonial-block {
  background-color: var(--background-white-bg-color);
  padding: 10px;
  /*box-shadow: 0 0 1px 1px rgba(20,23,28,.1),*/
}
/*.testimonial-block:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}*/
.testimonial-block ul li {
  display: inline-block;
}
.testimonial-block ul li+li {
  vertical-align: top;
  padding-top: 25px;
}
.testimonial-block ul li .testimonial-a {
  background-color: rgba(104, 111, 122);
  color: var(--text-white-color);
  text-transform: uppercase;
  border-radius: 100%;
  border: 1px solid rgba(104, 111, 122);
  font-size: 20px;
  padding: 25px 30px;
}

.trusted-main-block {
  background-color: var(--background-grey-bg-color);
  padding: 10px 0 10px;
}
.patners-block {
  padding: 40px 100px;
  margin-bottom: 30px;
}
.patners-heading {
  color: var(--text-dark-grey-color);
  font-weight: 400;
  font-size: 22px;
}
.patners-heading a {
  font-size: 15px;
  font-weight: 500;
}
.blog-dtl {
  padding: 10px 90px;
}
.blog-heading a {
  font-size: 19px;
  color: var(--text-light-grey-color);
}
.blog-dtl p {
  font-size: 17px;
  margin-bottom: 20px;
}
.blog-btn .btn-primary {
  padding: 10px;
  border-radius: 1px;
  font-size: 14px;
  margin-bottom: 30px;
}
@media (max-width: 992px){
  .border-rgt {
    border-right: none;
  }
}

@media (max-width: 767px){
  .patners-block {
    padding: 30px 25px;
    margin-bottom: 0;
  }
}

/* ================================= */
    /*===== Footer =====*/
/* ================================= */
.footer-block {
  padding: 30px 0 10px;
}
.widget {
  color: var(--text-blue-color);
  margin-bottom: 10px;
}
.footer-link ul li {
  margin: 4px;
}
.footer-link ul li a:hover{color: #f60;}
.footer-link ul li ul li {
  margin-bottom: 0;
}
.footer-link ul li ul li {
  display: inline-block;
}
.footer-link ul li ul li:after {
  content: "/";
  margin: 0 0 3px 8px;
  color: var(--text-blue-color);
}
.footer-link ul li ul li:last-child:after {
  content: none;
}
.footer-dropdown {
  text-align: left;
  padding: 20px 0;
}
.footer-dropdown .a {
  border: 1px solid #686F7A;
  color: var(--text-dark-grey-color);
  padding: 10px 20px;
}
.footer-dropdown .dropdown-menu li a {
  color: var(--text-light-grey-color);
}
.footer-dropdown .dropdown-menu li {
  border: 1px solid transparent;
  padding: 5px 20px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer-dropdown .dropdown-menu li:hover {
  background-color: #F2F3F5;
  border: 1px solid #F2F3F5;
}
.footer-local-page {
  padding: 20px 20px 5px 0;
}
.footer-local-page ul li {
  display: inline-block;
  margin-right: 15px;
  font-size: 13px;
}
.footer-local-page .active a {
  color: var(--text-light-grey-color);
}
.tiny-footer {
  padding: 20px 20px 30px;
  border-bottom: 5px solid var(--text-red-color);
}
.tiny-footer ul {
  margin-bottom: 0;
}
.logo-footer ul li {
  display: inline-block;
  margin-right: 10px;
  color: var(--text-dark-grey-color);
  vertical-align: middle;
}
.logo-footer img {
  vertical-align: baseline;
  width: 100px;
}
.copyright-social {
  text-align: right;
  padding: 10px 0;
}
.copyright-social ul li {
  display: inline-block;
  margin-right: 10px;
}
/*@media (max-width: 992px) {
  .footer-link {
    margin-bottom: 30px;
  }
}*/
@media (max-width: 767px){
  .copyright-social {
    text-align: center;
  }
  .logo-footer {
    text-align: center;
  }
}

/* ================================= */
    /*===== Product-Dtl-Home-Page =====*/
/* ================================= */
.about-home-main-block {
  background: rgb(193,40,42);
  background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%);
  position: relative;
}
.about-home-block {
  padding: 50px 0;
  color: var(--text-white-color)!important;
}
.about-home-heading {
  font-size: 36px;
  color: var(--text-white-color)!important;
}
/*.about-home-block p {
  font-size: 21px;
  color: var(--text-white-color)!important;
}*/
.home-best-seller {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  background-color: #F4C150;
  color: var(--text-black-color);
  width: 80px;
  height: 25px;
  padding: 5px 0;
  border-radius: 0 10px 10px 0;
  text-transform: capitalize;
}
.about-home-block ul li {
  display: inline-block;
  margin-right: 10px;
}
.about-home-block ul li a {
  color: var(--text-white-color);
}
.about-home-block ul li ul li {
  margin-right: 0;
}
.about-home-icon ul li {
  display: inline-block;
  padding: 15px 0 0;
}
.about-home-icon ul li a {
  color: var(--text-white-color);
  font-size: 16px;
}
.about-home-icon ul li i {
  font-size: 25px;
  vertical-align: bottom;
}
.about-home-icon span:hover {
  color: #CACBCC;
}
/*.about-icon-one i {
  -webkit-text-stroke: 1px var(--text-white-color);
  color: var(--text-black-color);
}
.about-home-icon i:hover {
  color: var(--text-white-color);
}*/
/*.about-home-dtl-block {
  background-color: var(--background-white-bg-color);
  color: var(--text-light-grey-color);
  padding: 15px 30px;
  box-shadow: 0 0 1px 1px rgba(20,23,28,0.1), 0 3px 1px 0 rgba(20,23,28,0.1);
  border-radius: 0 0 4px 4px;
}*/
/*.about-home-rate ul li {
  display: inline-block;
  font-size: 36px;
  color: var(--text-light-grey-color);
  margin-right: 5px;
  font-weight: 700;
}*/
/*.about-home-rate ul li span {
  font-size: 20px;
  color: var(--text-light-grey-color);
  font-weight: 400;
}*/
.about-home-offer {
  color: var(--background-mehroon-bg-color);
}
.about-home-offer span {
  font-weight: 700;
}
.about-home-offer i {
  color: var(--text-white-color);
  margin-right: 5px;
  -webkit-text-stroke: 1px var(--background-mehroon-bg-color);
}
.about-home-btn .btn-primary {
  padding: 15px 0;
  width: 100%;
  border-radius: 1px;
  font-weight: 500;
  font-size: 17px;
}
.about-home-includes-list ul li {
  margin-bottom: 8px;
  font-size: 14px;
}
.about-home-includes-list ul li span {
  font-weight: 600;
  font-size: 16px;
}
.about-home-includes-list ul li i {
  margin-right: 10px;
  -webkit-text-stroke: 1px #505763;
  color: transparent;
}
.about-home-coupon a {
  font-size: 18px;
}
/*.about-home-share a {
  font-size: 18px;
}*/
.about-home-training {
  background-color: var(--background-white-bg-color);
  padding: 30px;
  color: var(--text-light-grey-color);
  box-shadow: 0 0 1px 1px rgba(20,23,28,0.1), 0 3px 1px 0 rgba(20,23,28,0.1);
  border-radius: 4px;
}

.about-home-product {
  position: absolute;
  top: 56px;
  right: 15px;
  left: 15px;
}
@media (max-width: 991px) {
  /*.about-home-product {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }*/
  .about-home-product {position: relative; top: 0px; right: 0; left: 0; margin-bottom: -100px;}
  .about-home-block {padding-bottom: 0;}
}

/* ================================= */
    /*===== Product-Dtl-Page =====*/
/* ================================= */
.about-product-main-block {
  padding: 50px 0;
}
.product-learn-block {
  padding: 20px;
  background-color: var(--background-light-grey-bg-color);
  border: 1px solid #DEDFE0;
}
.product-learn-dtl ul li {
  margin-bottom: 20px;
  margin-left: 20px;
}
.product-learn-dtl i {
  margin-right: 20px;
  color: var(--text-light-grey-color);
  font-size: 15px;
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
  margin-right: .5em;
  text-indent: .5em;
  text-align: right;
  direction: rtl;
}

.product-learn-heading {
  font-size: 22px;
}
/*.about-home-main-block .video-item {
  text-align: center;
  border: 5px solid #FFF;
  color: var(--text-white-color)!important;
  box-shadow: 0 0 1px 1px rgb(20 23 28 / 10%), 0 3px 1px 0 rgb(20 23 28 / 10%);
}*/
.about-home-main-block .video-device .bg_img {
  background-size: cover;
  width: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.about-home-main-block .video-device {
  position:relative;
}
.about-home-main-block .video-item .video-preview,
.about-home-main-block .video-item .video-preview iframe {
  width: 100%;
  height: 100%;
}
.about-home-main-block .video-preview {
  position: absolute;
  left: 0;
  top: 0;
  z-index:30;
  width: 100%;
}
.about-home-main-block .btn-video-play i {
  margin: 0 auto;
  position: relative;
  top: 50%;
  left: 13%;
  transform: translate(-50%, -50%);
  z-index: 30;
  color: var(--text-white-color);
  font-size: 42px;
  border: 1px solid transparent;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, .6);
  height: 100px;
  width: 100px;
  line-height: 2.4;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.about-home-main-block .btn-video-play:hover {
  opacity: 0.8;
}

/*===== Requirements  =====*/
/*.requirements {*/
/*  padding: 30px 0;*/
/*}*/
.requirements ul li {
  font-size: 14px;
}
.requirements ul {
  list-style-type: disc;
  padding-left: 15px;
}

/*===== Description Block  =====*/
.description-block ul {
  list-style-type: disc;
  padding-left: 15px;
  margin-top: 20px;
}
.description-block ul li {
  padding: 5px;
}

/*===== About Course  =====*/
.about-course ul li {
  padding: 8px;
}

/*===== Featured Review Block  =====*/
.featured-review-block {
  padding: 40px;
  background-color: var(--background-grey-bg-color);
}
.featured-review img {
  border-radius: 100%;
}
.featured-review-img-dtl {
  padding: 0 25px;
}
.review-img-name {
  font-size: 16px;
} 
.review-img-name span {
  font-weight: 500;
}
.featured-review-img-dtl ul li {
  display: inline-block;
}
.featured-review-block a {
  color: var(--text-dark-grey-color) !important;
  font-size: 13px;
}
.featured-review-block .review {
  color: var(--text-dark-grey-color);
}

/*===== Students Bought Block  =====*/
/*.course-bought-block {
  padding: 18px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.course-bought-block:hover {
  background-color: #E8E9EB;
}*/
/*.course-bought-img {
  position: relative;
  margin-bottom: 10px;
}*/
.course-bought-img-dtl {
  position: absolute;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9); 
  padding: 2px 38.5px;
}

.course-bought-block .course-name {
  font-weight: 500;
}
.course-bought-block .course-update {
  font-size: 13px;
  color: var(--text-dark-grey-color);
}
.course-bought-block .course-rating ul li {
  display: inline-block;
}
.course-bought-block .course-rating i {
  color: #F4C150;
}
.course-bought-block .course-user ul li {
  display: inline-block;
}
.course-bought-block .course-user i {
  -webkit-text-stroke: 2px #CACBCC;
  color: transparent;
}
.course-bought-block .course-rate ul li {
  display: inline-block;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 500;
}
.course-bought-block .course-rate i {
  -webkit-text-stroke: 1px var(--text-red-color);
  color: transparent;
  font-size: 20px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.course-bought-block .course-rate .heart-two i {
  -webkit-text-stroke: 1px var(--text-red-color);
  color:var(--text-red-color);
  font-size: 20px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.course-bought-block .course-rate i:hover { 
  color:var(--text-red-color);;
}
.course-bought-block .course-currency ul li {
  display: inline-block;
  margin-right: 8px;
  font-size: 16px;
  font-weight: 500;
}
.course-bought-block img {
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .course-bought-block {
    margin-bottom: 20px;
  }
  .course-bought-img-dtl {
    display: none;
  }
}

/*===== Course-Content Block  =====*/
.course-content-block .second-accordion {
  margin-bottom: 20px;
}
.course-content-block .second-accordion .card-header {
  padding: 0;
  background: transparent;
  border-bottom: 0;
}
.course-content-block .second-accordion .card-header button.btn {
  display: block;
  width: 100%;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 10px 10px 40px;
  position: relative;
  margin-bottom: 5px;
  background-color: var(--background-light-grey-bg-color);
  border: solid 1px #E8E9EB;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.course-content-block .second-accordion .card {
  border: 0;
  font-size: 17px;
}
.course-content-block .second-accordion .card-body {
  padding: 0;
  padding-bottom: 10px;
}
.course-content-block .second-accordion .card-header button.btn[aria-expanded="false"]:before {
  position: absolute;
  content: "\+";
  font-family: fontawesome;
  left: 15px;
  color: var(--text-blue-color);
  text-align: center;
  font-size: 20px;
  line-height: 23px;
}
.course-content-block .second-accordion .card-header button.btn[aria-expanded="true"]:before {
  position: absolute;
  content: "\-";
  font-family: fontawesome;
  left: 15px;
  color: var(--text-blue-color);
  text-align: center;
  font-size: 20px;
  line-height: 16px;
}
.course-content-block .table td, 
.course-content-block .table th {
  font-size: 14px;
  cursor: pointer;
}
.course-content-block .table th i {
  opacity: 0.3;
  font-size: 15px;
}
.course-content-block .table tr {
  border: 1px solid #E8E9EB;
}
@media (max-width: 576px) {
  .faq-block .btn {
    white-space: initial;
  }
}

/*===== Bought Together Block  =====*/
.bought-together {
  background-color: var(--background-light-grey-bg-color);
  border: 1px solid #DEDFE0;
  padding: 30px 15px; 
}
.together-img .view-img img {
  width: 100%;
}
.total ul li {
  display: inline-block;
  font-size: 20px;
}
.total-rate {
  color: var(--text-light-grey-color);
  font-size: 15px;
}
.total .btn-primary {
  padding: 15px 60px;
  border-radius: 2px;
}
.together-img .best-seller {
  left: 15px;
} 
.view-img {
  position: relative;
}
.together-img .heart {
  position: absolute;
  top: 10px;
  right: 10px;
  -webkit-text-stroke: 1px #FFF;
  color: var(--text-dark-grey-color);
  font-size: 20px;
}
.together-img .heart-two i {
  position: absolute;
  top: 15px;
  right: 20px;
  -webkit-text-stroke: 1px #FFF;
  color:var(--text-red-color);;
  font-size: 20px;
}
.together-img .heart:hover {
  color:var(--text-red-color);;
}
.course-combo i {
  position: absolute;
  top: 110px;
  right: -28px;
  font-size: 42px;
  padding: 5px 8px;
  color: var(--text-white-color);
  background-color: #E8E9EB;
  border: 1px solid #DEDFE0;
  border-radius: 100%;
}
.together-img-hover ul li {
  display: inline-block;
}
.together-img {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.together-img-hover {
  padding: 10px;
  position: absolute;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.together-img:hover .together-img-hover {
  padding: 10px;
  position: absolute;
  top: 0;
  opacity: 1; 
}
.dtl-hover {
  font-size: 13px;
  font-weight: 900;
}
.about-product-main-block .student-view-block {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .together-img .view-img img {
    width: 100%;
  }
  .together-img {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .course-combo i {
    display: none;
  }
}

/*===== About Instructor Block  =====*/
.about-instructor-block .instructor-img img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
.about-instructor ul li {
  margin-bottom: 8px;
}
.about-instructor ul li i {
  margin-right: 10px;
}
.about-instructor ul li span {
  font-weight: 500;
}
.instructor-block a {
  font-size: 18px;
}
/*.instructor-post {
  font-weight: 500;
  font-size: 16px;
}*/

/*===== Student Feedback Block  =====*/
.rating-num {
  color: var(--text-black-color);
  font-size: 72px;
  font-weight: 100;
  text-align: center;
}
.rating-stars ul li {
  display: inline-block;
}
.student-feedback .rating-stars i {
  font-size: 22px;
  color: #F4C150;
}
.rating-users {
  color: var(--text-black-color);
  font-size: 15px;
  text-align: center;
}
.bar-block {
  margin-right: 10px;
  color: black;
  display: block;
  float: left;
  width: 70%;
  background-color: #F2F3F5;
  position: relative;
  margin-bottom: 10px;
  border-radius: 5px;
}
.bar {
  padding: 2px;
  display: block;
}
.histo {
  float: right;
  width: 70%;
  font-size: 16px;
  margin-right: 60px;
  margin-top: 25px;
}
.bar-clr {
  background-color: var(--text-light-grey-color);
}
.bar-radius {
  border-radius: 4px;
}
.histo-star {
  color: #F4C150;
}
.histo-rate {
  clear: both;
}
.bar-block {
  display: inline-block;
}
.histo-star {
  display: inline-block;
  vertical-align: middle;
}
.histo-percent {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 767px) {
  .student-feedback {
    height: 270px;
  }
  .histo {
    width: 100%;
    float: left;
    margin-bottom: 30px;
    margin-right: 0;
  }
  .bar-block {
    width: 60%;
  }
  .rating-num {
    font-size: 42px;
    font-weight: 500;
  }
}

/*===== Review Block  =====*/
.review-img {
  float: left;
  background-color: var(--text-dark-grey-color);
  /*padding: 15px 18px;*/
  border-radius: 100%; 
  margin-right: 15px;
  width: 40px;
  height: 40px;
  text-align: center;
  padding-top: 9px;
  text-transform: uppercase;
}
.review-month {
  color: var(--text-dark-grey-color);
}
.review-rating ul li {
  display: inline-block;
  color: #F4C150;
}
.review-dtl hr {
  margin-bottom: 20px;
}
.btn-success { 
  font-size: 15px;
  font-weight: 500;
  padding: 15px;
  background-color: transparent;
  color: var(--text-blue-color);
  border: 1px solid var(--text-blue-color);
  border-radius: 3px;
  text-transform: uppercase;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-success:hover {
  color: #003440;
  border: 1px solid #003440;
  background-color: var(--background-white-bg-color);
}
.about-product-main-block .search-block .form-control {
  width: 280px;
  height: 44px;
  display: inline-block;
  float: left;
}
.about-product-main-block .form-btn .btn-primary {
  padding: 10px 20px;
  background: var(--background-blue-bg-color);
  border-radius: 1px;
}
.about-product-main-block .form-btn .btn-primary:hover {
  background-color: #003440;
  color: var(--text-white-color);
}
.about-product-main-block .search-block .form-btn .btn-primary i {
  font-size: 15px;
  color: var(--text-white-color);
}

/*===== more-courses Block  =====*/
.more-courses {
  background-color: var(--background-light-grey-bg-color);
  border: 1px solid #DEDFE0;
  padding: 30px 15px;
}
.report-abuse a {
  /*color: var(--text-dark-grey-color);*/ 
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.report-abuse a:hover {
  color: var(--text-light-grey-color);
}

/*===== Footer Patners Block  =====*/
.footer-patners-block {
  padding: 20px;
}

/* ================================= */
    /*===== Login-Page =====*/
/* ================================= */
.forgot-password a {
  font-size: 14px;
}
.signin-link .btn-info {
  width: 100%;
  text-align: left;
  background-color: #1A538A;
  font-size: 12px;
  border-radius: 3px
}
.signin-link .btn-info:hover {
  background-color: #164675;
}
.signin-link .btn-white {
  width: 100%;
  padding: 10px 15px;
  color: var(--text-black-color);
  text-align: left;
  font-size: 12px;
  border: 1px solid #DEDFE0;
  box-shadow: 0 2px 2px 0 rgba(41,48,59,0.24), 0 0 2px 0 rgba(41,48,59,0.12);
}
.signin-link .btn-white:hover {
  background-color: #F2F3F5;
}
.signin-link i {
  margin-right: 10px;
}

@media (max-width: 567px) {
  .signin-link .btn-white {
    padding: 12px 12px;
    font-size: 13px;
  }
  .signin-link i {
    margin-right: 10px;
  }

  .signin-link .btn-info {
    padding: 12px 12px;
    text-align: left;
    background-color: #1A538A;
    font-size: 13px;
  }
}



/* ================================= */
    /*===== SignUp-Page =====*/
/* ================================= */
.signup-block-main-block {
  padding: 30px 0;
}
.signup-form .form-control {
  padding: 9px 15px 9px 45px;
  /*border-radius: 4px;
  border: 1px solid #CACBCC;*/
}
.signup-form .form-group {
  position: relative;
  bottom: 10px;
  text-align: -webkit-center;
}
.signup-form {
  padding: 20px 0 0;
}
.signup-form i {
	/* position: absolute; */
	z-index: 1;
	top: 13px;
	left: 18px;
}
.form-check-label  {
  margin-left: 10px;
}
.form-check .form-check-input {
  width: 20px;
  display: inline-block;
  float: left;
  height: 20px;
  margin-top: 2px;
}
.form-check input[type='radio'] {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  outline: none;
  border: 1px solid #DDD;
}
.form-check input[type='radio']:before {
  content: '';
  display: block;
  width: 70%;
  height: 70%;
  margin: 15% auto;
  border-radius: 50%;
}
.form-check input[type="radio"]:checked:before {
  background: #F44A4A;   
}
.form-check input[type="radio"]:checked {
  border-color: #DDD;
}
.signup-form .btn-primary {
  padding: 10px 0;
  width: 100%;
}
.signup-block {
  border: solid 1px #DEDFE0;
  /*border-radius: 0 0 9px 9px;*/
  padding: 35px;
}
.signup-form hr {
  border-top: 1px solid #DEDFE0;
}
/*.signin-link {
  font-size: 12px;
  margin-top: 4px;
}*/
/*.signin-link a {
  font-size: 12px;
}*/
/*.signup-heading {
  font-size: 17px;
  font-weight: 500;
  padding: 20px;
  border: 1px solid #DEDFE0;
  border-radius: 9px 9px 0 0;
}*/

@media (max-width: 567px) {

  .signup-block {
    padding: 25px 20px;
  }
}

/* ================================= */
    /*===== AboutUs-Page =====*/
/* ================================= */
.nav-bar-main-block-one {
  padding: 10px 0; 
}
.nav-bar-main-block-one hr{
  margin-top: 0;
  margin-bottom: 0; 
}
.nav-bar-btn .btn-secondary {
  border-radius: 1px;
  color: #0C849D;
  border: 1px solid #0C849D;
  font-size: 15px;
  text-transform: none;
  padding: 13px 10px;
}
.nav-bar-btn .btn-secondary i {
  font-size: 10px;
  padding: 5px;
}
.nav-bar-main-block-one .Login-btn .btn-secondary {
  color: #0C849D;
  border: 1px solid #0C849D;
}
.nav-bar-main-block-one .Login-btn .btn-secondary:hover {
  color: #52C3D1;
}
.about-home-one-main-block {
  padding: 130px 210px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.about-home-one-heading {
  font-size: 85px;
  position: relative;
  color: var(--text-white-color)!important;
}
/*.about-blog-main-block {
  background: var(--linear-gradient-about-bg-color);
  padding: 20px 30px;
  font-weight: 500;
}*/
/*.about-blog-block a {
  color: var(--text-white-color);
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}*/
/*.about-blog-block span {
  color: #F5C252;
}
.about-blog-block a:hover {
  border-bottom: 1px solid #FFF;
}*/
.about-home-one-main-block .overlay-bg {
  background: linear-gradient(270deg,transparent -50%,#000 180%);
  padding: 140px 210px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.nav-menu-bar-main-block {
  position: absolute;
  z-index: 99999;
  width: 100%;
}
.navigation-btn {
  text-align: right;
  padding-top: 25px;
}
.nav-menu-bar-main-block #cssmenu > ul > li a {
  padding: 40px 12px 10px;
  color: var(--text-white-color);
}
/*.about-blog-main-block .about-blog-block i {
  color: transparent;
  border: 2px solid var(--text-red-color);
  border-radius: 100%;
  font-size: 5px;
  vertical-align: middle;
}*/
@media (min-width: 767px) and (max-width: 992px) {
  .about-home-one-main-block {
    padding: 130px 110px;
  }
  .nav-menu-bar-main-block #cssmenu > ul > li > a {
    font-size: 12px;
  }
}
@media (max-width: 567px) {
  .about-home-one-main-block {
    padding: 110px 30px 60px;
  }
  .about-home-one-heading {
    font-size: 50px;
  }
  .about-home-one-main-block .overlay-bg {
    padding: 140px 0;
  }
}

/*===== About-Transforming Block =====*/
.about-transforming-main-block {
  padding: 50px;
}
.about-transforming-heading-block {
  padding: 20px;
}
.about-transforming-heading-block p {
  font-size: 20px;
}
.about-transforming-img .overlay-bg {
  background-color: rgba(0, 0, 0, .1);
}
.about-transforming-img img {
  position: relative;
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.about-transforming-img .about-transforming-icon {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  z-index: 999999;
  bottom: 40%;
}
.about-transforming-img .about-transforming-icon i {
  color: var(--text-white-color);
  font-size: 30px;
  border-radius: 100%;
  border: 2px solid #FFF;
  padding: 25px 27px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.about-transforming-img:hover i {
  transform: scale(1.3);
}
.about-transforming-block {
  background-color: #F4F4F4;
  padding: 25px 20px ; 
  height: 100%;
}
.about-transforming-block p {
  font-size: 16px;
}
.about-transforming-nav .btn-link {
  border-radius: 100%;
  padding: 15px 20px;
  border: transparent;
  background-color: #EBEBEB;
  color: #979797;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.about-transforming-nav .btn-link:hover {
  background-color: #979797;
  color: var(--text-white-color);
}
.about-nav-heading {
  padding: 10px;
  font-weight: 500;
  text-align: center;
  color: #1A263A;
  background-color: #F4F4F4;
}
.nav-item:hover .about-nav-heading,
.nav-item:active .about-nav-heading{
  color: var(--text-white-color);
  background-color: var(--background-red-bg-color);
}
.about-transforming-main-block .nav-tabs,
.about-transforming-main-block .nav-tabs .nav-item.show .nav-link, 
.about-transforming-main-block .nav-tabs .nav-link.active {
  border-bottom: none;
}
.about-transforming-main-block .nav-tabs .nav-item.show .nav-link, 
.about-transforming-main-block  .nav-tabs .nav-link {
  padding: 0;
  margin-right: 15px;
  border-bottom: 5px solid transparent;
}
.about-transforming-main-block .nav-tabs .nav-item.show .nav-link:last-child, 
.about-transforming-main-block  .nav-tabs .nav-link:last-child {
  margin-right: 0;
}

.about-transforming-main-block  .nav-tabs .nav-item.show .nav-link, 
.about-transforming-main-block  .nav-tabs .nav-link:hover {
  color:var(--text-red-color);;
  border-bottom: 5px solid transparent;
}
.about-transforming-main-block  .nav-tabs .nav-item.show .nav-link,
.about-transforming-main-block  .nav-tabs .nav-link.active {
  background: transparent; 
  color: var(--text-black-color);
  border-bottom: 5px solid var(--text-red-color);
}

@media (min-width: 767px) and (max-width: 992px) {
  .about-transforming-img img {
    height: 100%;
  }
  .about-transforming-block {
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .about-transforming-main-block {
    padding: 10px;
  }
  .about-transforming-main-block .nav-item img {
    width: 100%;
  }
  .about-transforming-main-block .nav-item {
    margin-bottom: 30px;
  }
}

/*===== About-facts Block =====*/
.facts-main-block {
  background-color: #F4F4F4;
  padding: 80px 0 40px;
}
.facts-block-heading {
  font-size: 40px;
  font-weight: 400;
}
.facts-heading-sign {
  font-size: 50px;
  color: #232C3B;
  font-weight: 700;
  display: inline-block;
}
.facts-main-block p {
  font-size: 20px;
  font-weight: 0;
}
.facts-heading {
  font-size: 50px;
  color: #232C3B;
  font-weight: 700;
  display: inline-block;
}

/*===== about-team-block =====*/
.about-team-main-block {
  padding: 90px 0;
}
.about-team-block {
  background-color: #F4F4F4;
  padding: 138px 90px;
  height: 100%;
}
.about-team-heading {
  font-size: 28px;
}
.about-team-block .btn-primary {
  padding: 12px 35px;
}
.about-team-img {
  width: 100%;
}
@media (min-width: 767px) and (max-width: 992px) {
  .about-team-block {
    padding: 70px;
    height: 450px;
  }
}
@media (max-width: 767px) {
  .about-team-img {
    display: none;
  }
  .about-team-block {
    padding: 130px 30px;
  }
}

/*===== about-work-block =====*/
.about-work-main-block {
  background-color: var(--background-black-bg-color);
}
.about-work-block {
  background: var(--linear-gradient-about-blue-bg-color);
  padding: 45px 90px;
  height: 100%;
}
.about-work-heading {
  font-size: 28px;
  padding: 10px;
  color: #F5C252;
}
.about-work-block p {
  color: var(--text-white-color)!important;
}
.about-work-block p a:hover {
  color: #52C3D1;
}
.about-work-btn .btn-secondary {
  color: var(--text-white-color);
  padding: 10px 20px;
  font-size: 16px;
  background-color: transparent;
  border: 1px solid #FFF;
  border-radius: 1px;
  text-transform: none;
  font-weight: 500;
}
.about-work-btn .btn-secondary:hover {
  color: #232C3B;
  background-color: var(--background-white-bg-color);
  border: 1px solid transparent;
  border-radius: 1px;
}
.about-work-img img {
  width: 40px;
  height: 40px;
}
.about-work-main-block .video-device .bg_img {
  background-size: cover;
  width: 100%;
  height: 390px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.about-work-main-block .video-device .overlay-bg {
  opacity: 0.4;
}
.about-work-main-block .video-device {
  position:relative;
}
.about-work-main-block .video-preview {
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  text-align: center;
  margin: 0 auto;
}
.about-work-main-block .video-preview i {
  color: var(--text-white-color);
  font-size: 25px;
  border-radius: 100%;
  border: 2px solid #FFF;
  padding: 20px 22px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.about-work-main-block .video-preview i:hover {
  transform: scale(1.3);
}
.about-work-main-block .video-preview p {
  color: var(--text-white-color);
  padding: 30px 210px;
  text-transform: uppercase;
}
@media (min-width: 767px) and (max-width: 992px) {
  .about-work-block {
    padding: 40px 20px;
  }
  .about-work-main-block .video-preview p {
    padding: 30px;
  }
}
@media (max-width: 567px) {
  .about-work-block {
    padding: 50px 20px;
  }
  .about-work-main-block .video-preview p {
    padding: 30px;
  }
}
/*===== about-blog-block =====*/
.about-learning-blog-main-block {
  background: var(--linear-gradient-about-bg-color); 
  padding: 60px 0 0;
  position: relative;
}
.about-learning-blog-heading {
  font-size: 35px;
  font-weight: 400;
  color: var(--text-white-color)!important;
}
.about-learning-blog-dtl {
  border: 1px solid #FFF;
  padding: 20px 30px;
  height: 170px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.about-learning-blog-dtl:hover {
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
}
.about-learning-blog-dtl-heading {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-white-color)!important;
}
.about-learning-blog-paragraph p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-white-color)!important;
}
.about-learning-blog-icon i {
  padding: 10px;
  font-size: 16px;
}
.about-social-list {
  margin-top: 90px;
  padding: 20px 0 10px 0;
  background-color: rgba(0, 0, 0, .1);
}
.about-social-list ul li {
  display: inline-block;
  font-size: 26px;
  margin-right: 10px;
  color: var(--text-white-color)!important;
}
.about-social-list ul li a {
  font-size: 26px;
  color: var(--text-white-color);
}

/* ================================= */
    /*===== Category-Page =====*/
/* ================================= */
/*.categories-tab-main-block {*/
/*  background-color: var(--background-grey-bg-color);*/
/*  border-top: 1px solid #DEDFE0;*/
/*}*/
.categories-tab-dtl {
  padding: 10px 5px; 
  text-align: center;
}
.categories-tab-block a {
  color: var(--text-dark-grey-color);
}
.categories-tab-block i {
  -webkit-text-stroke: 1px #686F7A;
  margin-right: 8px;
}
.categories-tab-dtl:hover {
  background-color: #E8E9EB;
}
.learning-courses-main-block-one {
  padding: 200px 0 40px;
}
.business-home-main-block {
    /* background: var(--linear-gradient-bg-color); */
    padding: 40px 0;
    position: relative;
    background: #d9daef;
    /* background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%); */
}
/*.business-home-slider-main-block {
  position: absolute;
  top: 25%;
  width: 100%;
  z-index: 99999;
}*/
/*.business-home-slider-block {
  padding: 20px;
  background-color: var(--background-white-bg-color);
  box-shadow: 0 0 1px 1px rgba(20,23,28,0.1), 0 3px 1px 0 rgba(20,23,28,0.1);
}*/
/*.business-home-slider-img {
  margin-right: 30px;
}*/
.business-home-slider-btn .btn-info {
  padding: 12px 15px;
  border-radius: 1px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.learning-courses-main-block-one .owl-carousel .owl-nav button.owl-next {
  margin-left: 98%; 
}
.categories-popularity-dtl a i {
  -webkit-text-stroke: 1px var(--text-red-color);
  color: var(--text-white-color);
  font-size: 20px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.categories-popularity-dtl a i:hover {
  -webkit-text-stroke: 1px var(--text-red-color);
  color:var(--text-red-color);;
}
.course-bought-block .rating ul li {
  display: inline-block;
  color: var(--text-dark-grey-color);
  margin-bottom: 0;
}
.course-bought-block .rating ul li i {
  color: #F4C150;
}
.categories-popularity-dtl ul li {
  display: inline-flex;
}
.best-seller-one {
  position: relative;
  top: 0;
  padding: 2px 12px;
  left: 0;
  transform: initial;
  width: 67px;
}
/*.categories-popularity-dtl  p {*/
/*  font-size: 13px;*/
/*  color: var(--text-dark-grey-color);*/
/*}*/
.rate-r {
  font-weight: 700;
  font-size: 18px;
}
.categories-popularity-main-block .course-bought-block {
  cursor: pointer;
  padding: 20px;
  background-color: #fff;
}
.testimonial-slider-main-block.owl-carousel .owl-item .instructors-img-block img {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.instructors-dtl ul li {
  display: block;
}
.instructors-main-block .testimonial-block ul li+li  {
  padding-top: 10px;
}
.instructors-main-block .testimonial-block {
  height: 310px;
  border: 1px solid #E8E9EB;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.categories-main-block-one {
  padding: 50px 0 50px;
}
/*.categories-main-block-one .categories-block {
  width: 180px;
  height: 70px;
  padding: 0 15px;
  align-items: center;
  display: inline-flex;
  color: var(--text-black-color);
}*/
.categories-popularity-main-block .pagination .page-item .page-link {
  border-radius: 100%;
  margin-right: 15px;
  color: var(--text-blue-color);
  background-color: transparent;
  border: 1px solid transparent;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease.a
}
.categories-popularity-main-block .pagination .page-item .page-link.page-active:hover {
  color: var(--text-white-color);
  background: var(--background-blue-bg-color);
  border: 1px solid var(--text-blue-color);
}
.categories-popularity-main-block .pagination .page-item .page-link.active {
  color: var(--text-white-color);
  background: var(--background-blue-bg-color);
  border: 1px solid var(--text-blue-color);
}
.categories-popularity-main-block .pagination .page-item .page-link i {
  border-radius: 100%;
  color: var(--text-light-grey-color);
  padding: 20px 23px;
  border: 1px solid #A1A7B3;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.categories-popularity-main-block .pagination .page-item .page-link i:hover {
  color: var(--text-blue-color);
  padding: 20px 23px;
  background-color: inherit;
  border: 1px solid var(--text-blue-color);
}
.categories-popularity-block {
  border: 1px solid #E8E9EB;
  padding: 15px;
}
.categories-popularity-img {
  float: left;
}
.categories-popularity-img-heading {
  font-size: 16px;
  font-weight: 500;
}
.categories-popularity-img-dtl {
  display: table;
  padding: 5px 10px 0;
}
.categories-popularity-img-dtl p {
  font-size: 14px;
}
.categories-popularity-img-dtl span {
  font-weight: 500;
}
.categories-popularity-block ul li {
  display: inline-block;
  margin-right: 10px;
}
.try-learning {
  font-weight: 500;
}
.popularity-Sort ul li {
  display: inline-block;
}
.popularity-Sort ul li ul li {
  display: block;
  padding: 5px 10px; 
}
.popularity-Sort a {
  font-weight: 500;
  color: var(--text-black-color);
  font-size: 15px;
}
.popularity-Sort ul li ul li a {
  font-weight: 400;
}
.business-home-slider-block {
  margin-top: 20px;
}
.catalog-main-block {
  /* background-color: var(--background-grey-bg-color); */
  /* padding: 10px 0; */
  margin-bottom: 10px;
}
.catalog-heading {
  font-size: 18px;
}
.catalog-main-block ul li {
  display: inline-block;
  border: 1px solid #CACBCC;
  padding: 10px;
  background-color: var(--background-white-bg-color);
}
.catalog-main-block ul li ul li {
  border: none;
  padding: 0;
  font-weight: 400;
}
.catalog-main-block ul li a {
  color: var(--text-dark-grey-color);
  font-weight: 500;
}
.catalog-main-block ul li a:hover {
  color: var(--text-black-color);
}
.catalog-main-block ul li  ul li i {
  color: #F4C150;
}
.catalog-main-block .dropdown-menu  {
  width: 250%;
  padding: 10px;
}

@media (min-width: 1800px) and (max-width: 2300px) {
  .business-home-slider-main-block {
    top: 33%;
  }
}

@media (min-width: 3000px) and (max-width: 6000px) {
  .business-home-slider-main-block {
    top: 13%;
  }
}
/*@media (min-width: 992px) and (max-width: 1800px) {
  .business-home-slider-main-block {
    top: 44%;
  }
}*/
@media (max-width: 992px) {
  .categories-main-block-one .categories-block {
    width: 100%;
  }
  /*.business-home-slider-main-block {
    position: relative;
    top: -160px;
    margin-bottom: -145px;
  }*/
}
@media (max-width: 767px) {
  .learning-courses-main-block-one {
    padding: 490px 0 40px;
  }
  .business-home-slider-main-block .owl-carousel .owl-item img  {
    width: 107%;
    margin-bottom: 20px;
  }
  .categories-popularity-main-block img {
    margin-bottom: 20px;
    width: 100%;
  }
  .categories-popularity-main-block .course-bought-block {
    padding: 20px;
  }
}
@media (max-width: 567px) {
  .learning-courses-main-block .owl-carousel .owl-nav button.owl-prev,
  .learning-courses-main-block .owl-carousel .owl-nav button.owl-next {
    display: none;
  }
}

/* ================================= */
    /*===== Blog-Page =====*/
/* ================================= */
.blog-home-main-block,.wishlist-home-main-block {
  /*background-color: var(--text-light-grey-color);*/
  padding: 40px 0px; 
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 0;
  background: rgb(193,40,42);
  background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%);
}
.blog-home-main-block .overlay-bg {
  background: linear-gradient(270deg,transparent -50%,#000 180%);
  padding: 130px 10px 90px;
  position: absolute;
}
/*.blog-home-heading {
  font-size: 36px;
  position: relative;
  margin-bottom: 0;
  color: var(--text-white-color)!important;
  font-weight: 700 !important;
  font-family: 'Poppins', sans-serif;
}*/
.blog-main-block {
  padding: 40px 0 0;
}
.blog-main-block hr {
  margin-top: 50px;
}
/*.blog-slider-dtl {
  padding: 10px 30px; 
}*/
/*.slider-date {
  color: #6D7A91;
}*/
.blog-slider-heading a {
  font-size: 24px;
}
.blog-slider-heading a:hover {
  color: #52C3D1;
}
.business-home-slider-btn .btn-link {
  background-color: #F4F4F4;
  border-color: transparent;
  color: #6D7A91;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.business-home-slider-btn .btn-link:hover {
  background-color: var(--background-red-bg-color);
  border-color: transparent;
  color: var(--text-white-color);
}
.blog-main-block button.owl-next, 
.blog-main-block button.owl-prev,
.blog-main-block button.owl-dot {
  background-color: #CBCBCB;
  border: 1px solid #CBCBCB;
  width: 10px;
  height: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  margin: 0 4px;
}
.blog-main-block .owl-dot:hover {
  background-color: #e53726; 
  border: 2px solid #e53726;
}
.blog-main-block .owl-dot.active {
  border: 1px solid #e53726;
  background-color: #e53726;
}
.blog-main-block .owl-dots {
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
} 
/*.blog-block-img {
  float: left;
  margin-right: 15px;
}*/
.blog-main-block .page-item .page-link {
  color: #e53726;
  font-size: 17px;
  background-color: transparent;
  border: 1px solid #EDEEF0;
  border-radius: 0;
  padding: 10px 15px;
}
.blog-main-block .page-item .page-link:last-child {
  border-radius: 0;   
}
.blog-main-block .page-item.active .page-link {
  color: var(--text-white-color);
  font-size: 17px;
  background-color: #e53726;
  border: 1px solid #e53726;
  border-radius: 0;
  padding: 10px 15px;
}
.blog-main-block .page-item .page-link:hover {
  color: #e53726;
  background-color: #fff;
}
.blog-list .list {
  font-weight: 500;
}  
.blog-list ul li {
  margin-left: 90px;
}
.blog-list ul li a {
  font-size: 15px;
}
.blog-list ul li a:hover {
  color: #52C3D1;
}

/* ================================= */
    /*===== Blog-dtl-Page =====*/
/* ================================= */
.blog-dtl-main-block {
  padding: 50px 0;
}
/*.blog-link a {
  color: #232C3B;
  font-size: 16px;
}
.blog-link a:hover {
  color: #52C3D1;
}
.blog-link i {
  margin-right: 20px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.blog-link:hover i {
  margin-right: 10px;
}*/
.blog-dtl-block-heading {
  font-size: 38px;
}
.blog-dtl-heading-dtl,
.blog-dtl-heading-dtl a {
  color: rgba(0,0,0,.5)
}
.blog-dtl-heading-dtl a:hover {
  color:var(--text-red-color);;
}
/*.blog-dtl-block a,
.blog-idea a {
  color: #0C849D;
  font-size: 20px;
}
.blog-dtl-block a:hover,
.blog-idea a:hover {
  color: #52C3D1;
}*/
/*.blog-dtl-block p,
.blog-dtl-block a {
  font-size: 19px;
}
.blog-dtl-block span {
  font-weight: 700;
}
.blog-dtl-block hr {
  border-bottom: 2px solid #F7F7F7;
}*/
/*.blog-link span {
  color: #666;
  font-weight: 500;
}*/
.blog-link-one i {
  margin-left: 20px;
  margin-right: 0;
}
.blog-link-one:hover i {
  margin-left: 10px;
  margin-right: 0;
}
@media (max-width: 767px) {
  .blog-dtl-img img {
    width: 100%;
  }
}

/* ================================= 
    /*===== Contact-us page =====*/
/* ================================= */
/*.contact-us-main-block {
  padding: 90px 0;
}*/
.contact-two-heading {
  margin-bottom: 27px;
}
.contact-us ul {
  margin-bottom: 25px;
}
.contact-us-form .form-group-two {
  margin-bottom: 14px;
}
/*.contact-us-main-block .contact-form-btn {
  margin-bottom: 120px;
}*/
.contact-us-main-block .comment textarea {
  width: 100%;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--background-white-bg-color);
  padding: 24px 19px 0;
  font-size: 16px;
  color: #777;
}
.contact-us-main-block  .form-group .form-control {
  padding: 12px 20px;
  margin-bottom: 22px;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
.contact-us-main-block .contact-dtl ul {
  text-align: center;
  /*padding: 30px;*/
  border: 1px solid #DEDFE0;
}
/*.contact-us-main-block .contact-dtl ul li {
  font-size: 16px;
}*/
.contact-us-main-block .contact-dtl ul li i {
  font-size: 25px;
}
.contact-us-main-block .caps {
  text-transform: uppercase;
  font-weight: 500;
}

/* ================================= 
    /*===== Map =====*/
/* ================================= */
.map-location {
  width: 100%;
  height: 520px;
}

/* ================================= */
    /*===== Courses-Page =====*/
/* ================================= */
/*.learning-courses-about-main-block {
  background-color: #F2F3F5;
}*/
/*.learning-courses-home-main-block {
  background-color: var(--background-black-bg-color);
  padding: 40px 0;
}*/
.learning-courses-home-heading {
  color: var(--text-white-color)!important;
}
/*.learning-courses-home-heading a {
  color: var(--text-white-color);
  font-size: 24px;
}*/
.learning-courses-home-block .progress {
  width: 90%;
  float: left;
  display: inline-block;
  height: 6px;
  background-color: var(--background-light-grey-bg-color);
}

.progress-block .progress-heading {
  font-weight: 500;
}
/*.learning-courses-home-heading a:hover {
  color: var(--text-blue-color);
}*/
.learning-courses-home-btn .btn-primary {
  padding: 15px;
  border-radius: 1px;
}
.learning-contact-block {
  padding: 30px 0;
}
.learning-contact-btn .btn-primary {
  padding: 15px 10px;
}
.learning-contact-search {
  float: left;
  display: inline-block;
  width: 82%;
}
.learning-contact-search .form-control {
  padding: 15px 20px;
}
.profile-block .search-block .form-control {
  padding: 11px;
}
.learning-contact-btn {
  /*height: 30%;*/
}
.profile-block .search-block .form-group {
  display: inline-block;
  float: left;
  width: 280px;
  height: 44px;
}
.profile-block .form-btn .btn-primary {
  padding: 15px 15px;
  background: var(--background-blue-bg-color);
  border-radius: 1px;
}
.profile-list ul li {
  display: inline-block;
  padding: 10px;
  color: var(--text-light-grey-color);
}
.profile-list ul li a {
  font-size: 16px;
  font-weight: 500;
}
.contact-search-block {
  padding: 20px;
  background-color: var(--background-white-bg-color);
}
.contact-dropdown {
  text-align: left;
  padding: 0;
}
.contact-dropdown .a {
  border: 1px solid #CACBCC;
  background-color: var(--background-white-bg-color);
}
.contact-checkbox ul li {
  display: inline-block;
}
.question-report {
  text-align: center;
}
/*.learning-courses-about-main-block  .tab-pane {
  background-color: #F2F3F5;
}*/
.learning-announcement {
  padding: 40px 0;
}
.learning-announcement .card-body p {
  text-align: left;
  padding: 20px;
}
.learning-announcement-null {
  padding: 90px 0;
}
.learning-bookmark {
  padding: 40px 0;
}
.learning-bookmark-icon i {
  font-size: 40px;
}
.overview-block {
  padding: 30px 0;
}
.learning-questions-heading {
  font-weight: 500;
  background-color: #F2F3F5;
  padding: 15px;
  margin-bottom: 0;
  border-bottom: 1px solid #DDD;
}
.learning-questions-img {
  float: left;
  background-color: rgb(104, 111, 122);
  text-transform: uppercase;
  color: var(--text-white-color);
  padding: 11px 15px;
  border-radius: 100%;

}
.learning-questions-img-two {
  float: left;
  background-color: rgb(104, 111, 122);
  text-transform: uppercase;
  color: var(--text-white-color);
  padding: 7px 10px;
  font-size: 10px;
  border-radius: 100%;
  margin-top: 10px;
  margin-left: 10px;
}
.learning-questions-dtl {
  padding: 12px 10px;
}
.learning-questions-dtl a {
  color: var(--text-light-grey-color);
}
.learning-questions-dtl-block {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid #F4F4F4;
}
.learning-questions-dtl-block:last-child {
  border-bottom: none;
}
.learning-questions-block {
  background-color: var(--background-white-bg-color);
  border: 1px solid #DDD;
}
.learning-questions-block:hover {
  box-shadow: 0 0 1px 1px rgba(20,23,28,0.1), 0 3px 1px 0 rgba(20,23,28,0.1);
  opacity: 1;
}
.learning-questions-content {
  padding: 30px 50px;
}
.content-course-number-heading {
  font-weight: 600;
}
.content-img img {
  border-radius: 100%;
  float: left;
  margin-right: 15px;
  width: 74px;
  height: 74px;
}
.content-img-dtl {
  padding: 10px 0;
}
/*.profile a {
  font-weight: 500;
  font-size: 19px;
  color: var(--text-light-grey-color);
}*/
.content-course-number-one ul li {
  display: inline-block;
  background: #DEDFE0;
  padding: 8px 13px;
  border-radius: 5px; 
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.content-course-number-one ul li:hover {
  background: #505763;
}
.content-course-number-one ul li a {
  color: var(--text-white-color);
}
.profile-block {
  padding: 30px 0;
}
.profile-heading {
  font-size: 16px;
  font-weight: 500;
  /*white-space: nowrap;*/
}
.learning-courses-about-main-block .second-accordion {
  /*margin-bottom: 20px;*/
}
.learning-courses-about-main-block .second-accordion .card-header {
  padding: 0;
  background: transparent;
  border-bottom: 0;
}
.learning-courses-about-main-block .second-accordion .card-header button.btn {
  display: block;
  width: 100%;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  font-size: 15px;
  padding: 10px 5px;
  position: relative;
  background-color: var(--background-light-grey-bg-color);
  border: solid 1px #E8E9EB;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.learning-courses-about-main-block .second-accordion .card {
  border: 0;
  font-size: 17px;
}
.learning-courses-about-main-block .second-accordion .card-body {
  padding: 0;
}
.learning-courses-about-main-block .second-accordion .card-body:hover {
  background-color: #F2F3F5;
}
.learning-courses-about-main-block .second-accordion .card-body a {
  color: var(--text-dark-grey-color);
}
.learning-courses-about-main-block .second-accordion .card-body.active {
  background: var(--background-blue-bg-color);
}
.learning-courses-about-main-block .second-accordion .card-body.active a {
  color: var(--text-white-color);
}
.learning-courses-about-main-block .second-accordion .card-body.active:hover {
  background-color: #003845;
}
.learning-courses-about-main-block .nav-tabs {
  /*padding: 50px 0 0;*/
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.learning-courses-about-main-block .nav-tabs a {
  border: none;
  border-bottom: 1px solid transparent;
}
.learning-courses-about-main-block .nav-tabs .nav-item.show .nav-link, 
.learning-courses-about-main-block .nav-tabs .nav-link {
  font-size: 18px;
  padding: 0 18px;
  color: var(--text-light-grey-color);
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.learning-courses-about-main-block .nav-tabs .nav-item.show .nav-link, 
.learning-courses-about-main-block .nav-tabs .nav-link:hover {
  color: #e53726;
  border-bottom: 1px solid transparent;
}
.learning-courses-about-main-block .nav-tabs .nav-item.show .nav-link, .learning-courses-about-main-block .nav-tabs .nav-link.active {
  background: transparent;
  color: #e53726;
  border-bottom: 1px solid #e53726;
}
.blog-slider-block {
  margin-bottom: 40px;
}
.section-dividation {
  font-size: 14px;
}
.class-size {
  font-size: 12px;
  color: var(--text-dark-grey-color);
}
.online-courses-block {
  background-color: var(--background-grey-bg-color);
  padding: 30px 0;
}
.contact-dropdown .dropdown-menu li {
  padding: 5px 40px;
}
.online-course-img img {
  width: 15%;
  height: 15%;
  float: left;
}
.online-course-dtl {
  padding: 30px;
}
.online-course-heading {
  font-weight: 600;
  margin-bottom: 10px;
}
.online-course-btn {
  padding: 40px 0;
}
.online-course-btn .btn-success {
  background-color: var(--background-white-bg-color);
  padding: 12px 10px;
}
.content-course-one ul {
  list-style-type: disc;
  margin: 0 0 0 13px;
  padding: 0;
}
@media (min-width: 767px) and (max-width: 992px) {
  .learning-contact-search {
    text-align: center;
    width: 100%;
  }
  .learning-contact-block .learning-contact-btn {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .contact-dropdown {
    margin-bottom: 50px;
  }
  .contact-checkbox {
    text-align: left!important;
  }
  .learning-contact-search {
    text-align: center;
    width: 100%;
  }
  .learning-contact-block .learning-contact-btn {
    text-align: center;
  }

/*  .learning-courses-about-main-block .nav-tabs .nav-item.show .nav-link, 
  .learning-courses-about-main-block .nav-tabs .nav-link {
    font-size: 13px;
    padding: 0;
    width: 16%;
  }*/
}
@media (max-width: 576px) {
  .learning-courses-about-main-block .btn {
    white-space: initial;
  }
  .contact-checkbox {
    text-align: left!important;
  }
  .learning-questions-dtl-block ul li {
    display: none;
  }
  .learning-contact-block .learning-contact-btn {
    text-align: center;
  }
/*  .learning-courses-about-main-block .nav-tabs .nav-item.show .nav-link, 
  .learning-courses-about-main-block .nav-tabs .nav-link {
    font-size: 11px;
  }*/
  .learning-contact-search {
    text-align: center;
    width: 100%;
  }
}

/* ================================= */
    /*===== Filter-Page =====*/
/* ================================= */
.filter-home-main-block {
  background-color: var(--background-grey-bg-color);
}
.filter-home-main-block .catalog-heading {
  color: var(--text-light-grey-color);
}
.filter-list .form-group ul li {
  display: inline-block;
}
.filter-list .form-group ul li ul li i {
  color: #F4C150;
}
.filter-dropdown .language-select {
  border: 1px solid #CACBCC;
  background-color: #e0e4e8;
  padding: 12px 15px;
}
.filter-dropdown ul li {
  display: inline-block;
}
.filter-dropdown .language-select .select {
  color: var(--text-dark-color);
}
.filter-dropdown .dropdown-select {
  border-top: 2px solid #EC8646;
}
.filter-dropdown .dropdown-select-one {
  border-top: 2px solid #C22D29;
}
.filter-btn {
  display: inline-block;
  margin-right: 10px;
}
.filter-btn-one .btn-info {
  background-color: var(--background-white-bg-color);
  border: 1px solid var(--text-blue-color);
  color: var(--text-blue-color)
}
.filter-btn-one .btn-info:hover {
  background-color: var(--background-white-bg-color);
  border: 1px solid #003440;
  color: #003440;
}
.filter-list span {
  font-weight: 500;
}
.filter-dropdown .dropdown-menu {
  width: 290px;
}
.filter-dropdown .dropdown-menu .form-check-input {
  margin: -10px 0 0 0;
}
.filter-dropdown .dropdown-menu-one {
  width: 190px;
  padding: 20px;
}
.filter-dropdown .dropdown-menu-one ul li {
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .filter-btn {
    float: left;
  }
}
 
/* ================================= */
    /*===== Featured-Item =====*/
/* ================================= */
.featured-iteam-main-block {
  padding: 60px 0;
}
.iteam-main-block {
  margin-bottom: 30px;
}
.iteam-block {
  margin-bottom: 15px;
}
.iteam-tooltip {
  display: none;
}
.protip-skin-default--scheme-pro.protip-container {    
  background: #1A1D32;
  border-radius: 0;
}
.protip-skin-default--size-normal {
  padding: 10px;
}
.iteam-tooltip img,
.protip-content img {
  width: 550px;
}
.iteam-tooltip-dtl {
  padding: 10px 0; 
}
.iteam-tooltip-heading {
  color: var(--text-white-color);
}
.iteam-tooltip-authoor-dtl span {
  color: #F0F0F0;
  opacity: 0.9;
  font-size: 12px;
  margin-bottom: 30px;
}
.iteam-tooltip-category {
  margin-top: 22px;
}
.iteam-tooltip-category ul li {
  display: inline-block;
  color: #F0F0F0;
  opacity: 0.5;
  font-size: 12px;
}
.iteam-tooltip-price {
  text-align: right;
}
.iteam-tooltip-price span {
  color: var(--text-white-color);
  font-size: 46px;
  font-weight: 700;
}
.iteam-tooltip-price span.currency {
  font-size: 20px;
  vertical-align: top;
}

/* ================================= */
    /*===== Mobile-Page =====*/
/* ================================= */
.mobile-main-block {
  padding: 50px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.mobile-heading {
  font-size: 48px;
}
.mobile-dtl-list {
  font-size: 22px;
}
.mobile-btn img {
  width: 32%;
}
.mobile-btn {
  display: inline-block;
  float: left;
}
.mobile-dtl-list ul {
  list-style-type: disc;
}

/* ================================= */
    /*===== Help-Page =====*/
/* ================================= */
.nav-bar-main-block-one .footer-dropdown {
  padding: 0;
}
.nav-bar-main-block-one .footer-dropdown .a {
  border: 1px solid transparent;
}
.nav-bar-main-block-one .footer-dropdown .btn-primary {
  padding: 5px 10px;
  background-color: var(--background-white-bg-color);
  color:var(--text-red-color);;
  border: 1px solid var(--text-red-color);
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav-bar-main-block-one .footer-dropdown .btn-primary:hover {
  color: var(--text-white-color);
  background-color: var(--background-red-bg-color);
}
/*.help-main-block {
  background: var(--linear-gradient-bg-color);
  padding: 90px 0;
}*/
.help-main-block .text {
  width: 100%;
}
.help-main-block .text:after {
  display: none;
}
.help-search {
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}
.help-search .form-control {
  border-radius: 30px;
  width: 100%;
  padding: 13px 0 13px 50px;
}
.form-inline .search-form {
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}
.help-search i {
  font-size: 22px;
  color: #DB4747;
}
.help-search .btn {top: 17%; left: 32px; position: absolute;}
/*.help-search .btn-primary {
  padding: 0;
  color: transparent;
  background-color: transparent;
}
.help-search .btn-primary:hover {
  padding: 0;
  color: transparent;
  background-color: transparent;
}*/
.help-tab-main-block {
  padding: 50px 0;
}
.help-tab-main-block .nav-tabs  {
  border-bottom: 1px solid transparent;
}
.help-tab-main-block .nav-tabs .nav-link {
  border-bottom: 6px solid transparent;
  border: 1px solid transparent;
  font-size: 24px;
  color: #222;
  padding: 30px 30px 20px 30px;
  margin-right: 20px;
}
.help-tab-main-block .nav-tabs .nav-link.active,
.help-tab-main-block .nav-tabs .nav-link:hover {
  padding: 30px 30px 20px 30px;
  border: 1px solid transparent;
  border-bottom: 6px solid var(--text-blue-color);
  color: var(--text-dark-grey-color);
}
.help-tab-main-block .nav-tabs .nav-link:hover {
  color: #222;
  border-bottom: 6px solid #00576B;
}
/*.help-tab-heading {
  font-weight: 300;
  font-size: 24px;
  color: var(--text-dark-grey-color);
}*/
.help-tab {
  font-size: 17px;
  padding: 20px 15px;
  color: #4A4A4A;
  border: 1px solid #CBCBCB;
  cursor: pointer;
  text-align: center;
}
.help-contact {
  background: rgb(193,40,42);
  background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%);
  padding: 30px;
  /*height: 210px;*/
  color: var(--text-white-color)!important;
}
.help-contact:hover {
    background: rgb(209,100,26);
    background: linear-gradient(281deg, rgba(209,100,26,1) 0%, rgba(193,40,42,1) 100%); 
}
.help-contact ul li {
  font-size: 18px;
  color: var(--text-white-color)!important;
}
.help-tab-one {
  padding: 30px;
  /*height: 210px;*/
}
.help-tab-one ul li {
  display: block;
  color: #4A4A4A;
} 
.help-tab-one ul li span {
  font-size: 18px;
}
.help-tab-dtl-block {
  background-color: #E6F2F5; 
  padding: 25px 30px;
}
.help-tab-icon {
  padding: 20px;
}
.help-tab-icon i {
  font-size: 60px;
  color: var(--text-dark-grey-color);
  border: 1px solid #FFF;
  background-color: var(--background-white-bg-color);
  border-radius: 100%;
  padding: 50px 53px;
}
.help-tab-block-dtl {
  padding: 30px 10px;
}
.help-tab-block-dtl-heading {
  font-size: 20px;
  color: var(--text-black-color);
}
.help-tab-block-dtl p {
  font-size: 18px;
  color: var(--text-dark-grey-color);
}
.help-tab-block-dtl a {
  font-size: 16px;
}
@media (max-width: 992px) {
  .help-search i {
    left: 5%;
  }
}
@media (max-width: 576px) {
  .help-search i {
    top: 13%;
    left: 9%;
  }
  .nav-bar-btn  {
    text-align: center;
  }
  .nav-bar-main-block-one .footer-dropdown  {
    text-align: center;
    margin-bottom: 30px;
  }
  .help-tab-main-block .nav-tabs .nav-link {
    width: 50%;
    margin-right: 0;
  }
  .help-tab-heading {
    font-size: 20px;
  }
}

/* ================================= */
    /*===== Terms-page =====*/
/* ================================= */
.terms-main-block {
  padding: 10px 0;
}
.terms-details-list {
  margin-bottom: 50px;
}
.terms-details-list .active  {
  background: var(--background-blue-bg-color);
}
.terms-details-list .active  a {
  color: var(--text-white-color);
}
.terms-details-list ul li {
  border: 1px solid #EAEAEA;
  padding: 10px 17px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.terms-details-list ul li:hover { 
  color: #555;
  background-color: #F5F5F5;
} 
.terms-details-list ul li a {
  color: #555;
  font-size: 15px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.terms-details-list ul li:hover a { 
  color: #555;
}
.term-heading {
  font-size: 25px;
}
.term-block p {
  font-size: 15px;
}
.term-block span {
  font-weight: 500;
}
.term-block .content-heading {
  font-size: 18px;
}
.term-block ul {
  list-style-type: disc;
  margin-left: 40px;
}
.term-block ul li a {
  font-size: 16px;
}
.sky-blue {
  background-color: #e6f2f5;
  padding: 20px;
}

/* ================================= */
    /*===== Teach-Online-Page =====*/
/* ================================= */
.home-btn .btn-primary {
  padding: 15px 55px;
  font-style: 500;
  border-radius: 1px;
}
.online-testimonial-main-block {
  padding: 40px 0 60px;
}
.online-testimonial-block ul li {
  font-size: 16px;
}
.online-testimonial-block ul li span {
  font-size: 18px;
}
.facts-main-block-one .facts-block {
  margin-bottom: 40px;
}
.facts-main-block-one {
  padding: 50px;
}
.facts-main-block-one .facts-heading,
.facts-main-block-one .facts-heading-sign {
  font-weight: 100;
}
.facts-main-block-one .facts-dtl {
  font-size: 18px;
  padding: 0 50px;
}
.success-envision-main-block {
  padding: 40px 0 60px;
}
.success-envision-main-block [class^="flaticon-"]:before, 
.success-envision-main-block [class*=" flaticon-"]:before, 
.success-envision-main-block [class^="flaticon-"]:after, 
.success-envision-main-block [class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-size: 55px;
  font-style: normal;
  margin-left: 10px;
}
.success-envision-main-block i {
  font-size: 55px;
  padding: 25px;
  border: 1px solid #FFF;
}
.success-envision-main-block i:hover {
  padding: 25px;
  border: 1px solid rgba(41,48,59,.2);
  background-color: rgba(41,48,59,.2);
  border-radius: 50%;
}
.success-envision-main-block .text {
  position: relative;
  height:100px;
  width: 360px;
  margin: 0 auto;
}
.success-envision-main-block .text:after {
  content: "";
  position: absolute;
  top: 60%;
  width: 150px;
  height: 1px;
  color: rgba(41,48,59,.25);
  background: var(--background-black-bg-color);
}
.success-envision-main-block .text:after {
  right: 0;
}
.nav-detail {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-light-grey-color);
}
.success-envision-main-block .nav-tabs {
  border-bottom: 1px solid transparent;
}
.success-envision-main-block .nav-tabs .nav-link.active,
.success-envision-main-block .nav-tabs .nav-link {
  border: 1px solid transparent;
}
.success-envision-dtl p {
  font-size: 17px;
  color: var(--text-dark-grey-color);
}
.success-envision-dtl span {
  font-weight: 500;
  color: var(--text-light-grey-color);
  font-size: 19px;
}
.online-blog-main-block {
  padding: 0 0 60px;
}
.online-blog-main-block .section p {
  font-size: 20px;
}
.online-blog-block {
  padding: 30px;
  border: 1px solid #DEDFE0;
  border-radius: 0 0 4px 4px;
}
.online-blog-block p {
  font-size: 18px; 
}
.online-blog-img img {
  border-radius: 100%;
  width: 100%;
}
.success-envision-dtl-img img {
  width: 100%;
}
.online-blog-dtl {
  font-weight: 500;
}
.online-blog-img-dtl p {
  font-size: 14px;
}
.online-help-main-block {
  padding: 30px 0 150px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 450px;
}
.online-help-main-block .section-heading {
  margin-bottom: 110px;
}
.online-help-main-block p {
  font-size: 20px;
}
.instructor-main-block {
  padding: 80px 160px 10px;
  height: initial;
}
.instructor-main-block p {
  font-size: 18px;
}
.instructor-main-block .btn-primary {
  padding: 15px 70px;
  font-weight: 500;
  border-radius: 1px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .success-envision-main-block .text {
    width: 240px;
    margin-bottom: 90px;
  }
  .success-envision-main-block .text:after {
    display: none;
  }
}
@media (max-width: 767px) {
  .col-five {
    width: 30%;
  }
  .success-envision-main-block .text {
    width: 160px;
  }
  .online-blog-block {
    height: 370px;
  }
}
@media (max-width: 576px) {
  .online-help-main-block .section-heading {
    margin-bottom: 40px;
  }
  .col-five {
    width: 50%;
  }
  .facts-main-block-one .facts-block {
    margin-bottom: 10px;
  }
  .facts-main-block-one .facts-block h1 {
    margin-bottom: 0;
  }
  .success-envision-main-block .text {
    width: 100px;
  }
}

/* ================================= */
    /*===== Affiliate-Page =====*/
/* ================================= */
.affiliate-main-block {
  padding: 60px 30px 40px;
  background: #505763;
  border-bottom: 4px solid #FF7373;
}  
.affiliate-dtl {
  font-size: 27px;
}
.affiliate-btn .btn-primary {
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 10px;
}
.affiliate-dtl-main-block {
  padding: 40px 0;
}
.affiliate-dtl-img {
  float: left;
  margin-right: 10px;
}
.affiliate-dtl-img i {
  font-size: 40px;
}
.discover-heading {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark-grey-color);
}
.discover-heading-one {
  color: #FF7373;
}
.discover-dtl p {
  font-size: 16px;
}
.affiliate-program-heading {
  font-size: 19px;
  font-weight: 500;
  color: var(--text-dark-grey-color);
  text-transform: uppercase;
}
.affiliate-dtl-main-block .bdr-right {
  border-right: 1px solid #EDECE6;
  height: 100%;
}
.affiliate-dtl-main-block .bdr-left {
  border-left: 1px solid #EDECE6;
  height: 100%;
}
.affiliate-program-heading span {
  color: var(--background-mehroon-bg-color);
}
.affiliate-program ul li {
  font-size: 17px;
  margin-bottom: 10px;
  padding: 0 20px 0 0;
}
.affiliate-program-one {
  padding: 90px 30px;
}
.affiliate-program-two ul li {
  display: inline-block;
  padding: 10px;
}
.resource-link a {
  font-size: 16px;
}
.affiliate-program-one p,
.affiliate-program-one a {
  color: var(--text-dark-grey-color);
  font-size: 18px;
}
.affiliate-program-one a {
  font-weight: 500;
}
.affiliate-program-one a:hover {
  color: #222;
}
.affiliate-faq-main-block {
  padding: 50px;
}
.affiliate-faq-main-block .affiliate-faq-heading {
  color: var(--text-dark-grey-color);
  font-weight: 700;
  font-size: 20px;
}
.affiliate-faq-main-block p {
  color: var(--text-dark-grey-color);
  font-size: 15px; 
}
.affiliate-heading {
  text-transform: uppercase;
  color: var(--text-dark-grey-color);
  text-align: center;
  margin-bottom: 70px;
}
.affiliate-steps-heading {
  color: #FF7373;
  font-size: 18px;
}
.affiliate-steps-block .affiliate-border {
  border-left: solid 4px #FF7373;
  padding-left: 20px;
}
.affiliate-steps-block .affiliate-border:before {
  counter-increment: section;
  content: counter(section);
  position: absolute;
  left: -18px;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  border: 5px solid #FF7373;
  background-color: var(--background-white-bg-color);
  color: #FF7373;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 576px) {
  .affiliate-dtl-main-block .bdr-right,
  .affiliate-dtl-main-block .bdr-left  {
    display: none;
  }
}

/* ================================= */
    /*===== Careers-page =====*/
/* ================================= */
.careers-main-block {
  background: var(--linear-gradient-career-bg-color);
  padding: 0;
  position: relative;
  height: 650px;
  margin-bottom: 175px;
}
.careers-block {
  padding: 50px 0;
}
.careers-heading {
  font-size: 62px;
}
.careers-block p {
  font-size: 20px;
  padding: 0 150px;
}
.careers-btn .btn-primary {
  padding: 15px 25px;
  border-radius: 1px;
  font-size: 17px;/*
  margin-bottom: 90px;*/
}
.careers-video-main-block {
  position: absolute;
  top: 542px;
  left: 0;
  right: 0;
  margin: 0 auto; 
  text-align: center;
}
.careers-video img {
  border-radius: 12px;
}
.careers-video .careers-video-icon {
  z-index: 99999;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto; 
  text-align: center;
}
.careers-video .careers-video-icon i {
  color: var(--text-white-color);
  font-size: 30px;
  border: 2px solid #FFF;
  border-radius: 100%;
  padding: 28px 30px;    
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.careers-video .careers-video-icon:hover i {
  transform: scale(1.2);
}
.careers-info-main-block {
  padding: 200px 0 0;
}
.careers-info-block {
  padding: 40px 40px 30px 40px;
}
.careers-info-img img {
  border-radius: 100%;
  box-shadow: 0 4px 14px 0 rgba(0,0,0,.2);
}
.careers-info-block p {
  font-size: 15px;
}
.careers-block-one {
  border-bottom: 1px solid #EDECE6;
}
.careers-learn-main-block {
  padding: 90px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-color: var(--background-grey-bg-color);
}
.careers-learn-block {
  background-color: var(--background-white-bg-color);
  padding: 50px;
  border-radius: 10px;
}
.careers-learn-video {
  padding: 0 50px 0 0;
}
.careers-learn-video img {
  border-radius: 20px;
}
.careers-learn-video .overlay-bg {
  left: inherit;
  width: 352px;
  height: 191px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
}
.careers-learn-video .careers-learn-icon {
  z-index: 99999;
  position: absolute;
  top: 30%;
  left: -10%;
  right: 0;
  margin: 0 auto; 
  text-align: center;
}
.careers-learn-video .careers-learn-icon i {
  color: var(--text-white-color);
  font-size: 30px;
  border: 2px solid #FFF;
  border-radius: 100%;
  padding: 28px 30px;    
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.careers-learn-video .careers-learn-icon:hover i {
  transform: scale(1.2);
}
.careers-learn-video-one {
  padding: 40px 20px;
}
.careers-learn-heading {
  font-size: 36px;
}
.careers-learn-video-one a {
  color:var(--text-red-color);;
  font-size: 20px;
}
.learning-learn-img-block img {
  height: 410px;
  width: 100%;
}
.height img {
  height: 610px;
}
.height-one img {
  height: 210px;
}
.careers-benefits-main-block {
  padding: 80px 0 60px;
  background-color: #F7F7F7;
}
.careers-benefits-heading {
  font-size: 42px;
}
.careers-benefits-main-block p {
  font-size: 22px;
}
.careers-benefits-icon {
  float: left;
  display: table;
  padding: 5px 15px 50px 0;
}
.careers-benefits-icon i {
  color: #32CD32;
  border-radius: 100%;
  border: 3px solid #32CD32;
  padding: 12px;
  font-size: 22px;
}
.careers-benefits-dtl-heading {
  font-size: 22px;
}
.careers-benefits-dtl-block {
  height: 80px;
}
.careers-benefits-dtl p {
  font-size: 15px;
  color: #6D7A91;
}
.join-team-main-block {
  padding: 90px;
}
.join-team-block p {
  font-size: 20px;
}
.join-team-dropdown {
  text-align: left;
}
.join-team-dropdown a {
  font-size: 16px
}
.join-team-dropdown .dropdown-menu li {
  padding: 5px 25px;
  width: 228px;
}
.join-team-main-block .faq-block {
  padding: 60px 60px 10px 60px; 
  background-color: var(--background-white-bg-color);
}
.join-team-main-block .faq-dtl .second-accordion {
  margin-bottom: 80px;
}
.join-team-main-block .faq-block hr {
  display: none;
}
.join-team-main-block .faq-block h3 {
  margin-bottom: 5px;
}
.join-team-main-block .faq-dtl .second-accordion .card-header {
  background: transparent;
  border: 1px solid rgba(0,0,0,.1);
}
.join-team-main-block .card-header .btn {
  padding: 0;
  font-size: 17px;
  font-weight: 500;
}
.join-team-main-block .faq-dtl .second-accordion .card-header button.btn {
  display: block;
  width: 100%;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  color: #232323;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  text-transform: none;
  padding: 25px 0 0;
  border: 1px solid transparent;
  border-top: 1px solid #D8D8D8;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.join-team-main-block .faq-dtl .second-accordion .card {
  border: 0;
  padding: 5px;
  margin-bottom: 10px;
}
.join-team-main-block .faq-dtl .second-accordion .card-header button.btn[aria-expanded="false"]:after {
  position: absolute;
  font-family: fontawesome;
  right: 37px;
  color: #777;
  width: 30px;
  text-align: center;
  height: 30px;
  line-height: 28px;
  border-radius: 100%;
  font-size: 20px;
  font-weight: 700;
}
.join-team-main-block .faq-dtl .second-accordion .card-header button.btn[aria-expanded="true"]:after {
  font-family: fontawesome;
  right: 37px;
  position: absolute;
  color:  #777;
  width: 30px;
  text-align: center;
  font-size: 30px;
  height: 30px;
  line-height: 20px;
}
.join-team-main-block .faq-dtl .second-accordion .card-header button.btn[aria-expanded="true"]:hover:after{
  color: #F96921;
}
.join-team-main-block .faq-dtl .second-accordion .card-header button.btn[aria-expanded="false"] i {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.join-team-main-block .faq-dtl .second-accordion .card-header button.btn i {
  position: absolute;
  right: 20px;
}
.join-team-main-block .faq-main-block .btn {
    white-space: initial;
}
.join-team-main-block .career-faq-link a {
  font-size: 17px;
  font-weight: 500;
}
.join-team-main-block .career-faq-link a:hover {
  color: #6AC1D0;
}
.join-team-main-block .career-faq-place a {
  font-size: 17px;
  color: #232323;
}
@media (max-width: 767px) {
  .nav-bar-btn  {
    text-align: center;
  }
  .join-team-main-block .faq-block {
    padding: 0; 
  }
  .join-team-main-block .faq-dtl .second-accordion .card-header button.btn {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .careers-block p {
    padding: 0;
  }
  .careers-main-block {
    padding: 130px 0 73px;
  }
  .careers-info-main-block {
    padding: 40px 10px;
  }
  .careers-learn-main-block {
    padding: 10px;
  }
  .careers-learn-video .bdr-right {
    border-right: hidden;
  }
  .join-team-main-block {
    padding: 0;
  }
  .career-faq-place {
    text-align: left;
  }
  .join-team-main-block .faq-block {
    padding: 60px 40px 10px 60px; 
  }
}















/* ================================= */
    /*===== Popup =====*/
/* ================================= */
/*.popup_wrapper, .overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}*/
.about-home-includes-list .popup_wrapper, 
.about-home-includes-list .popup_wrapper .overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  /*left: 0;     
  right: 0;*/
  overflow: hidden;
}
.popup_wrapper {
  display: flex;
  margin-bottom: 80px;
  justify-content: center;
  align-items: center;
  text-align: center;
  visibility: hidden;
  transition: opacity 500ms;
  opacity: 0;
}
.overlay {
  z-index: 0;
  background: rgba(0, 0, 0, .618);
}
.show {
  visibility: visible;
  opacity: 1;
}
/*.popup {
  position: relative;
  z-index: 1;
  width: 320px;
  height: 160px;
  flex: 0 1 auto;
  overflow: hidden;
  background-color: var(--background-white-bg-color);
  border-radius: 16px;
  transition: all .02s ease-in-out;
}*/
.about-home-includes-list .popup {
  position: relative;
  z-index: 1;
  width: 320px;/*
  height: 160px; */    
  flex: 0 1 auto;/*
  overflow: hidden;*/
  background-color: var(--background-white-bg-color);
  border-radius: 16px;
  transition: all .02s ease-in-out;
}

.popup .close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  font-size: 24px;
  font-weight: bolder;
  color: #aaa;
  text-decoration: none;
}
.close:hover {
  color: #444;
}


.about-home-includes-list .popup .close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  font-size: 24px;              full section comment
  font-weight: bolder;
  color: #aaa;
  text-decoration: none;
}
.about-home-includes-list .close:hover {
  color: #444;
}
.popup .title p {
  padding-left: 12px;
  font-size: 24px;
  line-height: 44px;
  text-align: left;
  background: #EEE;
  border-bottom: 1px solid #555;
}
.popup h1 {
  margin: 16px auto;
}
.hide_sb {
  height: 100%;
  overflow: hidden;
}
.coupon-search .form-inline .form-control {
  height: 100%;
  position: relative;
}
.coupon-search .form-control {
  border: 1px solid #CACBCC;
  color: var(--text-black-color);
  background-color: var(--background-white-bg-color);
  height: 44px;
  border-radius: 1px;
}
.coupon-search .btn-primary {
  padding: 4px 10px;
  border-radius: 1px;
}



/*course detail page review input*/
/*.review-table .table thead th {
  vertical-align: bottom;
  border-bottom: none;
  font-weight: 500;
  font-size: 15px;
  color: #292929;
  padding-left: 3px;
}*/
/*.review-table .table td, 
.review-table .table th {
  padding: .75rem;
  vertical-align: top;
  border-top: none;
  font-weight: 500;
  color: #292929;
  text-align: right;
}*/
/*.blog-main-block .owl-carousel .owl-item img {
  display: block;
  width: 260px;
  height: 260px;
  margin-right: 50px;
}*/
.about-home-btn .btn-secondary {
  padding: 15px 0;
  width: 100%;
  border-radius: 1px;
  font-weight: 500;
  font-size: 17px;
  background: var(--background-blue-bg-color);
  color: var(--text-white-color);
}
.about-home-btn .btn-secondary:hover {
  background-color: #003845;
  border: 1px solid #003845;
  color: var(--text-white-color);
}
/*.learning-courses-home-video .video-item {
  text-align: center;
  border: 5px solid #FFF;
}*/
.learning-courses-home-video .video-device .bg_img {
  background-size: cover;
  width: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.learning-courses-home-video .video-device {
  position:relative;
}
.learning-courses-home-video .video-item .video-preview,
.learning-courses-home-video .video-item .video-preview iframe {
  width: 100%;
  height: 200px;
}
.learning-courses-home-video .video-preview {
  position: absolute;
  left: 0;
  top: 0;
  z-index:30;
  width: 100%;
}
.learning-courses-home-video .btn-video-play i {
  margin: 0 auto;
  position: relative;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  z-index: 30;
  color: var(--text-white-color);
  font-size: 42px;
  border: 1px solid transparent;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, .6);
  padding: 25px 27px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.learning-courses-home-video .btn-video-play:hover {
  opacity: 0.8;
}
.learning-questions-dtl ul li a {
  color: var(--text-blue-color);
  font-size: 11px;
}
.learning-answer-block {
  margin-left: 40px;
  margin-bottom: 10px;
}
.learning-answer-img {
  font-size: 12px;
  float: left;
  background-color: rgb(104, 111, 122);
  text-transform: uppercase;
  color: var(--text-white-color);
  padding: 7px;
  border-radius: 100%;
}
.learning-answer-dtl {
  padding: 0px 10px;
  vertical-align: middle;
}
.learning-answer-dtl ul li a {
  color: var(--text-blue-color);
  font-size: 11px;
}


/* ================================= */
    /*======= Wishlist Page=====*/
/* ================================= */
/*.wishlist-home-main-block {
  background-color: var(--text-light-grey-color);
  padding: 50px 20px;
}
.wishlist-home-heading {
  margin-bottom: 0;
  color: var(--text-white-color)!important;
}*/
.wishlist-icon {
  position: absolute;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  top: 12px;
  bottom: 0;
  left: 0;
  background-color: transparent;
  width: 80px;
  height: 15px;
  z-index: 9;
  border-radius: 0 10px 10px 0;
  color: var(--text-white-color);
  -webkit-text-stroke: 1px var(--text-red-color);
}
.cart-btn .btn-primary {
  font-size: 18px;
  font-weight: 500;
  top: 12px;
  background-color: var(--background-red-bg-color);
  color: var(--text-white-color);
  border: 1px solid var(--text-red-color);
  padding: 2px 40px;
}
.wishlist-btn .btn-primary {
  font-size: 18px;
  font-weight: 500;
  top: 12px;
  background-color: var(--background-red-bg-color);
  color: var(--text-white-color);
  border: 1px solid var(--text-red-color);
  padding: 2px 40px;
}

/*wishlist icon*/
.wishlisht-btn {
  background-color: transparent;
  border: none;
  color: var(--text-white-color);
}
.about-icon-two {
  color: var(--text-white-color);
}
.about-icon-two i {
  color: var(--text-white-color);
}
.heart-two i {
  color:var(--text-red-color);;
}
.nav-wishlist i {
	font-size: 20px;
	color: #ffe4e400;
	-webkit-text-stroke: 1.5px #4b51a0;
	border: 1px solid transparent;
	border-radius: 100%;
	display: inline-flex;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
/*.nav-wishlist i:hover {
  background: rgba(20,23,28,0.05);
  border: 1px solid rgba(20,23,28,0.05);
}*/

@media (max-width: 992px) {
  .wishlist-action {
    margin-bottom: 30px;
  }
  .review-table .table thead th {
    font-size: 13px;
  }
}


/* ================================= */
    /*======== Cart Page=====*/
/* ================================= */
/*.cart-main-block {
  padding: 60px 0;
}*/
.cart-add-block {
  /*border: 1px solid #DEDFE0;
  padding: 10px 20px 10px 10px;*/
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cart-heading {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 18px;
  color: #29303b;
}
.cart-add-block:hover {
  background-color: #E8E9EB;
}
.cart-img {
  position: relative;
}
.cart-img img {
    width: 100%;
}
.cart-add-block .cart-course-name {
  font-weight: 500;
}
.cart-add-block .cart-course-update {
  font-size: 13px;
  color: var(--text-dark-grey-color);
}
.cart-add-block .cart-actions a {
  font-size: 13px;
  color: var(--text-blue-color);
  font-weight: 400;
}
.cart-add-block .cart-actions a:hover {
  color: var(--text-black-color);
}
.cart-add-block .cart-actions i {
  color: #F4C150;
}
/*.cart-add-block .cart-course-amount {
  text-align: right;
}*/
.cart-add-block .cart-course-amount ul li {
  font-size: 15px;
  font-weight: 600;
  color: #e53726;
}
.cart-add-block .cart-course-amount ul li s {
  font-size: 15px;
  font-weight: 400;
  color: #686f7a;
}
.cart-add-block .cart-course-amount ul li s i{
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark-grey-color);
}
.cart-add-block .cart-course-amount i {
  color: var(--text-black-color);
}
.cart-price {
  font-size: 36px;
  font-weight: 500;
  color: #29303b;
}
.cart-original-price {
  font-size: 15px;
  color: var(--text-dark-grey-color);
}
.cart-original-price s {
  font-size: 15px;
  color: #686f7a;
}
.checkout-btn .btn-primary {
  width: 100%;
  color: var(--text-white-color);
  background-color: var(--background-red-bg-color);
  border: 1px solid transparent;
  padding: 15px 0;
  margin-top: 10px;
  font-weight: 500;
  border-radius: 2px;
}
.cart-remove-btn {
  border: none;
  background-color: transparent;
  font-size: 13px;
  color: var(--text-blue-color);
  font-weight: 400;
  padding: 0;
  cursor: pointer;
}
.cart-remove-btn:hover {
  color: var(--text-black-color);
}
.cart-wishlisht-btn {
  background-color: transparent;
  border: none;
  font-size: 13px;
  color: var(--text-blue-color);
  font-weight: 400;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
/*.coupon-apply input {
  height: 40px;
  padding: 0 15px;
  font-size: 14px;
  width: 100%;
   margin-bottom: 10px; 
}*/
.coupon-apply button {
  height: 48px;
  padding: 0 10px;
  font-size: 14px;
  float: right;
  width: 100%;
  /*border-radius: 0 2px 2px 0;*/
}
.coupon-apply input:focus {
  outline: none;
}

.cart-price-detail span{
  float: right;
}
.cart-price-detail span{
  float: right;
}
.cart-price-detail span a {
  color: var(--text-blue-color);
}
.cart-price-detail ul li {
  font-weight: 400;
}
.cart-price-detail ul li a {
  color: var(--text-blue-color);
}
.cart-price-detail ul li.active a {
  color: var(--text-blue-color);
  font-weight: 500;
}
.cart-total-two a b {
  color: var(--text-black-color);
  font-weight: 500;
  font-size: 22px;
}
.cart-total-two span {
  font-size: 20px;
}

.cart-coupon i {
  color:var(--text-red-color);;
  font-size: 22px;
  margin-left: -10px;
  margin-top: 10px;
}
.cart-coupon .btn-link {
  padding: 0;
  border: none;
}
.tooltip-inner {
  border: 1px solid #DEDFE0; 
  background-color: var(--background-white-bg-color) !important;
  color: var(--text-dark-grey-color);
}
.coupon-heading {
  color: var(--text-dark-grey-color);
  font-weight: 500;
}


@media (max-width: 576px) {
  .cart-main-block {
    padding: 60px 0 0;
  }
  .cart-add-block {
    margin-bottom: 20px;
  }
}

/* ================================= */
    /*======== Checkout Page=====*/
/* ================================= */
.checkout-main-block {
  padding: 60px 0;
}
.checkout-pricelist ul li {
  display: inline-block;
}
.checkout-total {
  font-weight: 500;
}
.checkout-price {
  margin-left: 10px;
  color: var(--text-dark-grey-color);
  font-size: 18px;
}
.checkout-percent {
  margin-left: 10px;
  color: var(--text-dark-grey-color);
}
/*.checkout-course-img {
  margin-bottom: 10px;
}*/
.checkout-course-user {
  color: var(--text-dark-grey-color);
    font-size: 11px;
}
.checkout-course-title {
  color: var(--text-light-grey-color);
  font-size: 13px;
  font-weight: 500;
}
/*.checkout-course-price {
  font-size: 15px;
  color: #686f7a;
}*/
.checkout-items {
  margin-bottom: 14px;
}
.payment-gateways .btn-link {
  border: none;
}
.payment-proceed-btn .btn-primary {
  padding: 10px 80px;
  font-weight: 500;
}
.panel-title label {
  margin-bottom: 0;
  cursor: pointer;
}

/*stripe payment form*/
.creditCardForm {
  max-width: 700px;
  background-color: var(--background-white-bg-color);
  overflow: hidden;
  padding: 25px;
  color: #4C4E56;
}
.creditCardForm label {
  width: 100%;
  margin-bottom: 10px;
}
.creditCardForm .heading h1 {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: #4C4E56;
}
.creditCardForm .payment {
  float: left;
  font-size: 18px;
  padding: 10px 25px;
  margin-top: 20px;
  position: relative;
}
.creditCardForm .payment .form-group {
  float: left;
  margin-bottom: 15px;
}
.creditCardForm .payment .form-control {
  line-height: 40px;
  height: auto;
  padding: 0 16px;
}
.creditCardForm .owner {
  width: 63%;
  margin-right: 10px;
}
.creditCardForm .CVV {
  width: 35%;
}
.creditCardForm #card-number-field {
  width: 100%;
}
.creditCardForm #expiration-date {
  width: 49%;
}
.creditCardForm #credit_cards {
  width: 50%;
  margin-top: 25px;
  text-align: right;
}
.creditCardForm #pay-now {
  width: 100%;
  margin-top: 25px;
}
.creditCardForm .payment .btn {
  width: 100%;
  margin-top: 3px;
  font-size: 24px;
  background-color: var(--background-red-bg-color);
  color: white;
}
.creditCardForm .payment select {
  padding: 10px;
  margin-right: 15px;
}
.transparent {
  opacity: 0.2;
}
@media(max-width: 650px) {
  .creditCardForm .owner,
  .creditCardForm .CVV,
  .creditCardForm #expiration-date,
  .creditCardForm #credit_cards {
    width: 100%;
  }
  .creditCardForm #credit_cards {
    text-align: left;
  }
  .creditCardForm {
    padding: 0; 
  }
}
/*stripe payment form end*/


/*rating*/
.star-ratings-css {
  unicode-bidi: bidi-override;
  color: #C5C5C5;
  font-size: 25px;
  height: 25px;
  width: 100px;
  margin: 0 auto;
  position: relative;
  padding: 0;
  text-shadow: 0px 1px 0 #A2A2A2;
}
.star-ratings-css-top {
  color: #E7711B;
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}
.star-ratings-css-bottom {
  padding: 0;
  display: block;
  z-index: 0;
}
.star-ratings-sprite{
  background: url("../images/rating/star-rating.png") repeat-x;
  font-size: 0;
  height: 12px;
  line-height: 0;
  overflow: hidden;
  text-indent: -999em;
  width: 70px;
  clear: both;
}
.star-ratings-center{
  margin: 0 auto;
  margin-bottom: 10px;
}
.star-ratings-sprite-rating {
  background: url("../images/rating/star-rating.png") repeat-x;
  background-position: 0 100%;
  float: left;
  height: 14px;
  display: block;
}
/*rating end*/

.helpful {
  display: inline-block;
}


/* ============================== */
  /*======== NavBar  ========*/
/* ============================== */
.logotext{
  font-size: 21px;
  padding: 8px 0;
}
.nav-wishlist {
  position: relative;
}
.shopping-cart {
  position: relative;
}
.red-menu-badge {
  font-size: 10px;
  min-width: 15px;
  min-height: 15px;
  line-height: 15px;
}
.red-bg-success {
  background: var(--background-red-bg-color);
}
.red-menu-badge {
	position: absolute;
	padding: 0px;
	line-height: 14px;
	color: #fff;
	border-radius: 100%;
	font-size: 11px;
	/* background: rgb(193,40,42); */
	/* background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%); */
	display: inline-block;
	text-align: center;
	left: 22px;
	top: -5px;
	z-index: 1;
	width: 18px;
	height: 18px;
	/* text-align: center; */
	background: #FE9B98;
	font-weight: 600;
	border: 2px solid #ffff;
}
/*.shopping-cart .red-menu-badge{ left: 35px;  top: 5px;}*/
.shopping-cart a, .nav-wishlist a {display: inline-block; line-height: 1;}
.user-text {
  text-align: center;
  margin-left: 20px;
}
#notification_li
{
  position:relative
}
#notificationContainer 
{
  background-color: var(--background-white-bg-color);
  border: 1px solid rgba(100, 100, 100, .4);
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
  overflow: visible;
  position: absolute;
  top: 50px;
  width: 300px;
  z-index: 999999999;
  display: none; // Enable this after jquery implementation 
}
#notificationContainerr 
{
  background-color: var(--background-white-bg-color);
  border: 1px solid rgba(100, 100, 100, .4);
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
  overflow: visible;
  position: absolute;
  top: 50px;
  width: 300px;
  z-index: 999999999;
  right: 50px;
  display: none; 
}
#notificationContainerr:before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  color: transparent;
  border: 10px solid black;
  border-color: transparent transparent white;
  margin-top: -20px;
  margin-left: 188px;
}
#notificationContainer:before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  color: transparent;
  border: 10px solid black;
  border-color: transparent transparent white;
  margin-top: -20px;
  margin-left: 14px;
}
#notificationTitle {
  padding: 14px 18px;
  font-size: 13px;
  background-color: var(--background-white-bg-color);
  z-index: 1000;
  border-bottom: 1px solid #DDD;
}
#notificationsBody ul li {
  padding: 12px;
  border-bottom: 1px solid #DDD;
}
#notificationFooter {
  /*background: rgb(193,40,42);
background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%);
  background-color: rgba(0, 0, 0, 0);*/
  text-align: center;
  font-weight: 500;
  padding: 8px;
  /*border-top: 1px solid #DDD;*/
}
.notification-image {
  display: inline-block;
  padding: 0;
  vertical-align: text-bottom;
  margin-right: 5px;
}
.notifications ul {
  max-height: 190px;
  overflow-y: auto;
  overflow-x: hidden;
}
.notification-data {
  display: inline-block;
  /*float: right;*/
}
.user-detailss {
  color: var(--text-light-grey-color);
  font-size: 15px;
}

.heart-category i {
  -webkit-text-stroke: 1px var(--text-red-color);
  color: var(--text-white-color);
}

/*user dropdown*/
.my-container {
  display: flex;
  justify-content: flex-end;
  align-content: center;
  align-items: normal;
  height: 100%;
  padding: 5px 0;
}
.my-dropdown {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  /* border-radius: 30px; */
/*  background-color: var(--background-grey-bg-color);
*/  /* box-shadow: 0 2px 8px 2px rgba(20,23,28,0.2); */
  width: 40px;
}
.dropdown__item {
  align-self: center;
  margin-left: .1em !important; /*damn you bootstrap!*/ 
}
.my-dropdown > .name {
  overflow: hidden;
  width: 0%;
  transition: width 300ms ease-out;
}
.my-dropdown > .name-shown {
  width: 60%;
}
.circle {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	top: -1px;
}

.dropdown-menu-right:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin-left: -0.5em;
  right: 0px;
  box-sizing: border-box;
  border: 7px solid black;
  border-color: transparent transparent #FFF #FFF;
  transform-origin: 0 0;
  transform: rotate(135deg);
  box-shadow: -3px 3px 3px -3px rgba(214, 214, 214, 0.78);
}
.dropdown-menu-right {
  display: none;
  position: absolute;
  border-radius: 7px;
  box-shadow: 0px 0px 8px rgba(214, 214, 214, 0.78);
  list-style: none;
  padding: 0;
  margin: 0;
  top: 100px;
  right: 0;
  width: 300px;
  border: none;
  z-index: 999999999999;
}
.dropdown-menu-right .U-open {
  display: block;
}
.dropdown-menu-right li {
  padding: 0px;
  line-height: 40px;
  border-bottom: 1px solid rgba(215, 215, 215, 0.17)
}
.dropdown ul li {
  padding-right: 20px;
  font-size: 13px;
  text-decoration: none;
  color: var(--text-black-color);
  font-weight: 400;
  background-color: var(--background-white-bg-color);
  z-index: 1111111;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
.dropdown ul li a {
  color: var(--text-black-color);
}
.dropdown ul li i {
  font-size: 15px;
  color: var(--text-light-grey-color);
  margin-left: 20px;
  margin-right: 10px;
}
.dropdown ul a li:hover {
  background-color: #E6E6E6;
}
.btn-default:hover {
  color: #333;
  background-color: #E6E6E6;
  border-color: #DEDFE0;
}
.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: none;
}

@media (max-width: 767px) {
  .my-container {
    justify-content: center;
  }
}

/* ====================================== */
  /*======== Purchase History  ========*/
/* ===================================== */
.purchase-main-block {
  /*padding: 60px 0;*/
  /*background-color: var(--background-light-grey-bg-color);*/
}
.purchase-history-heading {
  font-weight: 500;
  font-size: 18px;
}
.purchase-history-items {
  background-color: var(--background-white-bg-color);
  padding: 15px;
}
.purchase-history-course-img a {
  display: inline-block;
  float: left;
  margin-right: 10px;
}
/*.purchase-history-course-title {
  font-weight: 500;
  font-size: 16px;
}*/
/*.purchase-text {
  font-size: 12px;
}*/
.invoice-btn .btn-secondary {
  padding: 4px 10px;
  font-size: 12px;
  color: var(--text-blue-color);
  border: 1px solid var(--text-blue-color);
  display: inline-block;
}
/*.purchase-table tbody tr {
  background-color: var(--background-white-bg-color);
  margin-bottom: 10px;
}
.purchase-table thead th:first-child {
  text-align: left;
}
.purchase-table tbody td:first-child {
  text-align: left;
}
.purchase-table thead th {
  text-align: right;
}
.purchase-table tbody td {
  text-align: right;
}*/

/*invoice page*/
.view-order {
  padding: 30px 20px;
  background-color: #ECF0F5;
}
.order-invoice {
  margin-bottom: 10px;
  font-size: 18px;
}
.user-ordered {
  padding: 30px 20px;
}
.purchase-date {
  font-size: 15px;
}
.page-header {
  padding: 20px;
}
.order-table .table-striped tbody tr:nth-of-type(odd) {
  background-color: #ECF0F5;
}
.print-btn .btn-primary {
  padding: 12px 30px;
  display: inline-block;
  float: left;
  margin-right: 20px;
}
.print-btn .btn-secondary {
  padding: 12px 30px;
  display: inline-block;
}
.nav-menu-bar-main-block {
  position: absolute;
  z-index: 99999;
  width: 100%;
}

/* ====================================== */
  /*======== User Profile  ========*/
/* ===================================== */

/*.dashboard-author-block {
  padding: 22px 0 22px 0;
  background-color: var(--background-white-bg-color);
  margin-bottom: 22px;
}
.dashboard-author-block .author-image {
  margin-bottom: 15px;
}*/
.dashboard-author-block .author-image img {
  border-radius: 100%;
}
/*.dashboard-author-block .author-name {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-black-color);
}*/
.dashboard-items {
  /*padding: 10px 0;*/
  /*background-color: var(--background-white-bg-color);*/
}
.dashboard-items ul li {
  padding: 10px 0 10px 0px;
  /*border-left: 3px solid #FFF;*/
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1;
}
.dashboard-items ul li a {
  color: #fff;
  font-weight: normal;
}
.dashboard-items ul li:hover {
  color: #333;
  /*background-color: #F6F7FC;*/
  /*border-left: 3px solid var(--text-blue-color);*/
  /*background: rgb(193,40,42);*/
  /*background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%);*/
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.dashboard-items ul li:hover a {
  color: #333;
}
.dashboard-items ul li.active {
  color: #333;
  background-color: #F6F7FC;
  /*border-left: 3px solid var(--text-blue-color);*/
}
.dashboard-items ul li.active a {
  color: var(--text-dark-color);
}
.dashboard-items ul li i {
  font-size: 16px;
  margin-right: 12px;
  vertical-align: middle;
}
.dashboard-items ul li:hover i {
  color: #333;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.dashboard-items ul li i.active {
  color: var(--text-white-color);
  opacity: 1;
}
/*.profile-item-block {
  padding: 40px 0;
  background-color: #F6F7FC;
}*/
.profile-info-block {
	/* padding: 30px; */
	/* background-color: var(--background-white-bg-color); */
	margin-bottom: 20px;
	padding-left: 20px;
}
.profile-info-block .profile-heading {
	font-size: 22px;
	padding-bottom: 10px;
	border-bottom: 1px solid #C1C2D9;
}
.profile-info-block .profile-block .form-group label {
  font-size: 16px;
  color: var(--text-black-color);
  margin-bottom: 15px;
}
.profile-info-block .profile-block .form-group .form-control {
  font-family: 'Montserrat', sans-serif; 
  color: var(--text-blue-color);
  font-size: 14px;
  border: solid 1px #D5D5D5;
  margin-bottom: 28px;
}
/*.profile-info-block .form-control, .profile-info-block select.form-control:not([size]):not([multiple]) {
  padding: 10px 0 10px 16px;
}*/
.profile-info-block .form-group 
.profile-info-block select.form-control:not([size]):not([multiple]) {
  height: 63px;
}
.profile-info-block .profile-two-block .form-group label {
  font-size: 16px;
  color: var(--text-black-color);
  margin-bottom: 15px;
}
.profile-info-block .profile-two-block .form-group .form-control {
  font-family: 'Montserrat', sans-serif; 
  color: var(--text-black-color);
  font-size: 14px;
  border: solid 1px #D5D5D5;
  margin-bottom: 40px;
  padding: 23px 0 103px 30px;
  margin-bottom: 0;
}
.social-profile-block {
	/* padding: 30px; */
	background-color: var(--background-white-bg-color);
	margin-bottom: 35px;
	padding-left: 20px;
}
.social-profile-heading {
  font-size: 22px;
  color: var(--text-black-color);
  padding-bottom: 16px;
  border-bottom: 1px solid #C4C4C4;
  margin-bottom: 22px;
}
.social-profile-block .social-block .form-group label {
  font-size: 16px;
  color: var(--text-black-color);
  margin-bottom: 10px;
}
.social-profile-block .social-block .form-group .form-control {
  font-family: 'Montserrat', sans-serif; 
  color: #717983;
  font-size: 14px;
  border: solid 1px #D5D5D5;
}
/*.social-profile-block .form-control, 
.social-profile-block select.form-control:not([size]):not([multiple]) {
  border-radius: 0;
  padding: 20px 0 20px 30px;
}*/
.social-profile-block .form-group 
.social-profile-block select.form-control:not([size]):not([multiple]) {
  height: 63px;
}
/*.social-profile-block .profile-update-icon {
  padding: 10px 0;
}*/
.social-profile-block .form-group {
  margin-bottom: 0; 
}
.profile-item-block .profile-update-icon i {
  width: 40px;
  height: 40px;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  color: var(--text-white-color);
  line-height: 1.8;
}
.profile-info-block .profile-block .form-group .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #717983;
  opacity: 1; /* Firefox */
}

.profile-info-block .form-group select.form-control:not([size]):not([multiple]) {
    height: 48px;
}
.profile-info-block .select2-container .select2-selection--single {
  padding: 8px 8px;
  height: 48px !important;
  border: solid 1px #D5D5D5 !important;
}
.profile-info-block .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
}
/*@media (max-width: 576px) {
  .profile-item-block {
    padding: 100px 0 90px;
    background-color: #F6F7FC;
  }
}*/

.avatar-preview {
  width: 92px;
  height: 92px;
  position: relative;
  border-radius: 100%;
  border: 4px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
.avatar-preview-img  {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.avatar-upload {
  position: relative;
  /*max-width: 205px;*/
  /*margin: 0px auto;*/
}
.avatar-edit {
	position: absolute;
	right: 55px;
	z-index: 9999999;
	top: 59px;
}
.avatar-edit input {
  display: none;
}
.avatar-edit label {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-bottom: 0;
  border-radius: 100%;
  background-color: #333;
  cursor: pointer;
  font-weight: normal;
  transition: all .2s ease-in-out;
}
/*.avatar-edit:hover {
  background: #f1f1f1;
  border-color: #D6D6D6;
  border-radius: 100%;
}*/
.avatar-edit i {
	color: #fff;
	position: absolute;
	top: 7px;
	left: 3px;
	right: 0;
	text-align: center;
	margin: auto;
}
.profile-block .card-body table {
  margin-bottom: 0;
}
.dropdown-user-circle {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  margin-right: 5px;
  vertical-align: bottom;
}
.user-detailss {
  display: inline-block;
}
ul {
  margin-bottom: 0;
}
.nav-search form {
  margin-bottom: 0;
}
/*.view-img img {
  min-height: 150px;
  max-height: 150px;
  object-fit: cover;
  width: 100%;
}*/
/*.view-img a img {
  min-height: 200px;
  max-height: 150px;
  object-fit: cover;
  width: 100%;
}
.view-img img {
  min-height: 200px;
  max-height: 150px;
  object-fit: cover;
  width: 100%;
}*/
/*.panel-setting-main-block {
  background-color: var(--background-white-bg-color);
  border: 1px solid #CCC;
  border-radius: 4px;
}*/
/*.panel-setting {
  padding: 30px 20px;
  border-bottom: 1px solid #CCC; 
}*/
.question-text {
  padding: 15px;
}
.box-footer .btn-primary {
  padding: 12px 30px;
}
.search-main-block {
  padding: 50px 0;
  color: var(--text-black-color);
}
.search-block-no-result {
  background-color: var(--background-light-grey-bg-color);
}
.content-course-number-one ul {
  margin-bottom: 20px;
}
.remove-coupon .btn-primary {
  background-color: transparent;
  color: var(--text-blue-color);
  font-size: 20px;
  text-align: left;
  padding: 0;
  display: inline-block;
  float: left;
  margin-right: 10px;
}
.coupon-code {
  display: inline-block;
  font-weight: 500;
  margin-top: 6px;
}
.rate s {
  font-size: 14px;
}


/* ================================ */
    /*===== Pro Tip =====*/
/* ================================ */
.protip-skin-default--scheme-pro.protip-container {
  height: auto !important;
  background-color: var(--background-white-bg-color) !important;
  box-shadow: 0 4px 16px rgba(20,23,28,.25)!important;
  padding: 15px !important;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  border-radius: 2px !important;
}
.protip-content {
  border-radius: 2px !important;
  border: none;
  padding: 10px;
}
.protip-skin-default--scheme-pro[data-pt-position="right-top"] .protip-arrow,
.protip-skin-default--scheme-pro[data-pt-position="bottom-right"] .protip-arrow,
.protip-skin-default--scheme-pro[data-pt-position="right"] .protip-arrow {
  border-right-color: var(--text-white-color) !important;
}
.protip-skin-default--scheme-pro[data-pt-position="left-top"] .protip-arrow,
.protip-skin-default--scheme-pro[data-pt-position="bottom-left"] .protip-arrow,
.protip-skin-default--scheme-pro[data-pt-position="left"] .protip-arrow {
  border-left-color: var(--text-white-color) !important;
}
.prime-description-block {
  display: none;
}
.movie-rating {
  color: #CCC;
  margin: 2px 0 1px;
  font-size: 12px;
  display: inline-block;
  font-weight: 700;
}
.protip-content .description-heading,
.prime-description-block .description-heading {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-black-color);
  margin-bottom: 10px;
}
.protip-content .description-heading {
  text-transform: capitalize;
}
.protip-content .description-list,
.prime-description-block .description-list {
  margin-bottom: 10px;
  display: inline-block;
  margin-left: 5px;
  color: var(--text-black-color);
}
.protip-content .description-list li:first-child,
.prime-description-block .description-list li:first-child {
  margin: -5px;
}
.protip-content .description-list li,
.prime-description-block .description-list li {
  display: inline-block !important;
  color: var(--text-dark-grey-color);
  margin: 0 5px;
  font-size: 12px;
  font-weight: 500;
}
.protip-content .main-des,
.prime-description-block .main-des {
  margin-bottom: 20px;
}
/*.view-dtl .rate {
  position: absolute;
  top: 40%;
  right: 5px;
}*/
/*.view-dtl .rate ul {
  background: var(--linear-gradient-bg-color);
  padding: 0 6px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.view-dtl .rate ul li i {
  margin-right: 3px;
}*/
/*.tab-content .view-dtl .rate {
  top: 44%;
  right: 10px;
}*/
.img-wishlist {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -58px;
}
.img-wishlist .protip-wishlist ul li {
  padding: 6px 0;
}
.immi-slider-block {
  margin-right: 5px;
}
.protip-content .main-des p,
.prime-description-block .main-des p {
  font-size: 13px;
  letter-spacing: 0.2px;
  margin: 0;
  line-height: 1.2;
  color: var(--text-black-color);
}
.protip-content .main-des a,
.prime-description-block .main-des a {
  margin-top: 3px;
  font-size: 12px;
}
.protip-content .des-btn-block .btn-default,
.des-btn-block .btn-default {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  background-color: #515151;
  font-weight: 500;
  width: 100%;
  text-align: left;
}
.des-btn-block.des-in-list .btn-default {
  width: auto;
  display: inline-block;
}
.des-btn-block.des-in-list a {
  display: inline-block;
}
.des-btn-block.des-in-list a.btn-play {
  margin-right: 20px !important;
}
.des-btn-block.des-in-list a.btn-default {
  padding: 11px 19px;
  width: auto !important;
  margin: 5px 3px 0;
  font-size: 14px;
}
.btn-sm-play,
.des-in-list.des-btn-block a.btn-play {
  margin: 10px 0;
  font-size: 14px;
}
.btn-sm-play,
.des-in-list.des-btn-block a.btn-default {
  width: 20%;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
}
a.btn-sm-play,
.des-in-list.des-btn-block a.btn-play,
.protip-content .des-btn-block a.btn-play {
  background-color: transparent;
  text-align: left;
  margin-bottom: 10px;
}
.btn-sm-play:hover,
.des-in-list.des-btn-block a.btn-play:hover,
.protip-content .des-btn-block a.btn-play:hover {
  background-color: transparent;
}
.btn-sm-play .play-btn-icon,
.des-in-list.des-btn-block .btn-play .play-btn-icon,
.protip-content .des-btn-block .btn-play .play-btn-icon {
  width: 46px;
  height: 46px;
  font-size: 14px;
}
.des-in-list.des-btn-block .btn-play .play-text,
.protip-content .des-btn-block .btn-play .play-text {
  font-size: 16px;
}
.video-player {
  z-index: -9;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
}
.video-js.movies-js {
  width: 100%;
  height: 100%;
}
.video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  width: 5em !important;
  left: 50% !important;
}
.video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-item {
  margin: 0 !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #000 !important;
  font-size: 13px !important; 
}
.vjs-load-progress,
.vjs-progress-holder.vjs-slider.vjs-slider-horizontal,
.vjs-play-progress.vjs-slider-bar {
  border-radius: 4px !important;
}
.video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-item:hover,
.video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-item.vjs-selected {
  background-color: #48A3C6 !important;
  color: var(--text-white-color) !important;
}
.preview-player-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 70px 0;
}
.video-js.episodes-js,
.playlist-container {
  position: relative;
  min-width: 300px;
  min-height: 150px;
  height: 100%;
}
.video-js.episodes-js {
  height: 550px;
  flex: 3 1 70%;
}

.protip-img {
  margin-bottom: 10px;
}
.about-home-btn form {
  margin-bottom: 0;
}

.protip-btn .btn-primary {
  padding: 10px 0;
  width: 100%;
  border-radius: 1px;
  font-weight: 200;
  font-size: 15px;
}
.protip-btn .btn-secondary {
  padding: 10px 0;
  width: 100%;
  border-radius: 1px;
  font-weight: 200;
  font-size: 15px;
  background: var(--background-blue-bg-color);
  color: var(--text-white-color);
}
.protip-btn .btn-secondary:hover {
  background-color: #003845;
  border: 1px solid #003845;
  color: var(--text-white-color);
}

/*.protip-wishlist ul li {
  display: inline-block;
  padding: 10px 10px 20px 5px;
}*/
/*.protip-wishlist ul li a {
  color: var(--text-white-color);
  font-size: 16px;
}*/
/*.protip-wishlist ul li i {
  font-size: 25px;
  vertical-align: bottom;
}*/
.protip-one i {
  -webkit-text-stroke: 1px var(--text-red-color);
  color: var(--text-black-color);
}
.protip-one i:hover {
  color:var(--text-red-color);
  background-color: transparent;
}

.protip-wishlist ul li {
  display: inline-block;
}
/*.protip-wishlist ul li a {
  color:var(--text-red-color);
  font-size: 16px;
}*/
.protip-wishlist ul li i {
  font-size: 14px;
  vertical-align: bottom;
  padding: 10px;
  border-radius: 50px;
  background: rgb(209,100,26);
  background: linear-gradient(281deg, rgba(209,100,26,1) 0%, rgba(193,40,42,1) 100%);
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 16px;
}
.protip-wishlist span:hover {
  color: #CACBCC;
}
.protip-wish-btn i {
  /*-webkit-text-stroke: 2px var(--text-red-color);*/
  color: #FFF;
  cursor: pointer;
}
.protip-wish-btn i:hover {
  color:var(--text-red-color);
}
.immi-slider-block .protip-wish-btn i {
  opacity: 0;
}
.immi-slider-block:hover .protip-wish-btn i {
  opacity: 1;
}
.genre-slide-image .protip-wish-btn i {
  opacity: 0;
}
.genre-slide-image:hover .protip-wish-btn i {
  opacity: 1
}
.protip-wish-btn-two {
  color:var(--text-red-color);;
  cursor: pointer;
}
.protip-wish-btn-two i {
  color:var(--text-red-color);;
}

input.razorpay-payment-button {
  color: var(--text-white-color);
  background-color: var(--background-red-bg-color);
  padding: 10px 80px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  border-radius: 5px;
}

.no-result-block {
  padding: 50px 0;
  color: var(--text-black-color);
  background-color: var(--background-light-grey-bg-color);
}
.no-result-courses {
  font-size: 16px;
}
.no-result-courses a{
  font-size: 16px;
}

.cart-no-result{
  -webkit-box-shadow: 0 0 2px #DEDFE0;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 300px;
  margin-bottom: 30px;
  padding: 10px;
  text-align: center;
}
.cart-no-result i{
  margin-bottom: 20px;
  font-size: 120px;
  color: #e8e9eb;
}

.invoice-logo {
  width: 150px;
}
.purchase-history-course-img {
  width: 80px;
}
/*.view-heading {
  height: 45px;
}*/
.notification-image img {
  width: 50px;
  height: 40px;
}
.unread-notification {
  background-color: #E8E9EB;
}
.update-password label {
  font-size: 18px;
}
.update-password input {
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
}
.payment-gateways .panel-title img {
  height: 25px;
  width: 80px;
  margin-left: 15px;
}
.answer-block {
  border-bottom: 1px solid #ced4da;
  padding: 8px;
}
.student-feedback .student-feedback-heading {
  margin-bottom: 0;
}
.review-dtl .review-rating {
  margin-bottom: 10px;
}
.helpful form {
  margin-top: 10px;
}
.more-courses .student-view-block {
  margin-bottom: 20px;
}
.instructor-main-block .home-dtl,
.instructor-main-block .home-btn {
  text-align: right;
}
.instructor-main-block .modal {
  text-align: left;
}
.yes-submitted {
  color: #00A65A;
}
.no-rating {
  vertical-align: top;
}
.view-block .heart-two {
  margin-top: -15px;
}
.featured-review-block .review-img-name {
  margin-bottom: 5px;
}
.featured-review-block .featured-review-img-dtl .pull-left {
  /*margin-bottom: 5px;*/
}
.card-body .class-type {
  width: 40px;
}
.card-body .class-name {
  width: 600px;
}
.card-body .class-size {
  width: 150px;
}
/*.business-home-slider-img img {
  width: 480px; 
  height: 240px;
}*/
.rating .pull-left p {
  margin-bottom: 0;
}
.categories-popularity-dtl .rating {
  margin-bottom: 0;
}
.update-password .box1 {
  font-size: 20px;
}
.faq-detail-main-block {
  padding: 40px 30px;
  background-color: #F6F7FC;
}
/*.privacy-policy-block {
  padding: 40px 30px;
  background-color: #F6F7FC;
}*/

/*player css*/
.player-course-chapter {
  background-color:#999999; padding:0px; margin:0px;
}
.player-course-chapter-list {
  position:relative; left:1000px; top:5000px; color: var(--text-white-color)FFF;
}
/* end player css*/

.alert-success {
  text-align:center; z-index: 1; margin-top: 5px;
}
.alert-danger {
  text-align:center; z-index: 1; margin-top: 5px;
}
.class-icon {
  width: 50px;
}
.google a.btn.btn-white {
  background-color: #DB4A39;
  color: var(--text-white-color);
  box-shadow: none;
}
/*.cart-course-detail {
  margin-left: 15px;
}*/
.list-group-item b {
  font-weight: 600;
  font-size: 14px;
}
.available-coupon ul li {
  font-size: 12px;
  margin-bottom: 10px;
  border: 1px dashed var(--text-blue-color);
  padding: 7px;
  text-align: center;
}
/*.class-nav-block {
  padding: 15px 10px 10px;
  background-color: #262424;
  color: var(--text-white-color);
}*/
/*.class-nav-heading {
  font-size: 20px;
  margin-bottom: 10px;
  padding: 10px;
}*/
/*.class-button {
  margin-top: 15px;
  text-align: right;
  justify-content: flex-end;
}
.class-button ul li {
  display: inline-block;
  margin-bottom: 10px
}
.class-button ul li a {
  border: 1px solid #95979a;
  padding: 10px 15px;
  color: #95979a;
}
.class-button ul li a:hover {
  border: 1px solid #FFF;
  padding: 10px 15px;
  color: var(--text-white-color);
}*/
.class-logo {
  display: inline-block;
  float: left;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  padding: 10px 0;
}
.learning-contact-block .section {
  display: inline-block;
  float: left;
  margin-right: 10px;
}
.author-tag {
  display: inline-block;
  margin-left: 10px;
  background-color: #999;
  color: var(--text-white-color);
  padding: 4px 4px 3px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.announsment-text {
  padding: 15px;
}
/*@media (max-width: 567px){
  .class-nav-block .class-nav-heading {
    margin-bottom: 20px;
  }
  .class-button {
    text-align: left;
  }
  .class-nav-block .class-button ul li {
    margin-bottom: 30px
  }
}*/

/* ============================== */
    /*===== Course Quiz  =====*/
/* ============================== */
.quiz-main-block {
  padding: 40px 0;
}
.quiz-main-block .card {
  position: relative;
  margin: .5rem 0 1rem 0;
  background-color: var(--background-white-bg-color);
  box-shadow: 0 0 6px 2px rgba(20,23,28,0.1);
  -webkit-transition: -webkit-box-shadow .25s;
  transition: -webkit-box-shadow .25s;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  border-radius: 2px;
}
.quiz-main-block .card .card-content {
  padding: 14px;
  border-radius: 0 0 2px 2px;
  background-color: var(--background-white-bg-color);
}
.dark-text {
  color: var(--text-light-grey-color);
}
.quiz-main-block .card .card-content .card-title {
  display: block;
  line-height: 32px;
  margin-bottom: 8px;
  font-size: 22px;
}
.quiz-main-block .card .card-content p {
  margin: 0;
  color: var(--text-light-grey-color);
  font-size: 14px;
}
.quiz-main-block .card .card-action:last-child {
  border-radius: 0 0 2px 2px;
}
.quiz-main-block .card .card-action {
  position: relative;
  border-top: 1px solid rgba(160, 160, 160, 0.4);
  padding: 8px 24px;
}
.quiz-main-block .card .card-action a {
  color: var(--text-light-grey-color);
}
.topic-detail {
  margin-top: 13px;
  list-style-type: none;
  -webkit-padding-start: 0;
}
.topic-detail li {
  margin-bottom: 6px;
  position: relative;
  margin-right: -15px;
}
.topic-detail li .fa {
  position: absolute;
  right: 0;
  top: 3.5px;
  color: #424242;
}
.result-table {
  margin: 40px 0;
}
.question-block-tabs {
  padding: 20px 0;
}
.question-block-tabs .tab-content {
  padding: 20px 0;
}
.main-block-heading {
  font-size: 40px;
  text-transform: uppercase;
}
.quiz-main-block-two {
  padding: 25px 50px;
  background-color: var(--background-grey-bg-color);
}
 .btn_block {
  margin-top: 50px;
  text-align: center;
  margin-left: -15px;
}
.btn_block .btn {
  padding: 10px 50px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}
#question_block {
  padding: 10px 0 10px;
}
.question {
  margin-bottom: 15px;
}
.myQuestion {
  display: none;
}
.myQuestion.active {
  display: block;
}
.myQuestion blockquote {
  margin: 20px 0 32px;
}
.myQuestion form {
  margin-left: 5px;
}
.myQuestion input {
  margin-bottom: 15px;
}
.myQuestion span:nth-child(odd) {
  color: black;
}
.myQuestion span {
  font-size: 16px;
  margin-left: 5px;
}
.myQuestion .btn-block {
  margin: 25px 20px 0 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  padding: 4px 0;
}
.myQuestion .code {
  background-color: #f1f1f1;
  padding: 12px;
}
#clock span {
  margin-top: 4px;
  color: var(--text-white-color);
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: 600;
}
/*.quiz-main-block-two .jumbotron {*/
/*  background-color: var(--background-white-bg-color);*/
/*  box-shadow: 0 2px 8px 2px rgba(20,23,28,0.2); */
/*}*/
.quiz-main-block-two .jumbotron label {
  display: block;
  margin-bottom: 10px;
}
.quiz-main-block-two input[type="radio"] {
  margin-right: 10px;
}
.finish-main-block{
  padding: 40px 0;
  background-color: #F7F7F7; 
}
.finish-main-block table {
  background-color: var(--background-white-bg-color);
}

.learning-quiz-null {
  padding: 90px 300px;
}
@media (max-width: 992px){
  .quiz-main-block-two {
    padding: 50px 0;
  }
  .learning-quiz-null {
    padding: 90px 50px;
  }
  .small-screen-dashboard li i {
    margin-right: 10px;
  }
}

#cboxTitle {
  display: none !important;
}
.download-logo {
  margin-top: 50px;
  width: 100px;
}
.quiz-nav-bar-block {
  background: var(--background-black-bg-color);
  color: var(--text-white-color);
  padding: 20px 0;
}
.quiz-nav-bar-block .heading {
  color: var(--text-white-color);
  margin-bottom: 0;
}

.course-cirtificate {
  padding: 60px 0;
  background-color: var(--background-grey-bg-color);
}
.recipient-block {
  background-color: var(--background-white-bg-color);
  padding: 10px;
  margin-bottom: 20px;
}
.img-circle {
  border-radius: 100%;
}
.download-btn .btn-secondary {
  color: var(--text-blue-color);
  border: 1px solid var(--text-blue-color);
  width: 100%;
}
.download-btn .btn-secondary:hover {
  color: #003845;
  border: 1px solid #003845;
}

.cirtificate-border-one { 
  font-family: "Times New Roman", Times, serif; 
  border: 15px groove var(--text-blue-color); 
  padding:20px;
  background-color: var(--background-white-bg-color);

}
.cirtificate-border-two {  
  border: 5px double var(--text-blue-color);
  padding:20px;
}
.cirtificate-heading {
  font-size:50px; 
  font-weight:bold;
  font-style: italic;
  margin-bottom: 20px;
}
.cirtificate-detail {
  margin-bottom: 20px;
  font-size: 30px;
}
.cirtificate-instructor {
  font-family: 'Great Vibes', cursive;
  font-size: 20px;
  /*border: 1px solid #000;*/
  margin: 0 auto;
  text-align: center;
}
.cirtificate-logo img {
  width: 150px;
}

.protip-whatlearn ul li {
  margin-bottom: 10px;
  margin-left: 20px;
  color: var(--text-dark-grey-color);
  font-size: 13px;
}
.protip-whatlearn i {
  margin-right: 20px;
  color: var(--text-dark-grey-color);
  font-size: 10px;
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
  margin-right: .5em;
  text-indent: .5em;
  text-align: right;
  direction: rtl;
}

/*.course-duration {*/
/*  color: var(--text-dark-grey-color);*/
/*  font-size: 14px;*/
/*}*/
.device-btn {
  display: inline-block;
}
.device-btn .btn-primary {
  padding: 15px 25px;
}
.rating p {
  margin-bottom: 0;
}
.finish-btn .btn-secondary {
  padding: 20px 25px;
  font-size: 15px;
}
.live-class {
  color:var(--text-red-color);;
  font-size: 14px;
  display: inline-block;
}
.meeting-owner {
  text-transform: lowercase;;
}
.amazon-button .btn-info {
  color: #000;
  background-color: #FF9900;
  border: 1px solid #FF9900;
}
.amazon-button .btn-info:hover {
  color: #000;
  background-color: #FF9900;
  border: 1px solid #FF9900;
}

.course-check-table .table td, 
.course-check-table .table th {
  padding: none;
  vertical-align: top;
  border-top: none;
}

.progress-block .bar-block {
	margin-right: 10px;
	color: black;
	display: block;
	float: left;
	/* width: 100%; */
	background-color: #EEE;
	position: relative;
	margin-bottom: 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #D0D0D0;
	box-shadow: 0px 0px 3px #c1c1c1 inset;
}
.progress-block .bar {
  padding: 2px;
  display: block;
  height: 14px;
}
.progress-block .histo-rate {
  clear: both;
  width: 100%;
}
.progress-block .fa-trophy {
	font-size: 26px;
	margin-left: 14px;
}
.profile-block .table {
  margin-bottom: 0 !important; 
}
.course-check-table .table td, 
.course-check-table .table th {
  padding: 12px 12px 12px 5px;
  vertical-align: top;
  border-top: none;
}
.mycourse-progress .progress {
  height: 6px;
}
.mark-read-button .btn-primary {
  padding: 10px;
}
.assignment-main-block {
  padding: 40px 0;
}


.assignment-main-block .wrapper {
  text-align: -webkit-center;
}
.assignment-main-block .wrapper .file-upload {
  height:100px;
  width:100px;
  border-radius: 100px;
  position:relative;
  display:flex;
  justify-content:center;
  align-items: center;
  border:4px solid #FFFFFF;
  overflow:hidden;
  background-image: linear-gradient(to bottom, var(--background-red-bg-color) 50%, #FFFFFF 50%);
  background-size: 100% 200%;
  transition: all 1s;
  color: var(--text-white-color);
  font-size:100px;
}
.assignment-main-block .wrapper input[type='file'] {
  height:100px;
  width:100px;
  position:absolute;
  top:0;
  left:0;
  opacity:0;
  cursor:pointer;
}
.assignment-main-block .wrapper :hover{
  background-position: 0 -100%;
  color:#2590EB;
}
.assignment-main-block .wrapper i {
  font-size: 30px;
}
.assign-tab-one ul li {
  display: block;
  font-size: 13px ;
  color: #4A4A4A;
}
.assignment-tab-block .categories-block i {
  margin-right: 5px;
  font-size: 14px;
}

/* ============================== */
    /*===== instructor-profile  =====*/
/* ============================== */
.instructor-profile .instructor-block {
  font-weight: 600;
}
.instructor-profile .instructor-small-heading {
  font-size: 14px;
  color: #73726C;
  text-transform: uppercase;
  font-weight: 900;
}
.instructor-profile .instructor-block h1 {
  font-weight: 800;
  color: #3C3B37;
  font-family: 'roboto', sans-serif;
  margin-bottom: 0;
}
.instructor-profile .instructor-block .sub-heading {
  font-size: 16px;
  color: #3C3B37;
  padding: 8px 0;
}
.instructor-profile .instructor-business-block {
  margin-top: 24px;
  display: flex;
}
.instructor-profile .instructor-student {
  margin-right: 24px;
}
.instructor-profile .total-students {
  color: #73726C;
  margin-bottom: 8px;
  font-size: 14px;
}
.instructor-profile .total-number {
  font-size: 24px;
}
.instructor-profile .about-instructor .heading {
  padding: 48px 0 16px;
  font-size: 19px;
  font-weight: 700;
}
.instructor-profile .about-instructor-dtl {
  font-size: 16px;
  color: #3C3B37;
}
.instructor-profile .instructor-img {
  margin-bottom: 30px;
  text-align: center;
}
.instructor-profile .instructor-img img {
  border-radius: 50%;
}
.instructor-profile .instructor-link ul {
    display: flex;
    flex-direction: column;
    width: 200px;
    margin: 0 auto;
}
.instructor-profile .instructor-link ul li {
  text-align: center;
  border: 1px solid #DCDACB;;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 10px 0;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.instructor-profile .instructor-link ul li:hover {
  border: 1px solid #C3C0A6;
}
.instructor-profile .instructor-link ul li i {
  margin-right: 10px;
}
.instructor-profile .moretext {
  display: none;
}
.instructor-profile .about-instructor {
  margin-bottom: 20px;
}
.instructor-profile .about-instructor p {
  font-weight: 400;
  font-size: 16px;
}
.instructor-profile .instructor-main-block .section {
  margin-bottom: 30px;
}
.instructor-profile .moretext ul li {
  font-weight: 400;
}
.instructor-profile .instructor-block .moreless-button {
  font-size: 14px;
}
.instructor-profile .article {
  overflow: visible;
  max-height: none !important;
  /*-webkit-mask-image: linear-gradient(#fff, #fff, rgba(255,255,255,0));*/
}
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 96%;
  }
}
@media (max-width: 576px) {
  .instructor-profile .instructor-link ul li {
    width: 100%;
  }
}


/* ============================== */
    /*===== Responsive  =====*/
/* ============================== */
@media (min-width: 992px) and (max-width: 1199px) {
  /*.nav-search .form-control {
    width: 174px;
  }*/
  .nav-search form {
    margin-left: 20px;
  }
 /* .nav-bar-main-block .logo a img {
    width: 85px;
    padding: 10px 0;
  }*/
}
@media (min-width: 576px) and (max-width: 767px) {
  .learning-courses-home-video .btn-video-play i {
    top: 107%;
    left: 6%;
  }
}
/*@media (min-width: 476px) and (max-width: 576px) {
  nav {
    margin-left: -10px;
  }
  .nav-tabs {
    width: 542px;
  }
  .learning-courses-about-main-block .nav-tabs .nav-item.show .nav-link,
  .learning-courses-about-main-block .nav-tabs .nav-link {
    width: 16%;
  }
}*/
@media (max-width: 450px) {
/*  .learning-courses-about-main-block .nav-tabs .nav-item.show .nav-link,
  .learning-courses-about-main-block .nav-tabs .nav-link {
    width: 33%;
  }*/
  .profile-heading-one {
    margin-left: 5px;
  }
  .profile-heading-two {
    font-size: 11px;
  }
  .progress-block .histo-rate {
    width: 88%;
  }
}

.instructor-profile .student-view-block {
  margin-bottom: 20px;
}
.instructor-profile .about-instructor ul li i {
  margin-right: 0;
}
.linkedin-button .btn-info {
  color: var(--text-white-color);
  background-color: #0E76A8;
  border: 1px solid #0E76A8;
}
.linkedin-button .btn-info:hover {
  color: var(--text-white-color);
  background-color: #084461;
  border: 1px solid #084461;
}
.twitter-button .btn-info {
  color: var(--text-white-color);
  background-color: #1bb2e9;
  border: 1px solid #1bb2e9;
}
.twitter-button .btn-info:hover {
  color: var(--text-white-color);
  background-color: #1B8EB8;
  border: 1px solid #1B8EB8;
}
.certificate-button .btn-secondary {
  padding: 8px;
  border-radius: 0;
  background-color: transparent;
  color: #95979a;
  border: 1px solid #95979a;
}
.certificate-button .btn-secondary:hover {
  border-radius: 0;
  color: var(--text-white-color);
  border: 1px solid #FFF;
}
.btn-secondary:not(:disabled):not(.disabled).active, 
.btn-secondary:not(:disabled):not(.disabled):active, 
.show>.btn-secondary.dropdown-toggle {
  color: #95979a;
  background-color: #262424;
  border-color: #95979a;
  border-radius: 0;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus, 
.btn-secondary:not(:disabled):not(.disabled):active:focus, 
.show>.btn-secondary.dropdown-toggle:focus {
  box-shadow: none;
}
.certificate-button .dropdown-menu {
  padding: 0 0;
}
.certificate-button .about-home-btn .btn-secondary {
  font-size: 14px;
  border: 1px solid var(--text-blue-color);
}
.certificate-button .about-home-btn .btn-secondary {
  font-size: 14px;
  border: 1px solid #003845;
}


/* ============================== */
    /*===== Promo Bar  =====*/
/* ============================== */
#promo-outer{
  width: 100%;
  height: auto;
  background: var(--background-blue-bg-color);
  box-shadow: 0 5px 10px gray(#505050, 15%);
  display: block;
}
#promo-inner {
  color: var(--text-white-color);
  text-align: center;
  line-height: 25px;
  padding: 10px 5px 15px;
}
#promo-inner a {
  color: var(--text-white-color);
  text-align: center;
  text-decoration: underline; 
}
#close {
  float: right;
  padding-right: 20px;
  color: var(--text-white-color);
  font-weight: bolder;
  cursor: pointer;
}
#promo-tab {
  background: gray;
  color: #505050;
  padding: 10px 20px;
  text-align: center;
  font-weight: bolder;
  position: fixed;
  top: 0;
  right: 10px;
  border: 1px solid darken(gray, 10%);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  cursor: pointer;
}

.koh-faqs-page-title {
  font-size: 30px;
  color: #04202E;
  font-weight: 700;
}
.koh-faq-question-span {
  font-size: 14px !important;
  color: var(--text-blue-color) !important;
  display: inline-block;
}
.koh-faq-answer {
  color: var(--text-black-color);
  font-weight: 400;
  display: none;
}
.koh-tab-content .icon {
  font-size: 10px;
  padding-right: 5px;
}
.koh-tab-content .fa {
  font-size: 14px;
  color: var(--text-blue-color) !important;
  margin-left: 7px;
  vertical-align: top;
}
.koh-tab-content .fa.active {
  transform: rotateZ(180deg);
  vertical-align: text-bottom;
}

.koh-faq-answer {
  background-color: transparent !important;
}


.nav-bar-main-block .logo .img-fluid {
  max-width: 100%;
/*  height: 51px;*/
  object-fit: scale-down;
  width: auto;
}
.nav-wishlist .fa-search {
  color:var(--text-red-color);;
  -webkit-text-stroke: 1px transparent;
  padding: 13px 13px 12px;
}
.Login-btn .nav-wishlist {
  margin-right: 30px;
}

/*-------------------------------*/
/*       search         */
/*-------------------------------*/
#find {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999999;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
}
#find.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}
#find input[type="find"] {
  position: absolute;
  top: 50%;
  left: 28%;
  width: 100%;
  color: rgb(255, 255, 255);
  background: rgba(0, 0, 0, 0);
  font-size: 20px;
  font-weight: 300;
  border: 0px;
  margin: 0px auto;
  outline: none;
  width: 600px;
  text-align: center;
}
#find .btn {
  position: absolute;
  top: 60%;
  left: 0%;
  right: 0;
  margin: 0 auto;
  color: #444;
  background: #F2F2F2;
}
#find .close {
  position: fixed;
  top: 15px;
  right: 45px;
  color: var(--text-white-color);
  opacity: 0.7;
  padding: 10px 1px;
  font-size: 40px;
  z-index: 99999;
  font-weight: 400;
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
}
.appointment-main-block {
  padding: 40px 0;
}
.appointment-main-block ul li a{
  font-size: 13px;
  color: var(--text-blue-color);
  font-weight: 400;
}

.categories-dtl {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
.categories-heading a {
  margin-right: 10px;
}
.categories-subheading a {
  font-weight: 800;
  font-size: 20px;
}
.programmer {
  font-size: 15px;
  font-weight: 600;
}
/*-------------------------------*/
    /*     side navigation humburger   */
    /*-------------------------------*/
    /*-------------------------------*/
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  overflow-x: hidden;
  transition: 0.5s;
  box-shadow: 0 2px 8px 2px rgba(20,23,28,0.2);
  background: #2f2f2f;
}
.sidenav a {
  text-decoration: none;
  transition: 0.3s;
  display: block;
  padding: 10px 15px;
  color: var(--text-white-color);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
}
/*.sidenav a:hover {
  color: var(--text-white-color);
}*/
.sidenav .closebtn {
  position: absolute;
  top: 3px;
  right: 11px;
  font-size: 32px;
  color: var(--text-white-color);
  line-height: 1;
  padding: 0;
  font-weight: normal;
}
/*@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}*/
@media (min-width: 993px) {
  .fullscreen-search-block {
    display: none;
  }
}
@media (max-width: 992px) {
 
  #find input[type="find"] {
    text-align: center;  
    left: 0;
    right: 0;
    width: 100%;
  }
  .hamburger {
    left: 20px;
  }
/*  .shopping-cart {
    float: right;
    right: 15px;
    display: inline-flex;
  }*/
  .nav-search.nav-wishlist {
    float: right;
    display: inline-flex;
  }
  #notification_li span {
    left: 8px;
  }
  #notificationContainer {
    top: 41px;
    left: -147px;
  }
  #notificationContainerr {
    top: 41px;
    left: -147px;
    width: 290px;
  }
  #notificationContainerr:before {
    border-color: transparent transparent var(--text-black-color);
    margin-left: 141px;
  }

  /* ...................    */
  .fullscreen-search-block .btn-secondary,
  .fullscreen-search-block .btn-primary {
    text-align: left;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-white-color);
  }
  .fullscreen-search-block .btn-secondary:hover,
  .fullscreen-search-block .btn-primary:hover {
    color: #ffc39c;
    background: transparent;
    border: 1px solid transparent;
  }
  .sub-cat {
    padding: 5px 20px;
    font-size: 12px;
  }
  .learning-business {
    margin-bottom: 0;
  }
  .learning-business a {
    text-align: left;
  }
  .notification-after {
    left: 109px;
  }
  .my-container {
    justify-content: left;
  }
  .learning-business .btn-link {
    padding: 8px 8px 8px 20px;
  }
  .shopping-cart i {
    padding: 6px 0px 6px 10px;
  }
  .my-dropdown {
    width: auto;
    margin-left: 15px;
  }
  #notificationTitle  {
    padding: 14px 0;
  }
  #notificationFooter {
    text-align: left;
    background: transparent;
    padding: 0 0px;
    border-top: 0;
  }
  .dropdown-menu-right {
    width: 240px;
  }
.sidenav .login-block {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	background: rgb(209,100,26);
	background: linear-gradient(281deg, rgba(209,100,26,1) 0%, rgba(193,40,42,1) 100%);
}
.sidenav .login-block a.btn.btn-primary {
	border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.sidenav .login-block a.btn {
	width: 50%;
	box-sizing: border-box;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	border-radius: 0 !important;
}
  .fullscreen-search-block .logo {
    text-align: center;
    display: inline-flex;
  }
  .fullscreen-search-block .nav-bar-main-block .logo .img-fluid {
    height: 30px;
    margin-top: -10px;
  }
  /*.nav-bar-main-block .wrapper .panel-title a[aria-expanded="false"]:after {
    position: absolute;
    content: "\f107";
    font-family: fontawesome;
    right: 15px;
    color: var(--text-blue-color);
    text-align: center;
    font-size: 20px;
    line-height: 23px;
  }
  .nav-bar-main-block .wrapper .panel-title a[aria-expanded="true"]:after {
    position: absolute;
    content: "\f106";
    font-family: fontawesome;
    right: 15px;
    color: var(--text-blue-color);
    text-align: center;
    font-size: 20px;
    line-height: 16px;
  }*/
  /*.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    display: none;
  }*/
  /* ...................    */
  .smallscreen-search-block {
    display: none;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .width-30 {
    width: 16%;
  }
  .learning-courses .nav-link {
    padding: 10px 0;
  }
}
@media (max-width: 576px) {
  .width-30 {
    width: 30%;
  }
}
.wrapper{
  width:100%;
  margin-bottom: 10px;
  padding-bottom: 3px;
}
.nav-bar-main-block .panel-heading {
  padding: 0;
  border:0;
}
.nav-bar-main-block .panel-title>a, 
.nav-bar-main-block .panel-title>a:active{
  display: block;
  padding: 10px 15px;
  color: var(--text-white-color);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
}
.nav-bar-main-block .panel-title {
  margin-bottom: 0;
}
.course-cirtificate .rate,
.about-instructor .rate,
.about-product-main-block .student-view-block .rate {
  right: 22px;
}
.about-instructor .rate ul li {
  margin-bottom: 0;
}

/*start css toggle products section products grid-view*/
.view{
  /*text-align: right;*/
  padding: 5px;
  margin-bottom: 20px;
}
.view i{
  cursor:pointer;
  font-size: 22px;
}
.view i.selected{
  color: var(--text-blue-color);
}
.prod{
  margin:20px auto;
  overflow: hidden;
}
.prod.grid-view .item{
  width: 32%;
  float:left;
  background-color: transparent;
  padding:10px;
  box-shadow: 0 0 1px 1px rgba(20,23,28,0.1), 0 3px 1px 0 rgba(20,23,28,0.1);
  margin-bottom: 20px;
  margin-right: 5px;
  margin-left: 5px;
}
.prod.grid-view .item h3{
  color: #615E5E;
  margin:0;
}
.prod.grid-view .item .date{
  color: #888;
  font-size: 12px;
  padding: 2px 0;
  display:block
}
.prod.grid-view .item img{
  background-color: var(--background-white-bg-color);
  padding: 2px;
  height: 150px;
  width: 100%;
}
.prod.grid-view p{
  color:#333;
}

.prod .best-seller-one {
  position: relative;
  top: -180px;
}

/*start css toggle products section products list-view*/
.prod.list-view .item{
  background-color: var(--background-white-bg-color);
  position: relative;
  overflow: hidden;
  min-height:100px;
  margin:5px 5px 20px 5px;
  box-shadow: 0 0 1px 1px rgba(20,23,28,0.1), 0 3px 1px 0 rgba(20,23,28,0.1);
}
.prod.list-view .item h3{
  color: #615E5E;
  margin:0;
  position:absolute;
  left:220px;
}
.prod.list-view .item .date{
  color: #888;
  font-size: 12px;
  padding: 2px 0;
  position:absolute;
  left:220px;
  bottom: 70px;
}
.prod.list-view .item img{
  background-color: var(--background-white-bg-color);
  width: 200px;
  height: 150px;
}
.prod.list-view p{
  color:#333;
  padding:10px 0;
  margin:0;
  left:220px;
  top: 40px;
}
.prod.list-view .view-heading {
  color:#333;
  position:absolute;
  padding:10px 0;
  margin:0;
  left:220px;
  top: 10px;
}
.prod.list-view .categories-popularity-dtl {
  color:#333;
  position:absolute;
  padding:10px 0;
  margin:0;
  left:220px;
  top: 30px;
}
.prod.list-view .rate-grid {
  position:absolute;
  padding:10px 0;
  margin:0;
  left:220px;
  top: 100px;
}
.prod.list-view .rate-grid ul {
  display: inline-block;
}

@media (max-width: 576px){
  .prod.grid-view .item {
     width: 100%; 
  }
}

@media (min-width: 567px) and (max-width: 992px){
  .prod.grid-view .item {
     width: 47%; 
  }
}

/*.sidebar-nav-icon ul a li {
  color: var(--text-dark-grey-color);
}*/
.sidebar-nav-icon ul a li i{
  margin-right: 8px;
}
.chapter-total-time {
  text-align: right;
}

.about-home-product .nav-search .form-control {
    padding: 13px 0 13px 21px;
    color: var(--text-black-color);
    border-radius: 0;
    border: none;
    background-color: var(--background-grey-bg-color);
    display: inline-block;
    float: left;
    width: 650px;
}

.about-home-product .nav-search {
  margin-bottom: 20px;
}

@media (max-width: 576px){
  .about-home-product .nav-search .form-control {
    width: 200px;
  }
  .instructor-main-block {
    padding: 30px 0;
  }
}

@media (min-width: 567px) and (max-width: 992px){
  .about-home-product .nav-search .form-control {
    width: 350px;
  }
  .instructor-main-block {
    padding: 30px 0;
  }
}

.review-table .table tr {
  border: none;
}
.money-back-days {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
}
/* ====================================== */
  /*======== Refund History  ========*/
/* ===================================== */
.refund-main-block {
  padding: 60px 0;
}
.profile-block .second-accordion .card-header button.btn {
  padding: 0 5px !important;
}


.ip-block-main-block {
  padding: 70px 0;
}
.progress-block .bar-clr {
  background-color: var(--background-red-bg-color);
}
.assignment-delete-block form {
  margin-bottom: 0;
  display: inline-block;
}
.assignment-tab-block table {
  width: 100%;
}
.assignment-tab-block .categories-block {
  padding: 10px 10px 10px;
}

.assign-remove-btn {
  border: none;
  background-color: transparent;
  font-size: 13px;
  color: var(--text-blue-color);
  font-weight: 400;
  padding: 0;
  cursor: pointer;
}
.assign-remove-btn i {
  font-size: 5px;
}
.assignment-tab-block i.fas.fa-trash-alt {
  font-size: 14px;
  color: #14171C;
}
.about-home-dtl-training .nav-search .btn-primary {
  background: var(--background-blue-bg-color);
  color: var(--text-white-color); 
}
/* ====================================== */
  /*======== Style changes  ========*/
/* ===================================== */
#find input[type="find"] {
  left: 0;
  right: 0;
}
#find .btn {
  background: var(--background-red-bg-color);
  border: 1px solid var(--text-red-color);
  color: var(--text-white-color);
  padding: 15px 30px;
}
.categories-tab-dtl:hover {
  background: var(--background-mehroon-bg-color);
}
#find .btn:hover {
  background: var(--background-mehroon-bg-color);
  border: 1px solid var(--background-mehroon-bg-color);
}
.categories-tab-block i {
  -webkit-text-stroke: 1px var(--text-white-color);
}
.categories-tab-block a {
    color: var(--text-white-color);
}
.view-button .btn-secondary {
  padding: 2px 10px;
}
.categories-tab-main-block {
  background: var(--linear-gradient-reverse-bg-color);
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
	border-radius: 50px;
	font-size: 16px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin: 0px 5px;
	/* border: 1px solid #DEDFE0; */
}
/*.student-main-block .owl-carousel .owl-nav button.owl-prev, .student-main-block .owl-carousel .owl-nav button.owl-next {
  top: 51%;
}*/
/*.owl-carousel .owl-nav button.owl-next {
  margin-left: 99%;
}
.owl-carousel .owl-nav button.owl-prev {
  margin-left: -21px;
}*/
.learning-work-icon {
  margin-bottom: 10px;
}
.footer-main-block {
	background: #f1f3f9;
	padding-top: 60px;

}
.footer-main-block hr {
  border-top: 1px solid #686F7A;
}
.copyright-social a,
.logo-footer ul li,
.footer-link a,
.widget {
  color: var(--text-white-color);
}
.copyright-social a:hover,
.footer-link a:hover {
  opacity: 0.7;
}
.together-img .heart {
  opacity: 0;
  -webkit-text-stroke: 2px var(--text-red-color);
}
.together-img .heart i {
   color: transparent;
   font-size: 25px;
   -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease; 
}
.together-img .heart:hover i {
   color:var(--text-red-color);;
}
.together-img:hover .heart {
  opacity: 1;
}

.testimonial-main-block {
  background-color: var(--background-white-bg-color);
}
/*.testimonial-block {
  background-color: var(--background-grey-bg-color);
  border-radius: 10px;
}*/
/*.testimonial-block p {
  color: var(--text-dark-grey-color);
}*/
.product-learn-dtl [class^="flaticon-"]:before, 
.product-learn-dtl [class*=" flaticon-"]:before,
.product-learn-dtl [class^="flaticon-"]:after, 
.product-learn-dtl [class*=" flaticon-"]:after {
  font-size: 16px;
  margin-left: 0;
  margin-right: -5px;
}
.blog-slider-block {
  /*padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px #DEDFE0;
  margin: 30px 20px 30px 20px;*/
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/*.blog-slider-block:hover{
  box-shadow: 0 4px 20px #DEDFE0;
}*/

.footer-dropdown .a {
  color: var(--text-white-color);
  border: 1px solid #FFF;
}
/*.blog-main-block .owl-carousel .owl-nav button.owl-prev {
  margin-left: 0 !important;
}*/
/*.blog-main-block .owl-carousel .owl-nav button.owl-next {
    margin-left: 96.8% !important;
}*/





.about-transforming-main-block .nav-tabs {
  display: none;
}
.about-transforming-main-block .tab-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .about-transforming-main-block .nav-tabs {
    display: flex;
    flex-flow: column nowrap;
  }
  .about-transforming-main-block .nav-tabs {
    border-bottom: none;
    border-right: 1px solid #ddd;
    display: flex;
  }
  .about-transforming-main-block .nav-tabs {
    margin: 0 15px;
  }
  .about-transforming-main-block .nav-tabs .nav-item + .nav-item {
    margin-top: 0.25rem;
  }
  .about-transforming-main-block .nav-tabs .nav-link {
    transition: border-color 0.125s ease-in;
    white-space: nowrap;
  }
  .about-transforming-main-block .nav-tabs .nav-link:hover {
    background-color: #f7f7f7;
    border-color: transparent;
  }
  .about-transforming-main-block .nav-tabs .nav-link.active {
    border-bottom-color: #ddd;
    border-right-color: var(--text-white-color);
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
    margin-right: -1px;
  }
  .about-transforming-main-block .card {
    border: none;
  }
  .about-transforming-main-block .card .card-header {
    display: none;
  }
  .about-transforming-main-block .card .collapse {
    display: block;
  }
}

@media (max-width: 767px) {
  .about-transforming-main-block .tab-pane {
    display: block !important;
    opacity: 1;
  }
}

.student-main-block .owl-carousel .owl-nav.disabled {
  display: block;
}


.search-main-block #accordion .card-header:after {
    font-family: 'FontAwesome';  
    content: " \f0d8"; /*f068*/
    float: right; 
}
.search-main-block #accordion .card-header.collapsed:after {
    content: " \f0d7"; /*f067*/
}


.categories-tags {
  background-color: var(--background-white-bg-color);
  margin-bottom: 20px;
}
.categories-tags-heading {
  color: #251AFF;
  font-size: 22px;
  border: 1px solid #E8E8E8;
  padding: 16px 0 16px 34px;
  font-weight: 500;
}
.categories-content {
  padding: 39px 38px 19px 35px;
}
.categories-tags-content {
  display: inline-block;
  float: left;
}
.categories-tags-content ul li {
  font-size: 14px;
  margin-bottom: 30px;
  color: #7A7A7A;
  font-weight: 400;
}
.categories-tags-content ul li a {
  color: #7A7A7A;
}
.categories-tags-content ul li.active a {
  color: var(--text-black-color);
  font-weight: 500;
}
.categories-tags-count {
  text-align: right;
}
.categories-tags-count ul li {
  margin-bottom: 30px;
  font-size: 14px;
  color: #7A7A7A;
}
.categories-tags-count ul li a {
  color: #7A7A7A;
  font-weight: 400;
}
.categories-tags-count ul li.active a {
  color: var(--text-black-color);
}
.categories-tags-count ul li.active {
  color: var(--text-black-color);
}

.search-main-block input[type=checkbox] {
  width: 16px;
  height: 16px;
  background-color: var(--background-white-bg-color);
  border: #7f83a2 1px solid;
}
.search-main-block input[type="checkbox"] {
  visibility: hidden;
}
.search-main-block label {
  cursor: pointer;
}
.search-main-block input[type="checkbox"] + label:before {
  border: solid 1px #d7d7d7;
  content: "\00a0";
  display: inline-block;
  font: 16px/1em sans-serif;
  height: 16px;
  margin: 0 .25em 0 0;
  padding: 0;
  width: 16px;
  margin-right: 15px;
}
.search-main-block input[type="checkbox"]:checked + label:before {
  background: #0000ff;
  color: #0000ff;
  content: "\2713";
  text-align: center;
}
.search-main-block input[type="checkbox"]:checked + label:after {
  font-weight: bold;
}
.search-main-block input[type="checkbox"]:focus + label::before {
  outline: rgb(59, 153, 252) auto 5px;
}
.search-main-block .form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: auto;
  margin-left: -20px;
}
.image-container{
  width:100%;
  position:relative;
}
.image-overlay{
  opacity:0;
  position:absolute;
  color: var(--text-white-color);
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0;
  text-align:center;
  line-height:200px;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  font-size: 18px;
}
.image-overlay{
  opacity:1;
}
.image-overlay i {
  margin-right: 10px;
}
.image-container a img {
 
  min-height: 200px;
  max-height: 150px;
  object-fit: cover;
  width: 100%;
}
@media only screen and (max-width : 767px)     {

 #rc-imageselect, .g-recaptcha {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0; }
}
button.omise-checkout-button {
  color: var(--text-white-color);
  background-color: var(--background-red-bg-color);
  padding: 10px 80px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  border-radius: 5px;
}
/*.about-home-main-block .row {
  width: 100%;
  margin-left: 0px
}*/
.refund-policy-block .btn-secondary {
  padding: 0;
  background-color: transparent;
  color: var(--text-dark-grey-color);
  font-size: 15px; 
  border: 1px solid transparent;
}
.one-topic-detail {
  width: 200px;
}
.two-topic-detail {
  text-align: right;
  margin-right: 10px;
}
.user-bank-block {
  padding: 0px 0;
}
/*.user-bank-button {
  padding: 20px 0px 20px 20px;
}*/
.user-bank-button .btn-primary {
  padding: 7px 25px;
}
.category-filters .card {
  margin-bottom: 20px;
  border: none;
}
.category-filters .card-title {
  font-weight: 500;
  font-size: 17px;
}
.categories-content-one .form-check-label {
  font-size: 16px;
}
.category-filters .card-header {
  background-color: var(--background-white-bg-color); 
}
.confiramtion-logo {
  width: 150px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.confirmation-title {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 35px;
  color: #339959;
}
.confirmation-block {
  background-color: aliceblue;

  padding: 50px 0;
  text-align: center;
}
.confiramtion-border {
  border: 2px solid #686F7A;
  padding: 50px 0;
}
.confirmation-block i {
  font-size: 50px;
  margin-bottom: 10px;
  color: #339959;
}
.wrapper-two .panel-title a[aria-expanded="false"]:after {
  position: absolute;
  content: "\f107";
  font-family: fontawesome;
  right: 15px;
  color: var(--text-dark-grey-color);
  text-align: center;
  font-size: 20px;
  line-height: 23px;
}
.wrapper-two .panel-title a[aria-expanded="true"]:after {
  position: absolute;
  content: "\f106";
  font-family: fontawesome;
  right: 15px;
  color: var(--text-dark-grey-color);
  text-align: center;
  font-size: 20px;
  line-height: 16px;
}
.wrapper-two a{
  font-weight: 400 !important;
  font-size: 16px !important;
  color: var(--text-dark-grey-color) !important;
}
.wrapper-two .sub-cat {
  font-weight: 400 !important;
  font-size: 12px !important;
  color: var(--text-dark-grey-color) !important;
  padding: 5px 20px;
}
.subcate-collapse {
  margin-left: 15px;
}
.limit-dropdown .dropdown-menu {
  min-width: 3rem !important;
  width: 20%;
}
.learning-work-block {
  color: var(--text-white-color);
}
.home-dtl {
  color: var(--text-white-color);
}
.business-home-main-block h1{
  /*color: var(--text-white-color)!important;*/
  margin-bottom: 0;
}
/*.learning-courses {
  color: var(--text-white-color)!important;
}*/
.refund-policy-block .btn-secondary {
  padding: 0;
  background-color: transparent;
  color: var(--text-dark-grey-color);
  font-size: 15px;
  border: 1px solid transparent;
}

.learning-contact-block .btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: unset!important;
}

.view-block .star-ratings-sprite {
  height: 17px !important;
}

.owl-carousel .owl-stage-outer {
  width: 100%;
}

.quiz-tabs .nav-tabs {
  border-bottom: none!important;
}
.g-recaptcha {
    display: inline-block;
}

.nopadding {
   padding-left: 0 !important;
   padding-right: 0 !important;
}

.search {
  position: relative;
  float: left;
  width: 50px;
  height: 0;
  z-index: 100;
}
.search-input-wrap {
  position: absolute;
  height: 60px;
  width: 0;
  -webkit-transition: width 200ms;
  -moz-transition: width 200ms;
  transition: width 200ms;
}
.search.search-open .search-input-wrap {
  transition: all 0.4s ease-out;
}
input[type="submit"].search-submit  {
  width: 60px;
  height: 60px;
  display: block;
  position: absolute;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
}
.icon {
  width: 53px;
  cursor: pointer;
  float: left;
}
.fa.fa-search {
  font-size: 17px;
  color: var(--text-red-color);
  padding: 14px 15px 12px;
  border: 1px solid transparent;
  z-index: 90;
}
.search.search-open .icon {
  background: #F9F9F9;
  border: 1px solid rgba(20,23,28,0.05);
  padding: 0;
}
.search.search-open .fa.fa-search {
  padding: 14px 15px 12px;
  color: var(--text-red-color);
  pointer-events: none;
  z-index: 1;
}
input[type="submit"].search-submit {
  background: transparent;
  color: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  border-radius: 0;
  outline: none;
  z-index: -1;
}
.search.search-open input[type="submit"].search-submit {
  z-index: 90;
}
input[type="text"].search-input {
  border: none;
  outline: none;
  opacity: 0;
  font: 18px;
  background: #F9F9F9;
  height: 50px;
  margin: 0;
  border-left: 2px solid var(--text-red-color);
  width: 0px;
}
.search.search-open input[type="text"].search-input {
  opacity: 1;
  width: 277px;
  font: 18px;
  background: #F9F9F9;
  height: 50px;
  margin: 0;
  padding: 2px 15px;
  margin-left: -277px;
  outline: none;
}

.aamar-pay-btn .btn-primary {
  padding: 10px 80px;
}

.plan-enroll-btn .btn-primary {
  width: 100%;
  padding: 5px 10px;
}







#bar-fixed.stickIt {
  position: fixed;
  top: 5px;
  width: 370px;
  z-index: 999;
}
.instructor-block-ratings ul li {
  display: inline-block;
  margin-bottom: 20px;
}
.instructor-block-ratings ul li i {
  color: var(--text-red-color);
}
.instructor-block p {
  margin-bottom: 0;
}
/*.about-instructor-block .instructor-img img {
  margin-bottom: 10px;
}*/
.instructor-img ul li {
  text-align: center;
}
.instructor-img ul li span {
  font-weight: 600;
}
.home-btn {
  padding: 5px 10px;
  font-size: 13px;
}
.home-search .search {
  width: 100%;
  position: relative;
  display: flex;
}
.home-search .searchTerm {
  width: 40%;
  border: 3px solid var(--text-red-color);
  border-right: none;
  padding: 5px;
  height: 50px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #9DBFAF;
}
.home-search .searchTerm:focus{
  color: #00B4CC;
}
.home-search .searchButton {
  width: 45px;
  height: 50px;
  border: 1px solid var(--text-red-color);
  background: var(--background-red-bg-color);
  text-align: center;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
}
.home-search .searchButton i {
  padding: 12px 6px 12px;
  color: #FFF;
}
@media (max-width: 767px) {
  .nav-bar-main-block-one {
    padding: 20px 0;
  }
  .nav-bar-main-block-one .logo {
    margin-left: 0 !important;
  }
  .nav-bar-main-block-one .logo .img-fluid {
    margin-top: 0 !important;
  }
  /*.logo {
    margin-left: 15px;
    margin-bottom: 0 !important;
    text-align: right !important;
  }*/
  .nav-bar-btn .btn-secondary {
    margin: 0;
    padding: 7px 0;
    font-size: 12px;
  }
 /* .nav-bar-main-block .logo .img-fluid {
    max-width: 100px;
    margin-top: -15px;
    height: inherit;
  }*/
  .Login-btn .btn-primary {
    padding: 8px 20px;
    font-size: 12px;
  }
  .Login-btn .btn-secondary {
    padding: 8px 20px;
    font-size: 12px;
  }
  .Login-btn {
    margin-bottom: 0 !important;
  }
  .nav-bar-btn {
    margin-bottom: 0 !important;
  }
  .signup-block-main-block {
    padding: 20px 0 50px;
  }
  .signup-form i {
    top: 18px;
  }
  #bar-fixed.stickIt {
    position: relative;
    width: inherit;
  }
  .home-search .searchTerm {
    width: 100%;
  }
  .home-main-block {
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .learning-work-icon i {
    margin-left: 0;
    font-size: 35px;
  }
  .learning-courses .nav-link.active {
    padding: 10px;
  }
  .learning-courses .nav-link {
    padding: 10px;
  }
  .view-dtl .rate {
    right: 15px;
  }
  .categories-heading {
    margin-bottom: 40px;
  }
  .footer-dropdown {
    text-align: center;
  }
  .about-home-icon ul li {
    padding: 15px 0;
  }
  .business-home-slider-img {
    margin-right: 0;
  }
  .business-home-slider-main-block .owl-carousel .owl-item .img-fluid {
    height: auto;
    width: 100%;
  }
/*  .categories-main-block-one {
    padding: 0;
  }*/
  .categories-popularity-main-block.category-filters .text-right {
    text-align: left!important;
    margin-bottom: 20px;
  }
  .categories-popularity-main-block.category-filters {
    padding: 30px 0;
  }
  .featured-review-img-dtl {
    padding: 0;
  }
  .review-img-block {
    margin-bottom: 20px;
  }
/*  .blog-block-img {
    margin-right: 0;
    margin-bottom: 20px;
  }*/
  .about-learning-blog-dtl {
    padding: 15px;
  }
  .contact-us-main-block img {
    margin-bottom: 20px;
  }
  .careers-heading {
    font-size: 42px;
  }
  .careers-main-block {
    padding: 0;
  }
  .careers-video-main-block {
    top: 100%;
  }
  .careers-learn-video {
    padding: 0;
  }
  .careers-learn-block {
    padding: 20px;
  }
  .careers-learn-video-one {
    padding: 40px 0;
  }
  .careers-learn-heading {
    font-size: 34px;
    text-align: center;
  }
  .careers-benefits-heading {
    font-size: 40px;
  }
  .careers-benefits-dtl-block {
    height: inherit;
  }
  .join-team-main-block {
    padding: 90px 0;
  }
  .join-team-main-block .faq-block {
    padding: 0;
  }
  .help-search i {
    top: 10%;
  }
  .help-tab {
    height: inherit;
  }
  .help-main-block .btn-primary {
    height: inherit;
  }
  .image-container {
    margin-bottom: 20px;
  }
  .image-overlay {
    line-height: 230px;
  }
  #about-bar-fixed {
    display: none;
  } 
  #about-bar-fixed.stickIt {
    display: none !important;
  }
}



@media (min-width: 767px) and (max-width: 992px) {
  .signup-block-main-block {
    padding: 50px 0 120px;
  }
}

.faq-block .second-accordion .card-body .btn-light{
  color: #FFF!important;
}
#about-bar-fixed {
  display: block;
}
#about-bar-fixed.stickIt {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background: rgb(193,40,42);
  background: linear-gradient(281deg, rgba(193,40,42,0.90) 0%, rgba(209,100,26,0.90) 100%);
  padding: 10px 0;
  width: 100%;
}
#about-bar-fixed.stickIt .about-home-heading {
  font-size: 24px;
  margin-bottom: 5px;
}
#about-bar-fixed ul li {
  display: inline-block;
  margin-right: 10px;
  color: #FFF;
}
.about-home-includes-list 
{ 
  margin-bottom: 0!important;
} 


@media (min-width: 767px) and (max-width: 992px) {
  #bar-fixed.stickIt {
    position: relative;
    width: inherit;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  #bar-fixed.stickIt {
    width: 310px;
  }
}

.modal {
    z-index: 1050!important;
}

.meeting-icon {
  position: absolute;
  text-align: center;
  font-size: 10px;
  top: 6px;
  bottom: 0;
  left: 0;
  /*background-color: #F4C150;*/
  width: 40px;
  height: 15px;
  z-index: 9;
  border-radius: 0 10px 10px 0;
  text-transform: capitalize;
  left: 6px;
}

.vacation-days {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
}

.vacation-days .btn.btn-secondary {
  padding: 0;
  background-color: transparent !important;
  border: none;
  color: #FFF !important;
}

.vacation-days i {
  margin-top: 0;
}


.growth-main-block {
  padding: 100px 0;
}
.engagement-bar {
  padding: 20px 20px 0;
  background-color: var(--background-black-bg-color);
  height: 370px;
}
.growth-block {
  background-color: var(--text-light-grey-color);
  height: 370px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .engagement-bar {
    height: 370px;
  }
  .growth-block {
    height: 370px;
  }
}
.engagement-heading {
  color: #FFF;
  margin-bottom: 0;
}
.wrapper-heading {
  color: var(--text-light-grey-color);
}
.progress-heading {
  color: var(--text-light-grey-color);
  text-transform: uppercase;
}
.profile-block .profile-block-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-top: -30%;
}
.profile-block-heading {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding: 30px 0 20px;
  margin: 0 80px 20px;
}
.profile-block ul li {
  color: #FFF;
  font-size: 16px;
  margin-bottom: 10px;
}
.profile-block ul li img {
  margin-right: 10px;
}
.profile-dtl-block {
  padding: 100px 0 99px;
}
.profile-dtl-block-heading {
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
}
.profile-dtl-block img {
  margin-bottom: 20px;
}
.profile-dtl-block p {
  color: #FFF;
}



.wrapper {
  display: -ms-flexbox;
  display: box;
  display: flex;
  /*-o-box-align: center;
  align-items: center;
  -o-box-pack: center;
  justify-content: center;*/
  -o-box-orient: vertical;
  flex-direction: column;
}
.wrapper .progress {
  margin-bottom: 0;
}
.wrapper .progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.green .progress {
  position: relative;
  border-radius: 50%;
}
.green .progress {
  width: 120px;
  height: 120px;
  border: 8px solid #EEE;
  background: none;
}

.green .progress {
  transition: all 1s ease;
}
.green .progress .inner {
  position: absolute;
  overflow: hidden;
  z-index: 2;
  border-radius: 50%;
}
.green .progress .inner {
  width: 110px;
  height: 110px;
}
.green .progress .inner {
  transition: all 1s ease;
}
.green .progress .inner .water {
  position: absolute;
  z-index: 1;
  width: 200%;
  height: 200%;
  left: -50%;
  border-radius: 40%;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: spin;
  animation-name: spin;
}

.green .progress .inner .water {
  background: rgba(83,252,83,0.5);
}
.green .progress .inner .water {
  transition: all 1s ease;
}
.green .progress .inner .water {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
}
.green .progress .inner .glare {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 0;
  height: 0;
  transform: rotate(45deg);
  border-radius: 50%;
}
.green .progress .inner .glare {
  background-color: rgba(255,255,255,0.15);
}
.green .progress .inner .glare {
  transition: all 1s ease;
}
.green .progress .inner .percent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.green .progress .inner .percent {
  line-height: 125px;
  font-size: 26px;
  font-weight: 500;
}
.green .progress .inner .percent {
  color: #EEE;
}
.green .progress .inner .percent {
  transition: all 1s ease;
}
@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}



.leader-progress-bar .progress {
  width: 90px;
  height: 90px;
  line-height: 150px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}
.leader-progress-bar .progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #eee;
  position: absolute;
  top: 0;
  left: 0;
}
.leader-progress-bar .progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.leader-progress-bar .progress .progress-left {
  left: 0;
}
.leader-progress-bar .progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 4px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: #ffb43e;
}
.leader-progress-bar .progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 75px;
  border-bottom-right-radius: 75px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}
.leader-progress-bar .progress .progress-right {
  right: 0;
}
.leader-progress-bar .progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 75px;
  border-bottom-left-radius: 75px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}
.leader-progress-bar .progress .progress-value {
  display: flex;
  border-radius: 50%;
  margin: -2px auto 0;
  font-size: 20px;
  color: #EEE;
  text-align: center;
  line-height: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 300;
}
.leader-progress-bar .progress .progress-value div {
  margin-top: 10px;
}
.leader-progress-bar .progress .progress-value span {
  font-size: 12px;
  text-transform: uppercase;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}
@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(72);
    transform: rotate(72deg);
  }
}
@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}
@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}
@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}
.leader-progress-bar .progress {
  margin-bottom: 1em;
}

.profile-dtl-block i {
  margin-bottom: 20px;
  font-size: 50px;
  color: #FFF;
}

.growth-main-block .container-fluid {
  padding-right: 0 !important; 
  padding-left: 0 !important;
}



.progress[data-percentage="10"] .progress-right .progress-bar {
  animation: loading-1 1.5s linear forwards;
}
.progress[data-percentage="10"] .progress-left .progress-bar {
  animation: 0;
}
.progress[data-percentage="20"] .progress-right .progress-bar {
  animation: loading-2 1.5s linear forwards;
}
.progress[data-percentage="20"] .progress-left .progress-bar {
  animation: 0;
}
.progress[data-percentage="30"] .progress-right .progress-bar {
  animation: loading-3 1.5s linear forwards;
}
.progress[data-percentage="30"] .progress-left .progress-bar {
  animation: 0;
}
.progress[data-percentage="40"] .progress-right .progress-bar {
  animation: loading-4 1.5s linear forwards;
}
.progress[data-percentage="40"] .progress-left .progress-bar {
  animation: 0;
}
.progress[data-percentage="50"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="50"] .progress-left .progress-bar {
  animation: 0;
}
.progress[data-percentage="60"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="60"] .progress-left .progress-bar {
  animation: loading-1 1.5s linear forwards 1.5s;
}
.progress[data-percentage="70"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="70"] .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.5s;
}
.progress[data-percentage="80"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="80"] .progress-left .progress-bar {
  animation: loading-3 1.5s linear forwards 1.5s;
}
.progress[data-percentage="90"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="90"] .progress-left .progress-bar {
  animation: loading-4 1.5s linear forwards 1.5s;
}
.progress[data-percentage="100"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="100"] .progress-left .progress-bar {
  animation: loading-5 1.5s linear forwards 1.5s;
}

.view-dtl .rate ul li {
  display: inline-block;
  color: #e53726;
  font-size: 19px;
}
.view-dtl .rate .rate-r {
  font-size: 18px;
  margin-right: 10px;
  font-weight: 600;
}

.view-dtl .rate ul li strike {
  font-size: 14px;
  display: inline-block;
  color: #29303B; 
}

/*.view-dtl .rate {
  position: absolute;
  right: 5px;
}*/

.view-dtl .rate ul li b {
  font-weight: 500;
  font-size: 17px;
}

.view-dtl .rate ul li:last-child b {
  font-weight: 500;
}

.tab-content .view-dtl .rate {
  /*top: 44%;*/
  right: 10px;
}




.about-content-sidebar {
  background-color: var(--background-white-bg-color);
  color: var(--text-light-grey-color);
  padding: 20px 0;
  box-shadow: 0 0 1px 1px rgb(20 23 28 / 10%), 0 3px 1px 0 rgb(20 23 28 / 10%);
  border-radius: 4px;
}
.about-content-img {
  text-align: center;
}
.about-content-img img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  border-radius: 50px;
}
.about-content-heading {
  margin-bottom: 10px;
}
.about-content-img p {
  margin-bottom: 10px;
}
.ratings .star-ratings-sprite {
  display: inline-block;
  float: none;
  text-align: center;
  margin-right: 10px;
}
.star-rating {
  display: inline-block;
  background: #F44A4A;
  border: 1px solid #F44A4A;
  border-radius: 5px;
  font-size: 12px;
  color: #FFF;
  padding: 0 10px;
}
.about-content-sidebar .btn-primary {
  padding: 8px 10px;
  width: 100%;
  font-size: 12px;
}
.ratings {
  text-align: center;
  margin-bottom: 20px;
}
.about-reward-badges {
  text-align: center;
}
.about-reward-badges img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  margin-bottom: 25px;
}





.instructor-tabs {
  background-color: #FFF;
  box-shadow: 0 0 1px 1px rgb(20 23 28 / 10%), 0 3px 1px 0 rgb(20 23 28 / 10%);
  border: 1px solid #DEDFE0;
  border-radius: 5px;
}
.instructor-tabs .nav-tabs {
  padding: 20px 20px 0;
  border-bottom: 1px solid #DEDFE0;
}
.instructor-tabs .nav-tabs .nav-item {
  margin-right: 20px;
}
.instructor-tabs .nav-tabs .nav-item a {
  color: #0284A2;
  font-size: 18px;
  font-weight: 400;
}
.instructor-tabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 5px solid transparent;
}
.instructor-tabs .nav-tabs .nav-link.active {
  border: none;
  border-bottom: 5px solid #0284A2;
}
.instructor-tabs .nav-tabs .nav-link:hover {
  border-bottom: 5px solid #0284A2;
}
.instructor-tabs .tab-content {
  padding: 40px;
}
.instructor-tabs-content {
  margin-bottom: 40px;
  color: #29303B;
  font-size: 16px;
  font-weight: 400;
}
.tab-badges-block {
  background-color: #FFF;
  box-shadow: 0 0 1px 1px rgb(20 23 28 / 10%), 0 3px 1px 0 rgb(20 23 28 / 10%);
  border-radius: 5px;
  padding: 40px 0;
  margin-bottom: 20px;
}
.tab-badges-block img {
  width: 130px;
  height: 130px;
  margin-bottom: 20px;
}
.tab-badges-heading {
  font-size: 16px; 
  font-weight: 600;
  margin-bottom: 10px;
}
.tab-badges-block p {
  font-size: 14px;
  font-weight: 400;
  color: #73726C;
}
.instructor-tabs .tab-content .view-dtl .rate {
  right: 20px;
}
.instructor-content-block .ratings {
  text-align: left;
}
.instructor-content-block .about-reward-badges {
  text-align: left;
}
.about-content-sidebar.instructor-sidebar {
  padding: 50px;
  margin-bottom: 50px;
}
.about-content-sidebar.instructor-sidebar .about-content-img img {
  width: 100%;
  height: 100%;
}
.instructor-content-block .about-content-heading {
  font-size: 24px;
}
.instructor-follower {
  margin-bottom: 20px;
}
.followers-status {
  display: inline-block;
}
.followers-value {
  display: block;
  color: #29303B;
  font-size: 20px;
}
.following-status {
  display: inline-block;
  border-left: 2px solid #DEDFE0;
  margin-left: 15px;
  padding-left: 10px;
}
.followers-heading {
  font-size: 14px;
  font-weight: 400;
}
.instructor-btn {
  text-align: right;
}
.instructor-btn .btn-primary {
  width: 65%;
  font-size: 14px;
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 0;
}
.instructor-btn .btn-secondary {
  width: 65%;
  font-size: 14px;
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 0;
}
.instructor-content-block .about-reward-badges img {
  margin-bottom: 0;
}
.instructor-student {
  margin-bottom: 40px;
}
.instructor-block .instructor-business-block {
  display: block;
}
@media (max-width: 767px) {
  .about-content-sidebar.instructor-sidebar {
    padding: 50px 0;
  }
  .about-content-sidebar.instructor-sidebar .about-content-img {
    padding: 50px 50px 0;
  }
  .instructor-content-block {
    margin-bottom: 40px;
    text-align: center;
  }
  .instructor-content-block .ratings {
    text-align: center;
  }
  .instructor-content-block .about-reward-badges {
    text-align: center;
  }
  .instructor-btn {
    text-align: center;
  }
  .instructor-tabs {
    margin-bottom: 50px;
  }
  .instructor-tabs .nav-tabs .nav-item a {
    font-size: 16px;
    padding: .5rem .5rem;
  }
  .instructor-block .instructor-small-heading {
    text-align: center;
  }
  .instructor-block h1 {
    text-align: center;
  }
  .instructor-block .sub-heading {
    text-align: center;
  }
  .instructor-business-block {
    text-align: center;
  }
}


.badge-button button {
  -webkit-appearance: button;
  border: none;
  background-color: transparent;
  color: white;
  cursor: pointer;
}

.badge-button form {
  margin-bottom: 0;
}

.cirtificate-serial {
  text-align: left!important;
  font-size: 8px;
}

.protip-wishlist button {
  padding: 0 !important
}

/*.search-one .dropdown-menu {
  left: -278px !important;
  min-width: 18rem !important;
}*/

.img-wishlist .protip-wishlist ul li:hover i {
  color: #FFF;
}

.search .dropdown-menu {
    min-width: 21rem;
    right: 280px;
    left: inherit;
}

.search-list {
  padding: 0 0 0 15px;
  line-height: 35px;
  border-bottom: 1px solid rgba(215, 215, 215, 0.17);
  padding-right: 20px;
    font-size: 13px;
    text-decoration: none;
    color: var(--text-black-color);
    font-weight: 400;
}





/*---------------Font Size---------------*/
.font-size-10{font-size:10px;}
.font-size-11{font-size:11px;}
.font-size-12{font-size:12px;}
.font-size-13{font-size:13px;}
.font-size-14{font-size:14px;}
.font-size-15{font-size:15px;}
.font-size-16{font-size:16px;}
.font-size-17{font-size:17px;}
.font-size-18{font-size:18px;}
.font-size-19{font-size:19px;}
.font-size-20{font-size:20px;}
.font-size-21{font-size:21px;}
.font-size-22{font-size:22px;}
.font-size-23{font-size:23px;}
.font-size-24{font-size:24px;}
.font-size-25{font-size:25px;}
.font-size-26{font-size:26px;}
.font-size-27{font-size:27px;}
.font-size-28{font-size:28px;}
.font-size-30{font-size:30px;}
.font-size-32{font-size:32px;}
.font-size-34{font-size:34px;}
.font-size-35{font-size:35px;}
.font-size-38{font-size:38px;}
.font-size-40{font-size:40px;}
.font-size-45{font-size:45px;}
.font-size-50{font-size:50px;}
.font-size-55{font-size:55px;}
.font-size-65{font-size:65px;}
.line-hight-1{line-height: 1;}
.line-hight-2{line-height: 1.2;}
.line-hight-3{line-height: 1.4;}
.line-hight-4{line-height: 1.6;}
.line-hight-normal{line-height: normal;}
.shadow-sm {box-shadow: 0 .125rem 1.25rem rgba(0,0,0,.075) !important;}
/*---------------Font Size End---------------*/

/*---------------Text Color Start---------------*/
.text-dark {color: #292929 !important;}
.text-gray{color: #4f4f4f !important;}
.text-muted{color: #676568 !important;}
.text-danger {color: #e53726 !important;}
.text-primary{color: #4b51a0 !important;}
.text-secondary{color: #70778b !important;}
/*---------------Text Color End---------------*/

/*---------------Font Start---------------*/
.font-weight-bold{font-weight: 700 !important; font-family: 'Poppins', sans-serif;}
.font-weight-semibold{font-weight: 600 !important; font-family: 'Poppins', sans-serif;}
.font-weight-medium{font-weight: 500 !important; font-family: 'Poppins', sans-serif;}
.font-weight-normal{font-weight: 400 !important; font-family: 'Poppins', sans-serif;}
.font-weight-light{font-weight: 300 !important; font-family: 'Poppins', sans-serif;}
/*---------------Font familly End---------------*/

/*---------------button Start---------------*/
.btn.focus, .btn:focus {outline: 0 !important; box-shadow: none !important;}
.btn-dark {background-color: #3a3939; border-color: #3a3939; }
.btn-dark:hover,.btn-dark:focus,
.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show > .btn-dark.dropdown-toggle {background-color: #0e0e0e; border-color: #0e0e0e;}
.btn-dark.focus, .btn-dark:focus {box-shadow: none !important;}

.btn-danger,.btn-primary {background: rgb(193,40,42); background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%); font-weight: 600 !important; font-family: 'Poppins', sans-serif;}
.btn-danger:hover,.btn-danger:focus,.btn-primary:hover,.btn-primary:focus,
.btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active, .show > .btn-danger.dropdown-toggle,
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle { background: rgb(209,100,26); background: linear-gradient(281deg, rgba(209,100,26,1) 0%, rgba(193,40,42,1) 100%); }
.btn-danger.focus, .btn-danger:focus,.btn-primary.focus, .btn-primary:focus {box-shadow: none !important;}

.btn-danger-light {background: rgb(193,40,42); background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%);}
.btn-danger-light:hover,.btn-danger-light:focus{ background: rgb(209,100,26); background: linear-gradient(281deg, rgba(209,100,26,1) 0%, rgba(193,40,42,1) 100%); }

.btn-outline-light {border: 1px solid #fff !important; border-radius: 50px;}
.btn-outline-light:hover,.btn-outline-light:focus {color: #fff !important; background: rgb(193,40,42) !important; border: 1px solid transparent !important; background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%) !important;}

/*---------------button End---------------*/

.bg-dark {background-color: #0e0e0e !important;}
.bg-gray{background-color: #2d2c2c !important;}
.bg-light {background-color: #f9f7f7 !important;}
.bg-bluelight {background-color: #E7E5F4 !important;}
.bg-gradent {background: rgb(193,40,42); background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%);}
.bg-danger {background-color: #d1a64f !important;}

.menu_search .btn {right: 0px;}
.homepad {padding-top: 5rem; padding-bottom: 5rem;}
#student .owl-nav {text-align: center;}
/*#student-view-slider,#recent-courses-slider {margin: 0 -100px; width: auto;}*/
.overflow-hidden {overflow: hidden;}
.shadow {box-shadow: 0 0rem 1rem rgba(0,0,0,.15) !important;}



/*.browse_box{padding-left: 5.9rem;}*/
/*.browse-box .browse_hover {position: absolute; opacity: 0; top: 100%; left: 0; right: 0; margin: 0 auto;}
.browse-box .browse_icon {width: 88px;  height: 88px; line-height: 88px; overflow: hidden;}
.browse-box .browse_icon img{transition: all 0.3s ease 0s; -webkit-transition: all 0.3s ease 0s; -moz-transition: all 0.3s ease 0s; -ms-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s;}*/
.learn_anytime_box .learn_anytime_col:hover{background: url(../images/learn_anytime/learn_anytime_hover.png) repeat;}
/*.browse-box:hover h2,
.browse-box:hover p{color: #fff !important;}*/
/*.browse-box:hover .browse_icon .browse_normal {position: absolute;  opacity: 0;}
.browse-box:hover .browse_icon .browse_hover {position: relative; opacity: 1; top: 0px;}
.browse_our_pattren::before {content: ""; background: linear-gradient(to bottom left, transparent 50%, #f4f4f4 50%); width: 100px; height: 100px; position: absolute; transform: rotate(90deg); z-index: 9;}*/

.learn_anytime-01 {width: 220px; height: 220px;}
.learn_anytime_box .learn_anytime_col {margin-top: -20px !important;}
/*#blog-post-slider .view-dtl {margin-top: -50px;}*/
#blog-post-slider .owl-item:hover .view-block,
/*#student-view-slider .owl-item:hover .view-dtl,*/
#recent-courses-slider .owl-item:hover .view-dtl{background: rgb(209,100,26); background: linear-gradient(281deg, rgba(209,100,26,1) 0%, rgba(193,40,42,1) 100%);}
#blog-post-slider .owl-item:hover .view-dtl,
#blog-post-slider .owl-item:hover .view-dtl *,
/*#student-view-slider .owl-item:hover .view-dtl,*/
/*#student-view-slider .owl-item:hover .view-dtl *,*/
#recent-courses-slider .owl-item:hover .view-dtl,
#recent-courses-slider .owl-item:hover .view-dtl *{color: #fff !important;}

.quote_icon {width: 32px; height: 32px; top: 0; line-height: 31px;}

/*#testimonial-slider .owl-nav {position: absolute; top: 50%; transform: translateY(-50%); left: 0; right: 0; padding-top: 100px;}*/
/*#testimonial-slider .owl-nav .owl-prev {float: left;}*/
/*#testimonial-slider .owl-nav .owl-next {float: right;}*/
#testimonial-slider .owl-nav{text-align: center; padding-top: 35px;}
/*#cssmenu > ul > li > a {padding: 0 !important;}*/
/*.business-home-slider-block .categories-popularity-dtl {padding: 20px 20px 20px 0px;}*/
#accordion .card-header {border-radius: .25rem;}
.text-decoration-none {text-decoration: none !important;}
.my-container .dropdown-menu-right.show {margin-top: 22px;}
.form-control {padding: 0.666rem .85rem;}

/*.profile_had {padding: 40px 0px; position: relative; background: rgb(193,40,42); background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%);}*/
.blog-home-main-block h1, .wishlist-home-main-block h1 {font-size: 36px; position: relative; margin-bottom: 0; color: var(--text-white-color) !important; font-weight: 700 !important; font-family: 'Poppins', sans-serif;}
.second-accordion .card {margin-bottom: 10px;}
.second-accordion .card > div {border-bottom: 0 !important;}

/*.login_page{background: url(../images/learn_anytime/learn_anytime.jpg) no-repeat; background-position:100% center; background-size: cover; background-color: initial !important;}*/
.signup-block .logo img.img-fluid {max-width: 280px;}
/*.about-home-block .star-ratings-sprite {padding: 7px 13px; background-color: #fff;}*/
.table tbody + tbody {border-top: 1px solid #dee2e6;}
.sidenav .wrapper.center-block {margin-bottom: 0; padding-bottom: 0;}
.sidenav #notificationTitle {padding: 14px; background-color: initial; border-bottom: 1px solid rgba(255, 255, 255, 0.2);}
.sidenav #notificationTitle .user-detailss {color: #fff;}
.sidenav .login-block a.btn {display: inline-block;}
#blog-slider .owl-nav {text-align: center;}
/*.help-contact ul li img {width: 58px;}*/
.table .thead-dark th {line-height: 1.2;}
.modal-title {font-weight: 600 !important; font-family: 'Poppins', sans-serif;}
.close {font-weight: 500 !important;}
.investment-platformbox .year {
	font-size: 36px;
}

.investment-platform-bullot li::before {
	content: "";
	width: 10px;
	height: 10px;
	border: 2px solid #fff;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 6px;
	border-radius: 100%;
}
/*#home-background-slider .home-dtl h3{font-size: 1rem;}*/
/*#home-background-slider .home-dtl h2.home-heading {font-size: 2rem;}*/

.btn-answred{
    color: var(--text-white-color);
    background: rgb(46, 160, 87);
    /*background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%);*/
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif;
}

.btn-not-answred{
    color: var(--text-white-color);
    background: rgb(255,0,0);
    /*background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%);*/
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif;
}

.btn-marked{
    color: var(--text-white-color);
    background: rgb(0,0,255);
    /*background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%);*/
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif;
}

.btn-marked-ans{
    color: var(--text-white-color);
    /*background: rgb(0,0,255);*/
    background: linear-gradient(281deg, rgba(0,0,255,1) 0%, rgba(46, 160, 87,1) 100%);
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif;
}

.btn-info{
    border-radius: 5px;
}

.Price__Coupons {
    background: #f2f7fb;
    padding: 4px 16px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.Price__Coupons__Text {
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3c4852;
    padding-left: 8px;
    padding-right: 10px;
    overflow: hidden;
    word-wrap: break-word;
}
.Price__Coupons__Apply, .Price__Coupons__Remove {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: right;
    margin-left: auto;
    cursor: pointer;
}

.searchCoupon {
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    border-radius: 4px;
}

.couponButton, .couponText {
    border: none;
    outline: none;
    font-style: normal;
    font-size: 12px;
}

.availableCoupon {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #3c4852;
    margin: 24px auto 16px;
}

.CouponListItem {
    padding: 8px 12px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    margin-bottom: 16px;
}
.CouponModalLabel {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #3c4852;
}
.CouponModalRow1, .CouponModalRow2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.CouponModalRow2 {
    margin-top: 16px;
    border-top: 1px dashed #e5e5e5;
    padding: 8px 0 0;
}
.CouponModalName, .CouponModalValid {
    cursor: default;
    font-style: normal;
    font-size: 12px;
    line-height: 17px;
    color: #777;
}
.CouponModalCode, .CouponModalLink {
    font-style: normal;
    display: flex;
    align-items: center;
}
.CouponModalCode {
    cursor: default;
    background-color: rgba(240,169,0,.05);
    border: 1px dashed #f5a623;
    box-sizing: border-box;
    border-radius: 2px;
    padding: 6px 11px;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 2px;
    color: #3c4852;
}

.CouponModalLink {
    cursor: pointer;
    font-size: 14px;
    line-height: 17px;
    text-align: right;
    text-transform: capitalize;
    color: var(--appAccentColor);
}

.more_quiz_box {
	background-color: #ebecf4;
}

.timer_box {
	background: rgb(77, 84, 161);
	font-weight: 700 !important;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 8px;
	/*max-width: 250px;*/
	color: #fff;
	font-size: 20px;
	padding: 15px 20px;
}

.timer_box input {
	background: transparent;
	color: #fff;
	width: 36px;
	text-align: center;
	border-radius: 100%;
	height: 36px;
	font-size: 14px;
}

.time-mini input{
	width: 42px;
	border: none;
	font-size: 14px;
	font-weight: normal;
	color: black;
	background: transparent;
	background: rgb(77, 84, 161) none repeat scroll 0 0;
	border-radius: 20px;
	color: #fff !important;
	padding: 0px 10px;
	text-align: center;
}
.more_quiz_box .fa-bookmark-o {
	font-size: 22px !important;
}

.datebox {
	height: 200px;
	overflow-y: scroll;
	scrollbar-color: #c43527 #e1e0e0;
	scrollbar-width: thin;
}

.datebox > div button {
	width: 36px;
	height: 36px;
	font-size: 14px;
	padding: .375rem .40rem;
	text-align: center;
}
.datebox > div {
	display: inline-block;
}

.finish-button button {
	min-width: 150px;
}

.finish-button button i {
	font-size: 20px;
	vertical-align: middle;
}
.answred_box button {
	width: 30px;
	height: 30px;
	border-radius: 100%;
	margin-right: 6px;
	line-height: 15px;
	font-size: 14px;
	padding: 3px;
	font-weight: 600 !important;
}

.course-icon-detail {
    display: flex;
    /*padding-top: 10px;*/
    /*padding-bottom: 15px;*/
    color: #333;
    font-size: 12px;
    font-weight: 400;
}

img.free_tag {
    width: 40px !important;
    position: absolute;
    top: 4px;
    left: 4px;

}

.more_quiz_box img {max-width: 100%;}
.facts-main-block.about-text p {font-size: 16px; line-height: 1.7;}



#home-background-slider .owl-stage{
	display: flex;
}

#home-background-slider.owl-carousel .owl-stage-outer {
	display: flex;
	height: 100%;
}

#home-background-slider.owl-carousel.owl-drag .owl-item > div,
#home-background-slider.owl-carousel.owl-drag .owl-item > div > div,
#home-background-slider.owl-carousel.owl-drag .owl-item .home-slider-img{
	height: 100%;
}

.navbar #searchform .form-control {width: 190px; line-height: 1.3; padding: 0.466rem .85rem; font-size: 14px;}

.videosection::before {content: "";	display: block;	position: absolute;	background: rgb(193,40,42);
  background: linear-gradient(281deg, rgba(193,40,42,0.8) 0%, rgba(209,100,26,0.9) 100%); left: 0; top: 0; right: 0;	bottom: 0;	border-radius: .25rem !important;}

.video {z-index: 9;	top: 50%; left: 50%; transform: translate(-50%, -50%);}
.video a .fa-play {color: #e53726;}
.video a {position: relative; width: 70px; height: 70px; display: inline-block;	border-radius: 50%;	-webkit-border-radius: 50%;	-moz-border-radius: 50%; text-align: center; line-height: 70px; background: rgb(255, 255, 255); }
.video a span {content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 1px solid #fff; border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; transition: border-color 0.3s linear; -webkit-transition: border-color 0.3s linear; -moz-transition: border-color 0.3s linear; -o-transition: border-color 0.3s linear; -ms-transition: border-color 0.3s linear;}
.video a .circle-1 {animation: circle-fade-before 2s infinite ease-in-out; -webkit-animation: circle-fade-before 2s infinite ease-in-out;}
.video a .circle-2 {animation: circle-fade-after 2s infinite ease-in-out; -webkit-animation: circle-fade-after 2s infinite ease-in-out;}

@keyframes circle-fade-before {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes circle-fade-after {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
.bg-primary {background-color: #4b51a0 !important;}
.videosection {margin-top: -80px;}
.rounded {border-radius: .65rem !important;}
.banner-bottom-img {background: #f5f5f5;}
.footer_title.footer-logo img {max-width: 180px;}
.footer_help_desk_icon i {
	font-size: 20px !important;
}
.footer_bottom_container {background-color: #70778b;}
.banner_social_link_icon_roted a:hover i {color: #fff !important;}
.footer-main-block h5::after {content: "";	background: #e53726; height: 1px; width: 60px; display: block;	margin-top: 5px;}
.footer-main-block .footer_quick_links_details li:hover * {color: #e53726 !important;}
.banner_social_link_icon_roted {display: flex;}
.banner_social_link_icon_roted a {border: 1px solid #292929; display: flex;	width: 32px; height: 32px; text-align: center; line-height: 30px; border-radius: 55px; justify-content: center !important;
  align-items: center !important;}
.banner_social_link_icon_roted a:hover {background-color: #e53726; border-color: #e53726;}
.testimonial-slider-main-block .fa-quote-left {font-size: 24px !important;}
#login_modal .modal-content {background-color: #fbf3eb;}
.signin-link input:autofill {background: #fff;}
.close {font-size: 2rem; font-weight: 500 !important;}
.course-icon-detail > div {flex: 0 0 auto; width: 50%;}
.course-icon-detail > div > div {display: flex; align-items: center !important;}
#student-view-slider .owl-nav {top: 50%; transform: translateY(-50%); position: absolute; left: -22px; right: -22px;}
#student-view-slider .owl-nav .owl-prev {float: left;}
#student-view-slider .owl-nav .owl-next {float: right;}
#student-view-slider .img-wishlist {margin-top: -54px;}
#student-view-slider .view-heading a {color: #4b51a0;}

.pointdesign .fa-check {position: absolute;	left: -8px;	top: 0px; font-size: 20px !important;}
.mobile-app img {max-width: 360px;}
.mobile-app {margin-top: -80px;	margin-bottom: -50px;}
.app-bullet span {line-height: 0px; display: inline-block; position: relative; top: -2px; height: 15px;}
#student-view-slider .item.student-view-block .view-dtl {min-height: 124px;}
.bodysticy .fixed-top #nav-bar {padding: 8px 0;}
.bodysticy .fixed-top #nav-bar .logo img {height: 50px;}
#headerfix {
	transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	box-shadow: 0 0px 15px 3px rgb(225, 208, 187);
    position: relative;
}
.fixed-top {box-shadow: 0 .1rem 1rem rgba(0,0,0,0.2) !important; background: #fff; z-index: 999; position: fixed !important;}
.footer-main-block .footer_callus_details .fa-long-arrow-right {font-size: 12px !important;}
.years-experience-img img {max-width: 50px;}
.footer_quick_links_details a {font-size: 13px;}
/*.footer_quick_links_details li {padding-top: 3px !important; padding-bottom: 3px !important;}*/
.text-decoration-underline {text-decoration: underline;}
.featured-row .student-view-block .view-img img {width: 100%;}

.featured-row {margin-right: -10px; margin-left: -10px;}
.featured-row > div {padding-right: 10px; padding-left: 10px;}


.exam-tab .wrapper-nav {position:relative; margin:0 auto; overflow:hidden; padding:0px; height:39px}
.exam-tab .wrapper-nav .list {position:absolute; left:0px; top:0px; min-width:3500px; margin-top:0px; }
.exam-tab .wrapper-nav .list li{display:table-cell; position:relative; text-align:center; cursor:grab; cursor:-webkit-grab; color:#efefef; vertical-align:middle;}
.exam-tab .wrapper-nav .scroller {text-align:center; cursor:pointer; display:none; padding:7px; padding-top:13px; white-space:no-wrap; vertical-align:middle; background-color:#fff; }
.exam-tab .tabhome .nav {border: none;}        
.exam-tab .tabhome .nav a {
    font-size: .875rem;
    border-radius: 18px;
    /* border: solid 1px #86a1ae; */
    color: #4b51a0;
    padding: .4rem 20px;
    margin: 0 6px 0 0px;
    min-width: 130px;
    text-align: center;
    background-color: #d9daef;
    font-weight: 500;
}
.exam-tab .tabhome .nav-tabs .nav-item.show .nav-link, .tabhome .nav-tabs .nav-link.active {color: #fff !important; background-color: #4b51a0; border-color: #4b51a0 !important;}
.exam-tab .scroller {top: -4px; position: relative;}
.exam-tab .scroller-right {border-top-left-radius: 30px; border-bottom-left-radius: 30px;}
.exam-tab .scroller-left {border-top-right-radius: 30px; border-bottom-right-radius: 30px;}
.featuredcourses-scroll > div {margin-top: -35px;}
.featuredcourses-scroll {max-height: 284px; padding: 1rem 1rem 1rem 0rem; overflow-y: auto; direction: ltr; scrollbar-color: #e53726 #b4b5c4; scrollbar-width: thin;}
.featuredcourses-scroll::-webkit-scrollbar {width: 8px;}
.featuredcourses-scroll::-webkit-scrollbar-track {background-color: #b4b5c4;}
.featuredcourses-scroll::-webkit-scrollbar-thumb {background-color: #e53726; background-clip: content-box;}
.featuredcourses-scroll::-webkit-scrollbar-thumb:hover {background-color: #e53726;}
.shopping-cart .red-menu-badge {left: 17px;}
.learning-business a, .Login-btn {padding: 6px 14px !important;}
.nav-bar-main-block .panel-title > a .fa.fa-circle {display: none;}
.navbar {padding: .3rem 1rem;}
.popularexams .bg-white:hover {background: rgb(209,100,26); background: linear-gradient(281deg, rgba(209,100,26,1) 0%, rgba(193,40,42,1) 100%);}
.popularexams .bg-white:hover * {color: #fff !important;}
.exam-tab .coursebox {max-width: 60px; background: #fff; border-radius: 50px; padding: 4px;	height: 60px; line-height: 48px;}
.exam-tab .coursebox img {border-radius: 50px;}
.categories-block .categories-icon {width: 70px; height: 70px; line-height: 50px;}
.categories-block .categories-icon i {font-size: 26px !important;}
.or-sidebar::before, .or-sidebar::after {border-bottom: 2px dashed #fff; content: ""; display: block; width: 44%; position: absolute; top: 10px;}
.or-sidebar::before {left: 0;}
.or-sidebar::after {right: 0;}
.bubscribe .sidebar-icon {position: absolute; left: 20px; top: 16px;}
.categories-dcs h2 {margin-top: 2rem;}
.categories-dcs h3,.categories-dcs h4,.categories-dcs h5 {margin-top: 1.5rem;}


/*.categories-dcs h3 {font-size: 18px;}*/
/*.categories-dcs h3 span {color: #292929 !important;}*/
.exam-tab .upsc-scroll .scroller {border-radius: 50px; width: 40px; height: 40px;	justify-content: center !important;	align-items: center !important;}
/*.exam-tab .upsc-scroll .tabhome .nav a {border: none; padding: 0rem 12px 0rem 0px; margin: 0 5px 0 0px;	border-radius: 0; color: #b5b5b5;}*/
/*.exam-tab .upsc-scroll .tabhome .nav-tabs .nav-item.show .nav-link, */
/*.exam-tab .upsc-scroll .tabhome .nav-tabs .nav-link.active {color: #e53726 !important;	background-color: #fff;	border-color: #fff !important;}*/
.exam-tab .upsc-scroll .wrapper-nav {height: 35px;}
.categories-dcs ul.list {list-style-type: disc; padding-left: 25px; margin-bottom: 0;}
.categories-dcs ul.list li {margin-bottom: 6px;}
.categories-dcs ol {padding-left: 25px; margin-bottom: 0;}
.categories-dcs ol li {margin-bottom: 6px;}

.btn-light {border-radius: 8px;	background: #fff; color: #4b51a0; border: 0px; font-weight: 500;}
.btn-light.active, .btn-light:hover{
	color: #fff;
	background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%);
}
.ccode-group {border: 1px dashed #fff;}
.recommended {background: #8187ce; border-radius: 18px;}
.recommended .fa.fa-bolt {background: #f4c554; border-radius: 100%; width: 22px; height: 22px; margin-bottom: -3px;	margin-top: -3px; line-height: 15px;}
.SSCElite li {display: flex;}
.text-green {color: #11e60a;}
.text-red {color: #f41313;}
.tab-menu-detail {margin: 0 auto; display: table; padding: 5px;	border-radius: 50px;}
.tab-menu-detail a {display: inline-block; border: none !important; color: #fff !important; font-size: 15px !important; text-transform: uppercase; margin-bottom: 0 !important;	font-weight: 600; padding: 8px 30px !important;}
.tab-menu-detail a.active {background: rgb(193,40,42) !important; background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%) !important; border-radius: 50px;}
.table-responsive .table td, 
.table-responsive .table th {padding: .55rem; vertical-align: middle;}
.showrepor {min-width: 100px;}
.objective {display: flex; flex-wrap: wrap;}
.objective .table {order: 1; -webkit-order:1;}
.objective nav {order: 2; -webkit-order:2;}
.table-striped tbody tr:nth-of-type(odd) {background-color:#F1F2F8;}
.table-hover tbody tr:hover {background-color:rgb(238, 239, 253);}
.vision-icon {border: 2px solid #fff; display: inline-block; width: 80px; height: 80px;	line-height: 98px; text-align: center; min-width: 80px;}
.vision-icon i {font-size: 46px;}
.mission-mad::before {content: ""; width: 1px; left: 0; position: absolute; top: 0;	bottom: 0; background: rgba(255, 255, 255, 0.2);}
.contact-us-main-block .contact-dtl ul.contactbox {border: 1px dashed #70778b;}
.contact-us-main-block .contact-dtl ul.contactbox i {width: 80px; height: 80px; border: 1px dashed #70778b; display: inline-block; line-height: 78px;}
.contact-us-main-block .contact-dtl ul.contactbox:hover{background: rgb(193,40,42); background: linear-gradient(281deg, rgba(193,40,42,1) 0%, rgba(209,100,26,1) 100%); border: 1px dashed transparent;}
.contact-us-main-block .contact-dtl ul.contactbox:hover * {color: #fff !important;}
.clear {clear: both;}
.contact-us-main-block .contact-dtl ul.contactbox:hover i {border-color: rgba(255, 255, 255, 0.8);}

.exam-tab .upsc-scroll .wrapper-nav .list{min-width: 2000px;}
.scroll {overflow-y: scroll; height: 393px;}

.tabbable.tabs-left .nav.nav-tabs {min-height: 300px; background: rgb(209,100,26); background: linear-gradient(281deg, rgba(209,100,26,1) 0%, rgba(193,40,42,1) 100%);}
.tabbable.tabs-left .nav.nav-tabs li a {font-weight: 500; font-size: 1rem; line-height: 1; padding: 12px 20px; display: block; color: rgba(255, 255, 255, 0.85); margin: 0.4rem 0;}
.tabbable.tabs-left .nav.nav-tabs li.active a, .tabbable.tabs-left .nav.nav-tabs li:hover a {background-color: #fff; border-top-left-radius: 50px; border-bottom-left-radius: 50px; color: #ca1a15;}

.business_sidebar .view-heading a {color: #fff;}
.business_sidebar .course-icon-detail {flex-wrap: wrap;font-size: 13px;}
.business_sidebar .course-icon-detail > div {flex: 0 0 auto; width: 50%; display: flex; margin-right: 0 !important;	margin-top: 10px;}
.business_sidebar .course-icon-detail > div i {margin-right: 10px;}
/*.business_sidebar .btn-outline-light {border: 1px solid #fff !important; border-radius: 50px;}*/
.business_sidebar .wishlisht-btn {background: #f4c554; border-radius: 100%; width: 22px; height: 22px; line-height: 15px;}
.business_sidebar .wishlisht-btn i {font-size: 12px;}
.business_sidebar .owl-nav {display: flex; justify-content: center !important;}
.wishlisht-cores {z-index: 1; top: 11px; right: 25px; width: 32px; height: 32px;}
.go-to-course hr {border-color: rgb(255, 255, 255,0.3);	margin: 1.5rem -24px 1.4rem;}
.course_detailpage p span, .course_detailpage li span {color: #676568 !important; font-family: 'Poppins', sans-serif !important; font-weight: 400; line-height: 1.6; font-size: 15px;}
.user-course-gift h3 {content: ""; display: block; position: absolute; background: rgb(193,40,42); background: linear-gradient(281deg, rgba(193,40,42,0.8) 0%, rgba(209,100,26,0.9) 100%); left: 0; right: 0px; bottom: 0; border-bottom-left-radius: .25rem !important; border-bottom-right-radius: .25rem !important;}
.detail-textarea textarea {height: 120px;}
.upsc-advancedplan .form-control {background-color: transparent; border-color: rgba(255, 255, 255, 0.8); font-size: 15px;}
.upsc-advancedplan .form-control::-webkit-input-placeholder {color: #fff; opacity: 1;}
.upsc-advancedplan .form-control:-moz-placeholder {color: #fff; opacity: 1; }
.upsc-advancedplan .form-control::-moz-placeholder {color: #fff; opacity: 1;}
.upsc-advancedplan .form-control:-ms-input-placeholder {color: #fff; opacity: 1;}
.categories-dcs h3 span,
.categories-dcs h2 span,
.categories-dcs h4 span{color: #4b51a0 !important;}
.dashboard {border-bottom-color: rgba(255, 255, 255, 0.2) !important;}
.category_page_desc > div {margin-top: -10px !important; padding-top: 0 !important;}
.table thead.thead-dark th {background-color: #4b51a0; border-color: #8f92b5; border-bottom: 0;}
input:-webkit-autofill {background-color: #fff !important;}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {background-color: rgb(250, 255, 189); background-image: none;}
.sub-category-slider .recommended {padding-left: 0px !important;}
.sub-category-slider .recommended li {margin-bottom: 1px !important;}

.sub-category-slider .owl-stage-outer,
.sub-category-slider .owl-stage{display: flex;}
.sub-category-slider .owl-stage .owl-item .item,
.sub-category-slider .owl-stage .owl-item .item > div{height: 100%;}
.sub-category-slider .owl-nav {margin-top: 40px; text-align: center;}

.dashboard-row .col-xl-3.col-lg-4 > div {background-image: url("../images/dashboard-bg-img.png"), linear-gradient(155.6deg, #E87427 3.55%, #C22A29 99.06%); background-position: center bottom; background-repeat: no-repeat; background-size: 100%; padding-left: 0 !important; padding-right: 0 !important;}
.dashboard-row .col-xl-3.col-lg-4 > div .dashboard-items ul li {border-bottom: 0; margin-left: 16px; border-radius: 30px 0px 0px 30px; padding-left: 16px; display: flex !important; align-items: center !important; margin-bottom: 5px;}
.dashboard-row .col-xl-3.col-lg-4 > div .dashboard-items ul li:hover {background: #FFA06B;}
.dashboard-row .col-xl-3.col-lg-4 > div .dashboard-items ul li *{color:#fff !important;}
.dashboard-row .col-xl-3.col-lg-4 > div .dashboard-author-block {border-bottom: 1px solid rgba(255, 255, 255, 0.4);	padding-bottom: 28px;}
.dashboard-row .col-xl-3.col-lg-4 > div .author-name {font-size: 26px;}
.dashboard-row .col-xl-3.col-lg-4 > div .author-name span {color: #FFF6A7; font-weight: 400 !important;	text-transform: capitalize; font-size: 18px; padding-top: 10px;}
.dashboard-row .col-xl-3.col-lg-4 > div .dashboard-items ul li.helpandsupport {margin-top: 90px; position: relative;}
.dashboard-row .col-xl-3.col-lg-4 > div .dashboard-items ul li.helpandsupport::before {content: "";	border-top: 1px solid rgba(255, 255, 255, 0.4);	height: 1px; position: absolute; top: -12px; right: 0; left: -16px;}
.dashboard-row .col-xl-3.col-lg-4 > div .dashboard-items ul li.logoutsidebar{margin-bottom: 120px;}

.dashboard-for-card .cource_card{background-image: url("../images/course-bg.png"); background-position: center bottom; background-repeat: no-repeat; border-radius: 12px; background-size: cover;}
.dashboard-for-card .users_card{background-image: url("../images/users-bg.png"); background-position: center bottom; background-repeat: no-repeat; border-radius: 12px; background-size: cover;}
.dashboard-for-card .newusers_card{background-image: url("../images/new-users-bg.png"); background-position: center bottom; background-repeat: no-repeat; border-radius: 12px; background-size: cover;}
.dashboard-for-card .totalsales_card{background-image: url("../images/total-sales-bg.png"); background-position: center bottom; background-repeat: no-repeat; border-radius: 12px; background-size: cover;}

.dashboard-for-card h5.card-title {display: flex; align-items: center !important;}
.dashboard-for-card h5.card-title::before {height: 40px; width: 40px; content: ""; display: block; border-radius: 6px; margin-right: 12px;}
.dashboard-for-card .cource_card h5.card-title::before {background: #D5D7F4 url("../images/course-icon.png"); background-position: center; background-repeat: no-repeat; background-size: 24px;}
.dashboard-for-card .users_card h5.card-title::before {background: #FEA028 url("../images/users-icon.png");	background-position: center; background-repeat: no-repeat; background-size: 24px;}
.dashboard-for-card .newusers_card h5.card-title::before {background: #FD1E08 url("../images/new-users-icon.png"); background-position: center;	background-repeat: no-repeat; background-size: 24px;}
.dashboard-for-card .totalsales_card h5.card-title::before {background: #4C56A1 url("../images/total-sales-icon.png"); background-position: center;	background-repeat: no-repeat; background-size: 24px;}


.dashboard-table .table-bordered th {background-color: #383541; color: #fff; font-weight: 500 !important; font-family: 'Poppins', sans-serif;}
.dashboard-table .table-img img {padding: 0; border-radius: 60px; width: 40px; height: 40px;}
.dashboard-table .btn {background: #C9CBE3; color: #4B51A0; font-weight: 500 !important; font-size: 13px;}
.table-bordered td, .table-bordered th {vertical-align: middle; padding: .65rem .65rem;}
.dashboard-table table {color: #74757B !important;}
.dashboard-for-card .card-link {position: absolute; right: 18px; bottom: 24px;}
.text-course {color: #DE5F27;}
.dashboard-table .table-bordered td, .dashboard-table .table-bordered th {border: 1px solid #CECECE;}
.dashboard-table .table-striped tbody tr:first-child {background-color: transparent;}
.dashboard-table .table-striped tbody tr:first-child th:first-child {border-top-left-radius: 15px; border-left: 1px solid transparent;}
.dashboard-table .table-striped tbody tr:first-child th:last-child {border-top-right-radius: 15px; border-right: 1px solid transparent;}
.dashboard-table .table-bordered th {border-top: 0;}

/*.dashboard-table .table-striped tbody tr:last-child {background-color: transparent;}*/
/*.dashboard-table .table-striped tbody tr:last-child td:first-child {border-bottom-left-radius: 15px; border-left: 1px solid transparent;}*/
/*.dashboard-table .table-striped tbody tr:last-child td:last-child {border-bottom-right-radius: 15px; border-right: 1px solid transparent;}*/

.scorecard-row .scorecard-box img {max-width: 60px;}
.scorecard-row > div {margin-top: 30px;}
.scorecard-box .mobile_txt {font-size: 13px; color: #525f77; line-height: 1.1;}
.scorecard-row .scorecard-box .mobile_score.count {font-size: 40px;	margin-bottom: 0; position: absolute; top: 30px; right: 30px; color: #d0601b;}
.scorecard-row .scorecard-box {border-radius: 18px; overflow: hidden;}
.graf {border-radius: 10px;}

.scorecard-row .scorecard-box::after {width: 100px;	height: 100px; border: 15px solid #f4d3be; content: ""; position: absolute;	right: -50px; bottom: -50px; border-radius: 100%;}
.scorecard-row .scorecard-box:hover {background-color: #4c53a0 !important;}
.scorecard-row .scorecard-box .mobile_score-bg {display: inline-block; border-radius: 100%; background-color: #fff; padding: 5px; overflow: hidden;}
.scorecard-row .scorecard-box:hover .mobile_score.count {color: #c1c7ff;}
.scorecard-row .scorecard-box:hover .mobile_txt {color: #c1c7ff;}
.scorecard-row .scorecard-box:hover::after {border-color: #c1c7ff;}

.google_translate {position: absolute; right: 274px; top: 29px; border-radius: 3px; padding: 7px;}
.google_translate .goog-te-gadget-simple {border: none;}

.categories-popularity-dtl .view-heading {line-height: 1;}
.categories-popularity-dtl .view-heading.course-icon-detail {flex-wrap: wrap; margin: 0.7rem -0.5rem !important;}
.categories-popularity-dtl .view-heading.course-icon-detail .meta-item {flex: 0 0 auto; width: 50%;	padding: 0 .5rem !important; margin: 0.2rem auto !important; display: flex;}
.categories-popularity-dtl .view-heading.course-icon-detail .meta-item i {margin-top: 3px; margin-right: 10px;}
.categories-popularity-dtl p {font-size: 13px; line-height: 1.3;}
.categories-popularity-main-block .course-bought-block .col-lg-4.col-sm-4 a {background-color: #fff; min-height: 100%; display: flex !important; align-items: center !important; padding: 10px; border-radius: 6px; border: 1px solid #e1e1e1;	box-shadow: 0 0 4px rgba(0,0,0,0.1);}
.categories-popularity-main-block .course-bought-block .col-lg-4.col-sm-4 a img {border-radius: 0 !important; width: 100% !important;}



@media screen and (max-width: 1200px) {
.quiz-main-block.quiz-main-block-two {padding-left: 45px; padding-right: 45px;}
.question-icon .btn {font-size: 12px;}
.google_translate {right: 234px; top: 29px;	padding: 4px;}
.google_translate a {font-size: 12px;}
}

@media screen and (max-width: 992px) {
 #categories-tab {display: none;}
.fullscreen-search-block .logo {max-width: 92px;}
.nav-search.nav-wishlist {margin-bottom: 0; }
.navigation.fullscreen-search-block {display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-align: center !important; align-items: center !important;}
.fa.fa-search {padding: 0 !important;}
.red-menu-badge {left: 20px; top: 0px;}
.nav-bar-main-block .panel-title > a, .nav-bar-main-block .panel-title > a:active {font-family: 'Poppins', sans-serif;}
.sidenav a {font-weight: 700;}
.nav-bar-main-block .panel-title > a {border-top: 1px solid rgba(255, 255, 255, 0.2);}
.nav-bar-main-block .panel-title > a:hover{background: rgb(209,100,26); background: linear-gradient(281deg, rgba(209,100,26,1) 0%, rgba(193,40,42,1) 100%);}
.dashboard-btn {padding: 13px 15px !important;}
}


@media screen and (max-width: 991px) {
.font-size-50 {font-size: 40px;}
.font-size-40 {font-size: 30px;}
.home-heading {font-size: 38px;}
.font-size-22 {font-size: 20px !important;}
.font-size-38 {font-size: 26px;}
.homepad {padding-top: 4rem; padding-bottom: 4rem;}
.quiz-main-block.quiz-main-block-two {padding: 20px 15px;}
#home-background-slider .home-dtl h2.home-heading {font-size: 1.5rem;}
/*.home-main-block .col-sm-6 {min-height: 270px;}*/
#home-background-slider .home-dtl p {font-size: 1rem;}
.destinations-list {height: auto !important;}
.mobile-app {margin-top: -60px;	margin-bottom: -40px;}
.mobile-app img {max-width: 270px;}
.footer_title.footer-logo img {max-width: 180px;}
.popularexams {margin-right: -8px; margin-left: -8px;}
.popularexams > div {padding-right: 8px; padding-left: 8px;}
.coursebox {max-width: 46px;}
.mission-mad::before {display: none;}
.contact-us-main-block .contact-dtl ul.contactbox i {width: 60px; height: 60px;	line-height: 60px;}
.contact-us-main-block .contact-dtl ul li i {font-size: 20px;}
.contact-us-main-block .contact-dtl ul.contactbox li.font-size-24 {font-size: 18px;}
.dashboard-table table {min-width: 800px;}
.graf > div {height: 350px !important;}
}



@media screen and (max-width: 767px) {
h1 {font-size: 26px;}    
.font-size-50 {font-size: 30px;}
.font-size-40 {font-size: 26px;}
.font-size-35 {font-size: 25px;}
.font-size-30 {font-size: 24px;}
.font-size-28 {font-size: 22px;}
.font-size-26 {font-size: 20px;}
.font-size-18 {font-size: 15px;}
.home-heading {font-size: 30px;}
.font-size-16 {font-size: 14px;}
.font-size-15 {font-size: 14px;}
.home-main-block h3 {font-size: 18px;}
.blog-home-main-block,.wishlist-home-main-block {padding: 25px 0px;}
.blog-home-main-block h1, .wishlist-home-main-block h1 {font-size: 24px; text-align: center;}
.profile-info-block,.social-profile-block {padding: 25px;}
.signup-block .logo img.img-fluid {max-width: 220px;}
.homepad {padding-top: 3rem; padding-bottom: 3rem;}
#home-background-slider .home-dtl h2.home-heading {font-size: 1.2rem;}
#home-background-slider .home-dtl h3 {font-weight: 500 !important; font-size: 0.85rem;}
#home-background-slider .home-dtl p {font-size: 0.85rem;}
#home-background-slider .btn_banner {padding: 3px 0px !important; font-size: 13px !important;}
.home-main-block{padding: 50px 0px;}
/*.home-main-block .col-sm-6 {min-height: 230px;}*/
#student-view-slider .course-icon-detail,
#recent-courses-slider .course-icon-detail{display: block; padding-top: 0px; padding-bottom: 0px;}
#student-view-slider .course-icon-detail .meta-item,
#recent-courses-slider .course-icon-detail .meta-item{text-align: left !important; display: flex;	-webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; font-weight: 400; padding: 2px 0;}
#student-view-slider .course-icon-detail .meta-item .fa,
#student-view-slider .course-icon-detail .meta-item .fa{margin-right: 6px;}
.years-experience-img img {max-width: 40px;}
.mobile-app img {max-width: 100%;}
.footer-main-block {padding-top: 40px;}
#student-view-slider .img-wishlist {margin-top: -74px;}
.learning-business a, .Login-btn,.logout-btn{padding: 4px 10px !important;}
.exam-tab .upsc-scroll .tabhome .nav a {padding: .2rem 12px; margin: 0 5px 0 0px; font-size: .775rem;}
.exam-tab .upsc-scroll .scroller {width: 36px; height: 36px;}
.or-sidebar::before, .or-sidebar::after {width: 41%;}
.categories-dcs ul.list,.categories-dcs ol {padding-left: 20px;}
.table-responsive table {min-width: 767px;}
.tab-menu-detail a {padding: 8px 25px !important;}
.business-home-main-block {padding: 25px 0;}
.contact-us-main-block .form-group .form-control {margin-bottom: 0px;}
.dashboard-btn {padding: 9px 12px !important;}
.dashboard-row .col-xl-3.col-lg-4 > div .dashboard-items ul li.helpandsupport {margin-top: 40px; margin-bottom: 30px;}
.dashboard-row .col-xl-3.col-lg-4 > div .dashboard-items ul li.logoutsidebar{margin-bottom: 30px;}
.google_translate {right: 226px; top: 21px;}
}


@media screen and (max-width: 575px) {
.home-heading {font-size: 24px;} 
.font-size-50 {font-size: 25px;}
.font-size-40 {font-size: 24px;} 
.learn_anytime_box .learn_anytime_col {margin-top: 0px !important;}
/*#blog-post-slider {padding: 0 15%;}*/
#blog-post-slider,#student-view-slider,#recent-courses-slider {/*max-width: 290px;*/ margin: 0 auto;}
.home-dtl p {font-size: 15px;}
.learn_anytime_box .learn_anytime-01:nth-child(2) {margin: 15px auto !important;}
.datebox > div button {width: 38px;	height: 38px;}
.finish-button .btn,
.next-btn_exam .btn{width: 100%;}
.datebox {height: 210px;}
/*.home-main-block .col-sm-6 {min-height: 190px;}*/
.owl-carousel.owl-drag .owl-item #home img {max-width: 290px; margin: 0 auto;}
.mobile-app {margin-top: 0;}
.homebaner {background: url("../images/slider/mobile-banner.jpg") !important; background-repeat: no-repeat !important; background-position: center bottom !important; background-size: 100% !important; padding-bottom:62%;}
.homebaner .home-main-block {padding-top: 32px; padding-bottom: 0;}
.featured-row {margin-right: -10px;	margin-left: -10px;}
.featured-row > div {padding-right: 5px; padding-left: 5px;}
.protip-wishlist ul li i {font-size: 13px; padding: 6px; width: 32px; height: 32px;	line-height: 20px;}
.tabhome .nav a {font-size: .75rem;	padding: .5rem 10px; margin: 0 6px 0 0px;}
.vision-icon {width: 60px; height: 60px; line-height: 70px; min-width: 60px;}
.vision-icon i {font-size: 32px;}
.dashboard-for-card > div {-webkit-box-flex: 0;	-ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%;}
.scorecard-row > div {margin-top: 20px;}
.google_translate {right: auto; top: -10px; padding: 2px 1px; position: relative; display: inline-block;}
.watermark {font-size: 14px !important;}
.categories-popularity-main-block .course-bought-block {height: auto !important;}
}

@media screen and (max-width: 479px) {
.homebaner .home-main-block {padding-top: 22px;}
#home-background-slider .home-dtl h2.home-heading {font-size: 1.1rem;}
.featured-row .student-view-block .view-img img {height: 100px !important;}
.featured-row .student-view-block .view-heading a {font-size: 13px;	line-height: 1;	display: block;}
.course-icon-detail > div > div {font-size: 11px;}
.course-icon-detail > div {flex: 0 0 auto; width: 100%;	padding: 0 !important; margin: 2px 0 !important;}
.img-wishlist {margin-top: -68px;}
.popularexams > div {-webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%;}
.dashboard-for-card > div {-webkit-box-flex: 0;	-ms-flex: 0 0 100%;	flex: 0 0 100%;	max-width: 100%;}
.graf > div {height: 310px !important;}

}


.mark_next .more_quiz_box .fa-bookmark-o {font-size: 18px !important;}

@media screen and (max-width: 991px) {
.finish_btn_quiz {margin-bottom: 32px; width: 100%;}
.homebaner .home-main-block {padding-top: 35px;	padding-bottom: 35px;}

}

@media screen and (max-width: 767px) {
.contact-us-main-block .contact-dtl ul.contactbox li.font-size-24 {font-size: 18px;}
.dashboard-for-card .card-text {
	font-size: 36px;
}
}

@media screen and (max-width: 630px) {
.mark_next button {width: 100%;  margin-top: 10px; margin-left: 0 !important; margin-right: 0 !important;}
.finish_btn_quiz .btn {width: 100%;}
}

@media screen and (max-width: 575px) {
#student-view-slider .owl-nav {left: 8px; right: 8px;}
.Login-btn a, .logout-btn a, .logout-btn span {font-size: 12px;}
.homebaner .home-main-block {padding-bottom: 0px;}
}





/******************* BASIC STYLING **********************/
.scroll_tabs_container {
  position: relative;
  top: 0px;
  left: 0px;
  right: 0px;
  text-align: left;
  height: 40px;
  margin-bottom: 10px;
}
.scroll_tabs_container div.scroll_tab_inner span, .scroll_tabs_container div.scroll_tab_inner li {
  line-height: 40px;
}
.scroll_tabs_container .scroll_tab_left_button {
  height: 40px;
}
.scroll_tabs_container .scroll_tab_left_button::before {
  content: "\25C0";
  line-height: 40px;
}
.scroll_tabs_container .scroll_tab_right_button::before {
  content: "\25B6";
  line-height: 40px;
  padding-left: 5px;
}

.scroll_tabs_theme_light .scroll_tab_left_button {
  height: 40px;
  background-color: #4b51a0;
  border-radius: 30px;
	width: 40px !important;
	text-align: center;
}
.scroll_tabs_theme_light .scroll_tab_left_button::before {
  content: "\25C0";
  line-height: 40px;
  color: #fff;
}

.scroll_tabs_theme_light .scroll_tab_right_button {
	height: 40px;
	background-color: #4b51a0;

	border-radius: 30px;
	width: 40px !important;
	text-align: center;
}
.scroll_tabs_theme_light .scroll_tab_right_button::before {
  content: "\25B6";
  line-height: 40px;
  color: #fff;
}

.exam-tab .mainpage .wrapper-nav .list {
	position: relative;
}

/*add by sandhya agarawal*/

/* new */
.font-weight-mediam {font-weight: 500;}
.day-count{display: flex; align-items: center !important;}
.user-img {max-width: 40px; min-width: 40px;}
.text-yellow {color: #E9C50F;}
.text-orange {color: #E88C09;}
.text-green {color: #50B82C;}
.text-blue {color: #7681EA;}
.bg-blue {background-color: #EAECFC;}
.bg-green {background-color: #E5F4DF;}
.bg-orange {background-color: #FCEEDA;}
.bg-yellow {background-color: #FCF6DB;}
.bg-green-dark {background-color: #50B82C;}
.resultpage li.nav-item a.active {background: rgb(193, 40, 42); background: linear-gradient(281deg, rgba(193, 40, 42, 1) 0%, rgba(209, 100, 26, 1) 100%); color: #fff !important;}
.btn-w {font-weight: 500 !important;}
.resultpage .nav-tabs li.nav-item a {padding: .4rem 0.7rem; border-radius: .4rem !important;}
.rounded-22 {border-radius: .30rem !important;}
.ms-auto {margin-left: auto;}
.me-auto {margin-right: auto;}
.rounded-pill {border-radius: 40px;}
.d-flax {display: flex;}
.table-hover thead.table-dark:hover {background-color: #4b51a0;}
.positive {width: 20px; height: 20px; line-height: 12px;}
.min-lable {min-width: 80px;}
@media screen and (max-width: 991px) {
.row-col-five > div {-webkit-box-flex: 0; -ms-flex: 0 0 33%; flex: 0 0 33%; max-width: 33%; margin-bottom: 0.5rem;}
.resultpage-table table {min-width: 980px;}
}

@media screen and (max-width: 767px) {
.ground-zero {font-size: 16px;}
.resultpage .nav-tabs li.nav-item a {padding: .3rem 0.5rem;}
}

@media screen and (max-width: 450px) {
.row-col-five > div {-webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; margin-bottom: 0rem;}
}




































