
 :root {
  --background-blue-bg-color: #0284A2;
  --linear-gradient-bg-color:linear-gradient(-45deg, #6E1A52 0,#F44A4A 100%);
  --linear-gradient-reverse-bg-color:linear-gradient(-45deg, #F44A4A 0, #6E1A52 100%);
  --linear-gradient-detail-bg-color:linear-gradient(220deg, #F44A4A -30%, #6E1A52 70%);
  --linear-gradient-about-bg-color:linear-gradient(197.61deg,#F44A4A,#6E1A52);
  --linear-gradient-about-line-bg-color:linear-gradient(213deg,#F44A4A,#6E1A52);
  --linear-gardient-help-bg-color:linear-gradient(to bottom, rgba(172,51,73,1) 0%, rgba(110,26,82,1) 100%);
  --background-red-bg-color:#e2013b; 
  --background-grey-bg-color:#F7F8FA;
  --background-light-grey-bg-color:#F9F9F9;
  --background-black-bg-color:#29303B;
  --background-white-bg-color:#FFF;
  --background-mehroon-bg-color:#992337;
  --text-black-color:#29303B;
  --text-light-grey-color:#777;
  --text-red-color:#e2013b;
  --text-dark-grey-color:#686F7A; 
  --text-blue-color:#0284A2;
  --text-dark-blue-color:#003845;
  --text-white-color:#FFF;
}
@font-face 
{
    font-family: 'milkshakeregular';
    src: url('../font/milkshake_400-webfont.woff2') format('woff2'),
         url('../font/milkshake_400-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
/* ================================= */
    /*===== Typography =====*/
/* ================================= */
body {  
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--text-black-color);
  font-size: 15px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  width:100%;
  padding:0;
  margin:0;
}
  body {
        -webkit-user-select: none;
        -webkit-touch-callout: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
      }
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html,
body {
  height: 100%;
  width:100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
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: var(--text-blue-color);
  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;
  cursor: pointer;
}
a:hover, 
a:focus {
  color: var(--text-dark-blue-color);
  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 =====*/
/* ================================= */
.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:#e2013b;
  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: #0f7c90;
}
.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: #e2043d;
  color: var(--text-white-color);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #e2043d;
  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 #0f7c90;
  background-color: #0f7c90;
  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 #0284A2;
  -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: var(--text-blue-color);
  background-color: var(--background-white-bg-color);
  border-radius: 50%;
  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 {
  color: var(--text-blue-color);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.owl-dot {
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
}
.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid #000;
  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%);
}
.navigation .sidenav.is-closed
{
   width:0;	
}
.navigation .sidenav.is-open
{
   width:250px;	
}
.text-center {
  text-align: center;
}
.txt-rgt {
  text-align: right;
}
.txt-black {
  color: #000;
}
.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 #0284A2;
}
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: #000;
  font-weight: 500;
  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: #e2043d;
  border: 1px solid #e2043d;
  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: 10px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.08);
  border-bottom: 1px solid #c7c7c770;
}
.nav-search .form-control {
  padding: 13px 0 13px 20px;
  color: #000;
  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;
  padding: 10px 14px 5px;
  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: -6px;
  color:var(--text-red-color);;
  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;
 font-size: 10px;
    opacity: 0.8;
}
.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;
  }
  .categories-popularity-dtl
	{
		
	}
}
@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:180px 90px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
}
.home-heading 
{
	font-size: 48px;
    font-weight: 800;
    padding-top: 20px;
    line-height: 50px;
	color:#fff;
}
.home-dtl p.sub-head
{
  font-size: 48px;
    font-weight: 800;
    padding-top: 20px;
    line-height: 50px;
	color:#fff;
}
.home-dtl p.decs
{
	font-size: 18px;
    font-weight: 400;
}
.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) {
  .Login-btn {
    text-align: center;
    margin-bottom: 20px;
  }
  .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: 26px;
    line-height: 30px;
  }
  .home-main-block {
    padding: 80px 0px;
    height: 350px;
  }
  .home-dtl p.sub-head {
    font-size: 15px;
    padding-top: 0;
	}
	.home-dtl p.decs {
    font-size: 15px;
    font-weight: 300;
	}
  .search-block .form-control {
    width: 100%;
  }
}

/* ================================= 
    /*===== Work =====*/
/* ================================= */
.learning-work-main-block {
  background: var(--linear-gradient-reverse-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;
  opacity:1;
}

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

/* ================================= 
    /*===== 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;
}
.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 #0284A2;
  -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) #0284A2 #0284A2;
}
.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;
  }
}
@media (max-width: 567px) and (max-width: 767px) {
  .student-view-slider-main-block {
    margin-bottom: 30px;
  }
}

/* ================================= 
    /*===== Student-View =====*/
/* ================================= */
.student-view-block 
{
  margin-bottom: 0px;
  border-radius: 5px;
}
.student-heading 
{
      color: #060606;
    font-size: 26px;
}
.view-dtl {
  padding: 10px;
  border-radius: 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;
  
}
.best-seller {
  position: absolute;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  top: 12px;
  bottom: 0;
  left: 0;
  background-color: #F4C150;;
  width: 80px;
  height: 15px;
  z-index: 9;
  border-radius: 0 10px 10px 0;
}
.student-view-block:hover {
  box-shadow: 0 2px 8px 2px rgba(20,23,28,0.2);
}
.student-view-block {
	
	-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-radius: 6px;
    box-shadow: 0 2px 5px 0 rgb(17 121 239 / 15%);
    border: 1px solid #e6ecef;
    background: #fff;
}
.view-heading {
  font-size: 16px;
  color: var(--text-black-color);
  font-weight: 500;
  margin-bottom: 5px;
	margin-top: 5px;
	height: 40px;
}
.view-heading a 
{
	
  color: var(--text-black-color);
  font-weight: 500;
  display: block!important;
    display: -webkit-box!important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
	font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.02rem;
    font-size: 16px;
	
}
.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;
}
.description-list .rating ul li {
  display: inline-flex;
  color: var(--text-light-grey-color);
  font-size: 14px;
  vertical-align: text-bottom;
}
.description-list .rate ul li strike {
  display: inline-block;
  color: var(--text-dark-grey-color);
  font-weight: 300;
}
.view-dtl .rating ul li i {
  color: #F4C150;
}
.view-dtl .rate ul li {
  display: inline-block;
  color: var(--text-black-color);
  font-size: 19px;
}
.view-dtl .rate ul li strike {
  display: inline-block;
  color: var(--text-dark-grey-color);
  font-weight: 300;
}
.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-reverse-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:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}
.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: 80px;
  height: 80px;
  border-radius: 100%;
  margin-right: 20px;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px 0 rgb(141 169 188 / 20%);
} 
.testimonial-block {
  background-color: var(--background-white-bg-color);
  padding: 30px;
  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 100px;
    margin-bottom: 0;
  }
  .patners-heading {
    font-size: 12px;
  }
}

/* ================================= */
    /*===== Footer =====*/
/* ================================= */
.footer-block {
  padding: 30px 0 10px;
}
.widget {
  color: var(--text-blue-color);
  margin-bottom: 10px;
}
.footer-link ul li {
  margin-bottom: 15px;
}
.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 #F44A4A;
}
.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-color:#181D32!important;
  position: relative;
}
.about-home-block {
  padding: 50px 0;
}
.about-home-heading {
  font-size: 36px;
}
.about-home-block p {
  font-size: 16px;
}
.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;
}
.about-home-block ul li {
  display: flex;
  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-home-dtl-block {
  background-color: var(--background-white-bg-color);
  color: var(--text-light-grey-color);
  padding: 20px 30px 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: #992337;
}
.about-home-offer span {
  font-weight: 700;
}
.about-home-offer i {
  color: var(--text-white-color);
  margin-right: 5px;
  -webkit-text-stroke: 1px #992337;
}
.about-home-btn .btn-primary {
  padding: 15px 0;
  width: 100%;
  border-radius: 1px;
  font-weight: 500;
  font-size: 17px;
  background-color:#e2043d;
  color:#fff;
}
.about-home-btn .btn-primary:hover
{
	background-color:#0f7c90;
	color:#fff;
}
.about-home-includes-list ul li {
  margin-bottom: 8px;
  font-size: 14px;
}
.about-home-includes-list ul li span {
  font-weight: 500;
  font-size: 20px;
}
.about-home-includes-list ul li i {
  margin-right: 10px;
  -webkit-text-stroke: 1px #505763;
  color: var(--text-white-color);
}
.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: 50px;
  width: 100%;
}
@media (max-width: 992px) {
  .about-home-product {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
}

/* ================================= */
    /*===== Product-Dtl-Page =====*/
/* ================================= */
.about-product-main-block {
  padding: 50px 0 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: 10px;
  margin-left: 20px;
  font-size: 14px;
  line-height: 1.5;
}
.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 #181d32;
}
.about-home-main-block .video-device .bg_img {
  background-size: cover;
  width: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 230px;
}
.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: 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;
}
.about-home-main-block .btn-video-play:hover {
  opacity: 0.8;
}

/*===== Requirements  =====*/
.requirements {
  padding: 30px 0;
}
.requirements ul li {
  font-size: 14px;
  font-weight:500;
}
.requirements ul {
  list-style-type: circle;
  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: var(--text-white-color);
}
.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 #F44A4A;
  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;
}
.course-bought-block .course-rate .heart-two i {
  -webkit-text-stroke: 1px #F44A4A;
  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%;
}
@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: 100%;
}
.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;
}
.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 #0284A2;
  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: 16px;
}
.signin-link .btn-info {
  width: 100%;
  padding: 12px 27px;
  text-align: left;
  background-color: #1A538A;
  font-size: 20px;
  border-radius: 3px
}
.signin-link .btn-info:hover {
  background-color: #164675;
}
.signin-link .btn-white {
  width: 100%;
  padding: 12px 25px;
  color: var(--text-black-color);
  text-align: left;
  font-size: 20px;
  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: 20px;
}

@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: 60px 0;
}
.signup-form .form-control {
  padding: 15px 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: 1111;
  top: 20px;
  left: 20px;
  color: #CACBCC;
}
.form-check-label  {
  font-size: 18px;
  margin-left: 10px;
}
.form-check .form-check-input {
  width: 20px;
  display: inline-block;
  float: left;
  height: 20px;
  margin-top: 2px;
}
.signup-form .btn-primary {
  padding: 15px 0;
  width: 100%;
}
.signup-block {
  border: solid 1px #DEDFE0;
  border-radius: 0 0 9px 9px;
  padding: 40px 50px;
}
.signup-form hr {
  border: 1px solid #DEDFE0;
}
.signin-link {
  font-size: 12px;
}
.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-form .form-control {
    font-size: 13px;
  }
  .signup-block {
    padding: 40px 35px;
  }
}

/* ================================= */
    /*===== 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 {
  margin: 2px 0 0;
  border-radius: 1px;
  color: #0C849D;
  border: 1px solid #0C849D;
  font-size: 15px;
  text-transform: none;
  padding: 5px 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;
}
.about-blog-main-block {
  background: var(--linear-gradient-about-line-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 #F44A4A;
  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 190px;
  }
}

/*===== 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 #F44A4A;
}

@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: #000;
}
.about-work-block {
  background: linear-gradient(40deg,#1A263A 33%,#4A8394 84%,#6AC1D0);
  padding: 45px 90px;
  height: 100%;
}
.about-work-heading {
  font-size: 28px;
  padding: 10px;
  color: #F5C252;
}
.about-work-block p a {
  color: #008FAA;
}
.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;
}
.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;
}
.about-learning-blog-paragraph p {
  font-size: 15px;
  font-weight: 400;
}
.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;
}
.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;
  color: #F7F8FA;
  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-detail-bg-color); 
  padding: 55px 0 185px;
  position: relative;
}
.business-home-slider-main-block {
  position: relative;
  top: -15%;
  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 
{
 height: 100%;
}
.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 #F44A4A;
  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 #F44A4A;
  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;
}
.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;
}
.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: 200px 0 50px 0;
}
/*.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 #0284A2;
}
.categories-popularity-main-block .pagination .page-item .page-link.active {
  color: var(--text-white-color);
  background: var(--background-blue-bg-color);
  border: 1px solid #0284A2;
}
.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 #0284A2;
}
.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-bottom: 50px;
}
.catalog-main-block {
  background-color: var(--background-grey-bg-color);
  padding: 10px 0;
}
.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: 1500px) and (max-width: 1900px) {
  .business-home-slider-main-block {
    top: -15%;
  }
}
@media (min-width: 992px) and (max-width: 1500px) {
  .business-home-slider-main-block {
    top:-20%;
  }
}
@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;
  }
  .footer-dropdown {
    text-align: left;
  }
}
@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 {
  background-color: #e2013b;
  padding: 50px 20px; 
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 0;
}
/*.blog-slider {
  border-top: 3px solid #F4F4F4;
  padding: 30px 0 0;
}*/
.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: 24px;
  position: relative;
  margin-bottom: 0;
}
.blog-main-block {
  padding: 40px 0 0;
}
.blog-main-block hr {
}
.blog-slider-dtl {
  padding: 10px 30px; 
}
/*.blog-slider-img {
  display: inline-block;
  float: left;
}*/
.slider-date {
  color: #6D7A91;
}
.blog-slider-heading a {
  font-size: 24px;
  color:#e2043d;
}
.blog-slider-heading a:hover {
  color: #e2043d;
}
.business-home-slider-btn .btn-link {
  background-color:#e2043d;
  border-color: transparent;
  color: #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;
}
.business-home-slider-btn .btn-link:hover {
  background-color: #F4F4F4;
  border-color: transparent;
  color: #292929;
}
.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-left: 15px;
}
.blog-main-block .owl-dot:hover {
  background-color: #CBCBCB; 
  border: 2px solid #117D97;
}
.blog-main-block .owl-dot.active {
  border: 1px solid #117D97;
  background-color: #117D97;
}
.blog-main-block .owl-dots {
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
} 
.blog-block-img {
  float: left;
  width:100%;
}
.blog-block-img img
{
	width:100%;
}
.blog-main-block .page-item .page-link {
  color: #117D97;
  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: #117D97;
  border: 1px solid #117D97;
  border-radius: 0;
  padding: 10px 15px;
}
.blog-main-block .page-item .page-link:hover {
  color: #084054;
  background-color: #EDEEF0;
}
.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;
      font-weight: 700;
}
.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 {
    height: calc(2.90rem + 2px) !important;
  padding: 6px 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;
  height: 80%;
  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: 600px;
}

/* ================================= */
    /*===== 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 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);
}
.learning-courses-home-block i {
  color: var(--text-dark-grey-color);
  vertical-align: top;
}
.progress-block .progress-heading {
  font-weight: 500;
}
.learning-courses-home-heading a:hover {
  color:  #0284A2;
}
.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: 600;
  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: 20px;
  width: 82px;
  height: 82px;
}
.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: 5px 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: 15px;
  padding: 0 33px;
  color: var(--text-light-grey-color);
  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-about-main-block .nav-tabs .nav-item.show .nav-link, 
.learning-courses-about-main-block .nav-tabs .nav-link:hover {
  color: var(--text-black-color);
  border-bottom: 5px 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: var(--text-black-color);
  border-bottom: 5px solid #0284A2;
}
.blog-slider-block {
  margin-bottom: 50px;
}
.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;
}
@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: var(--background-white-bg-color);
  padding: 10px 15px;
}
.filter-dropdown ul li {
  display: inline-block;
}
.filter-dropdown .language-select .select {
  color: var(--text-dark-grey-color);
}
.filter-dropdown .dropdown-select {
  border-top: 2px solid #F4C150;
}
.filter-dropdown .dropdown-select-one {
  border-top: 2px solid #CC87B4;
}
.filter-btn {
  display: inline-block;
  margin-right: 10px;
}
.filter-btn-one .btn-info {
  background-color: var(--background-white-bg-color);
  border: 1px solid #0284A2;
  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 #F44A4A;
  -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-gardient-help-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 {
  top: 10%;
  left: 6%;
  font-size: 22px;
  position: absolute;
  color: #DB4747;
}
.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 #0284A2;
  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;
  height: 85px;
  color: #4A4A4A;
  border: 1px solid #CBCBCB;
  cursor: pointer;
  text-align: center;
}
.help-contact {
  background: var(--background-blue-bg-color);
  padding: 30px;
  height: 210px;
}
.help-contact:hover {
  background-color: #00576B;
}
.help-contact ul {
  font-size: 16px;
}
.help-contact span {
  font-size: 24px;
}
.help-tab-one {
  padding: 30px;
  height: 210px;
}
.help-tab-one ul li {
  display: block;
  font-size: 13px ;
  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: #000;
}
.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: 40px 0 60px;
}
.online-blog-main-block .section p {
  font-size: 20px;
}
.online-blog-block {
  padding: 30px;
  border: 1px solid #DEDFE0;
  height: 410px;
  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: #992337;
}
.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: linear-gradient(22.72914987deg,#F5C252 4%,#6AC1D0);
  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: #003845;
  padding-left: 3px;
}
.review-table .table td, 
.review-table .table th {
  padding: .75rem;
  vertical-align: top;
  border-top: none;
  font-weight: 500;
  color: #003845;
  text-align: right;
}
.blog-main-block .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 260px;
  margin-right: 50px;
}
.owl-carousel .owl-item img 
{
	border-radius: 5px 5px 0px 0px;
}
.about-home-btn .btn-secondary {
  padding: 15px 0;
  width: 100%;
  border-radius: 2px;
  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: #0f7c90;
  border: 1px solid #0f7c90;
  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: #e2013b;
  padding: 30px 0px;
}
.wishlist-home-heading {
  margin-bottom: 0;
  font-family: 'Montserrat';
    font-size: 24px;
}
.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 #F44A4A;
}
.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 #F44A4A;
  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 #F44A4A;
  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:#e2043d;
}
.nav-wishlist i {
  font-size: 20px;
  color: var(--text-white-color);
  -webkit-text-stroke: 1px #F44A4A;
  border: 1px solid transparent;
  padding: 16px 13px 10px;
  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: rgb(226 4 61);
  border: 1px solid rgb(226 4 61);
}

@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;
  background: #f7f7f7;
}
.cart-heading
{
	background-color: #e2013b;
    padding: 15px 20px;
}
.cart-heading h4
{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: normal;
    text-transform: uppercase;
    font-family: 'Montserrat';
	margin:0;
}
.cart-price-detail span
 {
    color: #000;
    font-weight: 600;
}
.cart-items
{
	background: #fff;
    display: inline-block;
    width: 100%;
    border-radius: 0 0 4px 4px;
	padding: 20px 20px;
	
}
h1.checkout-total
{
	font-size: 22px;
    font-weight: 800;
}
.cart-course-name a
{
	font-size: 18px;
    color: #000;
    font-weight: 500;
}
.cart-course-name a:hover
{
    color: #383838;
}
.cart-add-block 
{

}
.cart-actions
{
	margin-left: 15px;
}
.cart-img {
  position: relative;
}
.cart-img img {
    width: 100%;
	border-radius: 5px;
}
.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: #000;
}
.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: 500;
  color: #29303b;
}
.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: #000;
}
.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: #e2043d;
  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: #e2013b;
}
.cart-wishlisht-btn:hover {
   color: #e2013b;
}
.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: 34px;
  padding: 0 10px;
  font-size: 13px;
  width: 100%;
  margin-bottom: 10px;
}
.coupon-apply button {
  height: 34px;
  padding: 0 10px;
  font-size: 13px;
  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 {
  font-size: 12px;
  color: var(--text-blue-color);
}
.cart-price-detail ul li {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-dark-grey-color);
  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: #000;
  font-weight: 500;
  font-size: 22px;
}
.cart-total-two span {
  color: #000;
  font-weight: 500;
  font-size: 22px;
}

.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 60px;
  }
  .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: 40px;
}
.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: 18px;
  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: #F44A4A
}
.red-menu-badge {
  position: absolute;
  padding: 2px 6px;
  line-height: 1.43;
  font-weight: 500;
  color: white;
  border-radius: 100%;
  font-size: 10px;
  background: #F44A4A
  box-shadow: 0.5px 0.2px 1px rgba(0, 0, 0, 0.5);
  display: inline-block;
  text-align: center;
  left: 28px;
  top: 2px;
  z-index: 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 10px;
  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-color: #E9EAED;
  text-align: center;
  font-weight: bold;
  padding: 8px;
  font-size: 15px;
  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;
}
.user-detailss {
  color: var(--text-light-grey-color);
  font-size: 15px;
}



.heart-category i 
{
  color: #e6e6e6;
  font-size: 23px;
  cursor:pointer;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.heart-category i:hover 
{
  color: #e2043d;
}

/*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: 110px;
}
.dropdown__item {
  align-self: center;
  margin-left: .5em !important; /*damn you bootstrap!*/ 
}
.my-dropdown > .name {
  overflow: hidden;
  width: 0%;
  transition: width 300ms ease-out;
}
.my-dropdown > .name-shown {
  width: 60%;
}
.circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
}

.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: 47px;
  border-bottom: 1px solid rgba(215, 215, 215, 0.17)
}
.dropdown ul li {
  padding-right: 20px;
  font-size: 15px;
  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 #0284A2;
  display: inline-block;
  float: left;
}
.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: 10px;
}
.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: 40px 0 44px 0;
  background-color: var(--background-white-bg-color);
  margin-bottom: 25px;
}
.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: #000;
}
.dashboard-items {
  padding: 28px 0 42px;
  background-color: var(--background-white-bg-color);
}
.dashboard-items ul li {
  padding: 22px 0 22px 51px;
  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;
}
.dashboard-items ul li a {
  color: #716E6E;
  font-weight: normal;
}
.dashboard-items ul li:hover {
  color: var(--text-blue-color);
  background-color: #F6F7FC;
  border-left: 3px solid #0284A2;
  -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: var(--text-blue-color);
}
.dashboard-items ul li.active {
  color: var(--text-blue-color);
  background-color: #F6F7FC;
  border-left: 3px solid #0284A2;
}
.dashboard-items ul li.active a {
  color: var(--text-blue-color);
}
.dashboard-items ul li i {
  font-size: 20px;
  margin-right: 16px;
  opacity: 0.5;
}
.dashboard-items ul li:hover i {
  color: var(--text-blue-color);
  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-blue-color);
  opacity: 1;
}
.profile-item-block {
  padding: 40px 0;
  background-color: #F6F7FC;
}
.profile-info-block {
  padding: 34px 44px 45px 45px;
  background-color: var(--background-white-bg-color);
  margin-bottom: 41px;
}
.profile-info-block .profile-heading {
  font-size: 22px;
  color: #000;
  padding-bottom: 32px;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 32px;
}
.profile-info-block .profile-block .form-group label {
  font-size: 16px;
  color: #000;
  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]) {
  border-radius: 0;
  padding: 20px 0 20px 30px;
}
.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: #000;
  margin-bottom: 15px;
}
.profile-info-block .profile-two-block .form-group .form-control {
  font-family: 'Montserrat', sans-serif; 
  color: #000;
  font-size: 14px;
  border: solid 1px #D5D5D5;
  margin-bottom: 40px;
  padding: 23px 0 103px 30px;
  margin-bottom: 0;
}
.social-profile-block {
  padding: 34px 44px 18px 45px;
  background-color: var(--background-white-bg-color);
  margin-bottom: 62px;
}
.social-profile-heading {
  font-size: 22px;
  color: #000;
  padding-bottom: 32px;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 32px;
}
.social-profile-block .social-block .form-group label {
  font-size: 16px;
  color: #000;
  margin-bottom: 15px;
}
.social-profile-block .social-block .form-group .form-control {
  font-family: 'Montserrat', sans-serif; 
  color: #717983;
  font-size: 14px;
  border: solid 1px #D5D5D5;
  margin-bottom: 28px;
}
.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: 63px;
}
.profile-info-block .select2-container .select2-selection--single {
  padding: 20px 20px;
  height: 63px ! important;
  border-radius: 0 ! important;
  border: solid 1px #D5D5D5 ! important;
}
.profile-info-block .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 63px;
}
@media (max-width: 576px) {
  .profile-item-block {
    padding: 100px 0 90px;
    background-color: #F6F7FC;
  }
}


.avatar-preview {
  width: 192px;
  height: 192px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.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: 50px auto;
}
.avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 9999999;
  top: 10px;
}
.avatar-edit input {
  display: none;
}
.avatar-edit label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background-color: var(--background-white-bg-color)FFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  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: #757575;
  position: absolute;
  top: 10px;
  left: 0;
  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: 180px;
  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 {
  color: var(--text-dark-grey-color);
  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: 500;
  margin-bottom: 5px;
  color: #000;
  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: #000;
}
.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 
{
	
}
.view-dtl .rate ul 
{

}
.img-wishlist {
  position: absolute;
  right: 0;
  bottom: 5px;
}
.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: #000;
  font-family: 'Montserrat', sans-serif;
}
.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;
  background: #e2043d;
  color: #fff;
  border: 1px solid #e2043d;
  font-family: 'Montserrat';
  font-weight: 400;
  border-radius: 2px;
}
.protip-btn .btn-primary:hover
{
  background: #0f7c90;
  color: #fff;
  border: 1px solid #0f7c90;
}
.protip-btn .btn-secondary {
  padding: 10px 0;
  width: 100%;
  font-weight: 200;
  font-size: 15px;
  background: #e2043d;
  color: #fff;
  border: 1px solid #e2043d;
  font-family: 'Montserrat';
  font-weight: 400;
  border-radius: 2px;
}
.protip-btn .btn-secondary:hover 
{
  background-color: #0f7c90;
  border: 1px solid #0f7c90;
  color: #fff;
}

.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 #F44A4A;
  color: var(--text-black-color);
}
.protip-one i:hover {
  color:var(--text-red-color);;
  background-color: transparent;
}

.protip-wishlist ul li {
  display: inline-block;
  padding: 10px 0;
}
.protip-wishlist ul li a {
  color:var(--text-red-color);;
  font-size: 16px;
}
.protip-wishlist ul li i {
  font-size: 18px;
  vertical-align: bottom;
}
.protip-wishlist span:hover {
  color: #CACBCC;
}
.protip-wish-btn i 
{
  color: #e6e6e6;
  cursor: pointer;
}
.protip-wish-btn i:hover {
  color:#e2043d;
}
.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: 1;
}
.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:#e2043d;
  cursor: pointer;
}

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;
  cursor:pointer;
}

.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: 100px;
}
.view-heading {
      vertical-align: middle;
    margin-top: 5px;
}
.notification-image img {
  width: 60px;
  height: 50px;
}
.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: 100%; 
  height: 190px;
}
.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
{
	display:none;
}
.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 #0284A2;
  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: 50px 150px;
  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 30px;
}
.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: #F2F3F5; 
}
.finish-main-block table {
  background-color: var(--background-white-bg-color);
}
.learning-business-two {
  margin-left: -20px
}

.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 #0284A2;
  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 #0284A2; 
  padding:20px;
  background-color: var(--background-white-bg-color);

}
.cirtificate-border-two {  
  border: 5px double #0284A2;
  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: #F2F3F5;
  position: relative;
  margin-bottom: 30px;
  border-radius: 5px;
}
.progress-block .bar {
  padding: 2px;
  display: block;
  height: 10px;
}
.progress-block .histo-rate {
  clear: both;
  display: inline-block;
  width: 95%;
}
.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, #F44A4A 50%, #FFFFFF 50%);
  background-size: 100% 200%;
  transition: all 1s;
  color: var(--text-white-color)FFF;
  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 
{
  background-color: #0f7c90;
    border: 1px solid #0f7c90;
   color: #fff;
	border-radius: 2px;
}
.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 #0284A2;
}
.certificate-button .about-home-btn .btn-secondary {
  font-size: 14px;
  border: 1px solid #003845;
}


/* ============================== */
    /*===== Promo Bar  =====*/
/* ============================== */
#promo-outer{
  width: 100%;
  height: auto;
  background: #e2013b;
  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 10px;
}
#promo-inner a {
  color: var(--text-white-color);
  text-align: center;
  text-decoration: none;
    font-size: 16px;
	    font-weight: 500;
}
#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: #000;
  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;
}


.nav-bar-main-block .logo .img-fluid {
    max-width: 257%;
    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, 1);
  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: 9999;
  font-weight: 400;
}
.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 {
  margin-bottom: 20px;
}
.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;
  right:0;
  background-color: var(--background-white-bg-color);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 13px;
  box-shadow: 0 2px 8px 2px rgba(20,23,28,0.2);
}
.sidenav a {
  padding: 8px 8px 5px 20px;
  text-decoration: none;
  font-size: 16px;
  display: block;
  transition: 0.3s;
}
.sidenav a:hover {
  color: var(--text-blue-color);
}
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
}
@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;
	padding-top: 10px;
  }
  .shopping-cart a i:before
  {
	  font-size:26px!important;
  }
  .red-menu-badge
  {
	top: 6px;
  }
  .hamburger
  {
	  padding-top: 7px;
  }
  .nav-search.nav-wishlist {
    right: 10px;
    top: -5px;
    float: right;
    display: inline-flex;
  }
  .nav-wishlist {
    right: 12px;
    top: 6px;
    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 #000;
    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-blue-color);
  }
  .fullscreen-search-block .btn-secondary:hover,
  .fullscreen-search-block .btn-primary:hover {
    color: #003845;
    background: transparent;
    border: 1px solid transparent;
  }
  .sub-cat {
    padding: 5px 20px;
    font-size: 12px;
    text-transform: uppercase;
  }
  .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 18px 5px;
  }
  .shopping-cart i {
    padding: 6px 9px 7px 16px;
  }
  .my-dropdown {
    width: auto;
    margin-left: 15px;
  }
  #notificationTitle  {
    padding: 14px 0;
  }
  #notificationFooter {
    text-align: left;
    background: transparent;
    padding: 0 22px;
    border-top: 0;
  }
  .dropdown-menu-right {
    width: 240px;
  }
  .sidenav .login-block {
    margin-bottom: 10px;
    padding-bottom: 3px;
    border-bottom: 1px solid #DEDFE0;
  }
  .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 .logo .img-fluid {
    max-width: 125%;
    height: 32px;
  }
  .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: 8px 20px;
  color: var(--text-black-color);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
}
.nav-bar-main-block .panel-title {
  margin-bottom: 5px;
}
.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: 23.3333%;
    float: left;
    background-color: var(--text-white-color);
    padding: 0px;
    margin-bottom: 20px;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 6px;
    box-shadow: 0 2px 5px 0 rgb(17 121 239 / 15%);
    border: 1px solid #e6ecef;
}
.rate-grid .rate-r s
{
	font-size: 15px;
    font-weight: 400;
}
.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);
  height: 150px;
  width: 100%;
  border-radius: 5px 5px 0px 0px;
}
.prod.grid-view p{
  color:#333;
  height: 5.5em;
}

/*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;
  border-radius: 6px;
  box-shadow: 0 2px 5px 0 rgb(17 121 239 / 15%);
  border: 1px solid #e6ecef;
}
.prod.list-view .view-dtl
{
	padding:0;
}
.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){
  
}

.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: #000;
    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: #F44A4A;
  border: 1px solid #F44A4A;
  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 #992337;
}
.categories-tab-block i {
  -webkit-text-stroke: 1px #FFF;
}
.categories-tab-block a {
    color: var(--text-white-color);
}
.view-button .btn-secondary {
  padding: 10px 20px;
}
.categories-tab-main-block {
  background: var(--linear-gradient-bg-color);
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  border-radius: 50%;
  font-size: 16px;
  width: 50px;
  height: 50px;
  line-height: 30px;
  border: 1px solid #f5f5f58a;
  box-shadow: 0 2px 4px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.08);
}
.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: var(--background-black-bg-color);
}
.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 #F44A4A;
}
.together-img .heart i {
   color: var(--text-white-color);
   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: #f8fbff linear-gradient(to top, #f8fbff 10%, #fff 100%);
}
.testimonial-block 
{
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.1);
    position: relative;
    padding: 24px 30px 45px 30px;
	    max-height: 270px;
}
.testimonial-block p {
  color: var(--text-dark-grey-color);
}
.testimonial-block p span
{
	display: inline-block;
    width: 100%;
    text-align: left!important;
    font-size: 14px!important;
    line-height: 1.75;
	color: #51565e;
	font-family:'Montserrat', sans-serif!important;
}
.testimonial-block::after
{
	width: 100%;
    content: "";
    height: 6px;
    background-color: #e2043d;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 4px 4px;
}
.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 
{
	width:100%;
    background: #fff;
	    max-height: 320px;
    border: 1px solid #ececec;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 4px 20px rgb(168 168 168 / 20%);
    box-shadow: 0 4px 20px rgb(168 168 168 / 20%);
    border-radius: 12px;
    overflow: hidden;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-style: normal;
    font-weight: 400;
    color: #222;
  -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;
      background-repeat: no-repeat;
    background-size: cover;
}
.blog-slider-block:hover{
  box-shadow: 0 4px 20px #DEDFE0;
}
.footer-logo img {
  height: 75px!important;
  margin-bottom: 10px;
      margin-left: 0px;
}
.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: 45px;
}
.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: #000;
  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: #000;
}
.categories-tags-count ul li.active {
  color: #000;
}

.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;
  margin-bottom: 20px;
}

.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:100px;
  -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 {
  width: 100%; 
  height: 100px;
}

@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;
}
.course_details_box
{
    background: #fff;
    padding: 20px 20px;
    border: 1px solid #e4e4e4;
    margin-bottom: 25px;
	    margin: 10px
}
.categories-main-block-one 
{
    display: none!important;
}
.textwidget a
{
	color:#fff;
}

.textwidget ul {
    padding-left: 0;
    line-height: 33px;
    list-style: none;
}
.social li {
    display: inline-block;
    margin: 8px;
}
.social li a {
    border: 1px solid #fff;
    padding: 2px 7px;
}
.footer_menu_widget ul li:after
{
	content: "";
    width: 5px;
    height: 5px;
    background: #b3b3b3;
    border-radius: 100%;
    display: inline-block;
    margin-right: 10px;
    margin-left: 15px;
}
.footer_contact_widget h4, .footer_company_widget h4, .footer_program_widget h4, .footer_support_widget h4, .footer_apps_widget h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer_one 
{
    padding: 60px 0px 40px 0!important;
}
.footer_middle_area, .footer_one 
{
    background-color: #151515;
	
}

.footer_contact_widget p {
    color: #969696;
    font-size: 13px;
    line-height: 30px;
    margin-bottom: 0;
}
.list-unstyled 
{
    padding-left: 0;
    list-style: none;
}

/*== Footer Widget ==*/
.footer_contact_widget p
{
  color: #969696;
  font-size: 13px;
  line-height: 30px;
  margin-bottom: 0;
}
.footer_contact_widget li a,
.footer_company_widget li a,
.footer_program_widget li a,
.footer_support_widget li a {
  color: #9e9e9e;
  font-size: 13px;
  line-height:25px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer_contact_widget li:hover a,
.footer_company_widget li:hover a,
.footer_program_widget li:hover a,
.footer_support_widget li:hover a {
  color: #ffffff;
  padding-left: 10px;
}
.logo-widget{
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.logo-widget span
{
  color: #ffffff;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: bold;
  padding-left: 15px;
  margin-top: 10px;
  text-transform: uppercase;
  vertical-align: middle;
}
.logo-widget.home3 span{
  color: #051925;
}
.logo-widget.home8 span{
  background: linear-gradient(to right, #835bb4 0%, #d7cf96 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer_menu_widget ul{
  margin-bottom: 0;
}
.footer_menu_widget ul li{
  padding-right: 25px;
  vertical-align: middle;
  padding-top: 7px;
}
.footer_menu_widget ul li a{
  color: #969696;
  font-size: 13px;
      -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.footer_menu_widget ul li a:hover{
  color: #ffffff;
}
.footer_menu_widget.home3 ul li a:hover{
  color: #0a0a0a;
}
.footer_contact_widget.home3 h4,
.footer_company_widget.home3 h4,
.footer_program_widget.home3 h4,
.footer_support_widget.home3 h4,
.footer_apps_widget.home3 h4,
.footer_contact_widget.home4 h4,
.footer_company_widget.home4 h4,
.footer_program_widget.home4 h4,
.footer_support_widget.home4 h4,
.footer_apps_widget.home4 h4,
.footer_one.home3 .footer_company_widget li:hover a,
.footer_one.home3 .footer_contact_widget li:hover a,
.footer_one.home3 .footer_program_widget li:hover a,
.footer_one.home3 .footer_support_widget li:hover a,
.footer_one.home4 .footer_company_widget li:hover a,
.footer_one.home4 .footer_contact_widget li:hover a,
.footer_one.home4 .footer_program_widget li:hover a,
.footer_one.home4 .footer_support_widget li:hover a
{
  color: #051925;
}
.footer_contact_widget.home8 p{
  line-height: 30px;
  color: #6f7074;
}

.footer_one.home8 .footer_menu_widget ul li a{
  color: #6f7074;
}
.footer_one.home8:after{
  background-color: #e2e9f0;
  bottom: 80px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}
.logo-widget.home8{
  margin-left: 150px;
}
.footer_apps_widget .mailchimp_form .form-control {
  background-color: #1a1a1a;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: none;
  color: #707070;
  height: 52px;
  width: 80%;
}
.footer_apps_widget .mailchimp_form button{
  background-color: #e63150;
  border: transparent;
  height: 52px;
  width: 52px;
}
.footer_company_widget.home5 h4,
.footer_program_widget.home5 h4,
.footer_apps_widget.home5 h4{ 
  color: #262626;
}
.footer_one.home3 .footer_contact_widget li a,
.footer_one.home3 .footer_company_widget li a {
  color: #969ca9;
}
.footer_one.home3 .footer_apps_widget .mailchimp_form button{
  background-color: #1c327e;
}
.footer_one.home6 .footer_apps_widget .mailchimp_form button{
  background-color: #333745;
}
.mailchimp_form.home5 .form-control {
  background-color: #fafafa;
}
.footer_apps_widget.home6 .mailchimp_form .form-control{
  background-color: #101219;
}
.footer_menu {
  padding-left: 60px;
}
.footer_menu ul li:last-child {
  border-radius: 4px;
}
.footer_menu ul li:last-child a{
  background-color: transparent !important;
  color: #7c7c7c;
  padding-left: 20px;
}
.footer_menu ul li:last-child:hover a{
  color: #7c7c7c;
}
.footer_menu ul li .bootstrap-select>.dropdown-toggle {
  background-color: #2f2b2b;
  box-shadow: none !important;
  border: transparent;
  color: #ffffff;
  height: 45px;
  line-height: 35px;
  margin-left: 15px;
  outline: none !important;
  padding-left: 25px;
  padding-right: 20px;
  position: relative;
  text-align: right;
  white-space: nowrap;
  width: 130px;
  z-index: 1;
}
.btn-light:not(:disabled):not(.disabled).active, 
.btn-light:not(:disabled):not(.disabled):active, 
.show>.btn-light.dropdown-toggle {  
  background-color: transparent;
  box-shadow: none;
  color: #ffffff;
}
.footer_menu ul li .bootstrap-select .dropdown-toggle .filter-option {
  outline: none;
}
.footer_menu ul li .bootstrap-select {
  width: auto !important;
}
.footer_bottom_area.home3 .footer_menu ul li .bootstrap-select>.dropdown-toggle {
  background-color: #1f2532;
}
.footer_bottom_area.home4 .footer_menu ul li .bootstrap-select>.dropdown-toggle{
  background-color: #ededed;
  border-radius: 22.5px;
  color: #8b8b8b;
}
.footer_bottom_area.home5{
  background-color: #ffffff;
}
.footer_bottom_area.home5 .footer_menu ul li .bootstrap-select>.dropdown-toggle{
  background-color: #e6e6e6;
  color: #8b8b8b;
}
.footer_one.home6{
  background-color: #1b1e28;
}
.footer_one.home6{
  border-bottom: 1px solid #363a48;
}
footer .foot-socials a.facebook {
    background-position: -8px -52px;
}
footer .foot-socials a.share {
    margin: 0 5px 4px 0;
    display: inline-block;
    height: 33px;
    width: 33px;
    vertical-align: top;
    background: #353535 url(../images/footer_sprite.svgz) no-repeat;
    border-radius: 50%;
	border: 0;
}
footer .foot-socials a.facebook {
    background-position: -8px -52px;
}
footer .foot-socials a.twitter {
    background-position: -76px -50px;
}
footer .foot-socials a.youtube {
    background-position: -115px -50px;
}
footer .foot-socials a.linkedin {
    background-position: -38px -50px;
}
footer .foot-socials a.insta {
    background-image: none;
}
footer .foot-socials a.insta span {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/footer_sprite.svgz) no-repeat;
    background-position: -94px -18px;
    position: relative;
    top: 6px;
    left: 0px;
}
footer .foot-socials a.linkedin:hover {
    background-color: #1b86bd;
}
footer .foot-socials a.facebook:hover {
    background-color: #4C67A1;
}
footer .foot-socials a.twitter:hover {
    background-color: #55ACEE;
}
footer .foot-socials a.youtube:hover {
    background-color: #DE2925;
}
footer .foot-socials a.insta:hover {
    background-image: radial-gradient(circle at 23% 84%, #f9ed32, #f8d939 5%, #f5a54d 17%, #f0536c 33%, #ee2a7b 40%, #9e2aa7 56%, #5b2acd 72%, #2a2ae8 85%, #0b2af9 95%, #002aff);
}
p.footer_contact
{
	
}
.footer_contact i
{
	padding-right: 10px;
	color:#fff;
}
.footer_contact span
{
	
}
p.address-foot
{
	line-height: 26px;
}
.footer_middle_area, .footer_one {
    background-color: #151515;
}
.footer_middle_area {
    border-top: 1px solid #383838;
	    text-align: center;
}
.pb15 {
    padding-bottom: 15px;
}
.logo-widget span {
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: bold;
    padding-left: 15px;
    margin-top: 10px;
    text-transform: uppercase;
    vertical-align: middle;
}
.pb25 {
    padding-bottom: 25px;
}
.pt25 {
    padding-top: 25px;
}
.footer_menu_widget ul li {
    padding-right: 25px;
    vertical-align: middle;
    padding-top: 7px;
}

.list-inline-item {
    display: inline-block;
}
.footer_menu_widget ul li a {
    color: #fff!important;
}
.footer_menu_widget ul li a {
    color: #969696;
    font-size: 13px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.pb15 {
    padding-bottom: 15px;
}
.pb15 {
    padding-bottom: 15px;
}
.pt15 {
    padding-top: 15px;
}
.pb25 {
    padding-bottom: 25px;
}
.pt25 {
    padding-top: 25px;
}
.footer_bottom_area {
    background-color: #0a0a0a;
	border-bottom: 5px solid #e2043d!important;
}
.copyright-widget p 
{
    margin-bottom: 0;
    font-size: 15px;
}
footer span a
{
	color:#969696;
}
.footer-logo img 
{
    height: 75px!important;
    margin-left:0;
}
.footer_menu_widget ul li:last-child:after
{
	content: none;
}
.footer_menu_widget ul li 
{
    padding-right: 0px;
    vertical-align: middle;
    padding-top: 7px;
    margin-right: 0;
}
.copyright-widget
{
	padding-top: 15px;
    color: #444;
}
.copyright-widget a
{
	color:#888;
}
.copyright-widget a:hover
{
	color:#a7a7a7;
}


.img_th_bundle {
    height: 70px;
    padding-left: 15px;
}
.grd-2 {
    background: #ff5d63;
    background-image: radial-gradient(circle at 28% 36%, #ff9195, #ff5d63 66%);
}
.grd-3 {
    background: #0099c3;
    background-image: radial-gradient(circle at 28% 36%, #00c5e3, #0099c3 99%);
}
.grd-4 {
    background: #d2ac00;
    background-image: radial-gradient(circle at 38% 32%, #f4c652, #d2ac00 92%);
}
.grd-5 {
    background: #00bba6;
    background-image: radial-gradient(circle at 28% 36%, #00dcc3, #00bba6 66%);
}
.grd-6 {
    background: #8661df;
    background-image: radial-gradient(circle at 28% 36%, #a889f2, #8661df 66%);
}
.grd-7 {
    background: #d550ab;
    background-image: radial-gradient(circle at 29% 37%, #ed82cb, #d550ab 68%);
}
.bundle-info {
    padding: 32px 25px;
    padding-bottom: 16px;
	    height: 235px;
}
.bundle-info h4 
{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #272c37;
	margin-bottom: 10px;
}
.bundle-info .info {
    margin-top: 10px;
    color: #51565e;
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}
.bundle-info .info span {
    display: inline-block;
    line-height: normal;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}
.bundle-info .info span::before {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    position: absolute;
    top: 1px;
    left: 0;
    background: url(../images/sprite_v2.svgz) no-repeat;
    background-position: -50px -20px;
}
.bundle-info .info span:nth-child(2) 
{
	margin-left: 15px;
    padding-left: 15px;
}
.bundle-info .info span:nth-child(2)::before 
{
    content:none;
}
.bundle-info .info span:nth-child(2)::after 
{
    display: inline-block;
    content: "";
    width: 1px;
    height: 18px;
    position: absolute;
    left: 0;
    background: #c5c7cc;
    top: 3px;
}
.bundle-info p {
    font-size: 14px;
    color: #51565e;
    margin-top: 10px;
    padding-left: 25px;
    line-height: normal;
    position: relative;
}
.bundle-info p::before {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    position: absolute;
    top: 1px;
    left: 0;
    background: url(../images/sprite_v2.svgz) no-repeat;
    background-position: -18px -21px;
}
.img_th_bundle span {
    width: 75px;
    height: 80px;
    display: inline-block;
    background: url(../images/sprite_v2.svgz) no-repeat;
    background-position: -113px -53px;
    position: relative;
    top: 16px;
}
.bundle-info .rate
{

}
.bundle-info .rate ul
{
	
}
.bundle-info .rate ul li
{
	display: inline-block;
}
.bundle-info .rate a
{
	
}
.bundle-info .rate strike
{
	font-size: 12px;
    font-weight: 400;
	color: var(--text-dark-grey-color);
}
.bundle-info .rate b
{
	    font-size: 19px;
}
.view-block .img_th_bundle
{
	border-radius:5px 5px 0 0;
}
.share-and-gift {
    display: flex;
    margin-bottom: .8rem;
	    margin-top: 20px;
}
.share-and-gift>* {
    margin-right: .8rem;
}
.share-and-gift .udlite-btn {
    border-color: #fff;
    color: #fff;
	border: 1px solid;
	background-color: #0000;
}
.udlite-btn {
    position: relative;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px 20px;
    justify-content: center;
    vertical-align: bottom;
	font-weight: 600;
    line-height: 1.2;
    font-size: 14px;
}
.udlite-btn>:not(:first-child) {
    margin-left: .8rem;
}
.udlite-icon-small 
{
    width: 2rem;
    height: 2rem;
}
.clp-component-render .share-button a
{
	display:flex;
}
.certificate_bg
{
	    padding: 50px 0px 30px;
}
.certificate_bg .crt_dec
{
	background: #fff;
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%);
    border-radius: 4px;
	padding: 30px;
}
.certificate_bg .crt_img
{
	
}
.crt_dec ul {
  list-style: none!important;
  padding: 0;
}
.crt_dec li {
  padding-left: 1.3em;
}
.crt_dec li:before {
  content: "\f05d"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
  color:#0284a2;
}
section.related_course
{
	padding:40px 0 60px;
}

.related-course-details .rate b
{
	color:#e2043d;
}
.related-course-details .rate strike
{
	color:#686f7a;
}

.related-course-details .owl-nav {
    position: relative;
    overflow: visible;
}

.related-course-details .owl-nav {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    display: block;
    width: 80px;
}
.about-home-rate .course_price
{
	color:#e2043d;
}
.about-home-rate .discount_price
{
	color:#969696;
}
.about-home-product .about-home-rate
{
	    padding-bottom: 15px;
}
.related-course-details .owl-nav .owl-prev
{
	background-position: -271px -284px!important;
	left: -58px;
}
.related-course-details .owl-nav .owl-next 
{
    right: -58px;
    background-position: -327px -284px!important;
}
.related-course-details .owl-nav button
{
    position: absolute!important;
    width: 38px!important;
    height: 38px!important;
    display: inline-block;
    background: #dde6ed!important;
    border-radius: 50%;
    cursor: pointer!important;
    color: #0000!important;
    font-size: 0!important;
    top: 0!important;
    bottom: 0!important;
    margin: auto!important;
    background: url(https://www.simplilearn.com/ice9/assets/course_sprite_7.svgz) no-repeat!important;
	box-shadow: none!important;
	border:none!important;
}

.related-course-details .owl-dots 
{
    display: table;
    border-radius: 4px;
    overflow: hidden;
    background-color: #d8d8d8;
    table-layout: fixed;
    color: #0000;
    font-size: 0;
    line-height: 0;
	margin-top: -21px;
    margin-left: 48%;
}
.related-course-details .owl-dots .owl-dot.active
{
    width: 36px;
    height: 4px;
    background-color: #1179EF;
    border-radius: 4px;
}
.related-course-details .owl-dots button.owl-dot 
{
    display: table-cell;
    min-width: 1px;
    height: 4px;
    cursor: default;
    background-color: #0000;
    vertical-align: middle;
    background-color: #d8d8d8;
    border-radius: 4px;
    border: 0;
    margin: 0;
    padding: 0;
    background: #0000;
}


#whatlearn-description 
{
  position:relative;
}

#whatlearn-description .whatlearn_info {
/*   width: 660px;  */
  position:relative; 
  display: block;
  padding: 10px;
}
#whatlearn-description .show-more-info 
{
	
    color: #0f7c90;
    background-color: #0000;
    min-width: auto;
    padding: 0;
	white-space: nowrap;
    line-height: 1.2;
    letter-spacing: -.02rem;
    font-size: 14px;
    cursor: pointer;
	border: none;
	font-weight: 600;
	-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;
}
#whatlearn-description .show-more-info:hover 
{ 
    color: #0f7c90;
    background: #0000;
}
#whatlearn-description .show-more-whatlearn { 
  height: 150px; 
  overflow:hidden; 
   padding: 10px;
   -webkit-mask-image: linear-gradient(#fff,#fff,#fff0);
   	-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;
}
#whatlearn-description .view-more-btn
{
	
}
.course-content-block button.courseToggle
{
	color: #0f7c90;
    background-color: #0000;
    min-width: auto;
    padding: 0;
	white-space: nowrap;
	font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02rem;
    font-size: 16px;
    cursor: pointer;
	border: none;
	font-weight: 500;
	-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 button.courseToggle:hover 
{ 
    color: #0f7c90;
    border: none;
    background: #0000;
}

.CourseCard__imgWrapper 
{
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    opacity: 1;
}
.CourseCard__heading 
{
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    margin: 16px 16px 8px 16px;
	    line-height: 26px;
}
.CourseCard__description 
{
    line-height: 140%;
    margin: 8px 16px 8px 16px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
	font-size: 14px!important;
    font-family: 'Montserrat';
}
.CourseCard__ctaSection 
{
    margin: 0 16px 16px 16px;
}
.CourseCard__cta 
{
    background: #fff;
    border: 1px solid #202938;
    border-radius: 4px;
    display: inline-block;
    line-height: 100%;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 14px;
    color: #202938;
	cursor:pointer;
}
.lazyLoad__wrapper 
{
    position: relative;
    height: 100%;
    overflow: hidden;
}
.CourseCard__imgWrapper:after 
{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
269.73deg
,#0000 47.14%,#000 80.74%);
    opacity: .7;
}

.CourseCard__description p
{
	line-height: 1.5;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.student-main-block-2
{
	background: #f7f8fa;
    padding: 50px 0 30px;
}
.bundle_courses
{
    padding: 50px 0 60px;
}

.discover-top-categories ul 
{
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -14px 0 -12px;
}
.discover-top-categories ul li 
{
    width: 163px;
    height: 140px;
    border-radius: 2px;
    -webkit-box-shadow: 0 4px 15px 1px rgb(0 0 0 / 15%);
    box-shadow: 0 4px 15px 1px rgb(0 0 0 / 15%);
    background-color: #fff;
    margin: 13px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
	border: 1px solid #fff0;
}
.discover-top-categories ul li:hover
{
	border: 1px solid #0f7c90;
}
.discover-top-categories ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    text-align: center;
    color: #000;
    padding: 24px 15px 30px;
}
.discover-top-categories ul li a img
{
	width:45px;
}
.discover-top-categories ul li a label 
{
    margin-top: 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.33;
    letter-spacing: normal;
    color: #404040;
    margin-bottom: 0;
}
.learning-business form
{
	margin:0;
}
.nav_mobile_cat
{
	background: #e2033c;
}
.nav_mobile_cat .panel-title a 
{
    color: #fff;
}
.nav_mobile_cat .panel-title a:after 
{
    color: #fff!important;
}

.nav_mobile_child
{
	background: #fff;
}
.nav_mobile_child .panel-title a 
{
    color: #29303B;
}
.nav_mobile_child .panel-title a:after 
{
    color: var(--text-blue-color);
}
.have_query
{
	border-top: 4px solid #e2013b;
    border-radius: 10px;
}
.have_query h4
{
	text-align: center;
    font-family: 'Montserrat';
}

.have_query .input-group-text,
.have_query select.form-control:not([size]):not([multiple]), 
.have_query .form-control:not(.form-control-sm):not(.form-control-lg) {
    font-size: 12px;
    padding: 5px 15px;
    height: 42px;
    background-color: #fdfdff;
    border-color: #e4e6fc;
    box-shadow: none;
}
.have_query textarea 
{
    width: 100%;
	font-size: 12px;
	border-color: #e4e6fc;
	box-shadow: none;
	    padding: 10px;
}
.have_query .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
.have_query .btn-primary, .download_brochure_form .btn-primary
{
    background-color: #e2013b;
    border-color: #0000 !important;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #0000;
    padding: 10px 10px;
    font-size: 15px;
    border-radius: 3px;
    text-transform: uppercase;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.have_query .btn-primary:hover, 
.download_brochure_form .btn-primary:hover 
{
    border: 1px solid #0000;
    background-color: #0f7c90;
}

.modal-content 
{
    border: none;
    border-top: 4px solid #e2013b;
    border-radius: 10px;
    box-shadow: 0 0.46875rem 2.1875rem rgb(90 97 105 / 10%), 0 0.9375rem 1.40625rem rgb(90 97 105 / 10%), 0 0.25rem 0.53125rem rgb(90 97 105 / 12%), 0 0.125rem 0.1875rem rgb(90 97 105 / 10%);
}

.download_brochure_form .input-group-text, .download_brochure_form select.form-control:not([size]):not([multiple]), .download_brochure_form .form-control:not(.form-control-sm):not(.form-control-lg) {
    font-size: 12px;
    padding: 5px 15px;
    height: 42px;
    background-color: #fdfdff;
    border-color: #e4e6fc;
    box-shadow: none;
}

.download_brochure_form .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
.download_brochure_form textarea 
{
    width: 100%;
	font-size: 12px;
	border-color: #e4e6fc;
	box-shadow: none;
	padding:5px;
}
.featured_cet 
{
	font-weight: 600;
    color: #e2043d;
}
.description-block p span 
{
    font-size: 14px !important;
    font-family: 'Montserrat' !important;
	font-weight: 500;
	line-height: 1.5;
	color:#000;
}

.koh-faq-answer span 
{
    color: #000;
}
.koh-faq-answer 
{

    padding-top: 20px;
}
.requirements h3,
.description-block h4,
.course-content-block h3,
.certificate_bg h3,
h3.student-heading,
.blog-main-block h3,
.testimonial-main-block h3,
.categories-main-block h3,
h4.student-heading
{
	font-size:22px;
}
.description-block h3, 
.description-block h3 span
{
	font-size: 20px!important;
}
.footer_contact_widget,
.footer_company_widget,
.footer_program_widget
{
	text-align:center;
}
.footer_one a:hover
{
	color:#d8d8d8;
}
.footer_program_widget h4.Businesses
{
	padding: 20px 0 0px;
}

.breadcrumbs-wrapper #breadcrumbs,
.breadcrumbs-wrapper .thim-breadcrumbs,
.breadcrumbs-wrapper .woocommerce-breadcrumb 
{
    padding: 13px 0;
    margin: 0;
    border-bottom: 1px solid #eee;
}
#breadcrumbs 
{
    font-size: 12px;
}
.breadcrumbs-wrapper #breadcrumbs li 
{
    font-size: 14px;
    color: #555;
	    line-height: 25px;
    display: inline-block;
}
.breadcrumbs-wrapper #breadcrumbs a,
.breadcrumbs-wrapper .thim-breadcrumbs a,
.breadcrumbs-wrapper .woocommerce-breadcrumb a 
{
    line-height: 25px;
    display: inline-block;
    margin-right: 15px;
}
.breadcrumbs-wrapper #breadcrumbs a:after,
.breadcrumbs-wrapper .thim-breadcrumbs a:after,
.breadcrumbs-wrapper .woocommerce-breadcrumb a:after
{
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #eee;
    display: inline-block;
    margin: 0 0 0 15px;
    line-height: 25px;
}
.home-main-block .home-dtl
{

}
#home-background-slider
{
	background-repeat:no-repeat;
	background-size:cover;
}
.requirements .comment p
{
	text-align:justify;
}

.bottom p.footer-title {
    color: #fff;
    font-size: 15px;
    position: relative;
    border-bottom: 1px solid #2f2f2f;
    margin: 20px 0 0;
    padding-bottom: 8px;
}
.bottom p.footer-title > span {
    background: none repeat scroll 0 0 #2f2f2f;
    bottom: -2px;
    height: 3px;
    position: absolute;
    width: 150px;
}
.footer-widget ul li
{
	display: inline-block;
}
.footer-widget ul
{
	margin-top:15px;
}
.bottom .contact-form
{
	margin-top:15px;
}
.footer-widget ul li a
{
	color: #a2a2a2;
}
.footer-widget ul li a:hover
{
	text-decoration: underline;
}
.footer_contact span {
    color: #a2a2a2;
}
    

.contact-form .form-group .control-label,.contact-form .form-group>label {
    font-weight: 600;
    color: #34395e;
    font-size: 12px;
    letter-spacing: 0.5px;
}
.contact-form .form-group
{
	margin-bottom: 10px;
}
.contact-form textarea
{
	background-color: #151515;
    border-color: #2b2b2b;
	font-size: 12px;
}
.contact-form .form-control 
{
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #bdbebf;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
.contact-form .input-group-text, .contact-form select.form-control:not([size]):not([multiple]), .contact-form .form-control:not(.form-control-sm):not(.form-control-lg) 
{
    font-size: 12px;
    padding: 5px 12px;
    height: 35px;
	background-color: #252525;
    border-color: #6f6f6f;
	box-shadow:none;
}
.contact-form .form-control:focus 
{
    border-color: #e2013b;
	box-shadow:none;
}
.contact-form .btn-primary 
{
	background-color: #e2013b;
    border-color: #0000 !important;
    color: #fff;
	width: 100%;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #0000;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 3px;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
.contact-form .btn-primary:hover
{
	
	background-color: #0f7c90;
}
.contact-form .custom-control-label
{
		color:#a5a5a5;
		font-size:13px;
}
.footer-widget ul.display-block li
{
	display:block;
}
.footer-widget .footer_payment img
{
	width:100%;
	
}
.footer-widget .footer_payment 
{
	margin-top:15px;
	
}
.footer-widget .footer-logo
{
	margin-top:20px;
}

.btn-wrapper .boxed-btn 
{
    background-color: #fff;
    color: #000;
	border: 1px solid #fff;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 25px;
    min-width: 160px;
    text-align: center;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    font-weight: 600;
}
.btn-wrapper .boxed-btn:hover 
{
    border: 1px solid #fff;
    background-color: #0000;
	color:#fff;
}
.prime-description-under-block .main-des h3
{
	font-size: 16px;;
}
.blog-slider-block .content 
{
    padding: 100px 40px 85px;
}

.blog-slider-block .content 
{
    position: relative;
    z-index: 0;
}
.blog-slider-block .content .post-meta {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 15px;
}
.blog-slider-block .content .post-meta li {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}
.blog-slider-block .content .post-meta li a {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
	color: #fff;
    margin-right: 20px;
}
.blog-slider-block .content .post-meta li a i {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
	
}
.blog-slider-block .content h4.title a
{
	font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    color: #fff;
}
.blog-slider-block  .content .cats i
{
	color: #fff;
	padding-right: 5px;
}
.blog-slider-block .content .title 
{
    max-width: 350px;
}
.blog-slider-block .content:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg,#000,#0006);
    content: '';
    z-index: -1;
}
.box_heading_custom .column_1 .heading
{
	padding-top: 25px;
	padding-bottom: 10px;
}

.header-area.header-bg {
    background-color: #000;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
}
.header-area.header-bg:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(3, 59, 75, 0)), color-stop(49%, rgba(3, 59, 75, 0.5)), to(rgba(0, 210, 163, 0)));
    background-image: -o-linear-gradient(bottom, rgba(3 59 74) 0%, rgba(3, 59, 75, 0.5) 49%, rgba(0, 210, 163, 0) 100%);
    background-image: linear-gradient(0deg, rgb(3 59 74) 0%, rgb(3 59 74 / 0.5) 49%, rgb(0 214 163 / 0%) 100%);
    content: "";
    z-index: -1;
}
.header-area {
    /*padding: 160px 0 180px;*/
    position: relative;
    z-index: 0;
    overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	height: 400px;
	background-position: center right;

}
.header-area .header-inner {
    overflow: hidden;
}

.header-area .title, 
.header-area .subtitle 
{
    font-size: 50px;
    line-height: 1.3;
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
	font-family: 'milkshakeregular';
}
.header-area .description {
    color: #fff;
}
.header-slider-one .owl-item.active .title {
    -webkit-animation: slideInLeft 2s 0s both;
    animation: slideInLeft 2s 0s both;
}

.header-slider-one .owl-item.active p {
    -webkit-animation: slideInLeft 2s 1s both;
    animation: slideInLeft 2s 1s both;
}

.header-slider-one .owl-item.active span {
    -webkit-animation: slideInLeft 2s 1s both;
    animation: slideInLeft 2s 1s both;
}

.header-slider-one .owl-item.active .btn-wrapper,
.header-slider-one .owl-item.active .header-inner.style-01 .vdo-btn{
    -webkit-animation: slideInUp 2s 2s both;
    animation: slideInUp 2s 2s both;
}
.header-area .description {
    color: #fff;
}
.header-area .btn-wrapper .boxed-btn {
    border: 1px solid transparent;
}

.header-area .btn-wrapper .boxed-btn:hover {
    border: 1px solid #fff;
    background-color: transparent;
}
.header-slider-one:hover .owl-nav div {
    visibility: visible;
    opacity: 1;
}

.header-slider-one .owl-nav div {
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    visibility: hidden;
    opacity: 0;
}

.header-slider-one .owl-nav div:hover {
    color: var(--main-color-one);
    border-color: var(--main-color-one);
}

.header-slider-one .owl-nav div.owl-next {
    left: auto;
    right: 20px;
}
.conditions_section .nav-pills
{
	margin-bottom: 50px;
}
.programme-wrapper
{
	margin-top: 20px;
}
.reseller-opportunities .parnership
{
	width:100%;
}
.feature-icon-box 
{
    margin-top: 20px;
}
.header-area .middle-banner
{
	transform: translate(0, -50%);
    top: 50%;
    position: absolute;
	
}
.header-area .color-red
{
	color:#E2013B!important;
}
.checkout-course-img img
{
	border-radius: 5px;
}
.checkout-course-title a
{
	color: #000;
    font-size: 18px;
    font-weight: 600;
}
.checkout-course-price b
{
	font-size: 20px;
    color: #000;
}
.view-all-courses 
{
    padding: 8px 30px;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    width: 250px;
    display: inline-block;
    background: #e2013b;
}
button.view-all-courses 
{
    padding: 8px 30px;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    width: 250px;
    display: inline-block;
    background: #e2013b;
	border: 0;
    cursor: pointer;
}
.view-all-courses:hover
{
    color: #fff;
}
.checkout-content 
{
    background: #f7f7f7;
}
.woocommerce-checkout .woocommerce-form-coupon-toggle, .woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info 
{
    background-color: #fff!important;
}
.woocommerce-info::before 
{
    color: #e2013b;
}
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
    content: '\f2d0';
    display: inline-block;
    position: absolute;
    top: 1em;
    left: 1.5em;
	font:normal normal normal 19px/1 FontAwesome;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: 1px solid #d3ced2;
    padding: 20px;
    margin: 2em 0;
    text-align: left;
    border-radius: 5px;
}

.checkout_coupon {
    background-color: #fff;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 12%);
}
.woocommerce form .form-row {
    padding: 3px;
    margin: 0 0 6px;
}
.woocommerce form .form-row-first, .woocommerce-page form .form-row-first {
    float: left;
}
.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
    width: 47%;
    overflow: visible;
}
.checkout_coupon input {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.woocommerce .checkout_coupon .button {
    background-color: #e2013b;
    border: 1px solid #e2013b;
    color: #fff;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    height: 34px;
	cursor: pointer;
}
.billing-details-wrapper, .order-summary-wrapper 
{
    background: #fff;
    box-shadow: 0 3px 3px 0 rgb(0 0 0 / 12%);
    border-radius: 4px;
}
.order-summary-header {
    background: #fff;
    border-radius: 4px 4px 0 0;
    padding: 15px 0;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}
.billing-details-wrapper.open .order-summary-content, .order-summary-wrapper.open .order-summary-content {
    display: block;
}
.woocommerce table.shop_table {
    border: 1px solid #0000001a;
    margin: 0 -1px 24px 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 5px;
}
.woocommerce table.shop_table th {
    font-weight: 700;
    padding: 9px 12px;
    line-height: 1.5em;
}
.woocommerce table.shop_table td {
    border-top: 1px solid #0000001a;
    padding: 9px 12px;
    vertical-align: middle;
    line-height: 1.5em;
}
.shop_table.woocommerce-checkout-review-order-table tbody tr td .product-quantity {
    padding: 2px 5px;
    border: 1px solid #ddd;
    min-width: 30px;
    display: inline-block;
    text-align: center;
}
.order-summary-content table tr {
    color: #4a4a4a;
    font-size: 14px;
}
.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
    font-weight: 700;
    border-top: 1px solid #0000001a;
	padding: 12px 20px;
}
.shop_table.woocommerce-checkout-review-order-table tfoot tr>th {
    background-color: #fff;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
    padding: 1em 2em 1em 3.5em;
    margin: 0 0 2em;
    position: relative;
    background-color: #f7f6f7;
    color: #515151;
    border-top: 3px solid #a46497;
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
}
button.showcoupon
{
	background: #0000;
    border: none;
    color: var(--text-blue-color);
    cursor: pointer;
}
.woocommerce-info {
    border-top-color: #e2013b!important;
}
.woocommerce-error, .woocommerce-info {
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 12%);
    margin-bottom: 0!important;
	background:#fff;
}

.order-summary-header .header-text {
    padding: 0 15px;
    color: #4a4a4a;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    position: relative;
}
.woocommerce-checkout .woocommerce-form-coupon-toggle, .woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
    background-color: #fff!important;
}

.order-summary-content .proceed
{
	width: 200px;
    padding: 10px 10px;
    margin-bottom: 20px;
}
.shop_table.woocommerce-checkout-review-order-table tr>th {
    background-color: #ebebeb;
}

#checkout_coupon
{
  display:none;
  transition: all 0.5s ease-in-out;
  background:#fff;
}
#checkout_coupon.slideUp 
{
    display:block;
}

p.modal-title 
{
    font-size: 20px;
    font-weight: 600;
}
.course-cart-modal-content table.shop_table thead 
{
    background-color: #f7f7f7;
}
.course-cart-modal-content table.shop_table td,
.course-cart-modal-content table.shop_table td a, 
.course-cart-modal-content table.shop_table th 
{
    color: #4a4a4a;
    font-size: 14px;
    vertical-align: middle;
}

.woocommerce table.shop_table th {
    font-weight: 700;
    padding: 9px 12px;
    line-height: 1.5em;
}

.woocommerce a.remove {
    display: block;
    font-size: 1.5em;
    height: 1em;
    width: 1em;
    text-align: center;
    line-height: 1;
    border-radius: 100%;
    color: #f00!important;
    text-decoration: none;
    font-weight: 700;
    border: 0;
}
.woocommerce table.shop_table td {
    border-top: 1px solid #0000001a;
    padding: 9px 12px;
    vertical-align: middle;
    line-height: 1.5em;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    float: right;
    width: 48%;
}
.cart_totals.calculated_shipping {
    padding: 15px;
}
.shop_table {
    margin-bottom: 0!important;
}
.woocommerce table.shop_table tbody:first-child tr:first-child td, .woocommerce table.shop_table tbody:first-child tr:first-child th {
    border-top: 0;
}
.cart-collaterals .cart_totals .wc-proceed-to-checkout .button.alt.wc-forward {
    background-color: #e2013b!important;
    border: 1px solid #e2013b;
}
.course-cart-modal-content .woocommerce .wc-proceed-to-checkout .checkout-button {
    background-color: #e2013b;
    border: 1px solid #e2013b;
    color: #fff;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    height: 32px;
}
.cart-total-heading
{
	font-weight: 600;
}
.billing-details-wrapper.line-one {
    margin-top: 110px;
    position: relative;
}
.order-summary-wrapper.line-two {
    margin-top: 115px;
    position: relative;
}
.billing-details-wrapper, .order-summary-wrapper {
    background: #fff;
    box-shadow: 0 3px 3px 0 rgb(0 0 0 / 12%);
    border-radius: 4px;
}
.billing-details-wrapper.line-one:before {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 58px;
    height: 87px;
    bottom: 100%;
    background-image: url(https://intellipaat.com/wp-content/themes/intellipaat/images/checkout_page_sprite.svg);
    background-position: -67px -3px;
}
.order-summary-wrapper.line-two:before {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 58px;
    height: 115px;
    bottom: 100%;
    background-image: url(https://intellipaat.com/wp-content/themes/intellipaat/images/checkout_page_sprite.svg);
    background-position: -130px -3px;
}
.order-summary-header {
    background: #fff;
    border-radius: 4px 4px 0 0;
    padding: 15px 0;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}
.order-summary-header .header-text {
    padding: 0 15px;
    color: #4a4a4a;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    position: relative;
}
#customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper {
    padding: 0 15px;
}

.woocommerce-billing
{
	padding:20px 15px 15px;
	border-bottom: 1px solid #d3ced2;
}
#CourseOption {
    background:#ebf1f8;
	margin-top: 60px;
}
#vk-ip-csm-html {
    position: relative;
}
.Affrt h2, .Affrt .vk-hd-changes1 {
    margin-bottom: 1rem;
    width: 100%;
}
.Corporate-tr, .SelfPaced-tr {
    background: #fff;
    margin-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
}
.ACW-head, .COl-head, .Corp-head, .SPT-head {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #e2013b;
    padding: 15px 20px;
}
.SPT-head-left ul li {
    font-size: 13px;
    display: inline-block;
    margin-right: 10px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
    line-height: 24px;
}
.SPT-head-left ul li:before {
    background-image: url(https://intellipaat.com/wp-content/themes/intellipaat/images/course-sprite.svg?tr=w-180,h-187);
    position: absolute;
    top: 3px;
    left: 0;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-position: -129px -35px;
}
.COl-disc ul li:before {
    background: url(https://intellipaat.com/wp-content/themes/intellipaat/images/course-sprite.svg?tr=w-180,h-187);
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    content: "";
    background-position: -128px -35px;
    top: 5px;
}
.btn-training-wrapper
{
	align-self: flex-end;
    text-align: end;
}
.Corp-head-right,
.SPT-head-right {
	
	text-align: end;
    display: inline-table;
    
}
.SPT-head-right .price 
{
   font-size: 25px;
    font-weight: 600;
    padding-right: 8px;
}
.SPT-head-right .price s
{
    font-size: 17px;
    color: #828282;
    font-weight: 500;
    padding-right: 5px;
}
.SPT-head-right .offer_price
{
	display: block;
}
.Corp-head-right, 
.SPT-head-right 
{
	width:100%;
}
.SPT-head-right .Onbtnenr
{
	padding-top: 10px;
}
button.enroll {
    background: #e2013b;
    border: 1px solid #e2013b;
    color: #fff;
    box-sizing: border-box;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    padding: 10px 15px;
	cursor:pointer;
	width: 150px;
	border-radius: 0;
	line-height: normal;
	-webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
button.enroll:hover
{
	border: 1px solid #0000;
    background-color: #0f7c90;
}
a.enroll {
    background: #e2013b;
    border: 1px solid #e2013b;
    color: #fff;
    box-sizing: border-box;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    padding: 10px 15px;
	cursor:pointer;
	width: 150px;
	appearance: button;
    text-align: center;
	border-radius: 0;
	line-height: normal;
	-webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
a.enroll:hover
{
	border: 1px solid #0000;
    background-color: #0f7c90;
}
.COl-disc ul li:nth-child(1)::before {
    left: 6px;
    top: 13px;
}
.CourseOptionlist, .added-cart-wrapper {
    margin-bottom: 15px;
    background: #fff;
}
.COl-head h3 {
    margin-bottom: 0;
}
.online-classroom-wrapper h3 {
    display: inline-block;
    margin-right: 20px;
}

.COI-preferred {
    position: relative;
    left: 10px;
    top: 0;
    background: #e2013b;
    color: #fff;
    font-size: 10px;
    padding: 5px 10px;
    text-transform: uppercase;
}
.COI-preferred:before {
    width: 0;
    height: 0;
    border-top: 10.5px solid #0000;
    border-right: 6px solid #e2013b;
    border-bottom: 13.5px solid #0000;
    content: "";
    position: absolute;
    left: -6px;
    top: 0;
}
.COl-disc ul li:nth-child(1) {
    background: #ffeac9;
    padding: 13px 15px 13px 30px;
    border: 1px solid #e6cea9;
    border-radius: 4px;
    margin: 5px 10px 5px 0;
    font-weight: 600;
}

.COl-disc ul li {
    list-style: none;
    padding: 5px 0;
    position: relative;
    margin-right: 10px;
    padding-left: 20px;
    font-size: 13px;
    line-height: 18px;
    display: inline-block;
}

.ONOptiop {
    margin: 10px 0;
}
textarea:focus
{
	border: 1px solid #e4e6fc;
    box-shadow: none;
    outline: -webkit-focus-ring-color auto 0px;
}
.class-timetable.checked {
    position: relative;
    z-index: 1;
    border: 1px solid #0284a2;
}
.class-timetable {
    border: 1px solid #ddd;
    padding: 0px;
    cursor: pointer;
    position: relative;
    margin-bottom: -1px;
    font-weight: 600;
}
.class-timetable input[type=radio] {
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    visibility: hidden;
    cursor: pointer;
    top: 0;
}
.class-timetable ul {
    display: table;
    width: 100%;
    padding: 14px;
	text-transform: uppercase;
}
.class-timetable ul li {
    display: table-cell;
    vertical-align: middle;
    padding: 0 10px;
}
.class-timetable.online-classroom-product.checked .checked-icon {
    background-color: #e2013b;
    border: 2px solid #fff;
}
.class-timetable ul li:nth-child(2) {
    border-right: 2px solid #ddd;
}
.ONOptiopdate {
    display: block;
}
.ONOptiopday {
    display: block;
    line-height: 14px;
    width: 80px;
}
.OnClassEnr {
    margin: 20px 0 10px;
    text-align: right;
    font-weight: 600;
}
.OnClassEnrAP {
    text-decoration: line-through;
    font-size: 20px;
    line-height: 24px;
    color: #828282;
    margin-bottom: 8px;
}
.OnClassEnrHe {
    font-size: 16px;
    width: 100%;
    float: left;
}
.OnClassEnrLP {
    font-size: 32px;
    line-height: 24px;
    font-weight: 600;
    width: 100%;
    float: left;
}
.OnClassEnr-down {
    margin-top: 1rem;
    line-height: 14px;
    float: right;
}
.added-cart-wrapper {
    background: #fff;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 12%);
}
.added-cart-header {
    background: #0284a2;
    color: #fff;
    border-radius: 4px 4px 0 0;
    padding: 10px 0;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 12%);
}
.added-cart-header .header-text {
    padding: 0 15px;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
	color:#fff;
}
.added-cart-content {
    border-radius: 0 0 4px 4px;
    width: 100%;
}
.cart-btn-group {
    padding: 0;
    margin: 0;
}
.cart-btn-group li {
    padding: 0;
    margin: 0;
    display: inline-block;
}
.tt-right {
    text-align: right;
}
a.checkout-btn {
    background-color: #e2013b;
    border: 1px solid #e2013b;
    color: #fff;
    font-size: 14px;
     padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 400;
	cursor: pointer;
	width: 150px;
	border-radius: 0;
    line-height: normal;
	text-align: center;
    box-sizing: border-box;  
    -webkit-appearance: button;	
	display: inline-block;
}
button.online-course-enroll-btn.disabled, button.self-paced-training-product.disabled 
{
    background-color: #ccc;
    border-color: #ccc;
}
.Corporate-tr .Corp-head {
    font-size: 13px;
}
.SPT-head-left ul 
{
    display: block;
}
.SPT-head-left ul li {
    font-size: 13px;
    display: inline-block;
    margin-right: 10px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
    line-height: 24px;
}
.SPT-head-left ul li:before {
    background-image: url(https://intellipaat.com/wp-content/themes/intellipaat/images/course-sprite.svg?tr=w-180,h-187);
    position: absolute;
    top: 3px;
    left: 0;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-position: -129px -35px;
}
button.enrollss {
    height: 30px;
    width: 120px;
    line-height: 24px;
    font-size: 14px;
}
.cart-btn-group li:first-child a {
    padding-left: 0;
}
.cart-btn-group li a {
    padding: 8px 15px;
    color: #238ce7;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}
.Affrt {
    padding: 48px 0;
}
.SPT-head h3,
.COl-head h3, 
.Corp-head h3
{
	font-size: 1rem;
}
.COl-disc ul {
    position: relative;
    padding: 10px 0 20px;
    margin: 0;
    display: inline-block;
}
li span.checked-icon {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: 2px;
    left: -1px;
    cursor: pointer;
    position: relative;
    background-color: #fff;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid #0284a2;
    box-shadow: 0 0 2px #0284a2;
}

.class-timetable.online-classroom-product.checked .checked-icon {
    background-color: #0284a2;
    border: 2px solid #fff;
}

.class-timetable.checked .checked-icon {
    background-color: #e2013b;
}

.corporate_form .form-group .control-label,.corporate_form .form-group>label {
    font-weight: 600;
    color: #34395e;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.corporate_form .form-control 
{
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
.corporate_form .input-group-text, .corporate_form select.form-control:not([size]):not([multiple]), .corporate_form .form-control:not(.form-control-sm):not(.form-control-lg) 
{
    font-size: 12px;
    padding: 5px 15px;
    height: 42px;
	background-color: #fdfdff;
    border-color: #e4e6fc;
	box-shadow:none;
}
.corporate_form .form-control:focus 
{
    border-color: #e2013b;
	box-shadow:none;
}
.corporate_form .btn-primary 
{
	background-color: #e2013b;
    border-color: #0000 !important;
    box-shadow: 0 2px 6px #acb5f6;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #0000;
    padding: 10px 10px;
    font-size: 15px;
    border-radius: 3px;
    text-transform: uppercase;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.modal-content
{
	border:none;
	border-top: 4px solid #e2013b;
    border-radius: 10px;
    box-shadow: 0 0.46875rem 2.1875rem rgb(90 97 105 / 10%), 0 0.9375rem 1.40625rem rgb(90 97 105 / 10%), 0 0.25rem 0.53125rem rgb(90 97 105 / 12%), 0 0.125rem 0.1875rem rgb(90 97 105 / 10%);

}
.corporate_form h4
{
    text-align: center;
    font-size: 20px;
    font-weight: 800;
}
.corporate_form p
{
   text-align: center;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 15px;
}
.corporate_form .custom-checkbox label
{
	font-size: 14px;
    font-weight: 500;
}
.SPT-head .offline_price
{
	text-align: end;
	align-self: flex-end;
}
.Onbtnenr form
{
	margin:0;
}
.order-summary-content .cart_item .product-name a
{
	    color: #000;
    font-weight: 700;
	text-transform: uppercase;
}
.order-summary-content .cart_item .product-name span
{
	    text-transform: uppercase;
		font-size: 12px;
}
span.coupon_code
{
	color: #e2013b;
}
.cart-remove form
{
	width:100%;
}

#add_payment_method #payment div.form-row, 
.woocommerce-cart #payment div.form-row, 
.woocommerce-checkout #payment div.form-row 
{
    padding: 1em;
}

#payment .woocommerce-terms-and-conditions-wrapper 
{
    width: 100%;
    display: block;
}
.woocommerce form .form-row label.checkbox, .woocommerce-page form .form-row label.checkbox {
    display: inline;
}
.woocommerce form .form-row .input-checkbox {
    display: inline;
    margin: -2px 8px 0 0;
    text-align: center;
    vertical-align: middle;
}
.woocommerce-terms-and-conditions-link {
    position: relative;
    padding: 0 20px 0 0;
    display: inline-block;
}
.woocommerce form .form-row .required {
    visibility: visible;
}
.woocommerce form .form-row .required {
    color: #f00;
    font-weight: 700;
    border: 0!important;
    text-decoration: none;
    visibility: hidden;
}
.woocommerce #payment #place_order, 
.woocommerce-page #payment #place_order 
{
    float: right;
}
#payment .place-order .button 
{
    display: block;
}
#payment #place_order 
{
   background-color: #e2013b;
    line-height: 28px;
    max-height: 45px;
    width: 100%;
    max-width: 200px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}
.woocommerce-billing-fields__field-wrapper .place-order
{
	padding: 20px 20px 30px;
}
label.woocommerce-form__label-for-checkbox 
{
	margin-left: 10px;
}
.breadcrumbs 
{
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 1rem;
	margin-top: 10px;
    padding: 5px 10px;
    border-radius: 2px;
	width: fit-content;
	width:-moz-fit-content;
}
.HeroMaster li, .HeroMaster span, .HeroMaster ul, .MetaItems li a, .MetaItems span a {
    color: #fff;
}
.breadcrumbs li, .breadcrumbs span {
    list-style: none;
    display: inline-block;
}
.breadcrumbs a, .breadcrumbs li, .breadcrumbs li a, .breadcrumbs ul {
    color: #fff;
	font-size: 13px;
    line-height: 22px;
}
.HeroMaster li, .HeroMaster span, .HeroMaster ul, .MetaItems li a, .MetaItems span a {
	color: #326aa2;
    text-transform: uppercase;
    font-weight: 600;
}
.HeroMaster .breadcrumbs span+span:before, .HeroMaster ul.breadcrumbs li+li:before {
    padding: 5px 5px 4px 5px;
    color: #326aa2;
    content: ">";
    margin: 0 -4px 0 0;
	font-size: 15px;
    font-weight: 600;
}
/*Webinar*/
.webinar-main-block-3 
{
	
}
.webinar-main-block-3 .panel-group .panel {
    display: inline-block;
    width: 100%;
    padding: 0;
    box-shadow: 0 2px 10px 0 rgb(47 83 151 / 15%);
    border: medium none;
    margin: 0 0 25px 0;
	border-radius: 4px;
	background-color: #fff;
}
.webinar-main-block-3 .panel-group .panel .panel-heading {
    display: block;
    width: 100%;
    padding: 25px 30px;
    border-radius: 2px;
    border: medium none;
    box-shadow: 0 2px 10px 0 rgb(47 83 151 / 15%);
}
.webinar-main-block-3 .panel-group .panel .panel-heading .heading_block {
    display: inline-block;
    width: 100%;
}
.webinar-main-block-3 .panel-group .panel .panel-heading .heading_block h3 a
{
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 15px 0;
}
.webinar-main-block-3 .panel-group .panel .panel-heading .heading_block .wl_register_count {
    display: inline-flex;
    align-items: center;
    width: 50%;
}
.webinar-main-block-3 .panel-group .panel .panel-heading .heading_block .wl_register_count i {
    display: inline-block;
    font-size: 13px;
    color: #417505;
    margin: 0 5px 0 0;
}
.webinar_note p
{
	color: #ffa500;
    font-weight: 500;
}
.webinar_pass .result-container {
  background-color: rgba(0, 0, 0, 0.4);
  display: inline-block;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 12px 10px;
  height: 50px;
  width: 50%;
}

.description-block h3 strong:first-child {
    color: #f20c68;
    font-weight: 900;
    font-family: 'Poppins';
}
.description-block p
{
	text-align:justify;
}
.webinar_pass  .result-container #result {
  word-wrap: break-word;
  font-size: 0.8rem;
  max-width: calc(100% - 40px);
}

.webinar_pass .result-container .btn {
  font-size: 20px;
  position: absolute;
  top: 5px;
  right: 5px;
  height: 40px;
  width: 40px;
}

.webinar_pass .btn {
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 8px 12px;
  outline: none;
  transition: 0.2s ease-in-out;
  background-color: #e2013b;
}
.webinar_pass .result-container .btn i
{
	color:#fff;
}
.webinar_pass .btn:hover {
  filter: brightness(1);
}
.webinar_pass .btn-large {
  display: block;
  padding: 0.8rem;
  margin-top: 1rem;
  width: 100%;
}
.webinar_pass .btn-large:hover {
  box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.2);
}
.webinar_pass .setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}
.webinar_pass h2
{
	font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 13px;
    color: #fff;
}
.webinar_pass
{
	margin-bottom: 20px;
    margin-top: 30px;
}
@media screen and (max-width: 400px) {
 .webinar_pass  .result-container {
    font-size: 14px;
  }
}

.webinar-main-block-3 .panel-group .panel .panel-heading .date_register_block .date_block {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: #f6f9ff;
    padding: 10px;
    margin: 0 0px 0 0;
}
.learning-courses-home-btn a.Webinar
{
	text-transform:uppercase;
}
.webinar-main-block-3 .date_block ul li.booked_webianr i
{
	color:green;
}
.webinar-main-block-3 .date_block ul li
{
	font-size: 14px;
}
.webinar-main-block-3 .panel-group .panel .panel-heading .date_register_block .date_block .date {
    display: flex;
    align-items: center;
    width: auto;
    margin: 0 10px 0 0;
    padding: 0 10px 0 0;
    border-right: 1px solid #4a4a4a;
}
.webinar-main-block-3 .panel-group .panel .panel-heading .date_register_block .date_block .date i {
    font-size: 16px;
    color: #6f6f6f;
    margin-right: 10px;
}
.webinar-main-block-3 .panel-group .panel .panel-heading .date_register_block .date_block .date span {
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
}
.webinar-main-block-3 .panel-group .panel .panel-heading .date_register_block .date_block .time {
    font-weight: 600;
    font-size: 15px;
    color: #4a4a4a;
}
.webinar-main-block-3 .panel-group .panel .panel-heading .date_register_block .registerbtn {
    display: inline-block;
    width: auto;
    height: 50px;
    border-radius: 2px;
    border: solid 1.6px #e2013b;
    background-color: #fff;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #e2013b;
    text-transform: uppercase;
    text-align: center;
	cursor:pointer;
}
.webinar-main-block-3 .panel-group .panel .panel-heading .date_register_block .registerbtnsuccess {
    display: inline-block;
    align-items: center;
    width: 170px;
    height: 50px;
    border-radius: 2px;
    border: medium none;
    background-color: #e1f4f0;
    padding: 14px 24px;
    text-transform: capitalize;
    text-align: center;
    transition: all 0.8s ease-in-out;
	cursor:pointer;
}
.webinar-main-block-3 .panel-group .panel .panel-heading .date_register_block .registerbtnsuccess i {
    font-size: 20px;
    color: #1e7d68;
    margin: 0 5px 0 0;
    display: inline-block;
    font-weight: 600;
}
.webinar-main-block-3 .panel-group .panel .panel-heading .date_register_block .registerbtnsuccess .text {
    font-size: 16px;
    font-weight: 600;
    color: #1e7d68;
    display: inline-block;
}
.webinar-main-block-2 
{
    background: #f7f8fa;
    padding: 50px 0 30px;
}

.panel-group {
    margin-bottom: 20px;
}
.webinar-author-info figure {
    float: left;
    width: 40px;
    height: 40px;
}
.webinar-author-info figure img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.webinar-author-info .details h5 {
    margin-bottom: 2px;
}
.webinar-box p {
    margin: 0px;
    background: #fff;
	font-size: 14px;
    color: #4A4548;
    line-height: 20px;
}
.webinar-author-info .details p .company {
    display: block;
    color: #8a858d;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
}
.webinar-author-info .details {
    margin-left: 48px;
}
.webinar-main-block-2 .panel-group .panel {
    display: inline-block;
    width: 100%;
    padding: 0;
    box-shadow: 0 2px 10px 0 rgb(47 83 151 / 15%);
    border: medium none;
    margin: 0 0 25px 0;
	border-radius: 4px;
	background-color: #fff;
}
.webinar-main-block-2 .panel-group .panel .panel-heading {
    display: flex;
    width: 100%;
    padding: 25px 30px;
    border-radius: 2px;
    border: medium none;
    box-shadow: 0 2px 10px 0 rgb(47 83 151 / 15%);
}

.panel-group .panel-heading {
    border-bottom: 0;
}
.panel-heading {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.webinar-main-block-2 .panel-group .panel .panel-heading .heading_block {
    display: inline-block;
    width: 100%;
}
.webinar-main-block-2 .register_btn_block
{
	
}
.webinar-main-block-2 .panel-group .panel .panel-heading .heading_block h3 a
{
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 15px 0;
}
.webinar-main-block-2 .panel-group .panel .panel-heading .heading_block .wl_register_count {
    display: inline-flex;
    align-items: center;
    width: 50%;
}
.webinar-main-block-2 .panel-group .panel .panel-heading .heading_block .wl_register_count i {
    display: inline-block;
    font-size: 13px;
    color: #417505;
    margin: 0 5px 0 0;
}
.webinar-main-block-2 .panel-group .panel .panel-heading .date_register_block .date_block {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: #f6f9ff;
    padding: 15px;
    margin: 0 20px 0 0;
}
.webinar-main-block-2 .panel-group .panel .panel-heading .date_register_block .date_block .date {
    display: flex;
    align-items: center;
    width: auto;
    margin: 0 10px 0 0;
    padding: 0 10px 0 0;
    border-right: 1px solid #4a4a4a;
}
.webinar-main-block-2 .panel-group .panel .panel-heading .date_register_block .date_block .date i {
    font-size: 16px;
    color: #6f6f6f;
    margin-right: 10px;
}
.webinar-main-block-2 .panel-group .panel .panel-heading .date_register_block .date_block .date span {
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
}
.webinar-main-block-2 .panel-group .panel .panel-heading .date_register_block .date_block .time {
    font-weight: 600;
    font-size: 15px;
    color: #4a4a4a;
}
.webinar-main-block-2 .panel-group .panel .panel-heading .date_register_block .registerbtn {
    display: inline-block;
    width: auto;
    height: 50px;
    border-radius: 2px;
    border: solid 1.6px #e2013b;
    background-color: #fff;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #e2013b;
    text-transform: uppercase;
    text-align: center;
	cursor:pointer;
}
.webinar-main-block-2 .panel-group .panel .panel-heading .date_register_block .registerbtnsuccess {
    display: inline-block;
    align-items: center;
    width: 170px;
    height: 50px;
    border-radius: 2px;
    border: medium none;
    background-color: #e1f4f0;
    padding: 14px 24px;
    text-transform: capitalize;
    text-align: center;
    transition: all 0.8s ease-in-out;
	cursor:pointer;
}
.webinar-main-block-2 .panel-group .panel .panel-heading .date_register_block .registerbtnsuccess i {
    font-size: 20px;
    color: #1e7d68;
    margin: 0 5px 0 0;
    display: inline-block;
    font-weight: 600;
}
.webinar-main-block-2 .panel-group .panel .panel-heading .date_register_block .registerbtnsuccess .text {
    font-size: 16px;
    font-weight: 600;
    color: #1e7d68;
    display: inline-block;
}

.date_block ul li {
    display: inline-block;
    border-right: 1px solid #4a4a4a;
    align-items: center;
    width: auto;
    margin: 0 10px 0 0;
    padding: 0 10px 0 0;
	font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
}
.date_block ul li:last-child {
    display: inline-block;
    border-right: none;
    align-items: center;
    width: auto;
    margin: 0;
    padding: 0;
	font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
}
.date_block ul li i 
{
        font-size: 16px;
    color: #6f6f6f;
    margin-right: 10px;
}
.webinar_countdown h1
{
	font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 13px;
	color:#fff;
}
.webinar_countdown
{
	text-align:center;
	    margin-bottom: 25px;
		margin-top: 25px;
}
.webinar_countdown ul
{
	
}
.b-share__title {
    margin: 0 0 20px;
    color: #3b3b3b;
    font-size: 18px;
}
.b-share {
    text-align: center;
}
.webinar_countdown ul li
{
	display: inline-block;
    background: #eaeaea47;
    padding: 15px 5px;
    width: 90px;
}

* countdown */
.countdown {
	display: grid;
	column-gap: 10px;
	grid-template-columns: repeat(4, 1fr);
}
.countdown li {
	text-align: center;
	position: relative;
}
.countdown .num {
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: bold;
}
.countdown .txt {
	font-size: 12px;
	text-transform: uppercase;
}


.b-calendar__wrapper {
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: left;
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    position: relative;
	    margin-bottom: 20px;
}
.b-calendar__calendar {
    max-width: 80px;
    background-color: #fff;
    font-size: 36px;
    color: #333;
    text-align: center;
    -webkit-box-shadow: 0 0 8px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 15%);
    margin-right: 15px;
    min-width: 70px;
}
.b-calendar__calendar-month {
    letter-spacing: 1px;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    padding: 3px 5px;
    white-space: nowrap;
    background-color: #0062c4;
}
.b-calendar__calendar-day {
    letter-spacing: 2px;
    color: #333;
    font-weight: 700;
}
.b-calendar__details {
    font-weight: 700;
    font-size: 16px;
    margin-top: -6px;
	color: #000;
}
.b-calendar__details-day {
    text-transform: uppercase;
	    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
}
.b-calendar__details-date {
    font-size: 24px;
    border-bottom: 1px solid #00000026;
    margin-bottom: 5px;
    margin-top: -3px;
}
.b-calendar__details-time {
	font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}
.b-calendar__details-time .fa {
    margin-right: 6px;
}
.Webinar-product-main-block 
{
	padding:50px 0 180px;
}
#blog-home .breadcrumbs-wrapper .breadcrumbs
{
	background:#ffffff00;
}
#blog-home .breadcrumbs-wrapper ul.breadcrumbs li a
{
	color:#555;
}
.student-view-slider-main-block .view-block b
{
	color: #e2013b;
}
.have_q_space
{
	height: 1150px;
}

input#mobile {
    padding-left: 50px;
}
input#phone_number {
    padding-left: 50px;
}
.iti
{
	width:100%;
}
ul.iti__country-list
{
	margin-top:0;
	white-space: break-spaces;
}
ul#iti-0__country-listbox
{
	white-space: break-spaces;
}
li#iti-0__item-us-preferred
{
	display:block;
}
.wrapper {
  width: 600px;
  margin: 20px auto;
}

.desc-wrapper {
  margin: 0 auto;
  margin-bottom: 15px;
  max-height: 337px;
  overflow: hidden;
}

.more-info {
  /* Hide more info to begin with and reveal if text inside desc is too long*/
  display: none;
}

/* Only display 'more' to begin with */
.more-info .less,
.more-info.expand .more {
  display: none;
}
.more-info.expand .less {
  display: inline;
}
.morecategory button.more-info
{
	padding: 8px 30px;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    width: 250px;
    display: inline-block;
    background: #e2013b;
}
#mobile-error,
#phone_number-error 
{
	font-size: 12px;
    position: relative;
    color: #e2013b;
    text-align: center;
    width: 100%;
    margin: 0;
    text-transform: capitalize;
}

.iti--allow-dropdown 
.iti__flag-container, 
.iti--separate-dial-code 
.iti__flag-container
{
	height: 36px;
}

.download_brochure_form .iti__flag-container,
.corporate_form .iti__flag-container,
.have_query .iti__flag-container,
.become-partner_start_form .iti__flag-container
{
	height: 40px;
}


.iti__flag-container  input[type=text].error
{
	
}
.iti input.error, 
.iti input[type=text].error, 
.iti input[type=tel].error 
{
    border: 1px solid #ff000059!important;
    background-color: #ffd5d5!important;
    color: #000;
    font-weight: 500;
}

.ui-timepicker-viewport 
{
	padding-right:0!important;
    overflow: auto;
    overflow-x: hidden;
}
.contact-form .g-recaptcha 
{
    transform: scale(0.84);
    -webkit-transform: scale(0.84);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}
.have_query .g-recaptcha 
{
    transform: scale(0.84);
    -webkit-transform: scale(0.84);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}
.categories-popularity-dtl .course_price
{
	display: inline-block;
    font-size: 23px;
    font-weight: 600;
    padding-right: 2px;
    color: #e2043d;
}

.categories-popularity-dtl .discount_price
{
	display: inline-block;
    font-size: 15px;
    font-weight: 400;
}

.business-home-slider-btn div.heart 
{
	padding: 8px;
}





















@media only screen and (min-width: 300px) and (max-width: 767px)
{	
.discover-top-categories ul li 
{
		width: 100%;
		height: auto;
		margin-bottom: 0;
}
.discover-top-categories ul li a 
{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 18px 20px;
}
.discover-top-categories ul li a label 
{
    margin: 0 0 0 15px;
    text-align: left;
}

}



@media (max-width: 575.98px)
{	
	.desc-wrapper
	{
		max-height: 394px;
	}
	.discover-top-categories ul
	{
		margin:0;
	}
	.have_q_space
	{
	display:none;
	}
	.Webinar-product-main-block 
	{
		padding: 50px 0 30px;
	}
	.date_register_block .register_btn_block
	{
	margin-top: 20px;
    display: block;
	}
	.class-timetable ul
	{
		text-align:center;
	}
	.class-timetable ul li:first-child 
	{
		display: none;
	}
	.class-timetable
	{
		font-size:11px;
	}
	.SPT-head-right .offer_price 
	{
		display: inline-block;
	}
	button.enroll
	{
	width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 10px 0px;
    font-size: 15px;
    height: auto;
	margin-bottom: 10px;
	}
	a.enroll
	{
		width:100%;
	}
	.cart-course-detail
	{
		margin-left: 0px;
	}
	.cart-course-name a
	{
	font-size: 20px;
    color: #000;
    font-weight: 500;
	}
	.cart-actions
	{
		    margin-left: 0px;
	}
	.cart-add-block .cart-course-name 
	{
    margin-top: 10px;
	}
	.btn-wrapper .boxed-btn
	{
		font-size: 10px;
		padding: 3px 10px;
		border-radius: 10px;
		min-width: auto;
	}
	.business-home-slider-img img 
	{
    width: 100%;
    height: 200px;
	}
    .footer_contact_widget h4, .footer_company_widget h4, .footer_program_widget h4, .footer_support_widget h4, .footer_apps_widget h4 
	{
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    margin-top: 30px;
	}
	.list-inline-item:not(:last-child)
	{
		margin-right:0!important;
	}
	.footer_menu_widget ul li a 
	{
    color: #969696;
    font-size: 13px;
	}
	.footer_menu_widget ul li:after {
    content: "";
    width: 5px;
    height: 5px;
    background: #b3b3b3;
    border-radius: 100%;
    display: inline-block;
    margin-right: 8px;
    margin-left: 8px;
	}
	.footer_contact_widget
	{
			text-align:center;
	}
	.home-heading
	{
		padding-top: 10px;
	}
	.about-home-block 
	{
    padding: 25px 0px 0px;
	}
	.certificate_bg .crt_img 
	{
    padding: 0;;
	}
	.certificate_bg 
	{
	margin-top: 0;
	}
	.footer_contact_widget li a, .footer_company_widget li a, .footer_program_widget li a, .footer_support_widget li a
	{
		line-height: 20px;
	}
	.footer_program_widget h4.Businesses 
	{
    padding: 0px 0 0px;
	}
	.block-block-dtl
	{
		padding: 20px;
	}
	.footer-widget .footer-logo
	{
		text-align:center;
	}
	.blog-dtl-block-heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
	}
	.prod.grid-view .item img
	{
		height: 200px;
		width: 100%;
	}
	.prod.grid-view p
	{
		height:auto;
	}
	.header-area 
	{
	height: 180px;
	}
	.header-area .title, .header-area .subtitle 
	{
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 10px;
    margin: 0;
    padding: 0;
	}
	.checkout-course-title
	{
		margin-bottom: 10px;
	}
	.checkout-course-title a
	{
		    color: #000;
			font-size: 24px;
			font-weight: 600;
	}
	.OnClassEnr-down
	{
		line-height:unset;
	}
	.align-btn-register
	{
		text-align:center;
	}
	.date_block ul li
	{
		font-size:11px;
	}
	.date_block ul li:last-child
	{
		font-size:12px;
	}
	.webinar-main-block-2 .panel-group .panel .panel-heading .date_register_block .date_block
	{
		margin:0;
		padding:5px;
	}
	.bundle_courses {
    padding: 40px 0 20px;
	}
	.blog-main-block {
    padding: 15px 0 0;
	}
	.contact-us-main-block {
    padding: 30px 0;
	}
	.categories-popularity-dtl
	{
		padding-top: 20px;
	}
	section.related_course 
	{
    padding: 25px 0 30px;
	}
	.certificate_bg {
    padding: 30px 0 30px;
	}
	.webinar_countdown ul li {
    display: inline-block;
    background: #eaeaea47;
    padding: 10px 5px;
    width: 70px;
	}
}

@media (min-width: 576px) and (max-width: 767.98px)
{
	.categories-popularity-dtl ul li
	{
		display: contents;
	}
	.business-home-slider-btn li.heart 
	{
		display:contents;
	}

	.discover-top-categories ul
	{
		margin: 0 0px 0 0px;
	}
	.desc-wrapper 
	{
		max-height: 394px;
	}
	.have_q_space
	{
		display:none;
	}
	section.related_course 
	{
    padding: 40px 0 60px;
	}
	.SPT-head-right .offer_price 
	{
    display: inline-block;
	}
	a.enroll
	{
		width: 100%;
		appearance: button;
	}
	.contact-us-main-block {
    padding: 30px 0;
	}
	.bundle-info h4
	{
		font-size: 16px;
	}
	.bundle-info p
	{
		font-size: 13px;
	}
	.bundle-info .rate b 
	{
    font-size: 16px;
	}
	.bundle-info .info span 
	{
    padding-left: 15px;
    font-size: 14px;
	}	
	.bundle-info 
	{
    padding: 32px 20px;
	}
	.bundle-info .info span:nth-child(2) {
    margin-left: 5px;
    padding-left: 10px;
	}
	.date_register_block .register_btn_block
	{
	margin-top: 20px;
    display: block;
	    text-align: center;
	}
	button.enroll
	{
		width:100%;
		height:auto;
		font-size: 14px;
		margin-top: 10px;
		padding: 10px 0;
	   line-height: 1.5;
	}
	.OnClassEnr-down
	{
		float:none;
	}
	.OnClassEnrLP 
	{
    width: auto;
    float: none; 
    display: inline-block;
	}
	.OnClassEnrHe
	{
	font-size: 16px;
    width: auto;
    float: none;
    display: inline-block;
	}
    .footer_apps_widget
	{
		padding-bottom: 50px;
	}
	.course_details_box
	{
		margin-bottom: 25px;
		margin: 0px;
	}
	.business-home-slider-img img 
	{
    width: 100%;
    height: 180px;
	}
	.footer-widget .footer-logo
	{
		text-align:center;
	}
	.about-home-main-block .video-device .bg_img
	{
		height:auto;
	}
	.certificate_bg .crt_img {
    padding: 0;
	}
	.prod.grid-view .item {
    width: 48%;
	}
	.header-area 
	{
	height: 220px;
	}
	.header-area .title,
	.header-area .subtitle 
	{
    font-size: 36px;
    line-height: 40px;
    margin: 0;
    padding: 0;
	}
	.btn-wrapper .boxed-btn 
	{
    font-size: 12px;
    padding: 8px 25px;
    border-radius: 10px;
    min-width: 140px;
    text-align: center;
    font-weight: 600;
	}
	.cart-total
	{
		padding-top: 20px;
	}
	.btn-training-wrapper 
	{
    align-self: center;
    text-align: end;
	}
	.align-btn-register
	{
		text-align:end;
	}
}

@media (min-width: 768px) and (max-width: 991.98px)
{	
	.have_q_space
	{
		display:none;
	}
	section.related_course 
	{
    padding: 30px 0 60px;
	}
	.self-paced-training-product
	{
		margin-top: 10px;
	}
	.SPT-head-left ul li 
	{
    display: block;
	}
	.SPT-head-right .price 
	{
    font-size: 24px;
    font-weight: 600;
	}
	.cart-add-block .cart-course-name 
	{
    margin-top: 0px;
	}
    .footer_apps_widget
	{
		margin-bottom: 50px;
	}
	.footer_program_widget h4.Businesses {
    padding: 15px 0 0px;
	}
	.business-home-slider-img img {
    width: 100%;
    height: 230px;
	}
	.footer-widget .footer-logo
	{
		text-align:center;
	}
	.about-home-main-block .video-device .bg_img
	{
		height:auto;
	}
	.certificate_bg .crt_img 
	{
    padding: 0;
	}
	.prod.grid-view .item {
     width: 31.88%; 
	}
	.blog-slider-block .content {
    padding: 40px 30px 0px;
    min-height: 300px;
	}
	.header-area 
	{
	 height: 255px;
	}
	.header-area .title, 
	.header-area .subtitle 
	{
    font-size: 40px;
    margin: 0;
    padding: 0;
	}
	.btn-wrapper .boxed-btn 
	{
    padding: 10px 30px;
    border-radius: 25px;
    min-width: 140px;
	}
	.discover-top-categories ul li 
	{
    width: 150px;
    height: 140px;
	}
	.align-btn-register
	{
		text-align:end;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px)
{
    .business-home-slider-img img 
	{
    width: 100%;
    height: 190px;
	}
	.header-area 
	{
	height: 300px;
	}
	.header-area .title, 
	.header-area .subtitle 
	{
    font-size: 45px;
    margin: 0;
    padding: 0;
	}
	.align-btn-register
	{
		text-align:end;
	}
}

@media (min-width: 1200px) and (max-width: 1399px)
{
	.align-btn-register
	{
		text-align:end;
	}
    .business-home-slider-img img 
	{
    width: 100%;
    height: 100%;
	}
	.header-area 
	{
	height: 400px;
	}
	.header-area .title, 
	.header-area .subtitle 
	{
    font-size: 50px;
    margin: 0;
    padding: 0;
	}
}
@media (min-width: 1400px) and (max-width: 1699px)
{
    .business-home-slider-img img 
	{
    width: 100%;
    height: 100%;
	}
	.header-area 
	{
	    height: 400px;
	}
}
@media (min-width: 1700px) and (max-width: 1799px)
{
    .business-home-slider-img img 
	{
    width: 100%;
    height: 100%;
	}
	.header-area 
	{
	    height: 400px;
	}
}
@media (min-width: 1800px) and (max-width: 1900px)
{
    .business-home-slider-img img 
	{
    width: 100%;
    height: 100%;
	}
	.header-area 
	{
	    height: 400px;
	}
}